From 101f3bc11de87f2851b287266caa51bf3061b056 Mon Sep 17 00:00:00 2001 From: seantokuzo Date: Thu, 13 Jun 2024 21:03:02 -0700 Subject: [PATCH 01/25] add mongo dev service --- docker-compose-dev.yml | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/docker-compose-dev.yml b/docker-compose-dev.yml index 0da9545e..85ccf635 100644 --- a/docker-compose-dev.yml +++ b/docker-compose-dev.yml @@ -1,18 +1,41 @@ -version: '3' services: dev: - #image: codehammers/ch-dev:latest image: codehammers/ch-dev-dep-v2:latest container_name: ch-dev ports: - '8080:8080' + - '3000:3000' volumes: - .:/usr/src/app - node_modules:/usr/src/app/node_modules - client_node_modules:/usr/src/app/client/node_modules - command: npm run dev-ts environment: - NODE_ENV=development + - JWT_SECRET=${JWT_SECRET} + - MONGO_URI=mongodb://root:testpass@ch-mongo-dev:27017/ch-testdb + - MONGO_USER=root + - MONGO_PASSWORD=testpass + - MONGO_DB=ch-testdb + depends_on: + - ch-mongo-dev + command: npm run dev-ts + + ch-mongo-dev: + container_name: ch-mongo-dev + image: mongo + restart: always + ports: + - 27017:27017 + environment: + MONGO_INITDB_DATABASE: ch-testdb + MONGO_INITDB_ROOT_USERNAME: admin + MONGO_INITDB_ROOT_PASSWORD: adminpassword + volumes: + - ./scripts/db/mongoInit/:/docker-entrypoint-initdb.d + - ./scripts/db/mockData:/tmp/data + - mongo-dev-volume:/data/db + command: mongod --quiet --logpath /dev/null volumes: node_modules: client_node_modules: + mongo-dev-volume: From f8e3d0c613d59954c5f75d83bf7ce1862db79e6c Mon Sep 17 00:00:00 2001 From: seantokuzo Date: Thu, 13 Jun 2024 21:03:22 -0700 Subject: [PATCH 02/25] sloppy seed --- .../db/generateMockData/generateMockData.ts | 95 + .../generateMockData/generateMockData_OLD.ts | 290 + scripts/db/generateMockData/mockAlumni.ts | 17749 ++++++++++++++ scripts/db/generateMockData/mockForums.ts | 52 + .../mockGraduateInvitation.ts | 902 + scripts/db/generateMockData/mockUsers.ts | 710 + scripts/db/generateMockData/options.ts | 1285 + scripts/db/mockData/MOCK_ALUMNI.json | 1 + scripts/db/mockData/MOCK_FORUMS.json | 1 + .../mockData/MOCK_GRADUATE_INVITATIONS.json | 1 + scripts/db/mockData/MOCK_USERS.json | 709 + scripts/db/mongoInit/mongo-init.js | 22 + scripts/db/mongoInit/seed-base-collections.js | 19580 ++++++++++++++++ .../mongoInit/seed-reference-collections.js | 1350 ++ scripts/db/seed.sh | 86 + 15 files changed, 42833 insertions(+) create mode 100644 scripts/db/generateMockData/generateMockData.ts create mode 100644 scripts/db/generateMockData/generateMockData_OLD.ts create mode 100644 scripts/db/generateMockData/mockAlumni.ts create mode 100644 scripts/db/generateMockData/mockForums.ts create mode 100644 scripts/db/generateMockData/mockGraduateInvitation.ts create mode 100644 scripts/db/generateMockData/mockUsers.ts create mode 100644 scripts/db/generateMockData/options.ts create mode 100644 scripts/db/mockData/MOCK_ALUMNI.json create mode 100644 scripts/db/mockData/MOCK_FORUMS.json create mode 100644 scripts/db/mockData/MOCK_GRADUATE_INVITATIONS.json create mode 100644 scripts/db/mockData/MOCK_USERS.json create mode 100644 scripts/db/mongoInit/mongo-init.js create mode 100644 scripts/db/mongoInit/seed-base-collections.js create mode 100644 scripts/db/mongoInit/seed-reference-collections.js create mode 100644 scripts/db/seed.sh diff --git a/scripts/db/generateMockData/generateMockData.ts b/scripts/db/generateMockData/generateMockData.ts new file mode 100644 index 00000000..f99d245f --- /dev/null +++ b/scripts/db/generateMockData/generateMockData.ts @@ -0,0 +1,95 @@ +import fs from 'fs'; +import path from 'path'; +import bcrypt from 'bcryptjs'; +import { mockUsers } from './mockUsers'; +import { mockAlumni } from './mockAlumni'; +import { mockForums } from './mockForums'; +import { mockGradInvites } from './mockGraduateInvitation'; +import { cohorts, cohortNumRange, cityOptions, profilePicOptions } from './options'; + +const randomIndex = (arr: any[]): number => Math.floor(Math.random() * arr.length); + +const createRandomCohort = () => { + return `${cohorts[randomIndex(cohorts)]} ${Math.floor(Math.random() * cohortNumRange)}`; +}; + +const mockGraduateInvitations = mockGradInvites.map((doc) => ({ + ...doc, + cohort: createRandomCohort(), +})); + +const getRandomCities = (num: number) => { + let cities: string[] = []; + for (let i = 0; i <= num; i++) { + const randoIndex = randomIndex(cityOptions); + if (cities.includes(cityOptions[randoIndex])) continue; + cities.push(cityOptions[randoIndex]); + } + return cities; +}; + +const mockAlumniWithCities = mockAlumni.map((alum) => { + return { + ...alum, + cities: getRandomCities(Math.floor(Math.random() * 4)), + }; +}); + +const createDocs = async (name: string, mockData: any) => { + const label = name[0] + name.slice(1).toLowerCase(); + try { + console.log(`โœ๏ธ Writing ${label} mock data to JSON...`); + await fs.promises.writeFile( + path.join(__dirname, `../mockData/MOCK_${name}.json`), + JSON.stringify(mockData), + 'utf8', + ); + console.log(`๐Ÿš€ MOCK_${name}.json written`); + } catch (error) { + console.log(error); + process.exit(1); + } +}; + +interface User { + firstName: string; + lastName: string; + email: string; + profilePic: string; + password: string; +} + +const mockUsersHashedPassword = mockUsers.map((user) => { + const salt = bcrypt.genSaltSync(10); + const hashedPass = bcrypt.hashSync(user.password, salt); + return { + ...user, + password: hashedPass, + }; +}); + +const finalMockUsers = mockUsersHashedPassword.map((user) => { + if (user.email === 'tester@codehammers.com') return user; + return { + ...user, + profilePic: profilePicOptions[randomIndex(profilePicOptions)], + }; +}); + +const generateData = async () => { + try { + console.log('โšก๏ธ Generating JSON data โšก๏ธ'); + await createDocs('ALUMNI', mockAlumniWithCities); + await createDocs('GRADUATE_INVITATIONS', mockGraduateInvitations); + await createDocs('USERS', finalMockUsers); + await createDocs('FORUMS', mockForums); + console.log('๐Ÿ† Mock data written to JSON'); + } catch (err) { + console.log(err); + process.exit(1); + } + + process.exit(0); +}; + +generateData(); diff --git a/scripts/db/generateMockData/generateMockData_OLD.ts b/scripts/db/generateMockData/generateMockData_OLD.ts new file mode 100644 index 00000000..f27567ec --- /dev/null +++ b/scripts/db/generateMockData/generateMockData_OLD.ts @@ -0,0 +1,290 @@ +import fs from 'fs'; +import path from 'path'; +import mongoose, { Model, mongo } from 'mongoose'; +import User from '../../../server/models/userModel'; +import Alumni from '../../../server/models/alumniModel'; +import Forum from '../../../server/models/forumModel'; +import GraduateInvitation from '../../../server/models/graduateInvitationModel'; +import Profile from '../../../server/models/profileModel'; +import Thread from '../../../server/models/threadModel'; +import Post from '../../../server/models/postModel'; +import { mockUsers } from './mockUsers'; +import { mockAlumni } from './mockAlumni'; +import { mockForums } from './mockForums'; +import { mockGradInvites } from './mockGraduateInvitation'; +import { + cohorts, + cohortNumRange, + skillOptions, + jobTitleOptions, + companyOptions, + collegeOptions, + degreeOptions, + fieldOfStudyOptions, + projectOptions, + testimonialOptions, + bootcampOptions, + professionalSummaryOptions, + personBioOptions, + threadOptions, + postContentOptions, +} from './options'; + +const randomIndex = (arr: any[]): number => Math.floor(Math.random() * arr.length); + +const createRandomCohort = () => { + return `${cohorts[randomIndex(cohorts)]} ${Math.floor(Math.random() * cohortNumRange)}`; +}; + +const mockGraduationInvitations = mockGradInvites.map((doc) => ({ + ...doc, + cohort: createRandomCohort(), +})); + +const createRandomSkillArray = (): string[] => { + const randomSkills: string[] = []; + const randoNum = Math.floor(Math.random() * 20); + if (randoNum === 0) return randomSkills; + + for (let i = 0; i < randoNum; i++) { + const randoIndex = randomIndex(skillOptions); + + if (randomSkills.includes(skillOptions[randoIndex])) continue; + else randomSkills.push(skillOptions[randoIndex]); + } + + return randomSkills; +}; + +const createRandomPosition = (): { title: string; company: string } => { + return { + title: jobTitleOptions[randomIndex(jobTitleOptions)], + company: companyOptions[randomIndex(companyOptions)], + }; +}; + +const createRandomDates = (): [Date, Date] => { + const rawDate = Date.now() - Math.floor(Math.random()) * 1000 * 60 * 60 * 24 * 365 * 10; + return [ + new Date(rawDate), + new Date(rawDate + Math.floor(Math.random() * 1000 * 60 * 60 * 24 * 365 * 4)), + ]; +}; + +const createPastPositions = () => { + const pastPositions: { title: string; company: string; startDate: Date; endDate: Date }[] = []; + const randoNum = Math.floor(Math.random() * 5); + if (randoNum === 0) return pastPositions; + for (let i = 0; i <= randoNum; i++) { + const dates = createRandomDates(); + pastPositions.push({ + ...createRandomPosition(), + startDate: dates[0], + endDate: dates[1], + }); + } + return pastPositions; +}; + +const createRandomEducation = () => { + const education: { + institution: string; + degree: string; + fieldOfStudy: string; + startDate: Date; + endDate: Date; + }[] = []; + const num = Math.floor(Math.random() * 4) + 1; + for (let i = 0; i < num; i++) { + const dates = createRandomDates(); + education.push({ + institution: collegeOptions[randomIndex(collegeOptions)], + degree: degreeOptions[randomIndex(degreeOptions)], + fieldOfStudy: fieldOfStudyOptions[randomIndex(fieldOfStudyOptions)], + startDate: dates[0], + endDate: dates[1], + }); + } + return education; +}; + +const createRandomProjects = () => { + const projects: { name: string; description: string; link: string }[] = []; + let numProjects = Math.floor(Math.random() * 5); + if (numProjects === 0) return projects; + for (let i = 0; i <= numProjects; i++) { + projects.push(projectOptions[randomIndex(projectOptions)]); + } + return projects; +}; + +const createTestimonials = () => { + const testimonials: { + from: String; + relation: String; + text: String; + }[] = []; + const numTestimonials = Math.floor(Math.random() * 5); + if (numTestimonials === 0) return testimonials; + for (let i = 0; i <= numTestimonials; i++) { + testimonials.push(testimonialOptions[randomIndex(testimonialOptions)]); + } + return testimonials; +}; + +const generateProfile = (userDoc: any) => { + return { + user: userDoc._id, + firstName: userDoc.firstName, + lastName: userDoc.lastName, + profilePhoto: userDoc.profilePic, + cohort: createRandomCohort(), + graduationYear: createRandomDates()[0].getUTCFullYear(), + email: userDoc.email, + linkedInProfile: `https://www.linkedin.com/in/${userDoc.firstName + '-' + userDoc.lastName + '-fake'}`, + professionalSummary: professionalSummaryOptions[randomIndex(professionalSummaryOptions)], + skills: createRandomSkillArray(), + specializations: createRandomSkillArray(), + careerInformation: { + currentPosition: createRandomPosition(), + pastPositions: createPastPositions(), + }, + education: createRandomEducation(), + projects: createRandomProjects(), + personalBio: personBioOptions[randomIndex(personBioOptions)], + testimonials: createTestimonials(), + socialMediaLinks: { + twitter: + Math.random() > 0.5 + ? `https://x.com/${userDoc.firstName + '-' + userDoc.lastName}-fake` + : undefined, + blog: + Math.random() > 0.5 + ? `https://www.${userDoc.firstName + '-' + userDoc.lastName}-fake-blog.com` + : undefined, + other: + Math.random() > 0.5 + ? [`https://www.instagram.com/${userDoc.firstName + '-' + userDoc.lastName}-fake`] + : undefined, + }, + availabilityForNetworking: Math.random() > 0.4 ? true : false, + bootcampExperience: bootcampOptions[randomIndex(bootcampOptions)], + }; +}; + +const createThreads = ( + users: mongoose.Document[], + forums: mongoose.Document[], + numThreads: number, +) => { + const threads: { + user: string; + forum: string; + title: string; + content: string; + createdAt: Date | undefined; + updatedAt: Date | undefined; + }[] = []; + for (let i = 0; i <= numThreads; i++) { + const dates = Math.random() > 0.6 ? createRandomDates() : [undefined, undefined]; + threads.push({ + ...threadOptions[randomIndex(threadOptions)], + user: users[randomIndex(users)]._id as string, + forum: forums[randomIndex(forums)]._id as string, + createdAt: dates[0], + updatedAt: dates[1], + }); + } + return threads; +}; + +const createPosts = ( + users: mongoose.Document[], + threads: mongoose.Document[], + numPosts: number, +) => { + const posts: { + thread: string; + user: string; + content: string; + createdAt: Date | undefined; + updatedAt: Date | undefined; + }[] = []; + for (let i = 0; i <= numPosts; i++) { + const dates = Math.random() > 0.6 ? createRandomDates() : [undefined, undefined]; + posts.push({ + thread: threads[randomIndex(threads)]._id as string, + user: users[randomIndex(users)]._id as string, + content: postContentOptions[randomIndex(postContentOptions)] as string, + createdAt: dates[0], + updatedAt: dates[1], + }); + } + return posts; +}; + +const createDocs = async (name: string, Model: typeof mongoose.Model, mockData: any) => { + const label = name[0] + name.slice(1).toLowerCase(); + try { + console.log(`Creating ${label}...`); + const docs = await Model.create(mockData); + console.log(`๐Ÿ’ฅ ${label} documents created`); + + console.log(`โœ๏ธ Writing ${label} Documents to JSON...`); + await fs.promises.writeFile( + path.join(__dirname, `/data/MOCK_${name}.json`), + JSON.stringify(docs), + 'utf8', + ); + console.log(`๐Ÿš€ MOCK_${name}.json written`); + + return docs; + } catch (error) { + console.log(error); + process.exit(1); + } +}; + +const generateData = async () => { + try { + console.log('Connecting to mongo container...'); + await mongoose.connect('mongodb://ch-mongo-dev:27017/ch-testdb'); + console.log('๐Ÿƒ Connected to MongoDB container'); + + console.log('Clearing out DB...'); + const collections = await mongoose.connection.db.collections(); + for (let collection of collections) { + await collection.deleteMany({}); + } + console.log('DB starting fresh ๐ŸŒง๏ธ'); + + await createDocs('ALUMNI', Alumni, mockAlumni); + await createDocs('GRADUATION_INVITATIONS', GraduateInvitation, mockGraduationInvitations); + const users = (await createDocs('USERS', User, mockUsers)) as mongoose.Document[]; + const forums = (await createDocs('FORUMS', Forum, mockForums)) as mongoose.Document[]; + + console.log('๐Ÿ› ๏ธ Generating profiles tied to users'); + const mockProfiles = users.map((user) => generateProfile(user)); + await createDocs('PROFILES', Profile, mockProfiles); + + console.log('๐Ÿ› ๏ธ Generating threads tied to user and forum'); + const mockThreads = createThreads(users, forums, 30); + const threads = await createDocs('THREADS', Thread, mockThreads); + + console.log('๐Ÿ› ๏ธ Generating posts tied to user and thread'); + const mockPosts = createPosts(users, threads, 50); + await createDocs('POSTS', Post, mockPosts); + + console.log('๐Ÿ† Mock data seeded in DB'); + console.log('Closing connection'); + mongoose.connection.close(); + } catch (err) { + console.log(err); + mongoose.connection.close(); + process.exit(1); + } + + process.exit(0); +}; + +generateData(); diff --git a/scripts/db/generateMockData/mockAlumni.ts b/scripts/db/generateMockData/mockAlumni.ts new file mode 100644 index 00000000..de1074cd --- /dev/null +++ b/scripts/db/generateMockData/mockAlumni.ts @@ -0,0 +1,17749 @@ +export const mockAlumni = [ + { + company: '1-800 Flowers', + name: 'Daniel Reilley', + email: 'dannyreilley@gmail.com', + linkedIn: 'https://www.linkedin.com/in/daniel-reilley/', + campus: 'LA', + cohort: '45', + jobTitle: 'Full-Stack Application Developer', + industry: 'Retail', + cities: [], + }, + { + company: '1Password', + name: 'William Quan Nguyen', + email: 'william.nguyen202103@gmail.com', + linkedIn: 'https://www.linkedin.com/in/william-nguyen202103/', + campus: 'PTRI', + cohort: '10', + jobTitle: 'Software Engineer intern', + industry: 'Security/Data Privacy', + cities: [], + }, + { + company: '1StopBedrooms', + name: 'David Yedid', + email: 'diyedid@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yedid/', + campus: 'NYC', + cohort: '15', + jobTitle: 'VP, Projects (working under CTO); and General Counsel', + industry: 'E-Commerce', + cities: [], + }, + { + company: '1upHealth', + name: 'Robleh Farah', + email: 'farahrobleh1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/farahrobleh', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer', + industry: 'Health Tech', + cities: [], + }, + { + company: '23andMe', + name: 'Jiwon Chung', + email: 'jiwon.chung07@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jchung07/', + campus: 'LA', + cohort: '48', + jobTitle: 'Software Engineer', + industry: 'Biotech', + cities: [], + }, + { + company: '2U', + name: 'Rebecca Shesser', + email: 'rebeccashesser@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rebeccashesser/', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: '98point6', + name: 'Avi Kerson', + email: 'avitacos@gmail.com', + linkedIn: 'https://www.linkedin.com/in/avi-kerson/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'AAA (Club Labs)', + name: 'Michael Chan', + email: 'mckchan13@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael-ck-chan/', + campus: 'PTRI', + cohort: '5', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: [], + }, + { + company: 'Aavia', + name: 'Wayland SIngh', + email: 'wmsingh@ucdavis.edu', + linkedIn: 'https://www.linkedin.com/in/wayland-singh/', + campus: 'NYOI', + cohort: '4', + jobTitle: 'Backend Engineer', + industry: 'Healthtech/Healthcare', + cities: [], + }, + { + company: 'Abstract', + name: 'Tyler Kneidl', + email: 'tskneidl@gmail.com', + linkedIn: 'https://www.LinkedIn.com/in/tylerkneidl', + campus: 'NYC', + cohort: '25', + jobTitle: 'Full Stack Engineer', + industry: 'Software Development', + cities: [], + }, + { + company: 'Accenture', + name: 'Adrian Reczek', + email: 'adrianwreczek@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adrian-reczek/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Full Stack Software Engineer, Senior Analyst', + industry: 'Consulting', + cities: [], + }, + { + company: 'Accenture', + name: 'Colin Roemer', + email: 'colin.roemer@gmail.com', + linkedIn: 'https://www.linkedin.com/in/colinroemer/', + campus: 'LA', + cohort: '23', + jobTitle: 'Node Microservices Engineer', + industry: '', + cities: [], + }, + { + company: 'Accenture', + name: 'Shamilah Faria', + email: 'shamilahfaria@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shamilah-faria/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Software Artisan', + industry: 'Technology', + cities: [], + }, + { + company: 'Accrete AI', + name: 'Andrew Moy', + email: 'ajmoy35@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andrewmoy/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Full Stack Engineer', + industry: 'Artificial Intelligence', + cities: [], + }, + { + company: 'Acorns', + name: 'Zahaan Jasani', + email: 'zahaanjasani@gmail.com', + linkedIn: 'https://www.linkedin.com/in/zahaan-jasani-183913126/', + campus: 'LA', + cohort: '26', + jobTitle: 'Software Engineer II - Backend', + industry: 'Finance', + cities: [], + }, + { + company: 'Acronis', + name: 'Paul Kim', + email: 'Khyunwoo1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/paulyjkim', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: '"Data Protection/ Cyber Security"', + cities: [], + }, + { + company: 'ActiveCampaign', + name: 'Jacob Gillan', + email: 'jacobgillan9@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jacob-gillan/', + campus: 'FTRI / CTRI', + cohort: '15', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Actuate', + name: 'Braddon Murphy', + email: 'braddonmurphy@gmail.com', + linkedIn: 'https://www.linkedin.com/in/braddonlee/', + campus: 'FTRI', + cohort: '6', + jobTitle: 'Software Engineer', + industry: 'Security', + cities: [], + }, + { + company: 'Acuity Brands', + name: 'Logan Coale', + email: 'lcoale@gmail.com', + linkedIn: 'https://www.linkedin.com/in/logancoale/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Senior Software Engineer', + industry: 'Industrial Lighting/IoT', + cities: [], + }, + { + company: 'Adaptive Biotechnologies', + name: 'Conor Chinitz', + email: 'conorchinitz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/conorchinitz', + campus: 'FTRI', + cohort: '7', + jobTitle: 'Software Engineer III', + industry: 'Biotech', + cities: [], + }, + { + company: 'Adobe - Frame.io', + name: 'Anna Brakowska', + email: 'anna.brakowska91@gmail.com', + linkedIn: 'https://www.linkedin.com/in/anna-brakowska/', + campus: 'NYC', + cohort: '7', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Affirm', + name: 'Oscar Chan', + email: 'chanoscar0@gmail.com', + linkedIn: 'https://www.linkedin.com/in/occhan/', + campus: 'LA', + cohort: '26', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Age of Learning', + name: 'Brian Kwok', + email: 'brian.kwok15@gmail.com', + linkedIn: 'https://www.linkedin.com/in/briankwok15/', + campus: 'LA', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Education', + cities: [], + }, + { + company: 'Age of Learning', + name: 'Tre Hultzen', + email: 'hultzentre@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tre-hultzen/', + campus: 'LA', + cohort: '45', + jobTitle: 'Web Services Engineer', + industry: 'Education', + cities: [], + }, + { + company: 'Agua Caliente Casinos', + name: 'Mark Alexander', + email: 'markalexander72@gmail.com', + linkedIn: 'https://www.linkedin.com/in/marka772', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Web Developer', + industry: 'Gaming/eSports', + cities: [], + }, + { + company: 'AI Insurance', + name: 'James Edwards III', + email: 'j.olden.edwards@gmail.com', + linkedIn: 'https://www.linkedin.com/in/james-edwards-547307242/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Air Labs, Inc.', + name: 'Madison Brown', + email: 'mbrown3391@gmail.com', + linkedIn: 'https://www.linkedin.com/in/madisondbrown/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Sr. Software Engineer', + industry: 'Digital Asset Management', + cities: [], + }, + { + company: 'Airtable', + name: 'Clara Kim', + email: 'clarayhkim96@gmail.com', + linkedIn: 'https://www.linkedin.com/in/clarakm/', + campus: 'LA', + cohort: '34', + jobTitle: 'Full-stack Engineer', + industry: 'SaaS', + cities: [], + }, + { + company: 'Ajmadison', + name: 'Shlomo porges', + email: 'porges.s@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shlomoporges/', + campus: 'NYC', + cohort: '10', + jobTitle: 'DB architect', + industry: 'Appliances', + cities: [], + }, + { + company: 'Albert', + name: 'Will Bladon', + email: 'whbladon@gmail.com', + linkedIn: 'https://www.linkedin.com/in/will-bladon/', + campus: 'LA', + cohort: '40', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Alchemy', + name: 'Mathias Perfumo', + email: 'mathias.perfumo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mathiasperfumo', + campus: 'FTRI / CTRI', + cohort: '7', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Aledade', + name: 'Etana Kopin', + email: 'claws.33@gmail.com', + linkedIn: 'https://www.linkedin.com/in/egkopin/', + campus: 'PTRI', + cohort: '8', + jobTitle: 'Senior Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Alethix', + name: 'Mark Dolan', + email: 'mark.dolan3@gmail.com', + linkedIn: 'https://www.linkedin.com/in/markdolan30/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Frontend Software Engineer', + industry: 'Government services', + cities: [], + }, + { + company: 'Algolia', + name: 'Jacob Cole', + email: 'jacob.cole@gmail.com', + linkedIn: 'jacobcole34', + campus: 'PTRI', + cohort: '8', + jobTitle: 'Solutions Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Allen Institute', + name: 'Joseph Heffernan', + email: 'Interim17@gmail.com', + linkedIn: 'LinkedIn.com/in/Joseph-heffernan', + campus: 'LA / WCRI', + cohort: '53', + jobTitle: 'Software Engineer Front End', + industry: 'Biotech', + cities: [], + }, + { + company: 'Alleo.ai', + name: 'Rawan Al Bairouti', + email: 'rawan.bairouti@gmail.com', + linkedIn: 'linkedin.com/in/rawanbairouti', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Lead Developer ', + industry: 'Software Solutions/Developer Tools', + cities: [], + }, + { + company: 'Alloy', + name: 'Jacqueline Chang', + email: 'jqw.chang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jqw-chang/', + campus: 'NYC', + cohort: '7', + jobTitle: 'Software Engineer II', + industry: '', + cities: [], + }, + { + company: 'Alloy', + name: 'Sophie Nye', + email: 'sophie.nye@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gsophienye/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Software Engineer II', + industry: 'Fintech', + cities: [], + }, + { + company: 'Allure Bridal', + name: 'Patrick Reid', + email: 'patrickjreid@gmail.com', + linkedIn: 'https://www.linkedin.com/in/patrickjreid/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Senior Solutions Engineer', + industry: 'Retail', + cities: [], + }, + { + company: 'Ally', + name: 'Oleksii Hordiienko', + email: 'alex.hord@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/oleksii-hordiienko/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Sr. Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Ally', + name: 'Allison Jacobs', + email: 'allison-jacobs@outlook.com', + linkedIn: 'https://www.linkedin.com/in/allison-j', + campus: 'NYC', + cohort: '25', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Ally', + name: 'Connor Tracy', + email: 'Connortracy15@gmail.com', + linkedIn: 'https://www.linkedin.com/in/connortracy19', + campus: 'NYC', + cohort: '28', + jobTitle: 'Frontend Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Ally', + name: 'Damien Evans', + email: 'damiensevans@gmail.com', + linkedIn: 'https://www.linkedin.com/in/damien-s-evans/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Principal Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Ally', + name: 'Mercedes Kalaizic', + email: 'Kalaizicmercedes@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mkalaizic/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Principal Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Ally', + name: 'Richard Zhang', + email: 'rchzhng@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dickzhang/', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Ally', + name: 'Garrett Weaver', + email: 'Uncommonweaver@gmail.com', + linkedIn: 'https://www.linkedin.com/in/g-weaver/', + campus: 'NYC', + cohort: '23', + jobTitle: 'API Developer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Alo Yoga', + name: 'Angie Chang', + email: 'angiechangpagne@gmail.com', + linkedIn: 'https://www.linkedin.com/in/angelsofwar', + campus: 'LA', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'E-Commerce/Fashion/Wellness/Mindfulness', + cities: [], + }, + { + company: 'AlphaSense', + name: 'Joe Pavlisko', + email: 'jpavlisko@protonmail.com', + linkedIn: 'https://www.linkedin.com/in/joe-pavlisko-11b74930/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Software Engineer', + industry: 'FinTech', + cities: [], + }, + { + company: 'ALTEN GmbH', + name: 'Jay Wall', + email: 'walljayw@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hanswand/', + campus: 'LA', + cohort: '47', + jobTitle: 'Senior Consultant', + industry: 'Consultancy - Fintech, Manufacturing, Healthcare', + cities: [], + }, + { + company: 'Alteryx', + name: 'Miriam Feder', + email: 'mirfeder@gmail.com', + linkedIn: 'https://www.linkedin.com/in/miriam-feder', + campus: 'NYC', + cohort: '32', + jobTitle: 'Senior Software Engineer', + industry: 'Data Analytics', + cities: [], + }, + { + company: 'Altice USA', + name: 'Ola Adedoyin', + email: 'ola_adedoyin@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/oadedoyin/', + campus: 'NYC', + cohort: '15', + jobTitle: 'DevOps Engineering Manager', + industry: 'Communication and Media', + cities: [], + }, + { + company: 'Amazon', + name: 'Amy Liang', + email: 'amyliangny@gmail.com', + linkedIn: 'https://www.linkedin.com/in/amyliang18/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Software Development Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Amazon', + name: 'Anna Falvello', + email: 'anna.falvello@gmail.com', + linkedIn: 'https://www.linkedin.com/in/afalvello/', + campus: 'NYC', + cohort: '29', + jobTitle: 'SDEII', + industry: 'Ecommerce', + cities: [], + }, + { + company: 'Amazon', + name: 'Anthony Valdez', + email: 'avaldez520@gmail.com', + linkedIn: 'https://www.linkedin.com/in/va1dez/', + campus: 'NYC', + cohort: '32', + jobTitle: 'SDE II (Full Stack)', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Amazon', + name: 'Christopher LeBrett', + email: 'clebrett@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chris-lebrett/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Development Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Amazon', + name: 'Christopher Wong', + email: 'cwong8257@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chriswong2/', + campus: 'NYC', + cohort: '7', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Amazon', + name: 'David Anderson', + email: 'dlande000@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dlande000/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Front-End Engineer', + industry: 'AWS / internet infrastructure', + cities: [], + }, + { + company: 'Amazon', + name: 'Dillon Schriver', + email: 'dschriver9@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dillon-schriver/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Software Development Engineer II', + industry: 'Ecommerce', + cities: [], + }, + { + company: 'Amazon', + name: 'Eelan Tung', + email: 'eelantung@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eelantung', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Development Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Amazon', + name: 'Jason Huang', + email: 'huang.jason999@gmail.com', + linkedIn: 'https://www.linkedin.com/in/huang-jason999/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Software Development Engineer II', + industry: 'Technology', + cities: [], + }, + { + company: 'Amazon', + name: 'Idan Michael', + email: 'idan.michael3@gmail.com', + linkedIn: 'https://www.linkedin.com/in/idanmichael/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Software Develpment Engineer', + industry: 'Cloud', + cities: [], + }, + { + company: 'Amazon', + name: 'Jacqueline Douglass', + email: 'jackie.douglass@icloud.com', + linkedIn: 'https://www.linkedin.com/in/jacqueline-douglass/', + campus: 'FTRI', + cohort: '2', + jobTitle: 'Front-End Engineer', + industry: 'e-commerce, cloud computing, digital streaming, and artificial intelligence.', + cities: [], + }, + { + company: 'Amazon', + name: 'James Kim', + email: 'james.minjae.97@gmail.com', + linkedIn: 'https://linkedin.com/in/jamesmjkim', + campus: 'PTRI', + cohort: '5', + jobTitle: 'Software Development Engineer 1', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Amazon', + name: 'Luke Michals', + email: 'luke.michals@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '14', + jobTitle: 'Frontend Engineer II', + industry: 'Retail', + cities: [], + }, + { + company: 'Amazon', + name: 'Jennifer Song', + email: 'lumie.song@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lu0713/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Development Engineer II', + industry: 'Tech', + cities: [], + }, + { + company: 'Amazon', + name: 'Megan Nadkarni', + email: 'megan.nadkarni@gmail.com', + linkedIn: 'https://www.linkedin.com/in/megannadkarni/', + campus: 'LA', + cohort: '48', + jobTitle: 'Front End Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Amazon', + name: 'Mark Washkewicz', + email: 'mwashkewicz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mark-washkewicz/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Development Engineer 1', + industry: 'Retail', + cities: [], + }, + { + company: 'Amazon', + name: 'Stephan Halarewicz', + email: 'shalarewicz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stephanhalarewicz/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Software Development Engineer, People Engine', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Amazon', + name: 'Tanner Peterson', + email: 'tanpeterson@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tanner-peterson/', + campus: 'LA', + cohort: '46', + jobTitle: 'Front End Engineer', + industry: 'Cloud Services', + cities: [], + }, + { + company: 'Amazon', + name: 'Timothy Mai', + email: 'timothy.mai13@gmail.com', + linkedIn: 'https://www.linkedin.com/in/timothy-mai-459085b3/', + campus: 'LA', + cohort: '31', + jobTitle: 'Software Development Engineer I', + industry: 'Advertising', + cities: [], + }, + { + company: 'Amazon', + name: 'Yogi Paturu', + email: 'ypaturu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yogi-paturu/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Software Development Engineer', + industry: 'Cloud', + cities: [], + }, + { + company: 'Amazon', + name: 'Yale Yng-Wong', + email: 'yyngwong@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ywyw/', + campus: 'NYC', + cohort: '32', + jobTitle: 'SDE1', + industry: 'Advertising', + cities: [], + }, + { + company: 'Amazon (AWS)', + name: 'Michael Weber', + email: 'michael.weber.jr@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael-weber-jr/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Software Development Engineer', + industry: 'Cloud Services', + cities: [], + }, + { + company: 'Amazon Prime Video', + name: 'Faraz Moallemi', + email: 'moallemifaraz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/farazmoallemi/', + campus: 'LA', + cohort: '44', + jobTitle: 'Software Development Engineer I', + industry: 'Big Tech', + cities: [], + }, + { + company: 'Amazon Web Services', + name: 'Daniel Forrester', + email: 'danielf216@gmail.com', + linkedIn: 'https://www.linkedin.com/in/danielforrester/', + campus: 'PTRI', + cohort: '5', + jobTitle: 'Cloud Application Architect', + industry: 'Cloud Services', + cities: [], + }, + { + company: 'Amazon Web Services', + name: 'Lumie (Jen) Song', + email: 'lumie.song@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lu0713/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Development Engineer II', + industry: 'Software', + cities: [], + }, + { + company: 'Amazon Web Services', + name: 'Matthew Lee', + email: 'matthewcml6022@gmail.com', + linkedIn: 'https://www.linkedin.com/in/matthewcmlee/', + campus: 'LA', + cohort: '45', + jobTitle: 'Software Development Engineer', + industry: 'Web Services / Cloud Computing', + cities: [], + }, + { + company: 'Amazon Web Services', + name: 'Taylor Rodrigues', + email: 'taylor.d.rod33@gmail.com', + linkedIn: 'https://www.linkedin.com/in/taylorrodrigues/', + campus: 'LA', + cohort: '33', + jobTitle: 'Software Development Engineer I (L4)', + industry: 'Cloud Computing', + cities: [], + }, + { + company: 'Amazon Web Services (AWS)', + name: 'Raphael Bargues', + email: 'rbargues@gmail.com', + linkedIn: 'https://www.linkedin.com/in/raphael-bargues/', + campus: 'NYC', + cohort: '17', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Amazon, AWS', + name: 'Jimmy Ngo', + email: 'jimmycngo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jimmycngo/', + campus: 'FTRI', + cohort: '2', + jobTitle: 'Software Development Engineer 1', + industry: 'cloud computing', + cities: [], + }, + { + company: 'AMC Networks', + name: 'Wade Armstrong', + email: 'wade@wadearmstrong.com', + linkedIn: 'https://www.linkedin.com/in/wadearmstrong/', + campus: 'LA', + cohort: '5', + jobTitle: 'Director, Front-End Development', + industry: 'Entertainment', + cities: [], + }, + { + company: 'American Airlines(Contracted via BrookSource)', + name: 'Mariah Talicuran', + email: 'talicuran.mariah@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mariahtalicuran/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Associate React Developer', + industry: 'Other', + cities: [], + }, + { + company: 'American Dawn', + name: 'Charlie Huang', + email: 'charliehuang913@gmail.com', + linkedIn: 'https://www.linkedin.com/in/huangcharlie', + campus: 'LA / WCRI', + cohort: '48', + jobTitle: 'Junior Software Engineer', + industry: 'Retail', + cities: [], + }, + { + company: 'American Express', + name: 'Dominic DiSalvo', + email: 'Dominicd17@gmail.com', + linkedIn: 'https://www.linkedin.com/mwlite/in/dominicdisalvo', + campus: 'FTRI', + cohort: '3', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'American Express', + name: 'Jake Diorio', + email: 'jdiorio2393@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jake-diorio/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: 'Banking', + cities: [], + }, + { + company: 'American Express', + name: 'Kelvin Shamy', + email: 'kelvinshamy@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kelvinshamy/', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'American Express', + name: 'Rebecca Turk', + email: 'rebecca.e.turk@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rebeccaturk/', + campus: 'NYC', + cohort: '5', + jobTitle: 'Engineer I', + industry: '', + cities: [], + }, + { + company: 'American Express', + name: 'Victor He', + email: 'victorhe33@gmail.com', + linkedIn: 'www.linkedin.com/in/victorhe33', + campus: 'PTRI', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'AmeriSave', + name: 'Andrew Pomatti', + email: 'ampomatti@gmail.com', + linkedIn: 'https://www.linkedin.com/in/drewpomatti/', + campus: 'LA', + cohort: '47', + jobTitle: 'Systems Engineer I', + industry: 'Real Estate', + cities: [], + }, + { + company: 'AmeriSave', + name: 'Jacob C Viesselman', + email: 'jacob.viesselman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jacobviesselman/', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Amerisave', + name: 'Norman Liu', + email: 'Normanliu91@gmail.com', + linkedIn: 'https://www.linkedin.com/in/norm-liu', + campus: 'PTRI', + cohort: '5', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'AmeriSave Mortgage Corporation', + name: 'Jason Chan', + email: 'Jason.chann91@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jason-chan1765/', + campus: 'FTRI', + cohort: '7', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'AmeriSave Mortgage Corporation', + name: 'Michael Prince', + email: 'mgp2454@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael-prince', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Ample, LLC', + name: 'Rudo Hengst', + email: 'rudohengst@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rhengst/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Lead Developer', + industry: 'Digital Marketing', + cities: [], + }, + { + company: 'Amplify', + name: 'Ekaterina Vasileva', + email: 'ekaterinavasileva768@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ekaterina-vasileva238/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Education', + cities: [], + }, + { + company: 'Amplify', + name: 'Biet Van Nguyen', + email: 'vanbietnguyen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/van-biet-nguyen-6879434a/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Software Engineer', + industry: 'Edtech', + cities: [], + }, + { + company: 'Anaconda', + name: 'Rosio Reyes', + email: 'rosio_reyes@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/rosio-reyes-09b9a256/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Software Engineer', + industry: 'Computer Software', + cities: [], + }, + { + company: 'Ancestry', + name: 'Miguel Garibay', + email: 'miguelgaribay93@gmail.com', + linkedIn: 'https://www.linkedin.com/in/miguel-garibay-mag/', + campus: 'LA', + cohort: '43', + jobTitle: 'Full Stack Software Engineer', + industry: 'Genealogy', + cities: [], + }, + { + company: 'Ancestry', + name: 'Schno Mozingo', + email: 'schno.mozingo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/schno-mozingo/', + campus: 'LA', + cohort: '12', + jobTitle: 'Senior Software Engineer', + industry: 'Geneology', + cities: [], + }, + { + company: 'Ancilia', + name: 'Clark Pang', + email: 'clarkcpang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/clarkpang/', + campus: 'LA / WCRI', + cohort: '56', + jobTitle: 'Software Engineer', + industry: 'Security', + cities: [], + }, + { + company: 'Anheuser-Busch', + name: 'Brandon Bowers', + email: 'brandonbowers1234@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brandon-michael-bowers/', + campus: 'FTRI', + cohort: '3', + jobTitle: 'Senior Front-end React Developer', + industry: 'Beverages', + cities: [], + }, + { + company: 'Annalect', + name: 'Carlos Peรฑa', + email: 'carlos.pena91@gmail.com', + linkedIn: 'https://www.linkedin.com/in/carlospena91', + campus: 'LA', + cohort: '39', + jobTitle: 'Front End Engineer', + industry: 'Advertisement and Media', + cities: [], + }, + { + company: 'Annalect', + name: 'Trent Currie', + email: 'trentdcurrie@gmail.com', + linkedIn: 'https://www.linkedin.com/in/trentdcurrie/', + campus: 'LA', + cohort: '39', + jobTitle: 'Front-End Engineer', + industry: 'Marketing', + cities: [], + }, + { + company: 'Apex Fintech Solutions', + name: 'Kevin Le', + email: 'lekevin2013@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kevinvu-le/', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Apex Systems', + name: 'Anthony Martinez', + email: 'anthony@amartinez.cc', + linkedIn: 'https://www.linkedin.com/in/tony-mtz/', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer', + industry: 'Bank', + cities: [], + }, + { + company: 'Apollo GraphQL', + name: 'Joel Burton', + email: 'joeltburton@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joeltburton', + campus: 'LA', + cohort: '26', + jobTitle: 'Software Engineer', + industry: 'Technology', + cities: [], + }, + { + company: 'Appfolio', + name: 'Erik Fisher', + email: 'efishr4@gmail.com', + linkedIn: 'https://www.linkedin.com/in/erik-fisher-53b9b6b3/', + campus: 'LA', + cohort: '24', + jobTitle: 'Software Engineer II', + industry: 'Aviation & Aerospace', + cities: [], + }, + { + company: 'Appfolio', + name: 'Michelle Holland', + email: 'michellebholland@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michellebholland/', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'AppFolio', + name: 'Timothy Barry', + email: 'tim.barry12@gmail.com', + linkedIn: 'https://www.linkedin.com/in/timothy-barry-se', + campus: 'FTRI', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Apple', + name: 'Alexander Zhang', + email: 'azalexanderzhang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/zhang-alexander/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Software Engineer', + industry: 'Tech', + cities: [], + }, + { + company: 'Apple (via Ryzen)', + name: 'Dieu Huynh', + email: 'dieuhhuynh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dieu-huynh/', + campus: 'LA', + cohort: '42', + jobTitle: 'Frontend Engineer', + industry: 'Technology', + cities: [], + }, + { + company: 'Applied Minds', + name: 'Michael Chiang', + email: 'michael.chiang.dev5@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael-chiang-dev5/', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'software engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'AppOmni', + name: 'Ousman Diallo', + email: 'ordiallo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ousman-diallo/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Front End Engineer', + industry: 'Security', + cities: [], + }, + { + company: "Arc'teryx", + name: 'Simon Grigenas', + email: 'grigenas@outlook.com', + linkedIn: 'https://www.linkedin.com/in/simon-grigenas/', + campus: 'NYC / ECRI', + cohort: '1', + jobTitle: 'Intermediate Web Applications Developer', + industry: 'Retail', + cities: [], + }, + { + company: 'Arcadia', + name: 'Adda Kridler', + email: 'addakridler@gmail.com', + linkedIn: 'https://www.linkedin.com/in/addakridler/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Software Engineer 1', + industry: 'Energy Tech', + cities: [], + }, + { + company: 'Arcadia', + name: 'Cameron Baumgartner', + email: 'cameron.h.baumgartner@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cameronbaumgartner/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: 'Renewable Energy', + cities: [], + }, + { + company: 'Arcadia', + name: 'Jehovany A Cruz', + email: 'howaboutjeho@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jehovany-cruz/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer', + industry: 'Energy - Renewable Energy', + cities: [], + }, + { + company: 'Arcadia', + name: 'Jason Liggayu', + email: 'jligg224@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jasonliggayu/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Full Stack Engineer', + industry: 'Renewable Energy', + cities: [], + }, + { + company: 'Arcadia', + name: 'Kristen Althoff', + email: 'kristenwalthoff@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kristen-althoff-3a4765b9/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Full-Stack Software Engineer I', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Arcules', + name: 'Nico Flores', + email: 'floresni1996@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nicolasaflores/', + campus: 'LA', + cohort: '48', + jobTitle: 'Software Engineer', + industry: 'Cloud Services', + cities: [], + }, + { + company: 'Arcules', + name: 'Patrick Allen', + email: 'patrick@ohana-app.io', + linkedIn: 'https://linkedin.com/in/patrickallendfs', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer', + industry: 'Cloud Video', + cities: [], + }, + { + company: 'Armoire', + name: 'Katie Sandfort', + email: 'katie.sandfort@gmail.com', + linkedIn: 'https://www.linkedin.com/in/katie-sandfort/', + campus: 'LA / WCRI', + cohort: '55', + jobTitle: 'Software Engineer', + industry: 'Retail', + cities: [], + }, + { + company: 'Artsy', + name: 'Matt Jones', + email: 'matt.chris.jones@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mc-jones/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Senior Engineer 1 (Fullstack)', + industry: 'Art', + cities: [], + }, + { + company: 'Artyc', + name: 'Daniel Geiger', + email: 'daniel.w.geiger@gmail.com', + linkedIn: 'https://www.linkedin.com/in/danielwgeiger/', + campus: 'FTRI / CTRI', + cohort: '4', + jobTitle: 'Fullstack Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Arvest Bank', + name: 'Leilani Hernandez', + email: 'leilani.digame@gmail.com', + linkedIn: 'www.linkedin.com/in/lherna05', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Front End Developer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Ash Wellness', + name: 'Andrew Rehrig', + email: 'arehrig@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andrew-rehrig/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Full Stack Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Asics', + name: 'Alexa Roberts', + email: 'alexarobertss@protonmail.com', + linkedIn: 'https://www.linkedin.com/in/alexarobertss', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Frontend Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Aspiration', + name: 'Charles Gyer', + email: 'charlesgyer@gmail.com', + linkedIn: 'https://www.linkedin.com/in/charles-gyer/', + campus: 'PTRI', + cohort: '4', + jobTitle: 'Software Engineer, Backend', + industry: 'Green Fintech', + cities: [], + }, + { + company: 'Astra', + name: 'Jae Ryu', + email: 'rj.jaeryu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jaeryu/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Senior Software Engineer', + industry: 'Space-tech', + cities: [], + }, + { + company: 'Asurion', + name: 'Jinseon Shin', + email: 'jinseonshin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jinseonshin/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Tech Insurance', + cities: [], + }, + { + company: 'Asurion', + name: 'Shah Chaudri', + email: 'shah.pro.se@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shah-chaudri/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer 3', + industry: 'Tech Insurance', + cities: [], + }, + { + company: 'Asurion', + name: 'Travis Woolston', + email: 'travis.ww@hotmail.com', + linkedIn: 'https://www.linkedin.com/in/traviswoolston/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: [], + }, + { + company: 'AT&T', + name: 'Alexander Kim', + email: 'akim3235@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexanderkim1/', + campus: 'LA', + cohort: '38', + jobTitle: 'Backend Software Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'AT&T', + name: 'Marc Doran', + email: 'doramm4408@gmail.com', + linkedIn: 'https://www.linkedin.com/in/marc-doran', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Database Developer', + industry: 'Telecommunications', + cities: [], + }, + { + company: 'AT&T', + name: 'Alina Grafkina', + email: 'grafkina.production@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alinakyaw/', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Athena Health', + name: 'Zach Pestaina', + email: 'zpestaina@gmail.com', + linkedIn: 'linkedin.com/zachpestaina/', + campus: 'NYC / ECRI', + cohort: '38', + jobTitle: 'Analytics Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Atlassian', + name: 'Giao Tran', + email: 'contactgiaotran@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gd-tran/', + campus: 'LA', + cohort: '40', + jobTitle: 'Software Engineer P3', + industry: 'Project management?', + cities: [], + }, + { + company: 'Atlassian', + name: 'Dan Snyder', + email: 'dasnyder3@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dasnyder3/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: 'Tech', + cities: [], + }, + { + company: 'Atlassian/ Trello', + name: 'Elizabeth Lotto', + email: 'fakeEmail1@fakeEmail.com', + linkedIn: 'https://www.linkedin.com/in/elizabethlotto/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer', + industry: 'Computer Software', + cities: [], + }, + { + company: 'Atos Syntel (at Disney)', + name: 'Dakota Gilbreath', + email: 'dgilbrea92@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dakota-gilbreath/', + campus: 'LA', + cohort: '34', + jobTitle: 'Full Stack Developer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Attentive', + name: 'Sam Goldberg', + email: 'sgoldber61@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sgoldber61/', + campus: 'LA', + cohort: '27', + jobTitle: 'Software Engineer, Frontend - L4', + industry: 'E-commerce', + cities: [], + }, + { + company: 'Attentive ', + name: 'Pravek Karwe', + email: 'pkarwe62@gmail.com', + linkedIn: + 'https://www.linkedin.com/in/pravek-karwe?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app', + campus: 'NYOI', + cohort: '7', + jobTitle: 'Senior Product Manager ', + industry: 'Marketing/Advertising', + cities: [], + }, + { + company: 'Audacy', + name: 'John Roman', + email: 'johnmroman33@gmail.com', + linkedIn: 'https://www.linkedin.com/in/john-m-roman/', + campus: 'NYC / ECRI', + cohort: '38', + jobTitle: 'Associate Software Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'AuditBoard', + name: 'Alex Yu', + email: 'alexjihunyu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexjihunyu/', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer', + industry: 'FinTech', + cities: [], + }, + { + company: 'Autodesk', + name: 'Javan Ang', + email: 'javanamt@gmail.com', + linkedIn: 'https://www.linkedin.com/in/javanang/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Software Engineer', + industry: 'Software/Tech', + cities: [], + }, + { + company: 'AutoFi', + name: 'Rocky Lin', + email: 'liangwen511@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rocky-lin/', + campus: 'NYC', + cohort: '14', + jobTitle: 'Senior Software Engineer', + industry: 'FinTech', + cities: [], + }, + { + company: 'Ava', + name: 'Eden Shirin', + email: 'edenshirin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eden-shirin/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Software Engineer', + industry: 'Artificial Intelligence', + cities: [], + }, + { + company: 'Avant', + name: 'David Riley Burns', + email: 'drileyburns@gmail.com', + linkedIn: 'https://www.linkedin.com/in/drileyburns/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Software Engineer', + industry: 'Loans', + cities: [], + }, + { + company: 'Avirtek', + name: 'Eliot L Nguyen', + email: 'eliotlefrin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ibeeliot', + campus: 'LA', + cohort: '34', + jobTitle: 'Front End Lead Developer', + industry: 'Cybersecurity', + cities: [], + }, + { + company: 'Avise', + name: 'Frank Norton', + email: 'jfnorton@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jfnorton32/', + campus: 'LA', + cohort: '37', + jobTitle: 'Full Stack Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Avoma', + name: 'Kevin Chung', + email: 'kevin.c@me.com', + linkedIn: 'https://www.linkedin.com/in/kevc/', + campus: 'LA / WCRI', + cohort: '47', + jobTitle: 'Software Engineer - Frontend', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'AVOXI', + name: 'Shirley Luu', + email: 'sh.rleyluu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/luu-shirley', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Full Stack Software Engineer', + industry: 'Business Tech/Enterprise Tech', + cities: [], + }, + { + company: 'Avvir', + name: 'Sharon Zhu', + email: 'sharonzhu.15@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sharonzhu/', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer II', + industry: 'Construction Tech', + cities: [], + }, + { + company: 'AWS', + name: 'Blake Myrick', + email: 'blake.myrick@gmail.com', + linkedIn: 'https://www.linkedin.com/in/blake-myrick', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Software Development Engineer', + industry: 'Tech', + cities: [], + }, + { + company: 'AWS', + name: 'George Jeng', + email: 'gjenga@icloud.com', + linkedIn: 'https://www.linkedin.com/in/gjenga', + campus: 'LA', + cohort: '49', + jobTitle: 'SDE1', + industry: 'Cloud Services', + cities: [], + }, + { + company: 'AWS', + name: 'Marc Burnie', + email: 'MarcABurnie@gmail.com', + linkedIn: 'https://www.linkedin.com/in/marcburnie', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Development Engineer II', + industry: 'Tech', + cities: [], + }, + { + company: 'AWS', + name: 'Patty Qian', + email: 'patty.qian@gmail.com', + linkedIn: 'https://www.linkedin.com/in/patty-qian/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Development Engineer', + industry: 'Tech', + cities: [], + }, + { + company: 'Axim Geospatial', + name: 'Kevin Le', + email: 'kevinle1003@gmail.com', + linkedIn: 'https://www.linkedin.com/in/xkevinle/', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Software Developer', + industry: 'IT Services', + cities: [], + }, + { + company: 'Axle Health', + name: 'Alexandra Ashcraft', + email: 'lash211@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexandra-ashcraft1/', + campus: 'FTRI / CTRI', + cohort: '17', + jobTitle: 'Software Engineer', + industry: 'Healthtech/Healthcare', + cities: [], + }, + { + company: 'Axon', + name: 'Meng Ting Chiang', + email: 'a123deandean@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mengting-chiang/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer', + industry: 'Public Safety', + cities: [], + }, + { + company: 'B-stock solutions', + name: 'Michael Feldman', + email: 'michaelfeldma1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael-feldman15/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Nodejs / microservices software engineer', + industry: 'E-commerce', + cities: [], + }, + { + company: 'Bach', + name: 'Abbey Campbell', + email: 'campbellabbeya@gmail.com', + linkedIn: 'https://www.linkedin.com/in/campbellabbeya/', + campus: 'LA', + cohort: '31', + jobTitle: 'Frontend Developer', + industry: "Entertainment? Wed-tech? lol idk it's pretty niche", + cities: [], + }, + { + company: 'BallerTV', + name: 'Jenessa Chapalamadugu', + email: 'jenessachap@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jenessachap/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Full Stack Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Bank of America', + name: 'Ranisha Rafeeque Soopi Kalphantakath', + email: 'ranisharafeeque@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ranisha-rafeeque-s-k/', + campus: 'NYC', + cohort: '26', + jobTitle: 'AVP, Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Barstool Sports', + name: 'Daniel Nagano-Gerace', + email: 'dnaganog@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dnaganog/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Senior Backend Engineer', + industry: 'Media', + cities: [], + }, + { + company: 'Bayer Crop Science (Neteffects)', + name: 'Jason Fricano', + email: 'jason.fricano@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jasonfricano/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Node / React Developer', + industry: 'Agricultural Science', + cities: [], + }, + { + company: 'Bayer Crop Sciences', + name: 'Stephen Budarz', + email: 'sbudarz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/steve-budarz/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Full Stack Engineer', + industry: 'Agriculture', + cities: [], + }, + { + company: 'BD', + name: 'Annabelle Ni', + email: 'ann.j.ni@gmail.com', + linkedIn: 'https://www.linkedin.com/in/annabelleni/', + campus: 'FTRI / CTRI', + cohort: '17', + jobTitle: 'Software Engineer', + industry: 'Healthtech/Healthcare', + cities: [], + }, + { + company: 'Beacon Hill Staffing (Charter Communications)', + name: 'David Russo', + email: 'dr2378@gmail.com', + linkedIn: 'https://www.linkedin.com/in/russo-david', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Telecommunications', + cities: [], + }, + { + company: 'Beacon Hill Staffing (working for Charter Communications)', + name: 'Jessica Balding', + email: 'jessica.r.balding@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jessica-balding/', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Full Stack Developer', + industry: 'Telecommunications', + cities: [], + }, + { + company: 'Beautycounter', + name: 'Mario Granberri', + email: 'mgranberri@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mgranberri/', + campus: 'LA', + cohort: '25', + jobTitle: 'Full stack software engineer', + industry: 'Compliance', + cities: [], + }, + { + company: 'Behavior Frontiers', + name: 'Chance Hernandez', + email: 'chance.hernandez24@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chance-hernandez/', + campus: 'LA', + cohort: '40', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Bentobox', + name: 'Corey Van Splinter', + email: 'cvanspl1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/corey-van-splinter/', + campus: 'LA', + cohort: '39', + jobTitle: 'Senior Software Engineer', + industry: 'Hospitality', + cities: [], + }, + { + company: 'Bentobox', + name: 'Greg Dixon', + email: 'gdixon529@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gdixon529/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Engineer', + industry: 'Software', + cities: [], + }, + { + company: 'BentoBox', + name: 'Brian Liang', + email: 'liangbrian94@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brian-z-liang/', + campus: 'LA', + cohort: '43', + jobTitle: 'Product Support Engineer', + industry: 'Not sure', + cities: [], + }, + { + company: 'Berkadia', + name: 'Isaac Kittila', + email: 'isaac.kittila@gmail.com', + linkedIn: 'https://www.linkedin.com/in/isaac-kittila/', + campus: 'LA', + cohort: '39', + jobTitle: 'Associate Software Engineer', + industry: 'Commercial Real Estate', + cities: [], + }, + { + company: 'Best Buy', + name: 'Alexander Hager', + email: 'alexhager19@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hager-alexander/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Front end Engineer', + industry: 'Data analytics', + cities: [], + }, + { + company: 'Better.com', + name: 'Stefan Armijo', + email: 'stefan.armijo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stefanarmijo/', + campus: 'LA', + cohort: '21', + jobTitle: 'Sr. Software Engineer', + industry: '', + cities: [], + }, + { + company: 'BidWrangler', + name: 'Kylene Hohman', + email: 'kylenehohman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kylene-hohman', + campus: 'PTRI', + cohort: '5', + jobTitle: 'Full-Stack Developer', + industry: 'Auction Services', + cities: [], + }, + { + company: 'Bigeye', + name: 'Dasha Kondratenko', + email: 'dashakondrattenko@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dasha-k/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer 1', + industry: 'Data quality', + cities: [], + }, + { + company: 'BigID', + name: 'Helen Regula', + email: 'hregula03@gmail.com', + linkedIn: 'https://www.linkedin.com/in/helenregula/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Senior Full Stack Software Engineer', + industry: 'Cyber Security', + cities: [], + }, + { + company: 'Bill.com', + name: 'Gordon Hui', + email: 'Maddogg612@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gordon-hui', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Software engineer 2 - Frontend', + industry: 'Fintech', + cities: [], + }, + { + company: 'Bio-Rad Laboratories', + name: 'Tiffany Yang', + email: 'teefyang7857@gmail.com', + linkedIn: 'https://www.linkedin.com/in/teayang/', + campus: 'LA', + cohort: '21', + jobTitle: 'Software Engineer', + industry: 'Biotech', + cities: [], + }, + { + company: 'BitGo', + name: 'Joe Kinney', + email: 'josephrkinney@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joekinney17/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Bitovi', + name: 'Edward Park', + email: 'edwardpark123@gmail.com', + linkedIn: 'https://www.linkedin.com/in/edwardparkwork/', + campus: 'LA', + cohort: '41', + jobTitle: 'Junior Developer and Consultant', + industry: 'Computer Software', + cities: [], + }, + { + company: 'BitPay', + name: 'Taven Shumaker', + email: 'tavensshumaker@gmail.com', + linkedIn: 'https://www.linkedin.com/in/taven-shumaker/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Black Cape', + name: 'kyle saunders', + email: 'kylersaunders@gmail.com', + linkedIn: '/kylersaunders', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Blackrock', + name: 'Jiaxin Li', + email: 'jiaxin.li.gogo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lijiaxingogo/', + campus: 'NYC', + cohort: '22', + jobTitle: 'DevOps Engineer', + industry: '', + cities: [], + }, + { + company: 'Blackthorn Software', + name: 'Aalok Shah', + email: 'aalok.tsh@gmail.com', + linkedIn: '/kolashah', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Full Stack Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Blackthorn.io', + name: 'Tristan Onfroy', + email: 'tonfroy90@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tristan-onfroy/', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Support Software Engineer', + industry: 'Software Solutions/Developer Tools', + cities: [], + }, + { + company: 'Blend', + name: 'Peter Makhnatch', + email: 'p.makhnatch@gmail.com', + linkedIn: 'https://www.linkedin.com/in/petermakhnatch/', + campus: 'PTRI', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Blink Health', + name: 'Matthew Digel', + email: 'Digel.matt@gmail.com', + linkedIn: 'https://www.linkedin.com/in/matt-digel', + campus: 'PTRI', + cohort: 'Beta', + jobTitle: 'Sr. Product Manager', + industry: 'Health Care Tech', + cities: [], + }, + { + company: 'Blizzard', + name: 'Christopher Washburn', + email: 'chris132128@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christopherwashburn/', + campus: 'LA', + cohort: '24', + jobTitle: 'Software Development Engineer', + industry: 'Insurance', + cities: [], + }, + { + company: 'BlockFi', + name: 'Mohtasim Chowdhury', + email: 'mohtasim.hc@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mohtasimc/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Frontend Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'BLOCKS', + name: 'Christopher C Carney', + email: 'ccarney51@gmail.com', + linkedIn: 'https://www.linkedin.com/mwlite/in/christopher-c-carney', + campus: 'NYC', + cohort: '24', + jobTitle: 'Senior Backend Engineer', + industry: 'Technology', + cities: [], + }, + { + company: 'Bloom Medicinals', + name: 'Candie Hill', + email: 'can330330@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/candie-hill/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Jr Software Developer', + industry: 'Other', + cities: [], + }, + { + company: 'Bloomberg', + name: 'John Haberstroh', + email: 'haberstroh.john@gmail.com', + linkedIn: 'https://www.linkedin.com/in/johnhaberstroh/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Senior Fullstack Engineer', + industry: 'Financial,Software,Media,Data', + cities: [], + }, + { + company: 'Bloomberg', + name: 'James Maguire', + email: 'Jmaguire655@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Bloomberg', + name: 'Cedric Lee', + email: 'leeced@umich.edu', + linkedIn: 'https://www.linkedin.com/in/leeced/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Bloomberg', + name: 'Duke Lee', + email: 'leeduke90@gmail.com', + linkedIn: 'https://www.linkedin.com/in/duke-lee/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Software Engineer', + industry: 'Fin-Tech', + cities: [], + }, + { + company: 'Bloomberg', + name: 'Michael Chin', + email: 'mikechin37@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael-9-chin/', + campus: 'NYC / ECRI', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Bloomberg Industry Group', + name: 'Neel Lakshman', + email: 'neelanjan.lakshman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/neel-lakshman/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Web Application Architect I', + industry: 'Other', + cities: [], + }, + { + company: 'Bloomberg L.P.', + name: 'Ariel Hyman', + email: 'a.o.hyman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ahyman0712/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Bloomberg LP', + name: 'Jinhee Choi', + email: 'jinhee.k.choi@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jinheekchoi/', + campus: 'LA', + cohort: '44', + jobTitle: 'Senior Software Engineer (Consultant)', + industry: 'Fintech', + cities: [], + }, + { + company: 'Bloomboard', + name: 'Junie Hou', + email: 'selilac9@gmail.com', + linkedIn: 'https://www.linkedin.com/in/juniehou/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Blue Cross Blue Sheild of Florida', + name: 'Adam Rodriguez', + email: 'adamxrodriguez@gmail.com', + linkedIn: 'https://linkedin.com/in/adamrodriguez/', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Senior React Node Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Blue Origin', + name: 'Sam VanTassel', + email: 'vantassel.sam@gmail.com', + linkedIn: 'https://www.linkedin.com/in/samvantassel/', + campus: 'LA', + cohort: '47', + jobTitle: 'Software Engineer I', + industry: 'Aerospace', + cities: [], + }, + { + company: 'Blueberry Pediatrics', + name: 'Lina Lee', + email: 'woorin.lee1524@gmail.com', + linkedIn: 'www.linkedin.com/in/lee-lina', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Full-Stack Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'BlueStream Health', + name: 'Wei Huang', + email: 'wei.waye.huang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/wei-waye-huang/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Senior Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'BlueVoyant', + name: 'Mahfuz Kabir', + email: 'mahfuzk@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mahfuzkabir/', + campus: 'NYC', + cohort: '4', + jobTitle: 'Software Engineer (Managed Security Services)', + industry: '', + cities: [], + }, + { + company: 'BNY Mellon', + name: 'Ahsan Ali', + email: 'ali.ahsan95@gmail.com', + linkedIn: 'https://www.linkedin.com/in/greyali', + campus: 'FTRI / CTRI', + cohort: '12', + jobTitle: 'Senior Full Stack Developer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Bolt', + name: 'Chelsey Fewer', + email: 'chelsey.fewer@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chelsey-fewer/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Support Engineer', + industry: 'Ecommerce', + cities: [], + }, + { + company: 'Booster', + name: 'Evelin Goldin', + email: 'evelinsaba1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/evelin-goldin/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Fullstack Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Booz Allen Hamilton', + name: 'Sang Rea Han', + email: 'sxhanx@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sangreahan/', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Sr. Consultant', + industry: 'Consulting', + cities: [], + }, + { + company: 'Boulevard', + name: 'Ashley Austin', + email: 'aaustin86@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mraustin2u', + campus: 'LA', + cohort: '34', + jobTitle: 'Senior Associate Software Engineer', + industry: 'Business Management Tool', + cities: [], + }, + { + company: 'Boxed', + name: 'Adam Goodman', + email: 'adamrgoodman1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adam-goodman1/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Backend Engineer I', + industry: 'e-commerce', + cities: [], + }, + { + company: 'BP3', + name: 'Brian Jungk', + email: 'brian.jungk@outlook.com', + linkedIn: 'https://www.linkedin.com/in/brian-jungk/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Software Engineer', + industry: 'Consulting', + cities: [], + }, + { + company: 'Brady Corporation', + name: 'Sean Flynn', + email: 'seanflynn5000@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sean-g-flynn', + campus: 'NYC / ECRI', + cohort: '38', + jobTitle: 'Web Developer', + industry: 'Business Tech/Enterprise Tech', + cities: [], + }, + { + company: 'Branding Brand', + name: 'Andy Heng', + email: 'andyheng1095@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andy-heng/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Engineer', + industry: 'E-Commerce', + cities: [], + }, + { + company: 'Branding Brand', + name: 'Christian Wong', + email: 'ctcwong73@gmail.com', + linkedIn: 'https://www.linkedin.com/in/wong-christian/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Branding Brand', + name: 'Nobuhide Ajito', + email: 'Nobuhide95@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nobuhide-ajito/', + campus: 'LA', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Technology', + cities: [], + }, + { + company: 'Bread Financial', + name: 'Cho Yee Win Aung', + email: 'choyeewinag@gmail.com', + linkedIn: 'https://www.linkedin.com/in/choyeewinaung/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer 1', + industry: 'Fintech', + cities: [], + }, + { + company: 'Brighter', + name: 'Elliot Kim', + email: 'elliot.kim@gmail.com', + linkedIn: 'https://www.linkedin.com/in/elliotjykim/', + campus: 'LA', + cohort: '24', + jobTitle: 'Full Stack Engineer', + industry: 'Gaming & Entertainment', + cities: [], + }, + { + company: 'Brighter (Cigna)', + name: 'David Marquess', + email: 'dave.marquess@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dave-marquess/', + campus: 'LA', + cohort: '25', + jobTitle: 'Senior Software Engineer', + industry: 'Cybersecurity', + cities: [], + }, + { + company: 'Brightflow AI', + name: 'Erika Jung', + email: 'erika.h.jung@gmail.com', + linkedIn: 'https://www.linkedin.com/in/erikahjung/', + campus: 'LA / WCRI', + cohort: '56', + jobTitle: 'Software Engineer', + industry: 'IT Services', + cities: [], + }, + { + company: 'Brillio', + name: 'Alexander Smith', + email: 'ajsmith925@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ajsmith925/', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer', + industry: 'Software Consulting', + cities: [], + }, + { + company: 'Brooksource, contracted to Northwestern Mutual', + name: 'Jessica Louie Lee', + email: 'jlouielee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jessllee/', + campus: 'LA', + cohort: '48', + jobTitle: + 'Backend Node Engineer with Brooksource, Full stack Engineer with Northwestern Mutual', + industry: 'Fintech', + cities: [], + }, + { + company: 'BuildOps', + name: 'Muhammad Trad', + email: 'Muhammad.trad@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/muhammadtrad/', + campus: 'LA', + cohort: '37', + jobTitle: 'Senior Software Engineer', + industry: 'Commercial Real Estate', + cities: [], + }, + { + company: 'Business Alliance Financial Services (BAFS)', + name: 'Justin McKay', + email: 'justinmckay99@gmail.com', + linkedIn: 'https://www.linkedin.com/in/justinwmckay/', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Business Alliance Financial Services, LLC', + name: 'Joe Bigelow', + email: 'joebigelow@protonmail.com', + linkedIn: 'https://www.linkedin.com/in/joe-bigelow', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer', + industry: 'Finance (Credit union service organization)', + cities: [], + }, + { + company: 'ButcherBox', + name: 'Maxwell Shick', + email: 'maxwellshick@gmail.com', + linkedIn: 'https://www.linkedin.com/in/maxwell-shick/', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Restaurant, Food, and Beverage', + cities: [], + }, + { + company: 'Butterfly Network', + name: 'Akiko Hagio Dulaney', + email: 'akikoinhd@gmail.com', + linkedIn: 'https://www.linkedin.com/in/akiko-hagio-dulaney/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Web/API QA Automation Engineer', + industry: 'Healthtech', + cities: [], + }, + { + company: 'Butterfly Network', + name: 'Crystal (Crys) Lim', + email: 'crystal.joy.lim@gmail.com', + linkedIn: 'https://www.linkedin.com/in/crystallim/', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer II - Cloud Backend', + industry: 'Medical Equipment Manufacturing', + cities: [], + }, + { + company: 'C3 AI', + name: 'Shelby Cotton', + email: 'hello@shelbycotton.com', + linkedIn: 'https://linkedin.com/in/shelbycotton', + campus: 'NYC', + cohort: '23', + jobTitle: 'Forward Deployed Engineer', + industry: 'Artificial intelligence', + cities: [], + }, + { + company: 'C3.AI', + name: 'Dominic Genuario', + email: 'dominicgenuario@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dominic-genuario/', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Forward Deployed Engineer', + industry: 'Artificial Intelligence', + cities: [], + }, + { + company: 'Cadent', + name: 'William Yoon', + email: 'williamdyoon@gmail.com', + linkedIn: 'https://www.linkedin.com/in/williamdyoon/', + campus: 'LA', + cohort: '42', + jobTitle: 'Front End Engineer', + industry: 'TV Advertising', + cities: [], + }, + { + company: 'CafeMedia', + name: 'Jasper Narvil', + email: 'jaspernarvil@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jaspernarvil/', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Software Eng II', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'CAIS Group', + name: 'Anson Avellar', + email: 'anson@ansonavellar.com', + linkedIn: 'https://www.linkedin.com/in/ansonavellar/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Front End Developer (internally Associate)', + industry: 'Fintech', + cities: [], + }, + { + company: 'Canadian Tire Corporation', + name: 'Ansel Andro Santos', + email: 'anselandrosantos@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ansel-santos', + campus: 'NYOI', + cohort: '3', + jobTitle: 'Manager, Advanced Measurement & Analytics', + industry: 'Data/Analytics/Cloud', + cities: [], + }, + { + company: 'Canary Connect', + name: 'Dillon Garrett', + email: 'dillon.garrett.dev@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dillon-garrett/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Front End Engineer', + industry: 'Home Security', + cities: [], + }, + { + company: 'Capital Connect by JP Morgan', + name: 'Peter Baniuszewicz', + email: 'Baniuszewicz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/peter-ba/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Adrian Inza-Cruz', + email: 'ainzacruz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adrian-inza-cruz/', + campus: 'LA', + cohort: '41', + jobTitle: 'Senior Associate Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Alexander Gurfinkel', + email: 'alexgurfinkel@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexandergurfinkel/', + campus: 'PTRI', + cohort: '5', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Jung Ho Lee', + email: 'alexxleee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jungholee27/', + campus: 'FTRI', + cohort: '1', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Allan MacLean', + email: 'allanpmaclean@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Alvin Ma', + email: 'alvin.ma95@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alvinrayma/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Capital One', + name: 'Alvin Cheng', + email: 'alvincheng505@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alvin-cheng/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: 'Banking', + cities: [], + }, + { + company: 'Capital One', + name: 'Allana Ordonez', + email: 'ayaordonez@gmail.com', + linkedIn: 'https://www.linkedin.com/in/allana-ordonez/', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer, Frontend', + industry: 'Banking/Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Brandon Miller', + email: 'bmiller1881@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brandon-j-miller', + campus: 'FTRI / CTRI', + cohort: '12', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Carson Chen', + email: 'carson.cy.chen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/carsoncychen/', + campus: 'NYC', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'IT', + cities: [], + }, + { + company: 'Capital One', + name: 'Carlos Botero-Vargas', + email: 'cbotero-vargas@outlook.com', + linkedIn: 'https://www.linkedin.com/in/carlosb-v/', + campus: 'FTRI', + cohort: '1', + jobTitle: 'Senior Software Engineer', + industry: 'Finance', + cities: [], + }, + { + company: 'Capital One', + name: 'Jason Clark', + email: 'clarkjasonee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/clarkjasonee/', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Sina Kahrobaei', + email: 'cna.kahrobaei@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sinakahrobaei/', + campus: 'FTRI', + cohort: '6', + jobTitle: 'Senior Software Engineer (Full Stack)', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Christopher cheng', + email: 'Ctpcheng@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ctpcheng/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Senior Software Engineer, Front End', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Darren Chan', + email: 'darrenc3195@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dbchan/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Full Stack Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'David Zhang', + email: 'davidnyc@umich.edu', + linkedIn: 'https://www.linkedin.com/in/davidnyc/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Fullstack Software Engineer', + industry: 'Finance', + cities: [], + }, + { + company: 'Capital One', + name: 'Dani Almaraz', + email: 'dtalmaraz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dani-almaraz/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Eugene Lee', + email: 'eugleenyc@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Nel Malikova', + email: 'gunelmalikova@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gmalikova/', + campus: 'NYC', + cohort: '10', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Hemwatie Persaud', + email: 'hemwatiecodes@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hemwatie/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'Banking', + cities: [], + }, + { + company: 'Capital One', + name: 'Ian Madden', + email: 'ianfmadden@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ian-madden/', + campus: 'FTRI / CTRI', + cohort: '7', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Jae Hyun Ha', + email: 'jaehyunha96@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jae-hyun-ha/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Software Engineer - backend', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'James Ma', + email: 'jamesma991@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jamesma1199/', + campus: 'FTRI', + cohort: '7', + jobTitle: 'Senior Associate Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Jennifer Chau', + email: 'jenniferchau512@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jenniferchau512/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Jin Oh', + email: 'jintoh613@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jintoh613/', + campus: 'LA', + cohort: '42', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'John Li', + email: 'jli159@binghamton.edu', + linkedIn: 'https://www.linkedin.com/in/john-li7/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Fullstack Engineer', + industry: 'Banking', + cities: [], + }, + { + company: 'Capital One', + name: 'Joseph Amos', + email: 'joeamos17@gmail.com', + linkedIn: 'linkedin.com/in/joe-amos', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Senior Associate Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Capital One', + name: 'Johnny Chen', + email: 'johncschen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/johnnycschen/', + campus: 'LA', + cohort: '45', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Jonathan Chen', + email: 'jonathanchen832@gmail.com', + linkedIn: 'Https://linkedin.com/in/jonathan-hp-chen', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Full Stack Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'June Culp', + email: 'juneculp1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/juneculp/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Senior Front End Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Kristine Aguda', + email: 'kaguda03@gmail.com', + linkedIn: 'https://www.linkedin.com/kristine-aguda', + campus: 'LA', + cohort: '45', + jobTitle: 'Software Engineer, Full Stack', + industry: 'Fin tech', + cities: [], + }, + { + company: 'Capital One', + name: 'Kasthuri Menon', + email: 'kasthuri.menon1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kasthurimenon/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Senior Software Engineer', + industry: 'Banking/ Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Ken Litton', + email: 'kennethclitton@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ken-litton/', + campus: 'LA', + cohort: '43', + jobTitle: 'Backend Engineer, Senior Associate', + industry: 'Finance/Banking', + cities: [], + }, + { + company: 'Capital One', + name: 'Kevin Park-Lee', + email: 'kevin38424@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kevin38424/', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Kellen Levy', + email: 'Kmalcolmlevy@gmail.com', + linkedIn: 'https://www.linked.com/in/kellenmlevy', + campus: 'FTRI', + cohort: '1', + jobTitle: 'Senior Associate Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Jason Lin', + email: 'lin.jasonp@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jplin/', + campus: 'FTRI', + cohort: '7', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Luke Cho', + email: 'luke.h.cho@gmail.com', + linkedIn: 'https://www.linkedin.com/in/luke-h-cho/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'Banking', + cities: [], + }, + { + company: 'Capital One', + name: 'Philip Kang', + email: 'm.philipkang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/pkmi/', + campus: 'NYC / ECRI', + cohort: '27', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Capital One', + name: 'Matthew Femia', + email: 'mattfemia1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mattfemia/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'May Li', + email: 'mayleeli1234@gmail.com', + linkedIn: 'https://www.linkedin.com/in/maysli', + campus: 'LA', + cohort: '44', + jobTitle: 'Fullstack Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Matt von der Lippe', + email: 'mvdlippe@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mvdlippe/', + campus: 'FTRI', + cohort: '3', + jobTitle: 'Senior Associate Software Engineer - Backend', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Nathanael Tracy', + email: 'n.tracy@outlook.com', + linkedIn: 'https://www.linkedin.com/in/nathanael-tracy/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Senior Associate Software Engineer', + industry: 'Finance', + cities: [], + }, + { + company: 'Capital One', + name: 'Nathan Yang', + email: 'nathan.yang16@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nathanmyang/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Sr. Associate Software Engineer (Full-Stack)', + industry: 'Business', + cities: [], + }, + { + company: 'Capital One', + name: 'Nicholas A Gonzalez', + email: 'nicholas.a.gonz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nicholasagonzalez/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Fullstack Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Patrick Slagle', + email: 'patrickryanslagle@gmail.com', + linkedIn: 'https://www.linkedin.com/in/patrickslagle/', + campus: 'LA', + cohort: '23', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Capital One', + name: 'Peter Van', + email: 'peterrvan@gmail.com', + linkedIn: 'https://www.linkedin.com/in/peter-van/', + campus: 'LA', + cohort: '43', + jobTitle: 'Front End Software Engineer', + industry: 'Financial Services', + cities: [], + }, + { + company: 'Capital One', + name: 'Rachel Patterson', + email: 'racheljpatterson@gmail.com', + linkedIn: 'https://www.linkedin.com/in/racheljpatterson/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Software Engineer, Full Stack', + industry: 'Banking/Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Quentin Rousset', + email: 'roussetquent1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/qrousset/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Sr Software Engineer Back-end', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Ahad Rajput', + email: 'sachem2015@gmail.com', + linkedIn: 'https://www.linkedin.com/in/arajput96/', + campus: 'FTRI', + cohort: '3', + jobTitle: 'Senior Software Engineer', + industry: 'Finance/Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Sam Portelance', + email: 'sportelance1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sportelance/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Senior Associate Fullstack Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Stephen Kim', + email: 'stephenkim612@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stephenkim612/', + campus: 'LA', + cohort: '47', + jobTitle: 'Software Engineer, Fullstack', + industry: 'Finance', + cities: [], + }, + { + company: 'Capital One', + name: 'Andrew Talle', + email: 'talle.andrew@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andrewtalle/', + campus: 'FTRI', + cohort: '6', + jobTitle: 'Backend Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Terrence Granger', + email: 'Terrence.granger@gmail.com', + linkedIn: 'https://www.linkedin.com/in/terrence-granger/', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Thomas Reeder', + email: 'thomaseugenereeder@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thomas-reeder/', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer, Full Stack', + industry: 'Banking', + cities: [], + }, + { + company: 'Capital One', + name: 'Trevor Leung', + email: 'trevorleeeung@gmail.com', + linkedIn: 'https://www.linkedin.com/in/trevleung/', + campus: 'LA', + cohort: '47', + jobTitle: 'Software Engineer, Full Stack', + industry: 'Finance/Banking', + cities: [], + }, + { + company: 'Capital One', + name: 'Vivian Wu', + email: 'Vivian.wu.here@gmail.com', + linkedIn: 'https://www.linkedin.com/in/viv-wu', + campus: 'LA', + cohort: '44', + jobTitle: 'Solutions Engineer', + industry: 'Healthcare fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Vicki Yang', + email: 'vwyangdev@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vwyang/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Senior Software Engineer', + industry: 'Financial Services', + cities: [], + }, + { + company: 'Capital One', + name: 'Walker Marsh', + email: 'walkermarsh9@gmail.com', + linkedIn: 'https://www.linkedin.com/in/WalkerVEMarsh/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Software Engineer, Full Stack', + industry: 'Fintech/ Banking', + cities: [], + }, + { + company: 'Capital One', + name: 'Kevin Richardson', + email: 'kevin@karcodes.com', + linkedIn: 'https://www.linkedin.com/in/kevinalexrichardson/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Senior Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Capital One', + name: 'Michael Benliyan', + email: 'michaelbenliyan@gmail.com', + linkedIn: 'michaelbenliyan', + campus: 'LA / WCRI', + cohort: '55', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Nathan Cho', + email: 'nathan.y.cho@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nathanycho', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Martin Ng', + email: 'kamartinng@gmail.com', + linkedIn: 'https://www.linkedin.com/in/martinngsf/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Senior Full Stack Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One', + name: 'Honghao sun', + email: 'sunhonghaoshh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/honghaosunmichael/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Senior Fullstack Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Capital One Bank', + name: 'Donald Cross', + email: 'derekcrosslu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/crossderek/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Front End Engineer', + industry: 'Finance', + cities: [], + }, + { + company: 'Capital Rx', + name: 'Htin Linn Aung', + email: 'htinlinnag1993@gmail.com', + linkedIn: 'https://www.linkedin.com/in/htinlinnaung/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Senior Fullstack Software Engineer', + industry: 'Healthcare Tech', + cities: [], + }, + { + company: 'Capital Rx', + name: 'Jin Qin', + email: 'jxq32@case.edu', + linkedIn: 'https://www.linkedin.com/in/jcqin/', + campus: 'FTRI', + cohort: '1', + jobTitle: 'Senior Fullstack Developer', + industry: 'Health Care', + cities: [], + }, + { + company: 'Caraway Health', + name: 'Gwendolyn (Gwen) Phillips', + email: 'gwen.phil@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gwen-phillips/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Full Stack Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Carbon Mapper', + name: 'Zach Franz', + email: 'zachafranz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/zacharyfranz/', + campus: 'NYC', + cohort: '4', + jobTitle: 'Software Engineer', + industry: 'Research', + cities: [], + }, + { + company: 'Care/of', + name: 'Jake Pino', + email: 'Jakepino@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/jake-pino', + campus: 'NYC', + cohort: '30', + jobTitle: 'Senior Software Engineer', + industry: 'Wellness', + cities: [], + }, + { + company: 'Care/of', + name: 'Malika Butler', + email: 'missemmbutler@gmail.com', + linkedIn: 'https://www.linkedin.com/in/malikabutler', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Health tech', + cities: [], + }, + { + company: 'CareDox', + name: 'Christine Choi', + email: 'christine.yj.choi@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christineyjchoi/', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Retail', + cities: [], + }, + { + company: 'Carrot Fertility', + name: 'Heather Barney', + email: 'heather.barney@gmail.com', + linkedIn: 'https://www.linkedin.com/in/heather-barney1/', + campus: 'PTRI', + cohort: '4', + jobTitle: 'Associate Software Engineer', + industry: 'Insurance', + cities: [], + }, + { + company: 'Cassian Solutions, Inc.', + name: 'Darin Ngau', + email: 'darin.ngau@gmail.com', + linkedIn: 'https://www.linkedin.com/in/darin-ngau/', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Cast & Crew', + name: 'Tianhao Yao', + email: 'mapleseventh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tianhao-yao-2021826a/', + campus: 'LA', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'cast and crew', + name: 'Sam Selfridge', + email: 'sirclesam@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/sam-selfridge/', + campus: 'LA', + cohort: '28', + jobTitle: 'software engineer', + industry: 'fintech/entertainment', + cities: [], + }, + { + company: 'Cast.app', + name: 'Robert Maeda', + email: 'rob.maeda3@gmail.com', + linkedIn: 'https://www.linkedin.com/in/robert-maeda/', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Catchpoint', + name: 'Neyser Zana', + email: 'neyserj.zana@gmail.com', + linkedIn: 'https://www.linkedin.com/in/neyser-zana-860018152/', + campus: 'NYC', + cohort: '7', + jobTitle: 'Software Engineer II', + industry: 'Advertising', + cities: [], + }, + { + company: 'Causebox', + name: 'Grace Kim', + email: 'gracekiim@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gracekiim/', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Engineer', + industry: 'Consumer products', + cities: [], + }, + { + company: 'CB Insights', + name: 'Hazel Na', + email: 'hazel.na3@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hyeseon-na', + campus: 'NYC', + cohort: '27', + jobTitle: 'Software Engineer III - Frontend', + industry: 'business analytics platform', + cities: [], + }, + { + company: 'CBTS - CVS', + name: 'Chang Shuen Lee', + email: 'changshuen.lee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/daveelee/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Frontend Software Engineer', + industry: 'Health', + cities: [], + }, + { + company: 'Cecelia Health', + name: 'Kwadwo Asamoah', + email: 'addoasa94@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kwadwoasamoah', + campus: 'NYC', + cohort: '12', + jobTitle: 'Front End Engineer', + industry: 'Health', + cities: [], + }, + { + company: 'Cedars-Sinai Cancer', + name: 'William Chu', + email: 'Williamchu9@gmail.com', + linkedIn: 'https://www.linkedin.com/in/williamchu9/', + campus: 'LA', + cohort: '49', + jobTitle: 'Software Engineer/Programming Analyst', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Cenith Innovations', + name: 'Serena Amos', + email: 'amos.serena17@gmail.com', + linkedIn: 'https://www.linkedin.com/in/serena-amos/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Software Engineer', + industry: 'Aerospace', + cities: [], + }, + { + company: 'Centene', + name: 'Serena Romano', + email: 'serenahromano2000@gmail.com', + linkedIn: 'https://www.linkedin.com/in/srom1/', + campus: 'NYC / ECRI', + cohort: '41', + jobTitle: 'Full Stack Developer', + industry: 'Healthtech/Healthcare', + cities: [], + }, + { + company: 'Cequint', + name: 'Carol Xia', + email: 'c.xia.98@gmail.com', + linkedIn: 'linkedin.com/in/carolxia2', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Software Development Engineer', + industry: 'Telecommunications', + cities: [], + }, + { + company: 'Cerebral', + name: 'Irine Kang', + email: 'irine.kang@codesmith.io', + linkedIn: 'https://www.linkedin.com/in/irinekang/', + campus: 'FTRI', + cohort: '6', + jobTitle: 'Full Stack Engineer II', + industry: 'Medicine', + cities: [], + }, + { + company: 'CH Robinson', + name: 'Joseph Cheng', + email: 'josephcheng.y@gmail.com', + linkedIn: 'https://www.linkedin.com/in/josephcheng-y/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Engineer', + industry: 'Logistic', + cities: [], + }, + { + company: 'Chainalysis', + name: 'Natalia Vargas-Caba', + email: 'nvargas@gm.slc.edu', + linkedIn: 'https://www.linkedin.com/in/nataliavargascaba', + campus: 'NYC', + cohort: '17', + jobTitle: 'Technical Writer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Chainguard', + name: 'Felipe Ocampo', + email: 'felipe.aocampo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ocampofelipe/', + campus: 'LA / WCRI', + cohort: '56', + jobTitle: 'Web Developer', + industry: 'Marketing/Advertising', + cities: [], + }, + { + company: 'Chainlink', + name: 'Finley Decker', + email: 'finleydecker@gmail.com', + linkedIn: 'https://www.linkedin.com/in/finleydecker/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Software Engineer', + industry: 'Blockchain/Web3', + cities: [], + }, + { + company: 'Change Healthcare', + name: 'Bruce Wong', + email: 'dbrucewong@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dawong/', + campus: 'LA', + cohort: '29', + jobTitle: 'Senior Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Change Healthcare', + name: 'Billy K Lee', + email: 'ucanfindbillie@gmail.com', + linkedIn: 'https://www.linkedin.com/in/billy-k-lee/', + campus: 'LA', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Change Healthcare.', + name: 'Noah Lee', + email: 'no@hlee.me', + linkedIn: 'https://www.linkedin.com/in/justnoah/', + campus: 'LA', + cohort: '27', + jobTitle: 'Software Engineer.', + industry: 'Healthcare.', + cities: [], + }, + { + company: 'Chargebacks911', + name: 'Chandni Patel', + email: 'chandnip6@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chandnip6/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Chargebee Retention', + name: 'Abhi Krishnan', + email: 'krabhishaken@gmail.com', + linkedIn: 'https://www.linkedin.com/in/krabhishaken/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Senior Software Engineer', + industry: 'Subscription Tech', + cities: [], + }, + { + company: 'Chariot', + name: 'Weilan Cui', + email: 'weilanc@gmail.com', + linkedIn: 'https://www.linkedin.com/in/weilan-cui', + campus: 'NYC', + cohort: '24', + jobTitle: 'Founding engineer', + industry: 'Software as a service', + cities: [], + }, + { + company: 'Charles River', + name: 'Josh Howard', + email: 'JoshHoward.Dev@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joshhowarddev/', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Full Stack Developer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Charles Schwab', + name: 'Troy Witonsky', + email: 'troywitonsky@gmail.com', + linkedIn: 'https://www.linkedin.com/in/troy-witonsky', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Enterprise Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Chattanooga Shooting Supplies', + name: 'Zach Hall', + email: 'zachh85@gmail.com', + linkedIn: 'linkedin.com/in/z-r-hall', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Senior Application Developer', + industry: 'Retail', + cities: [], + }, + { + company: 'Cheddar Media', + name: 'David Neuhaus', + email: 'david@neuha.us', + linkedIn: 'https://www.linkedin.com/in/dneuhaus/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Sr Software Engineer', + industry: 'Media / News', + cities: [], + }, + { + company: 'Chegg, Inc', + name: 'Kate Matthews', + email: 'katesmatthews@gmail.com', + linkedIn: 'https://www.linkedin.com/in/katesmatthews/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Software Engineer', + industry: 'EdTech', + cities: [], + }, + { + company: 'Chewy', + name: 'Lucy Chi', + email: 'lucycchi@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chilucy/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Tech Consulting, Client is in HealthTech', + cities: [], + }, + { + company: 'Chewy', + name: 'Joseph Nagy', + email: 'nagyjoseph29@gmail.com', + linkedIn: 'https://www.linkedin.com/in/josephmnagy/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'E-commerce', + cities: [], + }, + { + company: 'Chief', + name: 'Tim Ruszala', + email: 'truszala@gmail.com', + linkedIn: 'https://www.linkedin.com/in/timruszala/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Fullstack Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Chipper Cash', + name: 'Sean Lee', + email: 'lee.sw.sean@gmail.com', + linkedIn: 'https://www.linkedin.com/in/seanleesw', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Choose Ketamine', + name: 'Eric Komatsu', + email: 'eric@cpgexperience.com', + linkedIn: 'https://www.linkedin.com/in/eric-komatsu/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Lead Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Chopra Global', + name: 'Jonathon Gonzalez', + email: 'gonzalezjonathon55@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonathon-gonzalez/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Backend Engineer', + industry: 'Health & Wellness', + cities: [], + }, + { + company: 'Chopra Global', + name: 'Josh Naso', + email: 'jnaso29@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joshnaso/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Web Developer', + industry: 'Meditation/self-care', + cities: [], + }, + { + company: 'ChromaCode', + name: 'Edwin Menendez', + email: 'edwinjmenendez@gmail.com', + linkedIn: 'https://www.linkedin.com/in/edwinmenendez/', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Bio-Tech', + cities: [], + }, + { + company: 'Chubb insurance', + name: 'Robert Hernandez', + email: 'Rob23Hernandez@gmail.com', + linkedIn: 'https://www.linkedin.com/in/robhernandeznyc/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: [], + }, + { + company: 'Cigna', + name: 'JC Fernandez', + email: 'jorgecarlosfern@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jorge-carlos-fernandez/', + campus: 'LA', + cohort: '42', + jobTitle: 'Full Stack Engineer', + industry: 'Health Care', + cities: [], + }, + { + company: 'CIMx', + name: 'Christian Springer', + email: 'christian@christianspringer.com', + linkedIn: 'https://www.linkedin.com/in/christian-springer0/', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'CircleCI', + name: 'Ai Mi Bui', + email: 'Aimibui22@gmail.com', + linkedIn: 'https://www.linkedin.com/in/aimibui/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Software Engineer', + industry: 'Software', + cities: [], + }, + { + company: 'CircleCI', + name: 'Jeff Chen', + email: 'contact.jeffchen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jalexchen/', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Development Engineer', + industry: 'Tech', + cities: [], + }, + { + company: 'CircleCI', + name: 'Tony Shen', + email: 'tshen815@live.com', + linkedIn: 'https://www.linkedin.com/in/tonyShen815/', + campus: 'LA', + cohort: '35', + jobTitle: 'Software Engineer', + industry: 'Computer Software/Tech', + cities: [], + }, + { + company: 'CircleCI', + name: 'Tyler Sullberg', + email: 'tysullberg@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tyler-sullberg/', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Dev Ops', + cities: [], + }, + { + company: 'Cisco', + name: 'Laura Llano', + email: 'ldllano@gmail.com', + linkedIn: 'https://www.linkedin.com/in/laura-llano', + campus: 'NYC', + cohort: '26', + jobTitle: 'Software Engineering', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Cisco Systems, Inc.', + name: 'Egon Levy', + email: 'egonlevy@gmail.com', + linkedIn: 'https://www.linkedin.com/in/egon-levy-8b62aa1b0/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Senior Software Engineer', + industry: 'Computer Engineering', + cities: [], + }, + { + company: 'Citi', + name: 'Max Heubel', + email: 'maxhuebel@gmail.com', + linkedIn: 'https://www.linkedin.com/in/max-heubel/', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Sr. Programmer Analyst', + industry: 'Fintech', + cities: [], + }, + { + company: 'Citi (Citicorp Credit Services, Inc.)', + name: 'Reland Boyle', + email: 'reland.boyle@gmail.com', + linkedIn: 'https://www.linkedin.com/in/relandboyle/', + campus: 'FTRI', + cohort: '4', + jobTitle: + 'Digital Software Engineer / Senior Analyst - C12, Assistant Vice President of Matrix Reportingโ€‹', + industry: 'Fintech', + cities: [], + }, + { + company: 'Cityblock', + name: 'Oluwajomiloju Olaode', + email: 'jojuolaode@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jojuolaode/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Senior Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Civera', + name: 'Hank McGill', + email: 'henrymcgill@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hank-mcgill/', + campus: 'NYOI', + cohort: '4', + jobTitle: 'Data Engineering Fellow', + industry: 'Government', + cities: [], + }, + { + company: 'CivilGrid', + name: 'Jack Moorman', + email: 'johnmoormaniii@gmail.com', + linkedIn: 'www.linkedin.com/in/jack-moorman', + campus: 'FTRI / CTRI', + cohort: '14', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Classy', + name: 'Kim Spicer', + email: 'Kspicerny@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kimberleyspicer/', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer', + industry: 'Software', + cities: [], + }, + { + company: 'Clear', + name: 'Nate Adams', + email: 'NathanielBAdams@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adamsnathaniel/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Software Engineer', + industry: 'Biometrics / Security services', + cities: [], + }, + { + company: 'Clear Capital', + name: 'Sean Haverstock', + email: 'seanhaverstock@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sean-haverstock/', + campus: 'LA', + cohort: '37', + jobTitle: 'Associate Software Engineer', + industry: 'Fintech, Real Estate', + cities: [], + }, + { + company: 'Clevyr', + name: 'Michael Watson', + email: 'mdwatson988@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mdwatson988/', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Jr. Software Developer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Clicktripz', + name: 'Bryan Bart', + email: 'bart.bryan.e@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bryan-bart/', + campus: 'LA', + cohort: '48', + jobTitle: 'Software Engineer', + industry: 'Travel Technology', + cities: [], + }, + { + company: 'Clover', + name: 'Michael Trapani', + email: 'mtrapani27@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael-a-trapani/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Web Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'ClubLabs', + name: 'Natlyn Phomsavanh', + email: 'natlynp@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'Insurance/Travel', + cities: [], + }, + { + company: 'ClubLabs', + name: 'Talya Sasek', + email: 'talyaercag@gmail.com', + linkedIn: 'https://www.linkedin.com/in/talyasasek/', + campus: 'LA', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: [], + }, + { + company: 'CoachEm', + name: 'Matthew Garza', + email: 'mattg614@gmail.com', + linkedIn: 'https://www.linkedin.com/in/garzamatte/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Full Stack Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Coates Group', + name: 'Paul Kim', + email: 'paulkim0209@gmail.com', + linkedIn: 'https://www.linkedin.com/in/paul-kim-37735b217', + campus: 'NYC / ECRI', + cohort: '41', + jobTitle: 'Backend Engineer', + industry: 'Business Tech/Enterprise Tech', + cities: [], + }, + { + company: 'Cobalt.io', + name: 'Karl Richards', + email: 'krichards175@gmail.com', + linkedIn: 'https://www.linkedin.com/in/krichards175/', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Data Engineer', + industry: 'Security', + cities: [], + }, + { + company: 'Cobble', + name: 'Matt Peters', + email: 'matt@mpeters.io', + linkedIn: 'https://www.linkedin.com/in/mattgpeters', + campus: 'NYC', + cohort: '16', + jobTitle: 'Frontend Engineer', + industry: 'Leisure, Travel & Tourism', + cities: [], + }, + { + company: 'Code Climate', + name: 'Margaret Ma', + email: 'margaretma00@gmail.com', + linkedIn: 'https://www.linkedin.com/in/margaret-ma/', + campus: 'NYC', + cohort: '3', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Coder', + name: 'Michael Smith', + email: 'throwawayclover@gmail.com', + linkedIn: 'www.linkedin.com/in/michael-eric-smith', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Software Engineer', + industry: 'Software Solutions/Developer Tools', + cities: [], + }, + { + company: 'Codesmith', + name: 'Terry L. Tilley', + email: 'terryltilley@gmail.com', + linkedIn: 'https://www.linkedin.com/in/t-l-tilley/', + campus: 'LA', + cohort: '44', + jobTitle: 'Instruction Training Manager', + industry: 'Software/Tech', + cities: [], + }, + { + company: 'Cofebe', + name: 'Seong Choi', + email: 'choies921003@gmail.com', + linkedIn: 'https://www.linkedin.com/in/seongchoi/', + campus: 'LA', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Computer Software', + cities: [], + }, + { + company: 'Cognizant', + name: 'Scott Burman', + email: 'Scottburs@gmail.com', + linkedIn: 'https://www.linkedin.com/in/scottburman847/', + campus: 'LA', + cohort: '39', + jobTitle: 'Senior Developer', + industry: 'Technology', + cities: [], + }, + { + company: 'Cohere AI', + name: 'Zahara Aviv ', + email: 'zahara.aviv@gmail.com', + linkedIn: 'https://linkedIn.com/in/zahara-aviv', + campus: 'NYC / ECRI', + cohort: '38', + jobTitle: 'Senior Full Stack Engineer ', + industry: 'Artificial Intelligence', + cities: [], + }, + { + company: 'CoinCircle', + name: 'Andrew Fuselier', + email: 'theandewlarry@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andrewfuselier/', + campus: 'LA', + cohort: '19', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Collective Health', + name: 'Daryl Foster', + email: 'dmafoster@gmail.com', + linkedIn: 'https://www.linkedin.com/in/darylfosterma/', + campus: 'LA', + cohort: '42', + jobTitle: 'Senior Frontend Engineer', + industry: 'Health Tech (Healthplan Administration for 1000 plus employee companies)', + cities: [], + }, + { + company: 'Colliers - Contract position through Hays', + name: 'Pauline Nguyen', + email: 'Paulinekpn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/paulineknguyen/', + campus: 'LA / WCRI', + cohort: '55', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Comcast', + name: 'Brian Chiang', + email: 'brianchiang2008@gmail.com', + linkedIn: 'linkedin.com/in/brian-chiang4', + campus: 'LA / WCRI', + cohort: '48', + jobTitle: 'Software Engineer', + industry: 'Media', + cities: [], + }, + { + company: 'Comcast', + name: 'Darwin Sinchi', + email: 'dsinchi19@gmail.com', + linkedIn: 'https://www.linkedin.com/in/darwin-m-sinchi/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer', + industry: 'TeleCom', + cities: [], + }, + { + company: 'Comcast', + name: 'Matthew Francis', + email: 'mbfrancis7@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mbfrancis7/', + campus: 'NYC', + cohort: '7', + jobTitle: 'Software Developer', + industry: '', + cities: [], + }, + { + company: 'Comcast', + name: 'Yong-Nicholas Alexander Kim', + email: 'yongnicholaskim@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yongnicholaskim/', + campus: 'NYC', + cohort: '7', + jobTitle: 'Node.js Engineer', + industry: 'Commercial Services', + cities: [], + }, + { + company: 'CommonBond', + name: 'Nathan Bargers', + email: 'nbargers@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nathan-bargers/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Finance', + cities: [], + }, + { + company: 'Community Attributes Inc', + name: 'Carter Long', + email: 'crlong7@gmail.com', + linkedIn: 'https://www.linkedin.com/in/carterrobertlong/', + campus: 'FTRI / CTRI', + cohort: '15', + jobTitle: 'Full Stack Developer', + industry: 'Consulting', + cities: [], + }, + { + company: 'Compass', + name: 'Casey Walker', + email: 'casey.e.walker@gmail.com', + linkedIn: 'https://www.linkedin.com/in/caseyewalker', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer II', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Compass', + name: 'Liam McBride', + email: 'liameno16@gmail.com', + linkedIn: 'https://www.linkedin.com/in/liamemcbride/', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Compass', + name: 'Sierra Swaby', + email: 'Sierra.swaby@gmail.com', + linkedIn: 'https://www.linkedin.com/in/Sierra-swaby', + campus: 'NYC', + cohort: '12', + jobTitle: 'Creative Developer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Compliancy Group', + name: 'Bruno Albero', + email: 'alberobruno@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alberobruno/', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Conagra Brands', + name: 'Scott Hallock', + email: 'scott.hallock@gmail.com', + linkedIn: 'https://www.linkedin.com/in/scottjhallock', + campus: 'FTRI / CTRI', + cohort: '16', + jobTitle: 'Senior Software Engineer', + industry: 'Food/Beverage/Restaurant', + cities: [], + }, + { + company: 'Concert Health', + name: 'Raubern Totanes', + email: 'rstotanes@g.ucla.edu', + linkedIn: 'https://www.linkedin.com/in/rauberntotanes/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Software Development Engineer', + industry: 'Health Tech', + cities: [], + }, + { + company: 'Contracting for Perspecta Labs via Roc Search via Precision Global Consulting', + name: 'Ben Mizel', + email: 'ben.mizel@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ben-mizel/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Back End Software Engineer', + industry: 'Defense', + cities: [], + }, + { + company: 'Core Business Technology', + name: 'Jason Hwang', + email: 'hwangja1019@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jason-jh-hwang/', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Associate Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Core Digital Media', + name: 'Edward Greenberg', + email: 'ed.w.greenberg@gmail.com', + linkedIn: 'https://www.linkedin.com/in/edwgreenberg/', + campus: 'NYC', + cohort: '14', + jobTitle: 'Senior Web Developer', + industry: 'Software', + cities: [], + }, + { + company: 'Cosm', + name: 'Shana Hoehn', + email: 'Shanahoehn@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer', + industry: 'Entertainment technology', + cities: [], + }, + { + company: 'Costa Farms LLC', + name: 'Ernesto Gonzalez', + email: 'egonzalez442@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ernesto-gonzalez123', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'Agriculture Science', + cities: [], + }, + { + company: 'CoStar', + name: 'Prasad Pulaguntla', + email: 'prasad.pul@gmail.com', + linkedIn: 'https://www.linkedin.com/in/prasad-pulaguntla/', + campus: 'FTRI', + cohort: '2', + jobTitle: 'Lead Software Engineer', + industry: 'Commercial Real Estate', + cities: [], + }, + { + company: 'CoStar Group', + name: 'Alan Richardson', + email: 'alanrichardson723@gmail.com', + linkedIn: '', + campus: 'NYC / ECRI', + cohort: '29', + jobTitle: 'Associate Software Engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'CoStar Group', + name: 'Julian Kang', + email: 'julianswkang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/julianswkang', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Software Engineer II', + industry: 'Real Estate', + cities: [], + }, + { + company: 'CoStar Group', + name: 'Kevin Berlanga', + email: 'kvnberlanga@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kevinberlanga/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Software Engineer II', + industry: 'Real Estate', + cities: [], + }, + { + company: 'CoStar Group', + name: 'Ruzeb Chowdhury', + email: 'ruzeb1996@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ruzebchowdhury/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Frontend Engineer', + industry: 'Commercial Real Estate', + cities: [], + }, + { + company: 'Coursetune', + name: 'John Maltese', + email: 'john.maltese@gmail.com', + linkedIn: 'https://www.linkedin.com/in/john-maltese/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Senior Software Engineer/Web App Architect', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Courted', + name: 'Sett Hein', + email: 'settnaing199@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sett-hein/', + campus: 'FTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Cox Automotive', + name: 'Tarik Mokhtech', + email: 'tarik.mokhtech@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tarik-mokhtech/', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Software Engineer II', + industry: 'Automotive', + cities: [], + }, + { + company: 'Cox Automotive', + name: 'Tarik Mokhtech', + email: 'tarik.mokhtech@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tarik-mokhtech/', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Software Engineer II', + industry: 'Automotive', + cities: [], + }, + { + company: 'Credera', + name: 'Nisa Lintakoon', + email: 'nisa.lintakoon@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nisalintakoon', + campus: 'FTRI', + cohort: '1', + jobTitle: 'Technology Solutions Consultant', + industry: 'Consulting', + cities: [], + }, + { + company: 'Crescita', + name: 'Gordon Campbell', + email: 'gordonspencer.c@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '14', + jobTitle: 'Software Engineer', + industry: 'VC', + cities: [], + }, + { + company: 'Cricket Health', + name: 'Lina Shin', + email: 'rxlina01@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rxlina/', + campus: 'LA', + cohort: '45', + jobTitle: 'Fullstack Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Crisis Text Line', + name: 'Chan Choi', + email: 'chanychoi93@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chan-choi/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Software Engineer', + industry: 'Mental Health Services', + cities: [], + }, + { + company: 'Crocs', + name: 'Mark Charles Smith', + email: 'markcharlessmith@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mark-charles-smith/', + campus: 'NYC / ECRI', + cohort: '31', + jobTitle: 'Senior React Developer', + industry: 'Consumer Goods: Fashion', + cities: [], + }, + { + company: 'Crossbeam', + name: 'Harrison Cramer', + email: 'Harrisoncramer@gmail.com', + linkedIn: 'https://www.linkedin.com/in/harrison-cramer', + campus: 'NYC', + cohort: '27', + jobTitle: 'Software engineer', + industry: 'SaaS', + cities: [], + }, + { + company: 'Crossbeam', + name: 'Aryeh Kobrinsky', + email: 'shmaryeh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/aryehkobrinsky/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer', + industry: 'Data Analytics', + cities: [], + }, + { + company: 'Crossover Health', + name: 'Heather Friedman', + email: 'hfried25@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hgfriedman/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Senior Software Engineer', + industry: 'Health', + cities: [], + }, + { + company: 'Crossover Health', + name: 'Taylor Riley Du', + email: 'taylor.r.du@gmail.com', + linkedIn: 'https://www.linkedin.com/in/taylordu/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Crowdstrike', + name: 'yi bo (eddie) wang', + email: 'eddiewang12345@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eddie-wang2/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Software Developer', + industry: 'Cybersecurity', + cities: [], + }, + { + company: 'Crowley', + name: 'Alina Gasperino', + email: 'alina.gasperino@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alinagasperino/', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Software Engineer III', + industry: 'Other', + cities: [], + }, + { + company: 'Crown Sterling', + name: 'Shirin Davis', + email: 'Shirinlittle94@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '39', + jobTitle: 'Software engineer', + industry: 'Cryptography', + cities: [], + }, + { + company: 'CrunchyBananas', + name: 'Corey Morrison', + email: 'corey.neil.morrison@gmail.com', + linkedIn: 'https://www.linkedin.com/in/corey-morrison', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Consulting', + cities: [], + }, + { + company: 'Crunchyroll', + name: 'Brit Lim', + email: 'britsta92@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brit-lim/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Full Stack Software Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'CSI Interfusion', + name: 'Snow Bai', + email: 'xueapp@gmail.com', + linkedIn: 'https://www.linkedin.com/in/xuebaiprofile/', + campus: 'LA / WCRI', + cohort: '55', + jobTitle: 'Fullstack Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Culture Biosciences', + name: 'Savitri Beaver', + email: 'savitribeaver@gmail.com', + linkedIn: 'https://www.linkedin.com/in/savitribeaver', + campus: 'FTRI', + cohort: '3', + jobTitle: 'Software Engineer I', + industry: 'Biotech', + cities: [], + }, + { + company: 'Curia.ai', + name: 'Young Min Lee', + email: 'youngmineeh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/youngminlee-/', + campus: 'LA', + cohort: '48', + jobTitle: 'Senior Software Engineer', + industry: 'Healthcare, AI', + cities: [], + }, + { + company: 'Currency', + name: 'Jason Wong', + email: 'jwaosnogn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jwong1995/', + campus: 'LA', + cohort: '25', + jobTitle: 'Full Stack Developer', + industry: '', + cities: [], + }, + { + company: 'Cutover', + name: 'Paul Rhee', + email: 'youjun27@gmail.com', + linkedIn: 'https://www.linkedin.com/in/prheee', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'CVS', + name: 'Mario Eldin', + email: 'marioeldin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/marioeldin/', + campus: 'LA', + cohort: '40', + jobTitle: 'Software Engineer', + industry: 'Health/Insurance', + cities: [], + }, + { + company: 'CVS', + name: 'Vinh Chau', + email: 'vchau511@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vinh-chau/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Software Engineer', + industry: 'Pharmacy', + cities: [], + }, + { + company: 'CVS Health', + name: 'Connor Bovino', + email: 'connor.bovino@gmail.com', + linkedIn: 'https://www.linkedin.com/in/connor-bovino/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Fullstack Node.js Developer (Software Engineer)', + industry: 'Health', + cities: [], + }, + { + company: 'CVS Health', + name: 'Satyam sheth', + email: 'Snsheth55@gmail.com', + linkedIn: 'https://www.linkedin.com/in/satyamsheth55/', + campus: 'NYC', + cohort: '5', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'CVS Health', + name: 'Windu Sayles', + email: 'Windu.Sayles@gmail.com', + linkedIn: 'https://www.linkedin.com/in/windusayles/', + campus: 'LA', + cohort: '40', + jobTitle: 'Full Stack Node Developer', + industry: 'Health', + cities: [], + }, + { + company: 'CVS Health/ Aetna', + name: 'Miklos Kertesz', + email: 'mikloslkertesz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mikl%C3%B3s-kert%C3%A9sz/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Data Engineer - Web UI Engineer', + industry: 'health', + cities: [], + }, + { + company: 'Cyber Popup', + name: 'Stephen Fitzsimmons', + email: 'smf0211@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stephenfitzsimmons', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Lead Full Stack Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Cybereason', + name: 'Phoebe Ermert', + email: 'phoebeermert@gmail.com', + linkedIn: 'https://www.linkedin.com/in/phoebe-ermert/', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Full Stack Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Cyborg, Inc', + name: 'Jim Armbruster', + email: 'JMArmbruster@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jim-armbruster/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Full-Stack Engineer', + industry: 'Computer Software', + cities: [], + }, + { + company: 'Cyderes', + name: 'Giovanni Flores-Lovo', + email: 'giovanniflores.l@gmail.com', + linkedIn: 'https://www.linkedin.com/in/giovanni-flores-lovo-11a288232/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Engineer', + industry: 'Security', + cities: [], + }, + { + company: 'Dandy', + name: 'Aram Krakirian', + email: 'aramkrakirian@gmail.com', + linkedIn: 'https://www.linkedin.com/in/aram-krakirian/', + campus: 'LA', + cohort: '47', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Data Intelligence', + name: 'Jimmy Mei', + email: 'Jimmy27mei@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jimmymei/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Full Stack Engineer', + industry: 'Tech consultant', + cities: [], + }, + { + company: 'Data Surge LLC', + name: 'Hang Xu', + email: 'hxu009@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hangxu09/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Data Engineer', + industry: 'Data solutions', + cities: [], + }, + { + company: 'Databook', + name: 'Julie Wu', + email: 'scorp_only@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/yu-ting-w/', + campus: 'LA', + cohort: '40', + jobTitle: 'Sr Software Engineer', + industry: 'Sales', + cities: [], + }, + { + company: 'Datacoral', + name: 'Jae Park', + email: 'woojae.jay.park@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Fashion/E-Commerce', + cities: [], + }, + { + company: 'Datametrics', + name: 'Luis Navarro', + email: 'pozhiin@hotmail.com', + linkedIn: 'https://www.linkedin.com/in/luis-e-navarro/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Frontend Developer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'DAZN', + name: 'Leonoor Rinke de Wit', + email: 'lrinkedewit@gmail.com', + linkedIn: 'https://www.linkedin.com/in/leonoorrinkedewit/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Backend Software Engineer', + industry: 'Media', + cities: [], + }, + { + company: 'DealPath', + name: 'Huy Bui', + email: 'huybui.sj@gmail.com', + linkedIn: 'https://www.linkedin.com/in/huyqbui/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Decent Labs', + name: 'Julia Collins', + email: 'Julia.col@protonmail.com', + linkedIn: 'https://www.linkedin.com/in/julia-col', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Full Stack Web3 Engineer', + industry: 'Crypto', + cities: [], + }, + { + company: 'Deloitte', + name: 'Justin Buckner', + email: 'jwbprofessional@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jbuild/', + campus: 'FTRI', + cohort: '3', + jobTitle: 'Consultant - front end developer', + industry: 'Consulting', + cities: [], + }, + { + company: 'Delta Air Lines', + name: 'Joal Kim', + email: 'joalkims@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joal-kim', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Airline', + cities: [], + }, + { + company: 'DeltaMath', + name: 'Hannah McDowell', + email: 'hannah.mcdowell1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hannah-lisbeth-mcdowell/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'DeMark Analytics LLC', + name: 'SEUNGHO BAEK', + email: 'shbaek115@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Engineer', + industry: 'Software & Tech services', + cities: [], + }, + { + company: 'Dematic', + name: 'Liang Wen (Rocky) Lin', + email: 'liangwen511@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rocky-lin/', + campus: 'NYC', + cohort: '14', + jobTitle: 'Senior Software Engineer', + industry: 'Manufacturing and Distribution', + cities: [], + }, + { + company: 'Dendi Software', + name: 'Ozair Ghulam', + email: 'Ozairghulam4@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ozair-ghulam', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Forward deployed software engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Denizen', + name: 'Greg Domingue', + email: 'Greg.domingue1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/greg-domingue', + campus: 'LA', + cohort: '23', + jobTitle: 'Full Stack Software Engineer', + industry: 'International Banking', + cities: [], + }, + { + company: 'Density', + name: 'Timothy Weidinger', + email: 'timothy.weidinger@gmail.com', + linkedIn: 'https://www.linkedin.com/in/timweidinger/', + campus: 'NYC / ECRI', + cohort: '41', + jobTitle: 'Senior Full Stack Software Engineer', + industry: 'Data/Analytics/Cloud', + cities: [], + }, + { + company: 'Derivco Sports', + name: 'Denny Temple', + email: 'denny.temple@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dentemple/', + campus: 'NYC', + cohort: '6', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Destination Pet', + name: 'Nicholas Jordan Brush', + email: 'njbrush@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nicholas-j-brush?trk=people-guest_people_search-card', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer', + industry: 'Pet healthcare', + cities: [], + }, + { + company: 'DexCare', + name: 'Nhan Ly', + email: 'nhansense1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nhanly/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Healthtech', + cities: [], + }, + { + company: 'Diamond Web Services', + name: 'Ben Gummelt', + email: 'Camaromelt@gmail.com', + linkedIn: 'https://www.linkedin.com/in/benjamingummelt', + campus: 'LA', + cohort: '20', + jobTitle: 'Full stack software engineer', + industry: '', + cities: [], + }, + { + company: 'Diamond Web Services', + name: 'Gregory Palasciano', + email: 'greg.palasciano@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gregory-palasciano/', + campus: 'LA', + cohort: '36', + jobTitle: 'Fullstack Engineer', + industry: 'Entertainment/Consulting', + cities: [], + }, + { + company: 'Diamond Web Services', + name: 'Jonathan Perera', + email: 'Jon.p@codesmith.io', + linkedIn: 'https://www.linkedin.com/in/japerera/', + campus: 'LA', + cohort: '22', + jobTitle: 'Developer', + industry: '', + cities: [], + }, + { + company: 'Diana Health', + name: 'Jackson Dahl', + email: 'jacksondahl27@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jackson-dahl/', + campus: 'NYOI', + cohort: '4', + jobTitle: 'Full Stack Software Engineer', + industry: 'Healthtech/Healthcare', + cities: [], + }, + { + company: "Dick's Sporting Goods", + name: 'Brian Hon', + email: 'brianwhon@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brianwhon/', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Retail', + cities: [], + }, + { + company: 'DigiCert', + name: 'James M Espy II', + email: 'jespy2@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jamesespy/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'digital certificates / security', + cities: [], + }, + { + company: 'Digilock', + name: 'Aaron Yang', + email: 'aaronyang024@gmail.com', + linkedIn: 'https://www.linkedin.com/in/aaronyang24/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Electronic Manufacturing', + cities: [], + }, + { + company: 'Digital Position', + name: 'Joe Beger', + email: 'jtbeger@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jtbeger/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Developer', + industry: 'SEO', + cities: [], + }, + { + company: 'DigitalOcean', + name: 'Natalia Vargas-Caba', + email: 'nvargascaba@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nataliavargascaba', + campus: 'NYC', + cohort: '17', + jobTitle: 'Technical Editor', + industry: 'Cloud service', + cities: [], + }, + { + company: 'Discord', + name: 'Jacob Richards', + email: 'jacob.richards33@gmail.com', + linkedIn: 'https://www.linkedin.com/in/palgorhythm/', + campus: 'LA', + cohort: '29', + jobTitle: 'Senior Software Engineer', + industry: 'Tech', + cities: [], + }, + { + company: 'Discovery', + name: 'adele calvo', + email: 'adelecalvo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adelecalvo/', + campus: 'NYC', + cohort: '9', + jobTitle: 'Software Engineer I, UI,', + industry: 'Blockchain', + cities: [], + }, + { + company: 'Discovery', + name: 'Sarah t Renshaw', + email: 'strenshaw@gmail.com', + linkedIn: 'https://linkedin.com/in/strenshaw/', + campus: 'NYC', + cohort: '2', + jobTitle: 'Software Engineer I', + industry: 'Music', + cities: [], + }, + { + company: 'Disney Streaming', + name: 'Daniel Palumbo', + email: 'Drpalumbo17@gmail.com', + linkedIn: 'https://www.linkedin.com/in/daniel-palumbo-735715137', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Disney Streaming', + name: 'Nat Heller', + email: 'nat.w.heller@gmail.com', + linkedIn: 'https://www.linkedin.com/in/natwheller/', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Disney Streaming', + name: 'Frank Ma', + email: 'yurenfrankma@gmail.com', + linkedIn: 'https://www.linkedin.com/in/frankma2', + campus: 'LA', + cohort: '25', + jobTitle: 'Sr Frontend and Fullstack Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Disney Streaming Services', + name: 'Casey Escovedo', + email: 'caseyjescovedo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/caseyescovedo/', + campus: 'LA', + cohort: '38', + jobTitle: 'Associate Software Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Disney Streaming Services', + name: 'Mark Marcelo', + email: 'markmarcelo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/markmarcelo/', + campus: 'LA', + cohort: '12', + jobTitle: 'Lead Software Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Disney Streaming Services', + name: 'Rachel Farley', + email: 'rachyl.farley@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rachel-farley/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Associate Software Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Dispense', + name: 'Kerrianne Crawford', + email: 'kerriannercrawford@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kerriannercrawford/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Senior Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Distributed Machines, Inc.', + name: 'William LeGate', + email: 'codesmith@legate.me', + linkedIn: 'https://www.linkedin.com/in/william-legate/', + campus: 'LA', + cohort: '21', + jobTitle: 'CEO, Prediqt', + industry: 'Medical', + cities: [], + }, + { + company: 'DistroKid', + name: 'Jackson Tong', + email: 'jacksonktong@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jacksonktong/', + campus: 'LA', + cohort: '48', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'DMC Inc', + name: 'Shane Yao', + email: 'Shanexinyao@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shanexinyao/', + campus: 'NYC', + cohort: '3', + jobTitle: 'Senior Robotics Engineer', + industry: 'Crypto Fintech', + cities: [], + }, + { + company: 'Dollar Shave Club', + name: 'Vincent Nguyen', + email: 'gvincemail@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vnguyenucla/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer(Contract)', + industry: 'Products', + cities: [], + }, + { + company: 'Dollar Shave Club', + name: 'Ryan Trontz', + email: 'rtrontz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/trontz/', + campus: 'LA', + cohort: '22', + jobTitle: 'Software Engineer, Backend', + industry: '', + cities: [], + }, + { + company: 'Domio', + name: 'Neftali Dominguez', + email: 'n.l.dominguez23@gmail.com', + linkedIn: 'https://www.linkedin.com/in/neftalildominguez/', + campus: 'LA', + cohort: '30', + jobTitle: 'Back end engineer', + industry: 'apartment hotels', + cities: [], + }, + { + company: 'Doorcast', + name: 'James Bui', + email: 'Jamesmdang.bui@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jamesminhbui/', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Senior Fullstack Engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Doorkee', + name: 'Jarred Jack-Harewood', + email: 'jackhajb@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jarred-jack-harewood/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Dottid', + name: 'Brian Grosso', + email: 'bgro63@gmail.com', + linkedIn: 'https://www.linkedin.com/in/newarkBG/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech - Real Estate', + cities: [], + }, + { + company: 'Dr Squatch', + name: 'Ben Cauffman', + email: 'Benjamincauffman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/benjamin-cauffman', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Full Stack Engineer', + industry: 'Retail', + cities: [], + }, + { + company: 'DraftKings', + name: 'Jonnie Oak', + email: 'jonathan.oak28@gmail.com', + linkedIn: 'https://www.linkedin.com/in/oakj28/', + campus: 'LA', + cohort: '45', + jobTitle: 'Software Engineer', + industry: 'Fantasy Sports', + cities: [], + }, + { + company: 'Dray Alliance', + name: 'Hayden Fithyan', + email: 'hayden@fithyan.com', + linkedIn: 'https://www.linkedin.com/in/fithyan/', + campus: 'LA', + cohort: '23', + jobTitle: 'Software Developer II', + industry: '', + cities: [], + }, + { + company: 'Dray Alliance', + name: 'Joshua Wright', + email: 'jwrightbluj@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joshua-w-86758a121/', + campus: 'LA', + cohort: '23', + jobTitle: 'Software Engineer II', + industry: '', + cities: [], + }, + { + company: 'Dreambox Learning', + name: 'Pei-Yun Chu', + email: 'pchu2018@gmail.com', + linkedIn: 'https://www.linkedin.com/in/pei-yun-chu/', + campus: 'PTRI', + cohort: '8', + jobTitle: 'Software Development Engineer - Frontend', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Driven Deliveries', + name: 'Adam Stover', + email: 'adam.jacob.stover@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '31', + jobTitle: 'Software Engineer', + industry: 'Supply Chain & Logistics', + cities: [], + }, + { + company: 'Drizly', + name: 'Diego Vazquez', + email: 'diegovazquezny@gmail.com', + linkedIn: 'https://www.linkedin.com/in/diegovazquezny/', + campus: 'LA', + cohort: '21', + jobTitle: 'Jr. Software Engineer', + industry: 'Food & Beverages', + cities: [], + }, + { + company: 'Dropbox', + name: 'Benjamin Kwak', + email: 'benjamin.h.kwak@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ben-kwak/', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Engineer, Product', + industry: 'Techonology Services', + cities: [], + }, + { + company: 'Dropbox', + name: 'Myounghan Chae', + email: 'chaekmh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chaekmh/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Software Engineer', + industry: 'Cloudtech', + cities: [], + }, + { + company: 'Dropbox', + name: 'Miguel Michel', + email: 'migmic93@gmail.com', + linkedIn: 'https://www.linkedin.com/in/miguel-michel/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Cloud Storage', + cities: [], + }, + { + company: 'Dropps', + name: 'Sonny Nguyen', + email: 'sonnynguyen163@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sn163/', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Developer', + industry: 'Sustainable E-Commerce', + cities: [], + }, + { + company: 'Dstillery', + name: 'Chai Lee', + email: 'imchai@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chai-lee-5a064649/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Software Engineer', + industry: 'Adtech', + cities: [], + }, + { + company: 'Dun & Bradstreet', + name: 'Jack Hall', + email: 'jackvincenthall@gmail.com', + linkedIn: 'https://linkedin.com/in/jackvhall', + campus: 'PTRI', + cohort: '4', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech, Data Analytics', + cities: [], + }, + { + company: 'Dun & Bradstreet', + name: 'Scott Rosen', + email: 'scott.rosen14@gmail.com', + linkedIn: 'https://www.linkedin.com/in/scott-rosen/', + campus: 'LA', + cohort: '17', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'dv01', + name: 'Michelle Herrera', + email: 'mesherrera@aol.com', + linkedIn: 'https://www.linkedin.com/in/mherreradev/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Senior Fullstack Engineer I', + industry: 'Fintech', + cities: [], + }, + { + company: 'Dynamic benchmarking', + name: 'andres jaramillo', + email: 'andresj89@live.com', + linkedIn: 'https://www.linkedin.com/in/andresjaramillo210/', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Software engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Earnest', + name: 'Kai Rilliet', + email: 'kairilliet@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kairilliet/', + campus: 'LA / WCRI', + cohort: '45', + jobTitle: 'Full Stack Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'eBay', + name: 'Ryan Kim', + email: 'ryansukwookim@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tkdryan/', + campus: 'LA', + cohort: '33', + jobTitle: 'Software Engineer', + industry: 'ECcmmerce', + cities: [], + }, + { + company: 'EBSCO', + name: 'Sankari Ayyaluru', + email: 'sankariayyaluru@gmail', + linkedIn: 'https://www.linkedin.com/in/sankari-ayyaluru/', + campus: 'LA / WCRI', + cohort: '48', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Econify', + name: 'Jordan Kelly', + email: 'Jordan.w.kelly@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jordan-k-340257140/', + campus: 'NYC', + cohort: '17', + jobTitle: 'Software Engineer', + industry: 'Consulting', + cities: [], + }, + { + company: 'Econify', + name: 'Jovan Kelly', + email: 'fakeEmail2@fakeEmail.com', + linkedIn: 'https://www.linkedin.com/in/jovankelly', + campus: 'NYC', + cohort: '10', + jobTitle: 'Software developer', + industry: 'Media Consulting', + cities: [], + }, + { + company: 'Edify Labs', + name: 'Scott McInnis', + email: 'scottalyst@gmail.com', + linkedIn: 'https://www.linkedin.com/in/scott-mcinnis/', + campus: 'LA', + cohort: '32', + jobTitle: 'Nodejs Developer', + industry: 'Customer Service', + cities: [], + }, + { + company: 'Edify Labs', + name: 'Tony Lei', + email: 'tony.lei003@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tony-lei/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'NodeJS Developer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'EDUrain', + name: 'Jacob Jurado', + email: 'jakejurado@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jakejurado', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'chief technology officer', + industry: 'Education/Edtech', + cities: [], + }, + { + company: 'Egen', + name: 'Jonathan Escamilla', + email: 'jonathanescamilla1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jon-escamilla/', + campus: 'LA', + cohort: '36', + jobTitle: 'Associate Software Engineer', + industry: 'Tech (Builds solutions for companies - Typically Web Dev)', + cities: [], + }, + { + company: 'Elder Research', + name: 'Ben Huang', + email: 'Byhuang4100@gmail.com', + linkedIn: 'byhuang4100', + campus: 'FTRI / CTRI', + cohort: '14', + jobTitle: 'Data Engineer', + industry: 'Artificial Intelligence', + cities: [], + }, + { + company: 'Elder Research Inc', + name: 'Nick Reardon', + email: 'nickjreardon@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nickjreardon/', + campus: 'PTRI', + cohort: '4', + jobTitle: 'Software Engineer', + industry: 'Consulting', + cities: [], + }, + { + company: 'Elder Tree', + name: 'Stormi Hashimoto', + email: 'stormikhashimoto@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stormikph/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Software Engineer', + industry: 'NA', + cities: [], + }, + { + company: 'eLink Design', + name: 'Tristan Krause', + email: 'yukiokrause@gmail.com', + linkedIn: 'https://www.linkedin.com/in/krausetristan/', + campus: 'FTRI / CTRI', + cohort: '17', + jobTitle: 'Web / Mobile Developer', + industry: 'Design', + cities: [], + }, + { + company: 'Elk Capital Markets', + name: 'Manuel Castro', + email: 'manuel.a.castro1992@gmail.com', + linkedIn: 'https://www.linkedin.com/in/manuel-castro-42466273', + campus: 'NYC', + cohort: '5', + jobTitle: 'Software Engineer', + industry: 'Finance', + cities: [], + }, + { + company: 'Ellie Mae', + name: 'Karen Pinilla', + email: 'pinillakaren11@gmail.com', + linkedIn: 'https://www.linkedin.com/in/karen-pinilla/', + campus: 'LA', + cohort: '28', + jobTitle: 'Software Engineer I', + industry: 'Computer Software', + cities: [], + }, + { + company: 'eMoney', + name: 'Kenneth Hui', + email: 'kennethhui121@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kenneth-hui/', + campus: 'LA', + cohort: '45', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Empire Flippers', + name: 'Rob Wise', + email: 'robertwise1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/robertwise/', + campus: 'PTRI', + cohort: 'Beta', + jobTitle: 'Frontend Engineer', + industry: 'eCommerce', + cities: [], + }, + { + company: 'Empowered Buildings', + name: 'Kevin Dooley', + email: 'kjdooley1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kjdooley1/', + campus: 'NYOI', + cohort: '1', + jobTitle: 'Full-Stack Software Developer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Enlighten', + name: 'Jonathon Garber', + email: 'jgarber2675@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jgarber2675/', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Front End Software Engineer', + industry: 'Security', + cities: [], + }, + { + company: 'Envoy', + name: 'Graham Pierce', + email: 'grahampiercenyc@gmail.com', + linkedIn: 'https://www.linkedin.com/in/graham-a-pierce/', + campus: 'FTRI', + cohort: '3', + jobTitle: 'Software Engineer', + industry: 'Workplace tech', + cities: [], + }, + { + company: 'Enzo Digital', + name: 'Johnny Bryan', + email: 'johnnybryan21@gmail.com', + linkedIn: 'https://www.linkedin.com/in/johnnybryan/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Backend/API Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'EolianVR', + name: 'Henry Halse', + email: 'henryhalse@gmail.com', + linkedIn: 'https://www.linkedin.com/in/henryhalse/', + campus: 'PTRI', + cohort: '8', + jobTitle: 'Backend Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Epic Games', + name: 'Nahuel Arjona Tennerini', + email: 'nahuel.arjona.93@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nahuelarjonadev/', + campus: 'LA', + cohort: '29', + jobTitle: 'Game Systems Programmer', + industry: 'Video Games', + cities: [], + }, + { + company: 'Epic Games (Fortnite)', + name: 'Taylor T Morgan', + email: 'TaylorMorganTTM@gmail.com', + linkedIn: 'https://www.linkedin.com/in/taylormor77la/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Developer', + industry: 'Gaming', + cities: [], + }, + { + company: 'Eqengineered', + name: 'William Ramirez', + email: 'willramirez630@gmail.com', + linkedIn: 'https://www.linkedin.com/in/willramirez528/', + campus: 'LA', + cohort: '43', + jobTitle: 'Senior Technical Consultant', + industry: 'Software Consulting Firm', + cities: [], + }, + { + company: 'Erdos Miller', + name: 'Michael Collier Grant', + email: 'DragonZSG@aol.com', + linkedIn: 'https://www.linkedin.com/in/michaelcolliergrant/', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Firmware Developer', + industry: 'Other', + cities: [], + }, + { + company: 'Ernst & Young', + name: 'Eduardo Maรญllo Conesa', + email: 'eduardomaillo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eduardomaillo/', + campus: 'NYC', + cohort: '2', + jobTitle: 'Senior Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Esri', + name: 'Gilbert Ramirez', + email: 'contemporarygil@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gillramirez/', + campus: 'LA', + cohort: '29', + jobTitle: 'Software Development Engineer', + industry: 'GIS', + cities: [], + }, + { + company: 'ESRI', + name: 'Evan Hilton', + email: 'ehilton1537@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ehilton1537/', + campus: 'LA', + cohort: '33', + jobTitle: 'Software Development Engineer', + industry: 'Geographic Information System', + cities: [], + }, + { + company: 'Esri', + name: 'Elena Conn', + email: 'elenakconn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/elena-conn/', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineering Intern (end date 10/29/21)', + industry: 'Geospatial Engineering (GIS)', + cities: [], + }, + { + company: 'Ethic', + name: 'Andrea Li', + email: 'andrea.li8341@hotmail.com', + linkedIn: 'https://www.linkedin.com/in/andrea-gli/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Frontend Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Ethos Life', + name: 'Alan Lee', + email: 'lee.alan.c12@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alanlee12/', + campus: 'LA', + cohort: '35', + jobTitle: 'Software Engineer, Test', + industry: 'Insurance', + cities: [], + }, + { + company: 'etsy', + name: 'alfonso zamarripa', + email: 'alfonsozam93@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alfonsozamarripa/', + campus: 'NYC', + cohort: '31', + jobTitle: 'software engineer', + industry: 'Retail', + cities: [], + }, + { + company: 'Even', + name: 'Claudio Santos', + email: 'claudiohbsantos@gmail.com', + linkedIn: 'https://www.linkedin.com/in/claudio-santos-5b8134207/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer I', + industry: 'Fintech', + cities: [], + }, + { + company: 'Even Financial', + name: 'Andy Wong', + email: 'andywong.ny@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andywongdev', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Eventbrite', + name: 'Ashley Pean', + email: 'pean.ashley@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ashley-pean/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Software Engineer II', + industry: 'Entertainment', + cities: [], + }, + { + company: 'EventHound', + name: 'Greg Shamalta', + email: 'gregshamalta@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/gregory-shamalta/', + campus: 'LA', + cohort: '23', + jobTitle: 'Founder', + industry: '', + cities: [], + }, + { + company: 'everest', + name: 'Will Hack', + email: 'will.j.hack@gmail.com', + linkedIn: 'https://www.linkedin.com/in/willhack/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Full-Stack Engineer (Sr)', + industry: 'UX Design', + cities: [], + }, + { + company: 'Everest, AI', + name: 'Jordan Long', + email: 'jlong4159@gmail.com', + linkedIn: 'www.linkedin.com/jlongtlw', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Everfi', + name: 'Jacob Ory', + email: 'jacobtory@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/jacobory/', + campus: 'LA', + cohort: '30', + jobTitle: 'Frontend Engineer', + industry: 'Ed Tech', + cities: [], + }, + { + company: 'Exabeam', + name: 'Lisa Tian', + email: 'lisatian8@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lisatian-/', + campus: 'LA / WCRI', + cohort: '53', + jobTitle: 'Software Engineer - UI', + industry: 'Security', + cities: [], + }, + { + company: 'Exodus Movement Inc', + name: 'Lanre Makinde', + email: 'lanre.developer@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lanre-mark/', + campus: 'PTRI', + cohort: 'Beta', + jobTitle: 'Sr. Software Engineer', + industry: 'blockchain/cryptocurrency', + cities: [], + }, + { + company: 'Expedia Group', + name: 'Tang', + email: 'eytang8@gmail.com', + linkedIn: 'https://www.linkedin.com/mwlite/in/ttaanngg', + campus: 'LA', + cohort: '27', + jobTitle: 'Software Development Engineer II', + industry: 'Travel', + cities: [], + }, + { + company: 'Extend', + name: 'Diane Wu', + email: 'dianewudw@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '14', + jobTitle: 'Backend Software Engineer', + industry: 'Insurance', + cities: [], + }, + { + company: 'Extensis', + name: 'Daniel Chang', + email: 'dkchang213@gmail.com', + linkedIn: 'https://www.linkedin.com/in/daniel-k-chang/', + campus: 'LA / WCRI', + cohort: '56', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Facebook', + name: 'Ben Ray', + email: 'benray887@gmail.com', + linkedIn: 'https://www.linkedin.com/in/benray-/', + campus: 'NYC', + cohort: '14', + jobTitle: 'Rotational Engineer', + industry: 'Tech', + cities: [], + }, + { + company: 'Facebook', + name: 'Jason Lee', + email: 'jason.dongyul.lee@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '42', + jobTitle: 'Full-Stack Engineer', + industry: 'Social Media/Networking', + cities: [], + }, + { + company: 'Facebook', + name: 'Jonathan Calvo Ramirez', + email: 'jono.calvo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonathan-calvo', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer', + industry: 'Social Media', + cities: [], + }, + { + company: 'Facebook', + name: 'Rajeeb Banstola', + email: 'rajeebanstola@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rajeebbanstola/', + campus: 'NYC', + cohort: '14', + jobTitle: 'Fullstack Developer - Contract', + industry: 'Internet', + cities: [], + }, + { + company: 'Facebook', + name: 'Ricardo Cortez', + email: 'ricardodgers12@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rcortez88/', + campus: 'LA', + cohort: '44', + jobTitle: 'Full Stack Software Engineer', + industry: 'Social Media', + cities: [], + }, + { + company: 'Facebook', + name: 'Sean Grace', + email: 'seanmgrace@gmail.com', + linkedIn: 'https://www.linkedin.com/in/seanmgrace/', + campus: 'LA', + cohort: '44', + jobTitle: 'Full Stack Software Engineer', + industry: 'Tech', + cities: [], + }, + { + company: 'Facebook', + name: 'Shreshth Srivastava', + email: 'shreshthsrivastava2@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shreshth-srivastava/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Software Engineer', + industry: 'Social Media', + cities: [], + }, + { + company: 'Facebook (Meta)', + name: 'Eric Wilding', + email: 'eric.d.wilding@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eric-wilding/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Full Stack Software Engineer', + industry: 'Social Media', + cities: [], + }, + { + company: 'Facebook (via K2Partners)', + name: 'Thanh Doan', + email: 'tdoan35@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ty-thanh-doan/', + campus: 'LA', + cohort: '42', + jobTitle: 'Full-Stack Engineer', + industry: 'Social Media', + cities: [], + }, + { + company: 'Facebook via TEK System', + name: 'Yoko Kawamoto', + email: 'yokokawamoto@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yokokawamoto/', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer', + industry: 'Social Media', + cities: [], + }, + { + company: 'Facebook/K2', + name: 'Charles Gutwirth', + email: 'charlesgutwirth@gmail.com', + linkedIn: 'https://www.linkedin.com/in/charles-gutwirth/', + campus: 'LA', + cohort: '45', + jobTitle: 'Full Stack Engineer', + industry: 'Social media', + cities: [], + }, + { + company: 'FactSet', + name: 'Ethan Sclarsky', + email: 'esclarsky@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ethan-sclarsky/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Fanatics, Inc', + name: 'Jonah Eidman', + email: 'jonah.eidman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonah-eidman/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Software Engineer II', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Fandango', + name: 'Ha-Rry Kim', + email: 'hari9497@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hkim9497/', + campus: 'LA', + cohort: '24', + jobTitle: 'Software Engineer I', + industry: '', + cities: [], + }, + { + company: 'Fandango', + name: 'Ken Lam', + email: 'heiyeunl@gmail.com', + linkedIn: 'https://www.linkedin.com/in/heiyeunl/', + campus: 'LA', + cohort: '27', + jobTitle: 'Front end software engineer', + industry: 'Entertainment?', + cities: [], + }, + { + company: 'FanDuel', + name: 'Alex Haile', + email: 'ahaile923@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ahaile923/', + campus: 'FTRI', + cohort: '7', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Fanfix', + name: 'Dylan Hensel', + email: 'dylan@hensel.com', + linkedIn: 'https://www.linkedin.com/in/dylanhensel/', + campus: 'LA', + cohort: '38', + jobTitle: 'Senior Software Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Fanfix', + name: 'Jonathan Mavandi', + email: 'jonathan.mavandi@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jon-mavandi/', + campus: 'LA', + cohort: '26', + jobTitle: 'Software Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Fannie Mae', + name: 'Abhi Gullapalli', + email: 'aubertlone@gmail.com', + linkedIn: 'https://www.linkedin.com/in/viswagullapalli/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Cloud Engineer', + industry: 'Cloud Services', + cities: [], + }, + { + company: 'Fantoons', + name: 'Hank McGill', + email: 'henrymcgill@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hank-mcgill/', + campus: 'NYOI', + cohort: '4', + jobTitle: 'Founding Full-Stack Software Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Farm to People', + name: 'Katharine Angelopoulos', + email: 'katharine.angelopoulos@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kangelopoulos/', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Full Stack Developer', + industry: 'Restaurant, Food, and Beverage', + cities: [], + }, + { + company: 'Fashionphile', + name: 'Amy Yee', + email: 'amyyee1998@gmail.com', + linkedIn: 'https://www.linkedin.com/in/amyyee98/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'E-commerce', + cities: [], + }, + { + company: 'Fashionphile', + name: 'Gabriela Jardim Aquino', + email: 'gjardimaquino@gmail.com', + linkedIn: 'https://www.linkedin.com/in/aquinojardim/', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Fashion', + cities: [], + }, + { + company: 'Fastly', + name: 'Angelo Chengcuenca', + email: 'amchengcuenca@gmail.com', + linkedIn: 'https://www.linkedin.com/in/angelotmchengcuenca/', + campus: 'FTRI / CTRI', + cohort: '14', + jobTitle: 'Software Development Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Fearless (fearless.tech)', + name: 'Faraz Akhtar', + email: 'fa8338@gmail.com', + linkedIn: 'https://www.linkedin.com/in/faraz22/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer II', + industry: 'Government Consulting', + cities: [], + }, + { + company: 'Feather', + name: 'Bryan Fong', + email: 'bryanfong.dev@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bryanfong-dev/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Software Engineer', + industry: 'Furniture Subscription', + cities: [], + }, + { + company: 'FeatureBase', + name: 'David Kagan', + email: 'David.kagan07@gmail.com', + linkedIn: 'David-kagan07', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Jr Software Engineer, Cloud', + industry: 'Cloud Services', + cities: [], + }, + { + company: 'Federal Reserve Bank', + name: 'Robert McHalffey', + email: 'R.mchalffey@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '26', + jobTitle: 'Software Engineer 4', + industry: 'Government/Banking', + cities: [], + }, + { + company: 'Federal Reserve Bank of NY', + name: 'Anthony Lee', + email: 'anthonylee2797@gmail.com', + linkedIn: 'https://www.linkedin.com/in/anthony-lee27/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Frontend Developer', + industry: 'Finance', + cities: [], + }, + { + company: 'Ferguson', + name: 'Eric Hagen', + email: 'ericjameshagen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hagenforhire/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Ferguson Enterprises', + name: 'James Ferrell', + email: 'James David.ferrell@ferguson.com', + linkedIn: 'https://www.linkedin.com/in/james-d-ferrell/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'E-commerce', + cities: [], + }, + { + company: 'Fictiv', + name: 'Cherie Zhong', + email: 'cheriemzhong@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cheriezhong/', + campus: 'LA', + cohort: '35', + jobTitle: 'Software Engineer', + industry: 'Manufacturing', + cities: [], + }, + { + company: 'Fidelity Investments', + name: 'Eli Muir', + email: 'eli.t.muir@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eli-muir/', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Full Stack Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Fidelity Investments', + name: 'Christopher Jamali', + email: 'jamalichristopher@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chrisjamali/', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Senior Mobile Developer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Fin', + name: 'Matt Jiang', + email: 'mattljiang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mattljiang/', + campus: 'LA', + cohort: '40', + jobTitle: 'Product Engineer', + industry: 'SaaS', + cities: [], + }, + { + company: 'Find my past', + name: 'Mitesh patel', + email: 'mit06@hotmail.com', + linkedIn: 'https://www.linkedin.com/in/miteshvjpatel', + campus: 'NYC', + cohort: '21', + jobTitle: 'Mid software engineer', + industry: 'genealogy', + cities: [], + }, + { + company: 'FinDox Inc.', + name: 'Jhonatan Passalacqua', + email: 'jpascas@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jpassalacqua', + campus: 'PTRI', + cohort: 'Beta', + jobTitle: 'Senior Software Architect', + industry: 'Fintech', + cities: [], + }, + { + company: 'Finra', + name: 'Yankun Song', + email: 'yankun.L.song@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yankunsong/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Data engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'First American ', + name: 'Jen Lee', + email: 'jenleesj@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jenleesj', + campus: 'FTRI / CTRI', + cohort: '14', + jobTitle: 'Front End Software Engineer', + industry: 'Insurance', + cities: [], + }, + { + company: 'First Help Financial', + name: 'Juliana Morrelli', + email: 'julianamorrelli28@gmail.com', + linkedIn: 'https://www.linkedin.com/in/julianamorrelli/', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Frontend Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'First Republic Bank', + name: 'Nikhil Massand', + email: 'nikhil.massand@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nikhil-massand/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Banking', + cities: [], + }, + { + company: 'First Resonance', + name: 'Maxwell Reed', + email: 'mxjreed@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mxjrd/', + campus: 'LA', + cohort: '41', + jobTitle: 'Frontend Engineer', + industry: 'Manufacturing', + cities: [], + }, + { + company: 'Fiserv', + name: 'Ozi Oztourk', + email: 'oztrkgzhn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ozi-oztourk', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Fiserv.', + name: 'eddy zapata', + email: 'ecz001@live.com', + linkedIn: 'https://www.linkedin.com/in/eddy-zapata/', + campus: 'FTRI', + cohort: '2', + jobTitle: 'Software Development Engineer IV', + industry: 'Fintech', + cities: [], + }, + { + company: 'Fitch Solutions', + name: 'Duane McFarlane', + email: 'Duanemcfarlane@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/duanemcfarlane/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Flash Scientific Technology', + name: 'William Howard', + email: 'willh91@msn.com', + linkedIn: 'https://www.linkedin.com/in/wph91/', + campus: 'LA', + cohort: '21', + jobTitle: 'Lead Software Engineer', + industry: 'Meteorology/Environmental Science', + cities: [], + }, + { + company: 'Flashpoint', + name: 'Robbie Gottlieb', + email: 'robbiegottlieb.dev@gmail.com', + linkedIn: 'https://www.linkedin.com/in/robbie-gottlieb/', + campus: 'NYC / ECRI', + cohort: '1', + jobTitle: 'Security', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Flexion', + name: 'Cameron Walls', + email: 'cwalls45@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cameron-walls45/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Full Stack Software Developer', + industry: 'Consulting, the project I am working on is in the Education industry', + cities: [], + }, + { + company: 'FlightAware', + name: 'Robert Yang', + email: 'rob.yang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/robwyang/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Senior Software Engineer', + industry: 'Aviation', + cities: [], + }, + { + company: 'Flock Safety', + name: 'Rocio Infante', + email: 'Rocio.infante417@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Public Safety', + cities: [], + }, + { + company: 'Flock Safety', + name: 'Hunter Shaw', + email: 'hu.shaw215@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hshaw215/', + campus: 'NYC / ECRI', + cohort: '40', + jobTitle: 'Software Engineer II', + industry: 'Other', + cities: [], + }, + { + company: 'FloQast', + name: 'Stephanie Chiu', + email: 'stephaniekchiu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stephanie-chiu-/', + campus: 'LA', + cohort: '32', + jobTitle: 'Software Engineer I', + industry: 'Fintech', + cities: [], + }, + { + company: 'FloQast', + name: 'Khaile Tran', + email: 'khailetran94@gmail.com', + linkedIn: 'linkedin.com/in/khailetran', + campus: 'FTRI / CTRI', + cohort: '16', + jobTitle: 'Software Engineer I', + industry: 'Other', + cities: [], + }, + { + company: 'Florence Healthcare', + name: 'Bill Greco', + email: 'wgreco13@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bill-greco/', + campus: 'NYC', + cohort: '32', + jobTitle: 'Senior Full Stack Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'FNS, Inc.', + name: 'Shinhae Na', + email: 'shinhaena@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shinhaena-stella/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Software Engineer', + industry: 'Retail', + cities: [], + }, + { + company: 'Foodpanda', + name: 'Josh Kim', + email: 'joshua940308@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sungtae/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Frontend software engineer', + industry: 'Food tech', + cities: [], + }, + { + company: 'Forma', + name: 'Jay Lim', + email: 'jaymlim93@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jaylim218/', + campus: 'LA', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'Human Resources', + cities: [], + }, + { + company: 'Formation', + name: 'Stella Liao', + email: 'stellaliao.01@gmail.com', + linkedIn: 'https://www.linkedin.com/feed/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Engineer', + industry: 'Education', + cities: [], + }, + { + company: 'Formidable', + name: 'Juan Hart', + email: 'juanhart1@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '12', + jobTitle: 'Software Engineer III', + industry: 'Consultancy', + cities: [], + }, + { + company: 'Fortress Information Security', + name: 'Keith Lisiak', + email: 'bball.coach@icloud.com', + linkedIn: 'https://www.linkedin.com/in/keithlisiak/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: 'Security', + cities: [], + }, + { + company: 'Forward Financing', + name: 'Shanon Lee', + email: 'shanonlee541@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shanonlee541/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Associate Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Forward Slope Inc.', + name: 'Ilija Bibic', + email: 'ibibic2@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ilija-bibic', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Forward Slope, Inc.', + name: 'Thang Thai', + email: 'thaithangt@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thang-thai/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'FourKites', + name: 'Anthony Stanislaus', + email: 'anthonystanislaus1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/anthonystanislaus/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Fox Corporation', + name: 'James Edwards', + email: 'digitalmediapro7@gmail.com', + linkedIn: 'https://www.linkedin.com/in/digital9/', + campus: 'LA', + cohort: '19', + jobTitle: 'Senior Full Stack Software Engineer (Frontend)', + industry: '', + cities: [], + }, + { + company: 'Freewheel', + name: 'Hubert Lin', + email: 'huberthflin@gmail.com', + linkedIn: 'https://www.linkedin.com/feed/', + campus: 'NYC', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'IT', + cities: [], + }, + { + company: 'Frontier Communications', + name: 'Josh Cretella', + email: 'jcrtll@protonmail.com', + linkedIn: 'https://www.linkedin.com/in/josh-cretella', + campus: 'LA', + cohort: '45', + jobTitle: 'Backend Developer', + industry: 'Telecoms', + cities: [], + }, + { + company: 'Frozen Dessert Supplies', + name: 'Ethan McRae', + email: 'ethanmcrae0@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ethanmcrae/', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Senior Developer', + industry: 'Consumer Goods: Retail (general)', + cities: [], + }, + { + company: 'Fulcrum', + name: 'Valerie Huang', + email: 'valeriewhuang@gmail.com', + linkedIn: 'https://www.linkedin.com/mwlite/in/valeriewhuang', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Software Engineer', + industry: 'Manufacturing', + cities: [], + }, + { + company: 'fulcrumpro', + name: 'Nicole Du', + email: 'Nicoleduu@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Developer', + industry: 'Manufacturing', + cities: [], + }, + { + company: 'Full In Partners', + name: 'Kevin HoEun Lee', + email: 'kevin.hoeun.lee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kevinhoeunlee/', + campus: 'LA', + cohort: '50', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Funimation', + name: 'Justin Joseph', + email: 'jrayjoseph@gmail.com', + linkedIn: 'https://www.linkedin.com/mwlite/in/jrayjoseph', + campus: 'LA', + cohort: '32', + jobTitle: 'Backend Software Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Fusion Medical Staffing', + name: 'Kelsey Graner', + email: 'Kels.graner@gmail.com', + linkedIn: 'LinkedIn.com/Kelsey-graner', + campus: 'LA / WCRI', + cohort: '54', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Fusion Medical Staffing', + name: 'Krisette Odegard', + email: 'kmodeg@gmail.com', + linkedIn: 'https://linkedin.com/in/krisette', + campus: 'LA / WCRI', + cohort: '53', + jobTitle: 'Software Developer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Futuralis', + name: 'Rex Osariemen', + email: 'rexosariemen@gmail.com', + linkedIn: 'https://linkedin/in/rexosariemen', + campus: 'NYC', + cohort: '15', + jobTitle: 'Software Engineer', + industry: 'IT', + cities: [], + }, + { + company: 'G-Research', + name: 'Sigele Nickerson-Adams', + email: 'sigeleakosua@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sigelenickersonadams', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Software Engineer', + industry: 'Research', + cities: [], + }, + { + company: 'Gaia Platform', + name: 'Jorge Fernandez', + email: 'jcferna1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jorge-carlos-fernandez', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Developer', + industry: 'Automation', + cities: [], + }, + { + company: 'Gallery Media Group', + name: 'Kristiina Eelnurme', + email: 'kristiina.eelnurme@gmail.com', + linkedIn: 'https://www.linkedin.com/in/Kristiina-eelnurme/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Frontend Engineer', + industry: 'Media', + cities: [], + }, + { + company: 'GameOn Technology', + name: 'Jeffrey Kim', + email: 'kimjeffrey96@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jeffrey-kim-79810112a/', + campus: 'NYC', + cohort: '6', + jobTitle: 'Frontend, Software Engineer', + industry: 'Tech', + cities: [], + }, + { + company: 'GAN Integrity', + name: 'Erik Larsen', + email: 'erik.w.larsen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/erik-w-larsen', + campus: 'NYC', + cohort: '3', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Gap', + name: 'Khayal Alasgarov', + email: 'alaskarov.khayal@gmail.com', + linkedIn: 'https://www.linkedin.com/in/khayal-alasgaroff', + campus: 'LA', + cohort: '44', + jobTitle: 'React/JavaScript Developer', + industry: 'Clothing', + cities: [], + }, + { + company: 'Gap', + name: 'Wesley Appleget', + email: 'wesget182@gmail.com', + linkedIn: 'https://www.linkedin.com/in/wesley-appleget/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Full Stack Engineer', + industry: 'Retail', + cities: [], + }, + { + company: 'Gap Inc.', + name: 'Cole Redfearn', + email: 'coleredfearn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/coleredfearn/', + campus: 'LA', + cohort: '41', + jobTitle: 'UI Developer', + industry: 'Clothing/E-Commerce', + cities: [], + }, + { + company: 'Gap inc.', + name: 'Nayan Parmar', + email: 'nparmar84@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nparmar1', + campus: 'LA', + cohort: '44', + jobTitle: 'Software Engineer', + industry: 'eCommerce', + cities: [], + }, + { + company: 'Gartner-L2', + name: 'Jonathan P Schwartz', + email: 'jonathanschwartz30@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonathanpschwartz/', + campus: 'NYC', + cohort: '7', + jobTitle: 'Front-End Lead', + industry: '', + cities: [], + }, + { + company: 'Gatheround', + name: 'Andrew Widjaja', + email: 'andrewdwidjaja@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andrew-widjaja/', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'GE Aviation', + name: 'Nathan Richardson', + email: 'nathan.richardson94@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nathan-p-richardson/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Fullstack Developer', + industry: 'Aerospace', + cities: [], + }, + { + company: 'Geneoscopy', + name: 'Steve Schlepphorst', + email: 'steve.schlepphorst@gmail.com', + linkedIn: 'https://www.linkedin.com/in/schlepphorst/', + campus: 'FTRI / CTRI', + cohort: '17', + jobTitle: 'Senior Software Engineer I', + industry: 'Healthtech/Healthcare', + cities: [], + }, + { + company: 'Genomic Prediction', + name: 'Rebecca Miller', + email: 'beemills@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rebeccamiller19/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Frontend Engineer', + industry: 'Biotech', + cities: [], + }, + { + company: 'Ghostery', + name: 'Leury Rodriguez', + email: 'leuryr07@gmail.com', + linkedIn: 'https://www.linkedin.com/in/leury-rodriguez/', + campus: 'NYC', + cohort: '8', + jobTitle: 'Jr. Software Engineer', + industry: 'Internet', + cities: [], + }, + { + company: 'Giglabs, Inc.', + name: 'Tyler Pohn', + email: 'tylerpohn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tylerpohn/', + campus: 'FTRI / CTRI', + cohort: '5', + jobTitle: 'Software Engineer', + industry: 'Blockchain/Web3', + cities: [], + }, + { + company: 'Giglabs.io', + name: 'Daniel Nguyen', + email: 'dannguyen1191@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/danlord-nguyen/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Software Engineer (Node)', + industry: 'Blockchain, Media and Entertainment', + cities: [], + }, + { + company: 'Github', + name: 'Sabrina Goldfarb', + email: 's.goldfarb2@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sabrinagoldfarb/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Software Engineer II', + industry: 'Tech', + cities: [], + }, + { + company: 'glimpse.ai', + name: 'Ryan Lim', + email: 'ryanlim301@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ryanlim3/', + campus: 'LA', + cohort: '46', + jobTitle: 'Full Stack Engineer', + industry: 'Information Technology', + cities: [], + }, + { + company: 'Gluware', + name: 'Abid Ramay', + email: 'abidramay@gmail.com', + linkedIn: 'https://www.linkedin.com/in/aramay/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'GOAT Group', + name: 'Jordan Deleon', + email: 'jordanscottdeleon@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jordan-deleon/', + campus: 'LA', + cohort: '35', + jobTitle: 'Software Engineer II', + industry: 'E-commerce', + cities: [], + }, + { + company: 'GoBolt', + name: 'Kyo Ku', + email: 'kyosan.ku34@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kyosan-ku/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Software Developer II', + industry: 'Logistics Technology', + cities: [], + }, + { + company: 'GoDaddy', + name: 'Joyce Lo', + email: 'joycemanning@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joycelo/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer', + industry: 'Internet', + cities: [], + }, + { + company: 'GoDaddy', + name: 'Kristina Wallen', + email: 'KristinaKWallen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kristina-wallen/', + campus: 'LA', + cohort: '46', + jobTitle: 'Senior Software Development Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'GoFundMe', + name: 'Colin McCarthy', + email: 'colinhmccarthy@gmail.com', + linkedIn: 'https://www.linkedin.com/in/colinhmccarthy/', + campus: 'LA', + cohort: '21', + jobTitle: 'Software Engineer', + industry: 'Crowdfunding/fundraising', + cities: [], + }, + { + company: 'Golden Hippo', + name: 'Mauricio Castro', + email: 'mauricio.a.castro7@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mauricioacastro/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Senior Full Stack Developer', + industry: 'Advertising', + cities: [], + }, + { + company: 'Goldman Sachs', + name: 'Alfredo Alpizar', + email: 'fredo.alpizar@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alfredoalpizar/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Associate Software Engineer', + industry: 'Finance / Banking', + cities: [], + }, + { + company: 'Goldman Sachs', + name: 'Peyton Pedersen', + email: 'pedersen0819@gmail.com', + linkedIn: 'https://www.linkedin.com/in/peyton-pedersen/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Analyst', + industry: 'Fintech', + cities: [], + }, + { + company: 'Goldman Sachs', + name: 'Stephen Budarz', + email: 'sbudarz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/steve-budarz/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Vice President', + industry: 'Finance', + cities: [], + }, + { + company: 'Goldschmitt & Associates', + name: 'Kirk Shin', + email: 'shin.kirk@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kirkshin/', + campus: 'LA', + cohort: '31', + jobTitle: 'Frontend Developer', + industry: 'Government contractor', + cities: [], + }, + { + company: 'GoodPup', + name: 'Eric Wells', + email: 'epiqu1n@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ewells2275/', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'GoodRX', + name: 'Byron Jay Inocencio', + email: 'jay.byron@gmail.com', + linkedIn: 'https://www.linkedin.com/in/binocencio/', + campus: 'LA', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'Healthcare, Med-tech, Telemedecine', + cities: [], + }, + { + company: 'GoodRx', + name: 'Mike Richards', + email: 'mike@madebymtr.com', + linkedIn: 'https://www.linkedin.com/in/madebymtr/', + campus: 'LA', + cohort: '11', + jobTitle: 'Senior Frontend Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Google', + name: 'Andie Ritter', + email: 'A.k.rittr@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andieritter/', + campus: 'LA', + cohort: '34', + jobTitle: 'Software Engineer', + industry: 'Business Intelligence', + cities: [], + }, + { + company: 'Google', + name: 'Ben Hawley', + email: 'benhawley0@gmail.com', + linkedIn: 'https://www.linkedin.com/in/benchawley/', + campus: 'NYC', + cohort: '4', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Google', + name: 'Brett Beekley', + email: 'brettbeekley@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brettbeekley/', + campus: 'LA', + cohort: '15', + jobTitle: 'Senior Software Engineer, Site Reliability Engineering', + industry: 'Technology', + cities: [], + }, + { + company: 'Google', + name: 'Cameron Greer', + email: 'camgreer01@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cameron-greer/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer - Level 3', + industry: 'Technology', + cities: [], + }, + { + company: 'Google', + name: 'Christian Padilla', + email: 'christianepadilla@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christianedwardpadilla/', + campus: 'NYC', + cohort: '10', + jobTitle: 'Software Engineer (L3)', + industry: 'Frontend Mobile Development', + cities: [], + }, + { + company: 'Google', + name: 'Crystal Pederson', + email: 'crystalpederson88@gmail.com', + linkedIn: 'https://www.linkedin.com/in/crystalpederson/', + campus: 'PTRI', + cohort: '5', + jobTitle: 'Software Engineer (Frontend III)', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Google', + name: 'Edwin Lee', + email: 'edjl1289@gmail.com', + linkedIn: 'https://www.linkedin.com/in/edwinlee89/', + campus: 'LA', + cohort: '45', + jobTitle: 'Software Engineer', + industry: 'Cloud Service', + cities: [], + }, + { + company: 'Google', + name: 'Ian Geckeler', + email: 'ikcgeckeler@gmail.com', + linkedIn: 'https://www.linkedin.com/in/iangeckeler/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Software Engineer', + industry: 'Adtech', + cities: [], + }, + { + company: 'Google', + name: 'Jeff Kang', + email: 'jeffreyrkang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jeffreyrkang/', + campus: 'LA', + cohort: '21', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Google', + name: 'Jenae Pennie', + email: 'jenaepen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jenae-pennie/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Software Engineer', + industry: 'Tech', + cities: [], + }, + { + company: 'Google', + name: 'Jonathan Tam', + email: 'jktam336@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jktam/', + campus: 'LA', + cohort: '47', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Google', + name: 'Miguel Gonzalez', + email: 'MiguelGonzalez@alumni.upenn.edu', + linkedIn: 'https://www.linkedin.com/in/miguel-gonzalez96/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Software Engineer - Search Engine Privacy', + industry: 'Tech', + cities: [], + }, + { + company: 'Google', + name: 'Nak Young Kim', + email: 'nydkim@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nak-young-kim/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer', + industry: 'Social Media', + cities: [], + }, + { + company: 'Google', + name: 'Patrick Liu', + email: 'patrickliu.hhs@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ptrkl/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Software Engineer', + industry: 'Tech', + cities: [], + }, + { + company: 'Google', + name: 'Swetha Kunda', + email: 'swethakunda@gmail.com', + linkedIn: 'https://www.linkedin.com/in/swethakunda/', + campus: 'FTRI', + cohort: '6', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Google', + name: 'Cecilia Yena Choi', + email: 'yenachoi95@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ceciliayenachoi/', + campus: 'LA', + cohort: '34', + jobTitle: 'Software Engineer', + industry: 'Tech', + cities: [], + }, + { + company: 'Google Cloud', + name: 'Sarah Heacock', + email: 'sarahheacock03@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sarah-heacock/', + campus: 'NYC', + cohort: '2', + jobTitle: 'Software Engineer', + industry: 'Tech', + cities: [], + }, + { + company: 'GoSite', + name: 'Alexander Young', + email: 'youngalexj00@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexander-young-7aabb7122/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Full Stack Engineer', + industry: 'Digital Services', + cities: [], + }, + { + company: 'Govini', + name: 'Aaron Bumanglag', + email: 'aaron.k.bumanglag@gmail.com', + linkedIn: 'https://linkedin.com/akbuma', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Decision Science', + cities: [], + }, + { + company: 'Grailed', + name: 'Eugene Chen', + email: 'chen.eugene19@gmail.com', + linkedIn: 'https://www.linkedin.com/in/canopeia', + campus: 'NYC', + cohort: '8', + jobTitle: 'Junior Software Engineer', + industry: 'HR tech', + cities: [], + }, + { + company: 'Grailed', + name: 'Danni Ballena', + email: 'danni.ballena@gmail.com', + linkedIn: 'https://www.linkedin.com/in/danni-ballena/', + campus: 'LA', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Granular', + name: 'Charles Ryu', + email: 'charles.ryu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/charcharryu', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer', + industry: 'Agriculture Tech', + cities: [], + }, + { + company: 'Graphika', + name: 'Sam Carlile', + email: 'sam@samkc.me', + linkedIn: 'https://LinkedIn.com/in/samkcarlile', + campus: 'NYC', + cohort: '21', + jobTitle: 'Full Stack Engineer', + industry: 'Research & Analytics', + cities: [], + }, + { + company: 'Green Street Advisors', + name: 'Joshua Nordstrom', + email: 'joshua@jdnordstrom.com', + linkedIn: 'https://www.linkedin.com/in/jdnordy/', + campus: 'LA', + cohort: '34', + jobTitle: 'Technology Associate', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Greenphire', + name: 'Nicholas Krug', + email: 'n.e.krug@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nicholas-e-krug', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Application Developer III', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Greentech Financial Solutions', + name: 'Justin Hicks', + email: 'justinhickswork@gmail.com', + linkedIn: 'https://www.linkedin.com/in/justinlhicks/', + campus: 'LA / WCRI', + cohort: '48', + jobTitle: 'Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Grid Networks', + name: 'Trine Medina', + email: 'trinemedina@gmail.com', + linkedIn: 'www.linkedin.com/in/trinemedina', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Gro Intelligence', + name: 'Damian Lim', + email: 'limd96@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lim-damian/', + campus: 'FTRI', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Agriculture Science', + cities: [], + }, + { + company: 'Gro-Intelligence', + name: 'David Bernstein', + email: 'dxbernstein@gmail.com', + linkedIn: 'https://www.linkedin.com/in/davidsamuelbernstein/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Software Engineer (API/Data Visualization Team)', + industry: 'Agricultural Analytics', + cities: [], + }, + { + company: 'Groove Jones', + name: 'Kristopher Sorensen', + email: 'Krismsorensen@gmail.com', + linkedIn: 'Linkedin/in/kris-sorensen', + campus: 'FTRI / CTRI', + cohort: '7', + jobTitle: 'Senior WebXR Developer', + industry: 'Other', + cities: [], + }, + { + company: 'GuideMe Solutions', + name: 'David Nadler', + email: 'Davidnadler9637@gmail.com', + linkedIn: 'https://www.linkedin.com/in/davenads/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Technical Consultant', + industry: 'Digital Adoption Software', + cities: [], + }, + { + company: 'Gulfstream', + name: 'Chris Hicks', + email: 'chrishicks430@gmail.com', + linkedIn: 'Www.LinkedIn.com/in/chrishicks430', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Application Developer', + industry: 'Aerospace', + cities: [], + }, + { + company: 'Guy Carpenter', + name: 'Dennis Palomo', + email: 'dennispalomo@icloud.com', + linkedIn: 'https://linkedin.com/in/dennispalomo', + campus: 'NYC', + cohort: '27', + jobTitle: 'Developer', + industry: 'Insurance', + cities: [], + }, + { + company: 'HackerOne', + name: 'Catherine Chiu', + email: 'catherinechiuu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cchiu2/', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Engineer II', + industry: 'Cybersecurity', + cities: [], + }, + { + company: 'HackerOne', + name: 'Serena Kuo', + email: 'hello@serenakuo.com', + linkedIn: 'https://www.linkedin.com/in/serenakuo/', + campus: 'LA', + cohort: '37', + jobTitle: 'Senior Software Engineer', + industry: 'Computer Safety', + cities: [], + }, + { + company: 'HackerOne', + name: 'Haejin Jo', + email: 'swe.haejin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/haejinjo', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Engineer', + industry: 'Cybersecurity', + cities: [], + }, + { + company: 'Halo Investing', + name: 'Gareth Leake', + email: 'gfleake@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gareth-leake/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'Finance', + cities: [], + }, + { + company: 'Handshake', + name: 'Annie Shin', + email: 'annieshin51@gmail.com', + linkedIn: 'https://www.linkedin.com/in/annieshinn/', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer, Platform Services Team', + industry: 'Recruiting', + cities: [], + }, + { + company: 'Handshake', + name: 'Chase Benjamin', + email: 'chasebenjamin6@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chase-benjamin300/', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Growth Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Handshake', + name: 'Jeffrey Lu', + email: 'hi@jeffreyclu.com', + linkedIn: 'https://www.linkedin.com/in/jeffreyclu/', + campus: 'PTRI', + cohort: 'Beta', + jobTitle: 'Software Engineer', + industry: 'Education', + cities: [], + }, + { + company: 'Handshake', + name: 'Joel Pratt', + email: 'pratt.joel@gmail.com', + linkedIn: 'https://www.linkedin.com/in/pratt-joel/', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Harbor.ai', + name: 'Rodolfo Guzman', + email: 'Rodolfoguzman147@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rodolfo-guzman-59249594/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Full Stack Developer', + industry: 'Insurance Tech', + cities: [], + }, + { + company: 'Harness Inc.', + name: 'Tran McFarland Nguyen', + email: 'tranviolin@me.com', + linkedIn: 'https://www.linkedin.com/in/tranmcfarlandnguyen/', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Senior UX Designer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Harver', + name: 'Will Robinson', + email: 'wrobinson91@gmail.com', + linkedIn: 'https://www.linkedin.com/in/wrobinson91', + campus: 'NYC', + cohort: '12', + jobTitle: 'Fullstack Engineer', + industry: 'Applicant Tracking Software', + cities: [], + }, + { + company: 'Health Note', + name: 'Jeffrey Sul', + email: 'jeffsul97@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jsul/', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer', + industry: 'Medical CRM', + cities: [], + }, + { + company: 'Healthcare.com', + name: 'Stephen Jue', + email: 'steve.h.jue@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stephen-jue09/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Software Engineer - Front End', + industry: 'Other', + cities: [], + }, + { + company: 'Healthgrades', + name: 'Joel K. Perkins', + email: 'Joel.climbs@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joelkperkins/', + campus: 'LA', + cohort: '24', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Hearst', + name: 'Josh Roberts', + email: 'josh@quantumspot.io', + linkedIn: 'https://www.linkedin.com/in/joshrobertsv2/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Lead Frontend Engineer', + industry: 'Media', + cities: [], + }, + { + company: 'Hearst', + name: 'Rob Nobile', + email: 'robert.nobile@gmail.com', + linkedIn: 'https://www.linkedin.com/in/robnobile/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer', + industry: 'Media', + cities: [], + }, + { + company: 'Hearst Newspaper', + name: 'Kevin Sarchi', + email: 'kevinsarchi@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/kevin-sarchi/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Associate Software Engineer', + industry: 'Media', + cities: [], + }, + { + company: 'Hearth', + name: 'Vince Ho', + email: 'vinceho022@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vinceho022/', + campus: 'LA', + cohort: '40', + jobTitle: 'Backend Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Heartland ', + name: 'Lloyd Bistany', + email: 'lloydbistany@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lloyd-bistany', + campus: 'NYOI', + cohort: '3', + jobTitle: 'Software Developer ', + industry: 'Business Tech/Enterprise Tech', + cities: [], + }, + { + company: 'Helix', + name: 'Robert Crocker', + email: 'robert@vizsimply.com', + linkedIn: 'https://www.linkedin.com/in/robertcrocker/', + campus: 'PTRI', + cohort: '4', + jobTitle: 'Data Visualization Engineer', + industry: 'Bio Tech', + cities: [], + }, + { + company: 'Hertz', + name: 'Michael Costello', + email: 'mcostello91@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mcostello-swe/', + campus: 'FTRI / CTRI', + cohort: '12', + jobTitle: 'Software Engineer', + industry: 'Automotive', + cities: [], + }, + { + company: 'Highnote', + name: 'Trevor Carr', + email: 'trevor.a.carr@gmail.com', + linkedIn: 'https://www.linkedin.com/in/carr-trevor/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Software', + cities: [], + }, + { + company: 'Hilton', + name: 'Andrei Cabrera', + email: 'andrei.cabrera@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andrei-cabrera/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Backend Software Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Hilton', + name: 'Nick Andreala', + email: 'nandreala@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nickandreala/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Front-End Software Engineer', + industry: 'Hospitality', + cities: [], + }, + { + company: 'Hilton', + name: 'Conor Sexton', + email: 'sextonc@me.com', + linkedIn: 'https://www.linkedin.com/in/sextonc/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Render Tier Engineer', + industry: 'Hospitality', + cities: [], + }, + { + company: 'Hinge Health', + name: 'Ahsan Rao', + email: 'ahsan.ijaz.rao@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ahsan-rao/', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Software Engineer - Full-Stack', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Hinge Health', + name: 'Evan King', + email: 'evanking112@gmail.com', + linkedIn: 'https://www.linkedin.com/in/evanking11/', + campus: 'LA', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Healthcare Technology', + cities: [], + }, + { + company: 'Hinge Health', + name: 'Vanessa Lutz', + email: 'vanessayplutz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vanessa-lutz', + campus: 'FTRI', + cohort: '2', + jobTitle: 'Software Engineer', + industry: 'Health', + cities: [], + }, + { + company: 'Hireology', + name: 'Stella Baek', + email: 'seungyeon1008@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stellabaek/', + campus: 'LA / WCRI', + cohort: '54', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'HiTactics/ ZH Solutions Inc.', + name: 'Sidhi Gosain', + email: 'sidhigosain@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sidhi-gosain/', + campus: 'LA', + cohort: '22', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'HiThrive', + name: 'Zack Daniels', + email: 'Zackdanielsnyc@gmail.com', + linkedIn: 'https://www.linkedin.com/in/zackdanielsnyc/', + campus: 'LA', + cohort: '49', + jobTitle: 'Full stack software engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Hive', + name: 'Max Latoche', + email: 'max.latoche@gmail.com', + linkedIn: 'https://www.linkedin.com/in/maxlatoche/', + campus: 'NYC', + cohort: '2', + jobTitle: 'Senior Software Engineer', + industry: 'Tech', + cities: [], + }, + { + company: 'Hive Technologies Inc', + name: 'Lilah August', + email: 'lilahraeaugust@gmail.com', + linkedIn: 'https://www.linkedin.com/lilahaugust', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Software Engineer', + industry: 'Automotive', + cities: [], + }, + { + company: 'HOF Capital', + name: 'Frank Hu', + email: 'frank.junhu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/frankjunhu/', + campus: 'NYC', + cohort: '2', + jobTitle: 'Venture Analyst', + industry: '', + cities: [], + }, + { + company: 'Home Depot', + name: 'Hannah Santoyo', + email: 'hannah.santoyo7@gmail.com', + linkedIn: 'linkedin.com/in/hannah-santoyo', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Fullstack Software Engineer', + industry: 'Retail', + cities: [], + }, + { + company: 'Honey (PayPal)', + name: 'Jenny Hai', + email: 'jenny.hai420@gmail.com', + linkedIn: 'https://www.linkedin.com/in/Jenny-hai/', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer II', + industry: 'Fintech / Ecommerce', + cities: [], + }, + { + company: 'Hooray Agency', + name: 'Aris Razuri', + email: 'arazuli4@gmail.com', + linkedIn: 'https://www.linkedin.com/in/aris-razuri/', + campus: 'LA', + cohort: '34', + jobTitle: 'Junior Frontend Developer', + industry: 'Marketing & Advertising', + cities: [], + }, + { + company: 'Hopin', + name: 'Linda Wishingrad', + email: 'linda.wishingrad@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lindawishingrad/', + campus: 'LA', + cohort: '33', + jobTitle: 'Front End Engineer', + industry: 'Tech', + cities: [], + }, + { + company: 'Hopin', + name: 'Rachel Yoo', + email: 'yoo.rache@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rachel-yoo/', + campus: 'LA', + cohort: '33', + jobTitle: 'Frontend Engineer', + industry: 'Online Events Platform', + cities: [], + }, + { + company: 'Hopkins', + name: 'Nicole Abramowski', + email: 'nabramow@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nicoleabramowski/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Senior Full Stack Engineer', + industry: 'Law', + cities: [], + }, + { + company: 'HotPyp', + name: 'Kendall Lu', + email: 'kendall.luu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kendall-lu/', + campus: 'LA', + cohort: '31', + jobTitle: 'Front End Software Engineer', + industry: 'Cyber Security', + cities: [], + }, + { + company: 'Howl', + name: 'Adam Allison', + email: 'allisonadam81@gmail.com', + linkedIn: 'https://www.linkedin.com/in/allisonadam81/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Full Stack Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Howl', + name: 'Ryan Wallace', + email: 'ryanwallace1396@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rwallie/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Software Engineer', + industry: 'Media', + cities: [], + }, + { + company: 'Hoylu', + name: 'Judy Song', + email: 'judysongg@gmail.com', + linkedIn: 'https://www.linkedin.com/in/judysongg/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'HqO', + name: 'Shadman Khan', + email: 'shadmankhan.825@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shadmanmkhan/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Senior Software Engineer', + industry: 'Tenant Experience Platform/Commercial Real Estate', + cities: [], + }, + { + company: 'HubSpot', + name: 'Michael Caballero', + email: 'caballeromichaelus@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael-caballero-a48b0b211/', + campus: 'LA', + cohort: '42', + jobTitle: 'Senior Software Engineer I', + industry: 'Software', + cities: [], + }, + { + company: 'Human Interest', + name: 'Paulo Choi', + email: 'Paulinho@hey.com', + linkedIn: 'https://www.linkedin.com/in/paulochoi', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Humana', + name: 'Jeffery Richardson', + email: 'Jeffery.erichardson03@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jefferyrichardsonii', + campus: 'FTRI / CTRI', + cohort: '12', + jobTitle: 'Senior Software Engineer', + industry: 'Insurance', + cities: [], + }, + { + company: 'HumanQ', + name: 'Aya Moosa', + email: 'ayamoosa1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ayamoosa/', + campus: 'LA / WCRI', + cohort: '55', + jobTitle: 'Full Stack Developer', + industry: 'Other', + cities: [], + }, + { + company: 'Hunter Strategy', + name: 'Rankin Draa', + email: 'rankindraa@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rankin-draa/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Application Developer', + industry: 'IT Services', + cities: [], + }, + { + company: 'Hy-Vee', + name: 'Daniel An', + email: 'da568@georgetown.edu', + linkedIn: 'https://www.linkedin.com/in/d-an96/', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Restaurant, Food, and Beverage', + cities: [], + }, + { + company: 'Hy-Vee', + name: 'Paul Perez', + email: 'pau.per92@gmail.com', + linkedIn: 'https://www.linkedin.com/in/perezp92', + campus: 'NYC / ECRI', + cohort: '31', + jobTitle: 'Software Engineer II', + industry: 'Restaurant, Food, and Beverage', + cities: [], + }, + { + company: 'Hyliion', + name: 'Gordon Yu', + email: 'gordon@gordonyu.com', + linkedIn: 'https://www.linkedin.com/in/gordonu/', + campus: 'LA', + cohort: '16', + jobTitle: 'Senior Full Stack Engineer', + industry: 'Electric Vehicles', + cities: [], + }, + { + company: 'Hypergiant', + name: 'Abu Fofanah', + email: 'Bubakarrr@gmail.com', + linkedIn: 'https://www.linkedin.com/in/Abu-Fofanah/', + campus: 'LA', + cohort: '41', + jobTitle: 'Senior Frontend Developer', + industry: 'Technology', + cities: [], + }, + { + company: 'Hyperproof', + name: 'Tai Nguyen', + email: 'ndhuutai1@gmail.com', + linkedIn: '', + campus: 'PTRI', + cohort: 'Beta', + jobTitle: 'Software Engineer', + industry: 'Compliance Operations', + cities: [], + }, + { + company: 'Hyster-Yale Group', + name: 'Patrick Mojica', + email: 'patrickmojica@gmail.com', + linkedIn: 'https://www.linkedin.com/in/patrick-mojica/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Software Engineer II - Emerging Technology', + industry: 'Automotive', + cities: [], + }, + { + company: 'IAPP', + name: 'Wanlu Ding', + email: 'wanlu.ding@gmail.com', + linkedIn: 'https://www.linkedin.com/in/wanlu-ding/', + campus: 'NYC / ECRI', + cohort: '42', + jobTitle: 'Fullstack software engineer (Contractor)', + industry: 'Consulting', + cities: [], + }, + { + company: 'IBI Group', + name: 'wisdom liu', + email: 'wliu1290@gmail.com', + linkedIn: 'https://www.linkedin.com/in/wisdom-liu/', + campus: 'LA', + cohort: '27', + jobTitle: 'Software Developer', + industry: 'Architectural Services', + cities: [], + }, + { + company: 'IBM', + name: 'Annette Lin', + email: 'al261310@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alin10/', + campus: 'NYC', + cohort: '9', + jobTitle: 'Software engineer, backend', + industry: 'IT', + cities: [], + }, + { + company: 'IBM', + name: 'Jimmy Deng', + email: 'Jdeng619@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/zhijimmydeng/', + campus: 'LA', + cohort: '30', + jobTitle: 'Software Developer - Cloud Software Developer', + industry: 'Sales? Tbh idk', + cities: [], + }, + { + company: 'IBM', + name: 'Kyle Jurassic', + email: 'kjurassic@protonmail.com', + linkedIn: 'https://www.linkedin.com/in/kylejurassic/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Cloud Engineer', + industry: 'Technology', + cities: [], + }, + { + company: 'IBM', + name: 'Nader Almogazy', + email: 'nader73107@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nader-almogazy-97603080/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Tech', + cities: [], + }, + { + company: 'IBM', + name: 'Brian Bui', + email: 'umius.brian@gmail.com', + linkedIn: 'https://www.linkedin.com/in/umius-brian/', + campus: 'LA', + cohort: '35', + jobTitle: 'Cloud Engineer', + industry: 'Information Technology & Services', + cities: [], + }, + { + company: 'IBM', + name: 'Vessy Shestorkina', + email: 'v.shestorkina@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shestorkina/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Full Stack Developer', + industry: 'Technology & Consulting', + cities: [], + }, + { + company: 'Icetec Energy Services', + name: 'Nicholas Ly', + email: 'lynick14@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nicholasly/', + campus: 'FTRI / CTRI', + cohort: '15', + jobTitle: 'Senior Applications Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'ICF', + name: 'David Cheng', + email: 'davidzcheng@protonmail.com', + linkedIn: 'https://www.linkedin.com/in/davidzcheng/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Software Engineer', + industry: 'Consulting', + cities: [], + }, + { + company: 'ICF', + name: 'Gwen Phillips', + email: 'gwen.phil@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gwen-phillips/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Frontend Developer', + industry: 'Consulting', + cities: [], + }, + { + company: 'IDEMIA', + name: 'David Conrad Friesen', + email: 'conrad.friesen@pm.me', + linkedIn: 'https://www.linkedin.com/in/conrad-friesen/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Software Engineer I', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Idemia', + name: 'Tommy Edmunds', + email: 'tommyedmunds5@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tommy-edmunds-a91aa41a9/', + campus: 'FTRI', + cohort: '2', + jobTitle: 'Software Engineer', + industry: 'Security', + cities: [], + }, + { + company: 'iHeartMedia', + name: 'Genevieve Annable', + email: 'genevieveannable@gmail.com', + linkedIn: 'https://www.linkedin.com/in/genevieveannable/', + campus: 'LA', + cohort: '47', + jobTitle: 'Full-Stack Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'iHeartMedia', + name: 'Alexa Nunes', + email: 'alexaraenunes@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexanunes/', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Software Engineer', + industry: 'News/Entertainment/Streaming Platforms', + cities: [], + }, + { + company: 'iHeartRadio', + name: 'Serhii Kaistrenko', + email: 'skaistrenko@gmail.com', + linkedIn: 'https://www.linkedin.com/in/skaistrenko/', + campus: 'NYC', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Hospitality', + cities: [], + }, + { + company: 'Impending Bloom', + name: 'William Magee', + email: 'wmagee03@gmail.com', + linkedIn: 'https://www.linkedin.com/in/william-magee-22a677181/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Data Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Inari', + name: 'Kelly Dekitani', + email: 'kellydekitani@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kelly-dekitani/', + campus: 'LA', + cohort: '33', + jobTitle: 'Full Stack Engineer', + industry: 'Biotech/Agriculture', + cities: [], + }, + { + company: 'Inbrace', + name: 'Jim Yoon', + email: 'jimyoon90@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jimkyoon', + campus: 'LA', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Health', + cities: [], + }, + { + company: 'Industrious', + name: 'Bryan Li', + email: 'Bryan.li@foxmail.com', + linkedIn: 'https://www.linkedin.com/in/bbbryan14/', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Infinite Computer Solutions', + name: 'Brianna Sookhoo', + email: 'brianna.sookhoo24@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brianna-sookhoo/', + campus: 'LA', + cohort: '35', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Influent', + name: 'Adam Berri', + email: 'adamberri123@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adamberri/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Software Engineer 1', + industry: 'Social Media', + cities: [], + }, + { + company: 'Influx Data', + name: 'Grace Spletzer', + email: 'gracespletzer05@gmail.com', + linkedIn: 'https://www.linkedin.com/in/grace-spletzer/', + campus: 'LA', + cohort: '36', + jobTitle: 'Engineer I', + industry: 'Database service', + cities: [], + }, + { + company: 'InfluxData', + name: 'Bill OConnell', + email: 'wdoconnell@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bill-oconnell/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'SaaS', + cities: [], + }, + { + company: 'Infor', + name: 'Olga Naumova', + email: 'leliknaum@gmail.com', + linkedIn: 'https://www.linkedin.com/in/onaumova/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'software', + cities: [], + }, + { + company: 'Infosys', + name: 'Honghao Sun', + email: 'ilovepuffseven@gmail.com', + linkedIn: 'https://www.linkedin.com/in/honghaosunmichael/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Technical lead', + industry: 'IT Services', + cities: [], + }, + { + company: 'Infosys', + name: 'Reuben Kirsh', + email: 'reubenakirsh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/reubenkirsh/', + campus: 'LA', + cohort: '41', + jobTitle: 'Technology Analyst', + industry: 'Tech', + cities: [], + }, + { + company: 'Infosys', + name: 'Samuel Ratemo', + email: 'Sratemo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/samuelratemo/', + campus: 'LA', + cohort: '24', + jobTitle: 'Technology lead -US', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Inhance Digital', + name: 'Brian Chiang', + email: 'chiangbri@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ch-brian/', + campus: 'LA', + cohort: '34', + jobTitle: 'Software Engineer', + industry: 'Marketing', + cities: [], + }, + { + company: 'Initiative', + name: 'Brian Cheng', + email: 'Chengbrian24@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brian-cheng24/', + campus: 'LA', + cohort: '45', + jobTitle: 'Full Stack Developer', + industry: 'Media Agency', + cities: [], + }, + { + company: 'INLT', + name: 'Andrew Wong', + email: 'andwong91@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andwong91/', + campus: 'LA', + cohort: '23', + jobTitle: 'Full Stack Developer', + industry: '', + cities: [], + }, + { + company: 'Inman', + name: 'David Kim', + email: 'scriptura7773@gmail.com', + linkedIn: 'https://www.linkedin.com/in/davidkim7773/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Developer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Innovative Defense Technologies', + name: 'Daniel Pietsch', + email: 'drpietsch14@gmail.com', + linkedIn: 'https://www.linkedin.com/in/danielpietsch14/', + campus: 'NYOI', + cohort: '1', + jobTitle: 'Associate Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'InRhythm', + name: 'Altai Chiang', + email: 'altai.chiang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/altaic/', + campus: 'NYC', + cohort: '8', + jobTitle: 'Senior Software Engineer', + industry: 'Consulting', + cities: [], + }, + { + company: 'InRhythm', + name: 'Eric Marcatoma', + email: 'ericmarc159@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ericmarc159/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Software Engineer', + industry: 'Information Technology & Services', + cities: [], + }, + { + company: 'InRhythm', + name: 'Benjamin Johnson', + email: 'johnsben002@gmail.com', + linkedIn: 'https://www.linkedin.com/in/johnsben002/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Software Engineer: Web Accessibility', + industry: 'Consulting', + cities: [], + }, + { + company: 'InRhythm', + name: 'Johnson Che', + email: 'Johnson.Che01@gmail.com', + linkedIn: 'https://www.linkedin.com/in/johnsonche/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Consulting', + cities: [], + }, + { + company: 'InRhythm', + name: 'Wai Fai Lau', + email: 'wlau8088@gmail.com', + linkedIn: 'https://www.linkedin.com/in/wai-fai-lau/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Software Engineer', + industry: 'Software Consulting', + cities: [], + }, + { + company: 'Insider, Inc.', + name: 'Michael Lauri', + email: 'michael.lauri@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mlauri/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer II', + industry: 'Online Media', + cities: [], + }, + { + company: 'Insider, Inc.', + name: 'Mitchel Severe', + email: 'mitchelsevere@gmail.com', + linkedIn: 'https://www.linkedin.com/in/misevere/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Software Engineer III', + industry: 'Digital Media', + cities: [], + }, + { + company: 'Insight Global', + name: 'Lucas Mobley', + email: 'Lucas.W.Mobley@Gmail.com', + linkedIn: 'https://www.linkedin.com/in/lucasmobley/', + campus: 'LA', + cohort: '41', + jobTitle: 'Front End Developer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Insight Global (contract for Nike)', + name: 'Dave Franz', + email: 'davefranz@me.com', + linkedIn: 'https://www.linkedin.com/in/dave-franz/', + campus: 'LA', + cohort: '33', + jobTitle: 'Senior Full-Stack Automation Developer', + industry: 'athletic footwear and apparel', + cities: [], + }, + { + company: 'Insight Global Consulting', + name: 'Andrew Kessinger', + email: 'andrew.kessinger@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '27', + jobTitle: 'React developer', + industry: 'Consulting', + cities: [], + }, + { + company: 'Instride', + name: 'Jayvee Aspa', + email: 'jayvee.aspa@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jayveeaspa/', + campus: 'LA', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Education', + cities: [], + }, + { + company: 'Integral', + name: 'Anna Larouche', + email: 'alarouche@gmail.com', + linkedIn: 'https://www.linkedin.com/in/anna-larouche/', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Full-stack Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Intelepeer', + name: 'Colton Robbins', + email: 'coltondr@gmail.com', + linkedIn: 'https://www.linkedin.com/in/c-robbins/', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Developer', + industry: 'Other', + cities: [], + }, + { + company: 'Intellective', + name: 'Dennis Lopez', + email: 'dnnis.lpz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dennis-lopezsb/', + campus: 'LA', + cohort: '40', + jobTitle: 'Full-Stack Developer', + industry: 'Internet', + cities: [], + }, + { + company: 'Intent Media', + name: 'Denali DeMots', + email: 'denali.demots@gmail.com', + linkedIn: 'https://www.linkedin.com/in/denali-demots/', + campus: 'NYC', + cohort: '3', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Interactive Brokers', + name: 'Luke McInerney', + email: 'mciluke@gmail.com', + linkedIn: 'https://www.linkedin.com/in/luke-mcinerney/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Intercom', + name: 'Michael Colley', + email: 'michael.e.colley@googlemail.com', + linkedIn: 'https://www.linkedin.com/in/michaelecolley/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Product Engineer', + industry: 'SaaS, business creation services', + cities: [], + }, + { + company: 'International association of the better business bureau', + name: 'Giovanni Rodriguez', + email: 'Gjrod16@gmail.com', + linkedIn: + 'https://www.linkedin.com/in/giovanni-rodriguez2?trk=public_profile_browsemap&challengeId=AQFtoT_NoFD3KAAAAYkntGZKTiNfC60o4v2Z4zYAnz_4_KDTQUBD7ql40SFHKBenfzE9c6FBwiMar6V09FHeEqmjVS1EAfJ7Ag&submissionId=3cc6cd5a-1812-6f17-7ceb-2e5c0f6f3658&challengeSource=AgFf2bVUVWWRnwAAAYkntJ9Q3ysytHHh91YXaw8gQiFJEKewOYeYX6rLjYNFhlQ&challegeType=AgGCPMxM5AqqqwAAAYkntJ9TeXuuC8zmVgvrjuLxi773fqd8_2_50rU&memberId=AgFbJ9qnK0duCgAAAYkntJ9WYBoUAlgShMkO190TrWZI9XA&recognizeDevice=AgGnKEfL32RWyAAAAYkntJ9aHRqgkhTAzFQoMuIEWQbDY5Tac0sU', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Full Stack Developer', + industry: 'Other', + cities: [], + }, + { + company: 'International Business Machines', + name: 'Michael Evans', + email: 'amike.evans@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael-evans-8278b865/', + campus: 'NYC', + cohort: '14', + jobTitle: 'Lead Full Stack Developer', + industry: 'Computer Software', + cities: [], + }, + { + company: 'Intrinsic Enterprises', + name: 'Jasmine A Gonzalez', + email: 'jasminezalez@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jasminezalez/', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Intuit', + name: 'Daria Bondarenko', + email: 'dan4ik18@gmail.com', + linkedIn: 'https://www.linkedin.com/in/daria-b/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer', + industry: 'Enterprise Software', + cities: [], + }, + { + company: 'Intuit', + name: 'Davide Molino', + email: 'davidemmolino@gmail.com', + linkedIn: 'https://www.linkedin.com/in/davide-molino/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer III', + industry: 'Technology', + cities: [], + }, + { + company: 'Intuit', + name: 'Manjeet Kaur', + email: 'manjeet175@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kaurmanjeet/', + campus: 'NYC', + cohort: '5', + jobTitle: 'Senior Frontend Engineer', + industry: '', + cities: [], + }, + { + company: 'Intuit', + name: 'Matthew Marchand', + email: 'matthew.marchand.93@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mnmarchand/', + campus: 'LA', + cohort: '40', + jobTitle: 'Software Engineer II', + industry: 'Fintech', + cities: [], + }, + { + company: 'intuit', + name: 'Yevgeniy Skroznikov', + email: 'yevskro@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yevgeniyskroznikov/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Software Engineer II', + industry: 'Enterprise software', + cities: [], + }, + { + company: 'InvestCloud', + name: 'Curtis Lovrak', + email: 'curtislovrak@gmail.com', + linkedIn: 'https://www.linkedin.com/in/curtislovrak/', + campus: 'NYOI', + cohort: '4', + jobTitle: 'UI Developer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Invisory', + name: 'Thomas Kady', + email: 'thomas.kady@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thomas-kady/', + campus: 'FTRI / CTRI', + cohort: '14', + jobTitle: 'Software Developer', + industry: 'Cloud Services', + cities: [], + }, + { + company: 'IP.com', + name: 'Matthew Miller', + email: 'matthewjohnmiller2020@gmail.com', + linkedIn: 'https://www.linkedin.com/in/matthew-miller2020/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Iridium Satellite LLC', + name: 'Lyam Hunt', + email: 'lyamnhunt@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lyamhunt/', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Software Developer II', + industry: 'Telecommunications', + cities: [], + }, + { + company: 'IronNet Cybersecurity', + name: 'Daniel Stein', + email: 'danlikesbikes@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dangineer/', + campus: 'LA', + cohort: '33', + jobTitle: 'Senior UI/UX Developer', + industry: 'Computer and Network Security', + cities: [], + }, + { + company: 'ISAT Total Support', + name: 'Anthony Le', + email: 'anthonyle910@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/anthonyle910/', + campus: 'LA / WCRI', + cohort: '58', + jobTitle: 'Full Stack Developer', + industry: 'Other', + cities: [], + }, + { + company: 'Isobar', + name: 'Anthony Torrero', + email: 'Anthonyduarteee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/anthony-duarte-4b8798159/', + campus: 'LA', + cohort: '41', + jobTitle: 'Frontend Developer', + industry: 'Creative Agency', + cities: [], + }, + { + company: 'Isobar', + name: 'James Gary', + email: 'jim@jamesgary.com', + linkedIn: 'https://www.linkedin.com/in/james-gary/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Senior Front End Developer', + industry: 'Media', + cities: [], + }, + { + company: 'iStrategyLabs', + name: 'Brittany Miltenberger', + email: 'brittany.miltenberger@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brittanywm/', + campus: 'LA', + cohort: '23', + jobTitle: 'Senior Web Developer', + industry: '', + cities: [], + }, + { + company: 'Itential', + name: 'Chao Zhong Yu', + email: 'ChaoY91@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/czyu/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Ivy Energy', + name: 'Gavin Crews', + email: 'Gcrews1894@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gavincrews/', + campus: 'LA', + cohort: '39', + jobTitle: 'Frontend Engineer', + industry: 'Solar', + cities: [], + }, + { + company: 'Ivy Energy', + name: 'Nicolas Pita', + email: 'pitanicolase@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nicolaspita/', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Developer', + industry: 'Clean Energy', + cities: [], + }, + { + company: 'Jam City', + name: 'Tony Ito-Cole', + email: 'tonyitocole@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tony-ito-cole/', + campus: 'LA', + cohort: '34', + jobTitle: 'Platform Engineer', + industry: 'Mobile Gaming', + cities: [], + }, + { + company: 'Janus Health', + name: 'Benjamin Michareune', + email: 'ben.michareune@Gmail.com', + linkedIn: 'https://www.linkedin.com/in/benmichareune', + campus: 'FTRI / CTRI', + cohort: '7', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Janus Healthcare', + name: 'Simon Lee', + email: 'simonlee1125@gmail.com', + linkedIn: 'https://www.linkedin.com/in/simonhlee/', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Software Engineer II', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Jasper (AI)', + name: 'Marcellies Pettiford', + email: 'marcellies@pettifords.xyz', + linkedIn: 'https://www.linkedin.com/in/marcellies-pettiford/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Software Engineer II', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Jogg', + name: 'Alex Kolb', + email: 'akolb981@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexanderjkolb/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'JP Morgan', + name: 'jonathan k coe', + email: 'jon.coe@codesmith.io', + linkedIn: 'https://www.linkedin.com/in/jonathan-k-coe/', + campus: 'NYC', + cohort: '4', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'JP Morgan', + name: 'Jimmy Tran', + email: 'jvtran48@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jimmytran48/', + campus: 'NYC / ECRI', + cohort: '40', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'JP Morgan / Chase', + name: 'Wayne Wilcox', + email: 'wilcox_wayne@hotmail.com', + linkedIn: 'https://www.linkedin.com/in/wayne-wilcox/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Junior Developer Associate', + industry: 'Fintech', + cities: [], + }, + { + company: 'JP Morgan Chase', + name: 'David Behmoaras', + email: 'dbehmoaras@gmail.com', + linkedIn: 'https://www.linkedin.com/in/david-behmoaras/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'JP Morgan Chase', + name: 'Howard Na', + email: 'howardna317@gmail.com', + linkedIn: 'https://www.linkedin.com/in/howard-na-jr/', + campus: 'LA', + cohort: '26', + jobTitle: 'Software Engineer', + industry: 'Media', + cities: [], + }, + { + company: 'JP Morgan Chase', + name: 'Stewart Elmore', + email: 'stewart.elmore@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stewart-elmore/', + campus: 'NYC / ECRI', + cohort: '31', + jobTitle: 'Associate Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'JP Morgan Chase & Co', + name: 'Parker Steinberg', + email: 'parker.s52@gmail.com', + linkedIn: 'https://www.linkedin.com/in/parker-steinberg/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'JP Morgan Chase & Co.', + name: 'Jimmy Chen', + email: 'jimmychen12249@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jimchn/', + campus: 'NYC', + cohort: '17', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'JP Morgan Chase & Co.', + name: 'Mike Oโ€™Donnell', + email: 'michaelodonnell18@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michaelodonnell18', + campus: 'NYC', + cohort: '28', + jobTitle: 'Full Stack Developer', + industry: 'Banking', + cities: [], + }, + { + company: 'JPMChase', + name: 'Adam Wilson', + email: 'aswilson87@gmail.com', + linkedIn: 'https://www.linkedin.com/in/aswilson87/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Associate Engineer', + industry: 'Finance', + cities: [], + }, + { + company: 'JPMorgan', + name: 'Winford Lin', + email: 'linwinford@gmail.com', + linkedIn: 'https://www.linkedin.com/in/winfordlin/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer II', + industry: 'Fintech', + cities: [], + }, + { + company: 'JPMorgan Chase', + name: 'Adam White', + email: 'adamkarnwhite@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adam-karn-white', + campus: 'NYC / ECRI', + cohort: '31', + jobTitle: 'Senior Associate Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'JPMorgan Chase', + name: 'Adrian Uesugui', + email: 'auesugui@gmail.com', + linkedIn: 'https://www.linkedin.com/in/auesugui/', + campus: 'LA', + cohort: '46', + jobTitle: 'Associate Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'JPMorgan Chase', + name: 'John Donovan ', + email: 'jodonovan845@gmail.com', + linkedIn: 'https://www.linkedin.com/in/john-d-donovan', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Software Engineer - Associate II', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'JPMorgan Chase & Co', + name: 'Jo Huang', + email: 'johuangx@gmail.com', + linkedIn: 'https://www.linkedin.com/in/johuangx/', + campus: 'NYOI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'JPMorgan Chase & Co.', + name: 'Stanley Huang', + email: 'iamstanleyhuang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stanleyhuang16/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'JPMorgan Chase & Co.', + name: 'Terence Petersen', + email: 'robo.terence@gmail.com', + linkedIn: 'https://www.linkedin.com/in/terence-petersen/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Associate Software Engineer', + industry: 'Merchant Services', + cities: [], + }, + { + company: 'Juniper Behavioral Health', + name: 'Kelvin Cuesta', + email: 'kelvinscuesta@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kelvinscuesta/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Justworks', + name: 'Shelby Neuman', + email: 'shelbydneuman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shelbyneuman/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'JustWorks Labs', + name: 'Sophia Huttner', + email: 'sophjean@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sophia-huttner/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Frontend Software Engineer', + industry: 'HR Suite', + cities: [], + }, + { + company: 'Karr Barth Administrators', + name: 'Loralyn Milcarek', + email: 'loralyn.milcarek@gmail.com', + linkedIn: 'https://www.linkedin.com/in/loralyn-milcarek/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Developer', + industry: 'Other', + cities: [], + }, + { + company: 'Keller Williams Realty, Inc', + name: 'Brent Speight', + email: 'brentjosephspeight@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brent-speight/', + campus: 'LA', + cohort: '44', + jobTitle: 'Software Engineer', + industry: 'Realty', + cities: [], + }, + { + company: 'Kelley Blue Book (Cox Automotive)', + name: 'Ryan Bender', + email: 'rdbender@me.com', + linkedIn: 'https://www.linkedin.com/in/rdbender', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer I', + industry: 'Automotive', + cities: [], + }, + { + company: 'Kevel', + name: 'Adam Joesten', + email: 'adamjoesten@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adamjoesten/', + campus: 'LA', + cohort: '40', + jobTitle: 'Senior Software Engineer (SDE II)', + industry: 'Adtech', + cities: [], + }, + { + company: 'Key Bank (Laurel Road)', + name: 'Eric Pham', + email: 'ericpham36@gmail.com', + linkedIn: 'https://www.linkedin.com/in/epstylesoflife/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Senior Full Stack Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Kibanx', + name: 'Celeste Knopf', + email: 'celesteknopf@gmail.com', + linkedIn: 'https://www.linkedin.com/in/celesteknopf/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Front End Engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Kin + Carta', + name: 'Eric Olaya', + email: 'ericolaya@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eric-olaya/', + campus: 'FTRI', + cohort: '3', + jobTitle: 'Software Engineer', + industry: 'Tech Consulting', + cities: [], + }, + { + company: 'Kindo', + name: 'Hannah Bernstein', + email: 'hbern00@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bernstein-hannah/', + campus: 'LA / WCRI', + cohort: '53', + jobTitle: 'Software Engineer', + industry: 'Artificial Intelligence', + cities: [], + }, + { + company: 'Kitman Labs', + name: 'Gregory Levine-Rozenvayn', + email: 'Grisha617@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gregory-levine-rozenvayn', + campus: 'NYC', + cohort: '24', + jobTitle: 'Senior Software Engineer, Frontend', + industry: 'Sports data science', + cities: [], + }, + { + company: 'Klarna', + name: 'Natalie Vick', + email: 'vicknatalie@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vicknatalie/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Senior Frontend Engineer', + industry: 'Ecommerce', + cities: [], + }, + { + company: 'Klaviyo', + name: 'Amy Chen', + email: 'aechen46@gmail.com', + linkedIn: 'https://www.linkedin.com/in/amyechen/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Marketing Technology', + cities: [], + }, + { + company: 'Klaviyo', + name: 'Elinor Weissberg', + email: 'elinorthw@gmail.com', + linkedIn: 'https://www.linkedin.com/in/elinorweissberg/', + campus: 'NYOI', + cohort: '5', + jobTitle: 'Software Engineer II', + industry: 'Marketing/Advertising', + cities: [], + }, + { + company: 'Knotel', + name: 'Rocky Liao', + email: 'rliao3613@gmail.com', + linkedIn: 'https://linkedin.com/in/seemsrocky', + campus: 'NYC', + cohort: '12', + jobTitle: 'Software engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Knowable', + name: 'Alex Sanhueza', + email: 'alexrsanhueza@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alex-sanhueza/', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Development Engineer II (Front end)', + industry: 'Legal Services', + cities: [], + }, + { + company: 'Komodo Health', + name: 'Ju Kim', + email: 'juhyuns98@gmail.com', + linkedIn: '', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Engineer, Applications', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Konami Gaming', + name: 'Aidan Noble-Goodman', + email: 'anoblegoodman@gmail.com', + linkedIn: 'www.linkedin.com/anoblegoodman', + campus: 'LA', + cohort: '28', + jobTitle: 'Software Engineer II', + industry: 'Gaming/casino management software', + cities: [], + }, + { + company: 'Kroger', + name: 'John Wong', + email: 'johnwong4150@gmail.com', + linkedIn: 'https://www.linkedin.com/in/john-wong-fongching/', + campus: 'LA / WCRI', + cohort: '43', + jobTitle: 'Web Platform Engineer', + industry: 'Retail', + cities: [], + }, + { + company: 'Kroger', + name: 'Jason Seidler', + email: 'jsonseidler@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jason-seidler/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Senior Front End Developer', + industry: 'Retail', + cities: [], + }, + { + company: 'Kroger', + name: 'Kevin MacCoy', + email: 'kmaccoy@fau.edu', + linkedIn: 'https://www.linkedin.com/in/kevin-maccoy/', + campus: 'FTRI', + cohort: '1', + jobTitle: 'Backend Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Kroger', + name: 'Elise McConnell', + email: 'elisemcconnell11@gmail.com', + linkedIn: 'www.linkedin.com/in/elisemcconnell', + campus: 'FTRI / CTRI', + cohort: '12', + jobTitle: 'Software Engineer', + industry: 'Retail', + cities: [], + }, + { + company: 'Kryptowire', + name: 'Michael Ross', + email: 'michaelalross@gmail.com', + linkedIn: 'https://linkedin.com/in/michaelalross', + campus: 'LA', + cohort: '45', + jobTitle: 'Software Engineer II', + industry: 'DevSecOps', + cities: [], + }, + { + company: 'KyckGlobal', + name: 'Joseph Lee', + email: 'josephemlee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/josephjslee/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Kyte Dynamics, Inc.', + name: 'Lawrence Yeh', + email: 'lawyeh391@gmail.com', + linkedIn: 'linkedin.com/in/lawyeh', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'LA County', + name: 'Vu Duong', + email: 'vthanhd@gmail.com', + linkedIn: 'www.linkedin.com/in/vu-duong', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Application Developer II', + industry: 'Government', + cities: [], + }, + { + company: 'LaaSie.ai', + name: 'Tyler Sayles', + email: 'saylestyler@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tylersayles/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Full stack Engineer', + industry: 'Marketing', + cities: [], + }, + { + company: 'Lab49', + name: 'Eric Tacher', + email: 'erictacher@gmail.com', + linkedIn: 'https://www.linkedin.com/in/erictacher/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Web UI Engineer', + industry: 'Fintech Consulting', + cities: [], + }, + { + company: 'Lasso Marketing', + name: 'Andy Tsou', + email: 'tsou.andy@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andy-tsou/', + campus: 'LA', + cohort: '45', + jobTitle: 'Integration Engineer', + industry: 'Health Care Marketing', + cities: [], + }, + { + company: 'LastPass', + name: 'E Kathuria', + email: 'e@kathuria.dev', + linkedIn: 'https://www.linkedin.com/in/ekathuria', + campus: 'NYC', + cohort: '32', + jobTitle: 'Front End Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Lattitude', + name: 'Carolyn Zheng', + email: 'ruxinzheng01@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ruxinzhengswe/', + campus: 'LA / WCRI', + cohort: '57', + jobTitle: 'Software Engineer', + industry: 'Marketing/Advertising', + cities: [], + }, + { + company: 'Launch Darkly', + name: 'Samuel Kim', + email: 'samuyyy@gmail.com', + linkedIn: 'https://www.linkedin.com/in/samuy/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Software Engineer (Backend)', + industry: 'Developer Tools', + cities: [], + }, + { + company: 'Lawmatics', + name: 'Omar Rana', + email: 'omar_rana93@hotmail.com', + linkedIn: 'https://www.linkedin.com/in/orana1/', + campus: 'LA', + cohort: '45', + jobTitle: 'Full Stack Engineer', + industry: 'CRM for law firms', + cities: [], + }, + { + company: 'Leadpages', + name: 'Evan McNeely', + email: 'evanmcneely@me.com', + linkedIn: 'https://www.linkedin.com/in/evanmcneely/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Software Engineer II', + industry: 'Marketing', + cities: [], + }, + { + company: 'Leaf Group (Society6)', + name: 'Oliver Roldan', + email: 'oproldan01@gmail.com', + linkedIn: '', + campus: 'LA / WCRI', + cohort: '40', + jobTitle: 'Frontend Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'LeaseLock', + name: 'Kara Chisholm', + email: 'kkchisholm@gmail.com', + linkedIn: 'https://www.linkedin.com/in/karachisholm/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'LedgerX', + name: 'Abaas Khorrami', + email: 'abaas.khorrami@gmail.com', + linkedIn: 'https://www.linkedin.com/in/abaas-khorrami/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Senior Frontend Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'LegacyScape', + name: 'Cassidy Johnson', + email: 'cassidyrose56@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cassidy-r-johnson/', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'LegalZoom', + name: 'Henry Park', + email: 'codedenma@gmail.com', + linkedIn: 'https://www.linkedin.com/in/henrytpark/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Software Engineer II, Product Experiences', + industry: 'Other', + cities: [], + }, + { + company: 'Lendbuzz Inc.', + name: 'Quoc Do', + email: 'dlaquoc1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dlaquoc/', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Full Stack Engineer Co-op (Internship)', + industry: 'Automotive', + cities: [], + }, + { + company: 'Lessen Inc', + name: 'Davette Bryan', + email: 'davettejones11@gmail.com', + linkedIn: 'https://www.linkedin.com/in/davette-bryan/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Jr. Software Engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Lever', + name: 'Aiden Blinn', + email: 'apblinn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/aidenblinn/', + campus: 'FTRI', + cohort: '7', + jobTitle: 'Integrations Engineer', + industry: 'IT Services', + cities: [], + }, + { + company: 'Lever', + name: 'Jae Lee', + email: 'jaelee213@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jaelee213/', + campus: 'LA', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Recruiting', + cities: [], + }, + { + company: 'Lever', + name: 'Sophia Sam', + email: 'sophia.sam96@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sophia-sam', + campus: 'FTRI', + cohort: '7', + jobTitle: 'Software Engineer II', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Lexis Nexis', + name: 'Danny Martinez', + email: 'codesmith@jdanielmartinez.com', + linkedIn: 'https://www.linkedin.com/in/jdanielmartinez/', + campus: 'LA', + cohort: '42', + jobTitle: 'GraphQL Full Stack Developer', + industry: 'Paralegal', + cities: [], + }, + { + company: 'LexisNexis', + name: 'Graham Albachten', + email: 'albachteng@gmail.com', + linkedIn: 'https://www.linkedin.com/in/graham-albachten-00162a52/', + campus: 'FTRI', + cohort: '1', + jobTitle: 'GraphQL Full Stack Developer', + industry: 'Legal', + cities: [], + }, + { + company: 'Lexmark', + name: 'Luke Roberts', + email: 'luke.roberts089@gmail.com', + linkedIn: 'https://www.linkedin.com/in/luke-roberts0/', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Liberty Maritime', + name: 'Garrett Layden', + email: 'garlayden@gmail.com', + linkedIn: 'https://linkedin.com/in/garrett-layden', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Full Stack Developer', + industry: 'Other', + cities: [], + }, + { + company: 'Liberty Mutual', + name: 'Bryan Kim', + email: 'bkim0826@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bkimmm/', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: [], + }, + { + company: 'Liberty Mutual', + name: 'Cristian De Los Rios', + email: 'Cris2595@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cristian-dlr/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: [], + }, + { + company: 'Liberty Mutual', + name: 'Patrick Sullivan', + email: 'patrick@jsullivan.org', + linkedIn: 'https://www.linkedin.com/in/patrick-j-m-sullivan/', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: [], + }, + { + company: 'Liberty Mutual', + name: 'Robert Tipton', + email: 'robbytiptontol@gmail.com', + linkedIn: 'https://www.linkedin.com/in/robert-tipton/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: [], + }, + { + company: 'Liberty Mutual', + name: 'Tyler Jameson Martinez', + email: 'tm6002005@gmail.com', + linkedIn: 'https://www.linkedin.com/mwlite/in/tylerjamesonmartinez', + campus: 'LA', + cohort: '43', + jobTitle: 'Software engineer', + industry: 'Insurance', + cities: [], + }, + { + company: 'LifeOmic', + name: 'Chloe Courtois', + email: 'crc.courtois@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chloe-courtois-3337a210b/', + campus: 'FTRI', + cohort: '7', + jobTitle: 'Associate Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Limble CMMS', + name: 'Josh Merrell', + email: 'joshmerrell.us@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joshmerrell/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Software Developer III', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Linguabee', + name: 'Connor Gillis', + email: 'connoregillis@gmail.com', + linkedIn: 'https://www.linkedin.com/in/connor-gillis/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Front End Software Engineer', + industry: 'Interpreting', + cities: [], + }, + { + company: 'LinkedIn', + name: 'Ethan Yeh', + email: 'Ethanhwyeh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ethanhwyeh/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Full Stack Software Engineer', + industry: 'Professional Networking', + cities: [], + }, + { + company: 'LinkedIn', + name: 'Douglas Yao', + email: 'doug.yao@gmail.com', + linkedIn: 'https://www.linkedin.com/in/douglas-yao/', + campus: 'FTRI / CTRI', + cohort: '16', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Linus Health', + name: 'Tommy Song', + email: 'Tommysong123@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Health tech', + cities: [], + }, + { + company: 'LiquidPixels', + name: 'Christian Looff', + email: 'ctnguy10@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christian-looff/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Literably', + name: 'Tiffany Wong', + email: 'Wongt1227@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tiffanywong149', + campus: 'NYC / ECRI', + cohort: '42', + jobTitle: 'Junior Software Engineer', + industry: 'Education/Edtech', + cities: [], + }, + { + company: 'Little Cinema', + name: 'Kenny Ma', + email: 'Kennyjjma@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '15', + jobTitle: 'Front End Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Littlebits', + name: 'Jinsung Park', + email: 'js.lia.park@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jsliapark/', + campus: 'NYC', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Beauty/Cosmetic', + cities: [], + }, + { + company: 'Live Nation', + name: 'Colin Gibson', + email: 'colingibs@gmail.com', + linkedIn: 'https://www.linkedin.com/in/colin--gibson/', + campus: 'LA', + cohort: '44', + jobTitle: 'Software Development Engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Lively Video', + name: 'Mark Miller', + email: 'markmmiller825@gmail.com', + linkedIn: 'https://www.linkedin.com/in/markmanuelmiller/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Senior Software Engineer', + industry: 'Entertainment/education', + cities: [], + }, + { + company: 'LivePerson', + name: 'Geoffrey Lin', + email: 'geoffrey.s.lin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/geoff-lin/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'Computer Software', + cities: [], + }, + { + company: 'LivePerson', + name: 'Taihyun (Ray) Lee', + email: 'taihyun.ray.lee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/taihyun-ray-lee/', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software Development Engineer', + industry: 'Software (SAAS)', + cities: [], + }, + { + company: 'LivePerson', + name: 'Taihyun Lee', + email: 'th9061@gmail.com', + linkedIn: 'https://www.linkedin.com/in/taihyun-ray-lee', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software Development Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'LogicMonitor', + name: 'Jessica Vaughan', + email: 'jessicavaughan820@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jessicavaughan820/', + campus: 'LA', + cohort: '30', + jobTitle: 'frontend developer', + industry: 'SaaS', + cities: [], + }, + { + company: 'Lokavant', + name: 'Eric Peng', + email: 'tzerpeng@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eric-peng-jojo/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: 'Information Technology & Services', + cities: [], + }, + { + company: 'Lonesdale Invest', + name: 'Coral Fussman', + email: 'coralfussman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/coral-fussman-21721538/', + campus: 'FTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Longtail Studios', + name: 'Daniel Steinbrook', + email: 'steinbrookdaniel@gmail.com', + linkedIn: 'https://www.linkedin.com/in/daniel-steinbrook/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Developer - AI Models Integration', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Loop', + name: 'Olivia Hodel', + email: 'ohodel16@gmail.com', + linkedIn: 'https://www.linkedin.com/in/olivia-hodel/', + campus: 'NYC / ECRI', + cohort: '39', + jobTitle: 'Associate Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Lord, Abbett & Co. LLC', + name: 'Vince Chin', + email: 'vincech@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vincech/', + campus: 'PTRI', + cohort: '5', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Los Alamos National Laboratory', + name: 'James Howat', + email: 'james@howat.dev', + linkedIn: 'LinkedIn.com/in/jamesbhowat', + campus: 'FTRI / CTRI', + cohort: '12', + jobTitle: 'Software Developer 2', + industry: 'Security', + cities: [], + }, + { + company: 'Lotic AI', + name: 'Adam Blackwell', + email: 'blackwell.ada@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adam-blackwell-85918595/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Software Engineer', + industry: 'Mental Health', + cities: [], + }, + { + company: 'Low Associates', + name: 'William Robson', + email: 'will.robson19@gmail.com', + linkedIn: 'https://www.linkedin.com/in/william-k-robson/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Full Stack Developer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Lowes', + name: 'Joshuah Edwards', + email: 'joshuah.edwards@proton.me', + linkedIn: 'linkedin.com/in/joshuah-edwards/', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'Retail', + cities: [], + }, + { + company: 'Lumi AI', + name: 'Ryan Hastings', + email: 'rhaasti@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rhaasti/', + campus: 'NYOI', + cohort: '4', + jobTitle: 'Front-End Engineer (six month contract-to-hire)', + industry: 'Artificial Intelligence/Machine Learning', + cities: [], + }, + { + company: 'Lumifi', + name: 'Ryan Gause', + email: 'Ryan.g.gause.3@gmail.com', + linkedIn: 'LinkedIn.com/in/ryangause', + campus: 'PTRI', + cohort: '9', + jobTitle: 'Software Developer II', + industry: 'Security', + cities: [], + }, + { + company: 'Lunchbox', + name: 'Judy Tan', + email: 'judytan86@gmail.com', + linkedIn: 'https://www.linkedin.com/in/judy-tan93/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Frontend Engineer', + industry: 'Food Industry', + cities: [], + }, + { + company: 'LVRG', + name: 'Gary Slootskiy', + email: 'garyslootskiy@gmail.com', + linkedIn: 'https://linkedin.com/in/garyslootskiy', + campus: 'NYC', + cohort: '21', + jobTitle: 'Senior Software Engineer', + industry: 'Supply Chain Management', + cities: [], + }, + { + company: 'Lytx', + name: 'Miller Johnston', + email: 'miller.johnston17@gmail.com', + linkedIn: 'linkedin.com/in/miller-johnston', + campus: 'FTRI / CTRI', + cohort: '6', + jobTitle: 'Software Engineer II', + industry: 'Automotive', + cities: [], + }, + { + company: 'M Science', + name: 'Celena Chan', + email: 'celenachan@gmail.com', + linkedIn: 'https://www.linkedin.com/in/celenachan', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Madison Logic', + name: 'Richie Edwards', + email: 'richie00edwards@gmail.com', + linkedIn: 'https://www.linkedin.com/in/richieedwards/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Full Stack Engineer', + industry: 'Marketing', + cities: [], + }, + { + company: 'Maestro', + name: 'Jacob Banks', + email: 'jacobjeffreybanks@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jacobjbanks/', + campus: 'LA', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Media/Entertainment', + cities: [], + }, + { + company: 'Magic Leap', + name: 'Randy Reyes', + email: 'rqreyes@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rqreyes/', + campus: 'LA', + cohort: '31', + jobTitle: 'Front-End Software Engineer', + industry: 'Augmented Reality', + cities: [], + }, + { + company: 'MagMutual', + name: 'Mark Yencheske', + email: 'markyencheske@gmail.com', + linkedIn: 'https://www.linkedin.com/in/markyencheske/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: [], + }, + { + company: 'Magnite', + name: 'John Madrigal', + email: 'johnmadrigal17@gmail.com', + linkedIn: 'https://www.linkedin.com/in/john-r-madrigal/', + campus: 'LA', + cohort: '37', + jobTitle: 'Front End Software Development Engineer', + industry: 'Adtech', + cities: [], + }, + { + company: 'Mailchimp/Intuit', + name: 'Albert Han', + email: 'albert.h1231@gmail.com', + linkedIn: 'https://www.linkedin.com/in/albert-han1', + campus: 'LA', + cohort: '47', + jobTitle: 'SWE II', + industry: 'Marketing/financial management', + cities: [], + }, + { + company: 'Mailchimp/Intuit', + name: 'Gerry Bong', + email: 'ggbong734@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gerry-bong/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Maisonette', + name: 'Heidi Kim', + email: 'heidiyoora@gmail.com', + linkedIn: 'https://www.linkedin.com/in/heidiykim/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: 'E-commerce', + cities: [], + }, + { + company: 'Major League Baseball', + name: 'Steven Rosas', + email: 'srosas20@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rosassteven/', + campus: 'NYC', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Sports', + cities: [], + }, + { + company: 'MakerBot', + name: 'Anthony R Toreson', + email: 'anthony.toreson@gmail.com', + linkedIn: 'https://www.linkedin.com/in/atoreson/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Senior Software Engineer', + industry: 'Hardware manufacturer (3d printers)', + cities: [], + }, + { + company: 'ManageGo', + name: 'Bo Peng', + email: 'bopeng95@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bopeng95/', + campus: 'NYC', + cohort: '10', + jobTitle: 'Software Developer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Manatee', + name: 'Raivyno Sutrisno', + email: 'yessysutter@gmail.com', + linkedIn: 'https://www.linkedin.com/in/raivyno-sutrisno/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Mantium', + name: 'Steve Hong', + email: 'swe.stevehong@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stevehong-swe/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Artificial Intelligence', + cities: [], + }, + { + company: 'MANTL', + name: 'Lourent Flores', + email: 'lourent.flores@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lourent-flores/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Full stack Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'MANTL', + name: 'TJ Wetmore', + email: 'Thomas.j.wetmore@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tjwetmore/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Mantra Health', + name: 'Konrad Kopko', + email: 'konradkopko1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/konradkopko/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'HealthTech', + cities: [], + }, + { + company: 'Maple.Finance', + name: 'Thomas Harper', + email: 'tommyrharper@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thomas-robert-harper/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Senior Software Engineer', + industry: 'Blockchain/Web3', + cities: [], + }, + { + company: 'Mariana Tek', + name: 'Owen Eldridge', + email: 'oweneldridge7@gmail.com', + linkedIn: 'https://www.LinkedIn.com/in/owen-eldridge', + campus: 'NYC', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Fitness Center Saas', + cities: [], + }, + { + company: 'MarineSitu', + name: 'Emily Paine', + email: 'erpaine@gmail.com', + linkedIn: 'https://www.linkedin.com/in/emily-paine1/', + campus: 'FTRI / CTRI', + cohort: '12', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Mark43', + name: 'Kadir Gundogdu', + email: 'kadirgund@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kadirgund/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer', + industry: 'Law Enforcement', + cities: [], + }, + { + company: 'Mark43', + name: 'Sophie Nye', + email: 'sophie.nye@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '12', + jobTitle: 'Software engineer', + industry: 'Itโ€™s software for first responders, not sure what industry that is', + cities: [], + }, + { + company: 'Marsh Mclennan', + name: 'Mina Koo', + email: 'minalunakoo@gmail.com', + linkedIn: 'linkedin.com/in/minakoo', + campus: 'NYC / ECRI', + cohort: '30', + jobTitle: 'Developer', + industry: 'Insurance', + cities: [], + }, + { + company: 'MAS Medical Staffing', + name: 'Jeffrey Schrock', + email: 'rhythmmagi@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jmschrock/', + campus: 'NYC', + cohort: '4', + jobTitle: 'React Software Engineer', + industry: 'FinTech', + cities: [], + }, + { + company: 'MassMutual', + name: 'Ausar English', + email: 'ausareenglish@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ausarenglish/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Fullstack Developer', + industry: 'Financial Services/Insurance', + cities: [], + }, + { + company: 'MassMutual', + name: 'Bryanna DeJesus', + email: 'bryanna.dejesus@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bryannadejesus/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Full Stack Developer', + industry: 'Insurance', + cities: [], + }, + { + company: 'MasterCard', + name: 'Abigail Gerig', + email: 'abigail.gerig@gmail.com', + linkedIn: 'https://www.linkedin.com/in/abigail-gerig/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Mastercard', + name: 'Edwin Lin', + email: 'Edwinlim@gmail.com', + linkedIn: 'https://www.linkedin.com/in/edwinlin/', + campus: 'NYC', + cohort: '14', + jobTitle: 'JavaScript Engineer', + industry: 'Payment card', + cities: [], + }, + { + company: 'Mavis', + name: 'Aalayah-Lynn Olaes', + email: 'olaesaalayah@gmail.com', + linkedIn: 'linkedin.com/in/aalayaholaes', + campus: 'NYC / ECRI', + cohort: '40', + jobTitle: 'Software Engineer', + industry: 'Automotive', + cities: [], + }, + { + company: 'Mavis Tire', + name: 'Peter Kennedy', + email: 'Ptkennedy9@gmail.com', + linkedIn: 'https://www.linkedin.com/peter-kennedy', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Full Stack Software Engineer ', + industry: 'Automotive', + cities: [], + }, + { + company: 'Mavis Tires', + name: 'Jessica Davila', + email: 'jdav92@gmail.com', + linkedIn: 'https://www.linkedin.com/feed/', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Senior Full Stack Engineer', + industry: 'Automotive', + cities: [], + }, + { + company: 'Maya Health', + name: 'Danny Byrne', + email: 'danny.byrne.dev@gmail.com', + linkedIn: 'https://www.linkedin.com/in/danny-byrne-la/', + campus: 'LA', + cohort: '30', + jobTitle: 'Front End Engineer', + industry: 'Psychedelic Health', + cities: [], + }, + { + company: 'Maze', + name: 'Henry Black', + email: 'blackhaj@gmail.com', + linkedIn: 'https://www.linkedin.com/in/henryblack1/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Full Stack Engineer', + industry: 'Design', + cities: [], + }, + { + company: 'McGraw Hill', + name: 'Kristin Green', + email: 'kngreen@umich.edu', + linkedIn: 'https://www.linkedin.com/in/kristin-green-101902a4/', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Mcgraw Hill', + name: 'Richard Guo', + email: 'richardguo11@gmail.com', + linkedIn: 'https://www.linkedin.com/in/richardyguo/', + campus: 'LA / WCRI', + cohort: '46', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'McGraw-Hill Education', + name: 'Victor Wang', + email: 'vwang4536@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vwang4536', + campus: 'LA', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Consulting and technology services', + cities: [], + }, + { + company: 'McKinsey & Company', + name: 'Em Podhorcer', + email: 'epithe@gmail.com', + linkedIn: 'https://www.linkedin.com/feed/', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Engineer I', + industry: 'Consulting', + cities: [], + }, + { + company: 'McKinsey & Company', + name: 'Matthew Yeon', + email: 'yeon34387@gmail.com', + linkedIn: 'https://www.linkedin.com/in/matthew-yeon/', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Software Engineer', + industry: 'Consulting', + cities: [], + }, + { + company: 'MDCalc', + name: 'Jonah Wilkof', + email: 'wilkof.jonah@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonahwilkof/', + campus: 'NYC', + cohort: '7', + jobTitle: 'Software Engineer', + industry: 'Fintech, Payment Processing', + cities: [], + }, + { + company: 'Medal.tv', + name: 'Joseph Heinz', + email: 'joeheinz99@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joseph-heinz1/', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Full Stack Engineer', + industry: 'Gaming', + cities: [], + }, + { + company: 'MediaMonks NYC', + name: 'Case Simmons', + email: 'casesimmons@pm.me', + linkedIn: 'https://www.linkedin.com/mwlite/in/case-simmons', + campus: 'LA', + cohort: '38', + jobTitle: 'Creative Technologist', + industry: 'Digital Production', + cities: [], + }, + { + company: 'Mediaocean', + name: 'Parker Keller', + email: 'parkerkeller@gmail.com', + linkedIn: 'https://www.linkedin.com/in/parkerkeller/', + campus: 'LA', + cohort: '28', + jobTitle: 'Senior Software Engineer', + industry: 'Advertising & Marketing', + cities: [], + }, + { + company: 'Medical Informatics Engineering', + name: 'Keifer Alan Beck', + email: 'keiferbeck@gmail.com', + linkedIn: 'https://www.linkedin.com/in/k-alan-beck', + campus: 'FTRI / CTRI', + cohort: '16', + jobTitle: 'Fullstack Developer', + industry: 'Healthtech/Healthcare', + cities: [], + }, + { + company: 'Medidata', + name: 'Wontae Han', + email: 'wontaeh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/wontaeh/', + campus: 'NYC', + cohort: '4', + jobTitle: 'Frontend Engineer', + industry: '', + cities: [], + }, + { + company: 'Medium', + name: 'Keiran Carpen', + email: 'keirancarpen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/keirancarpen/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Senior Full Stack Engineer, Trust & Safety', + industry: 'Online publishing platform', + cities: [], + }, + { + company: 'Medly Pharmacy', + name: 'Austin Ruby', + email: 'austinjruby@gmail.com', + linkedIn: 'https://www.linkedin.com/in/austinjruby/', + campus: 'NYC', + cohort: '14', + jobTitle: 'Software Engineer I', + industry: 'Healthcare', + cities: [], + }, + { + company: 'MedMen', + name: 'Brendan Morrell', + email: 'brendanmorrell@gmail.com', + linkedIn: 'https://linkedin.com/in/brendanmorrell', + campus: 'LA', + cohort: '22', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Meltwater', + name: 'Richard Lam', + email: 'rlam108994@gmail.com', + linkedIn: 'https://www.linkedin.com/in/richardlam108/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: 'Digital Media Intelligence', + cities: [], + }, + { + company: 'MeltWater', + name: 'Sebastian Damazo', + email: 'sebastiandamazo1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ernesto-sebastian-damazo', + campus: 'LA', + cohort: '42', + jobTitle: 'Backend software engineer level 2', + industry: 'Software as a Service', + cities: [], + }, + { + company: 'Memorial Sloan Kettering', + name: 'David Zhang', + email: 'davidzhang8828@gmail.com', + linkedIn: 'https://www.linkedin.com/in/davdjz/', + campus: 'NYC', + cohort: '17', + jobTitle: 'Advanced Software Developer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Memorial Sloan Kettering', + name: 'Phillip Yoo', + email: 'phillipyoo.218@gmail.com', + linkedIn: 'https://www.linkedin.com/in/phillipyoo218/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Bioinformatics Software Engineer I', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Memorial Sloan Kettering Cancer Center', + name: 'Raymond Kwan', + email: 'kwanvm@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rkwn/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Frontend Software Engineer', + industry: 'Health', + cities: [], + }, + { + company: 'Memorial Sloan Kettering Cancer Center', + name: 'Natsuki Wada', + email: 'wachka06@gmail.com', + linkedIn: 'https://www.linkedin.com/in/natsukiwada/', + campus: 'FTRI', + cohort: '3', + jobTitle: 'Software Engineer II', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Mento', + name: 'James Highsmith', + email: 'me@jameshighsmith.com', + linkedIn: 'https://www.linkedin.com/in/jameshighsmith/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Lead Fullstack Engineer', + industry: 'HR', + cities: [], + }, + { + company: 'Mentorcam', + name: 'Stephen Rivas', + email: 'Stephen.Anthony.rivas@gmail.com', + linkedIn: 'https://linkedin.com/in/stephenscript', + campus: 'NYOI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Mentra', + name: 'Mathew Hultquist', + email: 'mathew.j.hultquist@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mjhult/', + campus: 'PTRI', + cohort: '9', + jobTitle: 'Senior Full Stack Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Merck', + name: 'Jin Yoo', + email: 'iyoojin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/iyoojin/', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Meredith', + name: 'Kai Evans', + email: 'kaijosefevans@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonathan-jim-ramirez/', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer', + industry: 'Media Agency', + cities: [], + }, + { + company: 'Mess', + name: 'Anne-lise Emig', + email: 'anneliseemig@gmail.com', + linkedIn: 'linkedin.com/in/anneliseemig', + campus: 'FTRI / CTRI', + cohort: '15', + jobTitle: 'Junior Web Developer', + industry: 'Marketing', + cities: [], + }, + { + company: 'Meta', + name: 'Carlos Lovera', + email: 'Calovera@bu.edu', + linkedIn: '', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Partner Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Meta', + name: 'Jonathan Jim Ramirez', + email: 'jramirezor.91@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonathan-jim-ramirez/', + campus: 'PTRI', + cohort: '0', + jobTitle: 'Data Engineer', + industry: 'Social Media + VR', + cities: [], + }, + { + company: 'Meta', + name: 'Karandeep Ahluwalia', + email: 'karandeepahluwalia@gmail.com', + linkedIn: 'https://www.linkedin.com/in/karandeepahluwalia97/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Software Engineer', + industry: 'Technology', + cities: [], + }, + { + company: 'Meta', + name: 'Tom Herrmann', + email: 'Tomherrmannd@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thomasherrmann1/', + campus: 'NYC', + cohort: '14', + jobTitle: 'Software engineer - E4', + industry: '', + cities: [], + }, + { + company: 'Metecs', + name: 'Justin Lee Kirk', + email: 'justinleekirk@gmail.com', + linkedIn: 'https://www.linkedin.com/in/justinleekirk/', + campus: 'LA', + cohort: '48', + jobTitle: 'Software Engineer', + industry: 'Research', + cities: [], + }, + { + company: 'Metric5', + name: 'Alex Kang', + email: 'akang0408@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alex-kang/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Software Engineer', + industry: 'Information Technology & Services', + cities: [], + }, + { + company: 'Metrolina Greenhouses', + name: 'Stefan Jordan', + email: 'sjordan2010@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stefan-w-jordan', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Frontend Software Engineer', + industry: 'Agriculture Science', + cities: [], + }, + { + company: 'Microsoft', + name: 'Alonso Garza', + email: 'alonsogarza6@gmail.com', + linkedIn: 'https://www.linkedin.com/in/e-alonso-garza/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer II', + industry: 'Software', + cities: [], + }, + { + company: 'Microsoft', + name: 'Bernie Green', + email: 'bgreen280@gmail.com', + linkedIn: 'https://www.linkedin.com/in/berniegreen/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Microsoft', + name: 'Brad Morgan', + email: 'bkmorgan3@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bkmorgan3/', + campus: 'LA', + cohort: '31', + jobTitle: 'UI Engineer', + industry: 'Tech', + cities: [], + }, + { + company: 'Microsoft', + name: 'Brandi Richardson', + email: 'brandi.jrichardson@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brandi-richardson-28295158/', + campus: 'LA', + cohort: '40', + jobTitle: 'Software Engineer ll', + industry: 'Computer Software', + cities: [], + }, + { + company: 'Microsoft', + name: 'Brian Hong', + email: 'brianhhong96@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brianhhong', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer', + industry: 'Cloud', + cities: [], + }, + { + company: 'Microsoft', + name: 'Georgina Carr', + email: 'carre.georgina@gmail.com', + linkedIn: 'https://www.linkedin.com/in/georginacarr/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Software Engineer, Contract', + industry: 'tech', + cities: [], + }, + { + company: 'Microsoft', + name: 'Andrew Dunne', + email: 'Drewdunne88@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andrew-dunne-7620bb84', + campus: 'LA / WCRI', + cohort: '53', + jobTitle: 'Senior Automation Engineer', + industry: 'Gaming', + cities: [], + }, + { + company: 'Microsoft', + name: 'Griffin Roger Mccartney Silver', + email: 'griffinrogersilver@gmail.com', + linkedIn: 'https://www.linkedin.com/in/griffin-silver/', + campus: 'LA / WCRI', + cohort: '43', + jobTitle: 'Cloud Support Engineer', + industry: 'IT Services', + cities: [], + }, + { + company: 'Microsoft', + name: 'Rella Cruz', + email: 'rellas.email@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rella/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Software Engineer Apprentice (LEAP Program)', + industry: 'Computer Technology', + cities: [], + }, + { + company: 'Microsoft', + name: 'Silvia Kemp Miranda', + email: 'silvia.kemp@gmail.com', + linkedIn: 'https://www.linkedin.com/in/silviakmiranda/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Technical Program Manager', + industry: 'Technology', + cities: [], + }, + { + company: 'Microsoft', + name: 'Timothy Jung', + email: 'timjj92@gmail.com', + linkedIn: 'www.linkedin.com/in/timjj92', + campus: 'LA', + cohort: '32', + jobTitle: 'Software Development Engineer', + industry: 'Cloud computing', + cities: [], + }, + { + company: 'Microsoft', + name: 'Tjolanda "Sully" Sullivan', + email: 'tjolanda.sullivan@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tjolanda-sullivan/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer', + industry: 'Cloud Storage', + cities: [], + }, + { + company: 'Microsoft', + name: 'William kencel', + email: 'Wkencel1@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '40', + jobTitle: 'React/react native/full stack engineer', + industry: 'Device payment system', + cities: [], + }, + { + company: 'Microsoft Leap Apprenticeship Program (via Aerotek)', + name: 'Roseanne Damasco', + email: 'rosedamasco@gmail.com', + linkedIn: 'https://www.linkedin.com/in/roseannedamasco/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer', + industry: 'Computer Software', + cities: [], + }, + { + company: 'Mighty', + name: 'Jakob Kousholt', + email: 'jakobjk@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jakobjk/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Software Engineer', + industry: 'Consumer Services', + cities: [], + }, + { + company: 'MightyHive', + name: 'Alyso Swerdloff', + email: 'alysonswerdloff@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alyson-swerdloff/', + campus: 'NYC', + cohort: '8', + jobTitle: 'Technical Solutions Engineer', + industry: 'Insurance/ cybersecurity', + cities: [], + }, + { + company: 'Mimecast', + name: 'Tim Ruszala', + email: 'truszala@gmail.com', + linkedIn: 'https://www.linkedin.com/in/timruszala/', + campus: 'NYC', + cohort: '32', + jobTitle: 'Senior Software Engineer', + industry: 'Security', + cities: [], + }, + { + company: 'MindBody', + name: 'Charlie Malave', + email: 'malavecharles@gmail.com', + linkedIn: 'https://www.linkedin.com/in/charlesmalave/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Software Engineer', + industry: 'Fitness Tech', + cities: [], + }, + { + company: 'Mindbody ClassPass', + name: 'Christina Son', + email: 'christinason17@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christinason17/', + campus: 'FTRI / CTRI', + cohort: '7', + jobTitle: 'Software Engineer I', + industry: 'Fitness/Wellness', + cities: [], + }, + { + company: 'MindCloud', + name: 'Emily Chu', + email: 'lin.emily.chu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lin-chu/', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Junior Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Mindstrong', + name: 'Chon Hou Ho', + email: 'chonhouh@gmail.com', + linkedIn: 'https://www.linkedin.com/mwlite/in/chon-hou-ho', + campus: 'FTRI', + cohort: '6', + jobTitle: 'Software Engineer I, Full Stack', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Mirror.xyz', + name: 'Nathaniel Grossman', + email: 'nathanielbensongrossman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nathanielgrossman/', + campus: 'LA', + cohort: '22', + jobTitle: 'Software Engineer', + industry: 'Education', + cities: [], + }, + { + company: 'Mission Lane', + name: 'Ali Elhawary', + email: 'Alielhawary123@gmail.com', + linkedIn: '', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Mission Lane', + name: 'Esther Cho', + email: 'xesthercho@gmail.com', + linkedIn: 'https://www.linkedin.com/in/esther-cho/', + campus: 'LA', + cohort: '49', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Mitchell Martin', + name: 'Jonathan Barenboim', + email: 'Jonathan.Barenboim@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonathan-barenboim/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'MJH Life Sciences', + name: 'Arthur Sato', + email: 'swatto12@gmail.com', + linkedIn: 'https://www.linkedin.com/in/arthursato', + campus: 'NYC', + cohort: '25', + jobTitle: 'React Developer', + industry: 'Health Care Media', + cities: [], + }, + { + company: 'MKTG', + name: 'Garrett Lee', + email: 'geewai.lee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/geewailee/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Senior Software Developer', + industry: 'Marketing', + cities: [], + }, + { + company: 'MNTN', + name: 'Chris Franz', + email: 'chrisfranz@mac.com', + linkedIn: 'https://www.linkedin.com/in/chris--franz/', + campus: 'LA', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Advertising', + cities: [], + }, + { + company: 'MNTN', + name: 'Timothy Kachler', + email: 'kachler@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tkachler', + campus: 'LA', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Advertising', + cities: [], + }, + { + company: 'MNTN', + name: 'Bryan Trang', + email: 'bryanltrang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bryanltrang/', + campus: 'LA / WCRI', + cohort: '58', + jobTitle: 'Fullstack Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Moment House', + name: 'Hoon Choi', + email: 'vhchoi@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '10', + jobTitle: 'Sr. Software eng', + industry: 'Entertainment', + cities: [], + }, + { + company: 'MongoDB', + name: 'Cris Newsome', + email: 'crisnewsome@outlook.com', + linkedIn: 'https://linkedin.com/in/crisnewsome', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer II', + industry: 'Tech?', + cities: [], + }, + { + company: 'Monument', + name: 'Midori Yang', + email: 'midoki.yang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/midori-yang/', + campus: 'NYC', + cohort: '19', + jobTitle: '', + industry: 'Healthcare', + cities: [], + }, + { + company: "Moody's Analytics", + name: 'Alan Ye', + email: 'alye13@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alan-ye-008/', + campus: 'PTRI', + cohort: '4', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: "Moody's Analytics", + name: 'Cara Dibdin', + email: 'cdibdin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cara-dibdin/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Senior Software Engineer', + industry: 'Finance', + cities: [], + }, + { + company: 'Morgan Stanley', + name: 'Jackie Lin', + email: 'jackie.lin128@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jackielin12/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Developer', + industry: 'Finance', + cities: [], + }, + { + company: 'Morning Consult', + name: 'Lucas Lima Taffo', + email: 'lucas.taffo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lucastaffo/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Software Engineer II', + industry: 'Decision Intelligence', + cities: [], + }, + { + company: 'Mothership', + name: 'Carlos Perez', + email: 'crperez@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cpereztoro/', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Freight', + cities: [], + }, + { + company: 'Motion Intelligence', + name: 'Russell F Hayward', + email: 'russdawg44@gmail.com', + linkedIn: 'https://www.linkedin.com/in/russell-hayward/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Cloud Developer', + industry: 'Automotive', + cities: [], + }, + { + company: 'mPulse Mobile', + name: 'Devon Vaccarino', + email: 'devonev92@gmail.com', + linkedIn: 'https://www.linkedin.com/in/devon-vaccarino/', + campus: 'LA', + cohort: '30', + jobTitle: 'Mid Software Engineer', + industry: 'Health Communications', + cities: [], + }, + { + company: 'MRI-Simmons', + name: 'Dan Lin', + email: 'dannlin91@gmail.com', + linkedIn: 'https://www.linkedin.com/in/danlin91/', + campus: 'NYC', + cohort: '20', + jobTitle: 'UI Developer', + industry: 'Data Consumer', + cities: [], + }, + { + company: 'MUFG', + name: 'Parker Hutcheson', + email: 'pdhutcheson@gmail.com', + linkedIn: 'https://www.linkedin.com/in/parkerhutcheson/', + campus: 'FTRI / CTRI', + cohort: '4', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Mulberry Technology', + name: 'Mia Kang', + email: 'fakeEmail3@fakeEmail.com', + linkedIn: 'https://www.linkedin.com/in/mia-kang/', + campus: 'PTRI', + cohort: '5', + jobTitle: 'Associate Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Multi Media, LLC', + name: 'Cameron Fitz', + email: 'hellocameronfitz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cameron-lee-fitz/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Product Manager, Growth', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Munera', + name: 'Yuehao Wong', + email: 'yuehaowong@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yuehaowong/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Full Stack Developer', + industry: 'Other', + cities: [], + }, + { + company: 'Musee Archives', + name: 'Walter David DeVault', + email: 'wdd4services@outlook.com', + linkedIn: 'https://www.linkedin.com/in/walter-devault', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Full-Stack Software Engineer', + industry: 'Media', + cities: [], + }, + { + company: 'MX', + name: 'Harlan Evans', + email: 'harlanevans5@gmail.com', + linkedIn: 'https://www.linkedin.com/mwlite/in/harlan-evans', + campus: 'LA', + cohort: '40', + jobTitle: 'Front end Software engineer (mid-sr)', + industry: 'Fintech', + cities: [], + }, + { + company: 'MX', + name: 'Mike Coker', + email: 'mbcoker100@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mike-coker/', + campus: 'LA', + cohort: '35', + jobTitle: 'Backend JavaScript Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Naked Development', + name: 'Cayla Co', + email: 'caylasco@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cayla-co/', + campus: 'FTRI', + cohort: '6', + jobTitle: 'Senior Full Stack Developer', + industry: 'Digital Advertising', + cities: [], + }, + { + company: 'Namely', + name: 'Yujin kang', + email: 'ykang7858@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'SaaS / HR startup', + cities: [], + }, + { + company: 'Narmi', + name: 'Derek Lam', + email: 'derekquoc@gmail.com', + linkedIn: 'https://www.linkedin.com/in/derekqlam/', + campus: 'LA', + cohort: '40', + jobTitle: 'Solutions Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Narrativ', + name: 'Lisa Han', + email: 'jjlisahan@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lisajjhan/', + campus: 'NYC', + cohort: '17', + jobTitle: 'Software Engineer', + industry: 'E-commerce', + cities: [], + }, + { + company: 'National Grid', + name: 'Edward Deng', + email: 'edeng4237@gmail.com', + linkedIn: 'https://www.linkedin.com/in/edwarddeng-/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: 'Utilities', + cities: [], + }, + { + company: 'Navitus', + name: 'Young Kim', + email: 'young.kim770@gmail.com', + linkedIn: 'https://www.linkedin.com/in/young-j-kim', + campus: 'FTRI / CTRI', + cohort: '12', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'NBA', + name: 'Cecily Jansen', + email: 'cecilyjansen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cecily-j/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Associate Front-End Engineer', + industry: 'Sports & Entertainment Media', + cities: [], + }, + { + company: 'NBCUniversal', + name: 'Sam Arnold', + email: 'sam.arnold72@gmail.com', + linkedIn: 'https://www.linkedin.com/in/samarnold723/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Software Engineer II', + industry: 'Entertainment', + cities: [], + }, + { + company: 'NBCUniversal Media', + name: 'Jimmy Phong', + email: 'jayacados@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jphongmph/', + campus: 'LA', + cohort: '35', + jobTitle: 'Senior Software Engineer', + industry: 'Media and Entertainment', + cities: [], + }, + { + company: 'NCR', + name: 'Bryan Chau', + email: 'chaubryan@hotmail.com', + linkedIn: 'https://www.linkedin.com/in/chaubryan1', + campus: 'LA / WCRI', + cohort: '47', + jobTitle: 'SW Engineer III', + industry: 'IT Services', + cities: [], + }, + { + company: 'NEC', + name: 'Stacey Lee', + email: 'staceyjlee18@gmail.com', + linkedIn: 'https://www.linkedin.com/in/staceyjhlee/', + campus: 'FTRI / CTRI', + cohort: '16', + jobTitle: 'Full Stack Engineer', + industry: 'Business Tech/Enterprise Tech', + cities: [], + }, + { + company: 'Neiro AI', + name: 'Daria Mordvinov', + email: 'daria.mordvinov@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dariamordvinov/', + campus: 'NYOI', + cohort: '1', + jobTitle: 'Frontend Engineer', + industry: 'Artificial Intelligence', + cities: [], + }, + { + company: 'Nelnet', + name: 'Zach Brucker', + email: 'zach.brucker@gmail.com', + linkedIn: 'https://www.linkedin.com/in/zachbrucker/', + campus: 'LA', + cohort: '41', + jobTitle: 'Full-Stack Developer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Neo.Tax', + name: 'Lindsay Baird', + email: 'lindsay.a.baird@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lindsaybaird/', + campus: 'LA', + cohort: '45', + jobTitle: 'Full-Stack Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Neo.tax', + name: 'Miguel Hernandez', + email: 'miguelh72@outlook.com', + linkedIn: 'https://www.linkedin.com/in/miguelh72/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Senior Full-Stack Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Nespresso', + name: 'Raymond Huang', + email: 'raymond.huang1011@gmail.com', + linkedIn: 'https://www.linkedin.com/in/raymondhuang95/', + campus: 'NYC / ECRI', + cohort: '31', + jobTitle: 'Associate Front-End Developer', + industry: 'Other', + cities: [], + }, + { + company: 'Netflix', + name: 'Josie Glore', + email: 'Josieglore@gmail.com', + linkedIn: 'https://www.linkedin.com/in/josie-glore/', + campus: 'LA', + cohort: '25', + jobTitle: 'Technologist', + industry: 'Fashion', + cities: [], + }, + { + company: 'Netflix', + name: 'Sagar Velagala', + email: 'sagar.velagala@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sagarvelagala/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Sr. Analytics Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Netflix', + name: 'Victoria Adnet', + email: 'victoria.adnet@gmail.com', + linkedIn: 'https://www.linkedin.com/in/victoria-lellis/', + campus: 'LA', + cohort: '29', + jobTitle: 'Technologist', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Netskope', + name: 'Mariya Eyges', + email: 'mariya.sf@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mariya-eyges-8511131/', + campus: 'PTRI', + cohort: 'Beta', + jobTitle: 'Software Engineer', + industry: 'Security Cloud', + cities: [], + }, + { + company: 'Neulion', + name: 'Myles Green', + email: 'mylescorygreen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/myles-c-green/', + campus: 'NYC', + cohort: '4', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'New York Institute of Technology College of Osteopathic Medicine', + name: 'Justin Ribarich', + email: 'jribarich98@gmail.com', + linkedIn: 'https://www.linkedin.com/in/justin-ribarich', + campus: 'NYOI', + cohort: '2', + jobTitle: 'Full Stack Developer', + industry: 'Education/Edtech', + cities: [], + }, + { + company: 'Newsela', + name: 'Anthony Terruso', + email: 'aterruso@gmail.com', + linkedIn: 'https://www.linkedin.com/in/anthony-w-terruso/', + campus: 'NYC', + cohort: '7', + jobTitle: 'Senior Web Application Developer', + industry: '', + cities: [], + }, + { + company: 'Nexient', + name: 'James Kolotouros', + email: 'dkolotouros1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jameskolotouros', + campus: 'NYC', + cohort: '22', + jobTitle: 'Software Developer II', + industry: 'Tech', + cities: [], + }, + { + company: 'Nexient', + name: 'Gaber Mowiena', + email: 'gaber.abouelsoud@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gabermowiena/', + campus: 'NYC', + cohort: '9', + jobTitle: 'Frontend Developer', + industry: 'Tech products', + cities: [], + }, + { + company: 'Nexstar Media Group', + name: 'Beckett Hanan', + email: 'beckett.hanan@gmail.com', + linkedIn: 'https://www.linkedin.com/in/becketthanan/', + campus: 'PTRI', + cohort: 'Beta', + jobTitle: 'Front End Software Engineer', + industry: 'Media', + cities: [], + }, + { + company: 'NextGen Healthcare', + name: 'Samuel Tran', + email: 'samwell.tran@gmail.com', + linkedIn: 'https://www.linkedin.com/in/samuel-tran-836448231/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Software Engineer II', + industry: 'Healthcare', + cities: [], + }, + { + company: 'NextME', + name: 'Linh Tran', + email: 'linhtanl51@gmail.com', + linkedIn: 'https://www.linkedin.com/in/linhatran', + campus: 'LA', + cohort: '40', + jobTitle: 'Senior Software Engineer', + industry: 'Management', + cities: [], + }, + { + company: 'NFL', + name: 'Michael Blanchard', + email: 'michael.james.blanchard@gmail.com', + linkedIn: 'https://www.linkedin.com/in/miblanchard12/', + campus: 'LA', + cohort: '7', + jobTitle: 'Director of Engineering - Platform', + industry: 'Media / Sports', + cities: [], + }, + { + company: 'Niantic', + name: 'Oliver Zhang', + email: 'zezang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/oliver-zhang91', + campus: 'PTRI', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Nielsen', + name: 'Alexander Tu', + email: 'alexandertu95@gmail.com', + linkedIn: 'https://www.linkedin.com/in/atu816', + campus: 'FTRI / CTRI', + cohort: '12', + jobTitle: 'Senior Software Engineer', + industry: 'Business Analytics', + cities: [], + }, + { + company: 'Nielsen', + name: 'Diana Kim', + email: 'ruslanovna.kim@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ruslanovna/', + campus: 'NYC / ECRI', + cohort: '31', + jobTitle: 'Software Engineer II', + industry: 'Business Analytics', + cities: [], + }, + { + company: 'Nielsen Sports', + name: 'Karina Illesova', + email: 'karin.illesova@gmail.com', + linkedIn: 'https://www.linkedin.com/in/karin-illesova/', + campus: 'LA', + cohort: '41', + jobTitle: 'Sr Software Engineer', + industry: 'Information Technology & Services', + cities: [], + }, + { + company: 'Nike', + name: 'adrian Sun', + email: 'Adriansun2@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adrian-sun', + campus: 'LA', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Travel', + cities: [], + }, + { + company: 'Nimble', + name: 'Zachary Daniels', + email: 'Zackdanielsnyc@gmail.com', + linkedIn: 'LinkedIn.com/in/zackdanielsnyc', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Nobel.AI', + name: 'Kate Chanthakaew', + email: 'kubkate@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kate-chanthakaew/', + campus: 'LA', + cohort: '36', + jobTitle: 'Full Stack Engineer', + industry: 'Scientist R&D', + cities: [], + }, + { + company: 'Noblr Insurance', + name: 'Brian Taylor', + email: 'brian.taylor818@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brianwtaylor/', + campus: 'LA', + cohort: '22', + jobTitle: 'Software Engineer', + industry: 'Health', + cities: [], + }, + { + company: 'Nomad Health', + name: 'Julia Bakerink', + email: 'juliabakerink@gmail.com', + linkedIn: 'https://www.linkedin.com/in/juliabakerink/', + campus: 'LA', + cohort: '48', + jobTitle: 'Fullstack Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Nomad Health', + name: 'Neftali Dominguez', + email: 'n.l.dominguez23@gmail.com', + linkedIn: 'https://www.linkedin.com/in/neftalildominguez/', + campus: 'LA', + cohort: '30', + jobTitle: 'Senior Software Engineer', + industry: 'Health', + cities: [], + }, + { + company: 'Nordstrom', + name: 'Vicki Lee', + email: 'leevicki01@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vlee022/', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer', + industry: 'E-Commerce / Fashion', + cities: [], + }, + { + company: 'Nordstrom', + name: 'Sohee Lee', + email: 'soheelee1985@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sohee419/', + campus: 'LA', + cohort: '46', + jobTitle: 'Engineer 2', + industry: 'Fintech', + cities: [], + }, + { + company: 'Nordstrom Rack | HauteLook', + name: 'Robb Eastman', + email: 'ereastman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/robbeastman/', + campus: 'LA', + cohort: '31', + jobTitle: 'Software Engineer I, Web', + industry: 'Fashion', + cities: [], + }, + { + company: 'Noria Water Technologies', + name: 'Umair Shafiq', + email: 'umairshafiqprof@gmail.com', + linkedIn: 'https://www.linkedin.com/in/umair-w-shafiq/', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Associate Developer', + industry: 'Other', + cities: [], + }, + { + company: 'North American Bancard', + name: 'Edward Chow', + email: 'Pdphybrid@gmail.com', + linkedIn: 'https://www.linkedin.com/in/edkchow/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Full Stack Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Northflank', + name: 'Emma Genesen', + email: 'genesen.emma@gmail.com', + linkedIn: 'https://www.linkedin.com/in/emma-genesen/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Head of Developer Marketing', + industry: 'Cloud Services', + cities: [], + }, + { + company: 'Northrop Grumman', + name: 'David Lopez', + email: 'd7lopez@gmail.com', + linkedIn: 'https://www.linkedin.com/in/david-michael-lopez/', + campus: 'NYC / ECRI', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Aerospace', + cities: [], + }, + { + company: 'Northrop Grumman', + name: 'Michael Way', + email: 'mjway01@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michaeljway/', + campus: 'PTRI', + cohort: '10', + jobTitle: 'Cognitive Software Engineer', + industry: 'Aerospace', + cities: [], + }, + { + company: 'Northspyre', + name: 'Vaughn Sulit', + email: 'bvaughnsulit@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bvaughnsulit/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Full Stack Engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Northwestern Mutual', + name: 'Hussein Hamade', + email: 'hamade.hussein00@gmail.com', + linkedIn: 'https://www.linkedin.com/in/husseinhamade1/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Software Engineer (P2 - Midlevel)', + industry: 'Fintech', + cities: [], + }, + { + company: 'Northwestern Mutual', + name: 'Jake Policano', + email: 'jdpolicano@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jacob-policano/', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: [], + }, + { + company: 'Northwestern Mutual', + name: 'Max Lee', + email: 'maxolee23@gmail.com', + linkedIn: 'https://www.linkedin.com/in/max-lee1', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Full Stack Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Northwestern Mutual', + name: 'Vince Nguyen', + email: 'vince.g.nguyen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vince-nguyen/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Full Stack Software Engineer', + industry: 'Fintech/Insurance', + cities: [], + }, + { + company: 'Northwestern Mutual', + name: 'Warren Harrison Tait', + email: 'warrenhtait@gmail.com', + linkedIn: 'https://www.linkedin.com/in/warrenhtait/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Full Stack Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Not currently employed in tech/as a dev', + name: 'Evan Deam', + email: 'ebdeam@gmail.com', + linkedIn: 'https://www.linkedin.com/in/evandeam/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Registered Nurse', + industry: 'Healthtech/Healthcare', + cities: [], + }, + { + company: 'Notion', + name: 'Marissa Lafontant', + email: 'marissa.lafontant@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mlafontant/', + campus: 'NYC', + cohort: '2', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Nousot', + name: 'Winslow Taylor', + email: 'winslow.benjamin.taylor@gmail.com', + linkedIn: 'https://www.linkedin.com/in/winslow-taylor/', + campus: 'FTRI', + cohort: '6', + jobTitle: 'Advance Associate', + industry: 'IT, SaaS', + cities: [], + }, + { + company: 'Noyo', + name: 'Jonathan Mendoza', + email: 'j.d.mendoza415@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonathan-mendoza1', + campus: 'LA', + cohort: '41', + jobTitle: 'L1 Engineer', + industry: 'Heath care', + cities: [], + }, + { + company: 'NPR', + name: 'Alex Mannix', + email: 'alexleemannix@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alex-mannix-53015668/', + campus: 'NYC', + cohort: '5', + jobTitle: 'Junior Software Engineer', + industry: '', + cities: [], + }, + { + company: 'NPR', + name: 'Jordan Grubb', + email: 'imjordangrubb@gmail.com', + linkedIn: 'https://www.linkedin.com/in/j-grubb/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Software Engineer', + industry: 'Subscriptions', + cities: [], + }, + { + company: 'NPR', + name: 'Samantha Wessel', + email: 'samantha.n.wessel@gmail.com', + linkedIn: 'https://www.linkedin.com/in/samantha-wessel/', + campus: 'LA', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'News Media', + cities: [], + }, + { + company: 'NU Borders', + name: 'Ryan Tumel', + email: 'rtumel123@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ryan-tumel/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Information Technology & Services', + cities: [], + }, + { + company: 'NWEA', + name: 'Celene Chang', + email: 'Celene Chang', + linkedIn: 'https://www.linkedin.com/in/celenecchang/', + campus: 'LA', + cohort: '48', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'NYU Langone Health', + name: 'Alexander Lin', + email: 'alexanderlin164@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexander-lin-8aab79167/', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Developer 1', + industry: 'Healthtech/Healthcare', + cities: [], + }, + { + company: 'O POSITIV', + name: 'Jonah Lin', + email: 'jjonah.lin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/linjonah/', + campus: 'LA', + cohort: '33', + jobTitle: 'Software Engineer (eCommerce)', + industry: 'E-commerce', + cities: [], + }, + { + company: 'ObvioHealth', + name: 'Joshua Jordan', + email: 'josh.r.jordan@gmail.com', + linkedIn: 'https://www.linkedin.com/in/josh-r-jordan/', + campus: 'NYC / ECRI', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Biotech', + cities: [], + }, + { + company: 'OceanX', + name: 'Jun Lee', + email: 'jushuworld@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jushuworld/', + campus: 'LA', + cohort: '29', + jobTitle: 'Full Stack Developer', + industry: 'E-commerce', + cities: [], + }, + { + company: 'Ocrolus', + name: 'Daniel Shu', + email: 'shudaniel95@gmail.com', + linkedIn: 'https://www.linkedin.com/in/danielshu/', + campus: 'NYC', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Blockchain', + cities: [], + }, + { + company: 'Octane Lending', + name: 'Christian Paul Ejercito', + email: 'chris.paul.ejercito@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christian-paul-ejercito/', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer II', + industry: 'Fintech', + cities: [], + }, + { + company: 'Odie Pet Insurance', + name: 'Nicholas Echols', + email: 'nechols87@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nickechols87/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Senior Software Engineer', + industry: '', + cities: [], + }, + { + company: 'ODME Solutions', + name: 'Jackqueline Nguyen', + email: 'jackquelineanguyen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jackquelinenguyen/', + campus: 'LA / WCRI', + cohort: '54', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Okta', + name: 'Sterling Deng', + email: 'sterlingdeng@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sterling-deng/', + campus: 'LA', + cohort: '27', + jobTitle: 'Software Engineer', + industry: 'SaaS - Security', + cities: [], + }, + { + company: 'Olive AI', + name: 'Saejin Kang', + email: 'saejin.kang1004@gmail.com', + linkedIn: 'https://www.linkedin.com/in/saejinkang1004/', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Olivine Inc', + name: 'Yirou Chen', + email: 'yirou.zm@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yirouchen/', + campus: 'PTRI', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Ollie', + name: 'Brynn Sakell', + email: 'brynnsakell@gmail.com', + linkedIn: 'www.linkedin.com/in/brynnsakell', + campus: 'NYOI', + cohort: '1', + jobTitle: 'Software Engineer, Front End', + industry: 'Other', + cities: [], + }, + { + company: 'Omaze', + name: 'Rachel Kim', + email: 'rayykim323@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rayykim/', + campus: 'LA', + cohort: '31', + jobTitle: 'Software Engineer', + industry: 'Fundraising', + cities: [], + }, + { + company: 'OneSignal', + name: 'Dean Ohashi', + email: 'd.n.ohashi@gmail.com', + linkedIn: 'https://www.linkedin.com/in/deanohashi/', + campus: 'LA', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'MarTech', + cities: [], + }, + { + company: 'OneTrack.AI', + name: 'Alexander Martinez', + email: 'alexmartinez7184@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexander-martinez415/', + campus: 'LA / WCRI', + cohort: '53', + jobTitle: 'Implementation Support Engineer', + industry: 'Artificial Intelligence', + cities: [], + }, + { + company: 'OneView', + name: 'Sean Yoo', + email: 'yooys87@gmail.com', + linkedIn: 'https://www.linkedin.com/in/seanyyoo/', + campus: 'LA', + cohort: '43', + jobTitle: 'Full Stack Developer', + industry: 'ECommerce', + cities: [], + }, + { + company: 'Onyx Team at JP Morgan Chase', + name: 'Dwayne Richards', + email: 'dwaynerichards@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dnkrichards', + campus: 'NYC / ECRI', + cohort: '24', + jobTitle: 'Senior Blockchain Engineer', + industry: 'Blockchain/Web3', + cities: [], + }, + { + company: 'Oomph', + name: 'Rob Mosher', + email: 'rob@robmosher.com', + linkedIn: 'https://www.linkedin.com/in/rob-mosher-it/', + campus: 'NYOI', + cohort: '1', + jobTitle: 'Senior Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'OpenFin', + name: 'Elliott Burr', + email: 'elliottnburr@gmail.com', + linkedIn: 'https://www.linkedin.com/in/elliott-burr/', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Openfin', + name: 'Hina Khalid', + email: 'k.hinaa87@gmail.com', + linkedIn: '', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Software engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Opentrons', + name: 'Geovanni Alarcon', + email: 'geovannialarcon92@gmail.com', + linkedIn: 'https://www.linkedin.com/in/geo-alarcon/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Biotech, Robotics', + cities: [], + }, + { + company: 'Opentrons', + name: 'Jamey Huffnagle', + email: 'mjhuffnagle@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jamey-huffnagle/', + campus: 'NYOI', + cohort: '3', + jobTitle: 'Senior Software Engineer', + industry: 'Biotech', + cities: [], + }, + { + company: 'Optimize Health', + name: 'Kim Mai Nguyen', + email: 'kim.mai.e.nguyen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nkmai/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Optum', + name: 'Austin Johnson', + email: 'austinlovesworking@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lovesworking/', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Full stack dev', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Oscar Health', + name: 'Brian Kang', + email: 'brkang1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thebriankang/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Software Engineer (E2)', + industry: 'Health', + cities: [], + }, + { + company: 'Oscar Health', + name: 'Brian Kang', + email: 'brkang1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thebriankang/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Software Engineer (E2)', + industry: 'Health', + cities: [], + }, + { + company: 'Oscar Health', + name: 'Sergey Zeygerman', + email: 'sergey@zeygerman.com', + linkedIn: 'https://www.linkedin.com/in/sergey-zeygerman/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Software Engineer, Web & Mobile', + industry: 'Insurance', + cities: [], + }, + { + company: 'OTG Experience', + name: 'Chang Cai', + email: 'Chang.Cai@pm.me', + linkedIn: 'https://www.linkedin.com/in/chang-c-cai/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Typescript NodeJS Senior Engineer', + industry: 'Hospitality', + cities: [], + }, + { + company: 'Other World Computing', + name: 'Miles Wright', + email: 'mileswright818@gmail.com', + linkedIn: 'https://www.linkedin.com/in/miles-m-wright/', + campus: 'LA / WCRI', + cohort: '45', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Ouraring', + name: 'Jenna Hamza', + email: 'jennashamza@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jennahamza', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Full Stack Developer', + industry: 'Other', + cities: [], + }, + { + company: 'Outside Analytics', + name: 'Timeo Williams', + email: 'timeo.j.williams@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '24', + jobTitle: 'FullStack Software Engineer', + industry: 'Analytics, Defense', + cities: [], + }, + { + company: 'Ovis Technologies', + name: 'Andrew Lovato', + email: 'andrew.lovato@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andrew-lovato/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Senior Full Stack Developer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Ovis Technologies', + name: 'David Soerensen', + email: 'Dsoerensen28@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '18', + jobTitle: 'Senior Fullstack Developer', + industry: 'Fintech', + cities: [], + }, + { + company: 'OwnerIQ Inc.', + name: 'Alejandro Romero', + email: 'alexrom789@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alejandromromero/', + campus: 'NYC', + cohort: '4', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Ownet', + name: 'Ari bengiyat', + email: 'ari@aribengiyat.com', + linkedIn: 'https://www.linkedin.com/in/ari-bengiyat', + campus: 'NYOI', + cohort: '2', + jobTitle: 'Senior Software Engineer', + industry: 'Media', + cities: [], + }, + { + company: 'Palmetto', + name: 'Fan Shao', + email: 'fanny.shao18@gmail.com', + linkedIn: 'https://www.linkedin.com/in/fan-shao/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Software Engineer', + industry: 'Renewable Energy', + cities: [], + }, + { + company: 'Panda Express', + name: 'Krystal Chen', + email: 'Kcrystalchen@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '31', + jobTitle: 'Software developer', + industry: 'Restaurant', + cities: [], + }, + { + company: 'Paperless Parts', + name: 'Scott Campbell', + email: 'thisisscottcampbell@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thisisscottcampbell/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Contract Manufacturing', + cities: [], + }, + { + company: 'Paragon Application Systems', + name: 'Autumn Wallen', + email: 'mymail1269@gmail.com', + linkedIn: 'https://www.linkedin.com/in/autumn-wallen/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Software Engineer II', + industry: 'Fintech', + cities: [], + }, + { + company: 'Paramount+', + name: 'Todd Alexander', + email: 'todd.alexander@me.com', + linkedIn: 'https://www.linkedin.com/in/toddalex/', + campus: 'LA', + cohort: '35', + jobTitle: 'Senior SWE', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Paramount++', + name: 'Evan Emenegger', + email: 'evanemenegger@gmail.com', + linkedIn: 'https://www.linkedin.com/in/evan-emenegger/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Software Engineer, Frontend', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Parative', + name: 'Mariko Iwata', + email: 'mariko.iwata@gmail.com', + linkedIn: 'https://www.linkedin.com/in/marikoiwata/', + campus: 'PTRI', + cohort: '9', + jobTitle: 'Senior Front End Engineer', + industry: 'Sales', + cities: [], + }, + { + company: 'Passage.io', + name: 'Yusuf Nevruz Olmez', + email: 'nvrz@windowslive.com', + linkedIn: 'https://www.linkedin.com/in/nevruzolmez', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Full Stack Developer', + industry: 'Blockchain/Web3', + cities: [], + }, + { + company: 'PassiveLogic', + name: 'Tanner Hesterman', + email: 'tannerhesterman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tannerhesterman/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Junior Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'PavCon', + name: 'Bradley Woolf', + email: 'bradleymwoolf@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bradley-woolf/', + campus: 'LA', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Federal Defense', + cities: [], + }, + { + company: 'Pavemint', + name: 'Vivian Cermeno', + email: 'vcermeno6@gmail.com', + linkedIn: 'https://www.linkedin.com/in/viviancermeno/', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Parking', + cities: [], + }, + { + company: 'Pax8', + name: 'Steve Frend', + email: 'stevefrend1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stevefrend/', + campus: 'LA', + cohort: '35', + jobTitle: 'Software Engineer II', + industry: 'Cloud services', + cities: [], + }, + { + company: 'Paypal', + name: 'Cynthia Franqui', + email: 'cynthiafranqui@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cynthiafranqui/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer II', + industry: 'Fintech', + cities: [], + }, + { + company: 'Paypal', + name: 'Stanley Huang', + email: 'Huang.stan@icloud.com', + linkedIn: '', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer II (T23)', + industry: 'electronic Payment/ financial services', + cities: [], + }, + { + company: 'PayPal', + name: 'Jason Yu', + email: 'jasonyu@hotmail.com', + linkedIn: 'https://www.linkedin.com/in/json-yu/', + campus: 'LA', + cohort: '32', + jobTitle: 'Software Engineer 2', + industry: 'Fintech', + cities: [], + }, + { + company: 'PayPal', + name: 'Jorge Espinoza', + email: 'jorge.e.espinoza.57@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jorge-e-espinoza1/', + campus: 'FTRI', + cohort: '3', + jobTitle: 'Software Engineer I', + industry: 'Fintech', + cities: [], + }, + { + company: 'PayPal', + name: 'Qwen Ballard', + email: 'qwen.ballard@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mqballard/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Full Stack Developer', + industry: 'Fintech', + cities: [], + }, + { + company: 'PayPal (Happy Returns)', + name: 'Lawrence Han', + email: 'lawrencehan3@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lawrence-han/', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer', + industry: 'Logistics', + cities: [], + }, + { + company: 'PayPal Inc.', + name: 'Darryl Amour', + email: 'darryl.amour@gmail.com', + linkedIn: 'https://www.linkedin.com/in/darryl-amour/', + campus: 'LA', + cohort: '25', + jobTitle: 'Engineering Manager, Software Development 2', + industry: 'Fintech', + cities: [], + }, + { + company: 'Payscale', + name: 'Truett Davis', + email: 'truett.davis@gmail.com', + linkedIn: 'https://www.linkedin.com/in/truett-davis', + campus: 'NYOI', + cohort: '3', + jobTitle: 'Software Engineer II', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Peacock', + name: 'Eli Gallipoli', + email: 'eligallipoli317@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eli-gallipoli/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Fullstack Developer - Video Software Engineering', + industry: 'Video Streaming', + cities: [], + }, + { + company: 'Peatix', + name: 'Yula Ko', + email: 'larkspury.k@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yulako/', + campus: 'NYC', + cohort: '17', + jobTitle: 'Software Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Peloton', + name: 'Lorenzo Guevara', + email: 'joselorenzo.guevara@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lorenzoguevara/', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer', + industry: 'Tech/Health & Wellness', + cities: [], + }, + { + company: 'Penny Mac', + name: 'Edward Roh', + email: 'eroh@rubiconproject.com', + linkedIn: 'https://www.linkedin.com/in/edwardroh/', + campus: 'LA', + cohort: '24', + jobTitle: 'Front End Lead Engineer', + industry: 'Sports?', + cities: [], + }, + { + company: 'PennyMac', + name: 'Cornelius Phanthanh', + email: 'corneliusphanthanh@gmail.com', + linkedIn: 'www.linkedin.com/in/corneliusphanthanh', + campus: 'LA', + cohort: '33', + jobTitle: 'Full Stack (UI/UX) Senior Application Developer', + industry: 'Loan/Mortgage', + cities: [], + }, + { + company: 'Penumbra', + name: 'Abigail Gjurich', + email: 'amgjurich@gmail.com', + linkedIn: 'https://www.linkedin.com/in/abigail-gjurich/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Front End Engineer', + industry: 'Medical', + cities: [], + }, + { + company: 'Penumbra, Inc.', + name: 'Junaid Ahmed', + email: 'junaid7ahmed96@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ahmedjnd/', + campus: 'NYOI', + cohort: '3', + jobTitle: 'Full Stack Engineer', + industry: 'Healthtech/Healthcare', + cities: [], + }, + { + company: 'Peraton', + name: 'Andrew Jung', + email: 'andrewjung89@icloud.com', + linkedIn: 'https://www.linkedin.com/in/sjung80/', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Cyber Software Engineer', + industry: 'Public Safety', + cities: [], + }, + { + company: 'PGA Tour', + name: 'Rami Abdelghafar', + email: 'ramabdel12@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ramiabdelghafar/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Software Engineer', + industry: 'Digital', + cities: [], + }, + { + company: 'PGi', + name: 'Zi Hao He', + email: 'germanychinaaustralia@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/zi-hao-he/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer I', + industry: 'Video', + cities: [], + }, + { + company: 'PGS', + name: 'Yi Sun', + email: 'timyisun@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yi-sun-swe/', + campus: 'PTRI', + cohort: '10', + jobTitle: 'Senior Software Engineer', + industry: 'Energy/Cleantech/Greentech', + cities: [], + }, + { + company: 'PhotoShelter', + name: 'Julia Ieshtokina', + email: 'julia.ieshtokina@gmail.com', + linkedIn: 'https://www.linkedin.com/in/julia-ieshtokina/', + campus: 'NYC', + cohort: '5', + jobTitle: 'Software Automation Engineer', + industry: '', + cities: [], + }, + { + company: 'Picarro', + name: 'Sรฉbastien Fauque', + email: 'Sbfauque@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sebastienfauque', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Software engineer', + industry: 'Green tech', + cities: [], + }, + { + company: 'Pie Insurance', + name: 'Alex Wolinsky', + email: 'alexwolinsky1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alex-wolinsky/', + campus: 'LA', + cohort: '40', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: [], + }, + { + company: 'Pima County', + name: 'Jake Kazi', + email: 'kazijake@gmail.com', + linkedIn: 'linkedin.com/in/jakekazi', + campus: 'PTRI', + cohort: '7', + jobTitle: 'IT Applications Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Pinterest', + name: 'Edar Liu', + email: 'liuedar@gmail.com', + linkedIn: 'https://www.linkedin.com/in/liuedar/', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer L4', + industry: 'Social Media', + cities: [], + }, + { + company: 'Pitzer College', + name: 'Kurt Crandall', + email: 'kcrandall67@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kurtcrandall', + campus: 'LA / WCRI', + cohort: '47', + jobTitle: 'Web Developer', + industry: 'Other', + cities: [], + }, + { + company: 'Place Exchange', + name: 'Wesley Jia', + email: 'wesleyjia34@gmail.com', + linkedIn: 'https://www.linkedin.com/in/wesleyjia/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Advertising', + cities: [], + }, + { + company: 'Plaid', + name: 'Nicolas Ferretti', + email: 'nf96@cornell.edu', + linkedIn: 'https://www.linkedin.com/in/nicolas-ferretti/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Platform Science', + name: 'Daniel Aurand', + email: 'Daurand303@gmail.com', + linkedIn: 'https://www.linkedin.com/in/daniel-aurand/', + campus: 'PTRI', + cohort: '7', + jobTitle: 'software development engineer - FMS', + industry: 'Automotive', + cities: [], + }, + { + company: 'Playstation', + name: 'Bryan Santos', + email: 'brymsantos@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bryan-santos/', + campus: 'LA', + cohort: '49', + jobTitle: 'Software Engineer II', + industry: 'Gaming', + cities: [], + }, + { + company: 'PlayStation', + name: 'Jackqueline Nguyen', + email: 'jackquelineanguyen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jackquelinenguyen/', + campus: 'LA / WCRI', + cohort: '54', + jobTitle: 'Senior Software Engineer', + industry: 'Gaming', + cities: [], + }, + { + company: 'PlayVs', + name: 'Alyvia Moss', + email: 'alyvialmoss@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alyviam/', + campus: 'LA', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'E-Sports', + cities: [], + }, + { + company: 'Plum', + name: 'Nattie Chan', + email: 'nattie.chan@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nattiechan/', + campus: 'LA / WCRI', + cohort: '56', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Pluralsight', + name: 'Ronak Hirpara', + email: 'ronakh130@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ronak-hirpara/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Education', + cities: [], + }, + { + company: 'Pluralsight', + name: 'Stephanie Wood', + email: 'wood.steph@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stephaniewood22/', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'EdTech', + cities: [], + }, + { + company: 'Plutoshift', + name: 'Alex Bednarek', + email: 'alexbednarek4@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alex-bednarek/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Backend Engineer', + industry: 'Internet/AI/Energy', + cities: [], + }, + { + company: 'Podsights', + name: 'Emily Krebs', + email: 'erkrebs@gmail.com', + linkedIn: 'https://www.linkedin.com/in/emilyrkrebs/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: 'Podcast Analytics', + cities: [], + }, + { + company: 'PointsBet', + name: 'Joseph Eisele', + email: 'eisele.joseph1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joseph-eisele/', + campus: 'LA', + cohort: '29', + jobTitle: 'Front-end Engineering Consultant', + industry: 'Sports Betting', + cities: [], + }, + { + company: 'PokerAtlas', + name: 'Patrick S. Young', + email: 'patrick.shaffer.young@gmail.com', + linkedIn: 'https://www.linkedin.com/in/patrick-s-young/', + campus: 'LA', + cohort: '31', + jobTitle: 'Frontend Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Policygenius', + name: 'Christopher Bosserman', + email: 'christopherpbosserman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christopherpbosserman/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: [], + }, + { + company: 'Policygenius', + name: 'Kelly Porter', + email: 'kporter101@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kporter101/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: [], + }, + { + company: 'Poll Everywhere', + name: 'Samuel Filip', + email: 'samjfilip@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sam-filip/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Full Stack Integrations Engineer', + industry: 'IT Services', + cities: [], + }, + { + company: 'Poloniex', + name: 'Sunit Bhalotia', + email: 'sunit.bh@gmail.com', + linkedIn: 'linkedin.com/in/sunitb/', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Senior Software Engineer, Web', + industry: 'Blockchain/Web3', + cities: [], + }, + { + company: 'Polyture', + name: 'Dieu Huynh', + email: 'dieu@dieuhuynh.com', + linkedIn: 'https://www.linkedin.com/in/dieu-huynh', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer', + industry: 'Data Analytics', + cities: [], + }, + { + company: 'Polyture', + name: 'Evan Grobar', + email: 'egrobar@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '33', + jobTitle: 'Software Engineer', + industry: 'Data Analysis', + cities: [], + }, + { + company: 'Pondurance', + name: 'Nancy Dao', + email: 'nancyddao@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '33', + jobTitle: 'Front End Software Engineer', + industry: 'Security', + cities: [], + }, + { + company: 'Postman', + name: 'Jonathan Haviv', + email: 'jonathandhaviv@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonathanhaviv/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Potato', + name: 'Kiril Christov', + email: 'kiril.christov@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kchristov/', + campus: 'LA', + cohort: '32', + jobTitle: 'Full stack engineer', + industry: 'Technology', + cities: [], + }, + { + company: 'Power Digital', + name: 'Feiyi Wu', + email: 'freyawu10@gmail.com', + linkedIn: 'https://www.linkedin.com/in/freya-wu/', + campus: 'LA', + cohort: '45', + jobTitle: 'Jr. Software Engineer', + industry: 'Marketing', + cities: [], + }, + { + company: 'Prescriptive Data', + name: 'Nathan Le Master', + email: 'nlemaster47@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nathan-le-master/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Frontend Developer', + industry: 'Building Management', + cities: [], + }, + { + company: 'Priceline', + name: 'Tommy Liang', + email: 'tommyliangsays@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mrtommyliang/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer - Frontend', + industry: 'Travel', + cities: [], + }, + { + company: 'PRIME', + name: 'Andrew Park', + email: 'andrewchanwonpark@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andrew-c-park/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Shopify Developer', + industry: 'Restaurant, Food, and Beverage', + cities: [], + }, + { + company: 'Prime Therapeutics', + name: 'Dennis Cheung', + email: 'dennis.kh.cheung@gmail.com', + linkedIn: 'https://www.linkedin.com/in/denniskhcheung/', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Senior Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Principal Financial Group', + name: 'Stephen Lee', + email: 'stphn.l.nyc@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stphnl/', + campus: 'NYOI', + cohort: '2', + jobTitle: 'Software Engineer II', + industry: 'Insurance', + cities: [], + }, + { + company: 'ProdataKey', + name: 'William Murphy', + email: 'w.williamjmurphy@gmail.com', + linkedIn: 'https://www.linkedin.com/in/w-william-j-murphy/', + campus: 'FTRI / CTRI', + cohort: '15', + jobTitle: 'Software Engineer', + industry: 'Business Tech/Enterprise Tech', + cities: [], + }, + { + company: 'Proov (MFB Fertility)', + name: 'Brian Pham', + email: 'br.pham13@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brpham13/', + campus: 'LA / WCRI', + cohort: '53', + jobTitle: 'Frontend Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Prosper Marketplace', + name: 'David Levien', + email: 'david.levien1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dlev01/', + campus: 'LA', + cohort: '28', + jobTitle: 'Senior Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Providence Health & Services', + name: 'Jared Weiss', + email: 'weissjmw@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jaredmweiss/', + campus: 'NYC', + cohort: '2', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Prudential Financial', + name: 'Michael Lam', + email: 'mlamchamkee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mlamchamkee/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Director, Tech Lead', + industry: 'Insurance', + cities: [], + }, + { + company: 'Prudential Financial', + name: 'Perla Royer', + email: 'perlaroyerc@gmail.com', + linkedIn: 'https://www.linkedin.com/in/perlaroyerc/', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Purpose Investments', + name: 'Anika Mustafiz', + email: 'munikamustafiz89@gmail.com', + linkedIn: 'https://www.linkedin.com/in/anikamustafiz-lillies/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Full Stack Developer', + industry: 'Fintech/Insurance software', + cities: [], + }, + { + company: 'Q2', + name: 'Justin Poirier', + email: 'poirierj94@gmail.com', + linkedIn: 'https://www.linkedin.com/in/justincpoirier', + campus: 'NYC / ECRI', + cohort: '40', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'QLogic LLC.', + name: 'Joe Cervino', + email: 'jciv.public@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '6', + jobTitle: 'Senior Associate - Node Engineer', + industry: '', + cities: [], + }, + { + company: 'Qrypt', + name: 'Vinit Patel', + email: 'za.vinit@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vinit-za/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Cryptography', + cities: [], + }, + { + company: 'Qualleta Inc / StartPlaying.Games', + name: 'Brian Hayashi', + email: 'BrianMHayashi@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brianmakiohayashi/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Quantgene', + name: 'Peter Fasula', + email: 'peter.fasula@gmail.com', + linkedIn: 'https://www.linkedin.com/in/petefasula/', + campus: 'NYC', + cohort: '3', + jobTitle: 'Sr. Full Stack Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Quantiphi, Inc', + name: 'Alura Chung-Mehdi', + email: 'aluracm@gmail.com', + linkedIn: 'linkedin.com/alura-chungmehdi', + campus: 'FTRI', + cohort: '1', + jobTitle: 'Software Developer', + industry: 'Conversational AI', + cities: [], + }, + { + company: 'Quantum Metric', + name: 'Justin Blalock', + email: 'justin.m.blalock@gmail.com', + linkedIn: 'https://www.linkedin.com/in/justinmblalock/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Customer Success Engineer', + industry: 'Technology', + cities: [], + }, + { + company: 'Railbird', + name: 'Justin Paige', + email: 'justinpaige3@gmail.com', + linkedIn: 'https://www.linkedin.com/in/justin-paige/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Rainmaker Games', + name: 'Julia Collins', + email: 'Julia.col@protonmail.com', + linkedIn: '', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Lead Frontend Engineer (Web3)', + industry: 'Blockchain baby', + cities: [], + }, + { + company: 'Rally Health', + name: 'Stefan Pougatchev', + email: 'Stefan.Pougatchev@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stefanpougatchev/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer II', + industry: 'Health/Insurance', + cities: [], + }, + { + company: 'Raytheon Technologies', + name: 'Troy Prejusa', + email: 'prejusa.troy@gmail.com', + linkedIn: 'https://www.linkedin.com/in/troyprejusa/', + campus: 'LA / WCRI', + cohort: '54', + jobTitle: 'Software Engineer II', + industry: 'Aerospace', + cities: [], + }, + { + company: 'Ready Responders', + name: 'Joel Rivera', + email: 'realjoelrivera@gmail.com', + linkedIn: 'https://www.linkedin.com/in/RealJoelRivera', + campus: 'NYC', + cohort: '11', + jobTitle: 'React Developer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Record360', + name: 'Abby Chao', + email: 'abigail.chao@gmail.com', + linkedIn: 'https://www.linkedin.com/in/abbychao/', + campus: 'NYC', + cohort: '12', + jobTitle: 'CEO', + industry: 'Rental Inspection', + cities: [], + }, + { + company: 'Recurate', + name: 'PJ Bannon', + email: 'bannon.pj@gmail.com', + linkedIn: 'https://www.linkedin.com/in/paulbannon/', + campus: 'NYOI', + cohort: '3', + jobTitle: 'Frontend Engineer', + industry: 'Retail', + cities: [], + }, + { + company: 'Recurate', + name: 'Andrew Altman', + email: 'andrewaltman@outlook.com', + linkedIn: 'https://www.linkedin.com/in/andrewaltman1/', + campus: 'NYOI', + cohort: '3', + jobTitle: 'Lead Frontend Engineer', + industry: 'Business Tech/Enterprise Tech', + cities: [], + }, + { + company: 'Red Bull North America', + name: 'Catherine Larcheveque', + email: 'clarcheveque14@gmail.com', + linkedIn: 'https://www.linkedin.com/in/clarcheveque', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Automation Engineer', + industry: 'Restaurant, Food, and Beverage', + cities: [], + }, + { + company: 'Reddit', + name: 'Jessikeรฉ Campbell-Walker', + email: 'jessikeecw@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jessikeecampbellwalker/', + campus: 'LA', + cohort: '34', + jobTitle: 'Junior Front End Engineer', + industry: 'Internet Media', + cities: [], + }, + { + company: 'Redox', + name: 'Jacquelyn Whitworth', + email: 'jackie.whitworth@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jackiewhitworth/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Full Stack Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Redwood Coding Academy', + name: 'Alexander Landeros', + email: 'Alexander.Landeros1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexander-landeros/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Dev Instructor', + industry: 'Edtech', + cities: [], + }, + { + company: 'REEF', + name: 'Linda Everswick', + email: 'lindaeverswick@gmail.com', + linkedIn: 'https://www.linkedin.com/linda-everswick/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Front end engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Remine', + name: 'JJ Friedman', + email: 'friedmanjarred@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jj-friedman/', + campus: 'LA', + cohort: '33', + jobTitle: 'Software Engineer II - Web/Mobile', + industry: 'PropTech', + cities: [], + }, + { + company: 'Remote', + name: 'Bianca Picasso', + email: 'bianca.picasso@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bianca-picasso/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Engineer I', + industry: 'Research', + cities: [], + }, + { + company: 'Rent the Runway', + name: 'Rebecca Schell', + email: 'Rebeccaschell503@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rschelly/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Senior Front End Engineer', + industry: 'Fashion', + cities: [], + }, + { + company: 'Republic Services', + name: 'Lauren Acrich', + email: 'acrich.lauren@gmail.com', + linkedIn: 'https://www.linkedin.com/in/laurenacrich/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Full Stack Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Republic Services', + name: 'Nicholas Smith', + email: 'nicktsmith7@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nicholastaylorsmith/', + campus: 'LA', + cohort: '23', + jobTitle: 'Senior Front End Developer', + industry: '', + cities: [], + }, + { + company: 'Rescale', + name: 'Kushal Talele', + email: 'kushal.talele@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kushaltalele/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Software Engineer', + industry: 'Cloud computing', + cities: [], + }, + { + company: 'Research Corporation of the University of Hawaii', + name: 'Chris Fryer', + email: 'chris@hifryer.com', + linkedIn: 'linkedin.com/in/cjfryer', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Software Engineer Apprentice', + industry: 'Other', + cities: [], + }, + { + company: 'ResMed', + name: 'Jackie He', + email: 'jackie.he98@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jackie-he/', + campus: 'LA / WCRI', + cohort: '53', + jobTitle: 'Fullstack App SWE', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Restaurant Brand International (RBI)', + name: 'Christian Niedermayer', + email: 'sdchrisn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christian-niedermayer/', + campus: 'LA', + cohort: '27', + jobTitle: 'Full Stack Software Engineer', + industry: 'Food', + cities: [], + }, + { + company: 'Resy (AMEX)', + name: 'Jonathan Cespedes', + email: 'jmilescespedes@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonathancespedes/', + campus: 'NYC', + cohort: '7', + jobTitle: 'Senior Front-End Engineer', + industry: 'Restaurant, Food, Beverage', + cities: [], + }, + { + company: 'Reveel Group', + name: 'Jin Soo (John) Lim', + email: 'jinsoolim1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jinsoolim', + campus: 'NYC', + cohort: '21', + jobTitle: 'Frontend Developer', + industry: 'Logistics & Supply Chain', + cities: [], + }, + { + company: 'Revel', + name: 'Kayliegh Hill', + email: 'kayliegh.hill@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kayliegh-hill/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Full Stack Engineer', + industry: 'Renewables & Environment', + cities: [], + }, + { + company: 'Reverb', + name: 'Grace Park', + email: 'gracepark01@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '20', + jobTitle: 'software engineer', + industry: 'ecommerce', + cities: [], + }, + { + company: 'Revolution Prep', + name: 'Max Weisenberger', + email: 'germanbluemax@gmail.com', + linkedIn: 'https://www.linkedin.com/in/maxweisen/', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer', + industry: 'Education', + cities: [], + }, + { + company: 'RF-Smart', + name: 'Michael Snyder', + email: 'msnyder1992@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michaelcharlessnyder/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'JavaScript Applications Developer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Rice University', + name: 'Thasanee Puttamadilok', + email: 'meow3525@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thasanee-p-686125243/', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Front End Software Engineer', + industry: 'Research', + cities: [], + }, + { + company: 'Rightway', + name: 'Dylan Feldman', + email: 'dfeldman24@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dylan-feldman/', + campus: 'LA', + cohort: '45', + jobTitle: 'Software engineer', + industry: 'Healthcare navigation', + cities: [], + }, + { + company: 'Riot Games', + name: 'Pauline Chang', + email: 'paulseonchang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/pskchang/', + campus: 'LA', + cohort: '22', + jobTitle: 'Associate Software Engineer', + industry: '', + cities: [], + }, + { + company: 'RIPL', + name: 'Jared Veltsos', + email: 'Veltsos.jared@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jaredveltsos/', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Rivian', + name: 'Luis Lo', + email: 'kwun.man.lo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/luis-lo/', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Engineer', + industry: 'Electric Vehicle', + cities: [], + }, + { + company: 'Rivian', + name: 'Matthew Salvador', + email: 'matthew.jsalvador@gmail.com', + linkedIn: 'https://www.linkedin.com/in/matthewsalvador/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Full Stack Software Engineer II', + industry: 'Automotive', + cities: [], + }, + { + company: 'Rivian', + name: 'Stacy Learn', + email: 'sslearn07@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stacy-learn/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Software Engineer II', + industry: 'Automotive', + cities: [], + }, + { + company: 'Rivian', + name: 'Thomas Lutz', + email: 'tlutz65@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thomas-j-lutz/', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Automotive', + cities: [], + }, + { + company: 'Rocket Auto', + name: 'Tommy Han', + email: 'tommy.han.cs@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tommy-han-cs/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Senior Javascript Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Rocksbox', + name: 'Ece Isenbike Ozalp', + email: 'eceiozalp@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eceiozalp', + campus: 'PTRI', + cohort: '4', + jobTitle: 'Software Engineer', + industry: 'Jewelry Ecommerce', + cities: [], + }, + { + company: 'RockStep Solutions', + name: 'Matthew McGowan', + email: 'matthew.c.mcgowan@gmail.com', + linkedIn: 'https://www.linkedin.com/in/matthewcharlesmcgowan/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Software Release Manager', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Rohirrim', + name: 'Alex Corlin', + email: 'alex.corlin6@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alex-corlin/', + campus: 'FTRI / CTRI', + cohort: '7', + jobTitle: 'Full Stack Engineer', + industry: 'Artificial Intelligence', + cities: [], + }, + { + company: 'Rohirrim', + name: 'Simon Chen', + email: 'simonchn160@gmail.com', + linkedIn: 'https://www.linkedin.com/in/simonchen7/', + campus: 'FTRI / CTRI', + cohort: '7', + jobTitle: 'Full Stack Engineer', + industry: 'Artificial Intelligence', + cities: [], + }, + { + company: 'Roivant', + name: 'Jamie Schiff', + email: 'jamie.abrams.schiff@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jamie-schiff/', + campus: 'NYC / ECRI', + cohort: '1', + jobTitle: 'Technology Analyst', + industry: 'Biotech', + cities: [], + }, + { + company: 'Rokt', + name: 'Michael Hoang', + email: 'michaelhoang781@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michaelhoang1/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Frontend Software Engineer', + industry: 'Digital Advertising/E-commerce', + cities: [], + }, + { + company: 'Roll', + name: 'Eric Choy', + email: 'echoy20@gmail.com', + linkedIn: 'https://www.linkedin.com/in/silly-turtle/', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Roll', + name: 'Marlon Wiprud', + email: 'Marlonwiprud1@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Roll', + name: 'Marlon Wiprud', + email: 'Marlonwiprud1@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Search and ads', + cities: [], + }, + { + company: 'Rose Digital', + name: 'Chet (ChetBABY!) Hay', + email: 'chet.hay@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chethay/', + campus: 'LA', + cohort: '28', + jobTitle: 'Jr. Frontend Engineer', + industry: 'Digital Agency/Client Services', + cities: [], + }, + { + company: 'Rose Digital', + name: 'Linda Harrison', + email: 'lindafaithharrison@gmail.com', + linkedIn: 'https://linkedin.com/in/lindafharrison/', + campus: 'NYC', + cohort: '3', + jobTitle: 'Junior Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Ruggable', + name: 'Benjamin Lee Morrison', + email: 'newben.hd@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hdlmorrison/', + campus: 'LA', + cohort: '31', + jobTitle: 'Sr. Software Engineer', + industry: 'Commerce', + cities: [], + }, + { + company: 'Ruggable', + name: 'Andrew Nguyen', + email: 'nguyen.andrewkh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andrew-knguyen/', + campus: 'LA', + cohort: '29', + jobTitle: 'Sr. Front-End Engineer', + industry: 'E-Commerce', + cities: [], + }, + { + company: 'Ruggable', + name: 'Steven Jung', + email: 'stehyjung@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stehyjung/', + campus: 'LA', + cohort: '28', + jobTitle: 'Front End Engineer', + industry: 'E-Commerce', + cities: [], + }, + { + company: 'Rush Enterprises', + name: 'Eric Saldivar', + email: 'esaldivar1214@gmail.com', + linkedIn: 'https://www.linkedin.com/in/esaldivar1214/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Software Engineer', + industry: 'Automative', + cities: [], + }, + { + company: 'S&P Global', + name: 'Samantha Warrick', + email: 'samanthawarrick@gmail.com', + linkedIn: 'www.linkedin.com/samantha-warrick', + campus: 'LA / WCRI', + cohort: '54', + jobTitle: 'Front End Software Engineer', + industry: 'Marketing', + cities: [], + }, + { + company: 'Saggezza', + name: 'Albert Chen', + email: 'albert.chen@nyu.edu', + linkedIn: 'https://www.linkedin.com/in/albert-m-chen/', + campus: 'NYC', + cohort: '2', + jobTitle: 'Full-stack Analytics Engineer', + industry: 'Big Data, Analytics', + cities: [], + }, + { + company: 'Salesforce', + name: 'Jennifer Courtner', + email: 'jmichele.courtner@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jcourtner/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Full Stack Engineer', + industry: 'B2B', + cities: [], + }, + { + company: 'San Francisco State University', + name: 'Paul Valderama', + email: 'pvalderama@gmail.com', + linkedIn: 'https://www.linkedin.com/in/paulvalderama/', + campus: 'LA / WCRI', + cohort: '22', + jobTitle: 'Senior Web and Mobile Developer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'SAP', + name: 'Charlie Maloney', + email: 'charliemaloney200@gmail.com', + linkedIn: 'https://www.linkedin.com/in/charlie-maloney/', + campus: 'LA', + cohort: '35', + jobTitle: 'Front End Developer', + industry: 'Enterprise Software', + cities: [], + }, + { + company: 'SAP', + name: 'Sylvia Liu', + email: 'sylvs.liu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/liusylvia949/', + campus: 'LA', + cohort: '46', + jobTitle: 'Frontend Software Engineer', + industry: 'Business Software', + cities: [], + }, + { + company: 'Sayari', + name: 'SEAN YALDA', + email: 'seanyalda@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sean-yalda/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Senior Full Stack Developer', + industry: 'Data Intelligence', + cities: [], + }, + { + company: 'Sayari Labs', + name: 'Michael Gower', + email: 'GowerMikey@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mikeygower/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Senior Full Stack Engineer', + industry: 'Financial Data', + cities: [], + }, + { + company: 'Scale Computing', + name: 'Jason Charles de vera', + email: 'jasoncdevera@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jason-charles-de-vera/', + campus: 'FTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Cloud Technology', + cities: [], + }, + { + company: 'Scale Computing', + name: 'Connor Dillon', + email: 'connordillon06@gmail.com', + linkedIn: 'https://www.linkedin.com/in/connor-dillon/', + campus: 'FTRI / CTRI', + cohort: '16', + jobTitle: 'Software Development Engineer', + industry: 'Business Tech/Enterprise Tech', + cities: [], + }, + { + company: 'Science', + name: 'Michelle Leong', + email: 'leong.michellew@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michelle-w-leong/', + campus: 'LA / WCRI', + cohort: '56', + jobTitle: 'Software Engineer', + industry: 'Biotech', + cities: [], + }, + { + company: 'Science 37', + name: 'Tristan Schoenfeld', + email: 'tristans7@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tristan-schoenfeld/', + campus: 'LA', + cohort: '26', + jobTitle: 'Sr. Frontend Engineer', + industry: 'Research', + cities: [], + }, + { + company: 'ScienceLogic', + name: 'Nick Kruckenberg', + email: 'nkruckenberg@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nicholaskruckenberg/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Engineer', + industry: 'AIOps, IT monitoring and automation', + cities: [], + }, + { + company: 'SciTec', + name: 'Forest Everest Leigh', + email: 'theforestleigh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/forestleigh/', + campus: 'LA / WCRI', + cohort: '53', + jobTitle: 'Senior Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'SDL', + name: 'Jamar Dawson', + email: 'Dawsonjamar@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '30', + jobTitle: 'Front End Engineer (Mid Level)', + industry: 'Translation', + cities: [], + }, + { + company: 'SEAT:CODE', + name: 'Andrรฉs Gutiรฉrrez Ramรญrez', + email: 'agfeynman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andresgutierrezramirez/', + campus: 'PTRI', + cohort: '5', + jobTitle: 'Senior Fullstack Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Second Wave Technologies', + name: 'Nicholas Suzuki', + email: 'nicholassuzuki@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/nicholas-j-suzuki/', + campus: 'FTRI / CTRI', + cohort: '5', + jobTitle: 'Software Engineer', + industry: 'Consulting', + cities: [], + }, + { + company: 'SecureSeniorConnections', + name: 'Timothy', + email: 'tim.atapagra@gmail.com', + linkedIn: 'https://www.linkedin.com/in/timpagra/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Software Developer', + industry: 'Hospitals', + cities: [], + }, + { + company: 'Seed Health', + name: 'John SaeHwan Lee', + email: 'john.saehwan.lee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/john-saehwan-lee/', + campus: 'NYC / ECRI', + cohort: '39', + jobTitle: 'Fullstack Software Engineer I', + industry: 'Fitness/Wellness', + cities: [], + }, + { + company: 'SeedFi', + name: 'Peter Millspaugh', + email: 'peterdgmillspaugh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/peter-millspaugh/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Seedfi', + name: 'Stephen Grable', + email: 'stephengrable@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stephen-grable/', + campus: 'NYC', + cohort: '3', + jobTitle: 'Senior Software Engineer', + industry: 'Finance', + cities: [], + }, + { + company: 'SEL', + name: 'Jace Crowe', + email: 'jace.crowe@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jacecrowe/', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Software Engineer - Front End', + industry: 'Energy/Cleantech/Greentech', + cities: [], + }, + { + company: 'Send Out Carda', + name: 'Chris romano', + email: 'Chrispaulromano@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '15', + jobTitle: 'Front end engineer', + industry: 'Not sure: itโ€™s a subscription service for designing hallmark style cards', + cities: [], + }, + { + company: 'SENSE Chat', + name: 'Donte Nall', + email: 'donte.nall@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '25', + jobTitle: 'Senior Mobile Developer', + industry: 'Consulting', + cities: [], + }, + { + company: 'Sensei', + name: 'Kevin Fey', + email: 'kevinfey@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kevin-fey/', + campus: 'LA', + cohort: '37', + jobTitle: 'Senior Frontend Engineer', + industry: 'Wellness', + cities: [], + }, + { + company: 'SequinAR', + name: 'Wyatt Bell', + email: 'wcbell51@gmail.com', + linkedIn: 'https://www.linkedin.com/in/wyatt-bell1/', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Engineer', + industry: 'Augmented Reality, Entertainment', + cities: [], + }, + { + company: 'ServiceTrade', + name: 'Robert Beier', + email: 'robert.f.beier@gmail.com', + linkedIn: 'https://www.linkedin.com/in/robert-f-beier/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Software Engineer II', + industry: 'Contractor Software', + cities: [], + }, + { + company: 'Setsail Marketing', + name: 'Kirsten Milic', + email: 'kirsten.milic@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kirsten-milic/', + campus: 'LA / WCRI', + cohort: '57', + jobTitle: 'Software Engineer', + industry: 'Marketing/Advertising', + cities: [], + }, + { + company: 'Sev1Tech', + name: 'Adam Vanek', + email: 'atvanek@gmail.com', + linkedIn: 'https://www.linkedin.com/in/atvanek/', + campus: 'FTRI / CTRI', + cohort: '15', + jobTitle: 'Full Stack Developer', + industry: 'Government', + cities: [], + }, + { + company: 'Shadow Health', + name: 'Khandker Islam', + email: 'khandker.islam46@gmail.com', + linkedIn: 'https://www.linkedin.com/in/khandkerislam/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Software Engineer II', + industry: 'Virtual Reality Education', + cities: [], + }, + { + company: 'SharpenCX', + name: 'Anu Sharma', + email: 'anu.le.pau@gmail.com', + linkedIn: 'https://www.linkedin.com/in/anulepau', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Senior Full Stack Developer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Sherwin Williams', + name: 'Seamus Ryan', + email: 'd.seamus.ryan@outlook.com', + linkedIn: 'https://www.linkedin.com/in/dseamusryan/', + campus: 'LA', + cohort: '39', + jobTitle: 'React Developer', + industry: 'Consumer', + cities: [], + }, + { + company: 'Shift', + name: 'Ralph Salazar', + email: 'ralph.slzr@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ralph-salazar', + campus: 'NYC', + cohort: '2', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Showtime', + name: 'Dan Teng', + email: 'danwteng@gmail.com', + linkedIn: 'https://www.linkedin.com/feed/', + campus: 'NYC', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Shut Up & Write!', + name: 'Anthony Al-Rifai', + email: 'anthonyalrifai@gmail.com', + linkedIn: 'https://www.linkedin.com/in/anthony-al-rifai/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Full Stack Developer', + industry: 'Events', + cities: [], + }, + { + company: 'Shutterstock', + name: 'Ari Shoham', + email: 'arishoham@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ari-shoham/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Software Engineer III', + industry: 'Photography', + cities: [], + }, + { + company: 'Shutterstock', + name: 'Eli Davis', + email: 'eli.davis42@gmail.com', + linkedIn: 'https://www.linkedin.com/in/elidavis42/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Shutterstock', + name: 'Michael Pay', + email: 'michael.edward.pay@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael-edward-pay/', + campus: 'LA', + cohort: '46', + jobTitle: 'SDET III', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Shutterstock, Inc.', + name: 'Jake B Douglas', + email: 'jbrandondouglas@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '11', + jobTitle: 'Software Engineer, Projects', + industry: 'Tech? stock photography?', + cities: [], + }, + { + company: 'Sidecar Health', + name: 'Sumin Kim', + email: 'ppsm920@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ppsm920/', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer', + industry: 'Healthcare / insurance', + cities: [], + }, + { + company: 'Sierra Nevada Corporation', + name: 'Matthew Xing', + email: 'matthew.xing@gmail.com', + linkedIn: 'https://www.linkedin.com/in/matthew-xing/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Software Engineer II - Space Systems', + industry: 'Other', + cities: [], + }, + { + company: 'Signos', + name: 'Rebecca Anderson', + email: 'randersonviolin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rebecca--anderson/', + campus: 'NYC / ECRI', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'SigTech', + name: 'Robert Howton', + email: 'robert.f.howton@gmail.com', + linkedIn: 'https://www.linkedin.com/in/roberthowton/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Fullstack Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'SimpliSafe', + name: 'Cindy Chau', + email: 'cindychau38@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cindychau38/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer II', + industry: 'Security', + cities: [], + }, + { + company: 'Simplr', + name: 'Grigor Minasyan', + email: 'grigorminasyan1998@gmail.com', + linkedIn: 'https://www.linkedin.com/in/grigor-minasyan', + campus: 'FTRI', + cohort: '1', + jobTitle: 'Front end engineer', + industry: 'Customer service software', + cities: [], + }, + { + company: 'SimplyWise', + name: 'Justin Jaeger', + email: 'jjustinjaeger@gmail.com', + linkedIn: 'https://www.linkedin.com/in/justin-jaeger/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer', + industry: 'Cloud storage', + cities: [], + }, + { + company: 'Sinclair Broadcast Group', + name: 'Michael Filoramo', + email: 'mlfiloramo@gmail.com', + linkedIn: 'linkedin.com/in/michael-filoramo/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Full Stack Software Engineer III', + industry: 'Media', + cities: [], + }, + { + company: 'Sinclair Broadcast Group', + name: 'David Beame', + email: 'dbeame291@gmail.com', + linkedIn: 'https://www.linkedin.com/in/david-beame/', + campus: 'LA / WCRI', + cohort: '55', + jobTitle: 'Associate Software Developer', + industry: 'Media', + cities: [], + }, + { + company: 'Sinclair Broadcasting', + name: 'Joshua Reed', + email: 'joshreed104@gmail.com', + linkedIn: 'https://www.linkedin.com/in/josh-a-reed/', + campus: 'LA / WCRI', + cohort: '54', + jobTitle: 'Associate Development Engineer', + industry: 'Telecommunications', + cities: [], + }, + { + company: 'Singa', + name: 'Paul Kassar', + email: 'p.kassar@hotmail.com', + linkedIn: 'https://www.linkedin.com/in/paulkassar/', + campus: 'NYC', + cohort: '3', + jobTitle: 'Engineer', + industry: 'Outdoor Recreation', + cities: [], + }, + { + company: 'SiriusXM', + name: 'Ben Brower', + email: 'Bbrower1293@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ben-brower-80660073', + campus: 'NYC', + cohort: '21', + jobTitle: 'Software Engineer III', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Skechers', + name: 'Christopher Saavedra', + email: 'cssaavedra56@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chrisssaavedra/', + campus: 'LA', + cohort: '22', + jobTitle: 'Front end engineer', + industry: 'Retail/Manufacturing', + cities: [], + }, + { + company: 'Skematic', + name: 'Christina Or', + email: 'OR.CHRISTINA27@GMAIL.COM', + linkedIn: 'https://www.linkedin.com/in/christina-or', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Sketch and Etch', + name: 'Kenny Lee', + email: 'kenkiblee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kennethkiboklee/', + campus: 'LA / WCRI', + cohort: '46', + jobTitle: 'Founding Engineer', + industry: 'Retail', + cities: [], + }, + { + company: 'SKF USA', + name: 'Steve Canavan', + email: 'stevenrosscanavan@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stevencanavan/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Front End Developer', + industry: 'Manufacturing', + cities: [], + }, + { + company: 'Skillshare Inc.', + name: 'Chris Lung', + email: 'c.lung95@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chris-lung-5b69b2ba/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Edtech', + cities: [], + }, + { + company: 'Skillstorm, contracting at Bank of America', + name: 'Adam Singer', + email: 'Spincycle01@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/adsing/', + campus: 'NYC', + cohort: '10', + jobTitle: 'Application Programmer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Skout Cybersecurity', + name: 'Garrett James', + email: 'garrettjames55@gmail.com', + linkedIn: 'https://www.linkedin.com/in/garrett-lamar-james/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Senior Software Engineer', + industry: 'Cybersecurity', + cities: [], + }, + { + company: 'Sky Betting and Gaming / Flutter Entertainment', + name: 'Robert Drake', + email: 'rmdrake8@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rmdrake8/', + campus: 'NYC / ECRI', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Sports/Sports betting', + cities: [], + }, + { + company: 'Skylark Travel', + name: 'Giuseppe Valentino', + email: 'zepvalue@gmail.com', + linkedIn: 'https://www.linkedin.com/in/zepvalue/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Senior Full Stack Developer', + industry: 'Travel', + cities: [], + }, + { + company: 'Skylight', + name: 'Michael Lu', + email: 'michaellu213@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael-lu/', + campus: 'LA', + cohort: '27', + jobTitle: 'Full Stack Engineer', + industry: 'Consumer Goods', + cities: [], + }, + { + company: 'Slalom', + name: 'Angela Franco', + email: 'angelajfranco18@gmail.com', + linkedIn: 'https://www.linkedin.com/in/angela-j-franco', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer (Consultant)', + industry: 'Consulting', + cities: [], + }, + { + company: 'slalom', + name: 'Sara Kivikas', + email: 'sarakivikas@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sara-kivikas/', + campus: 'LA', + cohort: '49', + jobTitle: 'Software Engineer', + industry: 'Consulting', + cities: [], + }, + { + company: 'Slang.ai', + name: 'Kevin Luo', + email: 'luokev1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kevinluo117/', + campus: 'NYC', + cohort: '17', + jobTitle: 'Software Engineer', + industry: 'Customer Service', + cities: [], + }, + { + company: 'SlyEco', + name: 'Nicolas Jackson', + email: 'nicolasljax@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nicjax/', + campus: 'NYOI', + cohort: '2', + jobTitle: 'Lead Software Engineer', + industry: 'Energy/Cleantech/Greentech', + cities: [], + }, + { + company: 'Smarkets', + name: 'Nicholas Healy', + email: 'nickrhealy@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nick-r-healy', + campus: 'LA', + cohort: '36', + jobTitle: 'Frontend Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Smartbiz', + name: 'Dennis Lopez', + email: 'dnnis.lpz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dennis-lopezsb/', + campus: 'LA', + cohort: '40', + jobTitle: 'Frontend Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Smartrr', + name: 'Jeffrey Zheng', + email: 'zhengj98@outlook.com', + linkedIn: 'https://www.linkedin.com/in/jefzheng/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Software Developer', + industry: 'SaaS', + cities: [], + }, + { + company: 'SmartSheet', + name: 'Isaiah Delgado', + email: 'Isaiah.del621@gmail.com', + linkedIn: 'https://www.linkedin.com/in/isaiahdel/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Software Engineer I', + industry: 'Computer Hardware & Software', + cities: [], + }, + { + company: 'SmartThings', + name: 'Samuel Carrasco', + email: 'Samhcarrasco@gmail.com', + linkedIn: 'https://www.linkedin.com/in/samuelhcarrasco', + campus: 'NYC', + cohort: '31', + jobTitle: 'Associate Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Snag Films', + name: 'Muhammad Sheikh', + email: 'muhammad.sheikh93@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/mhsheikh/', + campus: 'NYC', + cohort: '3', + jobTitle: 'Software Developer', + industry: '', + cities: [], + }, + { + company: 'Snap eHealth', + name: 'Jordan Hisel', + email: 'hiseljm@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jordan-h-3b7686121/', + campus: 'LA', + cohort: '45', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Snap Inc', + name: 'Christopher Guizzetti', + email: 'guizzettic@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christopherguizzetti', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Snap Inc', + name: 'Madeline Doctor', + email: 'madelinemdoctor@gmail.com', + linkedIn: 'https://www.linkedin.com/in/madeline-doctor/', + campus: 'NYOI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Snap Inc.', + name: 'Kirsten Yoon', + email: 'kirstenyoon@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kirstenyoon', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer', + industry: 'camera, social media', + cities: [], + }, + { + company: 'Socialive', + name: 'Alexander Infante', + email: 'alexinfante17@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexander-infante/', + campus: 'LA', + cohort: '35', + jobTitle: 'Platform Engineer', + industry: 'Video Streaming', + cities: [], + }, + { + company: 'SoftWriters', + name: 'Jane You', + email: 'janeyou94@gmail.com', + linkedIn: 'linkedin.com/in/janeyou94', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Sojo', + name: 'Irina Khafizova', + email: 'irinakhafi@gmail.com', + linkedIn: 'https://www.linkedin.com/in/irina-khafizova/', + campus: 'NYC / ECRI', + cohort: '38', + jobTitle: 'Frontend software engineer', + industry: 'Hospitality', + cities: [], + }, + { + company: 'Solera Health', + name: 'Joel Park', + email: 'Joelpark97@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joelprkk/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Solid State Scientific Corporation', + name: 'Tadd LeRocque', + email: 't.lerocque@gmail.com', + linkedIn: 'https://www.linkedin.com/in/taddlerocque/', + campus: 'NYC / ECRI', + cohort: '40', + jobTitle: 'DevOps Software Developer', + industry: 'Data/Analytics/Cloud', + cities: [], + }, + { + company: 'Solo', + name: 'Carly Yarnell', + email: 'carly.yarnell21@gmail.com', + linkedIn: 'https://www.linkedin.com/in/carly-yarnell/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Solvent', + name: 'Adam Seery', + email: 'acseery@gmail.com', + linkedIn: 'www.linkedin.com/in/adam-seery', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'SOMA Global', + name: 'Adam Moore', + email: 'moore76sc@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adam-moore-se/', + campus: 'FTRI', + cohort: '6', + jobTitle: 'Platform Engineer', + industry: 'Public Safety', + cities: [], + }, + { + company: 'Sonos', + name: 'Austin Andrews', + email: 'austinandrews@berkeley.edu', + linkedIn: 'https://www.linkedin.com/in/austinandrews17', + campus: 'FTRI', + cohort: '7', + jobTitle: 'Release Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Sonos', + name: 'Alexander Nance', + email: 'balexn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/balexandernance', + campus: 'NYC', + cohort: '23', + jobTitle: 'Senior Software Engineer', + industry: 'Consumer Electronics', + cities: [], + }, + { + company: 'Sonr', + name: 'Ian Judd', + email: 'Iankimjudd@gmail.com', + linkedIn: 'https://www.linkedin.com/in/iankjudd/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Full Stack Developer', + industry: 'Web3', + cities: [], + }, + { + company: 'Sourcepoint Technologies', + name: 'Adam straus', + email: 'a.straus1@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '18', + jobTitle: 'Software Engineer', + industry: 'SaaS', + cities: [], + }, + { + company: 'Southern California Edison (via Sharp Decisions)', + name: 'Jie Yun (Catherine) Cheng', + email: 'chengjieyun59@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cat-cheng/', + campus: 'LA', + cohort: '33', + jobTitle: 'Sr. Full Stack Developer', + industry: 'Energy', + cities: [], + }, + { + company: 'SparkCognition', + name: 'Harvey Nguyen', + email: 'harveynwynn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/harveynwynn/', + campus: 'LA', + cohort: '47', + jobTitle: 'Software Engineer II', + industry: 'Artificial intelligence', + cities: [], + }, + { + company: 'SparrowFi', + name: 'Alex Barbazan', + email: 'Agbarbazan@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Spatial Data Logic', + name: 'Thomas Lukasiewicz', + email: 'tlukasiewicz89@gmail.com', + linkedIn: 'https://www.linkedin.com/feed/', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Spearmint', + name: 'Chloe Aribo', + email: 'chloearibo92@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chloe-aribo/', + campus: 'LA', + cohort: '33', + jobTitle: 'Senior Software Engineer', + industry: 'Security', + cities: [], + }, + { + company: 'SpecTrust', + name: 'Tehya Rassman', + email: 'tehyaarassman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tehya-rassman/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Software Engineer', + industry: 'Cybercrime', + cities: [], + }, + { + company: 'Specturm', + name: 'Sanjay Lavingia', + email: 'SanjayLavingia@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sanjay-lavingia/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Telecom', + cities: [], + }, + { + company: 'Spirent Communications', + name: 'Dylan Bury', + email: 'dylanbury@protonmail.com', + linkedIn: 'https://www.linkedin.com/in/dylanbury/', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer', + industry: 'Telecommunications', + cities: [], + }, + { + company: 'Splash Financial', + name: 'Bahram Bagherzadeh', + email: 'bjbagher@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bbagher/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Senior Software Engineer', + industry: 'Finance', + cities: [], + }, + { + company: 'Splunk', + name: 'Caroline Kimball', + email: 'kimballcaroline@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kimballcaroline/', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Software Engineer', + industry: 'Security/Data Privacy', + cities: [], + }, + { + company: 'Spotify', + name: 'Aaron Bart-Addison', + email: 'abaddison16@gmail.com', + linkedIn: 'https://www.linkedin.com/in/abaddison16/', + campus: 'NYC', + cohort: '6', + jobTitle: 'Web Engineer II', + industry: '', + cities: [], + }, + { + company: 'Spotify', + name: 'Amanda Flink', + email: 'avflinkette@gmail.com', + linkedIn: 'https://www.linkedin.com/in/amandaflink/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Senior Web Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Spotify', + name: 'Chris Kopcow', + email: 'ckopcow@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christopherkopcow/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Technical Writer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Spotify', + name: 'Trevor Gray', + email: 'trevor.m.gray@outlook.com', + linkedIn: 'https://www.linkedin.com/mwlite/in/trev-gray', + campus: 'FTRI', + cohort: '7', + jobTitle: 'Frontend Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Spring Health', + name: 'Kassandra Meyer', + email: 'kassandram022@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kassandram/', + campus: 'LA', + cohort: '31', + jobTitle: 'Frontend Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'SpringHealth', + name: 'Matthew Huang', + email: 'matthewhuang24@gmail.com', + linkedIn: 'https://www.linkedin.com/in/matthew-huang/', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Spruce', + name: 'Edward Ryan', + email: '15ryane@gmail.com', + linkedIn: 'https://www.linkedin.com/in/edward-ryan/', + campus: 'LA', + cohort: '27', + jobTitle: 'Software Engineer', + industry: 'Hospitality Services', + cities: [], + }, + { + company: 'SPS Health', + name: 'Mark Teets', + email: 'markteets@gmail.com', + linkedIn: 'https://www.linkedin.com/in/markteets/', + campus: 'FTRI / CTRI', + cohort: '15', + jobTitle: 'Application Developer', + industry: 'Healthtech/Healthcare', + cities: [], + }, + { + company: 'Spur Reply', + name: 'Jeffrey Pettis', + email: 'jeffrey.pettis@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jeffreypettis/', + campus: 'PTRI', + cohort: '9', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Square', + name: 'Christopher Akinrinade', + email: 'chris.akinrinade@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christopher-akinrinade/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Square', + name: 'Juan Espinoza', + email: 'espinozajuan562@gmail.com', + linkedIn: 'https://www.linkedin.com/in/espinoza-juan/', + campus: 'LA', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Square Root, Inc.', + name: 'Angel Vega', + email: 'angelvega85@gmail.com', + linkedIn: 'https://www.linkedin.com/in/angel-e-vega', + campus: 'LA', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Information Technology', + cities: [], + }, + { + company: 'STA Group', + name: 'Gabriel Machado', + email: 'bielchristo@hotmail.com', + linkedIn: '', + campus: 'LA', + cohort: '42', + jobTitle: 'UI Engineer', + industry: 'Consulting', + cities: [], + }, + { + company: 'Stacked Invest', + name: 'Ross Lamerson', + email: 'ross.lamerson@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lamerson28/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Software Engineer - Front End', + industry: 'Cryptocurrency / Fintech', + cities: [], + }, + { + company: 'Standard Bots', + name: 'Arshia Masih', + email: 'arshia.masih@gmail.com', + linkedIn: 'https://www.linkedin.com/in/arshiamasih/', + campus: 'LA', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Robotics / Industrial Automation', + cities: [], + }, + { + company: 'Starbucks', + name: 'Sam Carter', + email: 'sammahcarter@gmail.com', + linkedIn: 'https://linkedin.com/in/cartersamj', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Engineer', + industry: 'Restaurant, Food, and Beverage', + cities: [], + }, + { + company: 'Stardust', + name: 'James Tu', + email: 'tu.james@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jamestu2000/', + campus: 'LA', + cohort: '21', + jobTitle: 'Full Stack Engineer', + industry: '', + cities: [], + }, + { + company: 'State Farm', + name: 'James Manahan', + email: 'manahanjames@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/jamesmanahan/', + campus: 'LA', + cohort: '34', + jobTitle: 'Software Developer', + industry: 'Insurance', + cities: [], + }, + { + company: 'Steel Perlot', + name: 'Morris Kolman', + email: 'morristskolman@gmail.com', + linkedIn: 'linkedin.com/in/morrykolman', + campus: 'NYOI', + cohort: '2', + jobTitle: 'Initiative Lead: Social Media', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'SteelHouse', + name: 'Jordan Betzer', + email: 'jordanbetzer@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jordanbetzer/', + campus: 'LA', + cohort: '26', + jobTitle: 'Software Engineer - Backend', + industry: 'Healthcare', + cities: [], + }, + { + company: 'SteelHouse', + name: 'Taylor Burrington', + email: 'taylor.burrington@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Ad Tech', + cities: [], + }, + { + company: 'Stem Disintermedia Inc.', + name: 'Mia Huynh', + email: 'mia@stem.is', + linkedIn: 'https://www.linkedin.com/in/miamyhuynh/', + campus: 'LA', + cohort: '22', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Storyblocks', + name: 'Eric Gomez', + email: 'Ergomez0201@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eric-gomez', + campus: 'LA / WCRI', + cohort: '48', + jobTitle: 'Senior Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Streamlit', + name: 'Sam Haar', + email: 'samhaar@gmail.com', + linkedIn: 'https://www.linkedin.com/in/samhaar/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Software Engineer', + industry: 'ML / Data / Open Source', + cities: [], + }, + { + company: 'Stride', + name: 'Kaitlin Zhang', + email: 'Kaitlin.Zhang@owasp.org', + linkedIn: 'https://www.linkedin.com/in/kaizengrowth/', + campus: 'FTRI', + cohort: '9', + jobTitle: 'Software Engineer, Writer/Instructor', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Stride Health, Inc.', + name: 'Ben Kwak', + email: 'benjamin.h.kwak@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ben-kwak/', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Engineer, Full Stack', + industry: 'Insurance', + cities: [], + }, + { + company: 'Strider Technologies ', + name: 'Timothy Chang ', + email: 'timchang87@gmail.com', + linkedIn: 'https://www.linkedin.com/in/timchang87', + campus: 'PTRI', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Stroz Friedberg', + name: 'Madalyn Baehre', + email: 'mmbaehre@gmail.com', + linkedIn: 'https://www.linkedin.com/in/madalynbaehre/', + campus: 'LA', + cohort: '20', + jobTitle: 'Full-Stack Software Developer', + industry: '', + cities: [], + }, + { + company: 'Stuff', + name: 'Joseph Toledano', + email: 'joseph.a.toledano@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joetoledano/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Developer', + industry: 'On-Demand Work', + cities: [], + }, + { + company: 'Stuller, Inc.', + name: 'Sarah Moosa', + email: '14sbethm@gmail.com', + linkedIn: 'https://linkedin.com/in/sarah-e-moosa', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Full Stack Developer', + industry: 'Retail', + cities: [], + }, + { + company: 'Stylitics', + name: 'Tania Lind', + email: 'tania.o.lind@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lind-tania/', + campus: 'LA', + cohort: '39', + jobTitle: 'Senior Frontend Engineer', + industry: 'Fashion', + cities: [], + }, + { + company: 'Suki AI', + name: 'Edward Shei', + email: 'edwardshei@gmail.com', + linkedIn: 'https://www.linkedin.com/in/edwardshei/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Engineer', + industry: 'Medical Transcription', + cities: [], + }, + { + company: 'Surfside', + name: 'Alec Below', + email: 'alecbelow@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '17', + jobTitle: 'Software Engineer - Platform Integration', + industry: 'Advertising', + cities: [], + }, + { + company: 'Suuchi.com', + name: 'David Kim', + email: 'davidkim024@gmail.com', + linkedIn: 'https://www.linkedin.com/in/davidkim024/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Senior Full Stack Engineer', + industry: 'Manufacturing', + cities: [], + }, + { + company: 'Sweetgreen', + name: 'Emilia Brizuela-Nothaft', + email: 'emiliacarmel@gmail.com', + linkedIn: 'https://www.linkedin.com/in/emilia-brizuela-nothaft/', + campus: 'LA', + cohort: '26', + jobTitle: 'Software Engineer', + industry: 'Food', + cities: [], + }, + { + company: 'Sweetgreen', + name: 'Melody Chai', + email: 'melodychai2@gmail.com', + linkedIn: 'https://www.linkedin.com/in/melodychai/', + campus: 'LA', + cohort: '26', + jobTitle: 'Engineer I', + industry: 'Fast Casual Dining', + cities: [], + }, + { + company: 'Swisher International, Inc', + name: 'John Howell', + email: 'tsjohnnyh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/johnny-r-howell/', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'eCommerce Development Supervisor', + industry: 'Other', + cities: [], + }, + { + company: 'Swoon', + name: 'Tyler Wilson', + email: 'wilsontyler95@gmail.com', + linkedIn: 'https://www.linkedin.com/in/twilsontech', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Synapse FI', + name: 'Mike Huynh', + email: 'mhuynh517@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mikehuynh28/', + campus: 'LA', + cohort: '28', + jobTitle: 'Front-End Engineer II', + industry: 'Fintech', + cities: [], + }, + { + company: 'T-Mobile', + name: 'Khang Sabre-Nguyen', + email: 'Klsabren.7@gmail.com', + linkedIn: 'https://www.linkedin.com/in/khang-sabre-nguyen/', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Software Engineer', + industry: 'Telecommunications', + cities: [], + }, + { + company: 'T-mobile', + name: 'Miaowen Zeng', + email: 'zmw0525@gmail.com', + linkedIn: 'www.linkedin.com/in/miaowen-zeng', + campus: 'FTRI / CTRI', + cohort: '7', + jobTitle: 'Associate Software Engineer', + industry: 'Telecommunications', + cities: [], + }, + { + company: 'T. Rowe Price', + name: 'Liam Fontes', + email: 'liamfontes1244@gmail.com', + linkedIn: 'https://www.linkedin.com/in/liam-fontes/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Associate Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'T. Rowe Price', + name: 'Robert Du', + email: 'robert.c.du@gmail.com', + linkedIn: 'https://www.linkedin.com/in/robert-du/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Mid-Level Software Engineer (contract-to-hire)', + industry: 'Fintech', + cities: [], + }, + { + company: 'Tailored Brands', + name: 'Viet Nguyen', + email: 'n.vietqb@gmail.com', + linkedIn: 'https://www.linkedin.com/in/viet-nguyen-2280491b2/', + campus: 'LA', + cohort: '45', + jobTitle: 'UI Engineer', + industry: 'Retail', + cities: [], + }, + { + company: 'Take Command Health', + name: 'Katie Janzen', + email: 'katiekennerjanzen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/katie-janzen/', + campus: 'NYC', + cohort: '32', + jobTitle: 'Front End Developer', + industry: 'Insurance', + cities: [], + }, + { + company: 'Talage', + name: 'Parker Hutcheson', + email: 'pdhutcheson@gmail.com', + linkedIn: 'https://www.linkedin.com/in/parkerhutcheson/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Senior Software Engineer', + industry: 'Insurtech', + cities: [], + }, + { + company: 'Tallied', + name: 'Abeer Faizan', + email: 'abeerfaizan@gmail.com', + linkedIn: 'https://www.linkedin.com/in/abeerfaizan/', + campus: 'LA', + cohort: '47', + jobTitle: 'Software Engineer 2', + industry: 'Financial Services & Digital Payments', + cities: [], + }, + { + company: 'Tandem Chat (Tandem Communications Inc.)', + name: 'John Jongsun Suh', + email: 'john.jongsun.suh@pm.me', + linkedIn: 'https://linkedin.com/in/john-jongsun-suh', + campus: 'LA', + cohort: '44', + jobTitle: 'Software Engineer', + industry: 'Communication/Productivity Software', + cities: [], + }, + { + company: 'Tapestry', + name: 'Natalie Umanzor', + email: 'umanzor2949@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nmczormick/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'E-Commerce', + cities: [], + }, + { + company: 'Target', + name: 'Courtney Doss', + email: '777.catalyst@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '40', + jobTitle: 'Software Engineer', + industry: 'Retail', + cities: [], + }, + { + company: 'Tatari', + name: 'Natalie Klein', + email: 'natklein3@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nataliesklein/', + campus: 'LA', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'TV ads', + cities: [], + }, + { + company: 'TaxNow', + name: 'Tanner Lyon', + email: 'Tannerhlyon@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tannerhlyon', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Software Engineer', + industry: 'Business Tech/Enterprise Tech', + cities: [], + }, + { + company: 'TaxSlayer', + name: 'Katherine Marrow', + email: 'kmcromer1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/katherine-marrow/', + campus: 'PTRI', + cohort: '9', + jobTitle: 'Full Stack Developer', + industry: 'Other', + cities: [], + }, + { + company: 'Teachers Pay Teachers', + name: 'Courtney Kwong', + email: 'cwkwong95@gmail.com', + linkedIn: 'https://www.linkedin.com/in/courtneywkwong/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Full Stack Engineer', + industry: 'Media', + cities: [], + }, + { + company: 'Tech Holding', + name: 'Pablo Lee', + email: 'lee.pablo.e@gmail.com', + linkedIn: 'https://linkedin.com/in/pablo-lee/', + campus: 'LA', + cohort: '24', + jobTitle: 'Software Engineer', + industry: 'Media & Advertisement', + cities: [], + }, + { + company: 'TechEmpower', + name: 'Nick Stillman', + email: 'nick.edward.stillman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nick-e-stillman/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Programmer I', + industry: 'Software Development/Consulting', + cities: [], + }, + { + company: 'Technergetics', + name: 'Cody Schexnider', + email: 'codydschexnider@gmail.com', + linkedIn: 'https://www.linkedin.com/in/schexnider/', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Junior Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Technergetics', + name: 'Angel Giron', + email: 'angel.c.giron1@gmail.con', + linkedIn: 'https://www.linkedin.com/in/acgiron/', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'TEKsystems for AMEX', + name: 'Connor Rose Delisle', + email: 'connorrose.delisle@gmail.com', + linkedIn: 'https://www.linkedin.com/in/connorrosedelisle/', + campus: 'LA', + cohort: '37', + jobTitle: 'Developer', + industry: 'Banking', + cities: [], + }, + { + company: 'Teleport', + name: 'Cole Styron', + email: 'colestyron@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cole-styron/', + campus: 'LA', + cohort: '40', + jobTitle: 'Software Engineer II', + industry: 'Tech', + cities: [], + }, + { + company: 'Tempus', + name: 'Eterna tsai', + email: 'One.eternity@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eterna/', + campus: 'NYC', + cohort: '7', + jobTitle: 'Software engineer', + industry: '', + cities: [], + }, + { + company: 'Tend', + name: 'Christopher Johnson', + email: 'cjbeats@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thecjjohnson/', + campus: 'LA', + cohort: '39', + jobTitle: 'Junior Software Developer', + industry: 'Dentistry', + cities: [], + }, + { + company: 'Terminus', + name: 'Jonathan Ascencio', + email: 'Jonascencio1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonascencio/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Engineer', + industry: 'Marketing Tevh', + cities: [], + }, + { + company: 'The Action Network', + name: 'Diana Li', + email: 'dianalicarrasco@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dianalicarrasco/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Software Engineer II', + industry: 'Entertainment', + cities: [], + }, + { + company: 'The Action Network', + name: 'Mahmoud Hmaidi', + email: 'mhmaidi789@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mahmoud-hmaidi-mo/', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer II', + industry: 'Entertainment', + cities: [], + }, + { + company: 'The Charles Stark Draper Laboratory, Inc.', + name: 'Kelsey Flynn', + email: 'flynn.kelseyelizabeth@gmail.com', + linkedIn: 'www.linkedin.com/in/kelseyeflynn/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Member of Technical Staff in Fullstack Web Group', + industry: 'Research', + cities: [], + }, + { + company: 'The Coates Group', + name: 'Brandon Tran', + email: 'btran140@gmail.com', + linkedIn: 'https://www.linkedin.com/in/btran140', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Typescript Full Stack Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'The Cru', + name: 'Brooke Luro', + email: 'lurob@me.com', + linkedIn: 'https://www.linkedin.com/in/brooke-luro-4413046a/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Software Engineer', + industry: 'Professional Training & Coaching', + cities: [], + }, + { + company: 'The Edge Treatment Center', + name: 'Joey Ma', + email: 'joeyma@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joeyma/', + campus: 'LA / WCRI', + cohort: '47', + jobTitle: 'Web Developer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'The Farm Project', + name: 'Quoc Bui', + email: 'quocbui@gmail.com', + linkedIn: 'https://www.linkedin.com/in/buiquoc/', + campus: 'LA', + cohort: '26', + jobTitle: 'Lead Web UI Engineer?', + industry: 'Telecommunications', + cities: [], + }, + { + company: 'The Farmerโ€™s Dog', + name: 'Willem Rosenthal', + email: 'willemrosenthal@gmail.com', + linkedIn: 'https://www.linkedin.com/in/willem-rosenthal', + campus: 'NYOI', + cohort: '1', + jobTitle: 'Software Engineer III', + industry: 'Other', + cities: [], + }, + { + company: 'the guarantors', + name: 'Dmitriy Levy', + email: 'dmitriylevy01@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dmitriy-levy/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'The Home Depot', + name: 'Eric Han', + email: 'eric.j.h92@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eric-j-han/', + campus: 'LA / WCRI', + cohort: '48', + jobTitle: 'Front-End Developer', + industry: 'Retail', + cities: [], + }, + { + company: 'The Home Depot', + name: 'Max Nikitin', + email: 'teachandtravelcn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/maxnikitin23/', + campus: 'LA', + cohort: '40', + jobTitle: 'Full Stack Software Engineer', + industry: 'Construction/retail', + cities: [], + }, + { + company: 'The New York Times', + name: 'Karl Eden', + email: 'karl94e@gmail.com', + linkedIn: 'www.linkedin.com/in/karleden', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Software Engineer', + industry: 'News/Entertainment/Streaming Platforms', + cities: [], + }, + { + company: 'The New Yorker', + name: 'Julien Devlin', + email: 'juliendevlin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/juliendevlin/', + campus: 'NYC / ECRI', + cohort: '38', + jobTitle: 'Software Developer', + industry: 'News/Entertainment/Streaming Platforms', + cities: [], + }, + { + company: 'The Perlman Clinic', + name: 'Louis Sheid', + email: 'louisxsheid@gmail.com', + linkedIn: 'https://www.linkedin.com/in/louisxsheid/', + campus: 'LA', + cohort: '36', + jobTitle: 'Full Stack Developer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'The Prospector Theater', + name: 'Kelly Cuevas', + email: 'cuev73@live.com', + linkedIn: 'https://www.linkedin.com/in/kelly-cuevas/', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Lead Frontend Engineer', + industry: 'Social Impact/Nonprofit', + cities: [], + }, + { + company: 'The Trevor Project / Tecnolochicas Pro', + name: 'Miranda Jaramillo Morales', + email: 'mirandajaramillomorales@gmail.com', + linkedIn: 'https://www.linkedin.com/in/miranda-jaramillo/', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Software Engineer II / Software Engineering Mentor', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'The Walt Disney Company', + name: 'Gabriel Machado', + email: 'bielchristo@hotmail.com', + linkedIn: 'https://www.linkedin.com/in/bielchristo/', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'The Walt Disney Company', + name: 'Ryan London', + email: 'ryel590@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ryanlondon/', + campus: 'LA', + cohort: '18', + jobTitle: 'Senior Software Engineer', + industry: 'IT', + cities: [], + }, + { + company: 'The Walt Disney Company', + name: 'Shane Taylor', + email: 'shaneallantaylor@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shane-allan-taylor/', + campus: 'LA', + cohort: '27', + jobTitle: 'Software Engineer', + industry: 'Entertainment/Media', + cities: [], + }, + { + company: 'The Walt Disney Company', + name: 'Yurii Shchyrba', + email: 'yurashchyrba@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yuriishchyrba/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Software Engineer II', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'The Washington Post', + name: 'Christelle Desire', + email: 'Cdesire20@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christelle-desire/', + campus: 'LA', + cohort: '39', + jobTitle: 'Full stack engineer', + industry: 'Newsroom', + cities: [], + }, + { + company: 'The Wing', + name: 'Xaria Kirtikar', + email: 'xariak91@gmail.com', + linkedIn: 'https://www.linkedin.com/in/xaria/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'Co-working spaces', + cities: [], + }, + { + company: 'The X Company', + name: 'Roy Quintana', + email: 'rolandquintana1991@gmail.com', + linkedIn: 'https://www.linkedin.com/in/royquintana/', + campus: 'LA', + cohort: '28', + jobTitle: 'Senior Software Engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'TheMuse', + name: 'Franklin pinnock', + email: 'pinnockf@gmail.com', + linkedIn: 'https://www.linkedin.com/in/pinnockf/', + campus: 'NYC', + cohort: '9', + jobTitle: 'Full-Stack Engineer', + industry: 'Robotics', + cities: [], + }, + { + company: 'Thomson Reuters', + name: 'Li Cheng', + email: 'lilybearcheng@gmail.com', + linkedIn: 'https://www.linkedin.com/in/li-cheng-76890540/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Integration Engineer', + industry: 'IT Services', + cities: [], + }, + { + company: 'ThreeKit', + name: 'Alison Fay', + email: 'aliglass13@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alison-fay/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Thriveworks', + name: 'Alma Eyre', + email: 'aselunar@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alma-eyre/', + campus: 'NYC / ECRI', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Thriveworks', + name: 'Charissa Ramirez', + email: 'chawissa@gmail.com', + linkedIn: 'https://linkedin.com/in/chawissa', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Ticket Bridge', + name: 'Travis Frank', + email: 'travis@travismfrank.com', + linkedIn: 'https://www.linkedin.com/in/travis-m-frank/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Founder', + industry: 'Live Events', + cities: [], + }, + { + company: 'TikTok', + name: 'James Cross', + email: 'jamespvcross@gmail.com', + linkedIn: 'https://www.linkedin.com/in/james-p-cross1/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'Social Media', + cities: [], + }, + { + company: 'TikTok', + name: 'Jason Speare', + email: 'jcspeare@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jason-speare', + campus: 'LA', + cohort: '41', + jobTitle: 'Site Reliability Engineer', + industry: 'Video Social Networking', + cities: [], + }, + { + company: 'Tinder', + name: 'Harrison Nam', + email: 'harrison.j.nam@gmail.com', + linkedIn: 'https://www.linkedin.com/in/harrison-nam/', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer', + industry: 'Social', + cities: [], + }, + { + company: 'Tinder', + name: 'Harrison Nam', + email: 'harrison.j.nam@gmail.com', + linkedIn: 'https://www.linkedin.com/in/harrison-nam/', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer II, Web Development', + industry: 'Dating', + cities: [], + }, + { + company: 'Tinder', + name: 'Serge Vartanov', + email: 'vartanov.s@gmail.com', + linkedIn: 'https://www.linkedin.com/in/svartanov/', + campus: 'LA', + cohort: '24', + jobTitle: 'Senior Backend Engineer', + industry: '', + cities: [], + }, + { + company: 'Tixologi', + name: 'Mark Nichting', + email: 'mtnichting@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mark-nichting/', + campus: 'LA / WCRI', + cohort: '53', + jobTitle: 'Frontend Engineer', + industry: 'Blockchain/Web3', + cities: [], + }, + { + company: 'Toast Inc', + name: 'Denys Dekhtiarenko', + email: 'dekhtiarenko.d@gmail.com', + linkedIn: 'https://www.linkedin.com/in/denysdekhtiarenko/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Software Engineer II', + industry: 'Restaurant software', + cities: [], + }, + { + company: 'TodayTix Group', + name: 'Xiao Li', + email: 'lixtong@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lixiaotong/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Associate Software Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'TomoCredit', + name: 'Ramtin Khoee', + email: 'Ramtin.khoee@gmail.com', + linkedIn: 'https://www.linkedin.com/mwlite/in/ramtinkhoee', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Topologe (working with the Air Force)', + name: 'Joseph Michael Corrado', + email: 'joeyycorrss@gmail.com', + linkedIn: 'https://www.linkedin.com/in/josephmichaelcorrado/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Senior Software Engineer', + industry: 'Web Dev for Air Force', + cities: [], + }, + { + company: 'Tortus', + name: 'Victor To', + email: 'victorto123@gmail.com', + linkedIn: 'https://www.linkedin.com/in/victorto1/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer', + industry: 'Real Estate Tech', + cities: [], + }, + { + company: 'Toucan', + name: 'Isaac Durand', + email: 'isaac.durand@gmail.com', + linkedIn: 'https://www.linkedin.com/in/isaacdurand', + campus: 'LA', + cohort: '5', + jobTitle: 'Senior Engineer II', + industry: '', + cities: [], + }, + { + company: 'Toucan', + name: 'Jane Kim', + email: 'jane.minhyung.kim@gmail.com', + linkedIn: 'https://www.linkedin.com/in/janeminhyungkim/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Software Engineer', + industry: 'Education tools', + cities: [], + }, + { + company: 'Toyota', + name: 'Melanie Forbes', + email: 'mforbes12@gmail.com', + linkedIn: 'https://www.linkedin.com/in/melanie-forbes-/', + campus: 'FTRI / CTRI', + cohort: '12', + jobTitle: 'Software Engineer', + industry: 'Automotive', + cities: [], + }, + { + company: 'Toyota', + name: 'Emily Hoang', + email: 'ethlin4@gmail.com', + linkedIn: 'https://www.linkedin.com/in/emilyhoang', + campus: 'FTRI / CTRI', + cohort: '14', + jobTitle: 'Software Engineer', + industry: 'Automotive', + cities: [], + }, + { + company: 'TradeAlly', + name: 'Adepeju Orefejo', + email: 'adepeju.kayode@gmail.com', + linkedIn: 'https://www.linkedin.com/adepeju-orefejo', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Backend Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Travelers Companies Inc.', + name: 'Dylan Li', + email: 'dyli797@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dli107/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: [], + }, + { + company: 'Trend micro', + name: 'Daniel Balistocky', + email: 'thestinx@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dannyb1983', + campus: 'LA', + cohort: '41', + jobTitle: 'Software engineer', + industry: 'Web security', + cities: [], + }, + { + company: 'TreviPay', + name: 'Utkarsh Uppal', + email: 'utkarshuppal@gmial.com', + linkedIn: 'https://www.linkedin.com/in/utkarshuppal/', + campus: 'LA / WCRI', + cohort: '55', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Tribe Labs Inc.', + name: 'Alexander Landeros', + email: 'alexander.landeros1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexander-landeros/', + campus: 'LA', + cohort: '38', + jobTitle: 'Frontend Software Engineer', + industry: 'Communication Tech', + cities: [], + }, + { + company: 'Trineo', + name: 'Rebecca Viner', + email: 'rtviner@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rtviner/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Engineer II', + industry: 'Software Consultancy', + cities: [], + }, + { + company: 'Tripadvisor', + name: 'Jake Bradbeer', + email: 'jakebradbeer@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jacobbradbeer/', + campus: 'LA', + cohort: '49', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'TripleLift', + name: 'Arron Nestor', + email: 'arronnestor@gmail.com', + linkedIn: 'https://www.linkedin.com/in/arron-nestor/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Cloud Infrastructure Engineer', + industry: 'Ad-Tech', + cities: [], + }, + { + company: 'Triplelift', + name: 'Kia Colbert', + email: 'colber16@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kiacolbert/', + campus: 'NYC', + cohort: '9', + jobTitle: 'Engineer I', + industry: 'Social Impact', + cities: [], + }, + { + company: 'True Tickets', + name: 'Alesi-Andreya Ladas', + email: 'alesiladas@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alesiladas/', + campus: 'NYC', + cohort: '3', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'TrueCar', + name: 'Calvin Cao', + email: 'jtcao430@gmail.com', + linkedIn: 'https://www.linkedin.com/in/calvincao9/', + campus: 'LA', + cohort: '48', + jobTitle: 'Software Engineer II', + industry: 'Marketing', + cities: [], + }, + { + company: 'TrueCar', + name: 'Zac Haluza', + email: 'zac.haluza@gmail.com', + linkedIn: 'https://www.linkedin.com/in/zhaluza/', + campus: 'NYC', + cohort: '17', + jobTitle: 'Software Engineer', + industry: 'Automotive', + cities: [], + }, + { + company: 'trueface.ai', + name: 'Sam Siye Yu', + email: 'yudataguy@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yusiye/', + campus: 'LA', + cohort: '27', + jobTitle: 'full stack developer', + industry: 'computer vision', + cities: [], + }, + { + company: 'Truepill', + name: 'Justin Baik', + email: 'bij3377@gmail.com', + linkedIn: 'https://www.linkedin.com/in/justin-baik/', + campus: 'LA', + cohort: '42', + jobTitle: 'Associate Software Engineer', + industry: 'Health Tech', + cities: [], + }, + { + company: 'Truepill', + name: 'Jonah Stewart', + email: 'jonahlstewart@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonahlstewart/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Associate Software Engineer - Backend', + industry: 'Healthtech', + cities: [], + }, + { + company: 'Turbonomic', + name: 'Tyler Hurtt', + email: 'TylerAdamHurtt@gmail.com', + linkedIn: 'https://www.linkedin.com/in/TylerHurtt/', + campus: 'LA', + cohort: '34', + jobTitle: 'Senior Software Engineer', + industry: 'Cloud & Network Monitoring', + cities: [], + }, + { + company: 'Twilio', + name: 'Christopher Docuyanan', + email: 'Christophejd@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cjdocuyanan/', + campus: 'LA', + cohort: '40', + jobTitle: 'Software Engineer (Personas R&D)', + industry: 'Communications', + cities: [], + }, + { + company: 'Twitch', + name: 'Alice Wong', + email: 'alice.sky.wong@gmail.com', + linkedIn: 'https://www.linkedin.com/in/wong-alice/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Frontend Engineer', + industry: 'IoT', + cities: [], + }, + { + company: 'Two Barrels LLC', + name: 'Ryan Rambaran', + email: 'ryanrambaran.fl@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ryan-rambaran/', + campus: 'PTRI', + cohort: '4', + jobTitle: 'Front End Developer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Two Six Labs', + name: 'Kevin Nam', + email: 'Kevinjnam@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '31', + jobTitle: 'Software Engineer - Front End', + industry: 'Cybersecurity', + cities: [], + }, + { + company: 'TwoSix Labs', + name: 'Darren Napier', + email: 'darren.napier5@gmail.com', + linkedIn: 'https://www.linkedin.com/in/darrencnapier/', + campus: 'LA', + cohort: '31', + jobTitle: 'Jr. Frontend Developer', + industry: 'Government', + cities: [], + }, + { + company: 'TwoThirtySix Labs', + name: 'Tayvon Wright', + email: 'tayvonwright@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tayvon-wright/', + campus: 'NYC', + cohort: '10', + jobTitle: 'Backend Engineer', + industry: 'Crypto', + cities: [], + }, + { + company: 'Uber', + name: 'Michael Noah', + email: 'mnoah1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mnoah/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Software Engineer II', + industry: 'Transportation', + cities: [], + }, + { + company: 'UiPath', + name: 'Eric Rodgers', + email: 'ericerodgers@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/erodgers/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Software Engineer (SE1)', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Umbra', + name: 'Joey Friedman', + email: 'friedman.joey@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joseph-friedman-803803149/', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Software Engineer', + industry: 'Aerospace', + cities: [], + }, + { + company: 'Uncommon Schools', + name: 'Taryn A Cunha', + email: 'taryn.cunha@gmail.com', + linkedIn: 'LinkedIn.com/in/taryncunha', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Integrationโ€™s Developer', + industry: 'Other', + cities: [], + }, + { + company: 'Unify Consulting', + name: 'Gibran Haq', + email: 'gibran.haq57@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gibran-haq/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Senior Consultant', + industry: 'Consulting', + cities: [], + }, + { + company: 'Uniphore', + name: 'Vince Vu', + email: 'vince.hvu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vin-vu/', + campus: 'LA', + cohort: '42', + jobTitle: 'Full Stack Developer', + industry: 'Conversational Service Automation', + cities: [], + }, + { + company: 'Unit21', + name: 'Nicole Ip', + email: 'nicole@unit21.ai', + linkedIn: '', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer', + industry: 'AI / ML', + cities: [], + }, + { + company: 'United Airlines', + name: 'Jordan Jeter', + email: 'jeter.education@gmail.com', + linkedIn: 'linkedin.com/in/jordanrjeter', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Developer - IT', + industry: 'Aerospace', + cities: [], + }, + { + company: 'United Power', + name: 'Clifford Harvey', + email: 'cliffharvey06@gmail.com', + linkedIn: 'https://www.linkedin.com/in/clifford-harvey/', + campus: 'LA', + cohort: '16', + jobTitle: 'Sr Fullstack Developer', + industry: '', + cities: [], + }, + { + company: 'United States Cold Storage Inc', + name: 'Glen Kasoff', + email: 'glen.kasoff@gmail.com', + linkedIn: 'https://www.linkedin.com/in/glen-kasoff', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Software Developer ERP', + industry: 'Other', + cities: [], + }, + { + company: 'University of California', + name: 'Justin Wouters', + email: 'justinwouters@gmail.com', + linkedIn: 'Https://www.linkedin.com/in/justinwouters', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Junior application developer', + industry: 'Other', + cities: [], + }, + { + company: 'University of Chicago, Center for the Art of East Asia', + name: 'Greg Panciera', + email: 'gregpanciera@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gregpanciera', + campus: 'LA', + cohort: '36', + jobTitle: 'Web Developer', + industry: 'Art', + cities: [], + }, + { + company: 'Unqork', + name: 'Donald Blanc', + email: 'Donaldblanc1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/donald-b/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Senior Software Engineer', + industry: 'Tech', + cities: [], + }, + { + company: 'Unum ID', + name: 'Allison Roderiques', + email: 'aeroderiques@gmail.com', + linkedIn: 'https://www.linkedin.com/in/allison-roderiques/', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Full Stack Developer', + industry: 'Other', + cities: [], + }, + { + company: 'Uphold', + name: 'Chelsea Harris', + email: 'chelseaharris137@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chelseaharris23/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Frontend Engineer', + industry: 'Crypto', + cities: [], + }, + { + company: 'Upkeep', + name: 'Elie Baik', + email: 'semsemm810@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sae-min-baik', + campus: 'LA', + cohort: '34', + jobTitle: 'Software Engineer', + industry: 'CRM', + cities: [], + }, + { + company: 'UST', + name: 'Dhruv Thota', + email: 'dthota8@gmail.com', + linkedIn: 'https://linkedin.com/in/dhruv-thota', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Software Solutions/Developer Tools', + cities: [], + }, + { + company: 'VacationRenter', + name: 'Michele Moody', + email: 'moody.lillian@gmail.com', + linkedIn: 'https://www.linkedin.com/in/milmoody/', + campus: 'LA', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Travel', + cities: [], + }, + { + company: 'Valor Performance', + name: 'Marco Tulio Gonzalez', + email: 'marco.t.gonzalez15@gmail.com', + linkedIn: 'https://www.linkedin.com/in/marcogonzalez2015/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Senior Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'VanGo', + name: 'Nicolas Venegas', + email: 'nicolasvenegasparker@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nicolas-venegas-parker/', + campus: 'LA', + cohort: '30', + jobTitle: 'Mobile Software Engineer', + industry: 'Consumer / Transportation', + cities: [], + }, + { + company: 'Vanguard', + name: 'Ian Kila', + email: 'ian.nie.kila@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ian-kila', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Application Developer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Vanguard', + name: 'Carolina Bonitatis', + email: 'carolina@bonitat.is', + linkedIn: 'https://www.linkedin.com/in/carolina-bonitatis/', + campus: 'NYC / ECRI', + cohort: '42', + jobTitle: 'Application Developer', + industry: 'Other', + cities: [], + }, + { + company: 'Vantage Point Consulting, Inc.', + name: 'Constance Cho', + email: 'chcho87@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chcho2/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Full Stack Engineer', + industry: 'Consulting', + cities: [], + }, + { + company: 'Vaulted Oak', + name: 'Alfred Sta. Iglesia', + email: 'a.sta.iglesia@gmail.com', + linkedIn: 'https://www.linkedin.com/in/astaiglesia/', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer + Solutions Architect', + industry: 'E-Commerce', + cities: [], + }, + { + company: 'VedaPointe', + name: 'Michelle Chang', + email: 'michelle.kelly.chang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michellekchang/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Software Developer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Vercel', + name: 'Jueun Grace Yun', + email: 'graceyunn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gracejueunyun/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Gaming hardware', + cities: [], + }, + { + company: 'Verily Life Sciences', + name: 'Michael Geismar', + email: 'mikelafobe@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/michael-geismar/', + campus: 'FTRI', + cohort: '2', + jobTitle: 'Software Engineer', + industry: 'Life Sciences', + cities: [], + }, + { + company: 'Veritext', + name: 'Shawn Convery', + email: 'shawnmconvery@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shawnconvery1/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Software Engineer', + industry: 'Law', + cities: [], + }, + { + company: 'Veritext', + name: 'Storm Ross', + email: 'stormaross@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stormaross/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Backend Developer', + industry: 'Legal', + cities: [], + }, + { + company: 'Verizon Media Platform', + name: 'Leonard Kee', + email: 'leonardwkee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thiskeeword/', + campus: 'LA', + cohort: '4', + jobTitle: 'Software Development Engineer II', + industry: 'Media', + cities: [], + }, + { + company: 'Vertalo', + name: 'Phillip Bannister', + email: 'phillip.kbannister@Gmail.com', + linkedIn: 'https://www.linkedin.com/in/phillipkekoabannister/', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Verys', + name: 'Ray Yao', + email: 'rocaray51@gmail.com', + linkedIn: 'https://www.linkedin.com/in/raymondyao51/', + campus: 'LA', + cohort: '27', + jobTitle: 'Software Developer', + industry: 'Consulting/Contracting Agency', + cities: [], + }, + { + company: 'Verys', + name: 'Ted Min', + email: 'tedtaemin@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '41', + jobTitle: 'Senior Software Engineer', + industry: 'Consulting', + cities: [], + }, + { + company: 'View, Inc.', + name: 'Eric Lee', + email: 'emlee54@gmail.com', + linkedIn: 'https://www.linkedin.com/in/errc-lee/', + campus: 'LA', + cohort: '45', + jobTitle: 'Software Engineer, Front-End', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Violet', + name: 'Johanna Merluza', + email: 'johanna.merluza@gmail.com', + linkedIn: 'https://www.linkedin.com/in/johannamerluza/', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Senior Full Stack Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Virga Labs', + name: 'Vance McGrady', + email: 'vancemcgrady@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vancemcgrady/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Application Developer', + industry: 'Data Analytics', + cities: [], + }, + { + company: 'Virgin Hyperloop One', + name: 'Justin Fung', + email: 'justincaseyfung@gmail.com', + linkedIn: 'https://www.linkedin.com/in/citrusvanilla/', + campus: 'LA', + cohort: '30', + jobTitle: 'Front-End Developer', + industry: 'Transportation', + cities: [], + }, + { + company: 'Virgin Orbit', + name: 'Arkadiy Nigay', + email: 'ark234@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ark234', + campus: 'LA', + cohort: '23', + jobTitle: 'Full Stack Developer', + industry: 'Aerospace', + cities: [], + }, + { + company: 'Virgin Orbit', + name: 'Eric McCorkle', + email: 'ericm.mccorkle@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eric-mccorkle/', + campus: 'LA', + cohort: '48', + jobTitle: 'Full Stack Developer', + industry: 'Aerospace', + cities: [], + }, + { + company: 'Virtru', + name: 'Jake Van Vorhis', + email: 'vanvorhisjake@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jakedoublev/', + campus: 'PTRI', + cohort: '5', + jobTitle: 'Senior Full Stack Engineer', + industry: 'Security', + cities: [], + }, + { + company: 'Visa', + name: 'Bryan Mooyeong Lee', + email: 'mylee1995@gmail.com', + linkedIn: 'https://www.linkedin.com/bryanm-lee', + campus: 'NYC', + cohort: '12', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'VMware', + name: 'Maureen Onchiri', + email: 'onchirimaureen1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/maureenonchiri/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Software Engineer', + industry: 'Tech', + cities: [], + }, + { + company: 'Volta Charging', + name: 'Maximilian Gonzalez', + email: 'thamaxlg@gmail.com', + linkedIn: 'https://www.linkedin.com/in/maximiliangonzalez/', + campus: 'LA', + cohort: '29', + jobTitle: 'Full Stack Software Engineer, Cloud Platform', + industry: 'Transportation', + cities: [], + }, + { + company: 'VS Media Inc', + name: 'Patrick Hu', + email: 'patrickhu91@gmail.com', + linkedIn: 'https://www.LinkedIn.com/in/patrickhu91', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'JavaScript Developer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'VTS', + name: 'Andy Koh', + email: 'yk567@cornell.edu', + linkedIn: 'https://www.linkedin.com/in/andersonkoh/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Engineer, Platform', + industry: 'Commercial Real Estate', + cities: [], + }, + { + company: 'W.L. Gore & Associates', + name: 'Amir Marcel', + email: 'amirmarcel@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/amir-marcel', + campus: 'LA', + cohort: '39', + jobTitle: 'Backend Developer', + industry: 'Manufacturing', + cities: [], + }, + { + company: 'Wag Labs Inc', + name: 'William Adamowicz', + email: 'william.adamowicz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/williamadamowicz/', + campus: 'LA', + cohort: '24', + jobTitle: 'Software Engineer', + industry: 'Pet Care', + cities: [], + }, + { + company: 'Walgreens', + name: 'Ed Cho', + email: 'edcho720@gmail.com', + linkedIn: 'https://www.linkedin.com/in/edcho720/', + campus: 'FTRI / CTRI', + cohort: '12', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Walmart', + name: 'ChunHao Zheng', + email: 'chz062009@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chunhz/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Software Engineer II', + industry: 'Marketing', + cities: [], + }, + { + company: 'Walmart', + name: 'Eddy Kwon', + email: 'eddykwon0@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eddykwon/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Retail', + cities: [], + }, + { + company: 'Walmart - Store No. 8', + name: 'Starvon Washington', + email: 'staronejazz@yahoo.com', + linkedIn: '', + campus: 'LA', + cohort: '19', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Walmart Global Tech', + name: 'Tao Chen', + email: 'xtc2008@gmail.com', + linkedIn: 'https://www.linkedin.com/in/xtc2008', + campus: 'NYC', + cohort: '31', + jobTitle: 'Senior Software Engineer', + industry: 'Health and Wellness', + cities: [], + }, + { + company: 'Walmart Labs', + name: 'Brian Barr', + email: 'Brian.Barr23@gmail.com', + linkedIn: 'https://www.linkedin.com/in/barrbrian/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Senior Backend Engineer (Node)', + industry: 'FinTech (?)', + cities: [], + }, + { + company: 'Walmart Labs', + name: 'Stephanie Fong', + email: 'stfongg@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stephaniefong08/', + campus: 'LA', + cohort: '24', + jobTitle: 'Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Warby Parker', + name: 'Sanaya Mirpuri', + email: 'ssmirpuri@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sanayamirpuri/', + campus: 'NYC', + cohort: '22', + jobTitle: 'BackendSoftware Engineer II', + industry: 'Retail', + cities: [], + }, + { + company: 'Warner Bros Discovery', + name: 'Mark Shin (Shino)', + email: 'pe.markshin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/markshins/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Development Engineer II', + industry: 'Entertainment', + cities: [], + }, + { + company: 'WASH', + name: 'Kevin Park', + email: 'xkevinpark@gmail.com', + linkedIn: 'https://www.linkedin.com/in/xkevinpark/', + campus: 'LA', + cohort: '42', + jobTitle: 'Software UI Engineer', + industry: 'Electronics', + cities: [], + }, + { + company: 'Wash Laundry Systems', + name: 'Harmon Huynh', + email: 'harmon.huynh@outlook.com', + linkedIn: 'https://www.linkedin.com/in/harmon-huynh/', + campus: 'LA', + cohort: '26', + jobTitle: 'Senior Software Engineer', + industry: 'Consumer Services', + cities: [], + }, + { + company: 'Watsco', + name: 'Romelo Gilbert', + email: 'romelogilbert@gmail.com', + linkedIn: 'https://www.linkedin.com/in/romelo-gilbert', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'HVAC distributor', + cities: [], + }, + { + company: 'Wayfair', + name: 'Dylan Bergstrom', + email: 'contact.dylanbergstrom@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dylan-bergstrom', + campus: 'LA', + cohort: '23', + jobTitle: 'Software Engineer L1', + industry: 'E-Commerce', + cities: [], + }, + { + company: 'Wayfair', + name: 'Jay Cogen', + email: 'jaycog44@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jaycogen/', + campus: 'LA', + cohort: '26', + jobTitle: 'Software Engineer II', + industry: 'Fintech', + cities: [], + }, + { + company: 'Wayfair', + name: 'Bryan Lee', + email: 'mylee1995@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bryanm-lee/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Software Engineer Intern', + industry: 'E-Commerce', + cities: [], + }, + { + company: 'WayScript', + name: 'Bren Yamaguchi', + email: 'Yamaguchibren@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brenyamaguchi/', + campus: 'LA', + cohort: '36', + jobTitle: 'Front End Software Engineer', + industry: 'Developer Tools', + cities: [], + }, + { + company: 'WayUp', + name: 'Angela Scerbo', + email: 'amscerbo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/angelascerbo/', + campus: 'NYC', + cohort: '2', + jobTitle: 'Frontend Software Engineer', + industry: '', + cities: [], + }, + { + company: 'Weill Cornell Medicine', + name: 'Zoew McGrath', + email: 'Zoewmcgrath@outlook.com', + linkedIn: '', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Web Developer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'WELL Health', + name: 'Elise Bare', + email: 'elisebare@gmail.com', + linkedIn: 'https://www.linkedin.com/in/elisebare/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Engineer, Front End', + industry: 'Healtchare', + cities: [], + }, + { + company: 'Well Health', + name: 'Janis Hernandez', + email: 'Janis11546@gmail.com', + linkedIn: 'https://www.linkedin.com/in/janis-h/', + campus: 'LA', + cohort: '39', + jobTitle: 'Mid-level Frontend Engineer', + industry: 'Health', + cities: [], + }, + { + company: 'Well Health', + name: 'Jesus Vargas', + email: 'jmodestov@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jesusmvargas/', + campus: 'LA', + cohort: '38', + jobTitle: 'Frontend Software Engineer', + industry: 'Health Tech', + cities: [], + }, + { + company: 'Well Health', + name: 'Michael Wang', + email: 'michaelwawang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael--wang/', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer (Backend)', + industry: 'Health Tech', + cities: [], + }, + { + company: 'Well Health', + name: 'Eric Stallings', + email: 'stallings.eric@gmail.com', + linkedIn: 'https://www.linkedin.com/in/EricStallings/', + campus: 'LA', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: [], + }, + { + company: 'Wellio', + name: 'Rachel Park', + email: 'rachelpark.dev@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rachelparkdev/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Senior Software Engineer', + industry: 'Foodtech', + cities: [], + }, + { + company: 'Wells Fargo', + name: 'Taylor Davis', + email: 'Taylor.davis7@live.com', + linkedIn: 'https://www.linkedin.com/in/taylordavis7', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Western Psychological Services (WPS)', + name: 'Justin Stoddard', + email: 'jgstoddard@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jgstoddard/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Microservices Engineer', + industry: 'Health Tech', + cities: [], + }, + { + company: 'WeWork', + name: 'Maung Maung Lay (Raphael Ram)', + email: 'ramraphael@gmail.com', + linkedIn: 'https://www.linkedin.com/in/raphaelram/', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Real Estate / Hospitality', + cities: [], + }, + { + company: 'Whisper', + name: 'Kevin Mui', + email: 'kmui.work@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kevin-mui1/', + campus: 'LA', + cohort: '24', + jobTitle: 'Server Developer', + industry: '', + cities: [], + }, + { + company: 'William Hill', + name: 'Chris Flannery', + email: 'chriswillsflannery@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chriswillsflannery/', + campus: 'NYC', + cohort: '14', + jobTitle: 'Frontend Software Engineer', + industry: 'Sports/Entertainment', + cities: [], + }, + { + company: 'William Hill', + name: 'Matt Greenberg', + email: 'mattagreenberg1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mattagreenberg/', + campus: 'NYC', + cohort: '24', + jobTitle: 'front end software engineer', + industry: 'casino', + cities: [], + }, + { + company: 'Willow Servicing', + name: 'Ian Grepo', + email: 'iangrapeo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ian-grepo/', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Windfall Data', + name: 'Bruno Portela', + email: 'bportela@pm.me', + linkedIn: 'https://www.linkedin.com/in/bgp/', + campus: 'LA', + cohort: '42', + jobTitle: 'Senior Full Stack Engineer', + industry: 'Fintech, ML, AI', + cities: [], + }, + { + company: 'Windhover Labs', + name: 'Alex McPhail', + email: 'mcphail.alex@gmail.com', + linkedIn: 'www.linkedin.com/in/mcphail-alex', + campus: 'LA / WCRI', + cohort: '53', + jobTitle: 'Software Engineer', + industry: 'Aerospace', + cities: [], + }, + { + company: 'Wiselayer', + name: 'Eric Lemay', + email: 'ericrogerlemay@gmail.com', + linkedIn: '', + campus: 'NYC / ECRI', + cohort: '31', + jobTitle: 'Software Engineer', + industry: 'Business Analytics', + cities: [], + }, + { + company: 'Wiser Solutions', + name: 'Alex Hersler', + email: 'alex@alexhersler.com', + linkedIn: 'https://www.linkedin.com/in/alex-hersler/', + campus: 'LA / WCRI', + cohort: '48', + jobTitle: 'Software Engineer II', + industry: 'Data Analytics', + cities: [], + }, + { + company: 'Wix.com', + name: 'Kenny shen', + email: 'kenny.shen313@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '27', + jobTitle: 'Solutions Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Wizely Finance', + name: 'Erik Cox', + email: 'erikbcox@gmail.com', + linkedIn: 'https://www.linkedin.com/in/erikbcox/', + campus: 'LA', + cohort: '22', + jobTitle: 'Senior Full Stack Developer', + industry: '', + cities: [], + }, + { + company: 'WorkDay', + name: 'Tu Pham', + email: 'toopham@gmail.com', + linkedIn: 'https://www.linkedin.com/in/toopham/', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Development Engineer', + industry: 'FinTech, HR', + cities: [], + }, + { + company: 'WorkFusion', + name: 'Matt Meigs', + email: 'mattmeigs@gmail.com', + linkedIn: 'https://www.linkedin.com/in/matt-meigs/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Front-End Developer', + industry: 'Intelligent Automation', + cities: [], + }, + { + company: 'WorkRamp', + name: 'Lex Choi', + email: 'lexchoi3@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lexchoi3/', + campus: 'LA', + cohort: '40', + jobTitle: 'Internal Tools/Customer Support Engineer', + industry: 'SaaS', + cities: [], + }, + { + company: 'World Wide Technology', + name: 'Christopher Davis', + email: 'chdavis0917@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chris-davis0917', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'JavaScript Developer - Material Planning', + industry: 'IT Services', + cities: [], + }, + { + company: 'World Wide Technology', + name: 'Crystal Agoncillo', + email: 'crystal.agoncillo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/agoncillo/', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Full Stack Developer', + industry: 'IT Services', + cities: [], + }, + { + company: 'World Wide Technology', + name: 'Stephanie Page', + email: 'stephanieelainepage@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stephanie-page-atx/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Associate Developer', + industry: 'Consulting', + cities: [], + }, + { + company: 'World Wide Technology', + name: 'Brett Guidry', + email: 'guidry.brett@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brett-guidry504/', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Software Engineer', + industry: 'IT Services', + cities: [], + }, + { + company: 'WPROMOTE', + name: 'Nay Linn', + email: 'naylinn.pkv@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nay-linn/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer', + industry: 'Digital Marketing', + cities: [], + }, + { + company: 'WQA', + name: 'Victor Martins', + email: 'martinsvictor287@gmail.com', + linkedIn: 'https://www.linkedin.com/in/victormartinsfemi', + campus: 'LA / WCRI', + cohort: '59', + jobTitle: 'Software Develooper', + industry: 'Consulting', + cities: [], + }, + { + company: 'WW(formally Weight Watchers)', + name: 'Mika Todd', + email: 'mikataressatodd@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mika-todd', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer', + industry: 'Health and Wellness', + cities: [], + }, + { + company: 'Wyze', + name: 'Jason Victor', + email: 'jason.victor26@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '38', + jobTitle: 'Jr. Front End Engineer', + industry: 'IoT', + cities: [], + }, + { + company: 'Xandr', + name: 'Billy Hepfinger', + email: 'bhepfing@gmail.com', + linkedIn: 'https://www.linkedin.com/in/billy-hepfinger', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer II', + industry: 'Advertising / Telecom', + cities: [], + }, + { + company: 'Xandr', + name: 'Whit Rooke', + email: 'whit.rooke@gmail.com', + linkedIn: 'https://www.linkedin.com/in/whit-rooke/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Adtech', + cities: [], + }, + { + company: 'Xinova', + name: 'Clariz Mariano', + email: 'clariz.mariano@gmail.com', + linkedIn: 'https://www.linkedin.com/in/clarmariano/', + campus: 'LA', + cohort: '22', + jobTitle: 'Software Engineer 2', + industry: '', + cities: [], + }, + { + company: 'Xtivia', + name: 'Anthony Lo', + email: '87.anthonylo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/anthonyelo/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Jr. UI Developer', + industry: 'IT Services', + cities: [], + }, + { + company: 'Yahoo', + name: 'DeriAnte Sinclair', + email: 'deriante.sinclair@gmail.com', + linkedIn: 'https://www.linkedin.com/in/deriante-sinclair/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Software Apps Engineer I', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'Yahoo', + name: 'Tom Curtin', + email: 'thisistomcurtin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tfcurtin/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Yale New Haven Health', + name: 'Aileen Chan Miranda', + email: 'aileenchany@gmail.com', + linkedIn: 'https://www.linkedin.com/in/aileen-chanmiranda/', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Web Developer', + industry: 'Healthtech/Healthcare', + cities: [], + }, + { + company: 'Yext', + name: 'Allen Xie', + email: 'axie0320@gmail.com', + linkedIn: 'https://www.linkedin.com/in/axie0320/', + campus: 'PTRI', + cohort: '4', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: [], + }, + { + company: 'YMCA Retirement Fund', + name: 'Anna Konstantinovich', + email: 'anna@anreko.design', + linkedIn: 'https://www.linkedin.com/in/anna-konstantinovich/', + campus: 'NYC', + cohort: '15', + jobTitle: "UX Designer & Developer (It's complicated - let me know if you want more details)", + industry: 'Financial Services', + cities: [], + }, + { + company: 'Zeal', + name: 'Jason Lee', + email: 'jasonmlee1020@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jasonjml/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer II', + industry: 'Fintech', + cities: [], + }, + { + company: 'Zealthy', + name: 'Kennan Budnik', + email: 'kobudnik@gmail.com', + linkedIn: 'https://linkedin.com/in/kobudnik', + campus: 'NYOI', + cohort: '2', + jobTitle: 'Software Engineer II', + industry: 'Healthtech/Healthcare', + cities: [], + }, + { + company: 'ZenBusiness', + name: 'Adam Sheff', + email: 'adamisheff@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adam-sheff/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Software Engineer', + industry: 'Entrepreneurship', + cities: [], + }, + { + company: 'ZenBusiness', + name: 'Christie Herring', + email: 'clherring@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christie-herring/', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer II', + industry: 'SaaS, business creation services', + cities: [], + }, + { + company: 'Zenefits', + name: 'Tobey Forsman', + email: 'tobeyforsman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tobeyforsman/', + campus: 'LA', + cohort: '42', + jobTitle: 'Senior Software Engineer', + industry: 'Software/Tech', + cities: [], + }, + { + company: 'zephyrx', + name: 'Brian Haller', + email: 'brian@brianhaller.com', + linkedIn: 'https://www.linkedin.com/in/brianjhaller/', + campus: 'NYC', + cohort: '14', + jobTitle: 'Software Engineer', + industry: 'med tech', + cities: [], + }, + { + company: 'ZeroPW', + name: 'Tammy Tan', + email: 'tammytan1912@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tammytan1/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Frontend Engineer', + industry: 'Computer & Network Security', + cities: [], + }, + { + company: 'Zest AI', + name: 'Ronelle Caguioa', + email: 'ronelle.caguioa@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ronellecaguioa/', + campus: 'LA', + cohort: '36', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: [], + }, + { + company: 'Zeta Global', + name: 'Chris Tang', + email: 'chrisjtang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chrisjtang', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer', + industry: 'Data', + cities: [], + }, + { + company: 'Zillow', + name: 'Cary L Chan', + email: 'caryLchan@gmail.com', + linkedIn: 'https://www.linkedin.com/in/carylchan/', + campus: 'LA', + cohort: '35', + jobTitle: 'Full Stack Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Zillow', + name: 'Hien Nguyen', + email: 'hien.qqnguyen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hienqn/', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Engineer', + industry: 'Entertainment', + cities: [], + }, + { + company: 'Zillow Group', + name: 'Logan Thies', + email: 'logan.thies@icloud.com', + linkedIn: 'https://www.linkedin.com/in/loganthies137/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Development Engineer', + industry: 'Real Estate', + cities: [], + }, + { + company: 'Zip', + name: 'Chase Walters', + email: 'cwwalters@fastmail.com', + linkedIn: 'https://www.linkedin.com/in/charleswwalters/', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Founding Software Engineer', + industry: 'Security', + cities: [], + }, + { + company: 'Zipcar', + name: 'Sean Smith', + email: 'smith.seanm17@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sean-smith17/', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer (Front End)', + industry: 'Transportation', + cities: [], + }, + { + company: 'Zipdrug', + name: 'Tolga Mizrakci', + email: 'tolgamizrakci@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tolga-mizrakci/', + campus: 'NYC', + cohort: '10', + jobTitle: 'Senior Software Engineer', + industry: 'Health Care', + cities: [], + }, + { + company: 'ZipRecruiter', + name: 'Ryan Lee', + email: 'rynklee@gmail.com', + linkedIn: 'https://linkedin.com/in/rynklee', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer III', + industry: 'Other', + cities: [], + }, + { + company: 'Zoetis', + name: 'Eileen Cho', + email: 'eileenaracho@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eileenaracho/', + campus: 'LA / WCRI', + cohort: '56', + jobTitle: 'Data Systems Engineer', + industry: 'Other', + cities: [], + }, + { + company: 'Zogo Finance', + name: 'Derek Miller', + email: 'dsymiller@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dsymiller/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Full Stack Engineer', + industry: 'education, financial services, banking', + cities: [], + }, + { + company: 'Zoom Video Communications', + name: 'Jason Jones', + email: 'Jasonroyjones@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jasonroyjones', + campus: 'LA', + cohort: '33', + jobTitle: 'Software Development Engineer', + industry: 'Telecommunications', + cities: [], + }, + { + company: 'Zywave', + name: 'Jacob Davis', + email: 'jacob.drew.davis@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jacob-drew-davis/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Senior DevSecOps Engineer', + industry: 'Software / Tech', + cities: [], + }, +]; diff --git a/scripts/db/generateMockData/mockForums.ts b/scripts/db/generateMockData/mockForums.ts new file mode 100644 index 00000000..89d6e82c --- /dev/null +++ b/scripts/db/generateMockData/mockForums.ts @@ -0,0 +1,52 @@ +export const mockForums = [ + { + title: 'Code Crunch & Job Hunt: Battle Logs', + description: + 'Share your epic (or tragic) tales from the job search battlefield. Did you bravely conquer the coding test, or did it conquer you?', + }, + { + title: 'Debugging My Resume', + description: + 'Need help squashing those pesky resume bugs? Post your CV here and let the community help you refactor it into a job offer magnet.', + }, + { + title: 'Interview Nightmares & Dream Jobs', + description: + 'Spill the beans on your worst interview disasters and celebrate those rare moments when it actually went well. Misery loves company, and so do success stories!', + }, + { + title: 'HR: Humans or Robots?', + description: + 'Ever wonder if that HR person was a cleverly disguised bot? Share your weirdest and most robotic interactions with hiring departments.', + }, + { + title: 'Salary Negotiation: The Boss Fight', + description: + 'Tips, tricks, and epic fails from the final boss battle of job hunting: salary negotiations. Did you get the loot or just a consolation prize?', + }, + { + title: 'Coding Challenge Gauntlet', + description: + 'Post and discuss the coding challenges that made you cry, laugh, or question your career choices. Help others survive the gauntlet!', + }, + { + title: 'Office Buzzwords & Bingo', + description: + 'Share and decipher the latest buzzwords and jargon from job postings and interviews. Bonus points for the most absurd phrases.', + }, + { + title: 'Side Projects & Procrastination', + description: + 'Brag about your side projects or confess how theyโ€™re really just elaborate ways to procrastinate. Either way, weโ€™re impressed!', + }, + { + title: 'LinkedIn Lamentations', + description: + "Rant and rave about the peculiarities of LinkedIn. Endorsements, random connection requests, and the mysterious 'we found your profile' emails.", + }, + { + title: 'Rejected & Dejected: Therapy Sessions', + description: + 'A safe space to vent about job rejections and support each other through the emotional rollercoaster of the job hunt. Cookies and virtual hugs provided.', + }, +]; diff --git a/scripts/db/generateMockData/mockGraduateInvitation.ts b/scripts/db/generateMockData/mockGraduateInvitation.ts new file mode 100644 index 00000000..f18771ac --- /dev/null +++ b/scripts/db/generateMockData/mockGraduateInvitation.ts @@ -0,0 +1,902 @@ +export const mockGradInvites = [ + { + email: 'acarradice0@gravatar.com', + token: '541658530c351ab19011dc5a1cc7f796eb9fd388', + tokenExpiry: '1714386955', + isRegistered: true, + firstName: 'Alonso', + lastName: 'Carradice', + registeredAt: '1677124950', + }, + { + email: 'wbleaden1@usgs.gov', + token: '8ce87b99dc305ef8272b2261a73539156a2a4b11', + tokenExpiry: '1703047259', + isRegistered: false, + firstName: 'Wilton', + lastName: 'Bleaden', + registeredAt: '1710588748', + }, + { + email: 'ghalso2@jalbum.net', + token: '19e7fd479b1310e00940ac610b6d3731699224b3', + tokenExpiry: '1708125337', + isRegistered: true, + firstName: 'Gannon', + lastName: 'Halso', + registeredAt: '1685884782', + }, + { + email: 'dgrinter3@amazon.com', + token: '15639748a71a12b6c5b2a9e715aca9ff092877ae', + tokenExpiry: '1719655502', + isRegistered: false, + firstName: 'Doralynn', + lastName: 'Grinter', + registeredAt: '1693987127', + }, + { + email: 'wweatherley4@phoca.cz', + token: 'bc2b71d4fbd3ed3de0a0022aa21bbed4f851c755', + tokenExpiry: '1699687351', + isRegistered: true, + firstName: 'Winn', + lastName: 'Weatherley', + registeredAt: '1710066414', + }, + { + email: 'hregis5@dailymail.co.uk', + token: '01aa9782932b7772770b0c4eae54787dea5f9638', + tokenExpiry: '1719748549', + isRegistered: true, + firstName: 'Hermon', + lastName: 'Regis', + registeredAt: '1694142909', + }, + { + email: 'crousby6@apache.org', + token: '22ce1f16d86aa9b601a6bd044d3bbc455b4f36e2', + tokenExpiry: '1721465604', + isRegistered: false, + firstName: 'Cordie', + lastName: 'Rousby', + registeredAt: '1682025913', + }, + { + email: 'mriseborough7@clickbank.net', + token: '3fad65274e7439c2c0a35200295c46977020885f', + tokenExpiry: '1706069183', + isRegistered: false, + firstName: 'Maureene', + lastName: 'Riseborough', + registeredAt: '1686092791', + }, + { + email: 'olawson8@washington.edu', + token: '39b226afbd4282124dd31b9dd3243cb7e0b1f596', + tokenExpiry: '1704307416', + isRegistered: false, + firstName: 'Orelle', + lastName: 'Lawson', + registeredAt: '1689333880', + }, + { + email: 'jemer9@constantcontact.com', + token: 'dbc7e41297546ad0d7a437abc4573ad5ac36dd2c', + tokenExpiry: '1710382524', + isRegistered: false, + firstName: 'Jess', + lastName: 'Emer', + registeredAt: '1688557374', + }, + { + email: 'mtubblesa@nifty.com', + token: 'a664d8ee7cd56a9ce2963eae874da9c65fcd2361', + tokenExpiry: '1719286527', + isRegistered: true, + firstName: 'Mariel', + lastName: 'Tubbles', + registeredAt: '1679623674', + }, + { + email: 'pkeightleyb@webnode.com', + token: '3c78dccda8c878bb7dea64431e5811b2a75af184', + tokenExpiry: '1714278643', + isRegistered: true, + firstName: 'Perice', + lastName: 'Keightley', + registeredAt: '1690276231', + }, + { + email: 'efalcusc@mapy.cz', + token: '184efd9e68dbe020111734f78303742a65c1fd15', + tokenExpiry: '1718471384', + isRegistered: false, + firstName: 'Eula', + lastName: 'Falcus', + registeredAt: '1708142836', + }, + { + email: 'jbaldinid@simplemachines.org', + token: '26f1e984850651b64779d36d31af27602c8e714b', + tokenExpiry: '1704480185', + isRegistered: true, + firstName: 'Jacqui', + lastName: 'Baldini', + registeredAt: '1692681038', + }, + { + email: 'snorthridgee@macromedia.com', + token: '801d95108e35ccce2fe3b290803de8637d65959e', + tokenExpiry: '1715200469', + isRegistered: true, + firstName: 'Scottie', + lastName: 'Northridge', + registeredAt: '1691263603', + }, + { + email: 'dhedgerf@shareasale.com', + token: 'd681aa42bf9f2371c60c05754a93fd1dc860fec8', + tokenExpiry: '1727580488', + isRegistered: false, + firstName: 'Dorie', + lastName: 'Hedger', + registeredAt: '1687226473', + }, + { + email: 'nskeeng@yellowbook.com', + token: 'fadb33e7532fdce703106043931f2a6f15f88bc3', + tokenExpiry: '1721509297', + isRegistered: false, + firstName: 'Nadia', + lastName: 'Skeen', + registeredAt: '1695484577', + }, + { + email: 'mgroomh@samsung.com', + token: '8df1430be1cc296c94155b06a79a1e24d12b16ad', + tokenExpiry: '1698531018', + isRegistered: true, + firstName: 'Mickie', + lastName: 'Groom', + registeredAt: '1691239049', + }, + { + email: 'lkupiszi@liveinternet.ru', + token: '1740f0be8a449176d15c33a65a5c3bc011cc0f07', + tokenExpiry: '1707223534', + isRegistered: true, + firstName: 'Leticia', + lastName: 'Kupisz', + registeredAt: '1683211294', + }, + { + email: 'bdeanj@mlb.com', + token: '7f27fa69908e6aa17e28f425de5fcc57f0eeedc0', + tokenExpiry: '1717798784', + isRegistered: false, + firstName: 'Babb', + lastName: 'Dean', + registeredAt: '1686342997', + }, + { + email: 'blilleyk@blogs.com', + token: '7fb8c075412d11bebc0ba1aeca86bb08393f136b', + tokenExpiry: '1721551606', + isRegistered: false, + firstName: 'Burtie', + lastName: 'Lilley', + registeredAt: '1679902087', + }, + { + email: 'dwoodlandl@dailymotion.com', + token: '774c9ed5bf04f259139e1c14b9446c818f83ec2a', + tokenExpiry: '1721916987', + isRegistered: true, + firstName: 'Dorelle', + lastName: 'Woodland', + registeredAt: '1717510004', + }, + { + email: 'bdunlapm@dropbox.com', + token: '0ddfcd5aee883c68ff7a7a704a406998d3b95a64', + tokenExpiry: '1697506453', + isRegistered: false, + firstName: 'Burk', + lastName: 'Dunlap', + registeredAt: '1680396642', + }, + { + email: 'cdarreln@newyorker.com', + token: '53488dd01c43dfa1d596c7964a4d2f534dc8ead5', + tokenExpiry: '1724607931', + isRegistered: false, + firstName: 'Cecilius', + lastName: 'Darrel', + registeredAt: '1706643899', + }, + { + email: 'bbudcocko@va.gov', + token: 'efb168a15a3096e53d12ae9f80569d8d557c4493', + tokenExpiry: '1701718041', + isRegistered: true, + firstName: 'Brod', + lastName: 'Budcock', + registeredAt: '1676443900', + }, + { + email: 'bthickinp@ibm.com', + token: '8e4af5f631de12544c44ed442d50aafb83204a44', + tokenExpiry: '1711888928', + isRegistered: false, + firstName: 'Bayard', + lastName: 'Thickin', + registeredAt: '1695590750', + }, + { + email: 'llarringtonq@sakura.ne.jp', + token: '9951ab34e301c226be2b63b1e3f6b61e7ca6f178', + tokenExpiry: '1706943537', + isRegistered: true, + firstName: 'Lorenza', + lastName: 'Larrington', + registeredAt: '1683278978', + }, + { + email: 'rstantonr@mashable.com', + token: 'e5cd7ddfdfb812f47184272328b5510c9d8887b9', + tokenExpiry: '1707981578', + isRegistered: true, + firstName: 'Ranna', + lastName: 'Stanton', + registeredAt: '1694102332', + }, + { + email: 'scowdroys@umich.edu', + token: '43315d4d9b75715104ee90104db03bf430b78fb1', + tokenExpiry: '1705880075', + isRegistered: false, + firstName: 'Silvan', + lastName: 'Cowdroy', + registeredAt: '1698398807', + }, + { + email: 'pskirlingt@4shared.com', + token: '85d7af1fdd70f8fd165a014e08b7a4b3963ac044', + tokenExpiry: '1716827794', + isRegistered: false, + firstName: 'Pepita', + lastName: 'Skirling', + registeredAt: '1703077019', + }, + { + email: 'bspensleyu@indiatimes.com', + token: '597d4be98c6ed3ab97f2301c6da3ee55d69033ed', + tokenExpiry: '1715899465', + isRegistered: true, + firstName: 'Brinna', + lastName: 'Spensley', + registeredAt: '1690415190', + }, + { + email: 'lblaisv@networksolutions.com', + token: 'b7502e54d2a16983c2ffab259798841eec4e8272', + tokenExpiry: '1705285133', + isRegistered: true, + firstName: 'Leta', + lastName: 'Blais', + registeredAt: '1704030885', + }, + { + email: 'olehuquetw@privacy.gov.au', + token: 'd368e4882e0e66e2c93020c54534bb56ff2d9d52', + tokenExpiry: '1721342625', + isRegistered: true, + firstName: 'Onfre', + lastName: 'Le Huquet', + registeredAt: '1700655434', + }, + { + email: 'cedworthiex@yelp.com', + token: '8cb9209121c6007c214e4d7bc010190ee2bdd22a', + tokenExpiry: '1701803096', + isRegistered: false, + firstName: 'Cairistiona', + lastName: 'Edworthie', + registeredAt: '1695427010', + }, + { + email: 'jchongy@cpanel.net', + token: '239edcea2ff7a2c73af428692f85be9b2ffab43f', + tokenExpiry: '1725107146', + isRegistered: true, + firstName: 'Jonas', + lastName: 'Chong', + registeredAt: '1700604074', + }, + { + email: 'emintoz@statcounter.com', + token: '4fdd3aae97ec4a7d44202cbfe5034517d0f00ebc', + tokenExpiry: '1720135279', + isRegistered: true, + firstName: 'Ezra', + lastName: 'Minto', + registeredAt: '1701904952', + }, + { + email: 'vlicari10@businessweek.com', + token: '752025d65cc509ae58038fa039654c7c5ccff278', + tokenExpiry: '1718335874', + isRegistered: false, + firstName: 'Virgina', + lastName: 'Licari', + registeredAt: '1708284774', + }, + { + email: 'rlambrick11@netscape.com', + token: '38e604f9dd47c6468ab3d4104d8dbc9f6968bfd8', + tokenExpiry: '1714756935', + isRegistered: true, + firstName: 'Rickert', + lastName: 'Lambrick', + registeredAt: '1678948854', + }, + { + email: 'jmadner12@boston.com', + token: '6f81c343c0ee4efec0c7d3359ec562dfdd26bdfd', + tokenExpiry: '1715296843', + isRegistered: true, + firstName: 'Jesselyn', + lastName: 'Madner', + registeredAt: '1685889400', + }, + { + email: 'ptest13@ovh.net', + token: '81d623ebdd75de31900eaeefd2f8f6d82e5de0f8', + tokenExpiry: '1708108205', + isRegistered: false, + firstName: 'Peirce', + lastName: 'Test', + registeredAt: '1678201051', + }, + { + email: 'swalcher14@hc360.com', + token: '824b906fd32c063d19ac0413a25ed88b366b400c', + tokenExpiry: '1706535307', + isRegistered: true, + firstName: 'Saraann', + lastName: 'Walcher', + registeredAt: '1710539027', + }, + { + email: 'gbank15@live.com', + token: '0e265dea03b6dd81279caee70688ffc3e4aac84d', + tokenExpiry: '1709350549', + isRegistered: true, + firstName: 'Giff', + lastName: 'Bank', + registeredAt: '1685242746', + }, + { + email: 'rallmen16@ask.com', + token: 'ed6593ece367f7a7dc24f97bd2f6f0842f14c0c4', + tokenExpiry: '1718707719', + isRegistered: false, + firstName: 'Ronny', + lastName: 'Allmen', + registeredAt: '1687899673', + }, + { + email: 'kyarrow17@fastcompany.com', + token: 'd7cf565a92803a64d2cee30653696e1d1a6378b9', + tokenExpiry: '1701602996', + isRegistered: true, + firstName: 'Kimmi', + lastName: 'Yarrow', + registeredAt: '1691124672', + }, + { + email: 'pshepard18@fc2.com', + token: '9210e18a7553812264f0de3dc1dfdfd149a98b78', + tokenExpiry: '1721087332', + isRegistered: false, + firstName: 'Portia', + lastName: 'Shepard', + registeredAt: '1672585642', + }, + { + email: 'egook19@yale.edu', + token: 'bb6e13b3f037f856d1bb9608fd0c621d6a2a91de', + tokenExpiry: '1720577150', + isRegistered: false, + firstName: 'Emlen', + lastName: 'Gook', + registeredAt: '1683775506', + }, + { + email: 'drocks1a@yandex.ru', + token: 'e8a818868eba93a6c8ec66475111de0443dc1bb9', + tokenExpiry: '1703012938', + isRegistered: false, + firstName: 'Debee', + lastName: 'Rocks', + registeredAt: '1706023454', + }, + { + email: 'vdhennin1b@webmd.com', + token: 'a38dcb44964ee25e8a6dec9154038d5d9938a87a', + tokenExpiry: '1699587212', + isRegistered: false, + firstName: 'Valina', + lastName: 'Dhennin', + registeredAt: '1681065096', + }, + { + email: 'dcheasman1c@123-reg.co.uk', + token: '94b64ff354e2f9fa7c8a037923bfa8b2dd866eeb', + tokenExpiry: '1697933422', + isRegistered: false, + firstName: 'Dwayne', + lastName: 'Cheasman', + registeredAt: '1683418150', + }, + { + email: 'ngladhill1d@bravesites.com', + token: 'd1e4e372f411f9b7078f2a40a97c922e29cc77d7', + tokenExpiry: '1718918519', + isRegistered: false, + firstName: 'Nellie', + lastName: 'Gladhill', + registeredAt: '1688963480', + }, + { + email: 'elivzey1e@yandex.ru', + token: '2b1e273101fd6f2762a922de2b5da38bcc106e0a', + tokenExpiry: '1709220017', + isRegistered: true, + firstName: 'Eziechiele', + lastName: 'Livzey', + registeredAt: '1681975403', + }, + { + email: 'smingasson1f@geocities.jp', + token: '11b06aee7ad84b24658444456a578d207869e512', + tokenExpiry: '1728292948', + isRegistered: true, + firstName: 'Sallyanne', + lastName: 'Mingasson', + registeredAt: '1683913073', + }, + { + email: 'hpattullo1g@cocolog-nifty.com', + token: 'f2006654fe52c91bb6953933346a297da119c8c5', + tokenExpiry: '1724940391', + isRegistered: true, + firstName: 'Heall', + lastName: 'Pattullo', + registeredAt: '1679673540', + }, + { + email: 'ascarlan1h@businessinsider.com', + token: '9cff46cacb3a30c7b3b3b54f277e0aab630d45c4', + tokenExpiry: '1721464700', + isRegistered: true, + firstName: 'Amaleta', + lastName: 'Scarlan', + registeredAt: '1712701940', + }, + { + email: 'zlawlance1i@gmpg.org', + token: 'bcb5ce7157e175a16358d596e508c2db76cfc1bc', + tokenExpiry: '1722208526', + isRegistered: true, + firstName: 'Zonda', + lastName: 'Lawlance', + registeredAt: '1701924480', + }, + { + email: 'lromney1j@independent.co.uk', + token: 'b85fe93921acfd5cf8d12b574dd3b47e4018e436', + tokenExpiry: '1713504543', + isRegistered: false, + firstName: 'Livvy', + lastName: 'Romney', + registeredAt: '1704174160', + }, + { + email: 'ballardyce1k@dell.com', + token: '0f8a9aac15a71fa742c39d3096542281589366b8', + tokenExpiry: '1718762499', + isRegistered: true, + firstName: 'Brockie', + lastName: 'Allardyce', + registeredAt: '1679041128', + }, + { + email: 'jatthowe1l@omniture.com', + token: 'aca52ba0413382dde47301aeadf43a363e9997ba', + tokenExpiry: '1698166033', + isRegistered: false, + firstName: 'Jaquelyn', + lastName: 'Atthowe', + registeredAt: '1707608705', + }, + { + email: 'bguerre1m@ftc.gov', + token: '7b1dd8462dbfad6cea9dad31f7261fef4ec8be95', + tokenExpiry: '1718130214', + isRegistered: true, + firstName: 'Barn', + lastName: 'Guerre', + registeredAt: '1716202221', + }, + { + email: 'cmillions1n@domainmarket.com', + token: '5f6819ad846a8ea3e0880dd7fd17c7e1e2b55d90', + tokenExpiry: '1706426083', + isRegistered: false, + firstName: 'Carina', + lastName: 'Millions', + registeredAt: '1698636752', + }, + { + email: 'mgrigorini1o@pinterest.com', + token: '355d05a947933941c88073a12e6787e4e3199b2d', + tokenExpiry: '1719008606', + isRegistered: true, + firstName: 'Micaela', + lastName: 'Grigorini', + registeredAt: '1674400482', + }, + { + email: 'fredwin1p@lulu.com', + token: 'dd3f9f8550968f560e0beddeeb22e6ed345b66f3', + tokenExpiry: '1720847163', + isRegistered: false, + firstName: 'Fran', + lastName: 'Redwin', + registeredAt: '1690182467', + }, + { + email: 'kfirmager1q@vistaprint.com', + token: 'dc439fab416b534d3f1691e2b5afa1cb67879d76', + tokenExpiry: '1709501604', + isRegistered: true, + firstName: 'Kalina', + lastName: 'Firmager', + registeredAt: '1696473707', + }, + { + email: 'lblyth1r@dion.ne.jp', + token: 'a10da796c88d8b7cf9fb78132bf8ec674f2ccf6e', + tokenExpiry: '1702709120', + isRegistered: true, + firstName: 'Lurline', + lastName: 'Blyth', + registeredAt: '1693114651', + }, + { + email: 'jstowte1s@pbs.org', + token: 'f1f937e0689f1bc5c2c2c586282f591e7f65d53b', + tokenExpiry: '1724992951', + isRegistered: true, + firstName: 'Julianne', + lastName: 'Stowte', + registeredAt: '1680965284', + }, + { + email: 'tpatrie1t@economist.com', + token: '650aaa0e6787da810abff83ac7745809a1cda53f', + tokenExpiry: '1718005232', + isRegistered: true, + firstName: 'Tierney', + lastName: 'Patrie', + registeredAt: '1702385719', + }, + { + email: 'gsherborne1u@ustream.tv', + token: '37cfac40e6796b28a9f5887a0f7ce0bfc8ac4ecb', + tokenExpiry: '1713943470', + isRegistered: false, + firstName: 'Gerladina', + lastName: 'Sherborne', + registeredAt: '1711728496', + }, + { + email: 'pfarress1v@amazonaws.com', + token: 'bf080b5bb70d6c0a44ce68a8ab8a88e042b19cc1', + tokenExpiry: '1711916219', + isRegistered: true, + firstName: 'Phil', + lastName: 'Farress', + registeredAt: '1693852128', + }, + { + email: 'eallsop1w@deviantart.com', + token: '1a5bea6e3a65ac46f6e21680ca0ba34f5e2122f2', + tokenExpiry: '1701094713', + isRegistered: false, + firstName: 'Elisha', + lastName: 'Allsop', + registeredAt: '1713801737', + }, + { + email: 'cskipton1x@4shared.com', + token: '45278d736abab31f911da7c843e62b524b65c4f4', + tokenExpiry: '1722876760', + isRegistered: false, + firstName: 'Carline', + lastName: 'Skipton', + registeredAt: '1702155150', + }, + { + email: 'mnorthridge1y@google.com.au', + token: '62f61c162c2ccffc5edcbdfdd02ec45cf1c39376', + tokenExpiry: '1706595173', + isRegistered: false, + firstName: 'Mia', + lastName: 'Northridge', + registeredAt: '1681630387', + }, + { + email: 'ifriedenbach1z@last.fm', + token: 'bd680ad939d973c3e0010ec7a2a2f1921fecc19d', + tokenExpiry: '1718623836', + isRegistered: true, + firstName: 'Isaiah', + lastName: 'Friedenbach', + registeredAt: '1702230245', + }, + { + email: 'tdulton20@sitemeter.com', + token: 'f2f3b6b7c83a606cf8cbef085140c25683e80a46', + tokenExpiry: '1725180112', + isRegistered: true, + firstName: 'Tallulah', + lastName: 'Dulton', + registeredAt: '1689429264', + }, + { + email: 'besherwood21@amazon.com', + token: 'c3beb14a7cd4e9fd4834cdf6594413ed971c01f3', + tokenExpiry: '1706079008', + isRegistered: false, + firstName: 'Bel', + lastName: 'Esherwood', + registeredAt: '1712417366', + }, + { + email: 'akiley22@cpanel.net', + token: 'd2b06ea8d9e4a572cee6d4e2681f67f00894ad56', + tokenExpiry: '1724941587', + isRegistered: true, + firstName: 'Anatol', + lastName: 'Kiley', + registeredAt: '1714539754', + }, + { + email: 'cmeth23@zimbio.com', + token: '8c4a90e9eb572a8dcfb306cc5c26d30387590e28', + tokenExpiry: '1727396000', + isRegistered: true, + firstName: 'Corabel', + lastName: 'Meth', + registeredAt: '1682784205', + }, + { + email: 'sterrill24@behance.net', + token: '03eddbc6485cdd42c8f5cac45e249f6cdb7400eb', + tokenExpiry: '1723586241', + isRegistered: false, + firstName: 'Shae', + lastName: 'Terrill', + registeredAt: '1687562944', + }, + { + email: 'dmahedy25@wix.com', + token: 'ce05349faa503dc55d9038773796038a7c8df560', + tokenExpiry: '1717922995', + isRegistered: false, + firstName: 'Dotty', + lastName: 'Mahedy', + registeredAt: '1703040599', + }, + { + email: 'sattiwill26@wsj.com', + token: 'a09c0f90af57af5b39b94cd83d208ffb25111ccb', + tokenExpiry: '1723749405', + isRegistered: false, + firstName: 'Salaidh', + lastName: 'Attiwill', + registeredAt: '1710531917', + }, + { + email: 'bbomb27@cmu.edu', + token: 'a196221355ed403ad250ccebf4b4019028b1de19', + tokenExpiry: '1716626869', + isRegistered: true, + firstName: 'Billi', + lastName: 'Bomb', + registeredAt: '1703618131', + }, + { + email: 'bbedells28@lycos.com', + token: '31d50e34784504d1ed2ba0fe979c98c64beaf408', + tokenExpiry: '1721657038', + isRegistered: true, + firstName: 'Burty', + lastName: 'Bedells', + registeredAt: '1703325382', + }, + { + email: 'dlemin29@nhs.uk', + token: 'b3f374ec819cae31abc03d8d4fd606182994b61c', + tokenExpiry: '1726394947', + isRegistered: false, + firstName: 'De', + lastName: 'Lemin', + registeredAt: '1712314981', + }, + { + email: 'mdraco2a@shinystat.com', + token: '106220c3f67863ec7b60efa5d818a9615f1f6ae8', + tokenExpiry: '1709423735', + isRegistered: true, + firstName: 'Morgen', + lastName: 'Draco', + registeredAt: '1683637999', + }, + { + email: 'ugrassin2b@ucoz.com', + token: '0bfe9f83752600b459f9299ef15aeff6e2403feb', + tokenExpiry: '1707725381', + isRegistered: true, + firstName: 'Urban', + lastName: 'Grassin', + registeredAt: '1710071474', + }, + { + email: 'aatto2c@va.gov', + token: 'd918b6a21507a3b203a595b174084d1bcbfd8643', + tokenExpiry: '1714845693', + isRegistered: false, + firstName: 'Archy', + lastName: 'Atto', + registeredAt: '1712043526', + }, + { + email: 'lmurfill2d@earthlink.net', + token: '1cfa1580520273a41a6101c1c40d9387a8240e15', + tokenExpiry: '1724471765', + isRegistered: true, + firstName: 'Lothaire', + lastName: 'Murfill', + registeredAt: '1704133684', + }, + { + email: 'aocrigan2e@ezinearticles.com', + token: '7c84c138aaea08c8478456fe062b6026922c6bb0', + tokenExpiry: '1723900980', + isRegistered: true, + firstName: 'Anne', + lastName: "O'Crigan", + registeredAt: '1676208159', + }, + { + email: 'nmeacher2f@barnesandnoble.com', + token: 'fe1032812102bf0930a52971a39da65b9d92be03', + tokenExpiry: '1711033160', + isRegistered: true, + firstName: 'Nisse', + lastName: 'Meacher', + registeredAt: '1681639572', + }, + { + email: 'dtraill2g@tamu.edu', + token: '356be8cf14a78b06cb741c6c1082a5b2639dc100', + tokenExpiry: '1722195575', + isRegistered: false, + firstName: 'Dix', + lastName: 'Traill', + registeredAt: '1688441678', + }, + { + email: 'vproske2h@newsvine.com', + token: '674dfc2ddb23a74b43373f5d42b23d29016408c2', + tokenExpiry: '1713842238', + isRegistered: false, + firstName: 'Verla', + lastName: 'Proske', + registeredAt: '1688943295', + }, + { + email: 'pdahmke2i@diigo.com', + token: 'd165ca490f364a0c81f1c3cf44f7bc5bd314c483', + tokenExpiry: '1712885460', + isRegistered: false, + firstName: 'Pennie', + lastName: 'Dahmke', + registeredAt: '1705568448', + }, + { + email: 'akilroy2j@elpais.com', + token: '651b1e2b34363ee9eaeb35d884cacce571bb20d3', + tokenExpiry: '1710647532', + isRegistered: true, + firstName: 'Anestassia', + lastName: 'Kilroy', + registeredAt: '1707162650', + }, + { + email: 'rvanelli2k@xing.com', + token: '362b7aeeb1b86eeeeb751f0feb30446f38b3551a', + tokenExpiry: '1700611810', + isRegistered: true, + firstName: 'Remus', + lastName: 'Vanelli', + registeredAt: '1688468428', + }, + { + email: 'gtarbert2l@discovery.com', + token: '47b989b8ef9a9640e1301246469e90468b0409b4', + tokenExpiry: '1728367924', + isRegistered: true, + firstName: 'Gil', + lastName: 'Tarbert', + registeredAt: '1685191965', + }, + { + email: 'ysmelley2m@twitpic.com', + token: 'd9a8b41e99f1fc724641283b275b61141086ecef', + tokenExpiry: '1712733227', + isRegistered: true, + firstName: 'Yulma', + lastName: 'Smelley', + registeredAt: '1715333795', + }, + { + email: 'tlongworth2n@engadget.com', + token: '5261c5b65c8539a3affa90614190fcedb77f1fac', + tokenExpiry: '1728250140', + isRegistered: false, + firstName: 'Timmy', + lastName: 'Longworth', + registeredAt: '1709278351', + }, + { + email: 'amollatt2o@printfriendly.com', + token: '4019b03e69e2362fbd1a10fce561eb60bdc16b99', + tokenExpiry: '1724376365', + isRegistered: true, + firstName: 'Arthur', + lastName: 'Mollatt', + registeredAt: '1708084127', + }, + { + email: 'gtaylor2p@nps.gov', + token: '16ce55d2ccf612dc3285cfdee894fb8064453a4b', + tokenExpiry: '1727617372', + isRegistered: false, + firstName: 'Griffin', + lastName: 'Taylor', + registeredAt: '1707031385', + }, + { + email: 'ostudholme2q@pcworld.com', + token: '9d62938833da712a578ade3e54cb627996a5464e', + tokenExpiry: '1702451012', + isRegistered: true, + firstName: 'Odelinda', + lastName: 'Studholme', + registeredAt: '1674695487', + }, + { + email: 'aduffill2r@nbcnews.com', + token: '8ccc9ddb9f92b0ee6848dd20ca7f3fab1d98fbb0', + tokenExpiry: '1707417687', + isRegistered: true, + firstName: 'Ardith', + lastName: 'Duffill', + registeredAt: '1693295088', + }, +]; diff --git a/scripts/db/generateMockData/mockUsers.ts b/scripts/db/generateMockData/mockUsers.ts new file mode 100644 index 00000000..062fbe23 --- /dev/null +++ b/scripts/db/generateMockData/mockUsers.ts @@ -0,0 +1,710 @@ +export const mockUsers = [ + { + firstName: 'Testy', + lastName: 'McTesterson', + email: 'tester@codehammers.com', + profilePic: + 'https://www.codesmith.io/hubfs/Screen%20Shot%202024-06-10%20at%2010.46.24%20AM.png', + password: 'ilovetesting', + }, + { + firstName: 'Corine', + lastName: 'Tugwell', + email: 'ctugwell0@ovh.net', + profilePic: 'http://dummyimage.com/81x80.png/ff4444/ffffff', + password: 'hS7)l<78y=<', + }, + { + firstName: 'Brody', + lastName: 'Cumpton', + email: 'bcumpton1@bluehost.com', + profilePic: 'http://dummyimage.com/65x89.png/cc0000/ffffff', + password: 'kK5n&Q+&kVAokJ|', + }, + { + firstName: 'Moselle', + lastName: 'Duro', + email: 'mduro2@technorati.com', + profilePic: 'http://dummyimage.com/56x64.png/dddddd/000000', + password: 'gT3zO>4OY/}xEx', + }, + { + firstName: 'Winifred', + lastName: 'Carnelley', + email: 'wcarnelley3@ucsd.edu', + profilePic: 'http://dummyimage.com/86x59.png/dddddd/000000', + password: 'lV3hO#UYz', + }, + { + firstName: 'Marchelle', + lastName: 'Truin', + email: 'mtruin4@stumbleupon.com', + profilePic: 'http://dummyimage.com/98x94.png/ff4444/ffffff', + password: 'iQ8WJ&8w', + }, + { + firstName: 'Cally', + lastName: 'Gisbey', + email: 'cgisbey5@squarespace.com', + profilePic: 'http://dummyimage.com/89x59.png/5fa2dd/ffffff', + password: 'lL1,t.S0?', + }, + { + firstName: 'Arlina', + lastName: 'Moodie', + email: 'amoodie6@twitpic.com', + profilePic: 'http://dummyimage.com/94x54.png/ff4444/ffffff', + password: 'vW1Pt3%mMJvF=N', + }, + { + firstName: 'Phineas', + lastName: 'Coon', + email: 'pcoon7@hc360.com', + profilePic: 'http://dummyimage.com/50x66.png/5fa2dd/ffffff', + password: 'uS5ak4~w+C|SwK', + }, + { + firstName: 'Shurlock', + lastName: 'Tytcomb', + email: 'stytcomb8@google.it', + profilePic: 'http://dummyimage.com/59x58.png/ff4444/ffffff', + password: 'rD89zUqWNy&$', + }, + { + firstName: 'Ermina', + lastName: 'Guyton', + email: 'eguyton9@blog.com', + profilePic: 'http://dummyimage.com/99x82.png/dddddd/000000', + password: 'lG6jF(1gALq>', + }, + { + firstName: 'Shelton', + lastName: 'Halwood', + email: 'shalwooda@sciencedirect.com', + profilePic: 'http://dummyimage.com/88x81.png/5fa2dd/ffffff', + password: "sR7)j9f9Gm'1", + }, + { + firstName: 'Nigel', + lastName: 'Clemenzo', + email: 'nclemenzob@fotki.com', + profilePic: 'http://dummyimage.com/83x88.png/ff4444/ffffff', + password: 'iN3a\\n@kHj', + }, + { + firstName: 'Colver', + lastName: 'Oswell', + email: 'coswellc@wsj.com', + profilePic: 'http://dummyimage.com/82x97.png/5fa2dd/ffffff', + password: 'tE7ZIe&c', + }, + { + firstName: 'Saundra', + lastName: 'Normabell', + email: 'snormabelld@businessinsider.com', + profilePic: 'http://dummyimage.com/53x70.png/dddddd/000000', + password: 'jI1$R?hjsaRrv', + }, + { + firstName: 'Grant', + lastName: 'Chasney', + email: 'gchasneye@mediafire.com', + profilePic: 'http://dummyimage.com/64x59.png/cc0000/ffffff', + password: 'iQ2)`lDH', + }, + { + firstName: 'Franni', + lastName: 'Chance', + email: 'fchancef@ted.com', + profilePic: 'http://dummyimage.com/90x79.png/5fa2dd/ffffff', + password: 'oC8g"0HA2I', + }, + { + firstName: 'Clarance', + lastName: 'Meecher', + email: 'cmeecherg@addthis.com', + profilePic: 'http://dummyimage.com/63x77.png/5fa2dd/ffffff', + password: 'kN1`Mpv*v/n', + }, + { + firstName: 'Katharine', + lastName: 'Lancett', + email: 'klancetth@sfgate.com', + profilePic: 'http://dummyimage.com/68x50.png/5fa2dd/ffffff', + password: 'kF2QZ&rxzu6x', + }, + { + firstName: 'Margaret', + lastName: 'Dubber', + email: 'mdubberi@dropbox.com', + profilePic: 'http://dummyimage.com/61x89.png/5fa2dd/ffffff', + password: 'mZ0A9Odl', + }, + { + firstName: 'Addy', + lastName: 'Fass', + email: 'afassj@vistaprint.com', + profilePic: 'http://dummyimage.com/97x55.png/cc0000/ffffff', + password: "rR7bD_E@'~'h(", + }, + { + firstName: 'Sollie', + lastName: 'Puckinghorne', + email: 'spuckinghornek@topsy.com', + profilePic: 'http://dummyimage.com/51x86.png/dddddd/000000', + password: 'iT2}TEh\\dfk?9r', + }, + { + firstName: 'Xena', + lastName: 'Tomczynski', + email: 'xtomczynskil@ted.com', + profilePic: 'http://dummyimage.com/67x71.png/dddddd/000000', + password: 'eR9=AQYI{T5h3F', + }, + { + firstName: 'Harmonie', + lastName: 'Karpinski', + email: 'hkarpinskim@g.co', + profilePic: 'http://dummyimage.com/91x80.png/dddddd/000000', + password: 'hG2"3rbpGY', + }, + { + firstName: 'Ulrick', + lastName: 'Blasing', + email: 'ublasingo@yahoo.com', + profilePic: 'http://dummyimage.com/74x73.png/cc0000/ffffff', + password: 'uV5HkA7nnpU/e', + }, + { + firstName: 'Cheri', + lastName: 'Danielsson', + email: 'cdanielssonp@example.com', + profilePic: 'http://dummyimage.com/84x95.png/5fa2dd/ffffff', + password: 'yZ8JP!Z|FI>CbV6o', + }, + { + firstName: 'Durand', + lastName: 'Joron', + email: 'djoronq@google.cn', + profilePic: 'http://dummyimage.com/70x59.png/dddddd/000000', + password: 'lJ9gDD.Q', + }, + { + firstName: 'Kristien', + lastName: 'Burgett', + email: 'kburgettr@kickstarter.com', + profilePic: 'http://dummyimage.com/79x50.png/cc0000/ffffff', + password: 'oX8Ie%HM>!', + }, + { + firstName: 'Kaia', + lastName: 'Fassmann', + email: 'kfassmanns@ted.com', + profilePic: 'http://dummyimage.com/61x77.png/ff4444/ffffff', + password: 'aQ6.2Kb1rhlFZ\\<1', + }, + { + firstName: 'Lockwood', + lastName: 'Moxham', + email: 'lmoxhamt@wikia.com', + profilePic: 'http://dummyimage.com/74x61.png/5fa2dd/ffffff', + password: 'aF0p=No%7AnwW,', + }, + { + firstName: 'Tessie', + lastName: 'Sugden', + email: 'tsugdenu@npr.org', + profilePic: 'http://dummyimage.com/88x52.png/5fa2dd/ffffff', + password: "kG7N$5'GNCnz@m", + }, + { + firstName: 'Rea', + lastName: 'Jeremiah', + email: 'rjeremiahv@wikispaces.com', + profilePic: 'http://dummyimage.com/74x59.png/dddddd/000000', + password: 'mF3l#F1fnm6', + }, + { + firstName: 'Cassie', + lastName: 'Meadows', + email: 'cmeadowsw@smugmug.com', + profilePic: 'http://dummyimage.com/79x100.png/dddddd/000000', + password: 'pJ3j_!cp9J+"7yS', + }, + { + firstName: 'Kelci', + lastName: 'Bastide', + email: 'kbastidex@latimes.com', + profilePic: 'http://dummyimage.com/68x97.png/dddddd/000000', + password: 'oH8.>l@JyRXgk', + }, + { + firstName: 'Eb', + lastName: 'Dargie', + email: 'edargie11@artisteer.com', + profilePic: 'http://dummyimage.com/54x99.png/cc0000/ffffff', + password: 'uI6v#OPe*&l?', + }, + { + firstName: 'Porter', + lastName: 'Paladini', + email: 'ppaladini12@deliciousdays.com', + profilePic: 'http://dummyimage.com/84x69.png/cc0000/ffffff', + password: "fR0'Op(Tizc4t,Y", + }, + { + firstName: 'Dian', + lastName: 'Dackombe', + email: 'ddackombe13@ihg.com', + profilePic: 'http://dummyimage.com/78x92.png/dddddd/000000', + password: 'iH8I.hC2=/', + }, + { + firstName: 'Freedman', + lastName: 'Scrafton', + email: 'fscrafton14@posterous.com', + profilePic: 'http://dummyimage.com/75x96.png/5fa2dd/ffffff', + password: 'cU0QGkw,=zbtR6', + }, + { + firstName: 'Tabbitha', + lastName: 'Jolliffe', + email: 'tjolliffe15@bbb.org', + profilePic: 'http://dummyimage.com/92x95.png/cc0000/ffffff', + password: 'lZ6K{2G7N3MbQG>6', + }, + { + firstName: 'Maegan', + lastName: 'Mulhall', + email: 'mmulhall1h@wikipedia.org', + profilePic: 'http://dummyimage.com/71x69.png/ff4444/ffffff', + password: 'bS3XK@RoF', + }, + { + firstName: 'Nicolai', + lastName: 'Brugsma', + email: 'nbrugsma1i@4shared.com', + profilePic: 'http://dummyimage.com/64x73.png/ff4444/ffffff', + password: 'gM7Kyoc3Kr$)u', + }, + { + firstName: 'Bryan', + lastName: 'Heffy', + email: 'bheffy1j@cbsnews.com', + profilePic: 'http://dummyimage.com/56x86.png/dddddd/000000', + password: 'jN2nvH7E', + }, + { + firstName: 'Donavon', + lastName: 'Osichev', + email: 'dosichev1k@pinterest.com', + profilePic: 'http://dummyimage.com/98x87.png/dddddd/000000', + password: 'xP5,Ej)=W', + }, + { + firstName: 'Kennan', + lastName: 'Dugget', + email: 'kdugget1l@opensource.org', + profilePic: 'http://dummyimage.com/53x69.png/5fa2dd/ffffff', + password: "oX6'}CX7M(ru", + }, + { + firstName: 'Paton', + lastName: 'Climance', + email: 'pclimance1m@webnode.com', + profilePic: 'http://dummyimage.com/90x80.png/5fa2dd/ffffff', + password: 'dX4c77r*lWEdiOe"', + }, + { + firstName: 'Caitrin', + lastName: 'McAllister', + email: 'cmcallister1n@ft.com', + profilePic: 'http://dummyimage.com/96x52.png/dddddd/000000', + password: 'yV9uq&NEg}2qy', + }, + { + firstName: 'Sephira', + lastName: 'Kaming', + email: 'skaming1o@about.me', + profilePic: 'http://dummyimage.com/59x77.png/dddddd/000000', + password: 'nF5VA!S1pfb', + }, + { + firstName: 'Fraser', + lastName: 'Londsdale', + email: 'flondsdale1p@freewebs.com', + profilePic: 'http://dummyimage.com/52x60.png/5fa2dd/ffffff', + password: 'mW5v9$F~rg', + }, + { + firstName: 'Alyssa', + lastName: 'Bangham', + email: 'abangham1q@usgs.gov', + profilePic: 'http://dummyimage.com/65x88.png/ff4444/ffffff', + password: 'qG2ImKA6ErG?yZu', + }, + { + firstName: 'Clarette', + lastName: 'Alcock', + email: 'calcock1r@amazonaws.com', + profilePic: 'http://dummyimage.com/60x70.png/ff4444/ffffff', + password: 'kZ3)0SB$7E"fbU', + }, + { + firstName: 'Lizbeth', + lastName: 'France', + email: 'lfrance1s@yahoo.com', + profilePic: 'http://dummyimage.com/100x97.png/dddddd/000000', + password: 'oG215|(L_eX9', + }, + { + firstName: 'Abramo', + lastName: 'Sparkwell', + email: 'asparkwell1t@berkeley.edu', + profilePic: 'http://dummyimage.com/60x53.png/5fa2dd/ffffff', + password: 'eJ9??*5OBunZ', + }, + { + firstName: 'Darb', + lastName: 'Coen', + email: 'dcoen1u@prlog.org', + profilePic: 'http://dummyimage.com/75x57.png/ff4444/ffffff', + password: 'rK6)~Nb0Oe|)I', + }, + { + firstName: 'Gusty', + lastName: 'Besnardeau', + email: 'gbesnardeau1v@themeforest.net', + profilePic: 'http://dummyimage.com/56x89.png/cc0000/ffffff', + password: 'pJ9NPG3,3', + }, + { + firstName: 'Randy', + lastName: 'Verriour', + email: 'rverriour1w@ebay.co.uk', + profilePic: 'http://dummyimage.com/59x94.png/cc0000/ffffff', + password: 'oX9BbBqib/(F5JU', + }, + { + firstName: 'Israel', + lastName: 'Canti', + email: 'icanti1x@businesswire.com', + profilePic: 'http://dummyimage.com/92x98.png/cc0000/ffffff', + password: 'xS5vY5w1dh?', + }, + { + firstName: 'Micky', + lastName: 'Dunseath', + email: 'mdunseath1y@miibeian.gov.cn', + profilePic: 'http://dummyimage.com/60x55.png/cc0000/ffffff', + password: 'dO5Wj', + }, + { + firstName: 'Englebert', + lastName: 'Bancroft', + email: 'ebancroft2f@ow.ly', + profilePic: 'http://dummyimage.com/98x64.png/ff4444/ffffff', + password: 'gM7PXInh', + }, + { + firstName: 'Siegfried', + lastName: 'Castillou', + email: 'scastillou2g@reddit.com', + profilePic: 'http://dummyimage.com/67x80.png/dddddd/000000', + password: 'mH8c?!MFz?RdD', + }, + { + firstName: 'Marvin', + lastName: 'Cranke', + email: 'mcranke2h@marketwatch.com', + profilePic: 'http://dummyimage.com/85x78.png/cc0000/ffffff', + password: 'fJ7+Isb+zX', + }, + { + firstName: 'Arne', + lastName: 'Rummin', + email: 'arummin2i@is.gd', + profilePic: 'http://dummyimage.com/61x99.png/cc0000/ffffff', + password: "rB8C0.h'E982*/yJ", + }, + { + firstName: 'Seumas', + lastName: 'Feldberger', + email: 'sfeldberger2j@ning.com', + profilePic: 'http://dummyimage.com/99x53.png/cc0000/ffffff', + password: 'nI8#fF1Mm', + }, + { + firstName: 'Hilda', + lastName: 'Worham', + email: 'hworham2k@mail.ru', + profilePic: 'http://dummyimage.com/94x81.png/cc0000/ffffff', + password: 'sV8IcZGzjjUSVBg3', + }, + { + firstName: 'Winny', + lastName: "O'Glessane", + email: 'woglessane2l@deviantart.com', + profilePic: 'http://dummyimage.com/95x87.png/5fa2dd/ffffff', + password: 'eJ5ii6IW', + }, + { + firstName: 'Gwenora', + lastName: 'Agge', + email: 'gagge2m@unesco.org', + profilePic: 'http://dummyimage.com/92x65.png/ff4444/ffffff', + password: 'zI9%g#hWe\\J$9', + }, + { + firstName: 'Piggy', + lastName: 'Torrisi', + email: 'ptorrisi2n@goodreads.com', + profilePic: 'http://dummyimage.com/100x59.png/cc0000/ffffff', + password: 'pZ3P88!wL>"@_(sW', + }, + { + firstName: 'Niki', + lastName: 'Glaysher', + email: 'nglaysher2o@kickstarter.com', + profilePic: 'http://dummyimage.com/86x55.png/dddddd/000000', + password: 'mW8v_YH{/5', + }, + { + firstName: 'Pail', + lastName: 'Vasechkin', + email: 'pvasechkin2p@vk.com', + profilePic: 'http://dummyimage.com/87x64.png/dddddd/000000', + password: 'sS1wV#HRAIcm}', + }, + { + firstName: 'Gav', + lastName: 'Renneke', + email: 'grenneke2q@hp.com', + profilePic: 'http://dummyimage.com/80x79.png/cc0000/ffffff', + password: 'oZ8Q$*gQuM.Fi\\l@', + }, + { + firstName: 'Perle', + lastName: 'Rizziello', + email: 'prizziello2r@mashable.com', + profilePic: 'http://dummyimage.com/50x68.png/dddddd/000000', + password: 'gD99+!Oo>T\\VA', + }, +]; diff --git a/scripts/db/generateMockData/options.ts b/scripts/db/generateMockData/options.ts new file mode 100644 index 00000000..7830a33e --- /dev/null +++ b/scripts/db/generateMockData/options.ts @@ -0,0 +1,1285 @@ +export const profilePicOptions = [ + 'https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg', + 'https://www.codesmith.io/hubfs/Gabriela%20%20Small.png', + 'https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png', + 'https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827', + 'https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720', + 'https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg', + 'https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4', + 'https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png', + 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', + 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', + 'https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg', +]; + +export const cohorts = ['LA', 'NYC', 'ECRI', 'PTRI', 'WCRI', 'FTRI', 'CTRI']; + +export const cohortNumRange = 100; + +export const jobTitleOptions = [ + 'Software Engineer', + 'Senior Software Engineer', + 'Lead Software Engineer', + 'Principal Software Engineer', + 'Junior Software Engineer', + 'Software Developer', + 'Backend Developer', + 'Frontend Developer', + 'Full Stack Developer', + 'DevOps Engineer', + 'Site Reliability Engineer', + 'Mobile Developer', + 'iOS Developer', + 'Android Developer', + 'Web Developer', + 'Embedded Systems Engineer', + 'Data Engineer', + 'Machine Learning Engineer', + 'AI Engineer', + 'Data Scientist', + 'Cloud Engineer', + 'Security Engineer', + 'QA Engineer', + 'Automation Engineer', + 'Test Engineer', + 'Software Architect', + 'Technical Lead', + 'Engineering Manager', + 'Technical Program Manager', + 'Product Manager', +]; + +export const companyOptions = [ + 'Google', + 'Apple', + 'Microsoft', + 'Amazon', + 'Facebook', + 'Twitter', + 'Tesla', + 'Netflix', + 'Adobe', + 'Intel', + 'NVIDIA', + 'Oracle', + 'IBM', + 'Salesforce', + 'Cisco', + 'Uber', + 'Airbnb', + 'Lyft', + 'Spotify', + 'Snapchat', + 'Dropbox', + 'PayPal', + 'Square', + 'Shopify', + 'Zoom', + 'Slack', + 'Red Hat', + 'Atlassian', + 'GitHub', + 'LinkedIn', + 'Pinterest', + 'Stripe', + 'Twilio', + 'Asana', + 'Qualcomm', + 'VMware', + 'Palantir', + 'Coinbase', + 'Robinhood', + 'Snowflake', + 'ServiceNow', + 'Workday', + 'DocuSign', + 'Okta', + 'Datadog', + 'HubSpot', + 'DoorDash', + 'Epic Games', + 'EA (Electronic Arts)', + 'Activision Blizzard', +]; + +export const skillOptions = [ + 'JavaScript', + 'Python', + 'Java', + 'C++', + 'C#', + 'Ruby', + 'HTML', + 'CSS', + 'SQL', + 'NoSQL', + 'Git', + 'Agile Development', + 'Scrum', + 'RESTful APIs', + 'GraphQL', + 'Docker', + 'Kubernetes', + 'CI/CD', + 'AWS', + 'Azure', + 'Google Cloud Platform', + 'Machine Learning', + 'Deep Learning', + 'Data Science', + 'Big Data', + 'Microservices', + 'Serverless Architecture', + 'Mobile Development', + 'iOS Development', + 'Android Development', + 'React', + 'Angular', + 'Vue.js', + 'Node.js', + 'Django', + 'Flask', + 'Spring Boot', + 'Laravel', + 'ASP.NET', + 'Blockchain', + 'Cybersecurity', + 'Unit Testing', + 'Integration Testing', + 'System Design', + 'Database Design', + 'Software Architecture', + 'Performance Optimization', + 'DevOps', + 'Continuous Deployment', + 'TDD (Test-Driven Development)', + 'BDD (Behavior-Driven Development)', + 'Graph Databases', + 'WebSockets', + 'Event-Driven Architecture', + 'Functional Programming', + 'Object-Oriented Programming', + 'SaaS (Software as a Service)', + 'PaaS (Platform as a Service)', + 'FaaS (Function as a Service)', + 'User Experience (UX) Design', + 'User Interface (UI) Design', + 'Version Control', + 'Automated Testing', + 'Code Review', + 'Pair Programming', + 'Cloud Computing', + 'Containerization', + 'Infrastructure as Code', + 'API Development', + 'API Integration', + 'ETL (Extract, Transform, Load)', + 'Data Warehousing', + 'Data Visualization', + 'Natural Language Processing', + 'Robotic Process Automation', + 'Edge Computing', + 'IoT (Internet of Things)', + 'AR/VR (Augmented/Virtual Reality)', + 'Quantum Computing', + 'Reactive Programming', + 'Concurrency', + 'Parallel Computing', + 'Graph Theory', + 'Algorithm Design', + 'Design Patterns', + 'Refactoring', + 'Legacy Code Management', + 'Technical Writing', + 'Project Management', + 'Communication Skills', + 'Problem-Solving', + 'Critical Thinking', + 'Time Management', + 'Collaboration', + 'Leadership', +]; + +export const collegeOptions = [ + 'Harvard University', + 'Stanford University', + 'Massachusetts Institute of Technology (MIT)', + 'California Institute of Technology (Caltech)', + 'University of California, Berkeley', + 'University of Oxford', + 'University of Cambridge', + 'Princeton University', + 'Columbia University', + 'University of Chicago', + 'Yale University', + 'University of Pennsylvania', + 'University of California, Los Angeles (UCLA)', + 'Johns Hopkins University', + 'University of Southern California', + 'Duke University', + 'Cornell University', + 'Northwestern University', + 'University of Michigan', + 'New York University (NYU)', + 'Carnegie Mellon University', + 'University of Toronto', + 'University of Washington', + 'University College London (UCL)', + 'Imperial College London', + 'London School of Economics and Political Science (LSE)', + 'University of Edinburgh', + 'University of British Columbia', + 'University of Texas at Austin', + 'Georgia Institute of Technology', + 'University of Melbourne', + 'University of Sydney', + 'Australian National University', + 'University of Queensland', + 'University of New South Wales (UNSW Sydney)', + 'McGill University', + 'University of Montreal', + 'University of Alberta', + 'ETH Zurich - Swiss Federal Institute of Technology', + 'EPFL - ร‰cole Polytechnique Fรฉdรฉrale de Lausanne', + 'University of Tokyo', + 'Kyoto University', + 'Seoul National University', + 'National University of Singapore (NUS)', + 'Nanyang Technological University (NTU)', + 'Peking University', + 'Tsinghua University', + 'Fudan University', + 'Shanghai Jiao Tong University', + 'Hong Kong University of Science and Technology (HKUST)', + 'University of Hong Kong (HKU)', + 'Chinese University of Hong Kong (CUHK)', + 'University of California, San Diego (UCSD)', + 'University of California, Santa Barbara (UCSB)', + 'University of Illinois at Urbana-Champaign', + 'University of Wisconsin-Madison', + 'University of Minnesota', + 'University of Florida', + 'University of Maryland, College Park', + 'Ohio State University', + 'Pennsylvania State University', + 'University of North Carolina at Chapel Hill', + 'Purdue University', + 'University of Virginia', + 'Vanderbilt University', + 'Rice University', + 'Emory University', + 'Washington University in St. Louis', + 'Brown University', + 'University of Notre Dame', + 'Georgetown University', + 'Boston University', + 'University of Miami', + 'University of Rochester', + 'Case Western Reserve University', + 'University of Colorado Boulder', + 'University of Utah', + 'University of Arizona', + 'University of Iowa', + 'Indiana University Bloomington', + 'Michigan State University', + 'Rutgers University', + 'University of Pittsburgh', + 'University of Delaware', + 'University of Connecticut', + 'University of Kansas', + 'University of Oregon', + 'University of Tennessee', + 'University of South Carolina', + 'Clemson University', + 'University of Oklahoma', + 'University of Kentucky', + 'University of Nebraska-Lincoln', + 'University of Houston', + 'University of Georgia', + 'University of Missouri', + 'University of Massachusetts Amherst', + 'University of Vermont', + 'Syracuse University', + 'Brigham Young University', +]; + +export const degreeOptions = [ + 'High School Diploma', + 'Associate Degree', + "Bachelor's Degree", + 'Bachelor of Arts (BA)', + 'Bachelor of Science (BS)', + 'Bachelor of Fine Arts (BFA)', + 'Bachelor of Business Administration (BBA)', + 'Bachelor of Engineering (BE)', + 'Bachelor of Technology (BTech)', + "Master's Degree", + 'Master of Arts (MA)', + 'Master of Science (MS)', + 'Master of Business Administration (MBA)', + 'Master of Fine Arts (MFA)', + 'Master of Engineering (ME)', + 'Master of Technology (MTech)', + 'Master of Public Administration (MPA)', + 'Master of Public Health (MPH)', + 'Master of Social Work (MSW)', + 'Master of Education (MEd)', + 'Doctoral Degree', + 'Doctor of Philosophy (PhD)', + 'Doctor of Education (EdD)', + 'Doctor of Business Administration (DBA)', + 'Doctor of Medicine (MD)', + 'Doctor of Dental Surgery (DDS)', + 'Doctor of Dental Medicine (DMD)', + 'Doctor of Veterinary Medicine (DVM)', + 'Juris Doctor (JD)', + 'Doctor of Pharmacy (PharmD)', + 'Professional Degree', + 'Postdoctoral Research', + 'Certificate Program', + 'Diploma Program', + 'Trade School Certification', + 'Technical School Certification', + 'Continuing Education', + 'Professional Development', + 'Executive Education', +]; + +export const fieldOfStudyOptions = [ + 'Computer Science', + 'Electrical Engineering', + 'Mechanical Engineering', + 'Civil Engineering', + 'Chemical Engineering', + 'Biomedical Engineering', + 'Aerospace Engineering', + 'Environmental Engineering', + 'Information Technology', + 'Data Science', + 'Physics', + 'Mathematics', + 'Statistics', + 'Chemistry', + 'Biology', + 'Biochemistry', + 'Psychology', + 'Sociology', + 'Anthropology', + 'Political Science', + 'Economics', + 'Finance', + 'Business Administration', + 'Marketing', + 'Accounting', + 'Management', + 'International Relations', + 'History', + 'Philosophy', + 'English Literature', + 'Linguistics', + 'Journalism', + 'Communication Studies', + 'Education', + 'Law', + 'Public Health', + 'Nursing', + 'Medicine', + 'Dentistry', + 'Pharmacy', + 'Veterinary Medicine', + 'Architecture', + 'Urban Planning', + 'Fine Arts', + 'Music', + 'Theater', + 'Film Studies', + 'Graphic Design', + 'Interior Design', +]; + +export const projectOptions = [ + { + name: 'CodeBot', + description: 'Automated code generation tool using AI for faster development cycles.', + link: 'https://github.com/username/codebot', + }, + { + name: 'DataCrunch', + description: 'Real-time data analytics platform for extracting insights from big data.', + link: 'https://github.com/username/datacrunch', + }, + { + name: 'CloudGuard', + description: 'Advanced cloud security suite ensuring data protection and compliance.', + link: 'https://github.com/username/cloudguard', + }, + { + name: 'RoboVision', + description: 'AI-powered computer vision system for object detection and recognition.', + link: 'https://github.com/username/robovision', + }, + { + name: 'CryptoTrack', + description: 'Blockchain-based cryptocurrency portfolio tracker for investors.', + link: 'https://github.com/username/cryptotrack', + }, + { + name: 'SmartHomeHub', + description: 'Centralized home automation system integrating IoT devices for smart living.', + link: 'https://github.com/username/smarthomehub', + }, + { + name: 'HealthLink', + description: 'Telemedicine platform connecting patients with healthcare providers remotely.', + link: 'https://github.com/username/healthlink', + }, + { + name: 'AugmentWorks', + description: 'Augmented reality application for enhancing workplace productivity and training.', + link: 'https://github.com/username/augmentworks', + }, + { + name: 'GenomeQuest', + description: 'Genomic data analysis tool for researchers and bioinformaticians.', + link: 'https://github.com/username/genomequest', + }, + { + name: 'NetPlanner', + description: + 'Network infrastructure planning software for optimizing bandwidth and efficiency.', + link: 'https://github.com/username/netplanner', + }, + { + name: 'VoiceAssistant', + description: 'Voice-controlled personal assistant using natural language processing.', + link: 'https://github.com/username/voiceassistant', + }, + { + name: 'EcoTech', + description: 'Environmental monitoring and conservation app with real-time data visualization.', + link: 'https://github.com/username/ecotech', + }, + { + name: 'SecureChat', + description: 'End-to-end encrypted messaging app ensuring user privacy and security.', + link: 'https://github.com/username/securechat', + }, + { + name: 'VirtualTour', + description: 'Virtual reality tour application for immersive travel experiences.', + link: 'https://github.com/username/virtualtour', + }, + { + name: 'CodeAnalyzer', + description: 'Static code analysis tool for detecting bugs and code quality improvements.', + link: 'https://github.com/username/codeanalyzer', + }, + { + name: 'SmartInventory', + description: 'Inventory management system with RFID and IoT integration for tracking assets.', + link: 'https://github.com/username/smartinventory', + }, + { + name: 'LearnHub', + description: + 'Online learning platform offering courses on various subjects with interactive content.', + link: 'https://github.com/username/learnhub', + }, + { + name: 'HealthMonitor', + description: + 'Personal health monitoring app with AI-driven analytics and wearable device integration.', + link: 'https://github.com/username/healthmonitor', + }, + { + name: 'JobFinder', + description: + 'Job search and application management platform with personalized recommendations.', + link: 'https://github.com/username/jobfinder', + }, + { + name: 'SmartGrid', + description: 'Smart grid technology for efficient energy distribution and consumption.', + link: 'https://github.com/username/smartgrid', + }, + { + name: 'RoboTrader', + description: 'Algorithmic trading platform for automated stock market analysis and trading.', + link: 'https://github.com/username/robotrader', + }, + { + name: 'SocialConnect', + description: 'Social media integration platform for managing multiple social accounts.', + link: 'https://github.com/username/socialconnect', + }, + { + name: 'TourismApp', + description: + 'Mobile application for tourists providing travel guides and local recommendations.', + link: 'https://github.com/username/tourismapp', + }, + { + name: 'SmartMirror', + description: + 'Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.', + link: 'https://github.com/username/smartmirror', + }, + { + name: 'VirtualMarket', + description: + 'Virtual reality shopping experience allowing users to browse and buy products online.', + link: 'https://github.com/username/virtualmarket', + }, + { + name: 'CodeReview', + description: 'Collaborative code review platform with annotations and feedback features.', + link: 'https://github.com/username/codereview', + }, + { + name: 'AIAssistant', + description: 'Artificial intelligence assistant for managing tasks, scheduling, and reminders.', + link: 'https://github.com/username/aiassistant', + }, + { + name: 'SecureBackup', + description: 'Encrypted cloud backup solution ensuring secure storage and data protection.', + link: 'https://github.com/username/securebackup', + }, + { + name: 'SmartCarPark', + description: + 'Smart parking management system using IoT sensors for efficient parking space utilization.', + link: 'https://github.com/username/smartcarpark', + }, + { + name: 'HomeSecurity', + description: + 'Home security system with video surveillance, motion detection, and alarm integration.', + link: 'https://github.com/username/homesecurity', + }, + { + name: 'EduTech', + description: + 'Educational technology platform offering virtual classrooms and interactive learning tools.', + link: 'https://github.com/username/edutech', + }, + { + name: 'EventPlanner', + description: 'Event management and planning software for organizing and coordinating events.', + link: 'https://github.com/username/eventplanner', + }, + { + name: 'SmartFarm', + description: + 'Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.', + link: 'https://github.com/username/smartfarm', + }, + { + name: 'MediCare', + description: + 'Medical appointment scheduling and patient management system for healthcare providers.', + link: 'https://github.com/username/medicare', + }, + { + name: 'FoodDelivery', + description: + 'Online food delivery platform connecting restaurants with customers for food ordering.', + link: 'https://github.com/username/fooddelivery', + }, + { + name: 'AIChatbot', + description: 'AI-powered chatbot for customer support and interactive communication.', + link: 'https://github.com/username/aichatbot', + }, + { + name: 'SmartCity', + description: + 'Integrated urban management system using IoT and data analytics for smart city initiatives.', + link: 'https://github.com/username/smartcity', + }, + { + name: 'VirtualAssistant', + description: + 'Virtual assistant software for voice command-based tasks and personal assistance.', + link: 'https://github.com/username/virtualassistant', + }, + { + name: 'SmartLearning', + description: 'AI-driven personalized learning platform with adaptive learning algorithms.', + link: 'https://github.com/username/smartlearning', + }, + { + name: 'RecruitmentAI', + description: 'AI-powered recruitment platform for matching candidates with job opportunities.', + link: 'https://github.com/username/recruitmentai', + }, + { + name: 'CloudStorage', + description: 'Cloud storage service with file synchronization and sharing capabilities.', + link: 'https://github.com/username/cloudstorage', + }, + { + name: 'TravelGuide', + description: + 'Interactive travel guide application providing travel tips and destination insights.', + link: 'https://github.com/username/travelguide', + }, + { + name: 'SmartWatch', + description: + 'Smart wearable device with health monitoring, fitness tracking, and notification features.', + link: 'https://github.com/username/smartwatch', + }, + { + name: 'ARNavigation', + description: + 'Augmented reality navigation app for real-time directions and location-based information.', + link: 'https://github.com/username/arnavigation', + }, + { + name: 'CryptoWallet', + description: + 'Cryptocurrency wallet application for securely storing and managing digital assets.', + link: 'https://github.com/username/cryptowallet', + }, + { + name: 'CodeOptimizer', + description: + 'AI-driven code optimization tool for improving software performance and efficiency.', + link: 'https://github.com/username/codeoptimizer', + }, +]; + +export const testimonialOptions = [ + { + from: 'Alice Johnson', + relation: 'Manager at TechSolutions Inc.', + text: "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + }, + { + from: 'David Smith', + relation: 'Colleague at InnovateTech Ltd.', + text: 'Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.', + }, + { + from: 'Emily Brown', + relation: 'Client at GlobalSoft Solutions', + text: "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + }, + { + from: 'Daniel Lee', + relation: 'Project Manager at Digital Dynamics', + text: "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + }, + { + from: 'Olivia White', + relation: 'Tech Lead at Cloud Innovations', + text: "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + }, + { + from: 'Sophia Martinez', + relation: 'Director of Engineering at FutureTech', + text: "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + }, + { + from: 'Ethan Taylor', + relation: 'Co-founder at StartupX', + text: "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", + }, + { + from: 'Isabella Clark', + relation: 'HR Manager at TechFusion', + text: "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + }, + { + from: 'Noah Rodriguez', + relation: 'Product Owner at AgileSoft', + text: "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + }, + { + from: 'Aiden Walker', + relation: 'CTO at Innovate Solutions', + text: "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", + }, + { + from: 'Liam Harris', + relation: 'Lead Developer at CloudTech', + text: "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + }, + { + from: 'Emma Thompson', + relation: 'Manager at DataTech Solutions', + text: "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + }, + { + from: 'Lucas Miller', + relation: 'CTO at InnovateTech Ltd.', + text: "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", + }, + { + from: 'Sophie Turner', + relation: 'Project Manager at Digital Dynamics', + text: "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + }, + { + from: 'Emma Watson', + relation: 'Director of Engineering at FutureTech', + text: "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + }, + { + from: 'Oliver Jackson', + relation: 'HR Manager at TechFusion', + text: "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + }, + { + from: 'Sophia Brown', + relation: 'Product Owner at AgileSoft', + text: "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + }, + { + from: 'Ethan Green', + relation: 'CTO at Innovate Solutions', + text: "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + }, + { + from: 'Mia Davis', + relation: 'Lead Developer at CloudTech', + text: "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + }, + { + from: 'Noah Wilson', + relation: 'Manager at DataTech Solutions', + text: "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + }, + { + from: 'Ava Miller', + relation: 'CTO at InnovateTech Ltd.', + text: "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + }, + { + from: 'Sophia Turner', + relation: 'Project Manager at Digital Dynamics', + text: "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + }, + { + from: 'Ella Watson', + relation: 'Director of Engineering at FutureTech', + text: "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + }, + { + from: 'Oliver Jackson', + relation: 'HR Manager at TechFusion', + text: "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + }, + { + from: 'Sophia Brown', + relation: 'Product Owner at AgileSoft', + text: "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + }, + { + from: 'Ethan Green', + relation: 'CTO at Innovate Solutions', + text: "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + }, + { + from: 'Mia Davis', + relation: 'Lead Developer at CloudTech', + text: "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + }, + { + from: 'Noah Wilson', + relation: 'Manager at DataTech Solutions', + text: "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + }, + { + from: 'Ava Miller', + relation: 'CTO at InnovateTech Ltd.', + text: "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + }, + { + from: 'Sophia Turner', + relation: 'Project Manager at Digital Dynamics', + text: "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + }, + { + from: 'Ella Watson', + relation: 'Director of Engineering at FutureTech', + text: "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + }, + { + from: 'Oliver Jackson', + relation: 'HR Manager at TechFusion', + text: "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + }, + { + from: 'Sophia Brown', + relation: 'Product Owner at AgileSoft', + text: "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + }, + { + from: 'Ethan Green', + relation: 'CTO at Innovate Solutions', + text: "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + }, + { + from: 'Mia Davis', + relation: 'Lead Developer at CloudTech', + text: "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + }, +]; + +export const bootcampOptions = [ + 'Codesmith', + 'Le Wagon', + 'App Academy', + 'General Assembly', + 'Flatiron School', + 'Fullstack Academy', + 'Hack Reactor', + 'Coding Dojo', + 'Ironhack', + 'Thinkful', + 'BrainStation', + 'Lambda School', + 'The Tech Academy', + 'CareerFoundry', + 'Makers Academy', + 'Tech Elevator', + 'DevMountain', + 'Galvanize', + 'Nucamp', + 'Springboard', + 'Kenzie Academy', +]; + +export const professionalSummaryOptions = [ + 'Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.', + 'Backend engineer specializing in designing and optimizing database architectures for high-performance applications.', + 'Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.', + 'DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.', + 'Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.', + 'Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.', + 'AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.', + 'Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.', + 'Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.', + 'Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.', +]; + +export const personBioOptions = [ + 'Passionate software engineer with a love for solving complex problems and building scalable applications.', + 'Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.', + 'Experienced in both frontend and backend development, with a focus on creating elegant and efficient solutions.', + 'Enthusiastic about open-source contributions and collaborating with diverse teams to deliver impactful projects.', + 'Driven by a curiosity for innovation and a commitment to delivering high-quality software solutions.', + 'Detail-oriented developer with a strong foundation in algorithms and data structures.', + 'Committed to writing clean, maintainable code that meets rigorous performance standards.', + 'Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.', + 'Adaptable problem solver who thrives in dynamic, fast-paced environments.', + "Passionate about building inclusive and accessible software that improves people's lives.", + 'Experienced in Agile methodologies, with a track record of delivering projects on time and within budget.', + 'Devoted to fostering a collaborative team environment and mentoring junior developers.', + 'Strong analytical thinker with a knack for troubleshooting and resolving complex technical issues.', + 'Proactive learner constantly exploring emerging technologies and trends in the software industry.', + 'Focused on creating seamless user experiences through intuitive interface design and interaction.', + 'Experienced in deploying and maintaining applications on cloud platforms like AWS and Azure.', + 'Passionate about leveraging data-driven insights to optimize software performance and user engagement.', + 'Dedicated to upholding best practices in software engineering, including testing, code reviews, and version control.', + 'Skilled in working with cross-functional teams to deliver innovative software solutions that exceed expectations.', + 'Experienced in building scalable microservices architectures and integrating third-party APIs.', + 'Adept at optimizing SQL and NoSQL databases for performance and scalability.', + 'Committed to ensuring software security and compliance with industry standards and regulations.', + 'Passionate about improving codebase efficiency through refactoring and performance tuning.', + 'Enthusiastic about exploring the intersection of technology and social impact.', + 'Skilled in UX/UI design principles, with a focus on creating intuitive and visually appealing interfaces.', + 'Proven ability to lead technical projects from inception to successful deployment and maintenance.', + 'Innovative thinker with a track record of proposing and implementing creative solutions to technical challenges.', + 'Advocate for diversity and inclusion in the tech industry, fostering a welcoming and supportive workplace culture.', + 'Experienced in international collaboration and remote work, with a strong appreciation for cultural diversity.', + 'Driven by a passion for problem-solving and a commitment to continuous professional development.', + 'Committed to ethical software development practices and promoting transparency in technology.', + 'Skilled in conducting technical workshops and seminars to share knowledge and mentor aspiring developers.', + 'Passionate about contributing to the tech community through open-source projects and knowledge sharing.', + 'Experienced in rapid prototyping and iterative development methodologies.', + 'Focused on delivering user-centric solutions that address real-world needs and challenges.', +]; + +export const threadOptions = [ + { + title: 'Best IDEs for Web Development?', + content: + "I'm exploring different IDE options for web development. What are your recommendations and why? Looking for suggestions on both free and paid IDEs.", + }, + { + title: 'How to Improve Code Review Process?', + content: + "Seeking advice on optimizing our team's code review process. What tools and practices do you use to ensure effective code reviews and maintain code quality?", + }, + { + title: 'Career Advice: Frontend vs Backend?', + content: + 'Considering specializing in either frontend or backend development. What are the pros and cons of each? Which path offers better career opportunities?', + }, + { + title: 'Introduction to Docker Containers', + content: + "New to Docker and containers? Let's discuss the basics, benefits, and practical applications of Docker in software development and deployment.", + }, + { + title: 'JavaScript Frameworks Comparison', + content: + 'Comparing popular JavaScript frameworks like React, Angular, and Vue.js. Share your experiences, strengths, and weaknesses of each framework.', + }, + { + title: 'Tips for Effective Debugging', + content: + 'Share your best practices and tools for debugging complex issues in software development. How do you approach troubleshooting and resolving bugs?', + }, + { + title: 'Remote Work: Challenges and Solutions', + content: + 'Discussing the challenges faced while working remotely and sharing strategies to stay productive, maintain communication, and foster team collaboration.', + }, + { + title: 'Machine Learning for Beginners', + content: + "New to machine learning? Let's explore foundational concepts, resources, and hands-on tutorials to get started with machine learning projects.", + }, + { + title: 'Continuous Integration and Deployment (CI/CD)', + content: + 'Exploring CI/CD pipelines, best practices, and tools for automating software delivery processes. Share your experiences and tips for implementing CI/CD.', + }, + { + title: 'Interview Preparation Tips', + content: + 'Preparing for software engineering interviews? Discussing strategies, common interview questions, and resources to ace technical interviews.', + }, + { + title: 'Frontend Performance Optimization Techniques', + content: + 'Exploring strategies and tools to optimize frontend performance. Share tips on reducing page load times, improving rendering efficiency, and optimizing assets.', + }, + { + title: 'Backend Architecture Best Practices', + content: + 'Discussing best practices for designing scalable and resilient backend architectures. How do you ensure high availability and fault tolerance?', + }, + { + title: 'Version Control: Git Tips and Tricks', + content: + 'Share your favorite Git commands, workflows, and best practices for version control. How do you handle branching, merging, and code collaboration?', + }, + { + title: 'Agile Development: Scrum vs Kanban', + content: + 'Comparing Scrum and Kanban methodologies for Agile software development. Which approach works better for your team and why?', + }, + { + title: 'Python vs Java: Which is Better for Backend Development?', + content: + 'Debating the pros and cons of Python and Java for backend development. Share your experiences and preferences in choosing a backend programming language.', + }, + { + title: 'Tips for Building Scalable Microservices', + content: + 'Discussing architectural patterns, communication protocols, and deployment strategies for building scalable microservices architectures.', + }, + { + title: 'Data Structures and Algorithms: Best Resources', + content: + 'Sharing recommended resources, books, and online courses for learning data structures and algorithms. What are your favorite learning materials?', + }, + { + title: 'Web Security: Best Practices and Tools', + content: + 'Discussing security vulnerabilities, best practices, and tools for securing web applications. How do you protect against common web attacks?', + }, + { + title: 'UX/UI Design Principles for Developers', + content: + 'Exploring UX/UI design principles and best practices for developers. How can developers contribute to creating user-friendly and visually appealing interfaces?', + }, + { + title: 'Cloud Computing: AWS vs Azure', + content: + 'Comparing Amazon Web Services (AWS) and Microsoft Azure cloud platforms. Which platform do you prefer for hosting and deploying your applications?', + }, + { + title: 'Blockchain Technology: Applications and Use Cases', + content: + 'Exploring real-world applications and use cases of blockchain technology beyond cryptocurrencies. How is blockchain transforming industries?', + }, + { + title: 'Artificial Intelligence: Ethics and Implications', + content: + 'Discussing ethical considerations and societal implications of AI technologies. How can we ensure responsible AI development and deployment?', + }, + { + title: 'Mobile App Development Trends for 2024', + content: + 'Predicting and discussing emerging trends and technologies in mobile app development for the upcoming year. What trends are shaping the mobile app landscape?', + }, + { + title: 'Open Source Contributions: Getting Started', + content: + 'Tips and advice for beginners on how to get started with contributing to open-source projects. What are the benefits of open-source contributions?', + }, + { + title: 'Big Data Analytics: Tools and Techniques', + content: + 'Exploring tools, frameworks, and techniques for analyzing and deriving insights from large datasets. How do you handle big data challenges?', + }, + { + title: 'Tech Career Transition: Tips and Success Stories', + content: + 'Sharing success stories, tips, and advice for transitioning into a tech career from a non-technical background. How did you make the leap?', + }, + { + title: 'Cybersecurity Threats: Prevention and Response', + content: + 'Discussing common cybersecurity threats and strategies for prevention and incident response. How do you secure your applications and data?', + }, + { + title: 'Cloud Native Applications: Architecture and Benefits', + content: + 'Exploring the architecture and benefits of cloud-native applications. How do you design and deploy applications for cloud environments?', + }, + { + title: 'AR/VR Development: Tools and Platforms', + content: + 'Discussing tools, platforms, and development techniques for creating augmented reality (AR) and virtual reality (VR) applications.', + }, + { + title: 'Data Privacy Regulations: Compliance Challenges', + content: + 'Navigating data privacy regulations and compliance challenges in software development. How do you ensure GDPR and CCPA compliance?', + }, + { + title: 'Full Stack Development: Best Practices', + content: + 'Best practices, tools, and frameworks for mastering full-stack development. How do you balance frontend and backend development responsibilities?', + }, + { + title: 'Serverless Computing: Benefits and Use Cases', + content: + 'Exploring the benefits, use cases, and challenges of serverless computing architectures. How do you leverage serverless for scalable applications?', + }, + { + title: 'Tech Startups: Lessons Learned and Tips', + content: + 'Sharing lessons learned, success stories, and practical tips for launching and scaling tech startups. What challenges did you face?', + }, + { + title: 'Open Source Projects: Contributions and Impact', + content: + 'Discussing the impact of open-source projects on the tech industry and society. How can open-source initiatives drive innovation and collaboration?', + }, + { + title: 'Software Testing: Strategies and Automation', + content: + 'Strategies, tools, and best practices for software testing and test automation. How do you ensure comprehensive test coverage and quality?', + }, + { + title: 'API Design: Best Practices and Guidelines', + content: + 'Exploring best practices, design patterns, and guidelines for designing robust and developer-friendly APIs. What makes a good API?', + }, + { + title: 'Tech Conferences: Recommendations and Reviews', + content: + 'Discussing upcoming tech conferences, workshops, and events. Share your recommendations and reviews of past conferences.', + }, + { + title: 'Software Development Methodologies: Agile vs Waterfall', + content: + 'Comparing Agile and Waterfall methodologies for software development. Which approach suits your project and team dynamics?', + }, + { + title: 'AI in Healthcare: Applications and Innovations', + content: + 'Exploring AI applications and innovations in the healthcare industry. How is AI transforming patient care and medical research?', + }, + { + title: 'Code Quality Metrics and Tools', + content: + 'Measuring code quality and implementing metrics. Discussing tools and practices for maintaining high-quality codebases.', + }, + { + title: 'Blockchain Development Platforms: Ethereum vs Hyperledger', + content: + 'Comparing Ethereum and Hyperledger as blockchain development platforms. Which platform is suitable for different use cases?', + }, + { + title: 'Tech Diversity and Inclusion: Initiatives and Impact', + content: + 'Discussing initiatives and strategies for promoting diversity and inclusion in the tech industry. How can we create more inclusive workplaces?', + }, + { + title: 'AI Ethics: Bias, Accountability, and Transparency', + content: + 'Exploring ethical considerations in AI development, including bias mitigation, accountability frameworks, and transparency practices.', + }, + { + title: 'Game Development: Engines, Tools, and Challenges', + content: + 'Discussing game development engines, tools, and challenges. Share your experiences in creating interactive and immersive gaming experiences.', + }, +]; + +export const postContentOptions = [ + "I'm new to web development. Can anyone recommend a good beginner-friendly JavaScript framework?", + 'What are your favorite VS Code extensions for productivity? Looking to optimize my workflow.', + 'Discussing the pros and cons of using NoSQL databases like MongoDB versus traditional SQL databases.', + 'How do you handle software architecture design in agile development? Share your strategies and experiences.', + 'Exploring the role of microservices in modern software architectures. What are the benefits and challenges?', + 'Share your experiences with continuous integration and deployment tools like Jenkins and GitLab CI/CD.', + 'Tips for optimizing frontend performance in large-scale web applications? What techniques do you use?', + 'How important is unit testing in your development workflow? Discussing the impact on code quality.', + 'Seeking advice on transitioning from frontend to full-stack development. What skills should I focus on?', + 'Comparing popular cloud providers for hosting web applications: AWS, Azure, and Google Cloud Platform.', + 'Discussing the best practices for securing RESTful APIs. How do you protect against common vulnerabilities?', + 'Share your insights on DevOps culture and its impact on software development teams.', + 'What are the essential skills for a successful software engineering career in the next decade?', + 'Debating the future of AI and its potential impact on industries like healthcare and finance.', + 'Exploring the benefits of using TypeScript in large-scale JavaScript applications. Is it worth the learning curve?', + 'How do you approach code reviews in your team? Share your process for constructive feedback and improvement.', + 'Discussing the adoption of serverless architecture in enterprise applications. What are the use cases?', + 'Seeking recommendations for online platforms or courses to learn data science and machine learning.', + 'What are your favorite design patterns for building scalable backend systems? Discussing architecture.', + 'Tips for building responsive and accessible user interfaces in web development. Best practices?', + 'Exploring the challenges of scaling applications globally. How do you design for international users?', + 'How can blockchain technology revolutionize industries beyond finance? Discussing real-world applications.', + 'Share your experiences with remote team collaboration tools like Slack, Zoom, and Microsoft Teams.', + 'What are the key factors to consider when choosing a tech stack for a new startup project?', + 'Discussing the evolution of programming languages and their impact on software development practices.', + 'Tips for managing technical debt in software projects. How do you prioritize and refactor?', + 'Seeking advice on transitioning from academia to industry as a software engineer. What are the challenges?', + 'Exploring the role of AI in enhancing cybersecurity measures. How can AI algorithms detect threats?', + 'How do you approach refactoring legacy codebases? Share your strategies for modernization.', + 'Discussing the benefits of adopting agile methodologies in non-software development teams.', + 'Share your favorite resources for staying updated with the latest tech trends and industry news.', + 'How can developers contribute to open-source projects? Discussing the impact of community contributions.', + 'Tips for effective project management in software development teams. How do you ensure deadlines are met?', + 'Seeking advice on preparing for technical interviews at top tech companies. What are common interview questions?', + 'Discussing the ethics of AI in decision-making processes. How can we ensure fairness and accountability?', + 'What are the emerging trends in mobile app development? Discussing technologies like Flutter and React Native.', + 'How do you balance feature development with technical debt reduction in agile development?', + 'Exploring the challenges of implementing AI-driven chatbots in customer service applications.', + 'What are your strategies for improving team productivity and motivation in remote work environments?', + 'Tips for building scalable and maintainable frontend architectures. How do you structure your codebase?', + 'Seeking advice on building a personal brand as a software engineer. How can networking help career growth?', + 'Discussing the impact of IoT on everyday life and its implications for software developers.', + 'How can AI and machine learning be leveraged to enhance personalized user experiences in applications?', + 'Exploring the benefits of adopting a microservices architecture over monolithic applications.', + 'What are your thoughts on the future of cybersecurity in the era of AI and automation?', + 'Tips for optimizing database performance in high-traffic web applications. Best practices?', + 'Discussing the challenges and benefits of implementing blockchain technology in supply chain management.', + 'How do you approach designing intuitive user interfaces? Share your UX/UI design principles.', +]; + +export const cityOptions = [ + 'New York', + 'Los Angeles', + 'Chicago', + 'Houston', + 'Phoenix', + 'Philadelphia', + 'San Antonio', + 'San Diego', + 'Dallas', + 'San Jose', + 'Austin', + 'Jacksonville', + 'Fort Worth', + 'Columbus', + 'San Francisco', + 'Charlotte', + 'Indianapolis', + 'Seattle', + 'Denver', + 'Washington', + 'Boston', + 'El Paso', + 'Nashville', + 'Detroit', + 'Oklahoma City', + 'Portland', + 'Las Vegas', + 'Memphis', + 'Louisville', + 'Baltimore', + 'Milwaukee', + 'Albuquerque', + 'Tucson', + 'Fresno', + 'Sacramento', + 'Kansas City', + 'Mesa', + 'Atlanta', + 'Omaha', + 'Colorado Springs', + 'Raleigh', + 'Miami', + 'Long Beach', + 'Virginia Beach', + 'Oakland', + 'Minneapolis', + 'Tulsa', + 'Arlington', + 'New Orleans', + 'Wichita', + 'Cleveland', + 'Tampa', + 'Bakersfield', + 'Aurora', + 'Anaheim', + 'Honolulu', + 'Santa Ana', + 'Riverside', + 'Corpus Christi', + 'Lexington', + 'Stockton', + 'Henderson', + 'Saint Paul', + 'St. Louis', + 'Cincinnati', + 'Pittsburgh', + 'Greensboro', + 'Anchorage', + 'Plano', + 'Lincoln', + 'Orlando', + 'Irvine', + 'Newark', + 'Toledo', + 'Durham', + 'Chula Vista', + 'Fort Wayne', + 'Jersey City', + 'St. Petersburg', + 'Laredo', + 'Madison', + 'Chandler', + 'Buffalo', + 'Lubbock', + 'Scottsdale', + 'Reno', + 'Glendale', + 'Gilbert', + 'Winston-Salem', + 'North Las Vegas', + 'Norfolk', + 'Chesapeake', + 'Garland', + 'Irving', + 'Toronto', + 'London', + 'Paris', + 'Sydney', + 'Tokyo', + 'Berlin', + 'Mexico City', + 'Mumbai', + 'Beijing', + 'Sรฃo Paulo', +]; diff --git a/scripts/db/mockData/MOCK_ALUMNI.json b/scripts/db/mockData/MOCK_ALUMNI.json new file mode 100644 index 00000000..08fd2fa3 --- /dev/null +++ b/scripts/db/mockData/MOCK_ALUMNI.json @@ -0,0 +1 @@ +[{"company":"1-800 Flowers","name":"Daniel Reilley","email":"dannyreilley@gmail.com","linkedIn":"https://www.linkedin.com/in/daniel-reilley/","campus":"LA","cohort":"45","jobTitle":"Full-Stack Application Developer","industry":"Retail","cities":["Sรฃo Paulo","Plano"]},{"company":"1Password","name":"William Quan Nguyen","email":"william.nguyen202103@gmail.com","linkedIn":"https://www.linkedin.com/in/william-nguyen202103/","campus":"PTRI","cohort":"10","jobTitle":"Software Engineer intern","industry":"Security/Data Privacy","cities":["Cleveland","Irvine","Henderson"]},{"company":"1StopBedrooms","name":"David Yedid","email":"diyedid@gmail.com","linkedIn":"https://www.linkedin.com/in/yedid/","campus":"NYC","cohort":"15","jobTitle":"VP, Projects (working under CTO); and General Counsel","industry":"E-Commerce","cities":["Buffalo"]},{"company":"1upHealth","name":"Robleh Farah","email":"farahrobleh1@gmail.com","linkedIn":"https://www.linkedin.com/in/farahrobleh","campus":"LA","cohort":"43","jobTitle":"Software Engineer","industry":"Health Tech","cities":["St. Louis","Jacksonville"]},{"company":"23andMe","name":"Jiwon Chung","email":"jiwon.chung07@gmail.com","linkedIn":"https://www.linkedin.com/in/jchung07/","campus":"LA","cohort":"48","jobTitle":"Software Engineer","industry":"Biotech","cities":["Corpus Christi","Fresno"]},{"company":"2U","name":"Rebecca Shesser","email":"rebeccashesser@gmail.com","linkedIn":"https://www.linkedin.com/in/rebeccashesser/","campus":"NYC / ECRI","cohort":"36","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Boston","Gilbert","Sรฃo Paulo"]},{"company":"98point6","name":"Avi Kerson","email":"avitacos@gmail.com","linkedIn":"https://www.linkedin.com/in/avi-kerson/","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Engineer","industry":"Healthcare","cities":["New Orleans","Minneapolis"]},{"company":"AAA (Club Labs)","name":"Michael Chan","email":"mckchan13@gmail.com","linkedIn":"https://www.linkedin.com/in/michael-ck-chan/","campus":"PTRI","cohort":"5","jobTitle":"Software Engineer","industry":"Insurance","cities":["Chandler"]},{"company":"Aavia","name":"Wayland SIngh","email":"wmsingh@ucdavis.edu","linkedIn":"https://www.linkedin.com/in/wayland-singh/","campus":"NYOI","cohort":"4","jobTitle":"Backend Engineer","industry":"Healthtech/Healthcare","cities":["Chula Vista","Oklahoma City","Jacksonville","Sacramento"]},{"company":"Abstract","name":"Tyler Kneidl","email":"tskneidl@gmail.com","linkedIn":"https://www.LinkedIn.com/in/tylerkneidl","campus":"NYC","cohort":"25","jobTitle":"Full Stack Engineer","industry":"Software Development","cities":["Lubbock","Winston-Salem"]},{"company":"Accenture","name":"Adrian Reczek","email":"adrianwreczek@gmail.com","linkedIn":"https://www.linkedin.com/in/adrian-reczek/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Full Stack Software Engineer, Senior Analyst","industry":"Consulting","cities":["Boston","Minneapolis"]},{"company":"Accenture","name":"Colin Roemer","email":"colin.roemer@gmail.com","linkedIn":"https://www.linkedin.com/in/colinroemer/","campus":"LA","cohort":"23","jobTitle":"Node Microservices Engineer","industry":"","cities":["Tucson","San Diego","Garland"]},{"company":"Accenture","name":"Shamilah Faria","email":"shamilahfaria@gmail.com","linkedIn":"https://www.linkedin.com/in/shamilah-faria/","campus":"NYC","cohort":"28","jobTitle":"Software Artisan","industry":"Technology","cities":["Louisville","Raleigh"]},{"company":"Accrete AI","name":"Andrew Moy","email":"ajmoy35@gmail.com","linkedIn":"https://www.linkedin.com/in/andrewmoy/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Full Stack Engineer","industry":"Artificial Intelligence","cities":["Sรฃo Paulo"]},{"company":"Acorns","name":"Zahaan Jasani","email":"zahaanjasani@gmail.com","linkedIn":"https://www.linkedin.com/in/zahaan-jasani-183913126/","campus":"LA","cohort":"26","jobTitle":"Software Engineer II - Backend","industry":"Finance","cities":["Anchorage","Garland","Jersey City"]},{"company":"Acronis","name":"Paul Kim","email":"Khyunwoo1@gmail.com","linkedIn":"https://www.linkedin.com/in/paulyjkim","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"\"Data Protection/ Cyber Security\"","cities":["Gilbert","Paris"]},{"company":"ActiveCampaign","name":"Jacob Gillan","email":"jacobgillan9@gmail.com","linkedIn":"https://www.linkedin.com/in/jacob-gillan/","campus":"FTRI / CTRI","cohort":"15","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Nashville"]},{"company":"Actuate","name":"Braddon Murphy","email":"braddonmurphy@gmail.com","linkedIn":"https://www.linkedin.com/in/braddonlee/","campus":"FTRI","cohort":"6","jobTitle":"Software Engineer","industry":"Security","cities":["Oklahoma City","Austin","Louisville","Scottsdale"]},{"company":"Acuity Brands","name":"Logan Coale","email":"lcoale@gmail.com","linkedIn":"https://www.linkedin.com/in/logancoale/","campus":"NYC","cohort":"25","jobTitle":"Senior Software Engineer","industry":"Industrial Lighting/IoT","cities":["El Paso"]},{"company":"Adaptive Biotechnologies","name":"Conor Chinitz","email":"conorchinitz@gmail.com","linkedIn":"https://www.linkedin.com/in/conorchinitz","campus":"FTRI","cohort":"7","jobTitle":"Software Engineer III","industry":"Biotech","cities":["Toledo","Chandler"]},{"company":"Adobe - Frame.io","name":"Anna Brakowska","email":"anna.brakowska91@gmail.com","linkedIn":"https://www.linkedin.com/in/anna-brakowska/","campus":"NYC","cohort":"7","jobTitle":"Software Engineer","industry":"","cities":["Anaheim"]},{"company":"Affirm","name":"Oscar Chan","email":"chanoscar0@gmail.com","linkedIn":"https://www.linkedin.com/in/occhan/","campus":"LA","cohort":"26","jobTitle":"Software Engineer","industry":"Fintech","cities":["Aurora","Lexington","Toronto","Norfolk"]},{"company":"Age of Learning","name":"Brian Kwok","email":"brian.kwok15@gmail.com","linkedIn":"https://www.linkedin.com/in/briankwok15/","campus":"LA","cohort":"29","jobTitle":"Software Engineer","industry":"Education","cities":["Norfolk","Irvine","Tucson","New York"]},{"company":"Age of Learning","name":"Tre Hultzen","email":"hultzentre@gmail.com","linkedIn":"https://www.linkedin.com/in/tre-hultzen/","campus":"LA","cohort":"45","jobTitle":"Web Services Engineer","industry":"Education","cities":["Buffalo","Santa Ana"]},{"company":"Agua Caliente Casinos","name":"Mark Alexander","email":"markalexander72@gmail.com","linkedIn":"https://www.linkedin.com/in/marka772","campus":"PTRI","cohort":"7","jobTitle":"Web Developer","industry":"Gaming/eSports","cities":["Garland"]},{"company":"AI Insurance","name":"James Edwards III","email":"j.olden.edwards@gmail.com","linkedIn":"https://www.linkedin.com/in/james-edwards-547307242/","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Buffalo","Denver"]},{"company":"Air Labs, Inc.","name":"Madison Brown","email":"mbrown3391@gmail.com","linkedIn":"https://www.linkedin.com/in/madisondbrown/","campus":"NYC","cohort":"18","jobTitle":"Sr. Software Engineer","industry":"Digital Asset Management","cities":["Cleveland"]},{"company":"Airtable","name":"Clara Kim","email":"clarayhkim96@gmail.com","linkedIn":"https://www.linkedin.com/in/clarakm/","campus":"LA","cohort":"34","jobTitle":"Full-stack Engineer","industry":"SaaS","cities":["Raleigh","Greensboro"]},{"company":"Ajmadison","name":"Shlomo porges","email":"porges.s@gmail.com","linkedIn":"https://www.linkedin.com/in/shlomoporges/","campus":"NYC","cohort":"10","jobTitle":"DB architect","industry":"Appliances","cities":["Oakland","Laredo","Minneapolis","Sydney"]},{"company":"Albert","name":"Will Bladon","email":"whbladon@gmail.com","linkedIn":"https://www.linkedin.com/in/will-bladon/","campus":"LA","cohort":"40","jobTitle":"Software Engineer","industry":"Fintech","cities":["Kansas City"]},{"company":"Alchemy","name":"Mathias Perfumo","email":"mathias.perfumo@gmail.com","linkedIn":"https://www.linkedin.com/in/mathiasperfumo","campus":"FTRI / CTRI","cohort":"7","jobTitle":"Software Engineer","industry":"Other","cities":["Buffalo","Columbus","Laredo","Dallas"]},{"company":"Aledade","name":"Etana Kopin","email":"claws.33@gmail.com","linkedIn":"https://www.linkedin.com/in/egkopin/","campus":"PTRI","cohort":"8","jobTitle":"Senior Software Engineer","industry":"Healthcare","cities":["Toronto","Portland","Miami","Irvine"]},{"company":"Alethix","name":"Mark Dolan","email":"mark.dolan3@gmail.com","linkedIn":"https://www.linkedin.com/in/markdolan30/","campus":"NYC","cohort":"29","jobTitle":"Frontend Software Engineer","industry":"Government services","cities":["Wichita"]},{"company":"Algolia","name":"Jacob Cole","email":"jacob.cole@gmail.com","linkedIn":"jacobcole34","campus":"PTRI","cohort":"8","jobTitle":"Solutions Engineer","industry":"Software / Tech","cities":["Norfolk","Irvine","Toronto","Phoenix"]},{"company":"Allen Institute","name":"Joseph Heffernan","email":"Interim17@gmail.com","linkedIn":"LinkedIn.com/in/Joseph-heffernan","campus":"LA / WCRI","cohort":"53","jobTitle":"Software Engineer Front End","industry":"Biotech","cities":["Los Angeles","Aurora","Detroit"]},{"company":"Alleo.ai","name":"Rawan Al Bairouti","email":"rawan.bairouti@gmail.com","linkedIn":"linkedin.com/in/rawanbairouti","campus":"PTRI","cohort":"7","jobTitle":"Lead Developer ","industry":"Software Solutions/Developer Tools","cities":["Riverside"]},{"company":"Alloy","name":"Jacqueline Chang","email":"jqw.chang@gmail.com","linkedIn":"https://www.linkedin.com/in/jqw-chang/","campus":"NYC","cohort":"7","jobTitle":"Software Engineer II","industry":"","cities":["Glendale","Newark","Buffalo","Minneapolis"]},{"company":"Alloy","name":"Sophie Nye","email":"sophie.nye@gmail.com","linkedIn":"https://www.linkedin.com/in/gsophienye/","campus":"NYC","cohort":"12","jobTitle":"Software Engineer II","industry":"Fintech","cities":["Austin","Chesapeake","Orlando"]},{"company":"Allure Bridal","name":"Patrick Reid","email":"patrickjreid@gmail.com","linkedIn":"https://www.linkedin.com/in/patrickjreid/","campus":"PTRI","cohort":"6","jobTitle":"Senior Solutions Engineer","industry":"Retail","cities":["Stockton","Lincoln","Louisville"]},{"company":"Ally","name":"Oleksii Hordiienko","email":"alex.hord@yahoo.com","linkedIn":"https://www.linkedin.com/in/oleksii-hordiienko/","campus":"NYC","cohort":"27","jobTitle":"Sr. Software Engineer","industry":"Fintech","cities":["North Las Vegas","Berlin","Tulsa"]},{"company":"Ally","name":"Allison Jacobs","email":"allison-jacobs@outlook.com","linkedIn":"https://www.linkedin.com/in/allison-j","campus":"NYC","cohort":"25","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["North Las Vegas","Los Angeles","Buffalo"]},{"company":"Ally","name":"Connor Tracy","email":"Connortracy15@gmail.com","linkedIn":"https://www.linkedin.com/in/connortracy19","campus":"NYC","cohort":"28","jobTitle":"Frontend Software Engineer","industry":"Fintech","cities":["Santa Ana"]},{"company":"Ally","name":"Damien Evans","email":"damiensevans@gmail.com","linkedIn":"https://www.linkedin.com/in/damien-s-evans/","campus":"NYC","cohort":"27","jobTitle":"Principal Software Engineer","industry":"Fintech","cities":["Charlotte"]},{"company":"Ally","name":"Mercedes Kalaizic","email":"Kalaizicmercedes@gmail.com","linkedIn":"https://www.linkedin.com/in/mkalaizic/","campus":"NYC","cohort":"28","jobTitle":"Principal Software Engineer","industry":"Fintech","cities":["Plano","Stockton","Honolulu"]},{"company":"Ally","name":"Richard Zhang","email":"rchzhng@gmail.com","linkedIn":"https://www.linkedin.com/in/dickzhang/","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Software Engineer","industry":"Fintech","cities":["Honolulu"]},{"company":"Ally","name":"Garrett Weaver","email":"Uncommonweaver@gmail.com","linkedIn":"https://www.linkedin.com/in/g-weaver/","campus":"NYC","cohort":"23","jobTitle":"API Developer","industry":"Fintech","cities":["Jacksonville","Scottsdale","Columbus"]},{"company":"Alo Yoga","name":"Angie Chang","email":"angiechangpagne@gmail.com","linkedIn":"https://www.linkedin.com/in/angelsofwar","campus":"LA","cohort":"32","jobTitle":"Software Engineer","industry":"E-Commerce/Fashion/Wellness/Mindfulness","cities":["Chesapeake","Orlando"]},{"company":"AlphaSense","name":"Joe Pavlisko","email":"jpavlisko@protonmail.com","linkedIn":"https://www.linkedin.com/in/joe-pavlisko-11b74930/","campus":"NYC","cohort":"11","jobTitle":"Software Engineer","industry":"FinTech","cities":["Madison","Chandler","Cincinnati"]},{"company":"ALTEN GmbH","name":"Jay Wall","email":"walljayw@gmail.com","linkedIn":"https://www.linkedin.com/in/hanswand/","campus":"LA","cohort":"47","jobTitle":"Senior Consultant","industry":"Consultancy - Fintech, Manufacturing, Healthcare","cities":["Chesapeake"]},{"company":"Alteryx","name":"Miriam Feder","email":"mirfeder@gmail.com","linkedIn":"https://www.linkedin.com/in/miriam-feder","campus":"NYC","cohort":"32","jobTitle":"Senior Software Engineer","industry":"Data Analytics","cities":["Albuquerque"]},{"company":"Altice USA","name":"Ola Adedoyin","email":"ola_adedoyin@yahoo.com","linkedIn":"https://www.linkedin.com/in/oadedoyin/","campus":"NYC","cohort":"15","jobTitle":"DevOps Engineering Manager","industry":"Communication and Media","cities":["Detroit","Mesa","Sacramento"]},{"company":"Amazon","name":"Amy Liang","email":"amyliangny@gmail.com","linkedIn":"https://www.linkedin.com/in/amyliang18/","campus":"NYC","cohort":"30","jobTitle":"Software Development Engineer","industry":"Software / Tech","cities":["Orlando","Memphis"]},{"company":"Amazon","name":"Anna Falvello","email":"anna.falvello@gmail.com","linkedIn":"https://www.linkedin.com/in/afalvello/","campus":"NYC","cohort":"29","jobTitle":"SDEII","industry":"Ecommerce","cities":["Tucson","Garland"]},{"company":"Amazon","name":"Anthony Valdez","email":"avaldez520@gmail.com","linkedIn":"https://www.linkedin.com/in/va1dez/","campus":"NYC","cohort":"32","jobTitle":"SDE II (Full Stack)","industry":"Software / Tech","cities":["Glendale"]},{"company":"Amazon","name":"Christopher LeBrett","email":"clebrett@gmail.com","linkedIn":"https://www.linkedin.com/in/chris-lebrett/","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Development Engineer","industry":"Software / Tech","cities":["Boston","Irvine"]},{"company":"Amazon","name":"Christopher Wong","email":"cwong8257@gmail.com","linkedIn":"https://www.linkedin.com/in/chriswong2/","campus":"NYC","cohort":"7","jobTitle":"Software Engineer","industry":"","cities":["Norfolk"]},{"company":"Amazon","name":"David Anderson","email":"dlande000@gmail.com","linkedIn":"https://www.linkedin.com/in/dlande000/","campus":"NYC","cohort":"26","jobTitle":"Front-End Engineer","industry":"AWS / internet infrastructure","cities":["Greensboro","Lexington"]},{"company":"Amazon","name":"Dillon Schriver","email":"dschriver9@gmail.com","linkedIn":"https://www.linkedin.com/in/dillon-schriver/","campus":"NYC","cohort":"27","jobTitle":"Software Development Engineer II","industry":"Ecommerce","cities":["Arlington","Stockton","Norfolk"]},{"company":"Amazon","name":"Eelan Tung","email":"eelantung@gmail.com","linkedIn":"https://www.linkedin.com/in/eelantung","campus":"NYC","cohort":"19","jobTitle":"Software Development Engineer","industry":"Software / Tech","cities":["Tokyo","Tulsa","Boston"]},{"company":"Amazon","name":"Jason Huang","email":"huang.jason999@gmail.com","linkedIn":"https://www.linkedin.com/in/huang-jason999/","campus":"NYC","cohort":"16","jobTitle":"Software Development Engineer II","industry":"Technology","cities":["Albuquerque","Tokyo","Mumbai","Mesa"]},{"company":"Amazon","name":"Idan Michael","email":"idan.michael3@gmail.com","linkedIn":"https://www.linkedin.com/in/idanmichael/","campus":"NYC","cohort":"30","jobTitle":"Software Develpment Engineer","industry":"Cloud","cities":["Wichita"]},{"company":"Amazon","name":"Jacqueline Douglass","email":"jackie.douglass@icloud.com","linkedIn":"https://www.linkedin.com/in/jacqueline-douglass/","campus":"FTRI","cohort":"2","jobTitle":"Front-End Engineer","industry":"e-commerce, cloud computing, digital streaming, and artificial intelligence.","cities":["Phoenix","New Orleans","Winston-Salem"]},{"company":"Amazon","name":"James Kim","email":"james.minjae.97@gmail.com","linkedIn":"https://linkedin.com/in/jamesmjkim","campus":"PTRI","cohort":"5","jobTitle":"Software Development Engineer 1","industry":"Software / Tech","cities":["Oakland","San Francisco"]},{"company":"Amazon","name":"Luke Michals","email":"luke.michals@gmail.com","linkedIn":"","campus":"LA","cohort":"14","jobTitle":"Frontend Engineer II","industry":"Retail","cities":["Lubbock","Oklahoma City"]},{"company":"Amazon","name":"Jennifer Song","email":"lumie.song@gmail.com","linkedIn":"https://www.linkedin.com/in/lu0713/","campus":"NYC","cohort":"20","jobTitle":"Software Development Engineer II","industry":"Tech","cities":["Omaha","Sydney","Jacksonville"]},{"company":"Amazon","name":"Megan Nadkarni","email":"megan.nadkarni@gmail.com","linkedIn":"https://www.linkedin.com/in/megannadkarni/","campus":"LA","cohort":"48","jobTitle":"Front End Engineer","industry":"Software / Tech","cities":["New York","Tampa","Paris"]},{"company":"Amazon","name":"Mark Washkewicz","email":"mwashkewicz@gmail.com","linkedIn":"https://www.linkedin.com/in/mark-washkewicz/","campus":"LA","cohort":"39","jobTitle":"Software Development Engineer 1","industry":"Retail","cities":["Sydney"]},{"company":"Amazon","name":"Stephan Halarewicz","email":"shalarewicz@gmail.com","linkedIn":"https://www.linkedin.com/in/stephanhalarewicz/","campus":"PTRI","cohort":"6","jobTitle":"Software Development Engineer, People Engine","industry":"Software / Tech","cities":["Chesapeake","Memphis","Jacksonville","New Orleans"]},{"company":"Amazon","name":"Tanner Peterson","email":"tanpeterson@gmail.com","linkedIn":"https://www.linkedin.com/in/tanner-peterson/","campus":"LA","cohort":"46","jobTitle":"Front End Engineer","industry":"Cloud Services","cities":["Norfolk","Toronto","Garland","Durham"]},{"company":"Amazon","name":"Timothy Mai","email":"timothy.mai13@gmail.com","linkedIn":"https://www.linkedin.com/in/timothy-mai-459085b3/","campus":"LA","cohort":"31","jobTitle":"Software Development Engineer I","industry":"Advertising","cities":["Riverside"]},{"company":"Amazon","name":"Yogi Paturu","email":"ypaturu@gmail.com","linkedIn":"https://www.linkedin.com/in/yogi-paturu/","campus":"NYC","cohort":"29","jobTitle":"Software Development Engineer","industry":"Cloud","cities":["Las Vegas","Charlotte"]},{"company":"Amazon","name":"Yale Yng-Wong","email":"yyngwong@gmail.com","linkedIn":"https://www.linkedin.com/in/ywyw/","campus":"NYC","cohort":"32","jobTitle":"SDE1","industry":"Advertising","cities":["Riverside","Cincinnati","Tulsa"]},{"company":"Amazon (AWS)","name":"Michael Weber","email":"michael.weber.jr@gmail.com","linkedIn":"https://www.linkedin.com/in/michael-weber-jr/","campus":"NYC","cohort":"26","jobTitle":"Software Development Engineer","industry":"Cloud Services","cities":["Baltimore","Virginia Beach","Glendale","Atlanta"]},{"company":"Amazon Prime Video","name":"Faraz Moallemi","email":"moallemifaraz@gmail.com","linkedIn":"https://www.linkedin.com/in/farazmoallemi/","campus":"LA","cohort":"44","jobTitle":"Software Development Engineer I","industry":"Big Tech","cities":["Dallas","Pittsburgh","Anchorage"]},{"company":"Amazon Web Services","name":"Daniel Forrester","email":"danielf216@gmail.com","linkedIn":"https://www.linkedin.com/in/danielforrester/","campus":"PTRI","cohort":"5","jobTitle":"Cloud Application Architect","industry":"Cloud Services","cities":["Chandler","Saint Paul","Memphis","Omaha"]},{"company":"Amazon Web Services","name":"Lumie (Jen) Song","email":"lumie.song@gmail.com","linkedIn":"https://www.linkedin.com/in/lu0713/","campus":"NYC","cohort":"20","jobTitle":"Software Development Engineer II","industry":"Software","cities":["Henderson","Detroit","Chesapeake","Cincinnati"]},{"company":"Amazon Web Services","name":"Matthew Lee","email":"matthewcml6022@gmail.com","linkedIn":"https://www.linkedin.com/in/matthewcmlee/","campus":"LA","cohort":"45","jobTitle":"Software Development Engineer","industry":"Web Services / Cloud Computing","cities":["Indianapolis","Atlanta","Durham","Chicago"]},{"company":"Amazon Web Services","name":"Taylor Rodrigues","email":"taylor.d.rod33@gmail.com","linkedIn":"https://www.linkedin.com/in/taylorrodrigues/","campus":"LA","cohort":"33","jobTitle":"Software Development Engineer I (L4)","industry":"Cloud Computing","cities":["Irvine","Durham","Toronto","Tokyo"]},{"company":"Amazon Web Services (AWS)","name":"Raphael Bargues","email":"rbargues@gmail.com","linkedIn":"https://www.linkedin.com/in/raphael-bargues/","campus":"NYC","cohort":"17","jobTitle":"Software Engineer","industry":"","cities":["Omaha","Boston","Toronto"]},{"company":"Amazon, AWS","name":"Jimmy Ngo","email":"jimmycngo@gmail.com","linkedIn":"https://www.linkedin.com/in/jimmycngo/","campus":"FTRI","cohort":"2","jobTitle":"Software Development Engineer 1","industry":"cloud computing","cities":["Phoenix","Lubbock"]},{"company":"AMC Networks","name":"Wade Armstrong","email":"wade@wadearmstrong.com","linkedIn":"https://www.linkedin.com/in/wadearmstrong/","campus":"LA","cohort":"5","jobTitle":"Director, Front-End Development","industry":"Entertainment","cities":["Tucson","Anchorage","Jersey City"]},{"company":"American Airlines(Contracted via BrookSource)","name":"Mariah Talicuran","email":"talicuran.mariah@gmail.com","linkedIn":"https://www.linkedin.com/in/mariahtalicuran/","campus":"PTRI","cohort":"6","jobTitle":"Associate React Developer","industry":"Other","cities":["Irvine","Albuquerque"]},{"company":"American Dawn","name":"Charlie Huang","email":"charliehuang913@gmail.com","linkedIn":"https://www.linkedin.com/in/huangcharlie","campus":"LA / WCRI","cohort":"48","jobTitle":"Junior Software Engineer","industry":"Retail","cities":["Lubbock","Phoenix","Tulsa","Fort Wayne"]},{"company":"American Express","name":"Dominic DiSalvo","email":"Dominicd17@gmail.com","linkedIn":"https://www.linkedin.com/mwlite/in/dominicdisalvo","campus":"FTRI","cohort":"3","jobTitle":"Software Engineer","industry":"Fintech","cities":["Miami","Tucson","Fort Wayne","Berlin"]},{"company":"American Express","name":"Jake Diorio","email":"jdiorio2393@gmail.com","linkedIn":"https://www.linkedin.com/in/jake-diorio/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"Banking","cities":["Norfolk","Anaheim"]},{"company":"American Express","name":"Kelvin Shamy","email":"kelvinshamy@gmail.com","linkedIn":"https://www.linkedin.com/in/kelvinshamy/","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Software Engineer","industry":"Fintech","cities":["Sรฃo Paulo"]},{"company":"American Express","name":"Rebecca Turk","email":"rebecca.e.turk@gmail.com","linkedIn":"https://www.linkedin.com/in/rebeccaturk/","campus":"NYC","cohort":"5","jobTitle":"Engineer I","industry":"","cities":["Durham","Plano","Sydney","Raleigh"]},{"company":"American Express","name":"Victor He","email":"victorhe33@gmail.com","linkedIn":"www.linkedin.com/in/victorhe33","campus":"PTRI","cohort":"8","jobTitle":"Software Engineer","industry":"Fintech","cities":["St. Petersburg"]},{"company":"AmeriSave","name":"Andrew Pomatti","email":"ampomatti@gmail.com","linkedIn":"https://www.linkedin.com/in/drewpomatti/","campus":"LA","cohort":"47","jobTitle":"Systems Engineer I","industry":"Real Estate","cities":["Denver","Henderson","North Las Vegas","Plano"]},{"company":"AmeriSave","name":"Jacob C Viesselman","email":"jacob.viesselman@gmail.com","linkedIn":"https://www.linkedin.com/in/jacobviesselman/","campus":"LA","cohort":"46","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Wichita"]},{"company":"Amerisave","name":"Norman Liu","email":"Normanliu91@gmail.com","linkedIn":"https://www.linkedin.com/in/norm-liu","campus":"PTRI","cohort":"5","jobTitle":"Software Engineer","industry":"Fintech","cities":["London","Glendale"]},{"company":"AmeriSave Mortgage Corporation","name":"Jason Chan","email":"Jason.chann91@gmail.com","linkedIn":"https://www.linkedin.com/in/jason-chan1765/","campus":"FTRI","cohort":"7","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Albuquerque","Scottsdale"]},{"company":"AmeriSave Mortgage Corporation","name":"Michael Prince","email":"mgp2454@gmail.com","linkedIn":"https://www.linkedin.com/in/michael-prince","campus":"LA","cohort":"46","jobTitle":"Software Engineer","industry":"Fintech","cities":["Stockton"]},{"company":"Ample, LLC","name":"Rudo Hengst","email":"rudohengst@gmail.com","linkedIn":"https://www.linkedin.com/in/rhengst/","campus":"NYC","cohort":"18","jobTitle":"Lead Developer","industry":"Digital Marketing","cities":["Arlington","Plano"]},{"company":"Amplify","name":"Ekaterina Vasileva","email":"ekaterinavasileva768@gmail.com","linkedIn":"https://www.linkedin.com/in/ekaterina-vasileva238/","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"Education","cities":["Cincinnati","Nashville"]},{"company":"Amplify","name":"Biet Van Nguyen","email":"vanbietnguyen@gmail.com","linkedIn":"https://www.linkedin.com/in/van-biet-nguyen-6879434a/","campus":"NYC","cohort":"27","jobTitle":"Software Engineer","industry":"Edtech","cities":["Mexico City","Nashville","New Orleans","Albuquerque"]},{"company":"Anaconda","name":"Rosio Reyes","email":"rosio_reyes@yahoo.com","linkedIn":"https://www.linkedin.com/in/rosio-reyes-09b9a256/","campus":"PTRI","cohort":"3","jobTitle":"Software Engineer","industry":"Computer Software","cities":["Chula Vista","Plano"]},{"company":"Ancestry","name":"Miguel Garibay","email":"miguelgaribay93@gmail.com","linkedIn":"https://www.linkedin.com/in/miguel-garibay-mag/","campus":"LA","cohort":"43","jobTitle":"Full Stack Software Engineer","industry":"Genealogy","cities":["Las Vegas","San Antonio"]},{"company":"Ancestry","name":"Schno Mozingo","email":"schno.mozingo@gmail.com","linkedIn":"https://www.linkedin.com/in/schno-mozingo/","campus":"LA","cohort":"12","jobTitle":"Senior Software Engineer","industry":"Geneology","cities":["Atlanta","North Las Vegas","St. Louis","Cincinnati"]},{"company":"Ancilia","name":"Clark Pang","email":"clarkcpang@gmail.com","linkedIn":"https://www.linkedin.com/in/clarkpang/","campus":"LA / WCRI","cohort":"56","jobTitle":"Software Engineer","industry":"Security","cities":["San Francisco","Jacksonville"]},{"company":"Anheuser-Busch","name":"Brandon Bowers","email":"brandonbowers1234@gmail.com","linkedIn":"https://www.linkedin.com/in/brandon-michael-bowers/","campus":"FTRI","cohort":"3","jobTitle":"Senior Front-end React Developer","industry":"Beverages","cities":["Greensboro"]},{"company":"Annalect","name":"Carlos Peรฑa","email":"carlos.pena91@gmail.com","linkedIn":"https://www.linkedin.com/in/carlospena91","campus":"LA","cohort":"39","jobTitle":"Front End Engineer","industry":"Advertisement and Media","cities":["Colorado Springs"]},{"company":"Annalect","name":"Trent Currie","email":"trentdcurrie@gmail.com","linkedIn":"https://www.linkedin.com/in/trentdcurrie/","campus":"LA","cohort":"39","jobTitle":"Front-End Engineer","industry":"Marketing","cities":["Jacksonville"]},{"company":"Apex Fintech Solutions","name":"Kevin Le","email":"lekevin2013@gmail.com","linkedIn":"https://www.linkedin.com/in/kevinvu-le/","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Software Engineer","industry":"Fintech","cities":["Paris","Colorado Springs","Chesapeake","Fort Worth"]},{"company":"Apex Systems","name":"Anthony Martinez","email":"anthony@amartinez.cc","linkedIn":"https://www.linkedin.com/in/tony-mtz/","campus":"LA","cohort":"41","jobTitle":"Software Engineer","industry":"Bank","cities":["San Jose","Scottsdale","Bakersfield","Tokyo"]},{"company":"Apollo GraphQL","name":"Joel Burton","email":"joeltburton@gmail.com","linkedIn":"https://www.linkedin.com/in/joeltburton","campus":"LA","cohort":"26","jobTitle":"Software Engineer","industry":"Technology","cities":["Washington","Baltimore","Saint Paul","Anaheim"]},{"company":"Appfolio","name":"Erik Fisher","email":"efishr4@gmail.com","linkedIn":"https://www.linkedin.com/in/erik-fisher-53b9b6b3/","campus":"LA","cohort":"24","jobTitle":"Software Engineer II","industry":"Aviation & Aerospace","cities":["Garland","Phoenix"]},{"company":"Appfolio","name":"Michelle Holland","email":"michellebholland@gmail.com","linkedIn":"https://www.linkedin.com/in/michellebholland/","campus":"LA","cohort":"37","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Oakland"]},{"company":"AppFolio","name":"Timothy Barry","email":"tim.barry12@gmail.com","linkedIn":"https://www.linkedin.com/in/timothy-barry-se","campus":"FTRI","cohort":"8","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Albuquerque","Saint Paul","Long Beach"]},{"company":"Apple","name":"Alexander Zhang","email":"azalexanderzhang@gmail.com","linkedIn":"https://www.linkedin.com/in/zhang-alexander/","campus":"NYC","cohort":"26","jobTitle":"Software Engineer","industry":"Tech","cities":["New York","Miami","El Paso"]},{"company":"Apple (via Ryzen)","name":"Dieu Huynh","email":"dieuhhuynh@gmail.com","linkedIn":"https://www.linkedin.com/in/dieu-huynh/","campus":"LA","cohort":"42","jobTitle":"Frontend Engineer","industry":"Technology","cities":["Winston-Salem","Honolulu","Fort Wayne","Oklahoma City"]},{"company":"Applied Minds","name":"Michael Chiang","email":"michael.chiang.dev5@gmail.com","linkedIn":"https://www.linkedin.com/in/michael-chiang-dev5/","campus":"FTRI / CTRI","cohort":"13","jobTitle":"software engineer","industry":"Software / Tech","cities":["Durham","Corpus Christi","Philadelphia"]},{"company":"AppOmni","name":"Ousman Diallo","email":"ordiallo@gmail.com","linkedIn":"https://www.linkedin.com/in/ousman-diallo/","campus":"NYC","cohort":"15","jobTitle":"Front End Engineer","industry":"Security","cities":["Albuquerque","Mexico City","Berlin"]},{"company":"Arc'teryx","name":"Simon Grigenas","email":"grigenas@outlook.com","linkedIn":"https://www.linkedin.com/in/simon-grigenas/","campus":"NYC / ECRI","cohort":"1","jobTitle":"Intermediate Web Applications Developer","industry":"Retail","cities":["Paris"]},{"company":"Arcadia","name":"Adda Kridler","email":"addakridler@gmail.com","linkedIn":"https://www.linkedin.com/in/addakridler/","campus":"NYC","cohort":"27","jobTitle":"Software Engineer 1","industry":"Energy Tech","cities":["Mesa","Berlin","Atlanta","Santa Ana"]},{"company":"Arcadia","name":"Cameron Baumgartner","email":"cameron.h.baumgartner@gmail.com","linkedIn":"https://www.linkedin.com/in/cameronbaumgartner/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"Renewable Energy","cities":["Norfolk"]},{"company":"Arcadia","name":"Jehovany A Cruz","email":"howaboutjeho@gmail.com","linkedIn":"https://www.linkedin.com/in/jehovany-cruz/","campus":"NYC","cohort":"19","jobTitle":"Software Engineer","industry":"Energy - Renewable Energy","cities":["Anaheim","Portland"]},{"company":"Arcadia","name":"Jason Liggayu","email":"jligg224@gmail.com","linkedIn":"https://www.linkedin.com/in/jasonliggayu/","campus":"NYC","cohort":"22","jobTitle":"Full Stack Engineer","industry":"Renewable Energy","cities":["San Antonio","Wichita","Mumbai","Philadelphia"]},{"company":"Arcadia","name":"Kristen Althoff","email":"kristenwalthoff@gmail.com","linkedIn":"https://www.linkedin.com/in/kristen-althoff-3a4765b9/","campus":"NYC","cohort":"31","jobTitle":"Full-Stack Software Engineer I","industry":"Software / Tech","cities":["Madison","North Las Vegas","Washington","Jersey City"]},{"company":"Arcules","name":"Nico Flores","email":"floresni1996@gmail.com","linkedIn":"https://www.linkedin.com/in/nicolasaflores/","campus":"LA","cohort":"48","jobTitle":"Software Engineer","industry":"Cloud Services","cities":["Omaha"]},{"company":"Arcules","name":"Patrick Allen","email":"patrick@ohana-app.io","linkedIn":"https://linkedin.com/in/patrickallendfs","campus":"LA","cohort":"43","jobTitle":"Software Engineer","industry":"Cloud Video","cities":["Pittsburgh","Washington","North Las Vegas","Toronto"]},{"company":"Armoire","name":"Katie Sandfort","email":"katie.sandfort@gmail.com","linkedIn":"https://www.linkedin.com/in/katie-sandfort/","campus":"LA / WCRI","cohort":"55","jobTitle":"Software Engineer","industry":"Retail","cities":["Baltimore","Jacksonville","Arlington"]},{"company":"Artsy","name":"Matt Jones","email":"matt.chris.jones@gmail.com","linkedIn":"https://www.linkedin.com/in/mc-jones/","campus":"NYC","cohort":"21","jobTitle":"Senior Engineer 1 (Fullstack)","industry":"Art","cities":["Chicago","Lexington","Atlanta"]},{"company":"Artyc","name":"Daniel Geiger","email":"daniel.w.geiger@gmail.com","linkedIn":"https://www.linkedin.com/in/danielwgeiger/","campus":"FTRI / CTRI","cohort":"4","jobTitle":"Fullstack Engineer","industry":"Other","cities":["Orlando","Berlin","Paris"]},{"company":"Arvest Bank","name":"Leilani Hernandez","email":"leilani.digame@gmail.com","linkedIn":"www.linkedin.com/in/lherna05","campus":"LA / WCRI","cohort":"52","jobTitle":"Front End Developer","industry":"Fintech","cities":["Portland","Virginia Beach"]},{"company":"Ash Wellness","name":"Andrew Rehrig","email":"arehrig@gmail.com","linkedIn":"https://www.linkedin.com/in/andrew-rehrig/","campus":"NYC","cohort":"22","jobTitle":"Full Stack Engineer","industry":"Healthcare","cities":["San Francisco"]},{"company":"Asics","name":"Alexa Roberts","email":"alexarobertss@protonmail.com","linkedIn":"https://www.linkedin.com/in/alexarobertss","campus":"LA / WCRI","cohort":"51","jobTitle":"Frontend Software Engineer","industry":"Software / Tech","cities":["Buffalo"]},{"company":"Aspiration","name":"Charles Gyer","email":"charlesgyer@gmail.com","linkedIn":"https://www.linkedin.com/in/charles-gyer/","campus":"PTRI","cohort":"4","jobTitle":"Software Engineer, Backend","industry":"Green Fintech","cities":["Tampa"]},{"company":"Astra","name":"Jae Ryu","email":"rj.jaeryu@gmail.com","linkedIn":"https://www.linkedin.com/in/jaeryu/","campus":"NYC","cohort":"27","jobTitle":"Senior Software Engineer","industry":"Space-tech","cities":["Boston","Oklahoma City"]},{"company":"Asurion","name":"Jinseon Shin","email":"jinseonshin@gmail.com","linkedIn":"https://www.linkedin.com/in/jinseonshin/","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Tech Insurance","cities":["Winston-Salem","Mumbai","Irvine","Atlanta"]},{"company":"Asurion","name":"Shah Chaudri","email":"shah.pro.se@gmail.com","linkedIn":"https://www.linkedin.com/in/shah-chaudri/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer 3","industry":"Tech Insurance","cities":["Phoenix"]},{"company":"Asurion","name":"Travis Woolston","email":"travis.ww@hotmail.com","linkedIn":"https://www.linkedin.com/in/traviswoolston/","campus":"PTRI","cohort":"3","jobTitle":"Software Engineer","industry":"Insurance","cities":["Oklahoma City","St. Petersburg","London"]},{"company":"AT&T","name":"Alexander Kim","email":"akim3235@gmail.com","linkedIn":"https://www.linkedin.com/in/alexanderkim1/","campus":"LA","cohort":"38","jobTitle":"Backend Software Engineer","industry":"Entertainment","cities":["London","Berlin","Albuquerque","San Antonio"]},{"company":"AT&T","name":"Marc Doran","email":"doramm4408@gmail.com","linkedIn":"https://www.linkedin.com/in/marc-doran","campus":"NYC / ECRI","cohort":"33","jobTitle":"Database Developer","industry":"Telecommunications","cities":["Jacksonville","Beijing","Chula Vista"]},{"company":"AT&T","name":"Alina Grafkina","email":"grafkina.production@gmail.com","linkedIn":"https://www.linkedin.com/in/alinakyaw/","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Tucson","Mumbai","Santa Ana"]},{"company":"Athena Health","name":"Zach Pestaina","email":"zpestaina@gmail.com","linkedIn":"linkedin.com/zachpestaina/","campus":"NYC / ECRI","cohort":"38","jobTitle":"Analytics Engineer","industry":"Healthcare","cities":["Anchorage","New Orleans","Lubbock","Seattle"]},{"company":"Atlassian","name":"Giao Tran","email":"contactgiaotran@gmail.com","linkedIn":"https://www.linkedin.com/in/gd-tran/","campus":"LA","cohort":"40","jobTitle":"Software Engineer P3","industry":"Project management?","cities":["Memphis"]},{"company":"Atlassian","name":"Dan Snyder","email":"dasnyder3@gmail.com","linkedIn":"https://www.linkedin.com/in/dasnyder3/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"Tech","cities":["Indianapolis","Memphis","Scottsdale"]},{"company":"Atlassian/ Trello","name":"Elizabeth Lotto","email":"fakeEmail1@fakeEmail.com","linkedIn":"https://www.linkedin.com/in/elizabethlotto/","campus":"NYC","cohort":"20","jobTitle":"Software Engineer","industry":"Computer Software","cities":["Fort Worth","Mexico City","Oakland","Louisville"]},{"company":"Atos Syntel (at Disney)","name":"Dakota Gilbreath","email":"dgilbrea92@gmail.com","linkedIn":"https://www.linkedin.com/in/dakota-gilbreath/","campus":"LA","cohort":"34","jobTitle":"Full Stack Developer","industry":"Entertainment","cities":["Lubbock"]},{"company":"Attentive","name":"Sam Goldberg","email":"sgoldber61@gmail.com","linkedIn":"https://www.linkedin.com/in/sgoldber61/","campus":"LA","cohort":"27","jobTitle":"Software Engineer, Frontend - L4","industry":"E-commerce","cities":["San Jose"]},{"company":"Attentive ","name":"Pravek Karwe","email":"pkarwe62@gmail.com","linkedIn":"https://www.linkedin.com/in/pravek-karwe?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app","campus":"NYOI","cohort":"7","jobTitle":"Senior Product Manager ","industry":"Marketing/Advertising","cities":["Wichita","Indianapolis"]},{"company":"Audacy","name":"John Roman","email":"johnmroman33@gmail.com","linkedIn":"https://www.linkedin.com/in/john-m-roman/","campus":"NYC / ECRI","cohort":"38","jobTitle":"Associate Software Engineer","industry":"Entertainment","cities":["Nashville","Reno","Louisville"]},{"company":"AuditBoard","name":"Alex Yu","email":"alexjihunyu@gmail.com","linkedIn":"https://www.linkedin.com/in/alexjihunyu/","campus":"LA","cohort":"42","jobTitle":"Software Engineer","industry":"FinTech","cities":["Oklahoma City","Scottsdale","San Antonio"]},{"company":"Autodesk","name":"Javan Ang","email":"javanamt@gmail.com","linkedIn":"https://www.linkedin.com/in/javanang/","campus":"PTRI","cohort":"6","jobTitle":"Software Engineer","industry":"Software/Tech","cities":["Anaheim","Santa Ana","Omaha"]},{"company":"AutoFi","name":"Rocky Lin","email":"liangwen511@gmail.com","linkedIn":"https://www.linkedin.com/in/rocky-lin/","campus":"NYC","cohort":"14","jobTitle":"Senior Software Engineer","industry":"FinTech","cities":["Chula Vista","Jersey City","Toledo","Miami"]},{"company":"Ava","name":"Eden Shirin","email":"edenshirin@gmail.com","linkedIn":"https://www.linkedin.com/in/eden-shirin/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Software Engineer","industry":"Artificial Intelligence","cities":["Detroit","Fresno","New York","San Francisco"]},{"company":"Avant","name":"David Riley Burns","email":"drileyburns@gmail.com","linkedIn":"https://www.linkedin.com/in/drileyburns/","campus":"NYC","cohort":"15","jobTitle":"Software Engineer","industry":"Loans","cities":["Greensboro"]},{"company":"Avirtek","name":"Eliot L Nguyen","email":"eliotlefrin@gmail.com","linkedIn":"https://www.linkedin.com/in/ibeeliot","campus":"LA","cohort":"34","jobTitle":"Front End Lead Developer","industry":"Cybersecurity","cities":["Paris","Toronto"]},{"company":"Avise","name":"Frank Norton","email":"jfnorton@gmail.com","linkedIn":"https://www.linkedin.com/in/jfnorton32/","campus":"LA","cohort":"37","jobTitle":"Full Stack Software Engineer","industry":"Fintech","cities":["Tokyo","Omaha","Portland"]},{"company":"Avoma","name":"Kevin Chung","email":"kevin.c@me.com","linkedIn":"https://www.linkedin.com/in/kevc/","campus":"LA / WCRI","cohort":"47","jobTitle":"Software Engineer - Frontend","industry":"Software / Tech","cities":["Arlington","Saint Paul","Houston"]},{"company":"AVOXI","name":"Shirley Luu","email":"sh.rleyluu@gmail.com","linkedIn":"https://www.linkedin.com/in/luu-shirley","campus":"NYC / ECRI","cohort":"35","jobTitle":"Full Stack Software Engineer","industry":"Business Tech/Enterprise Tech","cities":["Boston","Anchorage","Garland"]},{"company":"Avvir","name":"Sharon Zhu","email":"sharonzhu.15@gmail.com","linkedIn":"https://www.linkedin.com/in/sharonzhu/","campus":"LA","cohort":"41","jobTitle":"Software Engineer II","industry":"Construction Tech","cities":["Fort Wayne","Albuquerque","Tampa"]},{"company":"AWS","name":"Blake Myrick","email":"blake.myrick@gmail.com","linkedIn":"https://www.linkedin.com/in/blake-myrick","campus":"PTRI","cohort":"3","jobTitle":"Software Development Engineer","industry":"Tech","cities":["Omaha","Aurora","Sydney","Mexico City"]},{"company":"AWS","name":"George Jeng","email":"gjenga@icloud.com","linkedIn":"https://www.linkedin.com/in/gjenga","campus":"LA","cohort":"49","jobTitle":"SDE1","industry":"Cloud Services","cities":["Virginia Beach"]},{"company":"AWS","name":"Marc Burnie","email":"MarcABurnie@gmail.com","linkedIn":"https://www.linkedin.com/in/marcburnie","campus":"NYC","cohort":"20","jobTitle":"Software Development Engineer II","industry":"Tech","cities":["Toledo","Oklahoma City"]},{"company":"AWS","name":"Patty Qian","email":"patty.qian@gmail.com","linkedIn":"https://www.linkedin.com/in/patty-qian/","campus":"NYC","cohort":"20","jobTitle":"Software Development Engineer","industry":"Tech","cities":["Gilbert","Newark","Reno","Durham"]},{"company":"Axim Geospatial","name":"Kevin Le","email":"kevinle1003@gmail.com","linkedIn":"https://www.linkedin.com/in/xkevinle/","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Software Developer","industry":"IT Services","cities":["Garland","Jersey City"]},{"company":"Axle Health","name":"Alexandra Ashcraft","email":"lash211@gmail.com","linkedIn":"https://www.linkedin.com/in/alexandra-ashcraft1/","campus":"FTRI / CTRI","cohort":"17","jobTitle":"Software Engineer","industry":"Healthtech/Healthcare","cities":["Lincoln","Anaheim","Cincinnati"]},{"company":"Axon","name":"Meng Ting Chiang","email":"a123deandean@gmail.com","linkedIn":"https://www.linkedin.com/in/mengting-chiang/","campus":"NYC","cohort":"20","jobTitle":"Software Engineer","industry":"Public Safety","cities":["Beijing"]},{"company":"B-stock solutions","name":"Michael Feldman","email":"michaelfeldma1@gmail.com","linkedIn":"https://www.linkedin.com/in/michael-feldman15/","campus":"NYC","cohort":"25","jobTitle":"Nodejs / microservices software engineer","industry":"E-commerce","cities":["Laredo","Virginia Beach","Mesa","Austin"]},{"company":"Bach","name":"Abbey Campbell","email":"campbellabbeya@gmail.com","linkedIn":"https://www.linkedin.com/in/campbellabbeya/","campus":"LA","cohort":"31","jobTitle":"Frontend Developer","industry":"Entertainment? Wed-tech? lol idk it's pretty niche","cities":["Corpus Christi","San Francisco","St. Louis"]},{"company":"BallerTV","name":"Jenessa Chapalamadugu","email":"jenessachap@gmail.com","linkedIn":"https://www.linkedin.com/in/jenessachap/","campus":"NYC","cohort":"25","jobTitle":"Full Stack Engineer","industry":"Entertainment","cities":["Chandler","North Las Vegas"]},{"company":"Bank of America","name":"Ranisha Rafeeque Soopi Kalphantakath","email":"ranisharafeeque@gmail.com","linkedIn":"https://www.linkedin.com/in/ranisha-rafeeque-s-k/","campus":"NYC","cohort":"26","jobTitle":"AVP, Software Engineer","industry":"Fintech","cities":["Las Vegas"]},{"company":"Barstool Sports","name":"Daniel Nagano-Gerace","email":"dnaganog@gmail.com","linkedIn":"https://www.linkedin.com/in/dnaganog/","campus":"NYC","cohort":"12","jobTitle":"Senior Backend Engineer","industry":"Media","cities":["Plano"]},{"company":"Bayer Crop Science (Neteffects)","name":"Jason Fricano","email":"jason.fricano@gmail.com","linkedIn":"https://www.linkedin.com/in/jasonfricano/","campus":"NYC","cohort":"25","jobTitle":"Node / React Developer","industry":"Agricultural Science","cities":["Arlington","Garland"]},{"company":"Bayer Crop Sciences","name":"Stephen Budarz","email":"sbudarz@gmail.com","linkedIn":"https://www.linkedin.com/in/steve-budarz/","campus":"NYC","cohort":"19","jobTitle":"Full Stack Engineer","industry":"Agriculture","cities":["Virginia Beach","Arlington"]},{"company":"BD","name":"Annabelle Ni","email":"ann.j.ni@gmail.com","linkedIn":"https://www.linkedin.com/in/annabelleni/","campus":"FTRI / CTRI","cohort":"17","jobTitle":"Software Engineer","industry":"Healthtech/Healthcare","cities":["Oklahoma City","Raleigh"]},{"company":"Beacon Hill Staffing (Charter Communications)","name":"David Russo","email":"dr2378@gmail.com","linkedIn":"https://www.linkedin.com/in/russo-david","campus":"NYC / ECRI","cohort":"36","jobTitle":"Software Engineer","industry":"Telecommunications","cities":["Mexico City","Seattle","Madison"]},{"company":"Beacon Hill Staffing (working for Charter Communications)","name":"Jessica Balding","email":"jessica.r.balding@gmail.com","linkedIn":"https://www.linkedin.com/in/jessica-balding/","campus":"PTRI","cohort":"7","jobTitle":"Full Stack Developer","industry":"Telecommunications","cities":["Orlando"]},{"company":"Beautycounter","name":"Mario Granberri","email":"mgranberri@gmail.com","linkedIn":"https://www.linkedin.com/in/mgranberri/","campus":"LA","cohort":"25","jobTitle":"Full stack software engineer","industry":"Compliance","cities":["Detroit","Los Angeles","Jersey City","London"]},{"company":"Behavior Frontiers","name":"Chance Hernandez","email":"chance.hernandez24@gmail.com","linkedIn":"https://www.linkedin.com/in/chance-hernandez/","campus":"LA","cohort":"40","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Buffalo","Aurora","Atlanta"]},{"company":"Bentobox","name":"Corey Van Splinter","email":"cvanspl1@gmail.com","linkedIn":"https://www.linkedin.com/in/corey-van-splinter/","campus":"LA","cohort":"39","jobTitle":"Senior Software Engineer","industry":"Hospitality","cities":["New Orleans"]},{"company":"Bentobox","name":"Greg Dixon","email":"gdixon529@gmail.com","linkedIn":"https://www.linkedin.com/in/gdixon529/","campus":"LA","cohort":"39","jobTitle":"Software Engineer","industry":"Software","cities":["Mexico City","Paris","Glendale","Minneapolis"]},{"company":"BentoBox","name":"Brian Liang","email":"liangbrian94@gmail.com","linkedIn":"https://www.linkedin.com/in/brian-z-liang/","campus":"LA","cohort":"43","jobTitle":"Product Support Engineer","industry":"Not sure","cities":["Fort Wayne","Fresno"]},{"company":"Berkadia","name":"Isaac Kittila","email":"isaac.kittila@gmail.com","linkedIn":"https://www.linkedin.com/in/isaac-kittila/","campus":"LA","cohort":"39","jobTitle":"Associate Software Engineer","industry":"Commercial Real Estate","cities":["Tulsa"]},{"company":"Best Buy","name":"Alexander Hager","email":"alexhager19@gmail.com","linkedIn":"https://www.linkedin.com/in/hager-alexander/","campus":"NYC","cohort":"29","jobTitle":"Front end Engineer","industry":"Data analytics","cities":["New York","Buffalo","Los Angeles"]},{"company":"Better.com","name":"Stefan Armijo","email":"stefan.armijo@gmail.com","linkedIn":"https://www.linkedin.com/in/stefanarmijo/","campus":"LA","cohort":"21","jobTitle":"Sr. Software Engineer","industry":"","cities":["Sรฃo Paulo"]},{"company":"BidWrangler","name":"Kylene Hohman","email":"kylenehohman@gmail.com","linkedIn":"https://www.linkedin.com/in/kylene-hohman","campus":"PTRI","cohort":"5","jobTitle":"Full-Stack Developer","industry":"Auction Services","cities":["San Jose","Cincinnati"]},{"company":"Bigeye","name":"Dasha Kondratenko","email":"dashakondrattenko@gmail.com","linkedIn":"https://www.linkedin.com/in/dasha-k/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer 1","industry":"Data quality","cities":["Chula Vista"]},{"company":"BigID","name":"Helen Regula","email":"hregula03@gmail.com","linkedIn":"https://www.linkedin.com/in/helenregula/","campus":"NYC","cohort":"25","jobTitle":"Senior Full Stack Software Engineer","industry":"Cyber Security","cities":["Omaha","Los Angeles"]},{"company":"Bill.com","name":"Gordon Hui","email":"Maddogg612@gmail.com","linkedIn":"https://www.linkedin.com/in/gordon-hui","campus":"PTRI","cohort":"3","jobTitle":"Software engineer 2 - Frontend","industry":"Fintech","cities":["Sydney","Oakland","Long Beach"]},{"company":"Bio-Rad Laboratories","name":"Tiffany Yang","email":"teefyang7857@gmail.com","linkedIn":"https://www.linkedin.com/in/teayang/","campus":"LA","cohort":"21","jobTitle":"Software Engineer","industry":"Biotech","cities":["Washington","Seattle","Greensboro"]},{"company":"BitGo","name":"Joe Kinney","email":"josephrkinney@gmail.com","linkedIn":"https://www.linkedin.com/in/joekinney17/","campus":"NYC","cohort":"22","jobTitle":"Software Engineer","industry":"Fintech","cities":["Indianapolis"]},{"company":"Bitovi","name":"Edward Park","email":"edwardpark123@gmail.com","linkedIn":"https://www.linkedin.com/in/edwardparkwork/","campus":"LA","cohort":"41","jobTitle":"Junior Developer and Consultant","industry":"Computer Software","cities":["San Diego"]},{"company":"BitPay","name":"Taven Shumaker","email":"tavensshumaker@gmail.com","linkedIn":"https://www.linkedin.com/in/taven-shumaker/","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Fintech","cities":["Dallas"]},{"company":"Black Cape","name":"kyle saunders","email":"kylersaunders@gmail.com","linkedIn":"/kylersaunders","campus":"NYC / ECRI","cohort":"37","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Fort Wayne","Las Vegas"]},{"company":"Blackrock","name":"Jiaxin Li","email":"jiaxin.li.gogo@gmail.com","linkedIn":"https://www.linkedin.com/in/lijiaxingogo/","campus":"NYC","cohort":"22","jobTitle":"DevOps Engineer","industry":"","cities":["Orlando","Winston-Salem"]},{"company":"Blackthorn Software","name":"Aalok Shah","email":"aalok.tsh@gmail.com","linkedIn":"/kolashah","campus":"NYC / ECRI","cohort":"37","jobTitle":"Full Stack Software Engineer","industry":"Other","cities":["Mesa","London","Scottsdale"]},{"company":"Blackthorn.io","name":"Tristan Onfroy","email":"tonfroy90@gmail.com","linkedIn":"https://www.linkedin.com/in/tristan-onfroy/","campus":"PTRI","cohort":"7","jobTitle":"Support Software Engineer","industry":"Software Solutions/Developer Tools","cities":["Albuquerque","Irving","Newark"]},{"company":"Blend","name":"Peter Makhnatch","email":"p.makhnatch@gmail.com","linkedIn":"https://www.linkedin.com/in/petermakhnatch/","campus":"PTRI","cohort":"8","jobTitle":"Software Engineer","industry":"Fintech","cities":["Mumbai"]},{"company":"Blink Health","name":"Matthew Digel","email":"Digel.matt@gmail.com","linkedIn":"https://www.linkedin.com/in/matt-digel","campus":"PTRI","cohort":"Beta","jobTitle":"Sr. Product Manager","industry":"Health Care Tech","cities":["Irvine","Louisville","London"]},{"company":"Blizzard","name":"Christopher Washburn","email":"chris132128@gmail.com","linkedIn":"https://www.linkedin.com/in/christopherwashburn/","campus":"LA","cohort":"24","jobTitle":"Software Development Engineer","industry":"Insurance","cities":["Greensboro","Boston","Lubbock","Wichita"]},{"company":"BlockFi","name":"Mohtasim Chowdhury","email":"mohtasim.hc@gmail.com","linkedIn":"https://www.linkedin.com/in/mohtasimc/","campus":"NYC","cohort":"13","jobTitle":"Frontend Engineer","industry":"Fintech","cities":["Oklahoma City","Honolulu","Baltimore"]},{"company":"BLOCKS","name":"Christopher C Carney","email":"ccarney51@gmail.com","linkedIn":"https://www.linkedin.com/mwlite/in/christopher-c-carney","campus":"NYC","cohort":"24","jobTitle":"Senior Backend Engineer","industry":"Technology","cities":["Fresno"]},{"company":"Bloom Medicinals","name":"Candie Hill","email":"can330330@yahoo.com","linkedIn":"https://www.linkedin.com/in/candie-hill/","campus":"LA / WCRI","cohort":"49","jobTitle":"Jr Software Developer","industry":"Other","cities":["Minneapolis","Wichita","Irvine"]},{"company":"Bloomberg","name":"John Haberstroh","email":"haberstroh.john@gmail.com","linkedIn":"https://www.linkedin.com/in/johnhaberstroh/","campus":"NYC","cohort":"28","jobTitle":"Senior Fullstack Engineer","industry":"Financial,Software,Media,Data","cities":["Lexington","Saint Paul","Tokyo","Philadelphia"]},{"company":"Bloomberg","name":"James Maguire","email":"Jmaguire655@gmail.com","linkedIn":"","campus":"NYC","cohort":"29","jobTitle":"Software Engineer","industry":"Fintech","cities":["Paris"]},{"company":"Bloomberg","name":"Cedric Lee","email":"leeced@umich.edu","linkedIn":"https://www.linkedin.com/in/leeced/","campus":"NYC","cohort":"21","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["St. Louis"]},{"company":"Bloomberg","name":"Duke Lee","email":"leeduke90@gmail.com","linkedIn":"https://www.linkedin.com/in/duke-lee/","campus":"FTRI","cohort":"4","jobTitle":"Software Engineer","industry":"Fin-Tech","cities":["Minneapolis"]},{"company":"Bloomberg","name":"Michael Chin","email":"mikechin37@gmail.com","linkedIn":"https://www.linkedin.com/in/michael-9-chin/","campus":"NYC / ECRI","cohort":"29","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Louisville","Houston","Durham"]},{"company":"Bloomberg Industry Group","name":"Neel Lakshman","email":"neelanjan.lakshman@gmail.com","linkedIn":"https://www.linkedin.com/in/neel-lakshman/","campus":"NYC","cohort":"31","jobTitle":"Web Application Architect I","industry":"Other","cities":["London","Los Angeles"]},{"company":"Bloomberg L.P.","name":"Ariel Hyman","email":"a.o.hyman@gmail.com","linkedIn":"https://www.linkedin.com/in/ahyman0712/","campus":"NYC","cohort":"11","jobTitle":"Software Engineer","industry":"Fintech","cities":["Corpus Christi","Orlando"]},{"company":"Bloomberg LP","name":"Jinhee Choi","email":"jinhee.k.choi@gmail.com","linkedIn":"https://www.linkedin.com/in/jinheekchoi/","campus":"LA","cohort":"44","jobTitle":"Senior Software Engineer (Consultant)","industry":"Fintech","cities":["Las Vegas"]},{"company":"Bloomboard","name":"Junie Hou","email":"selilac9@gmail.com","linkedIn":"https://www.linkedin.com/in/juniehou/","campus":"NYC","cohort":"27","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Baltimore"]},{"company":"Blue Cross Blue Sheild of Florida","name":"Adam Rodriguez","email":"adamxrodriguez@gmail.com","linkedIn":"https://linkedin.com/in/adamrodriguez/","campus":"NYC / ECRI","cohort":"33","jobTitle":"Senior React Node Software Engineer","industry":"Healthcare","cities":["San Francisco","Fort Worth","Tulsa"]},{"company":"Blue Origin","name":"Sam VanTassel","email":"vantassel.sam@gmail.com","linkedIn":"https://www.linkedin.com/in/samvantassel/","campus":"LA","cohort":"47","jobTitle":"Software Engineer I","industry":"Aerospace","cities":["St. Louis","Atlanta","Glendale","Minneapolis"]},{"company":"Blueberry Pediatrics","name":"Lina Lee","email":"woorin.lee1524@gmail.com","linkedIn":"www.linkedin.com/in/lee-lina","campus":"LA / WCRI","cohort":"49","jobTitle":"Full-Stack Software Engineer","industry":"Healthcare","cities":["Paris","Anaheim"]},{"company":"BlueStream Health","name":"Wei Huang","email":"wei.waye.huang@gmail.com","linkedIn":"https://www.linkedin.com/in/wei-waye-huang/","campus":"NYC","cohort":"23","jobTitle":"Senior Software Engineer","industry":"Healthcare","cities":["Louisville","Lubbock","Las Vegas"]},{"company":"BlueVoyant","name":"Mahfuz Kabir","email":"mahfuzk@gmail.com","linkedIn":"https://www.linkedin.com/in/mahfuzkabir/","campus":"NYC","cohort":"4","jobTitle":"Software Engineer (Managed Security Services)","industry":"","cities":["Sacramento","Glendale"]},{"company":"BNY Mellon","name":"Ahsan Ali","email":"ali.ahsan95@gmail.com","linkedIn":"https://www.linkedin.com/in/greyali","campus":"FTRI / CTRI","cohort":"12","jobTitle":"Senior Full Stack Developer","industry":"Fintech","cities":["Milwaukee","St. Petersburg","San Antonio"]},{"company":"Bolt","name":"Chelsey Fewer","email":"chelsey.fewer@gmail.com","linkedIn":"https://www.linkedin.com/in/chelsey-fewer/","campus":"NYC","cohort":"16","jobTitle":"Support Engineer","industry":"Ecommerce","cities":["Riverside","Buffalo","Chandler"]},{"company":"Booster","name":"Evelin Goldin","email":"evelinsaba1@gmail.com","linkedIn":"https://www.linkedin.com/in/evelin-goldin/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Fullstack Software Engineer","industry":"Other","cities":["Irvine"]},{"company":"Booz Allen Hamilton","name":"Sang Rea Han","email":"sxhanx@gmail.com","linkedIn":"https://www.linkedin.com/in/sangreahan/","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Sr. Consultant","industry":"Consulting","cities":["Henderson","Sรฃo Paulo"]},{"company":"Boulevard","name":"Ashley Austin","email":"aaustin86@gmail.com","linkedIn":"https://www.linkedin.com/in/mraustin2u","campus":"LA","cohort":"34","jobTitle":"Senior Associate Software Engineer","industry":"Business Management Tool","cities":["Irvine","London","Austin","Greensboro"]},{"company":"Boxed","name":"Adam Goodman","email":"adamrgoodman1@gmail.com","linkedIn":"https://www.linkedin.com/in/adam-goodman1/","campus":"NYC","cohort":"27","jobTitle":"Backend Engineer I","industry":"e-commerce","cities":["Tucson"]},{"company":"BP3","name":"Brian Jungk","email":"brian.jungk@outlook.com","linkedIn":"https://www.linkedin.com/in/brian-jungk/","campus":"NYC","cohort":"24","jobTitle":"Software Engineer","industry":"Consulting","cities":["Portland","Aurora","Chula Vista","Saint Paul"]},{"company":"Brady Corporation","name":"Sean Flynn","email":"seanflynn5000@gmail.com","linkedIn":"https://www.linkedin.com/in/sean-g-flynn","campus":"NYC / ECRI","cohort":"38","jobTitle":"Web Developer","industry":"Business Tech/Enterprise Tech","cities":["New York","Bakersfield"]},{"company":"Branding Brand","name":"Andy Heng","email":"andyheng1095@gmail.com","linkedIn":"https://www.linkedin.com/in/andy-heng/","campus":"LA","cohort":"39","jobTitle":"Software Engineer","industry":"E-Commerce","cities":["Fresno","Scottsdale"]},{"company":"Branding Brand","name":"Christian Wong","email":"ctcwong73@gmail.com","linkedIn":"https://www.linkedin.com/in/wong-christian/","campus":"LA / WCRI","cohort":"52","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Nashville","London"]},{"company":"Branding Brand","name":"Nobuhide Ajito","email":"Nobuhide95@gmail.com","linkedIn":"https://www.linkedin.com/in/nobuhide-ajito/","campus":"LA","cohort":"32","jobTitle":"Software Engineer","industry":"Technology","cities":["Berlin","Chesapeake"]},{"company":"Bread Financial","name":"Cho Yee Win Aung","email":"choyeewinag@gmail.com","linkedIn":"https://www.linkedin.com/in/choyeewinaung/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer 1","industry":"Fintech","cities":["Scottsdale","Aurora","Albuquerque","San Diego"]},{"company":"Brighter","name":"Elliot Kim","email":"elliot.kim@gmail.com","linkedIn":"https://www.linkedin.com/in/elliotjykim/","campus":"LA","cohort":"24","jobTitle":"Full Stack Engineer","industry":"Gaming & Entertainment","cities":["Sydney"]},{"company":"Brighter (Cigna)","name":"David Marquess","email":"dave.marquess@gmail.com","linkedIn":"https://www.linkedin.com/in/dave-marquess/","campus":"LA","cohort":"25","jobTitle":"Senior Software Engineer","industry":"Cybersecurity","cities":["Henderson"]},{"company":"Brightflow AI","name":"Erika Jung","email":"erika.h.jung@gmail.com","linkedIn":"https://www.linkedin.com/in/erikahjung/","campus":"LA / WCRI","cohort":"56","jobTitle":"Software Engineer","industry":"IT Services","cities":["Philadelphia","Gilbert"]},{"company":"Brillio","name":"Alexander Smith","email":"ajsmith925@gmail.com","linkedIn":"https://www.linkedin.com/in/ajsmith925/","campus":"LA","cohort":"43","jobTitle":"Software Engineer","industry":"Software Consulting","cities":["New York","Atlanta"]},{"company":"Brooksource, contracted to Northwestern Mutual","name":"Jessica Louie Lee","email":"jlouielee@gmail.com","linkedIn":"https://www.linkedin.com/in/jessllee/","campus":"LA","cohort":"48","jobTitle":"Backend Node Engineer with Brooksource, Full stack Engineer with Northwestern Mutual","industry":"Fintech","cities":["Portland","Austin","Cleveland"]},{"company":"BuildOps","name":"Muhammad Trad","email":"Muhammad.trad@yahoo.com","linkedIn":"https://www.linkedin.com/in/muhammadtrad/","campus":"LA","cohort":"37","jobTitle":"Senior Software Engineer","industry":"Commercial Real Estate","cities":["Miami","El Paso","Laredo"]},{"company":"Business Alliance Financial Services (BAFS)","name":"Justin McKay","email":"justinmckay99@gmail.com","linkedIn":"https://www.linkedin.com/in/justinwmckay/","campus":"LA","cohort":"43","jobTitle":"Software Engineer","industry":"Fintech","cities":["Jacksonville","Washington","Plano","Memphis"]},{"company":"Business Alliance Financial Services, LLC","name":"Joe Bigelow","email":"joebigelow@protonmail.com","linkedIn":"https://www.linkedin.com/in/joe-bigelow","campus":"LA","cohort":"42","jobTitle":"Software Engineer","industry":"Finance (Credit union service organization)","cities":["Pittsburgh","Fort Wayne"]},{"company":"ButcherBox","name":"Maxwell Shick","email":"maxwellshick@gmail.com","linkedIn":"https://www.linkedin.com/in/maxwell-shick/","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Software Engineer","industry":"Restaurant, Food, and Beverage","cities":["Anchorage","Tokyo","Detroit","Riverside"]},{"company":"Butterfly Network","name":"Akiko Hagio Dulaney","email":"akikoinhd@gmail.com","linkedIn":"https://www.linkedin.com/in/akiko-hagio-dulaney/","campus":"NYC","cohort":"25","jobTitle":"Web/API QA Automation Engineer","industry":"Healthtech","cities":["Berlin","Newark"]},{"company":"Butterfly Network","name":"Crystal (Crys) Lim","email":"crystal.joy.lim@gmail.com","linkedIn":"https://www.linkedin.com/in/crystallim/","campus":"LA","cohort":"46","jobTitle":"Software Engineer II - Cloud Backend","industry":"Medical Equipment Manufacturing","cities":["Laredo"]},{"company":"C3 AI","name":"Shelby Cotton","email":"hello@shelbycotton.com","linkedIn":"https://linkedin.com/in/shelbycotton","campus":"NYC","cohort":"23","jobTitle":"Forward Deployed Engineer","industry":"Artificial intelligence","cities":["Oakland"]},{"company":"C3.AI","name":"Dominic Genuario","email":"dominicgenuario@gmail.com","linkedIn":"https://www.linkedin.com/in/dominic-genuario/","campus":"NYC / ECRI","cohort":"33","jobTitle":"Forward Deployed Engineer","industry":"Artificial Intelligence","cities":["Riverside","Toledo"]},{"company":"Cadent","name":"William Yoon","email":"williamdyoon@gmail.com","linkedIn":"https://www.linkedin.com/in/williamdyoon/","campus":"LA","cohort":"42","jobTitle":"Front End Engineer","industry":"TV Advertising","cities":["Henderson","Irvine"]},{"company":"CafeMedia","name":"Jasper Narvil","email":"jaspernarvil@gmail.com","linkedIn":"https://www.linkedin.com/in/jaspernarvil/","campus":"NYC / ECRI","cohort":"33","jobTitle":"Software Eng II","industry":"Software / Tech","cities":["Jacksonville"]},{"company":"CAIS Group","name":"Anson Avellar","email":"anson@ansonavellar.com","linkedIn":"https://www.linkedin.com/in/ansonavellar/","campus":"NYC","cohort":"23","jobTitle":"Front End Developer (internally Associate)","industry":"Fintech","cities":["Milwaukee","Plano","Albuquerque","Reno"]},{"company":"Canadian Tire Corporation","name":"Ansel Andro Santos","email":"anselandrosantos@gmail.com","linkedIn":"https://www.linkedin.com/in/ansel-santos","campus":"NYOI","cohort":"3","jobTitle":"Manager, Advanced Measurement & Analytics","industry":"Data/Analytics/Cloud","cities":["Austin","Oklahoma City","St. Louis","Gilbert"]},{"company":"Canary Connect","name":"Dillon Garrett","email":"dillon.garrett.dev@gmail.com","linkedIn":"https://www.linkedin.com/in/dillon-garrett/","campus":"NYC","cohort":"12","jobTitle":"Front End Engineer","industry":"Home Security","cities":["San Diego","Fort Wayne","Reno"]},{"company":"Capital Connect by JP Morgan","name":"Peter Baniuszewicz","email":"Baniuszewicz@gmail.com","linkedIn":"https://www.linkedin.com/in/peter-ba/","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"Fintech","cities":["Santa Ana","Reno"]},{"company":"Capital One","name":"Adrian Inza-Cruz","email":"ainzacruz@gmail.com","linkedIn":"https://www.linkedin.com/in/adrian-inza-cruz/","campus":"LA","cohort":"41","jobTitle":"Senior Associate Software Engineer","industry":"Fintech","cities":["Jersey City","Gilbert"]},{"company":"Capital One","name":"Alexander Gurfinkel","email":"alexgurfinkel@gmail.com","linkedIn":"https://www.linkedin.com/in/alexandergurfinkel/","campus":"PTRI","cohort":"5","jobTitle":"Software Engineer","industry":"Fintech","cities":["Sydney","Oklahoma City","Louisville"]},{"company":"Capital One","name":"Jung Ho Lee","email":"alexxleee@gmail.com","linkedIn":"https://www.linkedin.com/in/jungholee27/","campus":"FTRI","cohort":"1","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Gilbert","Omaha","Charlotte","Houston"]},{"company":"Capital One","name":"Allan MacLean","email":"allanpmaclean@gmail.com","linkedIn":"","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"Fintech","cities":["Washington","Los Angeles"]},{"company":"Capital One","name":"Alvin Ma","email":"alvin.ma95@gmail.com","linkedIn":"https://www.linkedin.com/in/alvinrayma/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Software Engineer","industry":"Other","cities":["Los Angeles","Reno"]},{"company":"Capital One","name":"Alvin Cheng","email":"alvincheng505@gmail.com","linkedIn":"https://www.linkedin.com/in/alvin-cheng/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"Banking","cities":["Norfolk"]},{"company":"Capital One","name":"Allana Ordonez","email":"ayaordonez@gmail.com","linkedIn":"https://www.linkedin.com/in/allana-ordonez/","campus":"LA","cohort":"43","jobTitle":"Software Engineer, Frontend","industry":"Banking/Fintech","cities":["Anchorage"]},{"company":"Capital One","name":"Brandon Miller","email":"bmiller1881@gmail.com","linkedIn":"https://www.linkedin.com/in/brandon-j-miller","campus":"FTRI / CTRI","cohort":"12","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["North Las Vegas","Indianapolis","Oklahoma City"]},{"company":"Capital One","name":"Carson Chen","email":"carson.cy.chen@gmail.com","linkedIn":"https://www.linkedin.com/in/carsoncychen/","campus":"NYC","cohort":"9","jobTitle":"Software Engineer","industry":"IT","cities":["Austin"]},{"company":"Capital One","name":"Carlos Botero-Vargas","email":"cbotero-vargas@outlook.com","linkedIn":"https://www.linkedin.com/in/carlosb-v/","campus":"FTRI","cohort":"1","jobTitle":"Senior Software Engineer","industry":"Finance","cities":["Berlin"]},{"company":"Capital One","name":"Jason Clark","email":"clarkjasonee@gmail.com","linkedIn":"https://www.linkedin.com/in/clarkjasonee/","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Irvine","Toledo"]},{"company":"Capital One","name":"Sina Kahrobaei","email":"cna.kahrobaei@gmail.com","linkedIn":"https://www.linkedin.com/in/sinakahrobaei/","campus":"FTRI","cohort":"6","jobTitle":"Senior Software Engineer (Full Stack)","industry":"Fintech","cities":["Tampa","Wichita","Indianapolis","Jersey City"]},{"company":"Capital One","name":"Christopher cheng","email":"Ctpcheng@gmail.com","linkedIn":"https://www.linkedin.com/in/ctpcheng/","campus":"LA / WCRI","cohort":"49","jobTitle":"Senior Software Engineer, Front End","industry":"Fintech","cities":["Jacksonville","Toronto"]},{"company":"Capital One","name":"Darren Chan","email":"darrenc3195@gmail.com","linkedIn":"https://www.linkedin.com/in/dbchan/","campus":"NYC","cohort":"28","jobTitle":"Full Stack Software Engineer","industry":"Fintech","cities":["Los Angeles","Philadelphia"]},{"company":"Capital One","name":"David Zhang","email":"davidnyc@umich.edu","linkedIn":"https://www.linkedin.com/in/davidnyc/","campus":"NYC","cohort":"26","jobTitle":"Fullstack Software Engineer","industry":"Finance","cities":["Baltimore","El Paso","San Francisco"]},{"company":"Capital One","name":"Dani Almaraz","email":"dtalmaraz@gmail.com","linkedIn":"https://www.linkedin.com/in/dani-almaraz/","campus":"LA / WCRI","cohort":"49","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Madison"]},{"company":"Capital One","name":"Eugene Lee","email":"eugleenyc@gmail.com","linkedIn":"","campus":"NYC","cohort":"30","jobTitle":"Software Engineer","industry":"Fintech","cities":["Jersey City","Stockton","Charlotte","Oklahoma City"]},{"company":"Capital One","name":"Nel Malikova","email":"gunelmalikova@gmail.com","linkedIn":"https://www.linkedin.com/in/gmalikova/","campus":"NYC","cohort":"10","jobTitle":"Software Engineer","industry":"Fintech","cities":["Lincoln","Cincinnati","Laredo","Los Angeles"]},{"company":"Capital One","name":"Hemwatie Persaud","email":"hemwatiecodes@gmail.com","linkedIn":"https://www.linkedin.com/in/hemwatie/","campus":"NYC","cohort":"28","jobTitle":"Software Engineer","industry":"Banking","cities":["Miami"]},{"company":"Capital One","name":"Ian Madden","email":"ianfmadden@gmail.com","linkedIn":"https://www.linkedin.com/in/ian-madden/","campus":"FTRI / CTRI","cohort":"7","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Miami","Riverside","San Antonio"]},{"company":"Capital One","name":"Jae Hyun Ha","email":"jaehyunha96@gmail.com","linkedIn":"https://www.linkedin.com/in/jae-hyun-ha/","campus":"NYC","cohort":"30","jobTitle":"Software Engineer - backend","industry":"Fintech","cities":["London","Toronto","Newark"]},{"company":"Capital One","name":"James Ma","email":"jamesma991@gmail.com","linkedIn":"https://www.linkedin.com/in/jamesma1199/","campus":"FTRI","cohort":"7","jobTitle":"Senior Associate Software Engineer","industry":"Fintech","cities":["San Francisco"]},{"company":"Capital One","name":"Jennifer Chau","email":"jenniferchau512@gmail.com","linkedIn":"https://www.linkedin.com/in/jenniferchau512/","campus":"NYC","cohort":"29","jobTitle":"Software Engineer","industry":"Fintech","cities":["El Paso","Dallas"]},{"company":"Capital One","name":"Jin Oh","email":"jintoh613@gmail.com","linkedIn":"https://www.linkedin.com/in/jintoh613/","campus":"LA","cohort":"42","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Chandler","Winston-Salem","Arlington","St. Louis"]},{"company":"Capital One","name":"John Li","email":"jli159@binghamton.edu","linkedIn":"https://www.linkedin.com/in/john-li7/","campus":"NYC","cohort":"24","jobTitle":"Fullstack Engineer","industry":"Banking","cities":["Fort Worth","Berlin","Charlotte","Laredo"]},{"company":"Capital One","name":"Joseph Amos","email":"joeamos17@gmail.com","linkedIn":"linkedin.com/in/joe-amos","campus":"LA / WCRI","cohort":"49","jobTitle":"Senior Associate Software Engineer","industry":"Software / Tech","cities":["Toledo","Dallas","Gilbert"]},{"company":"Capital One","name":"Johnny Chen","email":"johncschen@gmail.com","linkedIn":"https://www.linkedin.com/in/johnnycschen/","campus":"LA","cohort":"45","jobTitle":"Software Engineer","industry":"Fintech","cities":["Oklahoma City","Oakland","Durham"]},{"company":"Capital One","name":"Jonathan Chen","email":"jonathanchen832@gmail.com","linkedIn":"Https://linkedin.com/in/jonathan-hp-chen","campus":"LA / WCRI","cohort":"52","jobTitle":"Full Stack Engineer","industry":"Fintech","cities":["Omaha","Columbus","Scottsdale"]},{"company":"Capital One","name":"June Culp","email":"juneculp1@gmail.com","linkedIn":"https://www.linkedin.com/in/juneculp/","campus":"NYC","cohort":"28","jobTitle":"Senior Front End Engineer","industry":"Fintech","cities":["Reno","Omaha","Henderson","Kansas City"]},{"company":"Capital One","name":"Kristine Aguda","email":"kaguda03@gmail.com","linkedIn":"https://www.linkedin.com/kristine-aguda","campus":"LA","cohort":"45","jobTitle":"Software Engineer, Full Stack","industry":"Fin tech","cities":["Lexington","Seattle","Columbus"]},{"company":"Capital One","name":"Kasthuri Menon","email":"kasthuri.menon1@gmail.com","linkedIn":"https://www.linkedin.com/in/kasthurimenon/","campus":"NYC","cohort":"28","jobTitle":"Senior Software Engineer","industry":"Banking/ Fintech","cities":["Los Angeles","Sydney"]},{"company":"Capital One","name":"Ken Litton","email":"kennethclitton@gmail.com","linkedIn":"https://www.linkedin.com/in/ken-litton/","campus":"LA","cohort":"43","jobTitle":"Backend Engineer, Senior Associate","industry":"Finance/Banking","cities":["Cincinnati","Portland","Mumbai"]},{"company":"Capital One","name":"Kevin Park-Lee","email":"kevin38424@gmail.com","linkedIn":"https://www.linkedin.com/in/kevin38424/","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Oklahoma City","Toronto","Sacramento"]},{"company":"Capital One","name":"Kellen Levy","email":"Kmalcolmlevy@gmail.com","linkedIn":"https://www.linked.com/in/kellenmlevy","campus":"FTRI","cohort":"1","jobTitle":"Senior Associate Software Engineer","industry":"Fintech","cities":["Charlotte"]},{"company":"Capital One","name":"Jason Lin","email":"lin.jasonp@gmail.com","linkedIn":"https://www.linkedin.com/in/jplin/","campus":"FTRI","cohort":"7","jobTitle":"Software Engineer","industry":"Fintech","cities":["Buffalo","Seattle"]},{"company":"Capital One","name":"Luke Cho","email":"luke.h.cho@gmail.com","linkedIn":"https://www.linkedin.com/in/luke-h-cho/","campus":"NYC","cohort":"28","jobTitle":"Software Engineer","industry":"Banking","cities":["Cincinnati","Chesapeake","Phoenix"]},{"company":"Capital One","name":"Philip Kang","email":"m.philipkang@gmail.com","linkedIn":"https://www.linkedin.com/in/pkmi/","campus":"NYC / ECRI","cohort":"27","jobTitle":"Software Engineer","industry":"Other","cities":["Winston-Salem","Greensboro"]},{"company":"Capital One","name":"Matthew Femia","email":"mattfemia1@gmail.com","linkedIn":"https://www.linkedin.com/in/mattfemia/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Software Engineer","industry":"Fintech","cities":["Los Angeles","Santa Ana"]},{"company":"Capital One","name":"May Li","email":"mayleeli1234@gmail.com","linkedIn":"https://www.linkedin.com/in/maysli","campus":"LA","cohort":"44","jobTitle":"Fullstack Software Engineer","industry":"Fintech","cities":["Buffalo","Durham","Tokyo","Chandler"]},{"company":"Capital One","name":"Matt von der Lippe","email":"mvdlippe@gmail.com","linkedIn":"https://www.linkedin.com/in/mvdlippe/","campus":"FTRI","cohort":"3","jobTitle":"Senior Associate Software Engineer - Backend","industry":"Fintech","cities":["Raleigh","Seattle","North Las Vegas","Denver"]},{"company":"Capital One","name":"Nathanael Tracy","email":"n.tracy@outlook.com","linkedIn":"https://www.linkedin.com/in/nathanael-tracy/","campus":"NYC","cohort":"27","jobTitle":"Senior Associate Software Engineer","industry":"Finance","cities":["Aurora","Houston","Louisville","Seattle"]},{"company":"Capital One","name":"Nathan Yang","email":"nathan.yang16@gmail.com","linkedIn":"https://www.linkedin.com/in/nathanmyang/","campus":"NYC","cohort":"28","jobTitle":"Sr. Associate Software Engineer (Full-Stack)","industry":"Business","cities":["Denver"]},{"company":"Capital One","name":"Nicholas A Gonzalez","email":"nicholas.a.gonz@gmail.com","linkedIn":"https://www.linkedin.com/in/nicholasagonzalez/","campus":"NYC","cohort":"30","jobTitle":"Fullstack Engineer","industry":"Fintech","cities":["Glendale","Tucson"]},{"company":"Capital One","name":"Patrick Slagle","email":"patrickryanslagle@gmail.com","linkedIn":"https://www.linkedin.com/in/patrickslagle/","campus":"LA","cohort":"23","jobTitle":"Software Engineer","industry":"","cities":["Garland","Baltimore","Dallas"]},{"company":"Capital One","name":"Peter Van","email":"peterrvan@gmail.com","linkedIn":"https://www.linkedin.com/in/peter-van/","campus":"LA","cohort":"43","jobTitle":"Front End Software Engineer","industry":"Financial Services","cities":["Nashville"]},{"company":"Capital One","name":"Rachel Patterson","email":"racheljpatterson@gmail.com","linkedIn":"https://www.linkedin.com/in/racheljpatterson/","campus":"NYC","cohort":"27","jobTitle":"Software Engineer, Full Stack","industry":"Banking/Fintech","cities":["San Antonio","Raleigh","Berlin","Lubbock"]},{"company":"Capital One","name":"Quentin Rousset","email":"roussetquent1@gmail.com","linkedIn":"https://www.linkedin.com/in/qrousset/","campus":"NYC","cohort":"28","jobTitle":"Sr Software Engineer Back-end","industry":"Fintech","cities":["Philadelphia","Albuquerque","Toledo","Anchorage"]},{"company":"Capital One","name":"Ahad Rajput","email":"sachem2015@gmail.com","linkedIn":"https://www.linkedin.com/in/arajput96/","campus":"FTRI","cohort":"3","jobTitle":"Senior Software Engineer","industry":"Finance/Fintech","cities":["Louisville"]},{"company":"Capital One","name":"Sam Portelance","email":"sportelance1@gmail.com","linkedIn":"https://www.linkedin.com/in/sportelance/","campus":"NYC","cohort":"23","jobTitle":"Senior Associate Fullstack Engineer","industry":"Fintech","cities":["Kansas City","Newark","Lincoln"]},{"company":"Capital One","name":"Stephen Kim","email":"stephenkim612@gmail.com","linkedIn":"https://www.linkedin.com/in/stephenkim612/","campus":"LA","cohort":"47","jobTitle":"Software Engineer, Fullstack","industry":"Finance","cities":["Henderson","Greensboro","El Paso"]},{"company":"Capital One","name":"Andrew Talle","email":"talle.andrew@gmail.com","linkedIn":"https://www.linkedin.com/in/andrewtalle/","campus":"FTRI","cohort":"6","jobTitle":"Backend Software Engineer","industry":"Fintech","cities":["Fresno","Aurora"]},{"company":"Capital One","name":"Terrence Granger","email":"Terrence.granger@gmail.com","linkedIn":"https://www.linkedin.com/in/terrence-granger/","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Oklahoma City","Anaheim","Buffalo","Indianapolis"]},{"company":"Capital One","name":"Thomas Reeder","email":"thomaseugenereeder@gmail.com","linkedIn":"https://www.linkedin.com/in/thomas-reeder/","campus":"LA","cohort":"43","jobTitle":"Software Engineer, Full Stack","industry":"Banking","cities":["Reno","Wichita","London"]},{"company":"Capital One","name":"Trevor Leung","email":"trevorleeeung@gmail.com","linkedIn":"https://www.linkedin.com/in/trevleung/","campus":"LA","cohort":"47","jobTitle":"Software Engineer, Full Stack","industry":"Finance/Banking","cities":["Fresno","Mesa"]},{"company":"Capital One","name":"Vivian Wu","email":"Vivian.wu.here@gmail.com","linkedIn":"https://www.linkedin.com/in/viv-wu","campus":"LA","cohort":"44","jobTitle":"Solutions Engineer","industry":"Healthcare fintech","cities":["Minneapolis","Henderson","Oakland","Stockton"]},{"company":"Capital One","name":"Vicki Yang","email":"vwyangdev@gmail.com","linkedIn":"https://www.linkedin.com/in/vwyang/","campus":"NYC","cohort":"25","jobTitle":"Senior Software Engineer","industry":"Financial Services","cities":["Berlin","Chicago","Raleigh","Aurora"]},{"company":"Capital One","name":"Walker Marsh","email":"walkermarsh9@gmail.com","linkedIn":"https://www.linkedin.com/in/WalkerVEMarsh/","campus":"NYC","cohort":"26","jobTitle":"Software Engineer, Full Stack","industry":"Fintech/ Banking","cities":["Los Angeles","Austin"]},{"company":"Capital One","name":"Kevin Richardson","email":"kevin@karcodes.com","linkedIn":"https://www.linkedin.com/in/kevinalexrichardson/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Senior Software Engineer","industry":"Other","cities":["Tucson"]},{"company":"Capital One","name":"Michael Benliyan","email":"michaelbenliyan@gmail.com","linkedIn":"michaelbenliyan","campus":"LA / WCRI","cohort":"55","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Indianapolis","Memphis","Plano","Cincinnati"]},{"company":"Capital One","name":"Nathan Cho","email":"nathan.y.cho@gmail.com","linkedIn":"https://www.linkedin.com/in/nathanycho","campus":"NYC / ECRI","cohort":"37","jobTitle":"Software Engineer","industry":"Fintech","cities":["Columbus","Minneapolis","Albuquerque"]},{"company":"Capital One","name":"Martin Ng","email":"kamartinng@gmail.com","linkedIn":"https://www.linkedin.com/in/martinngsf/","campus":"LA / WCRI","cohort":"49","jobTitle":"Senior Full Stack Engineer","industry":"Fintech","cities":["Tucson","Aurora","Omaha"]},{"company":"Capital One","name":"Honghao sun","email":"sunhonghaoshh@gmail.com","linkedIn":"https://www.linkedin.com/in/honghaosunmichael/","campus":"LA / WCRI","cohort":"52","jobTitle":"Senior Fullstack Engineer","industry":"Fintech","cities":["New Orleans"]},{"company":"Capital One Bank","name":"Donald Cross","email":"derekcrosslu@gmail.com","linkedIn":"https://www.linkedin.com/in/crossderek/","campus":"NYC","cohort":"13","jobTitle":"Front End Engineer","industry":"Finance","cities":["Riverside","Oakland","Columbus","Newark"]},{"company":"Capital Rx","name":"Htin Linn Aung","email":"htinlinnag1993@gmail.com","linkedIn":"https://www.linkedin.com/in/htinlinnaung/","campus":"PTRI","cohort":"2","jobTitle":"Senior Fullstack Software Engineer","industry":"Healthcare Tech","cities":["Milwaukee","Miami"]},{"company":"Capital Rx","name":"Jin Qin","email":"jxq32@case.edu","linkedIn":"https://www.linkedin.com/in/jcqin/","campus":"FTRI","cohort":"1","jobTitle":"Senior Fullstack Developer","industry":"Health Care","cities":["Toledo","Nashville","Winston-Salem","Irving"]},{"company":"Caraway Health","name":"Gwendolyn (Gwen) Phillips","email":"gwen.phil@gmail.com","linkedIn":"https://www.linkedin.com/in/gwen-phillips/","campus":"PTRI","cohort":"6","jobTitle":"Full Stack Engineer","industry":"Healthcare","cities":["Anchorage"]},{"company":"Carbon Mapper","name":"Zach Franz","email":"zachafranz@gmail.com","linkedIn":"https://www.linkedin.com/in/zacharyfranz/","campus":"NYC","cohort":"4","jobTitle":"Software Engineer","industry":"Research","cities":["Honolulu","Reno","Santa Ana"]},{"company":"Care/of","name":"Jake Pino","email":"Jakepino@yahoo.com","linkedIn":"https://www.linkedin.com/in/jake-pino","campus":"NYC","cohort":"30","jobTitle":"Senior Software Engineer","industry":"Wellness","cities":["Memphis","San Diego"]},{"company":"Care/of","name":"Malika Butler","email":"missemmbutler@gmail.com","linkedIn":"https://www.linkedin.com/in/malikabutler","campus":"NYC","cohort":"8","jobTitle":"Software Engineer","industry":"Health tech","cities":["Omaha","Cincinnati"]},{"company":"CareDox","name":"Christine Choi","email":"christine.yj.choi@gmail.com","linkedIn":"https://www.linkedin.com/in/christineyjchoi/","campus":"NYC","cohort":"8","jobTitle":"Software Engineer","industry":"Retail","cities":["Corpus Christi"]},{"company":"Carrot Fertility","name":"Heather Barney","email":"heather.barney@gmail.com","linkedIn":"https://www.linkedin.com/in/heather-barney1/","campus":"PTRI","cohort":"4","jobTitle":"Associate Software Engineer","industry":"Insurance","cities":["Chicago","Boston","Paris"]},{"company":"Cassian Solutions, Inc.","name":"Darin Ngau","email":"darin.ngau@gmail.com","linkedIn":"https://www.linkedin.com/in/darin-ngau/","campus":"NYC / ECRI","cohort":"34","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Greensboro","San Francisco","Albuquerque"]},{"company":"Cast & Crew","name":"Tianhao Yao","email":"mapleseventh@gmail.com","linkedIn":"https://www.linkedin.com/in/tianhao-yao-2021826a/","campus":"LA","cohort":"28","jobTitle":"Software Engineer","industry":"Entertainment","cities":["Boston","Chicago","Chandler"]},{"company":"cast and crew","name":"Sam Selfridge","email":"sirclesam@yahoo.com","linkedIn":"https://www.linkedin.com/in/sam-selfridge/","campus":"LA","cohort":"28","jobTitle":"software engineer","industry":"fintech/entertainment","cities":["Reno","Jersey City","Winston-Salem"]},{"company":"Cast.app","name":"Robert Maeda","email":"rob.maeda3@gmail.com","linkedIn":"https://www.linkedin.com/in/robert-maeda/","campus":"LA","cohort":"46","jobTitle":"Software Engineer","industry":"Fintech","cities":["Oakland","Pittsburgh","Albuquerque"]},{"company":"Catchpoint","name":"Neyser Zana","email":"neyserj.zana@gmail.com","linkedIn":"https://www.linkedin.com/in/neyser-zana-860018152/","campus":"NYC","cohort":"7","jobTitle":"Software Engineer II","industry":"Advertising","cities":["Henderson"]},{"company":"Causebox","name":"Grace Kim","email":"gracekiim@gmail.com","linkedIn":"https://www.linkedin.com/in/gracekiim/","campus":"LA","cohort":"37","jobTitle":"Software Engineer","industry":"Consumer products","cities":["Sรฃo Paulo","San Antonio","New Orleans","North Las Vegas"]},{"company":"CB Insights","name":"Hazel Na","email":"hazel.na3@gmail.com","linkedIn":"https://www.linkedin.com/in/hyeseon-na","campus":"NYC","cohort":"27","jobTitle":"Software Engineer III - Frontend","industry":"business analytics platform","cities":["Portland","Garland"]},{"company":"CBTS - CVS","name":"Chang Shuen Lee","email":"changshuen.lee@gmail.com","linkedIn":"https://www.linkedin.com/in/daveelee/","campus":"NYC","cohort":"16","jobTitle":"Frontend Software Engineer","industry":"Health","cities":["Bakersfield","Beijing"]},{"company":"Cecelia Health","name":"Kwadwo Asamoah","email":"addoasa94@gmail.com","linkedIn":"https://www.linkedin.com/in/kwadwoasamoah","campus":"NYC","cohort":"12","jobTitle":"Front End Engineer","industry":"Health","cities":["Irving","Corpus Christi","Albuquerque"]},{"company":"Cedars-Sinai Cancer","name":"William Chu","email":"Williamchu9@gmail.com","linkedIn":"https://www.linkedin.com/in/williamchu9/","campus":"LA","cohort":"49","jobTitle":"Software Engineer/Programming Analyst","industry":"Healthcare","cities":["Garland"]},{"company":"Cenith Innovations","name":"Serena Amos","email":"amos.serena17@gmail.com","linkedIn":"https://www.linkedin.com/in/serena-amos/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Software Engineer","industry":"Aerospace","cities":["Albuquerque","Durham","New Orleans"]},{"company":"Centene","name":"Serena Romano","email":"serenahromano2000@gmail.com","linkedIn":"https://www.linkedin.com/in/srom1/","campus":"NYC / ECRI","cohort":"41","jobTitle":"Full Stack Developer","industry":"Healthtech/Healthcare","cities":["Kansas City"]},{"company":"Cequint","name":"Carol Xia","email":"c.xia.98@gmail.com","linkedIn":"linkedin.com/in/carolxia2","campus":"LA / WCRI","cohort":"51","jobTitle":"Software Development Engineer","industry":"Telecommunications","cities":["Irving","Memphis","Austin","Orlando"]},{"company":"Cerebral","name":"Irine Kang","email":"irine.kang@codesmith.io","linkedIn":"https://www.linkedin.com/in/irinekang/","campus":"FTRI","cohort":"6","jobTitle":"Full Stack Engineer II","industry":"Medicine","cities":["Buffalo"]},{"company":"CH Robinson","name":"Joseph Cheng","email":"josephcheng.y@gmail.com","linkedIn":"https://www.linkedin.com/in/josephcheng-y/","campus":"LA","cohort":"39","jobTitle":"Software Engineer","industry":"Logistic","cities":["New York","Las Vegas","San Jose","Scottsdale"]},{"company":"Chainalysis","name":"Natalia Vargas-Caba","email":"nvargas@gm.slc.edu","linkedIn":"https://www.linkedin.com/in/nataliavargascaba","campus":"NYC","cohort":"17","jobTitle":"Technical Writer","industry":"Fintech","cities":["Toronto","Sacramento","Albuquerque","Tokyo"]},{"company":"Chainguard","name":"Felipe Ocampo","email":"felipe.aocampo@gmail.com","linkedIn":"https://www.linkedin.com/in/ocampofelipe/","campus":"LA / WCRI","cohort":"56","jobTitle":"Web Developer","industry":"Marketing/Advertising","cities":["Boston","Nashville","Columbus","Sรฃo Paulo"]},{"company":"Chainlink","name":"Finley Decker","email":"finleydecker@gmail.com","linkedIn":"https://www.linkedin.com/in/finleydecker/","campus":"LA / WCRI","cohort":"52","jobTitle":"Software Engineer","industry":"Blockchain/Web3","cities":["Mumbai","Laredo"]},{"company":"Change Healthcare","name":"Bruce Wong","email":"dbrucewong@gmail.com","linkedIn":"https://www.linkedin.com/in/dawong/","campus":"LA","cohort":"29","jobTitle":"Senior Software Engineer","industry":"Healthcare","cities":["Baltimore","Fort Worth","London","Lexington"]},{"company":"Change Healthcare","name":"Billy K Lee","email":"ucanfindbillie@gmail.com","linkedIn":"https://www.linkedin.com/in/billy-k-lee/","campus":"LA","cohort":"30","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Garland"]},{"company":"Change Healthcare.","name":"Noah Lee","email":"no@hlee.me","linkedIn":"https://www.linkedin.com/in/justnoah/","campus":"LA","cohort":"27","jobTitle":"Software Engineer.","industry":"Healthcare.","cities":["Lubbock","Corpus Christi","Louisville","Oklahoma City"]},{"company":"Chargebacks911","name":"Chandni Patel","email":"chandnip6@gmail.com","linkedIn":"https://www.linkedin.com/in/chandnip6/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Fintech","cities":["Lubbock","Arlington","Atlanta"]},{"company":"Chargebee Retention","name":"Abhi Krishnan","email":"krabhishaken@gmail.com","linkedIn":"https://www.linkedin.com/in/krabhishaken/","campus":"NYC","cohort":"26","jobTitle":"Senior Software Engineer","industry":"Subscription Tech","cities":["St. Louis","Beijing","Chesapeake","Cincinnati"]},{"company":"Chariot","name":"Weilan Cui","email":"weilanc@gmail.com","linkedIn":"https://www.linkedin.com/in/weilan-cui","campus":"NYC","cohort":"24","jobTitle":"Founding engineer","industry":"Software as a service","cities":["Reno","Fort Wayne"]},{"company":"Charles River","name":"Josh Howard","email":"JoshHoward.Dev@gmail.com","linkedIn":"https://www.linkedin.com/in/joshhowarddev/","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Full Stack Developer","industry":"Software / Tech","cities":["Pittsburgh"]},{"company":"Charles Schwab","name":"Troy Witonsky","email":"troywitonsky@gmail.com","linkedIn":"https://www.linkedin.com/in/troy-witonsky","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Enterprise Engineer","industry":"Fintech","cities":["Cincinnati"]},{"company":"Chattanooga Shooting Supplies","name":"Zach Hall","email":"zachh85@gmail.com","linkedIn":"linkedin.com/in/z-r-hall","campus":"NYC / ECRI","cohort":"37","jobTitle":"Senior Application Developer","industry":"Retail","cities":["Beijing","Stockton","Paris","Raleigh"]},{"company":"Cheddar Media","name":"David Neuhaus","email":"david@neuha.us","linkedIn":"https://www.linkedin.com/in/dneuhaus/","campus":"NYC","cohort":"13","jobTitle":"Sr Software Engineer","industry":"Media / News","cities":["Cleveland"]},{"company":"Chegg, Inc","name":"Kate Matthews","email":"katesmatthews@gmail.com","linkedIn":"https://www.linkedin.com/in/katesmatthews/","campus":"NYC","cohort":"11","jobTitle":"Software Engineer","industry":"EdTech","cities":["El Paso","Stockton"]},{"company":"Chewy","name":"Lucy Chi","email":"lucycchi@gmail.com","linkedIn":"https://www.linkedin.com/in/chilucy/","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Tech Consulting, Client is in HealthTech","cities":["Mexico City","Sydney","Arlington","Plano"]},{"company":"Chewy","name":"Joseph Nagy","email":"nagyjoseph29@gmail.com","linkedIn":"https://www.linkedin.com/in/josephmnagy/","campus":"NYC","cohort":"29","jobTitle":"Software Engineer","industry":"E-commerce","cities":["Tulsa","Fresno","Lexington"]},{"company":"Chief","name":"Tim Ruszala","email":"truszala@gmail.com","linkedIn":"https://www.linkedin.com/in/timruszala/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Fullstack Software Engineer","industry":"Other","cities":["Plano","Corpus Christi","Denver","Kansas City"]},{"company":"Chipper Cash","name":"Sean Lee","email":"lee.sw.sean@gmail.com","linkedIn":"https://www.linkedin.com/in/seanleesw","campus":"LA","cohort":"46","jobTitle":"Software Engineer","industry":"Fintech","cities":["Philadelphia","Bakersfield","Lincoln"]},{"company":"Choose Ketamine","name":"Eric Komatsu","email":"eric@cpgexperience.com","linkedIn":"https://www.linkedin.com/in/eric-komatsu/","campus":"LA / WCRI","cohort":"50","jobTitle":"Lead Engineer","industry":"Healthcare","cities":["Plano","Sรฃo Paulo","Baltimore"]},{"company":"Chopra Global","name":"Jonathon Gonzalez","email":"gonzalezjonathon55@gmail.com","linkedIn":"https://www.linkedin.com/in/jonathon-gonzalez/","campus":"NYC","cohort":"16","jobTitle":"Backend Engineer","industry":"Health & Wellness","cities":["Denver","North Las Vegas","Riverside"]},{"company":"Chopra Global","name":"Josh Naso","email":"jnaso29@gmail.com","linkedIn":"https://www.linkedin.com/in/joshnaso/","campus":"NYC","cohort":"16","jobTitle":"Web Developer","industry":"Meditation/self-care","cities":["Louisville","Tampa","Chula Vista"]},{"company":"ChromaCode","name":"Edwin Menendez","email":"edwinjmenendez@gmail.com","linkedIn":"https://www.linkedin.com/in/edwinmenendez/","campus":"LA","cohort":"36","jobTitle":"Software Engineer","industry":"Bio-Tech","cities":["Virginia Beach"]},{"company":"Chubb insurance","name":"Robert Hernandez","email":"Rob23Hernandez@gmail.com","linkedIn":"https://www.linkedin.com/in/robhernandeznyc/","campus":"NYC","cohort":"26","jobTitle":"Software Engineer","industry":"Insurance","cities":["Anchorage"]},{"company":"Cigna","name":"JC Fernandez","email":"jorgecarlosfern@gmail.com","linkedIn":"https://www.linkedin.com/in/jorge-carlos-fernandez/","campus":"LA","cohort":"42","jobTitle":"Full Stack Engineer","industry":"Health Care","cities":["Buffalo","Winston-Salem","Anaheim","Colorado Springs"]},{"company":"CIMx","name":"Christian Springer","email":"christian@christianspringer.com","linkedIn":"https://www.linkedin.com/in/christian-springer0/","campus":"PTRI","cohort":"7","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["North Las Vegas","Lincoln","Pittsburgh"]},{"company":"CircleCI","name":"Ai Mi Bui","email":"Aimibui22@gmail.com","linkedIn":"https://www.linkedin.com/in/aimibui/","campus":"NYC","cohort":"22","jobTitle":"Software Engineer","industry":"Software","cities":["Arlington","Los Angeles","Gilbert"]},{"company":"CircleCI","name":"Jeff Chen","email":"contact.jeffchen@gmail.com","linkedIn":"https://www.linkedin.com/in/jalexchen/","campus":"LA","cohort":"43","jobTitle":"Software Development Engineer","industry":"Tech","cities":["Baltimore","Charlotte","Boston","Norfolk"]},{"company":"CircleCI","name":"Tony Shen","email":"tshen815@live.com","linkedIn":"https://www.linkedin.com/in/tonyShen815/","campus":"LA","cohort":"35","jobTitle":"Software Engineer","industry":"Computer Software/Tech","cities":["Las Vegas","Durham","Orlando"]},{"company":"CircleCI","name":"Tyler Sullberg","email":"tysullberg@gmail.com","linkedIn":"https://www.linkedin.com/in/tyler-sullberg/","campus":"LA","cohort":"36","jobTitle":"Software Engineer","industry":"Dev Ops","cities":["Long Beach","Fort Wayne","New Orleans","Charlotte"]},{"company":"Cisco","name":"Laura Llano","email":"ldllano@gmail.com","linkedIn":"https://www.linkedin.com/in/laura-llano","campus":"NYC","cohort":"26","jobTitle":"Software Engineering","industry":"Software / Tech","cities":["Tampa","Las Vegas"]},{"company":"Cisco Systems, Inc.","name":"Egon Levy","email":"egonlevy@gmail.com","linkedIn":"https://www.linkedin.com/in/egon-levy-8b62aa1b0/","campus":"NYC","cohort":"18","jobTitle":"Senior Software Engineer","industry":"Computer Engineering","cities":["San Francisco","Indianapolis","Colorado Springs","Seattle"]},{"company":"Citi","name":"Max Heubel","email":"maxhuebel@gmail.com","linkedIn":"https://www.linkedin.com/in/max-heubel/","campus":"NYC / ECRI","cohort":"37","jobTitle":"Sr. Programmer Analyst","industry":"Fintech","cities":["Boston","Lincoln","Honolulu"]},{"company":"Citi (Citicorp Credit Services, Inc.)","name":"Reland Boyle","email":"reland.boyle@gmail.com","linkedIn":"https://www.linkedin.com/in/relandboyle/","campus":"FTRI","cohort":"4","jobTitle":"Digital Software Engineer / Senior Analyst - C12, Assistant Vice President of Matrix Reportingโ€‹","industry":"Fintech","cities":["Long Beach","Berlin","Irvine"]},{"company":"Cityblock","name":"Oluwajomiloju Olaode","email":"jojuolaode@gmail.com","linkedIn":"https://www.linkedin.com/in/jojuolaode/","campus":"NYC","cohort":"18","jobTitle":"Senior Software Engineer","industry":"Healthcare","cities":["Glendale"]},{"company":"Civera","name":"Hank McGill","email":"henrymcgill@gmail.com","linkedIn":"https://www.linkedin.com/in/hank-mcgill/","campus":"NYOI","cohort":"4","jobTitle":"Data Engineering Fellow","industry":"Government","cities":["St. Petersburg","Memphis","Honolulu"]},{"company":"CivilGrid","name":"Jack Moorman","email":"johnmoormaniii@gmail.com","linkedIn":"www.linkedin.com/in/jack-moorman","campus":"FTRI / CTRI","cohort":"14","jobTitle":"Software Engineer","industry":"Other","cities":["Cincinnati","Pittsburgh","Honolulu","Norfolk"]},{"company":"Classy","name":"Kim Spicer","email":"Kspicerny@gmail.com","linkedIn":"https://www.linkedin.com/in/kimberleyspicer/","campus":"LA","cohort":"41","jobTitle":"Software Engineer","industry":"Software","cities":["Aurora","Winston-Salem","Berlin","Chicago"]},{"company":"Clear","name":"Nate Adams","email":"NathanielBAdams@gmail.com","linkedIn":"https://www.linkedin.com/in/adamsnathaniel/","campus":"NYC","cohort":"21","jobTitle":"Software Engineer","industry":"Biometrics / Security services","cities":["El Paso","Tokyo"]},{"company":"Clear Capital","name":"Sean Haverstock","email":"seanhaverstock@gmail.com","linkedIn":"https://www.linkedin.com/in/sean-haverstock/","campus":"LA","cohort":"37","jobTitle":"Associate Software Engineer","industry":"Fintech, Real Estate","cities":["Dallas","Berlin"]},{"company":"Clevyr","name":"Michael Watson","email":"mdwatson988@gmail.com","linkedIn":"https://www.linkedin.com/in/mdwatson988/","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Jr. Software Developer","industry":"Software / Tech","cities":["Long Beach"]},{"company":"Clicktripz","name":"Bryan Bart","email":"bart.bryan.e@gmail.com","linkedIn":"https://www.linkedin.com/in/bryan-bart/","campus":"LA","cohort":"48","jobTitle":"Software Engineer","industry":"Travel Technology","cities":["Anchorage"]},{"company":"Clover","name":"Michael Trapani","email":"mtrapani27@gmail.com","linkedIn":"https://www.linkedin.com/in/michael-a-trapani/","campus":"NYC","cohort":"31","jobTitle":"Web Software Engineer","industry":"Software / Tech","cities":["Chesapeake","Cincinnati"]},{"company":"ClubLabs","name":"Natlyn Phomsavanh","email":"natlynp@gmail.com","linkedIn":"","campus":"LA","cohort":"28","jobTitle":"Software Engineer","industry":"Insurance/Travel","cities":["Seattle"]},{"company":"ClubLabs","name":"Talya Sasek","email":"talyaercag@gmail.com","linkedIn":"https://www.linkedin.com/in/talyasasek/","campus":"LA","cohort":"32","jobTitle":"Software Engineer","industry":"Insurance","cities":["Philadelphia"]},{"company":"CoachEm","name":"Matthew Garza","email":"mattg614@gmail.com","linkedIn":"https://www.linkedin.com/in/garzamatte/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Full Stack Software Engineer","industry":"Software / Tech","cities":["Corpus Christi","Minneapolis","St. Louis"]},{"company":"Coates Group","name":"Paul Kim","email":"paulkim0209@gmail.com","linkedIn":"https://www.linkedin.com/in/paul-kim-37735b217","campus":"NYC / ECRI","cohort":"41","jobTitle":"Backend Engineer","industry":"Business Tech/Enterprise Tech","cities":["Paris","Winston-Salem","Toledo"]},{"company":"Cobalt.io","name":"Karl Richards","email":"krichards175@gmail.com","linkedIn":"https://www.linkedin.com/in/krichards175/","campus":"NYC / ECRI","cohort":"33","jobTitle":"Data Engineer","industry":"Security","cities":["Memphis","Cincinnati"]},{"company":"Cobble","name":"Matt Peters","email":"matt@mpeters.io","linkedIn":"https://www.linkedin.com/in/mattgpeters","campus":"NYC","cohort":"16","jobTitle":"Frontend Engineer","industry":"Leisure, Travel & Tourism","cities":["Chesapeake","Dallas"]},{"company":"Code Climate","name":"Margaret Ma","email":"margaretma00@gmail.com","linkedIn":"https://www.linkedin.com/in/margaret-ma/","campus":"NYC","cohort":"3","jobTitle":"Software Engineer","industry":"","cities":["San Francisco","Garland","Seattle"]},{"company":"Coder","name":"Michael Smith","email":"throwawayclover@gmail.com","linkedIn":"www.linkedin.com/in/michael-eric-smith","campus":"NYC / ECRI","cohort":"33","jobTitle":"Software Engineer","industry":"Software Solutions/Developer Tools","cities":["Buffalo","Miami","Memphis","Tampa"]},{"company":"Codesmith","name":"Terry L. Tilley","email":"terryltilley@gmail.com","linkedIn":"https://www.linkedin.com/in/t-l-tilley/","campus":"LA","cohort":"44","jobTitle":"Instruction Training Manager","industry":"Software/Tech","cities":["Tampa"]},{"company":"Cofebe","name":"Seong Choi","email":"choies921003@gmail.com","linkedIn":"https://www.linkedin.com/in/seongchoi/","campus":"LA","cohort":"32","jobTitle":"Software Engineer","industry":"Computer Software","cities":["Reno","Stockton","Madison","Portland"]},{"company":"Cognizant","name":"Scott Burman","email":"Scottburs@gmail.com","linkedIn":"https://www.linkedin.com/in/scottburman847/","campus":"LA","cohort":"39","jobTitle":"Senior Developer","industry":"Technology","cities":["Henderson","Greensboro"]},{"company":"Cohere AI","name":"Zahara Aviv ","email":"zahara.aviv@gmail.com","linkedIn":"https://linkedIn.com/in/zahara-aviv","campus":"NYC / ECRI","cohort":"38","jobTitle":"Senior Full Stack Engineer ","industry":"Artificial Intelligence","cities":["Houston","Tulsa","Colorado Springs","Winston-Salem"]},{"company":"CoinCircle","name":"Andrew Fuselier","email":"theandewlarry@gmail.com","linkedIn":"https://www.linkedin.com/in/andrewfuselier/","campus":"LA","cohort":"19","jobTitle":"Software Engineer","industry":"","cities":["Madison","Chesapeake","Houston"]},{"company":"Collective Health","name":"Daryl Foster","email":"dmafoster@gmail.com","linkedIn":"https://www.linkedin.com/in/darylfosterma/","campus":"LA","cohort":"42","jobTitle":"Senior Frontend Engineer","industry":"Health Tech (Healthplan Administration for 1000 plus employee companies)","cities":["Winston-Salem","Long Beach","Lexington"]},{"company":"Colliers - Contract position through Hays","name":"Pauline Nguyen","email":"Paulinekpn@gmail.com","linkedIn":"https://www.linkedin.com/in/paulineknguyen/","campus":"LA / WCRI","cohort":"55","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Fort Wayne","Kansas City","Las Vegas","Austin"]},{"company":"Comcast","name":"Brian Chiang","email":"brianchiang2008@gmail.com","linkedIn":"linkedin.com/in/brian-chiang4","campus":"LA / WCRI","cohort":"48","jobTitle":"Software Engineer","industry":"Media","cities":["Albuquerque","Portland"]},{"company":"Comcast","name":"Darwin Sinchi","email":"dsinchi19@gmail.com","linkedIn":"https://www.linkedin.com/in/darwin-m-sinchi/","campus":"NYC","cohort":"20","jobTitle":"Software Engineer","industry":"TeleCom","cities":["New York","Toronto","Washington","Gilbert"]},{"company":"Comcast","name":"Matthew Francis","email":"mbfrancis7@gmail.com","linkedIn":"https://www.linkedin.com/in/mbfrancis7/","campus":"NYC","cohort":"7","jobTitle":"Software Developer","industry":"","cities":["Mumbai"]},{"company":"Comcast","name":"Yong-Nicholas Alexander Kim","email":"yongnicholaskim@gmail.com","linkedIn":"https://www.linkedin.com/in/yongnicholaskim/","campus":"NYC","cohort":"7","jobTitle":"Node.js Engineer","industry":"Commercial Services","cities":["Paris","Stockton","Buffalo","Anaheim"]},{"company":"CommonBond","name":"Nathan Bargers","email":"nbargers@gmail.com","linkedIn":"https://www.linkedin.com/in/nathan-bargers/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Finance","cities":["Jacksonville","Mumbai"]},{"company":"Community Attributes Inc","name":"Carter Long","email":"crlong7@gmail.com","linkedIn":"https://www.linkedin.com/in/carterrobertlong/","campus":"FTRI / CTRI","cohort":"15","jobTitle":"Full Stack Developer","industry":"Consulting","cities":["Columbus","Garland","Anaheim","Chula Vista"]},{"company":"Compass","name":"Casey Walker","email":"casey.e.walker@gmail.com","linkedIn":"https://www.linkedin.com/in/caseyewalker","campus":"LA","cohort":"38","jobTitle":"Software Engineer II","industry":"Real Estate","cities":["Chicago","Houston","Indianapolis"]},{"company":"Compass","name":"Liam McBride","email":"liameno16@gmail.com","linkedIn":"https://www.linkedin.com/in/liamemcbride/","campus":"LA","cohort":"36","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Irvine"]},{"company":"Compass","name":"Sierra Swaby","email":"Sierra.swaby@gmail.com","linkedIn":"https://www.linkedin.com/in/Sierra-swaby","campus":"NYC","cohort":"12","jobTitle":"Creative Developer","industry":"Real Estate","cities":["Madison","New Orleans"]},{"company":"Compliancy Group","name":"Bruno Albero","email":"alberobruno@gmail.com","linkedIn":"https://www.linkedin.com/in/alberobruno/","campus":"NYC / ECRI","cohort":"34","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Mesa","Seattle","Greensboro","Wichita"]},{"company":"Conagra Brands","name":"Scott Hallock","email":"scott.hallock@gmail.com","linkedIn":"https://www.linkedin.com/in/scottjhallock","campus":"FTRI / CTRI","cohort":"16","jobTitle":"Senior Software Engineer","industry":"Food/Beverage/Restaurant","cities":["Berlin","Baltimore","San Jose"]},{"company":"Concert Health","name":"Raubern Totanes","email":"rstotanes@g.ucla.edu","linkedIn":"https://www.linkedin.com/in/rauberntotanes/","campus":"NYC","cohort":"26","jobTitle":"Software Development Engineer","industry":"Health Tech","cities":["Miami"]},{"company":"Contracting for Perspecta Labs via Roc Search via Precision Global Consulting","name":"Ben Mizel","email":"ben.mizel@gmail.com","linkedIn":"https://www.linkedin.com/in/ben-mizel/","campus":"NYC","cohort":"15","jobTitle":"Back End Software Engineer","industry":"Defense","cities":["Oklahoma City"]},{"company":"Core Business Technology","name":"Jason Hwang","email":"hwangja1019@gmail.com","linkedIn":"https://www.linkedin.com/in/jason-jh-hwang/","campus":"NYC / ECRI","cohort":"37","jobTitle":"Associate Engineer","industry":"Fintech","cities":["San Jose"]},{"company":"Core Digital Media","name":"Edward Greenberg","email":"ed.w.greenberg@gmail.com","linkedIn":"https://www.linkedin.com/in/edwgreenberg/","campus":"NYC","cohort":"14","jobTitle":"Senior Web Developer","industry":"Software","cities":["Jacksonville"]},{"company":"Cosm","name":"Shana Hoehn","email":"Shanahoehn@gmail.com","linkedIn":"","campus":"LA","cohort":"41","jobTitle":"Software Engineer","industry":"Entertainment technology","cities":["San Francisco","London"]},{"company":"Costa Farms LLC","name":"Ernesto Gonzalez","email":"egonzalez442@gmail.com","linkedIn":"https://www.linkedin.com/in/ernesto-gonzalez123","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Software Engineer","industry":"Agriculture Science","cities":["Austin","Tokyo","Mumbai"]},{"company":"CoStar","name":"Prasad Pulaguntla","email":"prasad.pul@gmail.com","linkedIn":"https://www.linkedin.com/in/prasad-pulaguntla/","campus":"FTRI","cohort":"2","jobTitle":"Lead Software Engineer","industry":"Commercial Real Estate","cities":["Kansas City"]},{"company":"CoStar Group","name":"Alan Richardson","email":"alanrichardson723@gmail.com","linkedIn":"","campus":"NYC / ECRI","cohort":"29","jobTitle":"Associate Software Engineer","industry":"Real Estate","cities":["Arlington","Beijing"]},{"company":"CoStar Group","name":"Julian Kang","email":"julianswkang@gmail.com","linkedIn":"https://www.linkedin.com/in/julianswkang","campus":"NYC / ECRI","cohort":"32","jobTitle":"Software Engineer II","industry":"Real Estate","cities":["Las Vegas","Albuquerque","Anaheim","St. Petersburg"]},{"company":"CoStar Group","name":"Kevin Berlanga","email":"kvnberlanga@gmail.com","linkedIn":"https://www.linkedin.com/in/kevinberlanga/","campus":"PTRI","cohort":"2","jobTitle":"Software Engineer II","industry":"Real Estate","cities":["Sydney","Aurora","Orlando"]},{"company":"CoStar Group","name":"Ruzeb Chowdhury","email":"ruzeb1996@gmail.com","linkedIn":"https://www.linkedin.com/in/ruzebchowdhury/","campus":"NYC","cohort":"30","jobTitle":"Frontend Engineer","industry":"Commercial Real Estate","cities":["Fort Worth","Fresno"]},{"company":"Coursetune","name":"John Maltese","email":"john.maltese@gmail.com","linkedIn":"https://www.linkedin.com/in/john-maltese/","campus":"NYC","cohort":"26","jobTitle":"Senior Software Engineer/Web App Architect","industry":"Software / Tech","cities":["Durham","Atlanta","Indianapolis","Jersey City"]},{"company":"Courted","name":"Sett Hein","email":"settnaing199@gmail.com","linkedIn":"https://www.linkedin.com/in/sett-hein/","campus":"FTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Minneapolis"]},{"company":"Cox Automotive","name":"Tarik Mokhtech","email":"tarik.mokhtech@gmail.com","linkedIn":"https://www.linkedin.com/in/tarik-mokhtech/","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Software Engineer II","industry":"Automotive","cities":["Louisville","Denver"]},{"company":"Cox Automotive","name":"Tarik Mokhtech","email":"tarik.mokhtech@gmail.com","linkedIn":"https://www.linkedin.com/in/tarik-mokhtech/","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Software Engineer II","industry":"Automotive","cities":["Columbus","Chicago","Cincinnati","St. Petersburg"]},{"company":"Credera","name":"Nisa Lintakoon","email":"nisa.lintakoon@gmail.com","linkedIn":"https://www.linkedin.com/in/nisalintakoon","campus":"FTRI","cohort":"1","jobTitle":"Technology Solutions Consultant","industry":"Consulting","cities":["Riverside","Portland"]},{"company":"Crescita","name":"Gordon Campbell","email":"gordonspencer.c@gmail.com","linkedIn":"","campus":"NYC","cohort":"14","jobTitle":"Software Engineer","industry":"VC","cities":["Jacksonville","Glendale","Columbus"]},{"company":"Cricket Health","name":"Lina Shin","email":"rxlina01@gmail.com","linkedIn":"https://www.linkedin.com/in/rxlina/","campus":"LA","cohort":"45","jobTitle":"Fullstack Software Engineer","industry":"Healthcare","cities":["North Las Vegas","Seattle","Los Angeles"]},{"company":"Crisis Text Line","name":"Chan Choi","email":"chanychoi93@gmail.com","linkedIn":"https://www.linkedin.com/in/chan-choi/","campus":"NYC","cohort":"21","jobTitle":"Software Engineer","industry":"Mental Health Services","cities":["Jacksonville"]},{"company":"Crocs","name":"Mark Charles Smith","email":"markcharlessmith@gmail.com","linkedIn":"https://www.linkedin.com/in/mark-charles-smith/","campus":"NYC / ECRI","cohort":"31","jobTitle":"Senior React Developer","industry":"Consumer Goods: Fashion","cities":["Paris","Tampa","Omaha","Fort Wayne"]},{"company":"Crossbeam","name":"Harrison Cramer","email":"Harrisoncramer@gmail.com","linkedIn":"https://www.linkedin.com/in/harrison-cramer","campus":"NYC","cohort":"27","jobTitle":"Software engineer","industry":"SaaS","cities":["Anchorage"]},{"company":"Crossbeam","name":"Aryeh Kobrinsky","email":"shmaryeh@gmail.com","linkedIn":"https://www.linkedin.com/in/aryehkobrinsky/","campus":"NYC","cohort":"20","jobTitle":"Software Engineer","industry":"Data Analytics","cities":["Aurora","Corpus Christi"]},{"company":"Crossover Health","name":"Heather Friedman","email":"hfried25@gmail.com","linkedIn":"https://www.linkedin.com/in/hgfriedman/","campus":"NYC","cohort":"20","jobTitle":"Senior Software Engineer","industry":"Health","cities":["Scottsdale","Raleigh"]},{"company":"Crossover Health","name":"Taylor Riley Du","email":"taylor.r.du@gmail.com","linkedIn":"https://www.linkedin.com/in/taylordu/","campus":"NYC","cohort":"20","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Seattle","Scottsdale","Stockton"]},{"company":"Crowdstrike","name":"yi bo (eddie) wang","email":"eddiewang12345@gmail.com","linkedIn":"https://www.linkedin.com/in/eddie-wang2/","campus":"NYC","cohort":"26","jobTitle":"Software Developer","industry":"Cybersecurity","cities":["Phoenix","El Paso","Detroit","Virginia Beach"]},{"company":"Crowley","name":"Alina Gasperino","email":"alina.gasperino@gmail.com","linkedIn":"https://www.linkedin.com/in/alinagasperino/","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Software Engineer III","industry":"Other","cities":["El Paso","Madison","Kansas City"]},{"company":"Crown Sterling","name":"Shirin Davis","email":"Shirinlittle94@gmail.com","linkedIn":"","campus":"LA","cohort":"39","jobTitle":"Software engineer","industry":"Cryptography","cities":["Las Vegas","Irving","Houston","San Antonio"]},{"company":"CrunchyBananas","name":"Corey Morrison","email":"corey.neil.morrison@gmail.com","linkedIn":"https://www.linkedin.com/in/corey-morrison","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Software Engineer","industry":"Consulting","cities":["Mesa","Virginia Beach","Wichita"]},{"company":"Crunchyroll","name":"Brit Lim","email":"britsta92@gmail.com","linkedIn":"https://www.linkedin.com/in/brit-lim/","campus":"FTRI","cohort":"5","jobTitle":"Full Stack Software Engineer","industry":"Entertainment","cities":["Philadelphia","Lubbock","Portland","Berlin"]},{"company":"CSI Interfusion","name":"Snow Bai","email":"xueapp@gmail.com","linkedIn":"https://www.linkedin.com/in/xuebaiprofile/","campus":"LA / WCRI","cohort":"55","jobTitle":"Fullstack Engineer","industry":"Software / Tech","cities":["Fresno","Stockton","Denver"]},{"company":"Culture Biosciences","name":"Savitri Beaver","email":"savitribeaver@gmail.com","linkedIn":"https://www.linkedin.com/in/savitribeaver","campus":"FTRI","cohort":"3","jobTitle":"Software Engineer I","industry":"Biotech","cities":["Berlin","Philadelphia"]},{"company":"Curia.ai","name":"Young Min Lee","email":"youngmineeh@gmail.com","linkedIn":"https://www.linkedin.com/in/youngminlee-/","campus":"LA","cohort":"48","jobTitle":"Senior Software Engineer","industry":"Healthcare, AI","cities":["Bakersfield","Saint Paul","Toronto","Jacksonville"]},{"company":"Currency","name":"Jason Wong","email":"jwaosnogn@gmail.com","linkedIn":"https://www.linkedin.com/in/jwong1995/","campus":"LA","cohort":"25","jobTitle":"Full Stack Developer","industry":"","cities":["Tokyo"]},{"company":"Cutover","name":"Paul Rhee","email":"youjun27@gmail.com","linkedIn":"https://www.linkedin.com/in/prheee","campus":"NYC","cohort":"13","jobTitle":"Software Engineer","industry":"Fintech","cities":["Plano","Denver","Chula Vista"]},{"company":"CVS","name":"Mario Eldin","email":"marioeldin@gmail.com","linkedIn":"https://www.linkedin.com/in/marioeldin/","campus":"LA","cohort":"40","jobTitle":"Software Engineer","industry":"Health/Insurance","cities":["Reno"]},{"company":"CVS","name":"Vinh Chau","email":"vchau511@gmail.com","linkedIn":"https://www.linkedin.com/in/vinh-chau/","campus":"NYC","cohort":"16","jobTitle":"Software Engineer","industry":"Pharmacy","cities":["El Paso","Lincoln"]},{"company":"CVS Health","name":"Connor Bovino","email":"connor.bovino@gmail.com","linkedIn":"https://www.linkedin.com/in/connor-bovino/","campus":"NYC","cohort":"16","jobTitle":"Fullstack Node.js Developer (Software Engineer)","industry":"Health","cities":["Beijing"]},{"company":"CVS Health","name":"Satyam sheth","email":"Snsheth55@gmail.com","linkedIn":"https://www.linkedin.com/in/satyamsheth55/","campus":"NYC","cohort":"5","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Minneapolis"]},{"company":"CVS Health","name":"Windu Sayles","email":"Windu.Sayles@gmail.com","linkedIn":"https://www.linkedin.com/in/windusayles/","campus":"LA","cohort":"40","jobTitle":"Full Stack Node Developer","industry":"Health","cities":["Toledo","Chandler","Cincinnati"]},{"company":"CVS Health/ Aetna","name":"Miklos Kertesz","email":"mikloslkertesz@gmail.com","linkedIn":"https://www.linkedin.com/in/mikl%C3%B3s-kert%C3%A9sz/","campus":"PTRI","cohort":"3","jobTitle":"Data Engineer - Web UI Engineer","industry":"health","cities":["North Las Vegas","Wichita"]},{"company":"Cyber Popup","name":"Stephen Fitzsimmons","email":"smf0211@gmail.com","linkedIn":"https://www.linkedin.com/in/stephenfitzsimmons","campus":"NYC / ECRI","cohort":"36","jobTitle":"Lead Full Stack Engineer","industry":"Software / Tech","cities":["Atlanta","Lincoln","San Francisco"]},{"company":"Cybereason","name":"Phoebe Ermert","email":"phoebeermert@gmail.com","linkedIn":"https://www.linkedin.com/in/phoebe-ermert/","campus":"NYC / ECRI","cohort":"36","jobTitle":"Full Stack Engineer","industry":"Other","cities":["Laredo","Riverside","Omaha"]},{"company":"Cyborg, Inc","name":"Jim Armbruster","email":"JMArmbruster@gmail.com","linkedIn":"https://www.linkedin.com/in/jim-armbruster/","campus":"NYC","cohort":"19","jobTitle":"Full-Stack Engineer","industry":"Computer Software","cities":["Dallas","Glendale","Chesapeake"]},{"company":"Cyderes","name":"Giovanni Flores-Lovo","email":"giovanniflores.l@gmail.com","linkedIn":"https://www.linkedin.com/in/giovanni-flores-lovo-11a288232/","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Engineer","industry":"Security","cities":["Colorado Springs","Orlando"]},{"company":"Dandy","name":"Aram Krakirian","email":"aramkrakirian@gmail.com","linkedIn":"https://www.linkedin.com/in/aram-krakirian/","campus":"LA","cohort":"47","jobTitle":"Software Engineer","industry":"Other","cities":["Austin","Raleigh","Glendale","New York"]},{"company":"Data Intelligence","name":"Jimmy Mei","email":"Jimmy27mei@gmail.com","linkedIn":"https://www.linkedin.com/in/jimmymei/","campus":"NYC","cohort":"16","jobTitle":"Full Stack Engineer","industry":"Tech consultant","cities":["Cleveland","London","St. Petersburg"]},{"company":"Data Surge LLC","name":"Hang Xu","email":"hxu009@gmail.com","linkedIn":"https://www.linkedin.com/in/hangxu09/","campus":"NYC","cohort":"18","jobTitle":"Data Engineer","industry":"Data solutions","cities":["Irving","Aurora","Toronto","Philadelphia"]},{"company":"Databook","name":"Julie Wu","email":"scorp_only@yahoo.com","linkedIn":"https://www.linkedin.com/in/yu-ting-w/","campus":"LA","cohort":"40","jobTitle":"Sr Software Engineer","industry":"Sales","cities":["Fort Worth","Lincoln","Beijing"]},{"company":"Datacoral","name":"Jae Park","email":"woojae.jay.park@gmail.com","linkedIn":"","campus":"NYC","cohort":"8","jobTitle":"Software Engineer","industry":"Fashion/E-Commerce","cities":["Fort Wayne"]},{"company":"Datametrics","name":"Luis Navarro","email":"pozhiin@hotmail.com","linkedIn":"https://www.linkedin.com/in/luis-e-navarro/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Frontend Developer","industry":"Software / Tech","cities":["Honolulu"]},{"company":"DAZN","name":"Leonoor Rinke de Wit","email":"lrinkedewit@gmail.com","linkedIn":"https://www.linkedin.com/in/leonoorrinkedewit/","campus":"NYC","cohort":"31","jobTitle":"Backend Software Engineer","industry":"Media","cities":["Irving"]},{"company":"DealPath","name":"Huy Bui","email":"huybui.sj@gmail.com","linkedIn":"https://www.linkedin.com/in/huyqbui/","campus":"NYC","cohort":"30","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Philadelphia"]},{"company":"Decent Labs","name":"Julia Collins","email":"Julia.col@protonmail.com","linkedIn":"https://www.linkedin.com/in/julia-col","campus":"PTRI","cohort":"2","jobTitle":"Full Stack Web3 Engineer","industry":"Crypto","cities":["Houston","Atlanta","Garland"]},{"company":"Deloitte","name":"Justin Buckner","email":"jwbprofessional@gmail.com","linkedIn":"https://www.linkedin.com/in/jbuild/","campus":"FTRI","cohort":"3","jobTitle":"Consultant - front end developer","industry":"Consulting","cities":["Toronto"]},{"company":"Delta Air Lines","name":"Joal Kim","email":"joalkims@gmail.com","linkedIn":"https://www.linkedin.com/in/joal-kim","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Airline","cities":["Detroit","Gilbert","Tulsa","Riverside"]},{"company":"DeltaMath","name":"Hannah McDowell","email":"hannah.mcdowell1@gmail.com","linkedIn":"https://www.linkedin.com/in/hannah-lisbeth-mcdowell/","campus":"LA / WCRI","cohort":"52","jobTitle":"Software Engineer","industry":"Other","cities":["Stockton"]},{"company":"DeMark Analytics LLC","name":"SEUNGHO BAEK","email":"shbaek115@gmail.com","linkedIn":"","campus":"LA","cohort":"37","jobTitle":"Software Engineer","industry":"Software & Tech services","cities":["Louisville"]},{"company":"Dematic","name":"Liang Wen (Rocky) Lin","email":"liangwen511@gmail.com","linkedIn":"https://www.linkedin.com/in/rocky-lin/","campus":"NYC","cohort":"14","jobTitle":"Senior Software Engineer","industry":"Manufacturing and Distribution","cities":["Denver","Jacksonville","London"]},{"company":"Dendi Software","name":"Ozair Ghulam","email":"Ozairghulam4@gmail.com","linkedIn":"https://www.linkedin.com/in/ozair-ghulam","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Forward deployed software engineer","industry":"Healthcare","cities":["Tulsa","London","Anchorage"]},{"company":"Denizen","name":"Greg Domingue","email":"Greg.domingue1@gmail.com","linkedIn":"https://www.linkedin.com/in/greg-domingue","campus":"LA","cohort":"23","jobTitle":"Full Stack Software Engineer","industry":"International Banking","cities":["Irving","Aurora","Madison"]},{"company":"Density","name":"Timothy Weidinger","email":"timothy.weidinger@gmail.com","linkedIn":"https://www.linkedin.com/in/timweidinger/","campus":"NYC / ECRI","cohort":"41","jobTitle":"Senior Full Stack Software Engineer","industry":"Data/Analytics/Cloud","cities":["Greensboro","Santa Ana","St. Louis"]},{"company":"Derivco Sports","name":"Denny Temple","email":"denny.temple@gmail.com","linkedIn":"https://www.linkedin.com/in/dentemple/","campus":"NYC","cohort":"6","jobTitle":"Software Engineer","industry":"","cities":["Toronto","Memphis","San Diego","Anchorage"]},{"company":"Destination Pet","name":"Nicholas Jordan Brush","email":"njbrush@gmail.com","linkedIn":"https://www.linkedin.com/in/nicholas-j-brush?trk=people-guest_people_search-card","campus":"LA","cohort":"42","jobTitle":"Software Engineer","industry":"Pet healthcare","cities":["Oakland","Omaha","Winston-Salem","Tokyo"]},{"company":"DexCare","name":"Nhan Ly","email":"nhansense1@gmail.com","linkedIn":"https://www.linkedin.com/in/nhanly/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Healthtech","cities":["San Diego","Sacramento","Las Vegas","Bakersfield"]},{"company":"Diamond Web Services","name":"Ben Gummelt","email":"Camaromelt@gmail.com","linkedIn":"https://www.linkedin.com/in/benjamingummelt","campus":"LA","cohort":"20","jobTitle":"Full stack software engineer","industry":"","cities":["San Francisco","Henderson","Cleveland"]},{"company":"Diamond Web Services","name":"Gregory Palasciano","email":"greg.palasciano@gmail.com","linkedIn":"https://www.linkedin.com/in/gregory-palasciano/","campus":"LA","cohort":"36","jobTitle":"Fullstack Engineer","industry":"Entertainment/Consulting","cities":["Toledo","Chandler"]},{"company":"Diamond Web Services","name":"Jonathan Perera","email":"Jon.p@codesmith.io","linkedIn":"https://www.linkedin.com/in/japerera/","campus":"LA","cohort":"22","jobTitle":"Developer","industry":"","cities":["Colorado Springs"]},{"company":"Diana Health","name":"Jackson Dahl","email":"jacksondahl27@gmail.com","linkedIn":"https://www.linkedin.com/in/jackson-dahl/","campus":"NYOI","cohort":"4","jobTitle":"Full Stack Software Engineer","industry":"Healthtech/Healthcare","cities":["Pittsburgh","Anchorage","Plano"]},{"company":"Dick's Sporting Goods","name":"Brian Hon","email":"brianwhon@gmail.com","linkedIn":"https://www.linkedin.com/in/brianwhon/","campus":"NYC","cohort":"8","jobTitle":"Software Engineer","industry":"Retail","cities":["Madison","Lexington"]},{"company":"DigiCert","name":"James M Espy II","email":"jespy2@gmail.com","linkedIn":"https://www.linkedin.com/in/jamesespy/","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"digital certificates / security","cities":["Sรฃo Paulo"]},{"company":"Digilock","name":"Aaron Yang","email":"aaronyang024@gmail.com","linkedIn":"https://www.linkedin.com/in/aaronyang24/","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Electronic Manufacturing","cities":["Sacramento","Anchorage"]},{"company":"Digital Position","name":"Joe Beger","email":"jtbeger@gmail.com","linkedIn":"https://www.linkedin.com/in/jtbeger/","campus":"NYC","cohort":"22","jobTitle":"Developer","industry":"SEO","cities":["Nashville","Mumbai"]},{"company":"DigitalOcean","name":"Natalia Vargas-Caba","email":"nvargascaba@gmail.com","linkedIn":"https://www.linkedin.com/in/nataliavargascaba","campus":"NYC","cohort":"17","jobTitle":"Technical Editor","industry":"Cloud service","cities":["Tulsa","Colorado Springs","Tampa","Oakland"]},{"company":"Discord","name":"Jacob Richards","email":"jacob.richards33@gmail.com","linkedIn":"https://www.linkedin.com/in/palgorhythm/","campus":"LA","cohort":"29","jobTitle":"Senior Software Engineer","industry":"Tech","cities":["Glendale","New Orleans","Atlanta"]},{"company":"Discovery","name":"adele calvo","email":"adelecalvo@gmail.com","linkedIn":"https://www.linkedin.com/in/adelecalvo/","campus":"NYC","cohort":"9","jobTitle":"Software Engineer I, UI,","industry":"Blockchain","cities":["Glendale","Minneapolis"]},{"company":"Discovery","name":"Sarah t Renshaw","email":"strenshaw@gmail.com","linkedIn":"https://linkedin.com/in/strenshaw/","campus":"NYC","cohort":"2","jobTitle":"Software Engineer I","industry":"Music","cities":["San Diego","Chicago","Glendale"]},{"company":"Disney Streaming","name":"Daniel Palumbo","email":"Drpalumbo17@gmail.com","linkedIn":"https://www.linkedin.com/in/daniel-palumbo-735715137","campus":"NYC / ECRI","cohort":"32","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Reno"]},{"company":"Disney Streaming","name":"Nat Heller","email":"nat.w.heller@gmail.com","linkedIn":"https://www.linkedin.com/in/natwheller/","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Software Engineer","industry":"Entertainment","cities":["Colorado Springs","Scottsdale","Chandler","Durham"]},{"company":"Disney Streaming","name":"Frank Ma","email":"yurenfrankma@gmail.com","linkedIn":"https://www.linkedin.com/in/frankma2","campus":"LA","cohort":"25","jobTitle":"Sr Frontend and Fullstack Engineer","industry":"Entertainment","cities":["Plano","San Diego","Tulsa","Dallas"]},{"company":"Disney Streaming Services","name":"Casey Escovedo","email":"caseyjescovedo@gmail.com","linkedIn":"https://www.linkedin.com/in/caseyescovedo/","campus":"LA","cohort":"38","jobTitle":"Associate Software Engineer","industry":"Entertainment","cities":["Greensboro"]},{"company":"Disney Streaming Services","name":"Mark Marcelo","email":"markmarcelo@gmail.com","linkedIn":"https://www.linkedin.com/in/markmarcelo/","campus":"LA","cohort":"12","jobTitle":"Lead Software Engineer","industry":"Entertainment","cities":["Anchorage"]},{"company":"Disney Streaming Services","name":"Rachel Farley","email":"rachyl.farley@gmail.com","linkedIn":"https://www.linkedin.com/in/rachel-farley/","campus":"NYC","cohort":"24","jobTitle":"Associate Software Engineer","industry":"Entertainment","cities":["Oakland"]},{"company":"Dispense","name":"Kerrianne Crawford","email":"kerriannercrawford@gmail.com","linkedIn":"https://www.linkedin.com/in/kerriannercrawford/","campus":"NYC","cohort":"25","jobTitle":"Senior Software Engineer","industry":"Software / Tech","cities":["Pittsburgh","Virginia Beach","Lubbock"]},{"company":"Distributed Machines, Inc.","name":"William LeGate","email":"codesmith@legate.me","linkedIn":"https://www.linkedin.com/in/william-legate/","campus":"LA","cohort":"21","jobTitle":"CEO, Prediqt","industry":"Medical","cities":["Colorado Springs","Garland"]},{"company":"DistroKid","name":"Jackson Tong","email":"jacksonktong@gmail.com","linkedIn":"https://www.linkedin.com/in/jacksonktong/","campus":"LA","cohort":"48","jobTitle":"Software Engineer","industry":"Other","cities":["Cleveland","Seattle","St. Louis","Saint Paul"]},{"company":"DMC Inc","name":"Shane Yao","email":"Shanexinyao@gmail.com","linkedIn":"https://www.linkedin.com/in/shanexinyao/","campus":"NYC","cohort":"3","jobTitle":"Senior Robotics Engineer","industry":"Crypto Fintech","cities":["Long Beach","Houston","Mesa","Toledo"]},{"company":"Dollar Shave Club","name":"Vincent Nguyen","email":"gvincemail@gmail.com","linkedIn":"https://www.linkedin.com/in/vnguyenucla/","campus":"LA","cohort":"38","jobTitle":"Software Engineer(Contract)","industry":"Products","cities":["Miami","Anaheim"]},{"company":"Dollar Shave Club","name":"Ryan Trontz","email":"rtrontz@gmail.com","linkedIn":"https://www.linkedin.com/in/trontz/","campus":"LA","cohort":"22","jobTitle":"Software Engineer, Backend","industry":"","cities":["Toledo","Winston-Salem","Portland","Riverside"]},{"company":"Domio","name":"Neftali Dominguez","email":"n.l.dominguez23@gmail.com","linkedIn":"https://www.linkedin.com/in/neftalildominguez/","campus":"LA","cohort":"30","jobTitle":"Back end engineer","industry":"apartment hotels","cities":["Detroit","Boston","Fort Wayne","San Francisco"]},{"company":"Doorcast","name":"James Bui","email":"Jamesmdang.bui@gmail.com","linkedIn":"https://www.linkedin.com/in/jamesminhbui/","campus":"LA / WCRI","cohort":"51","jobTitle":"Senior Fullstack Engineer","industry":"Real Estate","cities":["Bakersfield"]},{"company":"Doorkee","name":"Jarred Jack-Harewood","email":"jackhajb@gmail.com","linkedIn":"https://www.linkedin.com/in/jarred-jack-harewood/","campus":"NYC","cohort":"11","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Las Vegas","Jersey City","Kansas City","Houston"]},{"company":"Dottid","name":"Brian Grosso","email":"bgro63@gmail.com","linkedIn":"https://www.linkedin.com/in/newarkBG/","campus":"NYC","cohort":"27","jobTitle":"Senior Software Engineer","industry":"Fintech - Real Estate","cities":["Chandler","Saint Paul","Los Angeles","Boston"]},{"company":"Dr Squatch","name":"Ben Cauffman","email":"Benjamincauffman@gmail.com","linkedIn":"https://www.linkedin.com/in/benjamin-cauffman","campus":"NYC / ECRI","cohort":"34","jobTitle":"Full Stack Engineer","industry":"Retail","cities":["San Jose","Indianapolis"]},{"company":"DraftKings","name":"Jonnie Oak","email":"jonathan.oak28@gmail.com","linkedIn":"https://www.linkedin.com/in/oakj28/","campus":"LA","cohort":"45","jobTitle":"Software Engineer","industry":"Fantasy Sports","cities":["Los Angeles","Cincinnati"]},{"company":"Dray Alliance","name":"Hayden Fithyan","email":"hayden@fithyan.com","linkedIn":"https://www.linkedin.com/in/fithyan/","campus":"LA","cohort":"23","jobTitle":"Software Developer II","industry":"","cities":["Boston"]},{"company":"Dray Alliance","name":"Joshua Wright","email":"jwrightbluj@gmail.com","linkedIn":"https://www.linkedin.com/in/joshua-w-86758a121/","campus":"LA","cohort":"23","jobTitle":"Software Engineer II","industry":"","cities":["Kansas City","Riverside","Boston","Chicago"]},{"company":"Dreambox Learning","name":"Pei-Yun Chu","email":"pchu2018@gmail.com","linkedIn":"https://www.linkedin.com/in/pei-yun-chu/","campus":"PTRI","cohort":"8","jobTitle":"Software Development Engineer - Frontend","industry":"Software / Tech","cities":["St. Louis","Mexico City","Buffalo"]},{"company":"Driven Deliveries","name":"Adam Stover","email":"adam.jacob.stover@gmail.com","linkedIn":"","campus":"LA","cohort":"31","jobTitle":"Software Engineer","industry":"Supply Chain & Logistics","cities":["San Diego"]},{"company":"Drizly","name":"Diego Vazquez","email":"diegovazquezny@gmail.com","linkedIn":"https://www.linkedin.com/in/diegovazquezny/","campus":"LA","cohort":"21","jobTitle":"Jr. Software Engineer","industry":"Food & Beverages","cities":["Las Vegas"]},{"company":"Dropbox","name":"Benjamin Kwak","email":"benjamin.h.kwak@gmail.com","linkedIn":"https://www.linkedin.com/in/ben-kwak/","campus":"LA","cohort":"37","jobTitle":"Software Engineer, Product","industry":"Techonology Services","cities":["Aurora"]},{"company":"Dropbox","name":"Myounghan Chae","email":"chaekmh@gmail.com","linkedIn":"https://www.linkedin.com/in/chaekmh/","campus":"NYC","cohort":"24","jobTitle":"Software Engineer","industry":"Cloudtech","cities":["Houston","San Antonio","Kansas City"]},{"company":"Dropbox","name":"Miguel Michel","email":"migmic93@gmail.com","linkedIn":"https://www.linkedin.com/in/miguel-michel/","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Cloud Storage","cities":["Colorado Springs","Saint Paul"]},{"company":"Dropps","name":"Sonny Nguyen","email":"sonnynguyen163@gmail.com","linkedIn":"https://www.linkedin.com/in/sn163/","campus":"LA","cohort":"46","jobTitle":"Software Developer","industry":"Sustainable E-Commerce","cities":["Milwaukee"]},{"company":"Dstillery","name":"Chai Lee","email":"imchai@gmail.com","linkedIn":"https://www.linkedin.com/in/chai-lee-5a064649/","campus":"NYC","cohort":"21","jobTitle":"Software Engineer","industry":"Adtech","cities":["New York"]},{"company":"Dun & Bradstreet","name":"Jack Hall","email":"jackvincenthall@gmail.com","linkedIn":"https://linkedin.com/in/jackvhall","campus":"PTRI","cohort":"4","jobTitle":"Senior Software Engineer","industry":"Fintech, Data Analytics","cities":["Baltimore","Indianapolis"]},{"company":"Dun & Bradstreet","name":"Scott Rosen","email":"scott.rosen14@gmail.com","linkedIn":"https://www.linkedin.com/in/scott-rosen/","campus":"LA","cohort":"17","jobTitle":"Software Engineer","industry":"","cities":["Dallas","New Orleans","Bakersfield","Beijing"]},{"company":"dv01","name":"Michelle Herrera","email":"mesherrera@aol.com","linkedIn":"https://www.linkedin.com/in/mherreradev/","campus":"NYC","cohort":"13","jobTitle":"Senior Fullstack Engineer I","industry":"Fintech","cities":["St. Petersburg"]},{"company":"Dynamic benchmarking","name":"andres jaramillo","email":"andresj89@live.com","linkedIn":"https://www.linkedin.com/in/andresjaramillo210/","campus":"NYC / ECRI","cohort":"36","jobTitle":"Software engineer","industry":"Software / Tech","cities":["Henderson","Wichita"]},{"company":"Earnest","name":"Kai Rilliet","email":"kairilliet@gmail.com","linkedIn":"https://www.linkedin.com/in/kairilliet/","campus":"LA / WCRI","cohort":"45","jobTitle":"Full Stack Software Engineer","industry":"Fintech","cities":["New Orleans","Albuquerque"]},{"company":"eBay","name":"Ryan Kim","email":"ryansukwookim@gmail.com","linkedIn":"https://www.linkedin.com/in/tkdryan/","campus":"LA","cohort":"33","jobTitle":"Software Engineer","industry":"ECcmmerce","cities":["Oakland","Sรฃo Paulo"]},{"company":"EBSCO","name":"Sankari Ayyaluru","email":"sankariayyaluru@gmail","linkedIn":"https://www.linkedin.com/in/sankari-ayyaluru/","campus":"LA / WCRI","cohort":"48","jobTitle":"Software Engineer","industry":"Other","cities":["San Diego"]},{"company":"Econify","name":"Jordan Kelly","email":"Jordan.w.kelly@gmail.com","linkedIn":"https://www.linkedin.com/in/jordan-k-340257140/","campus":"NYC","cohort":"17","jobTitle":"Software Engineer","industry":"Consulting","cities":["Detroit"]},{"company":"Econify","name":"Jovan Kelly","email":"fakeEmail2@fakeEmail.com","linkedIn":"https://www.linkedin.com/in/jovankelly","campus":"NYC","cohort":"10","jobTitle":"Software developer","industry":"Media Consulting","cities":["Saint Paul","Berlin"]},{"company":"Edify Labs","name":"Scott McInnis","email":"scottalyst@gmail.com","linkedIn":"https://www.linkedin.com/in/scott-mcinnis/","campus":"LA","cohort":"32","jobTitle":"Nodejs Developer","industry":"Customer Service","cities":["Raleigh","Toledo","Baltimore"]},{"company":"Edify Labs","name":"Tony Lei","email":"tony.lei003@gmail.com","linkedIn":"https://www.linkedin.com/in/tony-lei/","campus":"LA / WCRI","cohort":"50","jobTitle":"NodeJS Developer","industry":"Software / Tech","cities":["Stockton","Philadelphia"]},{"company":"EDUrain","name":"Jacob Jurado","email":"jakejurado@gmail.com","linkedIn":"https://www.linkedin.com/in/jakejurado","campus":"LA / WCRI","cohort":"52","jobTitle":"chief technology officer","industry":"Education/Edtech","cities":["Lincoln","Fort Worth","Scottsdale"]},{"company":"Egen","name":"Jonathan Escamilla","email":"jonathanescamilla1@gmail.com","linkedIn":"https://www.linkedin.com/in/jon-escamilla/","campus":"LA","cohort":"36","jobTitle":"Associate Software Engineer","industry":"Tech (Builds solutions for companies - Typically Web Dev)","cities":["Albuquerque"]},{"company":"Elder Research","name":"Ben Huang","email":"Byhuang4100@gmail.com","linkedIn":"byhuang4100","campus":"FTRI / CTRI","cohort":"14","jobTitle":"Data Engineer","industry":"Artificial Intelligence","cities":["Minneapolis"]},{"company":"Elder Research Inc","name":"Nick Reardon","email":"nickjreardon@gmail.com","linkedIn":"https://www.linkedin.com/in/nickjreardon/","campus":"PTRI","cohort":"4","jobTitle":"Software Engineer","industry":"Consulting","cities":["Laredo","Lincoln","Cincinnati","Aurora"]},{"company":"Elder Tree","name":"Stormi Hashimoto","email":"stormikhashimoto@gmail.com","linkedIn":"https://www.linkedin.com/in/stormikph/","campus":"NYC","cohort":"21","jobTitle":"Software Engineer","industry":"NA","cities":["Toledo","Greensboro","Buffalo","Norfolk"]},{"company":"eLink Design","name":"Tristan Krause","email":"yukiokrause@gmail.com","linkedIn":"https://www.linkedin.com/in/krausetristan/","campus":"FTRI / CTRI","cohort":"17","jobTitle":"Web / Mobile Developer","industry":"Design","cities":["Pittsburgh","Colorado Springs"]},{"company":"Elk Capital Markets","name":"Manuel Castro","email":"manuel.a.castro1992@gmail.com","linkedIn":"https://www.linkedin.com/in/manuel-castro-42466273","campus":"NYC","cohort":"5","jobTitle":"Software Engineer","industry":"Finance","cities":["Albuquerque","El Paso","Fort Wayne"]},{"company":"Ellie Mae","name":"Karen Pinilla","email":"pinillakaren11@gmail.com","linkedIn":"https://www.linkedin.com/in/karen-pinilla/","campus":"LA","cohort":"28","jobTitle":"Software Engineer I","industry":"Computer Software","cities":["Washington"]},{"company":"eMoney","name":"Kenneth Hui","email":"kennethhui121@gmail.com","linkedIn":"https://www.linkedin.com/in/kenneth-hui/","campus":"LA","cohort":"45","jobTitle":"Software Engineer","industry":"Fintech","cities":["Durham","Honolulu","Glendale","Sรฃo Paulo"]},{"company":"Empire Flippers","name":"Rob Wise","email":"robertwise1@gmail.com","linkedIn":"https://www.linkedin.com/in/robertwise/","campus":"PTRI","cohort":"Beta","jobTitle":"Frontend Engineer","industry":"eCommerce","cities":["St. Louis","Plano","Saint Paul","Sacramento"]},{"company":"Empowered Buildings","name":"Kevin Dooley","email":"kjdooley1@gmail.com","linkedIn":"https://www.linkedin.com/in/kjdooley1/","campus":"NYOI","cohort":"1","jobTitle":"Full-Stack Software Developer","industry":"Real Estate","cities":["Henderson","Santa Ana","Detroit"]},{"company":"Enlighten","name":"Jonathon Garber","email":"jgarber2675@gmail.com","linkedIn":"https://www.linkedin.com/in/jgarber2675/","campus":"NYC / ECRI","cohort":"34","jobTitle":"Front End Software Engineer","industry":"Security","cities":["Arlington"]},{"company":"Envoy","name":"Graham Pierce","email":"grahampiercenyc@gmail.com","linkedIn":"https://www.linkedin.com/in/graham-a-pierce/","campus":"FTRI","cohort":"3","jobTitle":"Software Engineer","industry":"Workplace tech","cities":["Long Beach","New Orleans"]},{"company":"Enzo Digital","name":"Johnny Bryan","email":"johnnybryan21@gmail.com","linkedIn":"https://www.linkedin.com/in/johnnybryan/","campus":"NYC","cohort":"29","jobTitle":"Backend/API Engineer","industry":"Fintech","cities":["San Francisco","Chandler","Washington","Lubbock"]},{"company":"EolianVR","name":"Henry Halse","email":"henryhalse@gmail.com","linkedIn":"https://www.linkedin.com/in/henryhalse/","campus":"PTRI","cohort":"8","jobTitle":"Backend Engineer","industry":"Other","cities":["Kansas City","Charlotte"]},{"company":"Epic Games","name":"Nahuel Arjona Tennerini","email":"nahuel.arjona.93@gmail.com","linkedIn":"https://www.linkedin.com/in/nahuelarjonadev/","campus":"LA","cohort":"29","jobTitle":"Game Systems Programmer","industry":"Video Games","cities":["Irvine","Durham","Irving","Gilbert"]},{"company":"Epic Games (Fortnite)","name":"Taylor T Morgan","email":"TaylorMorganTTM@gmail.com","linkedIn":"https://www.linkedin.com/in/taylormor77la/","campus":"LA","cohort":"39","jobTitle":"Software Developer","industry":"Gaming","cities":["Henderson"]},{"company":"Eqengineered","name":"William Ramirez","email":"willramirez630@gmail.com","linkedIn":"https://www.linkedin.com/in/willramirez528/","campus":"LA","cohort":"43","jobTitle":"Senior Technical Consultant","industry":"Software Consulting Firm","cities":["Anchorage","Chicago","London","Corpus Christi"]},{"company":"Erdos Miller","name":"Michael Collier Grant","email":"DragonZSG@aol.com","linkedIn":"https://www.linkedin.com/in/michaelcolliergrant/","campus":"PTRI","cohort":"7","jobTitle":"Firmware Developer","industry":"Other","cities":["Boston","Anchorage","Minneapolis"]},{"company":"Ernst & Young","name":"Eduardo Maรญllo Conesa","email":"eduardomaillo@gmail.com","linkedIn":"https://www.linkedin.com/in/eduardomaillo/","campus":"NYC","cohort":"2","jobTitle":"Senior Software Engineer","industry":"","cities":["Tokyo","Indianapolis","Durham"]},{"company":"Esri","name":"Gilbert Ramirez","email":"contemporarygil@gmail.com","linkedIn":"https://www.linkedin.com/in/gillramirez/","campus":"LA","cohort":"29","jobTitle":"Software Development Engineer","industry":"GIS","cities":["Tampa","Henderson","Memphis","Columbus"]},{"company":"ESRI","name":"Evan Hilton","email":"ehilton1537@gmail.com","linkedIn":"https://www.linkedin.com/in/ehilton1537/","campus":"LA","cohort":"33","jobTitle":"Software Development Engineer","industry":"Geographic Information System","cities":["Buffalo","Gilbert"]},{"company":"Esri","name":"Elena Conn","email":"elenakconn@gmail.com","linkedIn":"https://www.linkedin.com/in/elena-conn/","campus":"LA","cohort":"41","jobTitle":"Software Engineering Intern (end date 10/29/21)","industry":"Geospatial Engineering (GIS)","cities":["New Orleans","Cleveland","Wichita","El Paso"]},{"company":"Ethic","name":"Andrea Li","email":"andrea.li8341@hotmail.com","linkedIn":"https://www.linkedin.com/in/andrea-gli/","campus":"PTRI","cohort":"1","jobTitle":"Frontend Engineer","industry":"Fintech","cities":["Houston","Portland","Henderson","North Las Vegas"]},{"company":"Ethos Life","name":"Alan Lee","email":"lee.alan.c12@gmail.com","linkedIn":"https://www.linkedin.com/in/alanlee12/","campus":"LA","cohort":"35","jobTitle":"Software Engineer, Test","industry":"Insurance","cities":["Henderson"]},{"company":"etsy","name":"alfonso zamarripa","email":"alfonsozam93@gmail.com","linkedIn":"https://www.linkedin.com/in/alfonsozamarripa/","campus":"NYC","cohort":"31","jobTitle":"software engineer","industry":"Retail","cities":["Nashville"]},{"company":"Even","name":"Claudio Santos","email":"claudiohbsantos@gmail.com","linkedIn":"https://www.linkedin.com/in/claudio-santos-5b8134207/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer I","industry":"Fintech","cities":["Mumbai","Baltimore","Jersey City","Cincinnati"]},{"company":"Even Financial","name":"Andy Wong","email":"andywong.ny@gmail.com","linkedIn":"https://www.linkedin.com/in/andywongdev","campus":"NYC","cohort":"13","jobTitle":"Software Engineer","industry":"Fintech","cities":["Durham"]},{"company":"Eventbrite","name":"Ashley Pean","email":"pean.ashley@gmail.com","linkedIn":"https://www.linkedin.com/in/ashley-pean/","campus":"PTRI","cohort":"2","jobTitle":"Software Engineer II","industry":"Entertainment","cities":["Long Beach","Colorado Springs","San Jose"]},{"company":"EventHound","name":"Greg Shamalta","email":"gregshamalta@yahoo.com","linkedIn":"https://www.linkedin.com/in/gregory-shamalta/","campus":"LA","cohort":"23","jobTitle":"Founder","industry":"","cities":["Orlando","San Jose"]},{"company":"everest","name":"Will Hack","email":"will.j.hack@gmail.com","linkedIn":"https://www.linkedin.com/in/willhack/","campus":"NYC","cohort":"20","jobTitle":"Full-Stack Engineer (Sr)","industry":"UX Design","cities":["Irvine","St. Petersburg"]},{"company":"Everest, AI","name":"Jordan Long","email":"jlong4159@gmail.com","linkedIn":"www.linkedin.com/jlongtlw","campus":"NYC / ECRI","cohort":"33","jobTitle":"Software Engineer","industry":"Other","cities":["Sรฃo Paulo","Sacramento"]},{"company":"Everfi","name":"Jacob Ory","email":"jacobtory@yahoo.com","linkedIn":"https://www.linkedin.com/in/jacobory/","campus":"LA","cohort":"30","jobTitle":"Frontend Engineer","industry":"Ed Tech","cities":["Toronto"]},{"company":"Exabeam","name":"Lisa Tian","email":"lisatian8@gmail.com","linkedIn":"https://www.linkedin.com/in/lisatian-/","campus":"LA / WCRI","cohort":"53","jobTitle":"Software Engineer - UI","industry":"Security","cities":["Mexico City","St. Louis","Portland"]},{"company":"Exodus Movement Inc","name":"Lanre Makinde","email":"lanre.developer@gmail.com","linkedIn":"https://www.linkedin.com/in/lanre-mark/","campus":"PTRI","cohort":"Beta","jobTitle":"Sr. Software Engineer","industry":"blockchain/cryptocurrency","cities":["Saint Paul","Bakersfield","San Francisco","Louisville"]},{"company":"Expedia Group","name":"Tang","email":"eytang8@gmail.com","linkedIn":"https://www.linkedin.com/mwlite/in/ttaanngg","campus":"LA","cohort":"27","jobTitle":"Software Development Engineer II","industry":"Travel","cities":["Glendale","Dallas","Laredo"]},{"company":"Extend","name":"Diane Wu","email":"dianewudw@gmail.com","linkedIn":"","campus":"NYC","cohort":"14","jobTitle":"Backend Software Engineer","industry":"Insurance","cities":["North Las Vegas","Aurora","Mumbai","Santa Ana"]},{"company":"Extensis","name":"Daniel Chang","email":"dkchang213@gmail.com","linkedIn":"https://www.linkedin.com/in/daniel-k-chang/","campus":"LA / WCRI","cohort":"56","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["St. Louis","Atlanta"]},{"company":"Facebook","name":"Ben Ray","email":"benray887@gmail.com","linkedIn":"https://www.linkedin.com/in/benray-/","campus":"NYC","cohort":"14","jobTitle":"Rotational Engineer","industry":"Tech","cities":["Indianapolis","Jersey City","Irving"]},{"company":"Facebook","name":"Jason Lee","email":"jason.dongyul.lee@gmail.com","linkedIn":"","campus":"LA","cohort":"42","jobTitle":"Full-Stack Engineer","industry":"Social Media/Networking","cities":["Colorado Springs","Phoenix"]},{"company":"Facebook","name":"Jonathan Calvo Ramirez","email":"jono.calvo@gmail.com","linkedIn":"https://www.linkedin.com/in/jonathan-calvo","campus":"LA","cohort":"42","jobTitle":"Software Engineer","industry":"Social Media","cities":["Cincinnati"]},{"company":"Facebook","name":"Rajeeb Banstola","email":"rajeebanstola@gmail.com","linkedIn":"https://www.linkedin.com/in/rajeebbanstola/","campus":"NYC","cohort":"14","jobTitle":"Fullstack Developer - Contract","industry":"Internet","cities":["Mumbai","Anchorage"]},{"company":"Facebook","name":"Ricardo Cortez","email":"ricardodgers12@gmail.com","linkedIn":"https://www.linkedin.com/in/rcortez88/","campus":"LA","cohort":"44","jobTitle":"Full Stack Software Engineer","industry":"Social Media","cities":["Philadelphia","San Diego"]},{"company":"Facebook","name":"Sean Grace","email":"seanmgrace@gmail.com","linkedIn":"https://www.linkedin.com/in/seanmgrace/","campus":"LA","cohort":"44","jobTitle":"Full Stack Software Engineer","industry":"Tech","cities":["Tokyo","Toledo","Mexico City"]},{"company":"Facebook","name":"Shreshth Srivastava","email":"shreshthsrivastava2@gmail.com","linkedIn":"https://www.linkedin.com/in/shreshth-srivastava/","campus":"NYC","cohort":"21","jobTitle":"Software Engineer","industry":"Social Media","cities":["Lincoln","Cleveland","Honolulu","Chesapeake"]},{"company":"Facebook (Meta)","name":"Eric Wilding","email":"eric.d.wilding@gmail.com","linkedIn":"https://www.linkedin.com/in/eric-wilding/","campus":"PTRI","cohort":"2","jobTitle":"Full Stack Software Engineer","industry":"Social Media","cities":["Orlando"]},{"company":"Facebook (via K2Partners)","name":"Thanh Doan","email":"tdoan35@gmail.com","linkedIn":"https://www.linkedin.com/in/ty-thanh-doan/","campus":"LA","cohort":"42","jobTitle":"Full-Stack Engineer","industry":"Social Media","cities":["Omaha","San Jose"]},{"company":"Facebook via TEK System","name":"Yoko Kawamoto","email":"yokokawamoto@gmail.com","linkedIn":"https://www.linkedin.com/in/yokokawamoto/","campus":"LA","cohort":"42","jobTitle":"Software Engineer","industry":"Social Media","cities":["Austin"]},{"company":"Facebook/K2","name":"Charles Gutwirth","email":"charlesgutwirth@gmail.com","linkedIn":"https://www.linkedin.com/in/charles-gutwirth/","campus":"LA","cohort":"45","jobTitle":"Full Stack Engineer","industry":"Social media","cities":["Anchorage","Chesapeake"]},{"company":"FactSet","name":"Ethan Sclarsky","email":"esclarsky@gmail.com","linkedIn":"https://www.linkedin.com/in/ethan-sclarsky/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Oklahoma City"]},{"company":"Fanatics, Inc","name":"Jonah Eidman","email":"jonah.eidman@gmail.com","linkedIn":"https://www.linkedin.com/in/jonah-eidman/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Software Engineer II","industry":"Entertainment","cities":["Seattle","Kansas City","Gilbert"]},{"company":"Fandango","name":"Ha-Rry Kim","email":"hari9497@gmail.com","linkedIn":"https://www.linkedin.com/in/hkim9497/","campus":"LA","cohort":"24","jobTitle":"Software Engineer I","industry":"","cities":["Norfolk","London","Tulsa","Miami"]},{"company":"Fandango","name":"Ken Lam","email":"heiyeunl@gmail.com","linkedIn":"https://www.linkedin.com/in/heiyeunl/","campus":"LA","cohort":"27","jobTitle":"Front end software engineer","industry":"Entertainment?","cities":["Atlanta"]},{"company":"FanDuel","name":"Alex Haile","email":"ahaile923@gmail.com","linkedIn":"https://www.linkedin.com/in/ahaile923/","campus":"FTRI","cohort":"7","jobTitle":"Software Engineer","industry":"Other","cities":["Atlanta","Greensboro","Lincoln"]},{"company":"Fanfix","name":"Dylan Hensel","email":"dylan@hensel.com","linkedIn":"https://www.linkedin.com/in/dylanhensel/","campus":"LA","cohort":"38","jobTitle":"Senior Software Engineer","industry":"Entertainment","cities":["Milwaukee","Washington","Lubbock","Mumbai"]},{"company":"Fanfix","name":"Jonathan Mavandi","email":"jonathan.mavandi@gmail.com","linkedIn":"https://www.linkedin.com/in/jon-mavandi/","campus":"LA","cohort":"26","jobTitle":"Software Engineer","industry":"Entertainment","cities":["Los Angeles"]},{"company":"Fannie Mae","name":"Abhi Gullapalli","email":"aubertlone@gmail.com","linkedIn":"https://www.linkedin.com/in/viswagullapalli/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Cloud Engineer","industry":"Cloud Services","cities":["Tulsa","Glendale"]},{"company":"Fantoons","name":"Hank McGill","email":"henrymcgill@gmail.com","linkedIn":"https://www.linkedin.com/in/hank-mcgill/","campus":"NYOI","cohort":"4","jobTitle":"Founding Full-Stack Software Engineer","industry":"Entertainment","cities":["Reno","Henderson"]},{"company":"Farm to People","name":"Katharine Angelopoulos","email":"katharine.angelopoulos@gmail.com","linkedIn":"https://www.linkedin.com/in/kangelopoulos/","campus":"NYC / ECRI","cohort":"36","jobTitle":"Full Stack Developer","industry":"Restaurant, Food, and Beverage","cities":["Tampa","Philadelphia","Saint Paul","Cincinnati"]},{"company":"Fashionphile","name":"Amy Yee","email":"amyyee1998@gmail.com","linkedIn":"https://www.linkedin.com/in/amyyee98/","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"E-commerce","cities":["Chandler","Chula Vista","El Paso"]},{"company":"Fashionphile","name":"Gabriela Jardim Aquino","email":"gjardimaquino@gmail.com","linkedIn":"https://www.linkedin.com/in/aquinojardim/","campus":"LA","cohort":"36","jobTitle":"Software Engineer","industry":"Fashion","cities":["Mexico City","San Antonio","New Orleans","Sydney"]},{"company":"Fastly","name":"Angelo Chengcuenca","email":"amchengcuenca@gmail.com","linkedIn":"https://www.linkedin.com/in/angelotmchengcuenca/","campus":"FTRI / CTRI","cohort":"14","jobTitle":"Software Development Engineer","industry":"Software / Tech","cities":["Mexico City"]},{"company":"Fearless (fearless.tech)","name":"Faraz Akhtar","email":"fa8338@gmail.com","linkedIn":"https://www.linkedin.com/in/faraz22/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer II","industry":"Government Consulting","cities":["San Diego"]},{"company":"Feather","name":"Bryan Fong","email":"bryanfong.dev@gmail.com","linkedIn":"https://www.linkedin.com/in/bryanfong-dev/","campus":"NYC","cohort":"11","jobTitle":"Software Engineer","industry":"Furniture Subscription","cities":["Durham","Detroit","Corpus Christi","Louisville"]},{"company":"FeatureBase","name":"David Kagan","email":"David.kagan07@gmail.com","linkedIn":"David-kagan07","campus":"NYC / ECRI","cohort":"34","jobTitle":"Jr Software Engineer, Cloud","industry":"Cloud Services","cities":["Orlando"]},{"company":"Federal Reserve Bank","name":"Robert McHalffey","email":"R.mchalffey@gmail.com","linkedIn":"","campus":"LA","cohort":"26","jobTitle":"Software Engineer 4","industry":"Government/Banking","cities":["Paris","Scottsdale","New Orleans"]},{"company":"Federal Reserve Bank of NY","name":"Anthony Lee","email":"anthonylee2797@gmail.com","linkedIn":"https://www.linkedin.com/in/anthony-lee27/","campus":"NYC","cohort":"19","jobTitle":"Frontend Developer","industry":"Finance","cities":["Lexington","Greensboro","Arlington"]},{"company":"Ferguson","name":"Eric Hagen","email":"ericjameshagen@gmail.com","linkedIn":"https://www.linkedin.com/in/hagenforhire/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Software Engineer","industry":"Other","cities":["San Jose","Seattle","Toronto","Tokyo"]},{"company":"Ferguson Enterprises","name":"James Ferrell","email":"James David.ferrell@ferguson.com","linkedIn":"https://www.linkedin.com/in/james-d-ferrell/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"E-commerce","cities":["Aurora"]},{"company":"Fictiv","name":"Cherie Zhong","email":"cheriemzhong@gmail.com","linkedIn":"https://www.linkedin.com/in/cheriezhong/","campus":"LA","cohort":"35","jobTitle":"Software Engineer","industry":"Manufacturing","cities":["Long Beach","Lubbock","Raleigh"]},{"company":"Fidelity Investments","name":"Eli Muir","email":"eli.t.muir@gmail.com","linkedIn":"https://www.linkedin.com/in/eli-muir/","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Full Stack Engineer","industry":"Fintech","cities":["Long Beach","Mumbai","Saint Paul","North Las Vegas"]},{"company":"Fidelity Investments","name":"Christopher Jamali","email":"jamalichristopher@gmail.com","linkedIn":"https://www.linkedin.com/in/chrisjamali/","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Senior Mobile Developer","industry":"Fintech","cities":["Santa Ana"]},{"company":"Fin","name":"Matt Jiang","email":"mattljiang@gmail.com","linkedIn":"https://www.linkedin.com/in/mattljiang/","campus":"LA","cohort":"40","jobTitle":"Product Engineer","industry":"SaaS","cities":["Fort Wayne"]},{"company":"Find my past","name":"Mitesh patel","email":"mit06@hotmail.com","linkedIn":"https://www.linkedin.com/in/miteshvjpatel","campus":"NYC","cohort":"21","jobTitle":"Mid software engineer","industry":"genealogy","cities":["Minneapolis","Madison","Garland"]},{"company":"FinDox Inc.","name":"Jhonatan Passalacqua","email":"jpascas@gmail.com","linkedIn":"https://www.linkedin.com/in/jpassalacqua","campus":"PTRI","cohort":"Beta","jobTitle":"Senior Software Architect","industry":"Fintech","cities":["Los Angeles","Toledo","Irving"]},{"company":"Finra","name":"Yankun Song","email":"yankun.L.song@gmail.com","linkedIn":"https://www.linkedin.com/in/yankunsong/","campus":"LA / WCRI","cohort":"49","jobTitle":"Data engineer","industry":"Fintech","cities":["Houston","Corpus Christi"]},{"company":"First American ","name":"Jen Lee","email":"jenleesj@gmail.com","linkedIn":"https://www.linkedin.com/in/jenleesj","campus":"FTRI / CTRI","cohort":"14","jobTitle":"Front End Software Engineer","industry":"Insurance","cities":["Santa Ana","Louisville","Raleigh"]},{"company":"First Help Financial","name":"Juliana Morrelli","email":"julianamorrelli28@gmail.com","linkedIn":"https://www.linkedin.com/in/julianamorrelli/","campus":"NYC / ECRI","cohort":"37","jobTitle":"Frontend Software Engineer","industry":"Fintech","cities":["Austin","Omaha","Tampa"]},{"company":"First Republic Bank","name":"Nikhil Massand","email":"nikhil.massand@gmail.com","linkedIn":"https://www.linkedin.com/in/nikhil-massand/","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"Banking","cities":["Cleveland","Arlington"]},{"company":"First Resonance","name":"Maxwell Reed","email":"mxjreed@gmail.com","linkedIn":"https://www.linkedin.com/in/mxjrd/","campus":"LA","cohort":"41","jobTitle":"Frontend Engineer","industry":"Manufacturing","cities":["Beijing","Tulsa"]},{"company":"Fiserv","name":"Ozi Oztourk","email":"oztrkgzhn@gmail.com","linkedIn":"https://www.linkedin.com/in/ozi-oztourk","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"Fintech","cities":["Seattle","San Francisco","Chicago"]},{"company":"Fiserv.","name":"eddy zapata","email":"ecz001@live.com","linkedIn":"https://www.linkedin.com/in/eddy-zapata/","campus":"FTRI","cohort":"2","jobTitle":"Software Development Engineer IV","industry":"Fintech","cities":["Orlando","Mumbai"]},{"company":"Fitch Solutions","name":"Duane McFarlane","email":"Duanemcfarlane@yahoo.com","linkedIn":"https://www.linkedin.com/in/duanemcfarlane/","campus":"NYC","cohort":"13","jobTitle":"Software Engineer","industry":"Entertainment","cities":["Miami"]},{"company":"Flash Scientific Technology","name":"William Howard","email":"willh91@msn.com","linkedIn":"https://www.linkedin.com/in/wph91/","campus":"LA","cohort":"21","jobTitle":"Lead Software Engineer","industry":"Meteorology/Environmental Science","cities":["Saint Paul"]},{"company":"Flashpoint","name":"Robbie Gottlieb","email":"robbiegottlieb.dev@gmail.com","linkedIn":"https://www.linkedin.com/in/robbie-gottlieb/","campus":"NYC / ECRI","cohort":"1","jobTitle":"Security","industry":"Software / Tech","cities":["Miami","El Paso"]},{"company":"Flexion","name":"Cameron Walls","email":"cwalls45@gmail.com","linkedIn":"https://www.linkedin.com/in/cameron-walls45/","campus":"PTRI","cohort":"3","jobTitle":"Full Stack Software Developer","industry":"Consulting, the project I am working on is in the Education industry","cities":["Riverside","Jacksonville","North Las Vegas","Glendale"]},{"company":"FlightAware","name":"Robert Yang","email":"rob.yang@gmail.com","linkedIn":"https://www.linkedin.com/in/robwyang/","campus":"NYC","cohort":"24","jobTitle":"Senior Software Engineer","industry":"Aviation","cities":["Bakersfield"]},{"company":"Flock Safety","name":"Rocio Infante","email":"Rocio.infante417@gmail.com","linkedIn":"","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Public Safety","cities":["Scottsdale"]},{"company":"Flock Safety","name":"Hunter Shaw","email":"hu.shaw215@gmail.com","linkedIn":"https://www.linkedin.com/in/hshaw215/","campus":"NYC / ECRI","cohort":"40","jobTitle":"Software Engineer II","industry":"Other","cities":["Kansas City"]},{"company":"FloQast","name":"Stephanie Chiu","email":"stephaniekchiu@gmail.com","linkedIn":"https://www.linkedin.com/in/stephanie-chiu-/","campus":"LA","cohort":"32","jobTitle":"Software Engineer I","industry":"Fintech","cities":["Anchorage"]},{"company":"FloQast","name":"Khaile Tran","email":"khailetran94@gmail.com","linkedIn":"linkedin.com/in/khailetran","campus":"FTRI / CTRI","cohort":"16","jobTitle":"Software Engineer I","industry":"Other","cities":["Irvine","North Las Vegas"]},{"company":"Florence Healthcare","name":"Bill Greco","email":"wgreco13@gmail.com","linkedIn":"https://www.linkedin.com/in/bill-greco/","campus":"NYC","cohort":"32","jobTitle":"Senior Full Stack Software Engineer","industry":"Healthcare","cities":["Oklahoma City"]},{"company":"FNS, Inc.","name":"Shinhae Na","email":"shinhaena@gmail.com","linkedIn":"https://www.linkedin.com/in/shinhaena-stella/","campus":"LA / WCRI","cohort":"49","jobTitle":"Software Engineer","industry":"Retail","cities":["Seattle","North Las Vegas","Henderson"]},{"company":"Foodpanda","name":"Josh Kim","email":"joshua940308@gmail.com","linkedIn":"https://www.linkedin.com/in/sungtae/","campus":"NYC","cohort":"12","jobTitle":"Frontend software engineer","industry":"Food tech","cities":["Seattle","Sydney","Fresno","Chandler"]},{"company":"Forma","name":"Jay Lim","email":"jaymlim93@gmail.com","linkedIn":"https://www.linkedin.com/in/jaylim218/","campus":"LA","cohort":"28","jobTitle":"Software Engineer","industry":"Human Resources","cities":["Cincinnati","Raleigh","Gilbert"]},{"company":"Formation","name":"Stella Liao","email":"stellaliao.01@gmail.com","linkedIn":"https://www.linkedin.com/feed/","campus":"LA","cohort":"39","jobTitle":"Software Engineer","industry":"Education","cities":["Philadelphia","El Paso"]},{"company":"Formidable","name":"Juan Hart","email":"juanhart1@gmail.com","linkedIn":"","campus":"NYC","cohort":"12","jobTitle":"Software Engineer III","industry":"Consultancy","cities":["Buffalo","Corpus Christi"]},{"company":"Fortress Information Security","name":"Keith Lisiak","email":"bball.coach@icloud.com","linkedIn":"https://www.linkedin.com/in/keithlisiak/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"Security","cities":["Sydney","Riverside","Norfolk"]},{"company":"Forward Financing","name":"Shanon Lee","email":"shanonlee541@gmail.com","linkedIn":"https://www.linkedin.com/in/shanonlee541/","campus":"FTRI","cohort":"5","jobTitle":"Associate Software Engineer","industry":"Fintech","cities":["Orlando","Norfolk"]},{"company":"Forward Slope Inc.","name":"Ilija Bibic","email":"ibibic2@gmail.com","linkedIn":"https://www.linkedin.com/in/ilija-bibic","campus":"LA / WCRI","cohort":"51","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Virginia Beach"]},{"company":"Forward Slope, Inc.","name":"Thang Thai","email":"thaithangt@gmail.com","linkedIn":"https://www.linkedin.com/in/thang-thai/","campus":"LA / WCRI","cohort":"52","jobTitle":"Software Engineer","industry":"Other","cities":["Chicago","Charlotte"]},{"company":"FourKites","name":"Anthony Stanislaus","email":"anthonystanislaus1@gmail.com","linkedIn":"https://www.linkedin.com/in/anthonystanislaus/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Software Engineer","industry":"Other","cities":["Mesa","Durham","Phoenix"]},{"company":"Fox Corporation","name":"James Edwards","email":"digitalmediapro7@gmail.com","linkedIn":"https://www.linkedin.com/in/digital9/","campus":"LA","cohort":"19","jobTitle":"Senior Full Stack Software Engineer (Frontend)","industry":"","cities":["El Paso","Austin","Houston"]},{"company":"Freewheel","name":"Hubert Lin","email":"huberthflin@gmail.com","linkedIn":"https://www.linkedin.com/feed/","campus":"NYC","cohort":"9","jobTitle":"Software Engineer","industry":"IT","cities":["Omaha","Stockton","Mumbai"]},{"company":"Frontier Communications","name":"Josh Cretella","email":"jcrtll@protonmail.com","linkedIn":"https://www.linkedin.com/in/josh-cretella","campus":"LA","cohort":"45","jobTitle":"Backend Developer","industry":"Telecoms","cities":["New York","Glendale","Louisville"]},{"company":"Frozen Dessert Supplies","name":"Ethan McRae","email":"ethanmcrae0@gmail.com","linkedIn":"https://www.linkedin.com/in/ethanmcrae/","campus":"PTRI","cohort":"7","jobTitle":"Senior Developer","industry":"Consumer Goods: Retail (general)","cities":["Cleveland","Gilbert","Philadelphia","Jacksonville"]},{"company":"Fulcrum","name":"Valerie Huang","email":"valeriewhuang@gmail.com","linkedIn":"https://www.linkedin.com/mwlite/in/valeriewhuang","campus":"PTRI","cohort":"2","jobTitle":"Software Engineer","industry":"Manufacturing","cities":["Cleveland","Minneapolis","Philadelphia"]},{"company":"fulcrumpro","name":"Nicole Du","email":"Nicoleduu@gmail.com","linkedIn":"","campus":"NYC","cohort":"20","jobTitle":"Software Developer","industry":"Manufacturing","cities":["New Orleans","Chesapeake"]},{"company":"Full In Partners","name":"Kevin HoEun Lee","email":"kevin.hoeun.lee@gmail.com","linkedIn":"https://www.linkedin.com/in/kevinhoeunlee/","campus":"LA","cohort":"50","jobTitle":"Software Engineer","industry":"Fintech","cities":["Mumbai","Washington","Chesapeake"]},{"company":"Funimation","name":"Justin Joseph","email":"jrayjoseph@gmail.com","linkedIn":"https://www.linkedin.com/mwlite/in/jrayjoseph","campus":"LA","cohort":"32","jobTitle":"Backend Software Engineer","industry":"Entertainment","cities":["San Jose","Cleveland"]},{"company":"Fusion Medical Staffing","name":"Kelsey Graner","email":"Kels.graner@gmail.com","linkedIn":"LinkedIn.com/Kelsey-graner","campus":"LA / WCRI","cohort":"54","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Detroit"]},{"company":"Fusion Medical Staffing","name":"Krisette Odegard","email":"kmodeg@gmail.com","linkedIn":"https://linkedin.com/in/krisette","campus":"LA / WCRI","cohort":"53","jobTitle":"Software Developer","industry":"Healthcare","cities":["Washington","Anaheim","Sydney"]},{"company":"Futuralis","name":"Rex Osariemen","email":"rexosariemen@gmail.com","linkedIn":"https://linkedin/in/rexosariemen","campus":"NYC","cohort":"15","jobTitle":"Software Engineer","industry":"IT","cities":["Louisville"]},{"company":"G-Research","name":"Sigele Nickerson-Adams","email":"sigeleakosua@gmail.com","linkedIn":"https://www.linkedin.com/in/sigelenickersonadams","campus":"PTRI","cohort":"6","jobTitle":"Software Engineer","industry":"Research","cities":["Chicago"]},{"company":"Gaia Platform","name":"Jorge Fernandez","email":"jcferna1@gmail.com","linkedIn":"https://www.linkedin.com/in/jorge-carlos-fernandez","campus":"LA","cohort":"42","jobTitle":"Software Developer","industry":"Automation","cities":["San Francisco","Oklahoma City"]},{"company":"Gallery Media Group","name":"Kristiina Eelnurme","email":"kristiina.eelnurme@gmail.com","linkedIn":"https://www.linkedin.com/in/Kristiina-eelnurme/","campus":"NYC","cohort":"22","jobTitle":"Frontend Engineer","industry":"Media","cities":["Chula Vista","Omaha","Portland","Nashville"]},{"company":"GameOn Technology","name":"Jeffrey Kim","email":"kimjeffrey96@gmail.com","linkedIn":"https://www.linkedin.com/in/jeffrey-kim-79810112a/","campus":"NYC","cohort":"6","jobTitle":"Frontend, Software Engineer","industry":"Tech","cities":["Indianapolis"]},{"company":"GAN Integrity","name":"Erik Larsen","email":"erik.w.larsen@gmail.com","linkedIn":"https://www.linkedin.com/in/erik-w-larsen","campus":"NYC","cohort":"3","jobTitle":"Software Engineer","industry":"","cities":["Charlotte","Buffalo","Greensboro","Raleigh"]},{"company":"Gap","name":"Khayal Alasgarov","email":"alaskarov.khayal@gmail.com","linkedIn":"https://www.linkedin.com/in/khayal-alasgaroff","campus":"LA","cohort":"44","jobTitle":"React/JavaScript Developer","industry":"Clothing","cities":["Philadelphia"]},{"company":"Gap","name":"Wesley Appleget","email":"wesget182@gmail.com","linkedIn":"https://www.linkedin.com/in/wesley-appleget/","campus":"PTRI","cohort":"3","jobTitle":"Full Stack Engineer","industry":"Retail","cities":["Fort Worth","Saint Paul"]},{"company":"Gap Inc.","name":"Cole Redfearn","email":"coleredfearn@gmail.com","linkedIn":"https://www.linkedin.com/in/coleredfearn/","campus":"LA","cohort":"41","jobTitle":"UI Developer","industry":"Clothing/E-Commerce","cities":["Charlotte","Riverside"]},{"company":"Gap inc.","name":"Nayan Parmar","email":"nparmar84@gmail.com","linkedIn":"https://www.linkedin.com/in/nparmar1","campus":"LA","cohort":"44","jobTitle":"Software Engineer","industry":"eCommerce","cities":["Laredo"]},{"company":"Gartner-L2","name":"Jonathan P Schwartz","email":"jonathanschwartz30@gmail.com","linkedIn":"https://www.linkedin.com/in/jonathanpschwartz/","campus":"NYC","cohort":"7","jobTitle":"Front-End Lead","industry":"","cities":["Columbus","Portland","Raleigh","Fresno"]},{"company":"Gatheround","name":"Andrew Widjaja","email":"andrewdwidjaja@gmail.com","linkedIn":"https://www.linkedin.com/in/andrew-widjaja/","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Dallas","Reno","Anaheim"]},{"company":"GE Aviation","name":"Nathan Richardson","email":"nathan.richardson94@gmail.com","linkedIn":"https://www.linkedin.com/in/nathan-p-richardson/","campus":"NYC","cohort":"24","jobTitle":"Fullstack Developer","industry":"Aerospace","cities":["Mesa"]},{"company":"Geneoscopy","name":"Steve Schlepphorst","email":"steve.schlepphorst@gmail.com","linkedIn":"https://www.linkedin.com/in/schlepphorst/","campus":"FTRI / CTRI","cohort":"17","jobTitle":"Senior Software Engineer I","industry":"Healthtech/Healthcare","cities":["Long Beach","Minneapolis","Aurora"]},{"company":"Genomic Prediction","name":"Rebecca Miller","email":"beemills@gmail.com","linkedIn":"https://www.linkedin.com/in/rebeccamiller19/","campus":"NYC","cohort":"20","jobTitle":"Frontend Engineer","industry":"Biotech","cities":["Raleigh"]},{"company":"Ghostery","name":"Leury Rodriguez","email":"leuryr07@gmail.com","linkedIn":"https://www.linkedin.com/in/leury-rodriguez/","campus":"NYC","cohort":"8","jobTitle":"Jr. Software Engineer","industry":"Internet","cities":["Tokyo","Pittsburgh"]},{"company":"Giglabs, Inc.","name":"Tyler Pohn","email":"tylerpohn@gmail.com","linkedIn":"https://www.linkedin.com/in/tylerpohn/","campus":"FTRI / CTRI","cohort":"5","jobTitle":"Software Engineer","industry":"Blockchain/Web3","cities":["Beijing"]},{"company":"Giglabs.io","name":"Daniel Nguyen","email":"dannguyen1191@yahoo.com","linkedIn":"https://www.linkedin.com/in/danlord-nguyen/","campus":"FTRI","cohort":"5","jobTitle":"Software Engineer (Node)","industry":"Blockchain, Media and Entertainment","cities":["Winston-Salem"]},{"company":"Github","name":"Sabrina Goldfarb","email":"s.goldfarb2@gmail.com","linkedIn":"https://www.linkedin.com/in/sabrinagoldfarb/","campus":"NYC","cohort":"22","jobTitle":"Software Engineer II","industry":"Tech","cities":["Houston","Irvine"]},{"company":"glimpse.ai","name":"Ryan Lim","email":"ryanlim301@gmail.com","linkedIn":"https://www.linkedin.com/in/ryanlim3/","campus":"LA","cohort":"46","jobTitle":"Full Stack Engineer","industry":"Information Technology","cities":["Madison","El Paso","New York"]},{"company":"Gluware","name":"Abid Ramay","email":"abidramay@gmail.com","linkedIn":"https://www.linkedin.com/in/aramay/","campus":"PTRI","cohort":"3","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Kansas City"]},{"company":"GOAT Group","name":"Jordan Deleon","email":"jordanscottdeleon@gmail.com","linkedIn":"https://www.linkedin.com/in/jordan-deleon/","campus":"LA","cohort":"35","jobTitle":"Software Engineer II","industry":"E-commerce","cities":["Greensboro"]},{"company":"GoBolt","name":"Kyo Ku","email":"kyosan.ku34@gmail.com","linkedIn":"https://www.linkedin.com/in/kyosan-ku/","campus":"FTRI","cohort":"4","jobTitle":"Software Developer II","industry":"Logistics Technology","cities":["Chesapeake"]},{"company":"GoDaddy","name":"Joyce Lo","email":"joycemanning@gmail.com","linkedIn":"https://www.linkedin.com/in/joycelo/","campus":"NYC","cohort":"19","jobTitle":"Software Engineer","industry":"Internet","cities":["Raleigh","Irving","Fort Worth"]},{"company":"GoDaddy","name":"Kristina Wallen","email":"KristinaKWallen@gmail.com","linkedIn":"https://www.linkedin.com/in/kristina-wallen/","campus":"LA","cohort":"46","jobTitle":"Senior Software Development Engineer","industry":"Software / Tech","cities":["San Jose","Mumbai","Dallas","Tulsa"]},{"company":"GoFundMe","name":"Colin McCarthy","email":"colinhmccarthy@gmail.com","linkedIn":"https://www.linkedin.com/in/colinhmccarthy/","campus":"LA","cohort":"21","jobTitle":"Software Engineer","industry":"Crowdfunding/fundraising","cities":["Buffalo","North Las Vegas","Milwaukee"]},{"company":"Golden Hippo","name":"Mauricio Castro","email":"mauricio.a.castro7@gmail.com","linkedIn":"https://www.linkedin.com/in/mauricioacastro/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Senior Full Stack Developer","industry":"Advertising","cities":["Henderson","Virginia Beach"]},{"company":"Goldman Sachs","name":"Alfredo Alpizar","email":"fredo.alpizar@gmail.com","linkedIn":"https://www.linkedin.com/in/alfredoalpizar/","campus":"NYC","cohort":"12","jobTitle":"Associate Software Engineer","industry":"Finance / Banking","cities":["Columbus","El Paso"]},{"company":"Goldman Sachs","name":"Peyton Pedersen","email":"pedersen0819@gmail.com","linkedIn":"https://www.linkedin.com/in/peyton-pedersen/","campus":"FTRI","cohort":"5","jobTitle":"Analyst","industry":"Fintech","cities":["Lincoln","Norfolk","Glendale","Mesa"]},{"company":"Goldman Sachs","name":"Stephen Budarz","email":"sbudarz@gmail.com","linkedIn":"https://www.linkedin.com/in/steve-budarz/","campus":"NYC","cohort":"19","jobTitle":"Vice President","industry":"Finance","cities":["New Orleans","Portland","Los Angeles"]},{"company":"Goldschmitt & Associates","name":"Kirk Shin","email":"shin.kirk@gmail.com","linkedIn":"https://www.linkedin.com/in/kirkshin/","campus":"LA","cohort":"31","jobTitle":"Frontend Developer","industry":"Government contractor","cities":["Milwaukee"]},{"company":"GoodPup","name":"Eric Wells","email":"epiqu1n@gmail.com","linkedIn":"https://www.linkedin.com/in/ewells2275/","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Tulsa","Fresno"]},{"company":"GoodRX","name":"Byron Jay Inocencio","email":"jay.byron@gmail.com","linkedIn":"https://www.linkedin.com/in/binocencio/","campus":"LA","cohort":"28","jobTitle":"Software Engineer","industry":"Healthcare, Med-tech, Telemedecine","cities":["Beijing","Virginia Beach","Winston-Salem"]},{"company":"GoodRx","name":"Mike Richards","email":"mike@madebymtr.com","linkedIn":"https://www.linkedin.com/in/madebymtr/","campus":"LA","cohort":"11","jobTitle":"Senior Frontend Engineer","industry":"Healthcare","cities":["Sydney","Paris"]},{"company":"Google","name":"Andie Ritter","email":"A.k.rittr@gmail.com","linkedIn":"https://www.linkedin.com/in/andieritter/","campus":"LA","cohort":"34","jobTitle":"Software Engineer","industry":"Business Intelligence","cities":["Madison","Scottsdale","Jacksonville","Norfolk"]},{"company":"Google","name":"Ben Hawley","email":"benhawley0@gmail.com","linkedIn":"https://www.linkedin.com/in/benchawley/","campus":"NYC","cohort":"4","jobTitle":"Software Engineer","industry":"","cities":["Berlin","Arlington"]},{"company":"Google","name":"Brett Beekley","email":"brettbeekley@gmail.com","linkedIn":"https://www.linkedin.com/in/brettbeekley/","campus":"LA","cohort":"15","jobTitle":"Senior Software Engineer, Site Reliability Engineering","industry":"Technology","cities":["Greensboro","Oklahoma City","Detroit","Houston"]},{"company":"Google","name":"Cameron Greer","email":"camgreer01@gmail.com","linkedIn":"https://www.linkedin.com/in/cameron-greer/","campus":"LA","cohort":"38","jobTitle":"Software Engineer - Level 3","industry":"Technology","cities":["Kansas City"]},{"company":"Google","name":"Christian Padilla","email":"christianepadilla@gmail.com","linkedIn":"https://www.linkedin.com/in/christianedwardpadilla/","campus":"NYC","cohort":"10","jobTitle":"Software Engineer (L3)","industry":"Frontend Mobile Development","cities":["Buffalo"]},{"company":"Google","name":"Crystal Pederson","email":"crystalpederson88@gmail.com","linkedIn":"https://www.linkedin.com/in/crystalpederson/","campus":"PTRI","cohort":"5","jobTitle":"Software Engineer (Frontend III)","industry":"Software / Tech","cities":["Lincoln","Gilbert","New Orleans"]},{"company":"Google","name":"Edwin Lee","email":"edjl1289@gmail.com","linkedIn":"https://www.linkedin.com/in/edwinlee89/","campus":"LA","cohort":"45","jobTitle":"Software Engineer","industry":"Cloud Service","cities":["Winston-Salem","Los Angeles"]},{"company":"Google","name":"Ian Geckeler","email":"ikcgeckeler@gmail.com","linkedIn":"https://www.linkedin.com/in/iangeckeler/","campus":"NYC","cohort":"12","jobTitle":"Software Engineer","industry":"Adtech","cities":["Cincinnati","Houston","Glendale","Colorado Springs"]},{"company":"Google","name":"Jeff Kang","email":"jeffreyrkang@gmail.com","linkedIn":"https://www.linkedin.com/in/jeffreyrkang/","campus":"LA","cohort":"21","jobTitle":"Software Engineer","industry":"","cities":["Garland","Denver"]},{"company":"Google","name":"Jenae Pennie","email":"jenaepen@gmail.com","linkedIn":"https://www.linkedin.com/in/jenae-pennie/","campus":"NYC","cohort":"15","jobTitle":"Software Engineer","industry":"Tech","cities":["Irvine","Honolulu","Pittsburgh","Albuquerque"]},{"company":"Google","name":"Jonathan Tam","email":"jktam336@gmail.com","linkedIn":"https://www.linkedin.com/in/jktam/","campus":"LA","cohort":"47","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Mexico City"]},{"company":"Google","name":"Miguel Gonzalez","email":"MiguelGonzalez@alumni.upenn.edu","linkedIn":"https://www.linkedin.com/in/miguel-gonzalez96/","campus":"NYC","cohort":"22","jobTitle":"Software Engineer - Search Engine Privacy","industry":"Tech","cities":["Scottsdale","Minneapolis"]},{"company":"Google","name":"Nak Young Kim","email":"nydkim@gmail.com","linkedIn":"https://www.linkedin.com/in/nak-young-kim/","campus":"NYC","cohort":"19","jobTitle":"Software Engineer","industry":"Social Media","cities":["Fresno","Glendale"]},{"company":"Google","name":"Patrick Liu","email":"patrickliu.hhs@gmail.com","linkedIn":"https://www.linkedin.com/in/ptrkl/","campus":"PTRI","cohort":"2","jobTitle":"Software Engineer","industry":"Tech","cities":["Chula Vista","Mexico City"]},{"company":"Google","name":"Swetha Kunda","email":"swethakunda@gmail.com","linkedIn":"https://www.linkedin.com/in/swethakunda/","campus":"FTRI","cohort":"6","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Boston","Orlando","Mumbai","Columbus"]},{"company":"Google","name":"Cecilia Yena Choi","email":"yenachoi95@gmail.com","linkedIn":"https://www.linkedin.com/in/ceciliayenachoi/","campus":"LA","cohort":"34","jobTitle":"Software Engineer","industry":"Tech","cities":["Anchorage","San Francisco"]},{"company":"Google Cloud","name":"Sarah Heacock","email":"sarahheacock03@gmail.com","linkedIn":"https://www.linkedin.com/in/sarah-heacock/","campus":"NYC","cohort":"2","jobTitle":"Software Engineer","industry":"Tech","cities":["Toronto","Laredo"]},{"company":"GoSite","name":"Alexander Young","email":"youngalexj00@gmail.com","linkedIn":"https://www.linkedin.com/in/alexander-young-7aabb7122/","campus":"NYC","cohort":"19","jobTitle":"Full Stack Engineer","industry":"Digital Services","cities":["Baltimore","North Las Vegas","Tulsa","Cleveland"]},{"company":"Govini","name":"Aaron Bumanglag","email":"aaron.k.bumanglag@gmail.com","linkedIn":"https://linkedin.com/akbuma","campus":"LA","cohort":"36","jobTitle":"Software Engineer","industry":"Decision Science","cities":["Baltimore","Sacramento","Jersey City"]},{"company":"Grailed","name":"Eugene Chen","email":"chen.eugene19@gmail.com","linkedIn":"https://www.linkedin.com/in/canopeia","campus":"NYC","cohort":"8","jobTitle":"Junior Software Engineer","industry":"HR tech","cities":["Tulsa","Phoenix","Baltimore"]},{"company":"Grailed","name":"Danni Ballena","email":"danni.ballena@gmail.com","linkedIn":"https://www.linkedin.com/in/danni-ballena/","campus":"LA","cohort":"25","jobTitle":"Software Engineer","industry":"Entertainment","cities":["Cincinnati"]},{"company":"Granular","name":"Charles Ryu","email":"charles.ryu@gmail.com","linkedIn":"https://www.linkedin.com/in/charcharryu","campus":"LA","cohort":"43","jobTitle":"Software Engineer","industry":"Agriculture Tech","cities":["Cleveland","Chicago"]},{"company":"Graphika","name":"Sam Carlile","email":"sam@samkc.me","linkedIn":"https://LinkedIn.com/in/samkcarlile","campus":"NYC","cohort":"21","jobTitle":"Full Stack Engineer","industry":"Research & Analytics","cities":["Mexico City"]},{"company":"Green Street Advisors","name":"Joshua Nordstrom","email":"joshua@jdnordstrom.com","linkedIn":"https://www.linkedin.com/in/jdnordy/","campus":"LA","cohort":"34","jobTitle":"Technology Associate","industry":"Real Estate","cities":["Greensboro"]},{"company":"Greenphire","name":"Nicholas Krug","email":"n.e.krug@gmail.com","linkedIn":"https://www.linkedin.com/in/nicholas-e-krug","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Application Developer III","industry":"Healthcare","cities":["New Orleans"]},{"company":"Greentech Financial Solutions","name":"Justin Hicks","email":"justinhickswork@gmail.com","linkedIn":"https://www.linkedin.com/in/justinlhicks/","campus":"LA / WCRI","cohort":"48","jobTitle":"Engineer","industry":"Fintech","cities":["Louisville","Mexico City","Miami","Philadelphia"]},{"company":"Grid Networks","name":"Trine Medina","email":"trinemedina@gmail.com","linkedIn":"www.linkedin.com/in/trinemedina","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Newark","Cincinnati","Baltimore","Laredo"]},{"company":"Gro Intelligence","name":"Damian Lim","email":"limd96@gmail.com","linkedIn":"https://www.linkedin.com/in/lim-damian/","campus":"FTRI","cohort":"9","jobTitle":"Software Engineer","industry":"Agriculture Science","cities":["Dallas","Stockton","Denver","Chesapeake"]},{"company":"Gro-Intelligence","name":"David Bernstein","email":"dxbernstein@gmail.com","linkedIn":"https://www.linkedin.com/in/davidsamuelbernstein/","campus":"NYC","cohort":"24","jobTitle":"Software Engineer (API/Data Visualization Team)","industry":"Agricultural Analytics","cities":["Stockton","Tampa"]},{"company":"Groove Jones","name":"Kristopher Sorensen","email":"Krismsorensen@gmail.com","linkedIn":"Linkedin/in/kris-sorensen","campus":"FTRI / CTRI","cohort":"7","jobTitle":"Senior WebXR Developer","industry":"Other","cities":["Lexington","Santa Ana","Sรฃo Paulo"]},{"company":"GuideMe Solutions","name":"David Nadler","email":"Davidnadler9637@gmail.com","linkedIn":"https://www.linkedin.com/in/davenads/","campus":"NYC","cohort":"23","jobTitle":"Technical Consultant","industry":"Digital Adoption Software","cities":["Austin","Paris","Tampa"]},{"company":"Gulfstream","name":"Chris Hicks","email":"chrishicks430@gmail.com","linkedIn":"Www.LinkedIn.com/in/chrishicks430","campus":"NYC / ECRI","cohort":"36","jobTitle":"Application Developer","industry":"Aerospace","cities":["Aurora","Mumbai"]},{"company":"Guy Carpenter","name":"Dennis Palomo","email":"dennispalomo@icloud.com","linkedIn":"https://linkedin.com/in/dennispalomo","campus":"NYC","cohort":"27","jobTitle":"Developer","industry":"Insurance","cities":["Washington","Houston","Sydney","Los Angeles"]},{"company":"HackerOne","name":"Catherine Chiu","email":"catherinechiuu@gmail.com","linkedIn":"https://www.linkedin.com/in/cchiu2/","campus":"LA","cohort":"37","jobTitle":"Software Engineer II","industry":"Cybersecurity","cities":["Long Beach"]},{"company":"HackerOne","name":"Serena Kuo","email":"hello@serenakuo.com","linkedIn":"https://www.linkedin.com/in/serenakuo/","campus":"LA","cohort":"37","jobTitle":"Senior Software Engineer","industry":"Computer Safety","cities":["Wichita","Garland"]},{"company":"HackerOne","name":"Haejin Jo","email":"swe.haejin@gmail.com","linkedIn":"https://www.linkedin.com/in/haejinjo","campus":"LA","cohort":"37","jobTitle":"Software Engineer","industry":"Cybersecurity","cities":["Long Beach","North Las Vegas","Irvine","Tokyo"]},{"company":"Halo Investing","name":"Gareth Leake","email":"gfleake@gmail.com","linkedIn":"https://www.linkedin.com/in/gareth-leake/","campus":"NYC","cohort":"13","jobTitle":"Software Engineer","industry":"Finance","cities":["Raleigh"]},{"company":"Handshake","name":"Annie Shin","email":"annieshin51@gmail.com","linkedIn":"https://www.linkedin.com/in/annieshinn/","campus":"LA","cohort":"41","jobTitle":"Software Engineer, Platform Services Team","industry":"Recruiting","cities":["St. Louis"]},{"company":"Handshake","name":"Chase Benjamin","email":"chasebenjamin6@gmail.com","linkedIn":"https://www.linkedin.com/in/chase-benjamin300/","campus":"NYC / ECRI","cohort":"37","jobTitle":"Growth Engineer","industry":"Other","cities":["Riverside"]},{"company":"Handshake","name":"Jeffrey Lu","email":"hi@jeffreyclu.com","linkedIn":"https://www.linkedin.com/in/jeffreyclu/","campus":"PTRI","cohort":"Beta","jobTitle":"Software Engineer","industry":"Education","cities":["Denver"]},{"company":"Handshake","name":"Joel Pratt","email":"pratt.joel@gmail.com","linkedIn":"https://www.linkedin.com/in/pratt-joel/","campus":"NYC","cohort":"8","jobTitle":"Software Engineer","industry":"Fintech","cities":["Toledo","Philadelphia","Berlin"]},{"company":"Harbor.ai","name":"Rodolfo Guzman","email":"Rodolfoguzman147@gmail.com","linkedIn":"https://www.linkedin.com/in/rodolfo-guzman-59249594/","campus":"NYC","cohort":"11","jobTitle":"Full Stack Developer","industry":"Insurance Tech","cities":["Garland","Raleigh","Sacramento","Tampa"]},{"company":"Harness Inc.","name":"Tran McFarland Nguyen","email":"tranviolin@me.com","linkedIn":"https://www.linkedin.com/in/tranmcfarlandnguyen/","campus":"LA / WCRI","cohort":"51","jobTitle":"Senior UX Designer","industry":"Software / Tech","cities":["Arlington"]},{"company":"Harver","name":"Will Robinson","email":"wrobinson91@gmail.com","linkedIn":"https://www.linkedin.com/in/wrobinson91","campus":"NYC","cohort":"12","jobTitle":"Fullstack Engineer","industry":"Applicant Tracking Software","cities":["Houston","Tucson","Denver","Henderson"]},{"company":"Health Note","name":"Jeffrey Sul","email":"jeffsul97@gmail.com","linkedIn":"https://www.linkedin.com/in/jsul/","campus":"LA","cohort":"46","jobTitle":"Software Engineer","industry":"Medical CRM","cities":["Denver","San Diego","Omaha"]},{"company":"Healthcare.com","name":"Stephen Jue","email":"steve.h.jue@gmail.com","linkedIn":"https://www.linkedin.com/in/stephen-jue09/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Software Engineer - Front End","industry":"Other","cities":["Toledo"]},{"company":"Healthgrades","name":"Joel K. Perkins","email":"Joel.climbs@gmail.com","linkedIn":"https://www.linkedin.com/in/joelkperkins/","campus":"LA","cohort":"24","jobTitle":"Software Engineer","industry":"","cities":["Sรฃo Paulo","Charlotte","Mumbai","Garland"]},{"company":"Hearst","name":"Josh Roberts","email":"josh@quantumspot.io","linkedIn":"https://www.linkedin.com/in/joshrobertsv2/","campus":"PTRI","cohort":"2","jobTitle":"Lead Frontend Engineer","industry":"Media","cities":["Plano","Minneapolis","San Francisco"]},{"company":"Hearst","name":"Rob Nobile","email":"robert.nobile@gmail.com","linkedIn":"https://www.linkedin.com/in/robnobile/","campus":"NYC","cohort":"20","jobTitle":"Software Engineer","industry":"Media","cities":["Milwaukee","Raleigh","Washington","Toronto"]},{"company":"Hearst Newspaper","name":"Kevin Sarchi","email":"kevinsarchi@yahoo.com","linkedIn":"https://www.linkedin.com/in/kevin-sarchi/","campus":"PTRI","cohort":"2","jobTitle":"Associate Software Engineer","industry":"Media","cities":["Laredo","Memphis","Minneapolis"]},{"company":"Hearth","name":"Vince Ho","email":"vinceho022@gmail.com","linkedIn":"https://www.linkedin.com/in/vinceho022/","campus":"LA","cohort":"40","jobTitle":"Backend Engineer","industry":"Fintech","cities":["Irving","Colorado Springs","Phoenix"]},{"company":"Heartland ","name":"Lloyd Bistany","email":"lloydbistany@gmail.com","linkedIn":"https://www.linkedin.com/in/lloyd-bistany","campus":"NYOI","cohort":"3","jobTitle":"Software Developer ","industry":"Business Tech/Enterprise Tech","cities":["Stockton","Fort Wayne"]},{"company":"Helix","name":"Robert Crocker","email":"robert@vizsimply.com","linkedIn":"https://www.linkedin.com/in/robertcrocker/","campus":"PTRI","cohort":"4","jobTitle":"Data Visualization Engineer","industry":"Bio Tech","cities":["Washington","Chula Vista","Oakland","Chicago"]},{"company":"Hertz","name":"Michael Costello","email":"mcostello91@gmail.com","linkedIn":"https://www.linkedin.com/in/mcostello-swe/","campus":"FTRI / CTRI","cohort":"12","jobTitle":"Software Engineer","industry":"Automotive","cities":["New York","Berlin"]},{"company":"Highnote","name":"Trevor Carr","email":"trevor.a.carr@gmail.com","linkedIn":"https://www.linkedin.com/in/carr-trevor/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Software","cities":["New Orleans","Mesa","Los Angeles"]},{"company":"Hilton","name":"Andrei Cabrera","email":"andrei.cabrera@gmail.com","linkedIn":"https://www.linkedin.com/in/andrei-cabrera/","campus":"PTRI","cohort":"1","jobTitle":"Backend Software Engineer","industry":"Entertainment","cities":["Buffalo","Colorado Springs"]},{"company":"Hilton","name":"Nick Andreala","email":"nandreala@gmail.com","linkedIn":"https://www.linkedin.com/in/nickandreala/","campus":"PTRI","cohort":"3","jobTitle":"Front-End Software Engineer","industry":"Hospitality","cities":["Sydney"]},{"company":"Hilton","name":"Conor Sexton","email":"sextonc@me.com","linkedIn":"https://www.linkedin.com/in/sextonc/","campus":"NYC","cohort":"11","jobTitle":"Render Tier Engineer","industry":"Hospitality","cities":["Long Beach","Wichita","Stockton","Corpus Christi"]},{"company":"Hinge Health","name":"Ahsan Rao","email":"ahsan.ijaz.rao@gmail.com","linkedIn":"https://www.linkedin.com/in/ahsan-rao/","campus":"NYC / ECRI","cohort":"34","jobTitle":"Software Engineer - Full-Stack","industry":"Healthcare","cities":["Cleveland","Kansas City","San Jose","Phoenix"]},{"company":"Hinge Health","name":"Evan King","email":"evanking112@gmail.com","linkedIn":"https://www.linkedin.com/in/evanking11/","campus":"LA","cohort":"32","jobTitle":"Software Engineer","industry":"Healthcare Technology","cities":["Mumbai"]},{"company":"Hinge Health","name":"Vanessa Lutz","email":"vanessayplutz@gmail.com","linkedIn":"https://www.linkedin.com/in/vanessa-lutz","campus":"FTRI","cohort":"2","jobTitle":"Software Engineer","industry":"Health","cities":["Berlin","Detroit","Stockton"]},{"company":"Hireology","name":"Stella Baek","email":"seungyeon1008@gmail.com","linkedIn":"https://www.linkedin.com/in/stellabaek/","campus":"LA / WCRI","cohort":"54","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Durham","Irvine","San Jose"]},{"company":"HiTactics/ ZH Solutions Inc.","name":"Sidhi Gosain","email":"sidhigosain@gmail.com","linkedIn":"https://www.linkedin.com/in/sidhi-gosain/","campus":"LA","cohort":"22","jobTitle":"Software Engineer","industry":"","cities":["Virginia Beach"]},{"company":"HiThrive","name":"Zack Daniels","email":"Zackdanielsnyc@gmail.com","linkedIn":"https://www.linkedin.com/in/zackdanielsnyc/","campus":"LA","cohort":"49","jobTitle":"Full stack software engineer","industry":"Other","cities":["Washington","Raleigh","Durham"]},{"company":"Hive","name":"Max Latoche","email":"max.latoche@gmail.com","linkedIn":"https://www.linkedin.com/in/maxlatoche/","campus":"NYC","cohort":"2","jobTitle":"Senior Software Engineer","industry":"Tech","cities":["Riverside","Buffalo","Oakland"]},{"company":"Hive Technologies Inc","name":"Lilah August","email":"lilahraeaugust@gmail.com","linkedIn":"https://www.linkedin.com/lilahaugust","campus":"NYC / ECRI","cohort":"35","jobTitle":"Software Engineer","industry":"Automotive","cities":["Durham"]},{"company":"HOF Capital","name":"Frank Hu","email":"frank.junhu@gmail.com","linkedIn":"https://www.linkedin.com/in/frankjunhu/","campus":"NYC","cohort":"2","jobTitle":"Venture Analyst","industry":"","cities":["San Diego","Tulsa","Reno"]},{"company":"Home Depot","name":"Hannah Santoyo","email":"hannah.santoyo7@gmail.com","linkedIn":"linkedin.com/in/hannah-santoyo","campus":"LA / WCRI","cohort":"50","jobTitle":"Fullstack Software Engineer","industry":"Retail","cities":["Lincoln","Oakland","Bakersfield","Tucson"]},{"company":"Honey (PayPal)","name":"Jenny Hai","email":"jenny.hai420@gmail.com","linkedIn":"https://www.linkedin.com/in/Jenny-hai/","campus":"LA","cohort":"41","jobTitle":"Software Engineer II","industry":"Fintech / Ecommerce","cities":["Cincinnati","Fort Wayne"]},{"company":"Hooray Agency","name":"Aris Razuri","email":"arazuli4@gmail.com","linkedIn":"https://www.linkedin.com/in/aris-razuri/","campus":"LA","cohort":"34","jobTitle":"Junior Frontend Developer","industry":"Marketing & Advertising","cities":["Milwaukee","Minneapolis","Madison","Tulsa"]},{"company":"Hopin","name":"Linda Wishingrad","email":"linda.wishingrad@gmail.com","linkedIn":"https://www.linkedin.com/in/lindawishingrad/","campus":"LA","cohort":"33","jobTitle":"Front End Engineer","industry":"Tech","cities":["Las Vegas","Chula Vista"]},{"company":"Hopin","name":"Rachel Yoo","email":"yoo.rache@gmail.com","linkedIn":"https://www.linkedin.com/in/rachel-yoo/","campus":"LA","cohort":"33","jobTitle":"Frontend Engineer","industry":"Online Events Platform","cities":["Aurora","Denver","Paris"]},{"company":"Hopkins","name":"Nicole Abramowski","email":"nabramow@gmail.com","linkedIn":"https://www.linkedin.com/in/nicoleabramowski/","campus":"NYC","cohort":"16","jobTitle":"Senior Full Stack Engineer","industry":"Law","cities":["Honolulu","Wichita","Norfolk"]},{"company":"HotPyp","name":"Kendall Lu","email":"kendall.luu@gmail.com","linkedIn":"https://www.linkedin.com/in/kendall-lu/","campus":"LA","cohort":"31","jobTitle":"Front End Software Engineer","industry":"Cyber Security","cities":["Washington","San Francisco","San Jose"]},{"company":"Howl","name":"Adam Allison","email":"allisonadam81@gmail.com","linkedIn":"https://www.linkedin.com/in/allisonadam81/","campus":"LA / WCRI","cohort":"49","jobTitle":"Full Stack Software Engineer","industry":"Other","cities":["Kansas City","Irving","Wichita"]},{"company":"Howl","name":"Ryan Wallace","email":"ryanwallace1396@gmail.com","linkedIn":"https://www.linkedin.com/in/rwallie/","campus":"LA / WCRI","cohort":"49","jobTitle":"Software Engineer","industry":"Media","cities":["Irvine","Fort Worth","Laredo"]},{"company":"Hoylu","name":"Judy Song","email":"judysongg@gmail.com","linkedIn":"https://www.linkedin.com/in/judysongg/","campus":"LA / WCRI","cohort":"49","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Durham","Fort Wayne","San Diego","Santa Ana"]},{"company":"HqO","name":"Shadman Khan","email":"shadmankhan.825@gmail.com","linkedIn":"https://www.linkedin.com/in/shadmanmkhan/","campus":"NYC","cohort":"24","jobTitle":"Senior Software Engineer","industry":"Tenant Experience Platform/Commercial Real Estate","cities":["Reno","Berlin","Paris","Lincoln"]},{"company":"HubSpot","name":"Michael Caballero","email":"caballeromichaelus@gmail.com","linkedIn":"https://www.linkedin.com/in/michael-caballero-a48b0b211/","campus":"LA","cohort":"42","jobTitle":"Senior Software Engineer I","industry":"Software","cities":["Henderson","San Jose","Sydney"]},{"company":"Human Interest","name":"Paulo Choi","email":"Paulinho@hey.com","linkedIn":"https://www.linkedin.com/in/paulochoi","campus":"PTRI","cohort":"2","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Philadelphia","Greensboro","Atlanta"]},{"company":"Humana","name":"Jeffery Richardson","email":"Jeffery.erichardson03@gmail.com","linkedIn":"https://www.linkedin.com/in/jefferyrichardsonii","campus":"FTRI / CTRI","cohort":"12","jobTitle":"Senior Software Engineer","industry":"Insurance","cities":["Boston","Sacramento","Austin","Scottsdale"]},{"company":"HumanQ","name":"Aya Moosa","email":"ayamoosa1@gmail.com","linkedIn":"https://www.linkedin.com/in/ayamoosa/","campus":"LA / WCRI","cohort":"55","jobTitle":"Full Stack Developer","industry":"Other","cities":["Mesa","Lexington","San Francisco","Las Vegas"]},{"company":"Hunter Strategy","name":"Rankin Draa","email":"rankindraa@gmail.com","linkedIn":"https://www.linkedin.com/in/rankin-draa/","campus":"LA / WCRI","cohort":"49","jobTitle":"Application Developer","industry":"IT Services","cities":["Chula Vista","London","Anaheim","Bakersfield"]},{"company":"Hy-Vee","name":"Daniel An","email":"da568@georgetown.edu","linkedIn":"https://www.linkedin.com/in/d-an96/","campus":"NYC / ECRI","cohort":"36","jobTitle":"Software Engineer","industry":"Restaurant, Food, and Beverage","cities":["New Orleans","Fort Wayne","Chandler","Charlotte"]},{"company":"Hy-Vee","name":"Paul Perez","email":"pau.per92@gmail.com","linkedIn":"https://www.linkedin.com/in/perezp92","campus":"NYC / ECRI","cohort":"31","jobTitle":"Software Engineer II","industry":"Restaurant, Food, and Beverage","cities":["Cleveland","San Francisco"]},{"company":"Hyliion","name":"Gordon Yu","email":"gordon@gordonyu.com","linkedIn":"https://www.linkedin.com/in/gordonu/","campus":"LA","cohort":"16","jobTitle":"Senior Full Stack Engineer","industry":"Electric Vehicles","cities":["St. Louis","Chula Vista"]},{"company":"Hypergiant","name":"Abu Fofanah","email":"Bubakarrr@gmail.com","linkedIn":"https://www.linkedin.com/in/Abu-Fofanah/","campus":"LA","cohort":"41","jobTitle":"Senior Frontend Developer","industry":"Technology","cities":["Norfolk","Mumbai","Toledo"]},{"company":"Hyperproof","name":"Tai Nguyen","email":"ndhuutai1@gmail.com","linkedIn":"","campus":"PTRI","cohort":"Beta","jobTitle":"Software Engineer","industry":"Compliance Operations","cities":["Reno","Baltimore","Chesapeake","Albuquerque"]},{"company":"Hyster-Yale Group","name":"Patrick Mojica","email":"patrickmojica@gmail.com","linkedIn":"https://www.linkedin.com/in/patrick-mojica/","campus":"LA / WCRI","cohort":"49","jobTitle":"Software Engineer II - Emerging Technology","industry":"Automotive","cities":["Pittsburgh"]},{"company":"IAPP","name":"Wanlu Ding","email":"wanlu.ding@gmail.com","linkedIn":"https://www.linkedin.com/in/wanlu-ding/","campus":"NYC / ECRI","cohort":"42","jobTitle":"Fullstack software engineer (Contractor)","industry":"Consulting","cities":["Oakland","El Paso","Toronto","Honolulu"]},{"company":"IBI Group","name":"wisdom liu","email":"wliu1290@gmail.com","linkedIn":"https://www.linkedin.com/in/wisdom-liu/","campus":"LA","cohort":"27","jobTitle":"Software Developer","industry":"Architectural Services","cities":["Aurora","Oakland"]},{"company":"IBM","name":"Annette Lin","email":"al261310@gmail.com","linkedIn":"https://www.linkedin.com/in/alin10/","campus":"NYC","cohort":"9","jobTitle":"Software engineer, backend","industry":"IT","cities":["El Paso","Atlanta","Oakland"]},{"company":"IBM","name":"Jimmy Deng","email":"Jdeng619@yahoo.com","linkedIn":"https://www.linkedin.com/in/zhijimmydeng/","campus":"LA","cohort":"30","jobTitle":"Software Developer - Cloud Software Developer","industry":"Sales? Tbh idk","cities":["Wichita","Lubbock","Detroit","Garland"]},{"company":"IBM","name":"Kyle Jurassic","email":"kjurassic@protonmail.com","linkedIn":"https://www.linkedin.com/in/kylejurassic/","campus":"NYC","cohort":"22","jobTitle":"Cloud Engineer","industry":"Technology","cities":["Stockton","San Antonio","Newark"]},{"company":"IBM","name":"Nader Almogazy","email":"nader73107@gmail.com","linkedIn":"https://www.linkedin.com/in/nader-almogazy-97603080/","campus":"NYC","cohort":"30","jobTitle":"Software Engineer","industry":"Tech","cities":["Fresno"]},{"company":"IBM","name":"Brian Bui","email":"umius.brian@gmail.com","linkedIn":"https://www.linkedin.com/in/umius-brian/","campus":"LA","cohort":"35","jobTitle":"Cloud Engineer","industry":"Information Technology & Services","cities":["Miami"]},{"company":"IBM","name":"Vessy Shestorkina","email":"v.shestorkina@gmail.com","linkedIn":"https://www.linkedin.com/in/shestorkina/","campus":"NYC","cohort":"15","jobTitle":"Full Stack Developer","industry":"Technology & Consulting","cities":["Sรฃo Paulo"]},{"company":"Icetec Energy Services","name":"Nicholas Ly","email":"lynick14@gmail.com","linkedIn":"https://www.linkedin.com/in/nicholasly/","campus":"FTRI / CTRI","cohort":"15","jobTitle":"Senior Applications Engineer","industry":"Other","cities":["Glendale","Plano"]},{"company":"ICF","name":"David Cheng","email":"davidzcheng@protonmail.com","linkedIn":"https://www.linkedin.com/in/davidzcheng/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Software Engineer","industry":"Consulting","cities":["Riverside","Kansas City","Tampa","Oakland"]},{"company":"ICF","name":"Gwen Phillips","email":"gwen.phil@gmail.com","linkedIn":"https://www.linkedin.com/in/gwen-phillips/","campus":"PTRI","cohort":"6","jobTitle":"Frontend Developer","industry":"Consulting","cities":["Wichita","Toledo","Glendale"]},{"company":"IDEMIA","name":"David Conrad Friesen","email":"conrad.friesen@pm.me","linkedIn":"https://www.linkedin.com/in/conrad-friesen/","campus":"FTRI","cohort":"4","jobTitle":"Software Engineer I","industry":"Software / Tech","cities":["Tucson","Boston","Nashville","Columbus"]},{"company":"Idemia","name":"Tommy Edmunds","email":"tommyedmunds5@gmail.com","linkedIn":"https://www.linkedin.com/in/tommy-edmunds-a91aa41a9/","campus":"FTRI","cohort":"2","jobTitle":"Software Engineer","industry":"Security","cities":["Boston","Dallas","Chesapeake","Corpus Christi"]},{"company":"iHeartMedia","name":"Genevieve Annable","email":"genevieveannable@gmail.com","linkedIn":"https://www.linkedin.com/in/genevieveannable/","campus":"LA","cohort":"47","jobTitle":"Full-Stack Engineer","industry":"Entertainment","cities":["Norfolk"]},{"company":"iHeartMedia","name":"Alexa Nunes","email":"alexaraenunes@gmail.com","linkedIn":"https://www.linkedin.com/in/alexanunes/","campus":"NYC / ECRI","cohort":"33","jobTitle":"Software Engineer","industry":"News/Entertainment/Streaming Platforms","cities":["Phoenix","Columbus","Seattle"]},{"company":"iHeartRadio","name":"Serhii Kaistrenko","email":"skaistrenko@gmail.com","linkedIn":"https://www.linkedin.com/in/skaistrenko/","campus":"NYC","cohort":"9","jobTitle":"Software Engineer","industry":"Hospitality","cities":["Washington","Denver","Charlotte"]},{"company":"Impending Bloom","name":"William Magee","email":"wmagee03@gmail.com","linkedIn":"https://www.linkedin.com/in/william-magee-22a677181/","campus":"NYC","cohort":"13","jobTitle":"Data Engineer","industry":"Fintech","cities":["Memphis","Las Vegas"]},{"company":"Inari","name":"Kelly Dekitani","email":"kellydekitani@gmail.com","linkedIn":"https://www.linkedin.com/in/kelly-dekitani/","campus":"LA","cohort":"33","jobTitle":"Full Stack Engineer","industry":"Biotech/Agriculture","cities":["London","Indianapolis","Buffalo"]},{"company":"Inbrace","name":"Jim Yoon","email":"jimyoon90@gmail.com","linkedIn":"https://www.linkedin.com/in/jimkyoon","campus":"LA","cohort":"25","jobTitle":"Software Engineer","industry":"Health","cities":["Plano","Kansas City"]},{"company":"Industrious","name":"Bryan Li","email":"Bryan.li@foxmail.com","linkedIn":"https://www.linkedin.com/in/bbbryan14/","campus":"NYC","cohort":"8","jobTitle":"Software Engineer","industry":"","cities":["Colorado Springs"]},{"company":"Infinite Computer Solutions","name":"Brianna Sookhoo","email":"brianna.sookhoo24@gmail.com","linkedIn":"https://www.linkedin.com/in/brianna-sookhoo/","campus":"LA","cohort":"35","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Glendale","Sydney","Milwaukee"]},{"company":"Influent","name":"Adam Berri","email":"adamberri123@gmail.com","linkedIn":"https://www.linkedin.com/in/adamberri/","campus":"NYC","cohort":"29","jobTitle":"Software Engineer 1","industry":"Social Media","cities":["Scottsdale","Saint Paul","San Francisco","Corpus Christi"]},{"company":"Influx Data","name":"Grace Spletzer","email":"gracespletzer05@gmail.com","linkedIn":"https://www.linkedin.com/in/grace-spletzer/","campus":"LA","cohort":"36","jobTitle":"Engineer I","industry":"Database service","cities":["Portland","Mumbai","Irving","Oakland"]},{"company":"InfluxData","name":"Bill OConnell","email":"wdoconnell@gmail.com","linkedIn":"https://www.linkedin.com/in/bill-oconnell/","campus":"NYC","cohort":"30","jobTitle":"Software Engineer","industry":"SaaS","cities":["Philadelphia","Washington","Mesa"]},{"company":"Infor","name":"Olga Naumova","email":"leliknaum@gmail.com","linkedIn":"https://www.linkedin.com/in/onaumova/","campus":"NYC","cohort":"13","jobTitle":"Software Engineer","industry":"software","cities":["Mumbai","Arlington"]},{"company":"Infosys","name":"Honghao Sun","email":"ilovepuffseven@gmail.com","linkedIn":"https://www.linkedin.com/in/honghaosunmichael/","campus":"LA / WCRI","cohort":"52","jobTitle":"Technical lead","industry":"IT Services","cities":["San Jose","Plano"]},{"company":"Infosys","name":"Reuben Kirsh","email":"reubenakirsh@gmail.com","linkedIn":"https://www.linkedin.com/in/reubenkirsh/","campus":"LA","cohort":"41","jobTitle":"Technology Analyst","industry":"Tech","cities":["Washington","St. Petersburg","Fort Worth","Seattle"]},{"company":"Infosys","name":"Samuel Ratemo","email":"Sratemo@gmail.com","linkedIn":"https://www.linkedin.com/in/samuelratemo/","campus":"LA","cohort":"24","jobTitle":"Technology lead -US","industry":"Entertainment","cities":["Mesa"]},{"company":"Inhance Digital","name":"Brian Chiang","email":"chiangbri@gmail.com","linkedIn":"https://www.linkedin.com/in/ch-brian/","campus":"LA","cohort":"34","jobTitle":"Software Engineer","industry":"Marketing","cities":["Memphis","Stockton"]},{"company":"Initiative","name":"Brian Cheng","email":"Chengbrian24@gmail.com","linkedIn":"https://www.linkedin.com/in/brian-cheng24/","campus":"LA","cohort":"45","jobTitle":"Full Stack Developer","industry":"Media Agency","cities":["North Las Vegas","San Francisco","Aurora"]},{"company":"INLT","name":"Andrew Wong","email":"andwong91@gmail.com","linkedIn":"https://www.linkedin.com/in/andwong91/","campus":"LA","cohort":"23","jobTitle":"Full Stack Developer","industry":"","cities":["Cincinnati","Sรฃo Paulo"]},{"company":"Inman","name":"David Kim","email":"scriptura7773@gmail.com","linkedIn":"https://www.linkedin.com/in/davidkim7773/","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Developer","industry":"Real Estate","cities":["Riverside","Washington","Portland"]},{"company":"Innovative Defense Technologies","name":"Daniel Pietsch","email":"drpietsch14@gmail.com","linkedIn":"https://www.linkedin.com/in/danielpietsch14/","campus":"NYOI","cohort":"1","jobTitle":"Associate Software Engineer","industry":"Other","cities":["Tampa","Lincoln","Atlanta"]},{"company":"InRhythm","name":"Altai Chiang","email":"altai.chiang@gmail.com","linkedIn":"https://www.linkedin.com/in/altaic/","campus":"NYC","cohort":"8","jobTitle":"Senior Software Engineer","industry":"Consulting","cities":["Honolulu","Sydney","Paris","Kansas City"]},{"company":"InRhythm","name":"Eric Marcatoma","email":"ericmarc159@gmail.com","linkedIn":"https://www.linkedin.com/in/ericmarc159/","campus":"NYC","cohort":"22","jobTitle":"Software Engineer","industry":"Information Technology & Services","cities":["Tucson","Irvine","Albuquerque"]},{"company":"InRhythm","name":"Benjamin Johnson","email":"johnsben002@gmail.com","linkedIn":"https://www.linkedin.com/in/johnsben002/","campus":"NYC","cohort":"16","jobTitle":"Software Engineer: Web Accessibility","industry":"Consulting","cities":["Boston"]},{"company":"InRhythm","name":"Johnson Che","email":"Johnson.Che01@gmail.com","linkedIn":"https://www.linkedin.com/in/johnsonche/","campus":"NYC","cohort":"30","jobTitle":"Software Engineer","industry":"Consulting","cities":["Garland","Fort Worth"]},{"company":"InRhythm","name":"Wai Fai Lau","email":"wlau8088@gmail.com","linkedIn":"https://www.linkedin.com/in/wai-fai-lau/","campus":"NYC","cohort":"22","jobTitle":"Software Engineer","industry":"Software Consulting","cities":["Los Angeles","Cincinnati","Irving","Tokyo"]},{"company":"Insider, Inc.","name":"Michael Lauri","email":"michael.lauri@gmail.com","linkedIn":"https://www.linkedin.com/in/mlauri/","campus":"NYC","cohort":"20","jobTitle":"Software Engineer II","industry":"Online Media","cities":["Jacksonville","Glendale","Louisville"]},{"company":"Insider, Inc.","name":"Mitchel Severe","email":"mitchelsevere@gmail.com","linkedIn":"https://www.linkedin.com/in/misevere/","campus":"NYC","cohort":"16","jobTitle":"Software Engineer III","industry":"Digital Media","cities":["Fresno","London","New York"]},{"company":"Insight Global","name":"Lucas Mobley","email":"Lucas.W.Mobley@Gmail.com","linkedIn":"https://www.linkedin.com/in/lucasmobley/","campus":"LA","cohort":"41","jobTitle":"Front End Developer","industry":"Entertainment","cities":["Las Vegas"]},{"company":"Insight Global (contract for Nike)","name":"Dave Franz","email":"davefranz@me.com","linkedIn":"https://www.linkedin.com/in/dave-franz/","campus":"LA","cohort":"33","jobTitle":"Senior Full-Stack Automation Developer","industry":"athletic footwear and apparel","cities":["Mexico City","Buffalo"]},{"company":"Insight Global Consulting","name":"Andrew Kessinger","email":"andrew.kessinger@gmail.com","linkedIn":"","campus":"NYC","cohort":"27","jobTitle":"React developer","industry":"Consulting","cities":["Phoenix"]},{"company":"Instride","name":"Jayvee Aspa","email":"jayvee.aspa@gmail.com","linkedIn":"https://www.linkedin.com/in/jayveeaspa/","campus":"LA","cohort":"29","jobTitle":"Software Engineer","industry":"Education","cities":["Santa Ana","Louisville","Virginia Beach","Stockton"]},{"company":"Integral","name":"Anna Larouche","email":"alarouche@gmail.com","linkedIn":"https://www.linkedin.com/in/anna-larouche/","campus":"NYC / ECRI","cohort":"36","jobTitle":"Full-stack Engineer","industry":"Healthcare","cities":["Garland"]},{"company":"Intelepeer","name":"Colton Robbins","email":"coltondr@gmail.com","linkedIn":"https://www.linkedin.com/in/c-robbins/","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Developer","industry":"Other","cities":["Portland"]},{"company":"Intellective","name":"Dennis Lopez","email":"dnnis.lpz@gmail.com","linkedIn":"https://www.linkedin.com/in/dennis-lopezsb/","campus":"LA","cohort":"40","jobTitle":"Full-Stack Developer","industry":"Internet","cities":["Laredo","Norfolk"]},{"company":"Intent Media","name":"Denali DeMots","email":"denali.demots@gmail.com","linkedIn":"https://www.linkedin.com/in/denali-demots/","campus":"NYC","cohort":"3","jobTitle":"Software Engineer","industry":"","cities":["Jersey City"]},{"company":"Interactive Brokers","name":"Luke McInerney","email":"mciluke@gmail.com","linkedIn":"https://www.linkedin.com/in/luke-mcinerney/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Software Engineer","industry":"Fintech","cities":["Irving"]},{"company":"Intercom","name":"Michael Colley","email":"michael.e.colley@googlemail.com","linkedIn":"https://www.linkedin.com/in/michaelecolley/","campus":"NYC","cohort":"27","jobTitle":"Product Engineer","industry":"SaaS, business creation services","cities":["Jacksonville","Jersey City","Louisville","Long Beach"]},{"company":"International association of the better business bureau","name":"Giovanni Rodriguez","email":"Gjrod16@gmail.com","linkedIn":"https://www.linkedin.com/in/giovanni-rodriguez2?trk=public_profile_browsemap&challengeId=AQFtoT_NoFD3KAAAAYkntGZKTiNfC60o4v2Z4zYAnz_4_KDTQUBD7ql40SFHKBenfzE9c6FBwiMar6V09FHeEqmjVS1EAfJ7Ag&submissionId=3cc6cd5a-1812-6f17-7ceb-2e5c0f6f3658&challengeSource=AgFf2bVUVWWRnwAAAYkntJ9Q3ysytHHh91YXaw8gQiFJEKewOYeYX6rLjYNFhlQ&challegeType=AgGCPMxM5AqqqwAAAYkntJ9TeXuuC8zmVgvrjuLxi773fqd8_2_50rU&memberId=AgFbJ9qnK0duCgAAAYkntJ9WYBoUAlgShMkO190TrWZI9XA&recognizeDevice=AgGnKEfL32RWyAAAAYkntJ9aHRqgkhTAzFQoMuIEWQbDY5Tac0sU","campus":"NYC / ECRI","cohort":"33","jobTitle":"Full Stack Developer","industry":"Other","cities":["Milwaukee"]},{"company":"International Business Machines","name":"Michael Evans","email":"amike.evans@gmail.com","linkedIn":"https://www.linkedin.com/in/michael-evans-8278b865/","campus":"NYC","cohort":"14","jobTitle":"Lead Full Stack Developer","industry":"Computer Software","cities":["Los Angeles","Portland","Raleigh"]},{"company":"Intrinsic Enterprises","name":"Jasmine A Gonzalez","email":"jasminezalez@gmail.com","linkedIn":"https://www.linkedin.com/in/jasminezalez/","campus":"PTRI","cohort":"7","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Newark"]},{"company":"Intuit","name":"Daria Bondarenko","email":"dan4ik18@gmail.com","linkedIn":"https://www.linkedin.com/in/daria-b/","campus":"NYC","cohort":"19","jobTitle":"Software Engineer","industry":"Enterprise Software","cities":["Henderson"]},{"company":"Intuit","name":"Davide Molino","email":"davidemmolino@gmail.com","linkedIn":"https://www.linkedin.com/in/davide-molino/","campus":"LA","cohort":"38","jobTitle":"Software Engineer III","industry":"Technology","cities":["Buffalo","Tokyo","Atlanta"]},{"company":"Intuit","name":"Manjeet Kaur","email":"manjeet175@gmail.com","linkedIn":"https://www.linkedin.com/in/kaurmanjeet/","campus":"NYC","cohort":"5","jobTitle":"Senior Frontend Engineer","industry":"","cities":["Mumbai","Sรฃo Paulo"]},{"company":"Intuit","name":"Matthew Marchand","email":"matthew.marchand.93@gmail.com","linkedIn":"https://www.linkedin.com/in/mnmarchand/","campus":"LA","cohort":"40","jobTitle":"Software Engineer II","industry":"Fintech","cities":["Phoenix","London","Greensboro","Portland"]},{"company":"intuit","name":"Yevgeniy Skroznikov","email":"yevskro@gmail.com","linkedIn":"https://www.linkedin.com/in/yevgeniyskroznikov/","campus":"NYC","cohort":"18","jobTitle":"Software Engineer II","industry":"Enterprise software","cities":["Lexington","Albuquerque","Aurora","Memphis"]},{"company":"InvestCloud","name":"Curtis Lovrak","email":"curtislovrak@gmail.com","linkedIn":"https://www.linkedin.com/in/curtislovrak/","campus":"NYOI","cohort":"4","jobTitle":"UI Developer","industry":"Fintech","cities":["Plano","Garland"]},{"company":"Invisory","name":"Thomas Kady","email":"thomas.kady@gmail.com","linkedIn":"https://www.linkedin.com/in/thomas-kady/","campus":"FTRI / CTRI","cohort":"14","jobTitle":"Software Developer","industry":"Cloud Services","cities":["San Antonio","Lexington"]},{"company":"IP.com","name":"Matthew Miller","email":"matthewjohnmiller2020@gmail.com","linkedIn":"https://www.linkedin.com/in/matthew-miller2020/","campus":"FTRI","cohort":"5","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Saint Paul","Henderson","Irvine"]},{"company":"Iridium Satellite LLC","name":"Lyam Hunt","email":"lyamnhunt@gmail.com","linkedIn":"https://www.linkedin.com/in/lyamhunt/","campus":"NYC / ECRI","cohort":"34","jobTitle":"Software Developer II","industry":"Telecommunications","cities":["Chicago","Anaheim"]},{"company":"IronNet Cybersecurity","name":"Daniel Stein","email":"danlikesbikes@gmail.com","linkedIn":"https://www.linkedin.com/in/dangineer/","campus":"LA","cohort":"33","jobTitle":"Senior UI/UX Developer","industry":"Computer and Network Security","cities":["Fort Wayne","Cincinnati","St. Petersburg"]},{"company":"ISAT Total Support","name":"Anthony Le","email":"anthonyle910@yahoo.com","linkedIn":"https://www.linkedin.com/in/anthonyle910/","campus":"LA / WCRI","cohort":"58","jobTitle":"Full Stack Developer","industry":"Other","cities":["Atlanta"]},{"company":"Isobar","name":"Anthony Torrero","email":"Anthonyduarteee@gmail.com","linkedIn":"https://www.linkedin.com/in/anthony-duarte-4b8798159/","campus":"LA","cohort":"41","jobTitle":"Frontend Developer","industry":"Creative Agency","cities":["Mumbai","Omaha","Washington"]},{"company":"Isobar","name":"James Gary","email":"jim@jamesgary.com","linkedIn":"https://www.linkedin.com/in/james-gary/","campus":"NYC","cohort":"15","jobTitle":"Senior Front End Developer","industry":"Media","cities":["San Diego","Colorado Springs","Pittsburgh","San Jose"]},{"company":"iStrategyLabs","name":"Brittany Miltenberger","email":"brittany.miltenberger@gmail.com","linkedIn":"https://www.linkedin.com/in/brittanywm/","campus":"LA","cohort":"23","jobTitle":"Senior Web Developer","industry":"","cities":["Gilbert"]},{"company":"Itential","name":"Chao Zhong Yu","email":"ChaoY91@yahoo.com","linkedIn":"https://www.linkedin.com/in/czyu/","campus":"NYC","cohort":"28","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Newark","Arlington"]},{"company":"Ivy Energy","name":"Gavin Crews","email":"Gcrews1894@gmail.com","linkedIn":"https://www.linkedin.com/in/gavincrews/","campus":"LA","cohort":"39","jobTitle":"Frontend Engineer","industry":"Solar","cities":["Cincinnati","Chesapeake"]},{"company":"Ivy Energy","name":"Nicolas Pita","email":"pitanicolase@gmail.com","linkedIn":"https://www.linkedin.com/in/nicolaspita/","campus":"LA","cohort":"37","jobTitle":"Software Developer","industry":"Clean Energy","cities":["Memphis","Orlando","Phoenix"]},{"company":"Jam City","name":"Tony Ito-Cole","email":"tonyitocole@gmail.com","linkedIn":"https://www.linkedin.com/in/tony-ito-cole/","campus":"LA","cohort":"34","jobTitle":"Platform Engineer","industry":"Mobile Gaming","cities":["Minneapolis","Albuquerque"]},{"company":"Janus Health","name":"Benjamin Michareune","email":"ben.michareune@Gmail.com","linkedIn":"https://www.linkedin.com/in/benmichareune","campus":"FTRI / CTRI","cohort":"7","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Orlando","Chicago","Saint Paul"]},{"company":"Janus Healthcare","name":"Simon Lee","email":"simonlee1125@gmail.com","linkedIn":"https://www.linkedin.com/in/simonhlee/","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Software Engineer II","industry":"Healthcare","cities":["Aurora","Garland"]},{"company":"Jasper (AI)","name":"Marcellies Pettiford","email":"marcellies@pettifords.xyz","linkedIn":"https://www.linkedin.com/in/marcellies-pettiford/","campus":"LA / WCRI","cohort":"49","jobTitle":"Software Engineer II","industry":"Software / Tech","cities":["Cincinnati","Memphis"]},{"company":"Jogg","name":"Alex Kolb","email":"akolb981@gmail.com","linkedIn":"https://www.linkedin.com/in/alexanderjkolb/","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Minneapolis","Laredo","Anchorage","Dallas"]},{"company":"JP Morgan","name":"jonathan k coe","email":"jon.coe@codesmith.io","linkedIn":"https://www.linkedin.com/in/jonathan-k-coe/","campus":"NYC","cohort":"4","jobTitle":"Software Engineer","industry":"","cities":["Mexico City"]},{"company":"JP Morgan","name":"Jimmy Tran","email":"jvtran48@gmail.com","linkedIn":"https://www.linkedin.com/in/jimmytran48/","campus":"NYC / ECRI","cohort":"40","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Oakland","Sรฃo Paulo"]},{"company":"JP Morgan / Chase","name":"Wayne Wilcox","email":"wilcox_wayne@hotmail.com","linkedIn":"https://www.linkedin.com/in/wayne-wilcox/","campus":"NYC","cohort":"19","jobTitle":"Junior Developer Associate","industry":"Fintech","cities":["New Orleans","Anaheim","Philadelphia","Miami"]},{"company":"JP Morgan Chase","name":"David Behmoaras","email":"dbehmoaras@gmail.com","linkedIn":"https://www.linkedin.com/in/david-behmoaras/","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"Fintech","cities":["Miami","Norfolk","Bakersfield","Baltimore"]},{"company":"JP Morgan Chase","name":"Howard Na","email":"howardna317@gmail.com","linkedIn":"https://www.linkedin.com/in/howard-na-jr/","campus":"LA","cohort":"26","jobTitle":"Software Engineer","industry":"Media","cities":["Jersey City","San Diego","Raleigh"]},{"company":"JP Morgan Chase","name":"Stewart Elmore","email":"stewart.elmore@gmail.com","linkedIn":"https://www.linkedin.com/in/stewart-elmore/","campus":"NYC / ECRI","cohort":"31","jobTitle":"Associate Software Engineer","industry":"Fintech","cities":["Columbus","Sรฃo Paulo"]},{"company":"JP Morgan Chase & Co","name":"Parker Steinberg","email":"parker.s52@gmail.com","linkedIn":"https://www.linkedin.com/in/parker-steinberg/","campus":"LA / WCRI","cohort":"52","jobTitle":"Software Engineer","industry":"Fintech","cities":["Chesapeake","Houston"]},{"company":"JP Morgan Chase & Co.","name":"Jimmy Chen","email":"jimmychen12249@gmail.com","linkedIn":"https://www.linkedin.com/in/jimchn/","campus":"NYC","cohort":"17","jobTitle":"Software Engineer","industry":"Fintech","cities":["Honolulu","Memphis","San Francisco","Wichita"]},{"company":"JP Morgan Chase & Co.","name":"Mike Oโ€™Donnell","email":"michaelodonnell18@gmail.com","linkedIn":"https://www.linkedin.com/in/michaelodonnell18","campus":"NYC","cohort":"28","jobTitle":"Full Stack Developer","industry":"Banking","cities":["Minneapolis","Henderson","Stockton","Philadelphia"]},{"company":"JPMChase","name":"Adam Wilson","email":"aswilson87@gmail.com","linkedIn":"https://www.linkedin.com/in/aswilson87/","campus":"PTRI","cohort":"1","jobTitle":"Associate Engineer","industry":"Finance","cities":["Irving","Lincoln"]},{"company":"JPMorgan","name":"Winford Lin","email":"linwinford@gmail.com","linkedIn":"https://www.linkedin.com/in/winfordlin/","campus":"NYC","cohort":"19","jobTitle":"Software Engineer II","industry":"Fintech","cities":["San Diego","Honolulu"]},{"company":"JPMorgan Chase","name":"Adam White","email":"adamkarnwhite@gmail.com","linkedIn":"https://www.linkedin.com/in/adam-karn-white","campus":"NYC / ECRI","cohort":"31","jobTitle":"Senior Associate Software Engineer","industry":"Fintech","cities":["Nashville"]},{"company":"JPMorgan Chase","name":"Adrian Uesugui","email":"auesugui@gmail.com","linkedIn":"https://www.linkedin.com/in/auesugui/","campus":"LA","cohort":"46","jobTitle":"Associate Software Engineer","industry":"Fintech","cities":["Lincoln","Chula Vista","Norfolk"]},{"company":"JPMorgan Chase","name":"John Donovan ","email":"jodonovan845@gmail.com","linkedIn":"https://www.linkedin.com/in/john-d-donovan","campus":"NYC / ECRI","cohort":"37","jobTitle":"Software Engineer - Associate II","industry":"Software / Tech","cities":["Tucson","Saint Paul","Bakersfield","New Orleans"]},{"company":"JPMorgan Chase & Co","name":"Jo Huang","email":"johuangx@gmail.com","linkedIn":"https://www.linkedin.com/in/johuangx/","campus":"NYOI","cohort":"1","jobTitle":"Software Engineer","industry":"Fintech","cities":["Sydney","Raleigh","New Orleans"]},{"company":"JPMorgan Chase & Co.","name":"Stanley Huang","email":"iamstanleyhuang@gmail.com","linkedIn":"https://www.linkedin.com/in/stanleyhuang16/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Fintech","cities":["Fort Wayne"]},{"company":"JPMorgan Chase & Co.","name":"Terence Petersen","email":"robo.terence@gmail.com","linkedIn":"https://www.linkedin.com/in/terence-petersen/","campus":"NYC","cohort":"29","jobTitle":"Associate Software Engineer","industry":"Merchant Services","cities":["Wichita","Chandler","Seattle","Lincoln"]},{"company":"Juniper Behavioral Health","name":"Kelvin Cuesta","email":"kelvinscuesta@gmail.com","linkedIn":"https://www.linkedin.com/in/kelvinscuesta/","campus":"NYC","cohort":"16","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Indianapolis","Toronto"]},{"company":"Justworks","name":"Shelby Neuman","email":"shelbydneuman@gmail.com","linkedIn":"https://www.linkedin.com/in/shelbyneuman/","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Engineer","industry":"Other","cities":["Tucson","Sacramento"]},{"company":"JustWorks Labs","name":"Sophia Huttner","email":"sophjean@gmail.com","linkedIn":"https://www.linkedin.com/in/sophia-huttner/","campus":"NYC","cohort":"16","jobTitle":"Frontend Software Engineer","industry":"HR Suite","cities":["North Las Vegas","Minneapolis"]},{"company":"Karr Barth Administrators","name":"Loralyn Milcarek","email":"loralyn.milcarek@gmail.com","linkedIn":"https://www.linkedin.com/in/loralyn-milcarek/","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Developer","industry":"Other","cities":["Columbus","Paris"]},{"company":"Keller Williams Realty, Inc","name":"Brent Speight","email":"brentjosephspeight@gmail.com","linkedIn":"https://www.linkedin.com/in/brent-speight/","campus":"LA","cohort":"44","jobTitle":"Software Engineer","industry":"Realty","cities":["Lubbock","Virginia Beach","Portland","Garland"]},{"company":"Kelley Blue Book (Cox Automotive)","name":"Ryan Bender","email":"rdbender@me.com","linkedIn":"https://www.linkedin.com/in/rdbender","campus":"LA","cohort":"46","jobTitle":"Software Engineer I","industry":"Automotive","cities":["Reno","Scottsdale","Fort Wayne","Paris"]},{"company":"Kevel","name":"Adam Joesten","email":"adamjoesten@gmail.com","linkedIn":"https://www.linkedin.com/in/adamjoesten/","campus":"LA","cohort":"40","jobTitle":"Senior Software Engineer (SDE II)","industry":"Adtech","cities":["Portland","Beijing","Fresno"]},{"company":"Key Bank (Laurel Road)","name":"Eric Pham","email":"ericpham36@gmail.com","linkedIn":"https://www.linkedin.com/in/epstylesoflife/","campus":"NYC","cohort":"12","jobTitle":"Senior Full Stack Engineer","industry":"Fintech","cities":["San Antonio","Lubbock"]},{"company":"Kibanx","name":"Celeste Knopf","email":"celesteknopf@gmail.com","linkedIn":"https://www.linkedin.com/in/celesteknopf/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Front End Engineer","industry":"Real Estate","cities":["Irvine"]},{"company":"Kin + Carta","name":"Eric Olaya","email":"ericolaya@gmail.com","linkedIn":"https://www.linkedin.com/in/eric-olaya/","campus":"FTRI","cohort":"3","jobTitle":"Software Engineer","industry":"Tech Consulting","cities":["Chesapeake","Newark","Corpus Christi"]},{"company":"Kindo","name":"Hannah Bernstein","email":"hbern00@gmail.com","linkedIn":"https://www.linkedin.com/in/bernstein-hannah/","campus":"LA / WCRI","cohort":"53","jobTitle":"Software Engineer","industry":"Artificial Intelligence","cities":["Anaheim","Aurora"]},{"company":"Kitman Labs","name":"Gregory Levine-Rozenvayn","email":"Grisha617@gmail.com","linkedIn":"https://www.linkedin.com/in/gregory-levine-rozenvayn","campus":"NYC","cohort":"24","jobTitle":"Senior Software Engineer, Frontend","industry":"Sports data science","cities":["Irvine","Virginia Beach"]},{"company":"Klarna","name":"Natalie Vick","email":"vicknatalie@gmail.com","linkedIn":"https://www.linkedin.com/in/vicknatalie/","campus":"NYC","cohort":"16","jobTitle":"Senior Frontend Engineer","industry":"Ecommerce","cities":["Houston","Tulsa","Detroit","Mexico City"]},{"company":"Klaviyo","name":"Amy Chen","email":"aechen46@gmail.com","linkedIn":"https://www.linkedin.com/in/amyechen/","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"Marketing Technology","cities":["Sacramento"]},{"company":"Klaviyo","name":"Elinor Weissberg","email":"elinorthw@gmail.com","linkedIn":"https://www.linkedin.com/in/elinorweissberg/","campus":"NYOI","cohort":"5","jobTitle":"Software Engineer II","industry":"Marketing/Advertising","cities":["Lincoln","Fort Worth","Madison"]},{"company":"Knotel","name":"Rocky Liao","email":"rliao3613@gmail.com","linkedIn":"https://linkedin.com/in/seemsrocky","campus":"NYC","cohort":"12","jobTitle":"Software engineer","industry":"Real Estate","cities":["Los Angeles"]},{"company":"Knowable","name":"Alex Sanhueza","email":"alexrsanhueza@gmail.com","linkedIn":"https://www.linkedin.com/in/alex-sanhueza/","campus":"LA","cohort":"37","jobTitle":"Software Development Engineer II (Front end)","industry":"Legal Services","cities":["Corpus Christi"]},{"company":"Komodo Health","name":"Ju Kim","email":"juhyuns98@gmail.com","linkedIn":"","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Engineer, Applications","industry":"Healthcare","cities":["Irving","Stockton","Chandler","Tucson"]},{"company":"Konami Gaming","name":"Aidan Noble-Goodman","email":"anoblegoodman@gmail.com","linkedIn":"www.linkedin.com/anoblegoodman","campus":"LA","cohort":"28","jobTitle":"Software Engineer II","industry":"Gaming/casino management software","cities":["Fresno","Indianapolis"]},{"company":"Kroger","name":"John Wong","email":"johnwong4150@gmail.com","linkedIn":"https://www.linkedin.com/in/john-wong-fongching/","campus":"LA / WCRI","cohort":"43","jobTitle":"Web Platform Engineer","industry":"Retail","cities":["Indianapolis"]},{"company":"Kroger","name":"Jason Seidler","email":"jsonseidler@gmail.com","linkedIn":"https://www.linkedin.com/in/jason-seidler/","campus":"NYC","cohort":"15","jobTitle":"Senior Front End Developer","industry":"Retail","cities":["Corpus Christi","Beijing","Sacramento","Chula Vista"]},{"company":"Kroger","name":"Kevin MacCoy","email":"kmaccoy@fau.edu","linkedIn":"https://www.linkedin.com/in/kevin-maccoy/","campus":"FTRI","cohort":"1","jobTitle":"Backend Engineer","industry":"Other","cities":["Indianapolis","St. Louis","Milwaukee","Atlanta"]},{"company":"Kroger","name":"Elise McConnell","email":"elisemcconnell11@gmail.com","linkedIn":"www.linkedin.com/in/elisemcconnell","campus":"FTRI / CTRI","cohort":"12","jobTitle":"Software Engineer","industry":"Retail","cities":["Mexico City","Durham"]},{"company":"Kryptowire","name":"Michael Ross","email":"michaelalross@gmail.com","linkedIn":"https://linkedin.com/in/michaelalross","campus":"LA","cohort":"45","jobTitle":"Software Engineer II","industry":"DevSecOps","cities":["Chandler","Denver","Madison"]},{"company":"KyckGlobal","name":"Joseph Lee","email":"josephemlee@gmail.com","linkedIn":"https://www.linkedin.com/in/josephjslee/","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"Fintech","cities":["San Francisco","Long Beach","Chicago","Chesapeake"]},{"company":"Kyte Dynamics, Inc.","name":"Lawrence Yeh","email":"lawyeh391@gmail.com","linkedIn":"linkedin.com/in/lawyeh","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Santa Ana","Toledo"]},{"company":"LA County","name":"Vu Duong","email":"vthanhd@gmail.com","linkedIn":"www.linkedin.com/in/vu-duong","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Application Developer II","industry":"Government","cities":["Oklahoma City","Fort Wayne","Norfolk"]},{"company":"LaaSie.ai","name":"Tyler Sayles","email":"saylestyler@gmail.com","linkedIn":"https://www.linkedin.com/in/tylersayles/","campus":"NYC","cohort":"11","jobTitle":"Full stack Engineer","industry":"Marketing","cities":["Corpus Christi"]},{"company":"Lab49","name":"Eric Tacher","email":"erictacher@gmail.com","linkedIn":"https://www.linkedin.com/in/erictacher/","campus":"NYC","cohort":"23","jobTitle":"Web UI Engineer","industry":"Fintech Consulting","cities":["Sacramento","Corpus Christi"]},{"company":"Lasso Marketing","name":"Andy Tsou","email":"tsou.andy@gmail.com","linkedIn":"https://www.linkedin.com/in/andy-tsou/","campus":"LA","cohort":"45","jobTitle":"Integration Engineer","industry":"Health Care Marketing","cities":["Scottsdale","Detroit","Jacksonville","Washington"]},{"company":"LastPass","name":"E Kathuria","email":"e@kathuria.dev","linkedIn":"https://www.linkedin.com/in/ekathuria","campus":"NYC","cohort":"32","jobTitle":"Front End Engineer","industry":"Software / Tech","cities":["Anchorage","Lincoln","Stockton","Atlanta"]},{"company":"Lattitude","name":"Carolyn Zheng","email":"ruxinzheng01@gmail.com","linkedIn":"https://www.linkedin.com/in/ruxinzhengswe/","campus":"LA / WCRI","cohort":"57","jobTitle":"Software Engineer","industry":"Marketing/Advertising","cities":["Beijing","Omaha"]},{"company":"Launch Darkly","name":"Samuel Kim","email":"samuyyy@gmail.com","linkedIn":"https://www.linkedin.com/in/samuy/","campus":"NYC","cohort":"21","jobTitle":"Software Engineer (Backend)","industry":"Developer Tools","cities":["Buffalo","Winston-Salem","San Antonio","Sydney"]},{"company":"Lawmatics","name":"Omar Rana","email":"omar_rana93@hotmail.com","linkedIn":"https://www.linkedin.com/in/orana1/","campus":"LA","cohort":"45","jobTitle":"Full Stack Engineer","industry":"CRM for law firms","cities":["North Las Vegas","Chesapeake","Louisville","San Diego"]},{"company":"Leadpages","name":"Evan McNeely","email":"evanmcneely@me.com","linkedIn":"https://www.linkedin.com/in/evanmcneely/","campus":"PTRI","cohort":"6","jobTitle":"Software Engineer II","industry":"Marketing","cities":["Glendale"]},{"company":"Leaf Group (Society6)","name":"Oliver Roldan","email":"oproldan01@gmail.com","linkedIn":"","campus":"LA / WCRI","cohort":"40","jobTitle":"Frontend Engineer","industry":"Other","cities":["Albuquerque","Irving"]},{"company":"LeaseLock","name":"Kara Chisholm","email":"kkchisholm@gmail.com","linkedIn":"https://www.linkedin.com/in/karachisholm/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Albuquerque","Bakersfield"]},{"company":"LedgerX","name":"Abaas Khorrami","email":"abaas.khorrami@gmail.com","linkedIn":"https://www.linkedin.com/in/abaas-khorrami/","campus":"NYC","cohort":"16","jobTitle":"Senior Frontend Engineer","industry":"Fintech","cities":["Miami"]},{"company":"LegacyScape","name":"Cassidy Johnson","email":"cassidyrose56@gmail.com","linkedIn":"https://www.linkedin.com/in/cassidy-r-johnson/","campus":"NYC / ECRI","cohort":"36","jobTitle":"Software Engineer","industry":"Other","cities":["Corpus Christi"]},{"company":"LegalZoom","name":"Henry Park","email":"codedenma@gmail.com","linkedIn":"https://www.linkedin.com/in/henrytpark/","campus":"LA / WCRI","cohort":"52","jobTitle":"Software Engineer II, Product Experiences","industry":"Other","cities":["Chandler","Mesa","San Francisco"]},{"company":"Lendbuzz Inc.","name":"Quoc Do","email":"dlaquoc1@gmail.com","linkedIn":"https://www.linkedin.com/in/dlaquoc/","campus":"NYC / ECRI","cohort":"34","jobTitle":"Full Stack Engineer Co-op (Internship)","industry":"Automotive","cities":["Los Angeles","New York"]},{"company":"Lessen Inc","name":"Davette Bryan","email":"davettejones11@gmail.com","linkedIn":"https://www.linkedin.com/in/davette-bryan/","campus":"NYC","cohort":"26","jobTitle":"Jr. Software Engineer","industry":"Real Estate","cities":["Gilbert","Los Angeles"]},{"company":"Lever","name":"Aiden Blinn","email":"apblinn@gmail.com","linkedIn":"https://www.linkedin.com/in/aidenblinn/","campus":"FTRI","cohort":"7","jobTitle":"Integrations Engineer","industry":"IT Services","cities":["Mesa","Phoenix","Omaha"]},{"company":"Lever","name":"Jae Lee","email":"jaelee213@gmail.com","linkedIn":"https://www.linkedin.com/in/jaelee213/","campus":"LA","cohort":"25","jobTitle":"Software Engineer","industry":"Recruiting","cities":["Virginia Beach","Memphis","New Orleans","Seattle"]},{"company":"Lever","name":"Sophia Sam","email":"sophia.sam96@gmail.com","linkedIn":"https://www.linkedin.com/in/sophia-sam","campus":"FTRI","cohort":"7","jobTitle":"Software Engineer II","industry":"Software / Tech","cities":["Tampa","Stockton","Albuquerque"]},{"company":"Lexis Nexis","name":"Danny Martinez","email":"codesmith@jdanielmartinez.com","linkedIn":"https://www.linkedin.com/in/jdanielmartinez/","campus":"LA","cohort":"42","jobTitle":"GraphQL Full Stack Developer","industry":"Paralegal","cities":["Columbus"]},{"company":"LexisNexis","name":"Graham Albachten","email":"albachteng@gmail.com","linkedIn":"https://www.linkedin.com/in/graham-albachten-00162a52/","campus":"FTRI","cohort":"1","jobTitle":"GraphQL Full Stack Developer","industry":"Legal","cities":["Baltimore","Cleveland"]},{"company":"Lexmark","name":"Luke Roberts","email":"luke.roberts089@gmail.com","linkedIn":"https://www.linkedin.com/in/luke-roberts0/","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Oakland","Greensboro"]},{"company":"Liberty Maritime","name":"Garrett Layden","email":"garlayden@gmail.com","linkedIn":"https://linkedin.com/in/garrett-layden","campus":"NYC / ECRI","cohort":"33","jobTitle":"Full Stack Developer","industry":"Other","cities":["Henderson","Boston"]},{"company":"Liberty Mutual","name":"Bryan Kim","email":"bkim0826@gmail.com","linkedIn":"https://www.linkedin.com/in/bkimmm/","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Software Engineer","industry":"Insurance","cities":["Garland","Reno","Sacramento","Honolulu"]},{"company":"Liberty Mutual","name":"Cristian De Los Rios","email":"Cris2595@gmail.com","linkedIn":"https://www.linkedin.com/in/cristian-dlr/","campus":"FTRI","cohort":"5","jobTitle":"Software Engineer","industry":"Insurance","cities":["Stockton"]},{"company":"Liberty Mutual","name":"Patrick Sullivan","email":"patrick@jsullivan.org","linkedIn":"https://www.linkedin.com/in/patrick-j-m-sullivan/","campus":"LA","cohort":"43","jobTitle":"Software Engineer","industry":"Insurance","cities":["Denver","Anaheim","Toronto","Buffalo"]},{"company":"Liberty Mutual","name":"Robert Tipton","email":"robbytiptontol@gmail.com","linkedIn":"https://www.linkedin.com/in/robert-tipton/","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Engineer","industry":"Insurance","cities":["Dallas"]},{"company":"Liberty Mutual","name":"Tyler Jameson Martinez","email":"tm6002005@gmail.com","linkedIn":"https://www.linkedin.com/mwlite/in/tylerjamesonmartinez","campus":"LA","cohort":"43","jobTitle":"Software engineer","industry":"Insurance","cities":["Lexington","Lincoln"]},{"company":"LifeOmic","name":"Chloe Courtois","email":"crc.courtois@gmail.com","linkedIn":"https://www.linkedin.com/in/chloe-courtois-3337a210b/","campus":"FTRI","cohort":"7","jobTitle":"Associate Software Engineer","industry":"Healthcare","cities":["Louisville","Dallas","Jacksonville"]},{"company":"Limble CMMS","name":"Josh Merrell","email":"joshmerrell.us@gmail.com","linkedIn":"https://www.linkedin.com/in/joshmerrell/","campus":"PTRI","cohort":"6","jobTitle":"Software Developer III","industry":"Software / Tech","cities":["Tampa","Bakersfield","Sacramento","St. Petersburg"]},{"company":"Linguabee","name":"Connor Gillis","email":"connoregillis@gmail.com","linkedIn":"https://www.linkedin.com/in/connor-gillis/","campus":"NYC","cohort":"29","jobTitle":"Front End Software Engineer","industry":"Interpreting","cities":["Mumbai","Chandler","Oklahoma City","Berlin"]},{"company":"LinkedIn","name":"Ethan Yeh","email":"Ethanhwyeh@gmail.com","linkedIn":"https://www.linkedin.com/in/ethanhwyeh/","campus":"PTRI","cohort":"2","jobTitle":"Full Stack Software Engineer","industry":"Professional Networking","cities":["Jersey City"]},{"company":"LinkedIn","name":"Douglas Yao","email":"doug.yao@gmail.com","linkedIn":"https://www.linkedin.com/in/douglas-yao/","campus":"FTRI / CTRI","cohort":"16","jobTitle":"Software Engineer","industry":"Other","cities":["Plano","Fort Wayne","Fresno"]},{"company":"Linus Health","name":"Tommy Song","email":"Tommysong123@gmail.com","linkedIn":"","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Health tech","cities":["Cleveland","Albuquerque"]},{"company":"LiquidPixels","name":"Christian Looff","email":"ctnguy10@gmail.com","linkedIn":"https://www.linkedin.com/in/christian-looff/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Corpus Christi","Detroit","Charlotte","Laredo"]},{"company":"Literably","name":"Tiffany Wong","email":"Wongt1227@gmail.com","linkedIn":"https://www.linkedin.com/in/tiffanywong149","campus":"NYC / ECRI","cohort":"42","jobTitle":"Junior Software Engineer","industry":"Education/Edtech","cities":["Louisville"]},{"company":"Little Cinema","name":"Kenny Ma","email":"Kennyjjma@gmail.com","linkedIn":"","campus":"NYC","cohort":"15","jobTitle":"Front End Engineer","industry":"Entertainment","cities":["Sรฃo Paulo","Tulsa","Fresno","Stockton"]},{"company":"Littlebits","name":"Jinsung Park","email":"js.lia.park@gmail.com","linkedIn":"https://www.linkedin.com/in/jsliapark/","campus":"NYC","cohort":"9","jobTitle":"Software Engineer","industry":"Beauty/Cosmetic","cities":["Stockton","Oakland","Norfolk"]},{"company":"Live Nation","name":"Colin Gibson","email":"colingibs@gmail.com","linkedIn":"https://www.linkedin.com/in/colin--gibson/","campus":"LA","cohort":"44","jobTitle":"Software Development Engineer","industry":"Real Estate","cities":["San Antonio","Madison","Sydney"]},{"company":"Lively Video","name":"Mark Miller","email":"markmmiller825@gmail.com","linkedIn":"https://www.linkedin.com/in/markmanuelmiller/","campus":"NYC","cohort":"22","jobTitle":"Senior Software Engineer","industry":"Entertainment/education","cities":["Miami","Plano","San Francisco","Anchorage"]},{"company":"LivePerson","name":"Geoffrey Lin","email":"geoffrey.s.lin@gmail.com","linkedIn":"https://www.linkedin.com/in/geoff-lin/","campus":"NYC","cohort":"13","jobTitle":"Software Engineer","industry":"Computer Software","cities":["Indianapolis","Mexico City","Tokyo"]},{"company":"LivePerson","name":"Taihyun (Ray) Lee","email":"taihyun.ray.lee@gmail.com","linkedIn":"https://www.linkedin.com/in/taihyun-ray-lee/","campus":"NYC","cohort":"8","jobTitle":"Software Development Engineer","industry":"Software (SAAS)","cities":["Atlanta"]},{"company":"LivePerson","name":"Taihyun Lee","email":"th9061@gmail.com","linkedIn":"https://www.linkedin.com/in/taihyun-ray-lee","campus":"NYC","cohort":"8","jobTitle":"Software Development Engineer","industry":"Entertainment","cities":["New Orleans","North Las Vegas","Long Beach","Philadelphia"]},{"company":"LogicMonitor","name":"Jessica Vaughan","email":"jessicavaughan820@gmail.com","linkedIn":"https://www.linkedin.com/in/jessicavaughan820/","campus":"LA","cohort":"30","jobTitle":"frontend developer","industry":"SaaS","cities":["Fort Worth"]},{"company":"Lokavant","name":"Eric Peng","email":"tzerpeng@gmail.com","linkedIn":"https://www.linkedin.com/in/eric-peng-jojo/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"Information Technology & Services","cities":["Cincinnati"]},{"company":"Lonesdale Invest","name":"Coral Fussman","email":"coralfussman@gmail.com","linkedIn":"https://www.linkedin.com/in/coral-fussman-21721538/","campus":"FTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Fintech","cities":["Chula Vista","Newark","Scottsdale","Greensboro"]},{"company":"Longtail Studios","name":"Daniel Steinbrook","email":"steinbrookdaniel@gmail.com","linkedIn":"https://www.linkedin.com/in/daniel-steinbrook/","campus":"LA / WCRI","cohort":"52","jobTitle":"Developer - AI Models Integration","industry":"Software / Tech","cities":["Portland"]},{"company":"Loop","name":"Olivia Hodel","email":"ohodel16@gmail.com","linkedIn":"https://www.linkedin.com/in/olivia-hodel/","campus":"NYC / ECRI","cohort":"39","jobTitle":"Associate Software Engineer","industry":"Other","cities":["Reno","Atlanta","Denver","St. Louis"]},{"company":"Lord, Abbett & Co. LLC","name":"Vince Chin","email":"vincech@gmail.com","linkedIn":"https://www.linkedin.com/in/vincech/","campus":"PTRI","cohort":"5","jobTitle":"Software Engineer","industry":"Fintech","cities":["Philadelphia","Oklahoma City","Tampa","San Jose"]},{"company":"Los Alamos National Laboratory","name":"James Howat","email":"james@howat.dev","linkedIn":"LinkedIn.com/in/jamesbhowat","campus":"FTRI / CTRI","cohort":"12","jobTitle":"Software Developer 2","industry":"Security","cities":["Dallas","Seattle","Atlanta"]},{"company":"Lotic AI","name":"Adam Blackwell","email":"blackwell.ada@gmail.com","linkedIn":"https://www.linkedin.com/in/adam-blackwell-85918595/","campus":"PTRI","cohort":"3","jobTitle":"Software Engineer","industry":"Mental Health","cities":["Chula Vista","Charlotte"]},{"company":"Low Associates","name":"William Robson","email":"will.robson19@gmail.com","linkedIn":"https://www.linkedin.com/in/william-k-robson/","campus":"LA / WCRI","cohort":"50","jobTitle":"Full Stack Developer","industry":"Software / Tech","cities":["Omaha"]},{"company":"Lowes","name":"Joshuah Edwards","email":"joshuah.edwards@proton.me","linkedIn":"linkedin.com/in/joshuah-edwards/","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Software Engineer","industry":"Retail","cities":["Long Beach","Columbus"]},{"company":"Lumi AI","name":"Ryan Hastings","email":"rhaasti@gmail.com","linkedIn":"https://www.linkedin.com/in/rhaasti/","campus":"NYOI","cohort":"4","jobTitle":"Front-End Engineer (six month contract-to-hire)","industry":"Artificial Intelligence/Machine Learning","cities":["Memphis","Beijing","Las Vegas"]},{"company":"Lumifi","name":"Ryan Gause","email":"Ryan.g.gause.3@gmail.com","linkedIn":"LinkedIn.com/in/ryangause","campus":"PTRI","cohort":"9","jobTitle":"Software Developer II","industry":"Security","cities":["Toronto","Los Angeles","Philadelphia"]},{"company":"Lunchbox","name":"Judy Tan","email":"judytan86@gmail.com","linkedIn":"https://www.linkedin.com/in/judy-tan93/","campus":"NYC","cohort":"23","jobTitle":"Frontend Engineer","industry":"Food Industry","cities":["Saint Paul","Santa Ana","Chicago"]},{"company":"LVRG","name":"Gary Slootskiy","email":"garyslootskiy@gmail.com","linkedIn":"https://linkedin.com/in/garyslootskiy","campus":"NYC","cohort":"21","jobTitle":"Senior Software Engineer","industry":"Supply Chain Management","cities":["Lexington","Lincoln","Seattle","Las Vegas"]},{"company":"Lytx","name":"Miller Johnston","email":"miller.johnston17@gmail.com","linkedIn":"linkedin.com/in/miller-johnston","campus":"FTRI / CTRI","cohort":"6","jobTitle":"Software Engineer II","industry":"Automotive","cities":["Dallas","St. Louis","Chesapeake","St. Petersburg"]},{"company":"M Science","name":"Celena Chan","email":"celenachan@gmail.com","linkedIn":"https://www.linkedin.com/in/celenachan","campus":"NYC / ECRI","cohort":"33","jobTitle":"Software Engineer","industry":"Fintech","cities":["Bakersfield","Las Vegas"]},{"company":"Madison Logic","name":"Richie Edwards","email":"richie00edwards@gmail.com","linkedIn":"https://www.linkedin.com/in/richieedwards/","campus":"NYC","cohort":"21","jobTitle":"Full Stack Engineer","industry":"Marketing","cities":["Winston-Salem","Louisville"]},{"company":"Maestro","name":"Jacob Banks","email":"jacobjeffreybanks@gmail.com","linkedIn":"https://www.linkedin.com/in/jacobjbanks/","campus":"LA","cohort":"30","jobTitle":"Software Engineer","industry":"Media/Entertainment","cities":["Beijing","Chula Vista"]},{"company":"Magic Leap","name":"Randy Reyes","email":"rqreyes@gmail.com","linkedIn":"https://www.linkedin.com/in/rqreyes/","campus":"LA","cohort":"31","jobTitle":"Front-End Software Engineer","industry":"Augmented Reality","cities":["Scottsdale","Miami","St. Petersburg","Portland"]},{"company":"MagMutual","name":"Mark Yencheske","email":"markyencheske@gmail.com","linkedIn":"https://www.linkedin.com/in/markyencheske/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Software Engineer","industry":"Insurance","cities":["Oklahoma City","Toronto","Durham","Fort Worth"]},{"company":"Magnite","name":"John Madrigal","email":"johnmadrigal17@gmail.com","linkedIn":"https://www.linkedin.com/in/john-r-madrigal/","campus":"LA","cohort":"37","jobTitle":"Front End Software Development Engineer","industry":"Adtech","cities":["London","St. Petersburg","Honolulu"]},{"company":"Mailchimp/Intuit","name":"Albert Han","email":"albert.h1231@gmail.com","linkedIn":"https://www.linkedin.com/in/albert-han1","campus":"LA","cohort":"47","jobTitle":"SWE II","industry":"Marketing/financial management","cities":["Anaheim","Dallas","Newark"]},{"company":"Mailchimp/Intuit","name":"Gerry Bong","email":"ggbong734@gmail.com","linkedIn":"https://www.linkedin.com/in/gerry-bong/","campus":"PTRI","cohort":"6","jobTitle":"Software Engineer","industry":"Other","cities":["Cleveland","San Diego"]},{"company":"Maisonette","name":"Heidi Kim","email":"heidiyoora@gmail.com","linkedIn":"https://www.linkedin.com/in/heidiykim/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"E-commerce","cities":["Pittsburgh"]},{"company":"Major League Baseball","name":"Steven Rosas","email":"srosas20@gmail.com","linkedIn":"https://www.linkedin.com/in/rosassteven/","campus":"NYC","cohort":"9","jobTitle":"Software Engineer","industry":"Sports","cities":["St. Petersburg"]},{"company":"MakerBot","name":"Anthony R Toreson","email":"anthony.toreson@gmail.com","linkedIn":"https://www.linkedin.com/in/atoreson/","campus":"NYC","cohort":"13","jobTitle":"Senior Software Engineer","industry":"Hardware manufacturer (3d printers)","cities":["Glendale","Cincinnati","Lubbock","Durham"]},{"company":"ManageGo","name":"Bo Peng","email":"bopeng95@gmail.com","linkedIn":"https://www.linkedin.com/in/bopeng95/","campus":"NYC","cohort":"10","jobTitle":"Software Developer","industry":"Real Estate","cities":["Memphis"]},{"company":"Manatee","name":"Raivyno Sutrisno","email":"yessysutter@gmail.com","linkedIn":"https://www.linkedin.com/in/raivyno-sutrisno/","campus":"LA / WCRI","cohort":"52","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Nashville","Kansas City","Long Beach"]},{"company":"Mantium","name":"Steve Hong","email":"swe.stevehong@gmail.com","linkedIn":"https://www.linkedin.com/in/stevehong-swe/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Artificial Intelligence","cities":["Henderson","Jacksonville"]},{"company":"MANTL","name":"Lourent Flores","email":"lourent.flores@gmail.com","linkedIn":"https://www.linkedin.com/in/lourent-flores/","campus":"NYC","cohort":"22","jobTitle":"Full stack Engineer","industry":"Fintech","cities":["New Orleans","Baltimore","Portland"]},{"company":"MANTL","name":"TJ Wetmore","email":"Thomas.j.wetmore@gmail.com","linkedIn":"https://www.linkedin.com/in/tjwetmore/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Fintech","cities":["Phoenix","Albuquerque"]},{"company":"Mantra Health","name":"Konrad Kopko","email":"konradkopko1@gmail.com","linkedIn":"https://www.linkedin.com/in/konradkopko/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"HealthTech","cities":["Toronto","Chandler","Tulsa"]},{"company":"Maple.Finance","name":"Thomas Harper","email":"tommyrharper@gmail.com","linkedIn":"https://www.linkedin.com/in/thomas-robert-harper/","campus":"PTRI","cohort":"2","jobTitle":"Senior Software Engineer","industry":"Blockchain/Web3","cities":["San Francisco","Portland","Colorado Springs","Bakersfield"]},{"company":"Mariana Tek","name":"Owen Eldridge","email":"oweneldridge7@gmail.com","linkedIn":"https://www.LinkedIn.com/in/owen-eldridge","campus":"NYC","cohort":"29","jobTitle":"Software Engineer","industry":"Fitness Center Saas","cities":["Sydney","Mumbai","Riverside"]},{"company":"MarineSitu","name":"Emily Paine","email":"erpaine@gmail.com","linkedIn":"https://www.linkedin.com/in/emily-paine1/","campus":"FTRI / CTRI","cohort":"12","jobTitle":"Software Engineer","industry":"Other","cities":["Indianapolis","Riverside"]},{"company":"Mark43","name":"Kadir Gundogdu","email":"kadirgund@gmail.com","linkedIn":"https://www.linkedin.com/in/kadirgund/","campus":"NYC","cohort":"20","jobTitle":"Software Engineer","industry":"Law Enforcement","cities":["Miami"]},{"company":"Mark43","name":"Sophie Nye","email":"sophie.nye@gmail.com","linkedIn":"","campus":"NYC","cohort":"12","jobTitle":"Software engineer","industry":"Itโ€™s software for first responders, not sure what industry that is","cities":["Fresno"]},{"company":"Marsh Mclennan","name":"Mina Koo","email":"minalunakoo@gmail.com","linkedIn":"linkedin.com/in/minakoo","campus":"NYC / ECRI","cohort":"30","jobTitle":"Developer","industry":"Insurance","cities":["Saint Paul","Norfolk"]},{"company":"MAS Medical Staffing","name":"Jeffrey Schrock","email":"rhythmmagi@gmail.com","linkedIn":"https://www.linkedin.com/in/jmschrock/","campus":"NYC","cohort":"4","jobTitle":"React Software Engineer","industry":"FinTech","cities":["Sรฃo Paulo"]},{"company":"MassMutual","name":"Ausar English","email":"ausareenglish@gmail.com","linkedIn":"https://www.linkedin.com/in/ausarenglish/","campus":"NYC","cohort":"24","jobTitle":"Fullstack Developer","industry":"Financial Services/Insurance","cities":["Toronto","Minneapolis"]},{"company":"MassMutual","name":"Bryanna DeJesus","email":"bryanna.dejesus@gmail.com","linkedIn":"https://www.linkedin.com/in/bryannadejesus/","campus":"NYC","cohort":"30","jobTitle":"Full Stack Developer","industry":"Insurance","cities":["Berlin"]},{"company":"MasterCard","name":"Abigail Gerig","email":"abigail.gerig@gmail.com","linkedIn":"https://www.linkedin.com/in/abigail-gerig/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Oklahoma City","Toronto"]},{"company":"Mastercard","name":"Edwin Lin","email":"Edwinlim@gmail.com","linkedIn":"https://www.linkedin.com/in/edwinlin/","campus":"NYC","cohort":"14","jobTitle":"JavaScript Engineer","industry":"Payment card","cities":["Miami","North Las Vegas","San Francisco","Oakland"]},{"company":"Mavis","name":"Aalayah-Lynn Olaes","email":"olaesaalayah@gmail.com","linkedIn":"linkedin.com/in/aalayaholaes","campus":"NYC / ECRI","cohort":"40","jobTitle":"Software Engineer","industry":"Automotive","cities":["Long Beach"]},{"company":"Mavis Tire","name":"Peter Kennedy","email":"Ptkennedy9@gmail.com","linkedIn":"https://www.linkedin.com/peter-kennedy","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Full Stack Software Engineer ","industry":"Automotive","cities":["Los Angeles","Fort Wayne","Aurora","San Francisco"]},{"company":"Mavis Tires","name":"Jessica Davila","email":"jdav92@gmail.com","linkedIn":"https://www.linkedin.com/feed/","campus":"PTRI","cohort":"7","jobTitle":"Senior Full Stack Engineer","industry":"Automotive","cities":["Mesa","Sรฃo Paulo","Fort Wayne","Nashville"]},{"company":"Maya Health","name":"Danny Byrne","email":"danny.byrne.dev@gmail.com","linkedIn":"https://www.linkedin.com/in/danny-byrne-la/","campus":"LA","cohort":"30","jobTitle":"Front End Engineer","industry":"Psychedelic Health","cities":["Saint Paul","Louisville"]},{"company":"Maze","name":"Henry Black","email":"blackhaj@gmail.com","linkedIn":"https://www.linkedin.com/in/henryblack1/","campus":"NYC","cohort":"18","jobTitle":"Full Stack Engineer","industry":"Design","cities":["Houston","Plano"]},{"company":"McGraw Hill","name":"Kristin Green","email":"kngreen@umich.edu","linkedIn":"https://www.linkedin.com/in/kristin-green-101902a4/","campus":"NYC / ECRI","cohort":"34","jobTitle":"Software Engineer","industry":"Other","cities":["Pittsburgh"]},{"company":"Mcgraw Hill","name":"Richard Guo","email":"richardguo11@gmail.com","linkedIn":"https://www.linkedin.com/in/richardyguo/","campus":"LA / WCRI","cohort":"46","jobTitle":"Software Engineer","industry":"Other","cities":["Las Vegas","Santa Ana","Charlotte"]},{"company":"McGraw-Hill Education","name":"Victor Wang","email":"vwang4536@gmail.com","linkedIn":"https://www.linkedin.com/in/vwang4536","campus":"LA","cohort":"25","jobTitle":"Software Engineer","industry":"Consulting and technology services","cities":["Detroit","San Jose"]},{"company":"McKinsey & Company","name":"Em Podhorcer","email":"epithe@gmail.com","linkedIn":"https://www.linkedin.com/feed/","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Engineer I","industry":"Consulting","cities":["Wichita","Lexington","Orlando"]},{"company":"McKinsey & Company","name":"Matthew Yeon","email":"yeon34387@gmail.com","linkedIn":"https://www.linkedin.com/in/matthew-yeon/","campus":"LA / WCRI","cohort":"51","jobTitle":"Software Engineer","industry":"Consulting","cities":["Fort Wayne"]},{"company":"MDCalc","name":"Jonah Wilkof","email":"wilkof.jonah@gmail.com","linkedIn":"https://www.linkedin.com/in/jonahwilkof/","campus":"NYC","cohort":"7","jobTitle":"Software Engineer","industry":"Fintech, Payment Processing","cities":["Corpus Christi","Bakersfield","San Antonio"]},{"company":"Medal.tv","name":"Joseph Heinz","email":"joeheinz99@gmail.com","linkedIn":"https://www.linkedin.com/in/joseph-heinz1/","campus":"NYC / ECRI","cohort":"33","jobTitle":"Full Stack Engineer","industry":"Gaming","cities":["Scottsdale","Dallas"]},{"company":"MediaMonks NYC","name":"Case Simmons","email":"casesimmons@pm.me","linkedIn":"https://www.linkedin.com/mwlite/in/case-simmons","campus":"LA","cohort":"38","jobTitle":"Creative Technologist","industry":"Digital Production","cities":["Los Angeles","Milwaukee"]},{"company":"Mediaocean","name":"Parker Keller","email":"parkerkeller@gmail.com","linkedIn":"https://www.linkedin.com/in/parkerkeller/","campus":"LA","cohort":"28","jobTitle":"Senior Software Engineer","industry":"Advertising & Marketing","cities":["San Diego","Las Vegas","Laredo","Seattle"]},{"company":"Medical Informatics Engineering","name":"Keifer Alan Beck","email":"keiferbeck@gmail.com","linkedIn":"https://www.linkedin.com/in/k-alan-beck","campus":"FTRI / CTRI","cohort":"16","jobTitle":"Fullstack Developer","industry":"Healthtech/Healthcare","cities":["Colorado Springs"]},{"company":"Medidata","name":"Wontae Han","email":"wontaeh@gmail.com","linkedIn":"https://www.linkedin.com/in/wontaeh/","campus":"NYC","cohort":"4","jobTitle":"Frontend Engineer","industry":"","cities":["Nashville","Lexington","Wichita","St. Petersburg"]},{"company":"Medium","name":"Keiran Carpen","email":"keirancarpen@gmail.com","linkedIn":"https://www.linkedin.com/in/keirancarpen/","campus":"NYC","cohort":"18","jobTitle":"Senior Full Stack Engineer, Trust & Safety","industry":"Online publishing platform","cities":["Reno","Miami"]},{"company":"Medly Pharmacy","name":"Austin Ruby","email":"austinjruby@gmail.com","linkedIn":"https://www.linkedin.com/in/austinjruby/","campus":"NYC","cohort":"14","jobTitle":"Software Engineer I","industry":"Healthcare","cities":["Washington","Norfolk","Chandler"]},{"company":"MedMen","name":"Brendan Morrell","email":"brendanmorrell@gmail.com","linkedIn":"https://linkedin.com/in/brendanmorrell","campus":"LA","cohort":"22","jobTitle":"Software Engineer","industry":"","cities":["Fort Wayne","North Las Vegas"]},{"company":"Meltwater","name":"Richard Lam","email":"rlam108994@gmail.com","linkedIn":"https://www.linkedin.com/in/richardlam108/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"Digital Media Intelligence","cities":["Oakland","New York"]},{"company":"MeltWater","name":"Sebastian Damazo","email":"sebastiandamazo1@gmail.com","linkedIn":"https://www.linkedin.com/in/ernesto-sebastian-damazo","campus":"LA","cohort":"42","jobTitle":"Backend software engineer level 2","industry":"Software as a Service","cities":["Arlington","Fresno"]},{"company":"Memorial Sloan Kettering","name":"David Zhang","email":"davidzhang8828@gmail.com","linkedIn":"https://www.linkedin.com/in/davdjz/","campus":"NYC","cohort":"17","jobTitle":"Advanced Software Developer","industry":"Healthcare","cities":["San Francisco","Henderson","Sรฃo Paulo","Norfolk"]},{"company":"Memorial Sloan Kettering","name":"Phillip Yoo","email":"phillipyoo.218@gmail.com","linkedIn":"https://www.linkedin.com/in/phillipyoo218/","campus":"FTRI","cohort":"5","jobTitle":"Bioinformatics Software Engineer I","industry":"Healthcare","cities":["Beijing","San Antonio"]},{"company":"Memorial Sloan Kettering Cancer Center","name":"Raymond Kwan","email":"kwanvm@gmail.com","linkedIn":"https://www.linkedin.com/in/rkwn/","campus":"NYC","cohort":"16","jobTitle":"Frontend Software Engineer","industry":"Health","cities":["Chandler","Houston"]},{"company":"Memorial Sloan Kettering Cancer Center","name":"Natsuki Wada","email":"wachka06@gmail.com","linkedIn":"https://www.linkedin.com/in/natsukiwada/","campus":"FTRI","cohort":"3","jobTitle":"Software Engineer II","industry":"Healthcare","cities":["Plano","Baltimore","Saint Paul"]},{"company":"Mento","name":"James Highsmith","email":"me@jameshighsmith.com","linkedIn":"https://www.linkedin.com/in/jameshighsmith/","campus":"NYC","cohort":"15","jobTitle":"Lead Fullstack Engineer","industry":"HR","cities":["Raleigh","Berlin"]},{"company":"Mentorcam","name":"Stephen Rivas","email":"Stephen.Anthony.rivas@gmail.com","linkedIn":"https://linkedin.com/in/stephenscript","campus":"NYOI","cohort":"1","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Newark","Colorado Springs"]},{"company":"Mentra","name":"Mathew Hultquist","email":"mathew.j.hultquist@gmail.com","linkedIn":"https://www.linkedin.com/in/mjhult/","campus":"PTRI","cohort":"9","jobTitle":"Senior Full Stack Engineer","industry":"Software / Tech","cities":["Kansas City","Pittsburgh"]},{"company":"Merck","name":"Jin Yoo","email":"iyoojin@gmail.com","linkedIn":"https://www.linkedin.com/in/iyoojin/","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Jacksonville","Bakersfield"]},{"company":"Meredith","name":"Kai Evans","email":"kaijosefevans@gmail.com","linkedIn":"https://www.linkedin.com/in/jonathan-jim-ramirez/","campus":"LA","cohort":"42","jobTitle":"Software Engineer","industry":"Media Agency","cities":["El Paso","Dallas","Irving"]},{"company":"Mess","name":"Anne-lise Emig","email":"anneliseemig@gmail.com","linkedIn":"linkedin.com/in/anneliseemig","campus":"FTRI / CTRI","cohort":"15","jobTitle":"Junior Web Developer","industry":"Marketing","cities":["San Antonio","Irving","Las Vegas","Chula Vista"]},{"company":"Meta","name":"Carlos Lovera","email":"Calovera@bu.edu","linkedIn":"","campus":"PTRI","cohort":"2","jobTitle":"Partner Engineer","industry":"Fintech","cities":["Durham","Mexico City","Mesa","Detroit"]},{"company":"Meta","name":"Jonathan Jim Ramirez","email":"jramirezor.91@gmail.com","linkedIn":"https://www.linkedin.com/in/jonathan-jim-ramirez/","campus":"PTRI","cohort":"0","jobTitle":"Data Engineer","industry":"Social Media + VR","cities":["Greensboro","Tucson"]},{"company":"Meta","name":"Karandeep Ahluwalia","email":"karandeepahluwalia@gmail.com","linkedIn":"https://www.linkedin.com/in/karandeepahluwalia97/","campus":"NYC","cohort":"16","jobTitle":"Software Engineer","industry":"Technology","cities":["Chandler"]},{"company":"Meta","name":"Tom Herrmann","email":"Tomherrmannd@gmail.com","linkedIn":"https://www.linkedin.com/in/thomasherrmann1/","campus":"NYC","cohort":"14","jobTitle":"Software engineer - E4","industry":"","cities":["Jacksonville","Columbus","Wichita"]},{"company":"Metecs","name":"Justin Lee Kirk","email":"justinleekirk@gmail.com","linkedIn":"https://www.linkedin.com/in/justinleekirk/","campus":"LA","cohort":"48","jobTitle":"Software Engineer","industry":"Research","cities":["Tucson","Lexington"]},{"company":"Metric5","name":"Alex Kang","email":"akang0408@gmail.com","linkedIn":"https://www.linkedin.com/in/alex-kang/","campus":"NYC","cohort":"16","jobTitle":"Software Engineer","industry":"Information Technology & Services","cities":["Denver","Minneapolis"]},{"company":"Metrolina Greenhouses","name":"Stefan Jordan","email":"sjordan2010@gmail.com","linkedIn":"https://www.linkedin.com/in/stefan-w-jordan","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Frontend Software Engineer","industry":"Agriculture Science","cities":["Durham"]},{"company":"Microsoft","name":"Alonso Garza","email":"alonsogarza6@gmail.com","linkedIn":"https://www.linkedin.com/in/e-alonso-garza/","campus":"NYC","cohort":"20","jobTitle":"Software Engineer II","industry":"Software","cities":["Sรฃo Paulo"]},{"company":"Microsoft","name":"Bernie Green","email":"bgreen280@gmail.com","linkedIn":"https://www.linkedin.com/in/berniegreen/","campus":"NYC","cohort":"28","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["New Orleans"]},{"company":"Microsoft","name":"Brad Morgan","email":"bkmorgan3@gmail.com","linkedIn":"https://www.linkedin.com/in/bkmorgan3/","campus":"LA","cohort":"31","jobTitle":"UI Engineer","industry":"Tech","cities":["Omaha","Columbus"]},{"company":"Microsoft","name":"Brandi Richardson","email":"brandi.jrichardson@gmail.com","linkedIn":"https://www.linkedin.com/in/brandi-richardson-28295158/","campus":"LA","cohort":"40","jobTitle":"Software Engineer ll","industry":"Computer Software","cities":["Albuquerque","Pittsburgh","Virginia Beach"]},{"company":"Microsoft","name":"Brian Hong","email":"brianhhong96@gmail.com","linkedIn":"https://www.linkedin.com/in/brianhhong","campus":"NYC","cohort":"19","jobTitle":"Software Engineer","industry":"Cloud","cities":["Chandler","Atlanta"]},{"company":"Microsoft","name":"Georgina Carr","email":"carre.georgina@gmail.com","linkedIn":"https://www.linkedin.com/in/georginacarr/","campus":"NYC","cohort":"15","jobTitle":"Software Engineer, Contract","industry":"tech","cities":["Virginia Beach"]},{"company":"Microsoft","name":"Andrew Dunne","email":"Drewdunne88@gmail.com","linkedIn":"https://www.linkedin.com/in/andrew-dunne-7620bb84","campus":"LA / WCRI","cohort":"53","jobTitle":"Senior Automation Engineer","industry":"Gaming","cities":["Tampa","Tokyo","El Paso","Louisville"]},{"company":"Microsoft","name":"Griffin Roger Mccartney Silver","email":"griffinrogersilver@gmail.com","linkedIn":"https://www.linkedin.com/in/griffin-silver/","campus":"LA / WCRI","cohort":"43","jobTitle":"Cloud Support Engineer","industry":"IT Services","cities":["Philadelphia","Washington","Dallas"]},{"company":"Microsoft","name":"Rella Cruz","email":"rellas.email@gmail.com","linkedIn":"https://www.linkedin.com/in/rella/","campus":"NYC","cohort":"15","jobTitle":"Software Engineer Apprentice (LEAP Program)","industry":"Computer Technology","cities":["Raleigh","Albuquerque","Milwaukee"]},{"company":"Microsoft","name":"Silvia Kemp Miranda","email":"silvia.kemp@gmail.com","linkedIn":"https://www.linkedin.com/in/silviakmiranda/","campus":"NYC","cohort":"19","jobTitle":"Technical Program Manager","industry":"Technology","cities":["Baltimore","Plano"]},{"company":"Microsoft","name":"Timothy Jung","email":"timjj92@gmail.com","linkedIn":"www.linkedin.com/in/timjj92","campus":"LA","cohort":"32","jobTitle":"Software Development Engineer","industry":"Cloud computing","cities":["Detroit","Pittsburgh"]},{"company":"Microsoft","name":"Tjolanda \"Sully\" Sullivan","email":"tjolanda.sullivan@gmail.com","linkedIn":"https://www.linkedin.com/in/tjolanda-sullivan/","campus":"NYC","cohort":"20","jobTitle":"Software Engineer","industry":"Cloud Storage","cities":["San Francisco","Oakland","Durham","Raleigh"]},{"company":"Microsoft","name":"William kencel","email":"Wkencel1@gmail.com","linkedIn":"","campus":"LA","cohort":"40","jobTitle":"React/react native/full stack engineer","industry":"Device payment system","cities":["Minneapolis"]},{"company":"Microsoft Leap Apprenticeship Program (via Aerotek)","name":"Roseanne Damasco","email":"rosedamasco@gmail.com","linkedIn":"https://www.linkedin.com/in/roseannedamasco/","campus":"NYC","cohort":"19","jobTitle":"Software Engineer","industry":"Computer Software","cities":["Houston","Mesa","El Paso","Dallas"]},{"company":"Mighty","name":"Jakob Kousholt","email":"jakobjk@gmail.com","linkedIn":"https://www.linkedin.com/in/jakobjk/","campus":"NYC","cohort":"12","jobTitle":"Software Engineer","industry":"Consumer Services","cities":["Mumbai","Paris"]},{"company":"MightyHive","name":"Alyso Swerdloff","email":"alysonswerdloff@gmail.com","linkedIn":"https://www.linkedin.com/in/alyson-swerdloff/","campus":"NYC","cohort":"8","jobTitle":"Technical Solutions Engineer","industry":"Insurance/ cybersecurity","cities":["Fort Wayne","Orlando","St. Petersburg"]},{"company":"Mimecast","name":"Tim Ruszala","email":"truszala@gmail.com","linkedIn":"https://www.linkedin.com/in/timruszala/","campus":"NYC","cohort":"32","jobTitle":"Senior Software Engineer","industry":"Security","cities":["St. Louis","Memphis","Pittsburgh","Chesapeake"]},{"company":"MindBody","name":"Charlie Malave","email":"malavecharles@gmail.com","linkedIn":"https://www.linkedin.com/in/charlesmalave/","campus":"PTRI","cohort":"3","jobTitle":"Software Engineer","industry":"Fitness Tech","cities":["Fresno","Cincinnati"]},{"company":"Mindbody ClassPass","name":"Christina Son","email":"christinason17@gmail.com","linkedIn":"https://www.linkedin.com/in/christinason17/","campus":"FTRI / CTRI","cohort":"7","jobTitle":"Software Engineer I","industry":"Fitness/Wellness","cities":["Boston","Beijing","Miami"]},{"company":"MindCloud","name":"Emily Chu","email":"lin.emily.chu@gmail.com","linkedIn":"https://www.linkedin.com/in/lin-chu/","campus":"NYC / ECRI","cohort":"36","jobTitle":"Junior Software Engineer","industry":"Software / Tech","cities":["Gilbert","Colorado Springs","Los Angeles"]},{"company":"Mindstrong","name":"Chon Hou Ho","email":"chonhouh@gmail.com","linkedIn":"https://www.linkedin.com/mwlite/in/chon-hou-ho","campus":"FTRI","cohort":"6","jobTitle":"Software Engineer I, Full Stack","industry":"Healthcare","cities":["Toronto","San Francisco"]},{"company":"Mirror.xyz","name":"Nathaniel Grossman","email":"nathanielbensongrossman@gmail.com","linkedIn":"https://www.linkedin.com/in/nathanielgrossman/","campus":"LA","cohort":"22","jobTitle":"Software Engineer","industry":"Education","cities":["Jersey City","Portland"]},{"company":"Mission Lane","name":"Ali Elhawary","email":"Alielhawary123@gmail.com","linkedIn":"","campus":"FTRI","cohort":"4","jobTitle":"Software Engineer","industry":"Fintech","cities":["Greensboro","Virginia Beach"]},{"company":"Mission Lane","name":"Esther Cho","email":"xesthercho@gmail.com","linkedIn":"https://www.linkedin.com/in/esther-cho/","campus":"LA","cohort":"49","jobTitle":"Software Engineer","industry":"Fintech","cities":["Greensboro","Pittsburgh","Winston-Salem"]},{"company":"Mitchell Martin","name":"Jonathan Barenboim","email":"Jonathan.Barenboim@gmail.com","linkedIn":"https://www.linkedin.com/in/jonathan-barenboim/","campus":"NYC","cohort":"21","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Henderson","Winston-Salem","Greensboro","Chula Vista"]},{"company":"MJH Life Sciences","name":"Arthur Sato","email":"swatto12@gmail.com","linkedIn":"https://www.linkedin.com/in/arthursato","campus":"NYC","cohort":"25","jobTitle":"React Developer","industry":"Health Care Media","cities":["Minneapolis","Arlington","Phoenix"]},{"company":"MKTG","name":"Garrett Lee","email":"geewai.lee@gmail.com","linkedIn":"https://www.linkedin.com/in/geewailee/","campus":"NYC","cohort":"19","jobTitle":"Senior Software Developer","industry":"Marketing","cities":["Dallas"]},{"company":"MNTN","name":"Chris Franz","email":"chrisfranz@mac.com","linkedIn":"https://www.linkedin.com/in/chris--franz/","campus":"LA","cohort":"25","jobTitle":"Software Engineer","industry":"Advertising","cities":["Tulsa","Memphis"]},{"company":"MNTN","name":"Timothy Kachler","email":"kachler@gmail.com","linkedIn":"https://www.linkedin.com/in/tkachler","campus":"LA","cohort":"25","jobTitle":"Software Engineer","industry":"Advertising","cities":["Riverside","Irvine","Atlanta"]},{"company":"MNTN","name":"Bryan Trang","email":"bryanltrang@gmail.com","linkedIn":"https://www.linkedin.com/in/bryanltrang/","campus":"LA / WCRI","cohort":"58","jobTitle":"Fullstack Software Engineer","industry":"Other","cities":["St. Petersburg","Plano","Cleveland"]},{"company":"Moment House","name":"Hoon Choi","email":"vhchoi@gmail.com","linkedIn":"","campus":"LA","cohort":"10","jobTitle":"Sr. Software eng","industry":"Entertainment","cities":["San Diego","Colorado Springs","Houston"]},{"company":"MongoDB","name":"Cris Newsome","email":"crisnewsome@outlook.com","linkedIn":"https://linkedin.com/in/crisnewsome","campus":"NYC","cohort":"23","jobTitle":"Software Engineer II","industry":"Tech?","cities":["Santa Ana","Cleveland","Greensboro"]},{"company":"Monument","name":"Midori Yang","email":"midoki.yang@gmail.com","linkedIn":"https://www.linkedin.com/in/midori-yang/","campus":"NYC","cohort":"19","jobTitle":"","industry":"Healthcare","cities":["Detroit","Houston","Bakersfield","Pittsburgh"]},{"company":"Moody's Analytics","name":"Alan Ye","email":"alye13@gmail.com","linkedIn":"https://www.linkedin.com/in/alan-ye-008/","campus":"PTRI","cohort":"4","jobTitle":"Software Engineer","industry":"Fintech","cities":["St. Petersburg","Miami"]},{"company":"Moody's Analytics","name":"Cara Dibdin","email":"cdibdin@gmail.com","linkedIn":"https://www.linkedin.com/in/cara-dibdin/","campus":"PTRI","cohort":"1","jobTitle":"Senior Software Engineer","industry":"Finance","cities":["Minneapolis","Corpus Christi","Newark","Saint Paul"]},{"company":"Morgan Stanley","name":"Jackie Lin","email":"jackie.lin128@gmail.com","linkedIn":"https://www.linkedin.com/in/jackielin12/","campus":"NYC","cohort":"13","jobTitle":"Software Developer","industry":"Finance","cities":["San Francisco","Plano","Tampa"]},{"company":"Morning Consult","name":"Lucas Lima Taffo","email":"lucas.taffo@gmail.com","linkedIn":"https://www.linkedin.com/in/lucastaffo/","campus":"NYC","cohort":"27","jobTitle":"Software Engineer II","industry":"Decision Intelligence","cities":["Detroit","Garland"]},{"company":"Mothership","name":"Carlos Perez","email":"crperez@gmail.com","linkedIn":"https://www.linkedin.com/in/cpereztoro/","campus":"LA","cohort":"36","jobTitle":"Software Engineer","industry":"Freight","cities":["Lexington","Long Beach","London"]},{"company":"Motion Intelligence","name":"Russell F Hayward","email":"russdawg44@gmail.com","linkedIn":"https://www.linkedin.com/in/russell-hayward/","campus":"NYC","cohort":"25","jobTitle":"Cloud Developer","industry":"Automotive","cities":["Sรฃo Paulo","Arlington","Scottsdale"]},{"company":"mPulse Mobile","name":"Devon Vaccarino","email":"devonev92@gmail.com","linkedIn":"https://www.linkedin.com/in/devon-vaccarino/","campus":"LA","cohort":"30","jobTitle":"Mid Software Engineer","industry":"Health Communications","cities":["Milwaukee","Lincoln"]},{"company":"MRI-Simmons","name":"Dan Lin","email":"dannlin91@gmail.com","linkedIn":"https://www.linkedin.com/in/danlin91/","campus":"NYC","cohort":"20","jobTitle":"UI Developer","industry":"Data Consumer","cities":["Santa Ana","Omaha"]},{"company":"MUFG","name":"Parker Hutcheson","email":"pdhutcheson@gmail.com","linkedIn":"https://www.linkedin.com/in/parkerhutcheson/","campus":"FTRI / CTRI","cohort":"4","jobTitle":"Software Engineer","industry":"Fintech","cities":["Jacksonville","Fort Wayne","Paris","Detroit"]},{"company":"Mulberry Technology","name":"Mia Kang","email":"fakeEmail3@fakeEmail.com","linkedIn":"https://www.linkedin.com/in/mia-kang/","campus":"PTRI","cohort":"5","jobTitle":"Associate Engineer","industry":"Fintech","cities":["Mesa"]},{"company":"Multi Media, LLC","name":"Cameron Fitz","email":"hellocameronfitz@gmail.com","linkedIn":"https://www.linkedin.com/in/cameron-lee-fitz/","campus":"NYC","cohort":"19","jobTitle":"Product Manager, Growth","industry":"Entertainment","cities":["Honolulu","Mesa","Anchorage"]},{"company":"Munera","name":"Yuehao Wong","email":"yuehaowong@gmail.com","linkedIn":"https://www.linkedin.com/in/yuehaowong/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Full Stack Developer","industry":"Other","cities":["Boston","Memphis","El Paso","Kansas City"]},{"company":"Musee Archives","name":"Walter David DeVault","email":"wdd4services@outlook.com","linkedIn":"https://www.linkedin.com/in/walter-devault","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Full-Stack Software Engineer","industry":"Media","cities":["North Las Vegas"]},{"company":"MX","name":"Harlan Evans","email":"harlanevans5@gmail.com","linkedIn":"https://www.linkedin.com/mwlite/in/harlan-evans","campus":"LA","cohort":"40","jobTitle":"Front end Software engineer (mid-sr)","industry":"Fintech","cities":["Las Vegas","Pittsburgh"]},{"company":"MX","name":"Mike Coker","email":"mbcoker100@gmail.com","linkedIn":"https://www.linkedin.com/in/mike-coker/","campus":"LA","cohort":"35","jobTitle":"Backend JavaScript Engineer","industry":"Fintech","cities":["Aurora"]},{"company":"Naked Development","name":"Cayla Co","email":"caylasco@gmail.com","linkedIn":"https://www.linkedin.com/in/cayla-co/","campus":"FTRI","cohort":"6","jobTitle":"Senior Full Stack Developer","industry":"Digital Advertising","cities":["Durham","Columbus"]},{"company":"Namely","name":"Yujin kang","email":"ykang7858@gmail.com","linkedIn":"","campus":"NYC","cohort":"13","jobTitle":"Software Engineer","industry":"SaaS / HR startup","cities":["Madison"]},{"company":"Narmi","name":"Derek Lam","email":"derekquoc@gmail.com","linkedIn":"https://www.linkedin.com/in/derekqlam/","campus":"LA","cohort":"40","jobTitle":"Solutions Engineer","industry":"Fintech","cities":["Columbus","Atlanta"]},{"company":"Narrativ","name":"Lisa Han","email":"jjlisahan@gmail.com","linkedIn":"https://www.linkedin.com/in/lisajjhan/","campus":"NYC","cohort":"17","jobTitle":"Software Engineer","industry":"E-commerce","cities":["Riverside","Memphis","Santa Ana","San Diego"]},{"company":"National Grid","name":"Edward Deng","email":"edeng4237@gmail.com","linkedIn":"https://www.linkedin.com/in/edwarddeng-/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"Utilities","cities":["Greensboro","Austin","Dallas","Fort Worth"]},{"company":"Navitus","name":"Young Kim","email":"young.kim770@gmail.com","linkedIn":"https://www.linkedin.com/in/young-j-kim","campus":"FTRI / CTRI","cohort":"12","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Albuquerque","St. Louis"]},{"company":"NBA","name":"Cecily Jansen","email":"cecilyjansen@gmail.com","linkedIn":"https://www.linkedin.com/in/cecily-j/","campus":"NYC","cohort":"29","jobTitle":"Associate Front-End Engineer","industry":"Sports & Entertainment Media","cities":["North Las Vegas"]},{"company":"NBCUniversal","name":"Sam Arnold","email":"sam.arnold72@gmail.com","linkedIn":"https://www.linkedin.com/in/samarnold723/","campus":"PTRI","cohort":"3","jobTitle":"Software Engineer II","industry":"Entertainment","cities":["Oakland","Memphis","Toronto","Riverside"]},{"company":"NBCUniversal Media","name":"Jimmy Phong","email":"jayacados@gmail.com","linkedIn":"https://www.linkedin.com/in/jphongmph/","campus":"LA","cohort":"35","jobTitle":"Senior Software Engineer","industry":"Media and Entertainment","cities":["Berlin","Sรฃo Paulo"]},{"company":"NCR","name":"Bryan Chau","email":"chaubryan@hotmail.com","linkedIn":"https://www.linkedin.com/in/chaubryan1","campus":"LA / WCRI","cohort":"47","jobTitle":"SW Engineer III","industry":"IT Services","cities":["Las Vegas","St. Petersburg","Houston"]},{"company":"NEC","name":"Stacey Lee","email":"staceyjlee18@gmail.com","linkedIn":"https://www.linkedin.com/in/staceyjhlee/","campus":"FTRI / CTRI","cohort":"16","jobTitle":"Full Stack Engineer","industry":"Business Tech/Enterprise Tech","cities":["Jacksonville","Philadelphia","Cincinnati","New Orleans"]},{"company":"Neiro AI","name":"Daria Mordvinov","email":"daria.mordvinov@gmail.com","linkedIn":"https://www.linkedin.com/in/dariamordvinov/","campus":"NYOI","cohort":"1","jobTitle":"Frontend Engineer","industry":"Artificial Intelligence","cities":["Berlin","Greensboro"]},{"company":"Nelnet","name":"Zach Brucker","email":"zach.brucker@gmail.com","linkedIn":"https://www.linkedin.com/in/zachbrucker/","campus":"LA","cohort":"41","jobTitle":"Full-Stack Developer","industry":"Fintech","cities":["St. Petersburg","Cleveland","New Orleans","Miami"]},{"company":"Neo.Tax","name":"Lindsay Baird","email":"lindsay.a.baird@gmail.com","linkedIn":"https://www.linkedin.com/in/lindsaybaird/","campus":"LA","cohort":"45","jobTitle":"Full-Stack Software Engineer","industry":"Fintech","cities":["Virginia Beach"]},{"company":"Neo.tax","name":"Miguel Hernandez","email":"miguelh72@outlook.com","linkedIn":"https://www.linkedin.com/in/miguelh72/","campus":"FTRI","cohort":"4","jobTitle":"Senior Full-Stack Software Engineer","industry":"Fintech","cities":["Santa Ana","Honolulu","Memphis"]},{"company":"Nespresso","name":"Raymond Huang","email":"raymond.huang1011@gmail.com","linkedIn":"https://www.linkedin.com/in/raymondhuang95/","campus":"NYC / ECRI","cohort":"31","jobTitle":"Associate Front-End Developer","industry":"Other","cities":["Oklahoma City","Austin"]},{"company":"Netflix","name":"Josie Glore","email":"Josieglore@gmail.com","linkedIn":"https://www.linkedin.com/in/josie-glore/","campus":"LA","cohort":"25","jobTitle":"Technologist","industry":"Fashion","cities":["Indianapolis"]},{"company":"Netflix","name":"Sagar Velagala","email":"sagar.velagala@gmail.com","linkedIn":"https://www.linkedin.com/in/sagarvelagala/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Sr. Analytics Engineer","industry":"Software / Tech","cities":["Philadelphia","Chesapeake","Pittsburgh"]},{"company":"Netflix","name":"Victoria Adnet","email":"victoria.adnet@gmail.com","linkedIn":"https://www.linkedin.com/in/victoria-lellis/","campus":"LA","cohort":"29","jobTitle":"Technologist","industry":"Entertainment","cities":["Colorado Springs"]},{"company":"Netskope","name":"Mariya Eyges","email":"mariya.sf@gmail.com","linkedIn":"https://www.linkedin.com/in/mariya-eyges-8511131/","campus":"PTRI","cohort":"Beta","jobTitle":"Software Engineer","industry":"Security Cloud","cities":["Dallas"]},{"company":"Neulion","name":"Myles Green","email":"mylescorygreen@gmail.com","linkedIn":"https://www.linkedin.com/in/myles-c-green/","campus":"NYC","cohort":"4","jobTitle":"Software Engineer","industry":"","cities":["Stockton","Boston","Oklahoma City","Milwaukee"]},{"company":"New York Institute of Technology College of Osteopathic Medicine","name":"Justin Ribarich","email":"jribarich98@gmail.com","linkedIn":"https://www.linkedin.com/in/justin-ribarich","campus":"NYOI","cohort":"2","jobTitle":"Full Stack Developer","industry":"Education/Edtech","cities":["Colorado Springs"]},{"company":"Newsela","name":"Anthony Terruso","email":"aterruso@gmail.com","linkedIn":"https://www.linkedin.com/in/anthony-w-terruso/","campus":"NYC","cohort":"7","jobTitle":"Senior Web Application Developer","industry":"","cities":["Nashville","Tokyo"]},{"company":"Nexient","name":"James Kolotouros","email":"dkolotouros1@gmail.com","linkedIn":"https://www.linkedin.com/in/jameskolotouros","campus":"NYC","cohort":"22","jobTitle":"Software Developer II","industry":"Tech","cities":["Columbus","Tokyo"]},{"company":"Nexient","name":"Gaber Mowiena","email":"gaber.abouelsoud@gmail.com","linkedIn":"https://www.linkedin.com/in/gabermowiena/","campus":"NYC","cohort":"9","jobTitle":"Frontend Developer","industry":"Tech products","cities":["Colorado Springs","Garland","Sacramento"]},{"company":"Nexstar Media Group","name":"Beckett Hanan","email":"beckett.hanan@gmail.com","linkedIn":"https://www.linkedin.com/in/becketthanan/","campus":"PTRI","cohort":"Beta","jobTitle":"Front End Software Engineer","industry":"Media","cities":["Anchorage","Jersey City","Baltimore"]},{"company":"NextGen Healthcare","name":"Samuel Tran","email":"samwell.tran@gmail.com","linkedIn":"https://www.linkedin.com/in/samuel-tran-836448231/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Software Engineer II","industry":"Healthcare","cities":["Chandler","Stockton","Corpus Christi"]},{"company":"NextME","name":"Linh Tran","email":"linhtanl51@gmail.com","linkedIn":"https://www.linkedin.com/in/linhatran","campus":"LA","cohort":"40","jobTitle":"Senior Software Engineer","industry":"Management","cities":["Aurora"]},{"company":"NFL","name":"Michael Blanchard","email":"michael.james.blanchard@gmail.com","linkedIn":"https://www.linkedin.com/in/miblanchard12/","campus":"LA","cohort":"7","jobTitle":"Director of Engineering - Platform","industry":"Media / Sports","cities":["Jersey City","Fort Worth"]},{"company":"Niantic","name":"Oliver Zhang","email":"zezang@gmail.com","linkedIn":"https://www.linkedin.com/in/oliver-zhang91","campus":"PTRI","cohort":"8","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Oakland","Raleigh"]},{"company":"Nielsen","name":"Alexander Tu","email":"alexandertu95@gmail.com","linkedIn":"https://www.linkedin.com/in/atu816","campus":"FTRI / CTRI","cohort":"12","jobTitle":"Senior Software Engineer","industry":"Business Analytics","cities":["Bakersfield","Jersey City","Sรฃo Paulo"]},{"company":"Nielsen","name":"Diana Kim","email":"ruslanovna.kim@gmail.com","linkedIn":"https://www.linkedin.com/in/ruslanovna/","campus":"NYC / ECRI","cohort":"31","jobTitle":"Software Engineer II","industry":"Business Analytics","cities":["Jacksonville","Indianapolis","Honolulu","Oklahoma City"]},{"company":"Nielsen Sports","name":"Karina Illesova","email":"karin.illesova@gmail.com","linkedIn":"https://www.linkedin.com/in/karin-illesova/","campus":"LA","cohort":"41","jobTitle":"Sr Software Engineer","industry":"Information Technology & Services","cities":["Anaheim","Lexington","Las Vegas","Mesa"]},{"company":"Nike","name":"adrian Sun","email":"Adriansun2@gmail.com","linkedIn":"https://www.linkedin.com/in/adrian-sun","campus":"LA","cohort":"25","jobTitle":"Software Engineer","industry":"Travel","cities":["Madison"]},{"company":"Nimble","name":"Zachary Daniels","email":"Zackdanielsnyc@gmail.com","linkedIn":"LinkedIn.com/in/zackdanielsnyc","campus":"LA / WCRI","cohort":"49","jobTitle":"Software Engineer","industry":"Other","cities":["Honolulu"]},{"company":"Nobel.AI","name":"Kate Chanthakaew","email":"kubkate@gmail.com","linkedIn":"https://www.linkedin.com/in/kate-chanthakaew/","campus":"LA","cohort":"36","jobTitle":"Full Stack Engineer","industry":"Scientist R&D","cities":["Los Angeles","New York","Paris","Honolulu"]},{"company":"Noblr Insurance","name":"Brian Taylor","email":"brian.taylor818@gmail.com","linkedIn":"https://www.linkedin.com/in/brianwtaylor/","campus":"LA","cohort":"22","jobTitle":"Software Engineer","industry":"Health","cities":["Scottsdale"]},{"company":"Nomad Health","name":"Julia Bakerink","email":"juliabakerink@gmail.com","linkedIn":"https://www.linkedin.com/in/juliabakerink/","campus":"LA","cohort":"48","jobTitle":"Fullstack Software Engineer","industry":"Healthcare","cities":["Norfolk","Toledo","Washington"]},{"company":"Nomad Health","name":"Neftali Dominguez","email":"n.l.dominguez23@gmail.com","linkedIn":"https://www.linkedin.com/in/neftalildominguez/","campus":"LA","cohort":"30","jobTitle":"Senior Software Engineer","industry":"Health","cities":["Memphis"]},{"company":"Nordstrom","name":"Vicki Lee","email":"leevicki01@gmail.com","linkedIn":"https://www.linkedin.com/in/vlee022/","campus":"LA","cohort":"41","jobTitle":"Software Engineer","industry":"E-Commerce / Fashion","cities":["Irving"]},{"company":"Nordstrom","name":"Sohee Lee","email":"soheelee1985@gmail.com","linkedIn":"https://www.linkedin.com/in/sohee419/","campus":"LA","cohort":"46","jobTitle":"Engineer 2","industry":"Fintech","cities":["Toledo"]},{"company":"Nordstrom Rack | HauteLook","name":"Robb Eastman","email":"ereastman@gmail.com","linkedIn":"https://www.linkedin.com/in/robbeastman/","campus":"LA","cohort":"31","jobTitle":"Software Engineer I, Web","industry":"Fashion","cities":["Jersey City","Kansas City"]},{"company":"Noria Water Technologies","name":"Umair Shafiq","email":"umairshafiqprof@gmail.com","linkedIn":"https://www.linkedin.com/in/umair-w-shafiq/","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Associate Developer","industry":"Other","cities":["Riverside"]},{"company":"North American Bancard","name":"Edward Chow","email":"Pdphybrid@gmail.com","linkedIn":"https://www.linkedin.com/in/edkchow/","campus":"NYC","cohort":"19","jobTitle":"Full Stack Engineer","industry":"Fintech","cities":["Tulsa","Wichita","San Antonio"]},{"company":"Northflank","name":"Emma Genesen","email":"genesen.emma@gmail.com","linkedIn":"https://www.linkedin.com/in/emma-genesen/","campus":"LA / WCRI","cohort":"52","jobTitle":"Head of Developer Marketing","industry":"Cloud Services","cities":["Greensboro","Boston","Scottsdale"]},{"company":"Northrop Grumman","name":"David Lopez","email":"d7lopez@gmail.com","linkedIn":"https://www.linkedin.com/in/david-michael-lopez/","campus":"NYC / ECRI","cohort":"30","jobTitle":"Software Engineer","industry":"Aerospace","cities":["Honolulu","Sydney","Henderson","Virginia Beach"]},{"company":"Northrop Grumman","name":"Michael Way","email":"mjway01@gmail.com","linkedIn":"https://www.linkedin.com/in/michaeljway/","campus":"PTRI","cohort":"10","jobTitle":"Cognitive Software Engineer","industry":"Aerospace","cities":["Oakland","Durham"]},{"company":"Northspyre","name":"Vaughn Sulit","email":"bvaughnsulit@gmail.com","linkedIn":"https://www.linkedin.com/in/bvaughnsulit/","campus":"LA / WCRI","cohort":"52","jobTitle":"Full Stack Engineer","industry":"Real Estate","cities":["Columbus","New Orleans"]},{"company":"Northwestern Mutual","name":"Hussein Hamade","email":"hamade.hussein00@gmail.com","linkedIn":"https://www.linkedin.com/in/husseinhamade1/","campus":"NYC","cohort":"30","jobTitle":"Software Engineer (P2 - Midlevel)","industry":"Fintech","cities":["St. Louis"]},{"company":"Northwestern Mutual","name":"Jake Policano","email":"jdpolicano@gmail.com","linkedIn":"https://www.linkedin.com/in/jacob-policano/","campus":"NYC / ECRI","cohort":"33","jobTitle":"Software Engineer","industry":"Insurance","cities":["Saint Paul","Sacramento"]},{"company":"Northwestern Mutual","name":"Max Lee","email":"maxolee23@gmail.com","linkedIn":"https://www.linkedin.com/in/max-lee1","campus":"FTRI","cohort":"5","jobTitle":"Full Stack Software Engineer","industry":"Fintech","cities":["Winston-Salem","St. Louis","Washington","Anchorage"]},{"company":"Northwestern Mutual","name":"Vince Nguyen","email":"vince.g.nguyen@gmail.com","linkedIn":"https://www.linkedin.com/in/vince-nguyen/","campus":"FTRI","cohort":"4","jobTitle":"Full Stack Software Engineer","industry":"Fintech/Insurance","cities":["Baltimore"]},{"company":"Northwestern Mutual","name":"Warren Harrison Tait","email":"warrenhtait@gmail.com","linkedIn":"https://www.linkedin.com/in/warrenhtait/","campus":"NYC","cohort":"22","jobTitle":"Full Stack Software Engineer","industry":"Fintech","cities":["Winston-Salem","Orlando"]},{"company":"Not currently employed in tech/as a dev","name":"Evan Deam","email":"ebdeam@gmail.com","linkedIn":"https://www.linkedin.com/in/evandeam/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Registered Nurse","industry":"Healthtech/Healthcare","cities":["Greensboro","Mexico City","Wichita","Bakersfield"]},{"company":"Notion","name":"Marissa Lafontant","email":"marissa.lafontant@gmail.com","linkedIn":"https://www.linkedin.com/in/mlafontant/","campus":"NYC","cohort":"2","jobTitle":"Software Engineer","industry":"","cities":["Tokyo"]},{"company":"Nousot","name":"Winslow Taylor","email":"winslow.benjamin.taylor@gmail.com","linkedIn":"https://www.linkedin.com/in/winslow-taylor/","campus":"FTRI","cohort":"6","jobTitle":"Advance Associate","industry":"IT, SaaS","cities":["Sydney","Nashville","Raleigh"]},{"company":"Noyo","name":"Jonathan Mendoza","email":"j.d.mendoza415@gmail.com","linkedIn":"https://www.linkedin.com/in/jonathan-mendoza1","campus":"LA","cohort":"41","jobTitle":"L1 Engineer","industry":"Heath care","cities":["Gilbert","New Orleans"]},{"company":"NPR","name":"Alex Mannix","email":"alexleemannix@gmail.com","linkedIn":"https://www.linkedin.com/in/alex-mannix-53015668/","campus":"NYC","cohort":"5","jobTitle":"Junior Software Engineer","industry":"","cities":["Irving","Sรฃo Paulo","Lincoln","North Las Vegas"]},{"company":"NPR","name":"Jordan Grubb","email":"imjordangrubb@gmail.com","linkedIn":"https://www.linkedin.com/in/j-grubb/","campus":"NYC","cohort":"22","jobTitle":"Software Engineer","industry":"Subscriptions","cities":["Mexico City","Berlin"]},{"company":"NPR","name":"Samantha Wessel","email":"samantha.n.wessel@gmail.com","linkedIn":"https://www.linkedin.com/in/samantha-wessel/","campus":"LA","cohort":"30","jobTitle":"Software Engineer","industry":"News Media","cities":["Jersey City"]},{"company":"NU Borders","name":"Ryan Tumel","email":"rtumel123@gmail.com","linkedIn":"https://www.linkedin.com/in/ryan-tumel/","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Information Technology & Services","cities":["Scottsdale","Chesapeake","London"]},{"company":"NWEA","name":"Celene Chang","email":"Celene Chang","linkedIn":"https://www.linkedin.com/in/celenecchang/","campus":"LA","cohort":"48","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Garland","Saint Paul"]},{"company":"NYU Langone Health","name":"Alexander Lin","email":"alexanderlin164@gmail.com","linkedIn":"https://www.linkedin.com/in/alexander-lin-8aab79167/","campus":"NYC / ECRI","cohort":"37","jobTitle":"Developer 1","industry":"Healthtech/Healthcare","cities":["San Diego","Sacramento","Washington","Fresno"]},{"company":"O POSITIV","name":"Jonah Lin","email":"jjonah.lin@gmail.com","linkedIn":"https://www.linkedin.com/in/linjonah/","campus":"LA","cohort":"33","jobTitle":"Software Engineer (eCommerce)","industry":"E-commerce","cities":["Bakersfield","Detroit","Colorado Springs","Virginia Beach"]},{"company":"ObvioHealth","name":"Joshua Jordan","email":"josh.r.jordan@gmail.com","linkedIn":"https://www.linkedin.com/in/josh-r-jordan/","campus":"NYC / ECRI","cohort":"29","jobTitle":"Software Engineer","industry":"Biotech","cities":["Boston","Buffalo","Durham"]},{"company":"OceanX","name":"Jun Lee","email":"jushuworld@gmail.com","linkedIn":"https://www.linkedin.com/in/jushuworld/","campus":"LA","cohort":"29","jobTitle":"Full Stack Developer","industry":"E-commerce","cities":["Tampa","Austin","Mexico City","Albuquerque"]},{"company":"Ocrolus","name":"Daniel Shu","email":"shudaniel95@gmail.com","linkedIn":"https://www.linkedin.com/in/danielshu/","campus":"NYC","cohort":"9","jobTitle":"Software Engineer","industry":"Blockchain","cities":["Kansas City"]},{"company":"Octane Lending","name":"Christian Paul Ejercito","email":"chris.paul.ejercito@gmail.com","linkedIn":"https://www.linkedin.com/in/christian-paul-ejercito/","campus":"LA","cohort":"42","jobTitle":"Software Engineer II","industry":"Fintech","cities":["Mesa"]},{"company":"Odie Pet Insurance","name":"Nicholas Echols","email":"nechols87@gmail.com","linkedIn":"https://www.linkedin.com/in/nickechols87/","campus":"FTRI","cohort":"5","jobTitle":"Senior Software Engineer","industry":"","cities":["Baltimore"]},{"company":"ODME Solutions","name":"Jackqueline Nguyen","email":"jackquelineanguyen@gmail.com","linkedIn":"https://www.linkedin.com/in/jackquelinenguyen/","campus":"LA / WCRI","cohort":"54","jobTitle":"Software Engineer","industry":"Other","cities":["Anchorage","Lincoln"]},{"company":"Okta","name":"Sterling Deng","email":"sterlingdeng@gmail.com","linkedIn":"https://www.linkedin.com/in/sterling-deng/","campus":"LA","cohort":"27","jobTitle":"Software Engineer","industry":"SaaS - Security","cities":["New Orleans","Cleveland","Reno"]},{"company":"Olive AI","name":"Saejin Kang","email":"saejin.kang1004@gmail.com","linkedIn":"https://www.linkedin.com/in/saejinkang1004/","campus":"LA","cohort":"36","jobTitle":"Software Engineer","industry":"Healthcare","cities":["El Paso","Irvine","Philadelphia","Durham"]},{"company":"Olivine Inc","name":"Yirou Chen","email":"yirou.zm@gmail.com","linkedIn":"https://www.linkedin.com/in/yirouchen/","campus":"PTRI","cohort":"8","jobTitle":"Software Engineer","industry":"Other","cities":["Fort Wayne"]},{"company":"Ollie","name":"Brynn Sakell","email":"brynnsakell@gmail.com","linkedIn":"www.linkedin.com/in/brynnsakell","campus":"NYOI","cohort":"1","jobTitle":"Software Engineer, Front End","industry":"Other","cities":["Anaheim","Seattle","Arlington"]},{"company":"Omaze","name":"Rachel Kim","email":"rayykim323@gmail.com","linkedIn":"https://www.linkedin.com/in/rayykim/","campus":"LA","cohort":"31","jobTitle":"Software Engineer","industry":"Fundraising","cities":["San Francisco"]},{"company":"OneSignal","name":"Dean Ohashi","email":"d.n.ohashi@gmail.com","linkedIn":"https://www.linkedin.com/in/deanohashi/","campus":"LA","cohort":"29","jobTitle":"Software Engineer","industry":"MarTech","cities":["Beijing"]},{"company":"OneTrack.AI","name":"Alexander Martinez","email":"alexmartinez7184@gmail.com","linkedIn":"https://www.linkedin.com/in/alexander-martinez415/","campus":"LA / WCRI","cohort":"53","jobTitle":"Implementation Support Engineer","industry":"Artificial Intelligence","cities":["Cincinnati","St. Louis"]},{"company":"OneView","name":"Sean Yoo","email":"yooys87@gmail.com","linkedIn":"https://www.linkedin.com/in/seanyyoo/","campus":"LA","cohort":"43","jobTitle":"Full Stack Developer","industry":"ECommerce","cities":["Albuquerque","Paris"]},{"company":"Onyx Team at JP Morgan Chase","name":"Dwayne Richards","email":"dwaynerichards@gmail.com","linkedIn":"https://www.linkedin.com/in/dnkrichards","campus":"NYC / ECRI","cohort":"24","jobTitle":"Senior Blockchain Engineer","industry":"Blockchain/Web3","cities":["Irving","Chicago","Berlin"]},{"company":"Oomph","name":"Rob Mosher","email":"rob@robmosher.com","linkedIn":"https://www.linkedin.com/in/rob-mosher-it/","campus":"NYOI","cohort":"1","jobTitle":"Senior Software Engineer","industry":"Software / Tech","cities":["Santa Ana"]},{"company":"OpenFin","name":"Elliott Burr","email":"elliottnburr@gmail.com","linkedIn":"https://www.linkedin.com/in/elliott-burr/","campus":"LA / WCRI","cohort":"51","jobTitle":"Software Engineer","industry":"Fintech","cities":["Honolulu","Mexico City","Louisville"]},{"company":"Openfin","name":"Hina Khalid","email":"k.hinaa87@gmail.com","linkedIn":"","campus":"NYC / ECRI","cohort":"35","jobTitle":"Software engineer","industry":"Fintech","cities":["Washington","Colorado Springs","Kansas City","San Diego"]},{"company":"Opentrons","name":"Geovanni Alarcon","email":"geovannialarcon92@gmail.com","linkedIn":"https://www.linkedin.com/in/geo-alarcon/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Biotech, Robotics","cities":["Glendale","El Paso","St. Louis","Greensboro"]},{"company":"Opentrons","name":"Jamey Huffnagle","email":"mjhuffnagle@gmail.com","linkedIn":"https://www.linkedin.com/in/jamey-huffnagle/","campus":"NYOI","cohort":"3","jobTitle":"Senior Software Engineer","industry":"Biotech","cities":["Santa Ana","Tokyo","Beijing","Cincinnati"]},{"company":"Optimize Health","name":"Kim Mai Nguyen","email":"kim.mai.e.nguyen@gmail.com","linkedIn":"https://www.linkedin.com/in/nkmai/","campus":"LA","cohort":"39","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Louisville"]},{"company":"Optum","name":"Austin Johnson","email":"austinlovesworking@gmail.com","linkedIn":"https://www.linkedin.com/in/lovesworking/","campus":"NYC / ECRI","cohort":"33","jobTitle":"Full stack dev","industry":"Healthcare","cities":["Lubbock","Miami","Oakland"]},{"company":"Oscar Health","name":"Brian Kang","email":"brkang1@gmail.com","linkedIn":"https://www.linkedin.com/in/thebriankang/","campus":"NYC","cohort":"28","jobTitle":"Software Engineer (E2)","industry":"Health","cities":["Columbus","Tokyo"]},{"company":"Oscar Health","name":"Brian Kang","email":"brkang1@gmail.com","linkedIn":"https://www.linkedin.com/in/thebriankang/","campus":"NYC","cohort":"28","jobTitle":"Software Engineer (E2)","industry":"Health","cities":["Lincoln","Beijing","San Francisco","Paris"]},{"company":"Oscar Health","name":"Sergey Zeygerman","email":"sergey@zeygerman.com","linkedIn":"https://www.linkedin.com/in/sergey-zeygerman/","campus":"PTRI","cohort":"3","jobTitle":"Software Engineer, Web & Mobile","industry":"Insurance","cities":["Philadelphia"]},{"company":"OTG Experience","name":"Chang Cai","email":"Chang.Cai@pm.me","linkedIn":"https://www.linkedin.com/in/chang-c-cai/","campus":"NYC","cohort":"29","jobTitle":"Typescript NodeJS Senior Engineer","industry":"Hospitality","cities":["San Francisco","Oklahoma City"]},{"company":"Other World Computing","name":"Miles Wright","email":"mileswright818@gmail.com","linkedIn":"https://www.linkedin.com/in/miles-m-wright/","campus":"LA / WCRI","cohort":"45","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Oakland"]},{"company":"Ouraring","name":"Jenna Hamza","email":"jennashamza@gmail.com","linkedIn":"https://www.linkedin.com/in/jennahamza","campus":"NYC / ECRI","cohort":"33","jobTitle":"Full Stack Developer","industry":"Other","cities":["Paris","Chula Vista","Milwaukee"]},{"company":"Outside Analytics","name":"Timeo Williams","email":"timeo.j.williams@gmail.com","linkedIn":"","campus":"NYC","cohort":"24","jobTitle":"FullStack Software Engineer","industry":"Analytics, Defense","cities":["Santa Ana","Paris"]},{"company":"Ovis Technologies","name":"Andrew Lovato","email":"andrew.lovato@gmail.com","linkedIn":"https://www.linkedin.com/in/andrew-lovato/","campus":"NYC","cohort":"21","jobTitle":"Senior Full Stack Developer","industry":"Fintech","cities":["Aurora"]},{"company":"Ovis Technologies","name":"David Soerensen","email":"Dsoerensen28@gmail.com","linkedIn":"","campus":"NYC","cohort":"18","jobTitle":"Senior Fullstack Developer","industry":"Fintech","cities":["Wichita","Detroit"]},{"company":"OwnerIQ Inc.","name":"Alejandro Romero","email":"alexrom789@gmail.com","linkedIn":"https://www.linkedin.com/in/alejandromromero/","campus":"NYC","cohort":"4","jobTitle":"Software Engineer","industry":"","cities":["Madison","Newark","Denver"]},{"company":"Ownet","name":"Ari bengiyat","email":"ari@aribengiyat.com","linkedIn":"https://www.linkedin.com/in/ari-bengiyat","campus":"NYOI","cohort":"2","jobTitle":"Senior Software Engineer","industry":"Media","cities":["Sรฃo Paulo","Phoenix","Tampa"]},{"company":"Palmetto","name":"Fan Shao","email":"fanny.shao18@gmail.com","linkedIn":"https://www.linkedin.com/in/fan-shao/","campus":"NYC","cohort":"18","jobTitle":"Software Engineer","industry":"Renewable Energy","cities":["Sacramento"]},{"company":"Panda Express","name":"Krystal Chen","email":"Kcrystalchen@gmail.com","linkedIn":"","campus":"LA","cohort":"31","jobTitle":"Software developer","industry":"Restaurant","cities":["Gilbert","Oakland","Minneapolis","Washington"]},{"company":"Paperless Parts","name":"Scott Campbell","email":"thisisscottcampbell@gmail.com","linkedIn":"https://www.linkedin.com/in/thisisscottcampbell/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Contract Manufacturing","cities":["Anchorage","Bakersfield","Baltimore"]},{"company":"Paragon Application Systems","name":"Autumn Wallen","email":"mymail1269@gmail.com","linkedIn":"https://www.linkedin.com/in/autumn-wallen/","campus":"LA / WCRI","cohort":"52","jobTitle":"Software Engineer II","industry":"Fintech","cities":["Albuquerque","Charlotte","Bakersfield"]},{"company":"Paramount+","name":"Todd Alexander","email":"todd.alexander@me.com","linkedIn":"https://www.linkedin.com/in/toddalex/","campus":"LA","cohort":"35","jobTitle":"Senior SWE","industry":"Entertainment","cities":["Mesa","Stockton","Los Angeles"]},{"company":"Paramount++","name":"Evan Emenegger","email":"evanemenegger@gmail.com","linkedIn":"https://www.linkedin.com/in/evan-emenegger/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Software Engineer, Frontend","industry":"Entertainment","cities":["New York","Lubbock"]},{"company":"Parative","name":"Mariko Iwata","email":"mariko.iwata@gmail.com","linkedIn":"https://www.linkedin.com/in/marikoiwata/","campus":"PTRI","cohort":"9","jobTitle":"Senior Front End Engineer","industry":"Sales","cities":["Buffalo","Charlotte","El Paso","Mesa"]},{"company":"Passage.io","name":"Yusuf Nevruz Olmez","email":"nvrz@windowslive.com","linkedIn":"https://www.linkedin.com/in/nevruzolmez","campus":"NYC / ECRI","cohort":"33","jobTitle":"Full Stack Developer","industry":"Blockchain/Web3","cities":["Greensboro","Boston","Irvine","Laredo"]},{"company":"PassiveLogic","name":"Tanner Hesterman","email":"tannerhesterman@gmail.com","linkedIn":"https://www.linkedin.com/in/tannerhesterman/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Junior Software Engineer","industry":"Software / Tech","cities":["San Francisco"]},{"company":"PavCon","name":"Bradley Woolf","email":"bradleymwoolf@gmail.com","linkedIn":"https://www.linkedin.com/in/bradley-woolf/","campus":"LA","cohort":"32","jobTitle":"Software Engineer","industry":"Federal Defense","cities":["Arlington"]},{"company":"Pavemint","name":"Vivian Cermeno","email":"vcermeno6@gmail.com","linkedIn":"https://www.linkedin.com/in/viviancermeno/","campus":"LA","cohort":"36","jobTitle":"Software Engineer","industry":"Parking","cities":["Columbus"]},{"company":"Pax8","name":"Steve Frend","email":"stevefrend1@gmail.com","linkedIn":"https://www.linkedin.com/in/stevefrend/","campus":"LA","cohort":"35","jobTitle":"Software Engineer II","industry":"Cloud services","cities":["Orlando","Cleveland","Seattle"]},{"company":"Paypal","name":"Cynthia Franqui","email":"cynthiafranqui@gmail.com","linkedIn":"https://www.linkedin.com/in/cynthiafranqui/","campus":"NYC","cohort":"19","jobTitle":"Software Engineer II","industry":"Fintech","cities":["Scottsdale"]},{"company":"Paypal","name":"Stanley Huang","email":"Huang.stan@icloud.com","linkedIn":"","campus":"NYC","cohort":"20","jobTitle":"Software Engineer II (T23)","industry":"electronic Payment/ financial services","cities":["Paris","New York","Miami"]},{"company":"PayPal","name":"Jason Yu","email":"jasonyu@hotmail.com","linkedIn":"https://www.linkedin.com/in/json-yu/","campus":"LA","cohort":"32","jobTitle":"Software Engineer 2","industry":"Fintech","cities":["Saint Paul"]},{"company":"PayPal","name":"Jorge Espinoza","email":"jorge.e.espinoza.57@gmail.com","linkedIn":"https://www.linkedin.com/in/jorge-e-espinoza1/","campus":"FTRI","cohort":"3","jobTitle":"Software Engineer I","industry":"Fintech","cities":["Baltimore","Pittsburgh","Detroit","San Francisco"]},{"company":"PayPal","name":"Qwen Ballard","email":"qwen.ballard@gmail.com","linkedIn":"https://www.linkedin.com/in/mqballard/","campus":"NYC","cohort":"20","jobTitle":"Full Stack Developer","industry":"Fintech","cities":["San Francisco","San Jose"]},{"company":"PayPal (Happy Returns)","name":"Lawrence Han","email":"lawrencehan3@gmail.com","linkedIn":"https://www.linkedin.com/in/lawrence-han/","campus":"LA","cohort":"43","jobTitle":"Software Engineer","industry":"Logistics","cities":["Milwaukee"]},{"company":"PayPal Inc.","name":"Darryl Amour","email":"darryl.amour@gmail.com","linkedIn":"https://www.linkedin.com/in/darryl-amour/","campus":"LA","cohort":"25","jobTitle":"Engineering Manager, Software Development 2","industry":"Fintech","cities":["Sรฃo Paulo"]},{"company":"Payscale","name":"Truett Davis","email":"truett.davis@gmail.com","linkedIn":"https://www.linkedin.com/in/truett-davis","campus":"NYOI","cohort":"3","jobTitle":"Software Engineer II","industry":"Software / Tech","cities":["Minneapolis","San Jose"]},{"company":"Peacock","name":"Eli Gallipoli","email":"eligallipoli317@gmail.com","linkedIn":"https://www.linkedin.com/in/eli-gallipoli/","campus":"NYC","cohort":"16","jobTitle":"Fullstack Developer - Video Software Engineering","industry":"Video Streaming","cities":["Fresno"]},{"company":"Peatix","name":"Yula Ko","email":"larkspury.k@gmail.com","linkedIn":"https://www.linkedin.com/in/yulako/","campus":"NYC","cohort":"17","jobTitle":"Software Engineer","industry":"Entertainment","cities":["Anchorage","Long Beach","Corpus Christi","Bakersfield"]},{"company":"Peloton","name":"Lorenzo Guevara","email":"joselorenzo.guevara@gmail.com","linkedIn":"https://www.linkedin.com/in/lorenzoguevara/","campus":"LA","cohort":"43","jobTitle":"Software Engineer","industry":"Tech/Health & Wellness","cities":["Sacramento","Tulsa","Stockton"]},{"company":"Penny Mac","name":"Edward Roh","email":"eroh@rubiconproject.com","linkedIn":"https://www.linkedin.com/in/edwardroh/","campus":"LA","cohort":"24","jobTitle":"Front End Lead Engineer","industry":"Sports?","cities":["Tucson"]},{"company":"PennyMac","name":"Cornelius Phanthanh","email":"corneliusphanthanh@gmail.com","linkedIn":"www.linkedin.com/in/corneliusphanthanh","campus":"LA","cohort":"33","jobTitle":"Full Stack (UI/UX) Senior Application Developer","industry":"Loan/Mortgage","cities":["Honolulu","London","Memphis","Louisville"]},{"company":"Penumbra","name":"Abigail Gjurich","email":"amgjurich@gmail.com","linkedIn":"https://www.linkedin.com/in/abigail-gjurich/","campus":"NYC","cohort":"25","jobTitle":"Front End Engineer","industry":"Medical","cities":["Detroit","Paris"]},{"company":"Penumbra, Inc.","name":"Junaid Ahmed","email":"junaid7ahmed96@gmail.com","linkedIn":"https://www.linkedin.com/in/ahmedjnd/","campus":"NYOI","cohort":"3","jobTitle":"Full Stack Engineer","industry":"Healthtech/Healthcare","cities":["Lubbock","Washington"]},{"company":"Peraton","name":"Andrew Jung","email":"andrewjung89@icloud.com","linkedIn":"https://www.linkedin.com/in/sjung80/","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Cyber Software Engineer","industry":"Public Safety","cities":["Baltimore","Irvine"]},{"company":"PGA Tour","name":"Rami Abdelghafar","email":"ramabdel12@gmail.com","linkedIn":"https://www.linkedin.com/in/ramiabdelghafar/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Software Engineer","industry":"Digital","cities":["Fort Worth"]},{"company":"PGi","name":"Zi Hao He","email":"germanychinaaustralia@yahoo.com","linkedIn":"https://www.linkedin.com/in/zi-hao-he/","campus":"NYC","cohort":"19","jobTitle":"Software Engineer I","industry":"Video","cities":["Las Vegas","Beijing","Chesapeake"]},{"company":"PGS","name":"Yi Sun","email":"timyisun@gmail.com","linkedIn":"https://www.linkedin.com/in/yi-sun-swe/","campus":"PTRI","cohort":"10","jobTitle":"Senior Software Engineer","industry":"Energy/Cleantech/Greentech","cities":["Lubbock","Laredo"]},{"company":"PhotoShelter","name":"Julia Ieshtokina","email":"julia.ieshtokina@gmail.com","linkedIn":"https://www.linkedin.com/in/julia-ieshtokina/","campus":"NYC","cohort":"5","jobTitle":"Software Automation Engineer","industry":"","cities":["Bakersfield"]},{"company":"Picarro","name":"Sรฉbastien Fauque","email":"Sbfauque@gmail.com","linkedIn":"https://www.linkedin.com/in/sebastienfauque","campus":"FTRI","cohort":"4","jobTitle":"Software engineer","industry":"Green tech","cities":["Irvine"]},{"company":"Pie Insurance","name":"Alex Wolinsky","email":"alexwolinsky1@gmail.com","linkedIn":"https://www.linkedin.com/in/alex-wolinsky/","campus":"LA","cohort":"40","jobTitle":"Software Engineer","industry":"Insurance","cities":["Glendale"]},{"company":"Pima County","name":"Jake Kazi","email":"kazijake@gmail.com","linkedIn":"linkedin.com/in/jakekazi","campus":"PTRI","cohort":"7","jobTitle":"IT Applications Engineer","industry":"Other","cities":["Virginia Beach"]},{"company":"Pinterest","name":"Edar Liu","email":"liuedar@gmail.com","linkedIn":"https://www.linkedin.com/in/liuedar/","campus":"LA","cohort":"46","jobTitle":"Software Engineer L4","industry":"Social Media","cities":["Seattle"]},{"company":"Pitzer College","name":"Kurt Crandall","email":"kcrandall67@gmail.com","linkedIn":"https://www.linkedin.com/in/kurtcrandall","campus":"LA / WCRI","cohort":"47","jobTitle":"Web Developer","industry":"Other","cities":["Anaheim"]},{"company":"Place Exchange","name":"Wesley Jia","email":"wesleyjia34@gmail.com","linkedIn":"https://www.linkedin.com/in/wesleyjia/","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"Advertising","cities":["Winston-Salem","Phoenix"]},{"company":"Plaid","name":"Nicolas Ferretti","email":"nf96@cornell.edu","linkedIn":"https://www.linkedin.com/in/nicolas-ferretti/","campus":"NYC","cohort":"13","jobTitle":"Software Engineer","industry":"Fintech","cities":["Chesapeake","Oakland"]},{"company":"Platform Science","name":"Daniel Aurand","email":"Daurand303@gmail.com","linkedIn":"https://www.linkedin.com/in/daniel-aurand/","campus":"PTRI","cohort":"7","jobTitle":"software development engineer - FMS","industry":"Automotive","cities":["Denver","Fort Worth","Portland","El Paso"]},{"company":"Playstation","name":"Bryan Santos","email":"brymsantos@gmail.com","linkedIn":"https://www.linkedin.com/in/bryan-santos/","campus":"LA","cohort":"49","jobTitle":"Software Engineer II","industry":"Gaming","cities":["Anchorage","Cleveland"]},{"company":"PlayStation","name":"Jackqueline Nguyen","email":"jackquelineanguyen@gmail.com","linkedIn":"https://www.linkedin.com/in/jackquelinenguyen/","campus":"LA / WCRI","cohort":"54","jobTitle":"Senior Software Engineer","industry":"Gaming","cities":["Washington"]},{"company":"PlayVs","name":"Alyvia Moss","email":"alyvialmoss@gmail.com","linkedIn":"https://www.linkedin.com/in/alyviam/","campus":"LA","cohort":"28","jobTitle":"Software Engineer","industry":"E-Sports","cities":["Beijing","Mesa","Baltimore","Anchorage"]},{"company":"Plum","name":"Nattie Chan","email":"nattie.chan@gmail.com","linkedIn":"https://www.linkedin.com/in/nattiechan/","campus":"LA / WCRI","cohort":"56","jobTitle":"Software Engineer","industry":"Other","cities":["Denver","Jacksonville","Philadelphia"]},{"company":"Pluralsight","name":"Ronak Hirpara","email":"ronakh130@gmail.com","linkedIn":"https://www.linkedin.com/in/ronak-hirpara/","campus":"NYC","cohort":"30","jobTitle":"Software Engineer","industry":"Education","cities":["Riverside","Dallas"]},{"company":"Pluralsight","name":"Stephanie Wood","email":"wood.steph@gmail.com","linkedIn":"https://www.linkedin.com/in/stephaniewood22/","campus":"LA","cohort":"36","jobTitle":"Software Engineer","industry":"EdTech","cities":["Laredo","St. Petersburg"]},{"company":"Plutoshift","name":"Alex Bednarek","email":"alexbednarek4@gmail.com","linkedIn":"https://www.linkedin.com/in/alex-bednarek/","campus":"NYC","cohort":"16","jobTitle":"Backend Engineer","industry":"Internet/AI/Energy","cities":["Louisville","Toronto","Irving","Atlanta"]},{"company":"Podsights","name":"Emily Krebs","email":"erkrebs@gmail.com","linkedIn":"https://www.linkedin.com/in/emilyrkrebs/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"Podcast Analytics","cities":["Mexico City","Lincoln","Berlin"]},{"company":"PointsBet","name":"Joseph Eisele","email":"eisele.joseph1@gmail.com","linkedIn":"https://www.linkedin.com/in/joseph-eisele/","campus":"LA","cohort":"29","jobTitle":"Front-end Engineering Consultant","industry":"Sports Betting","cities":["Oklahoma City","Fort Worth","St. Louis","Cleveland"]},{"company":"PokerAtlas","name":"Patrick S. Young","email":"patrick.shaffer.young@gmail.com","linkedIn":"https://www.linkedin.com/in/patrick-s-young/","campus":"LA","cohort":"31","jobTitle":"Frontend Engineer","industry":"Entertainment","cities":["Virginia Beach","Louisville","Pittsburgh"]},{"company":"Policygenius","name":"Christopher Bosserman","email":"christopherpbosserman@gmail.com","linkedIn":"https://www.linkedin.com/in/christopherpbosserman/","campus":"NYC","cohort":"24","jobTitle":"Software Engineer","industry":"Insurance","cities":["Jersey City","Kansas City","Milwaukee","Chicago"]},{"company":"Policygenius","name":"Kelly Porter","email":"kporter101@gmail.com","linkedIn":"https://www.linkedin.com/in/kporter101/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"Insurance","cities":["Albuquerque","Colorado Springs"]},{"company":"Poll Everywhere","name":"Samuel Filip","email":"samjfilip@gmail.com","linkedIn":"https://www.linkedin.com/in/sam-filip/","campus":"PTRI","cohort":"2","jobTitle":"Full Stack Integrations Engineer","industry":"IT Services","cities":["Jacksonville","Berlin","El Paso"]},{"company":"Poloniex","name":"Sunit Bhalotia","email":"sunit.bh@gmail.com","linkedIn":"linkedin.com/in/sunitb/","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Senior Software Engineer, Web","industry":"Blockchain/Web3","cities":["Lexington","Bakersfield","Raleigh"]},{"company":"Polyture","name":"Dieu Huynh","email":"dieu@dieuhuynh.com","linkedIn":"https://www.linkedin.com/in/dieu-huynh","campus":"LA","cohort":"42","jobTitle":"Software Engineer","industry":"Data Analytics","cities":["Anaheim"]},{"company":"Polyture","name":"Evan Grobar","email":"egrobar@gmail.com","linkedIn":"","campus":"LA","cohort":"33","jobTitle":"Software Engineer","industry":"Data Analysis","cities":["Tucson","Las Vegas"]},{"company":"Pondurance","name":"Nancy Dao","email":"nancyddao@gmail.com","linkedIn":"","campus":"LA","cohort":"33","jobTitle":"Front End Software Engineer","industry":"Security","cities":["Saint Paul","Cincinnati"]},{"company":"Postman","name":"Jonathan Haviv","email":"jonathandhaviv@gmail.com","linkedIn":"https://www.linkedin.com/in/jonathanhaviv/","campus":"PTRI","cohort":"6","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Mexico City","Paris","Bakersfield","Washington"]},{"company":"Potato","name":"Kiril Christov","email":"kiril.christov@gmail.com","linkedIn":"https://www.linkedin.com/in/kchristov/","campus":"LA","cohort":"32","jobTitle":"Full stack engineer","industry":"Technology","cities":["Laredo","Pittsburgh"]},{"company":"Power Digital","name":"Feiyi Wu","email":"freyawu10@gmail.com","linkedIn":"https://www.linkedin.com/in/freya-wu/","campus":"LA","cohort":"45","jobTitle":"Jr. Software Engineer","industry":"Marketing","cities":["Louisville","Oakland","Winston-Salem","Irvine"]},{"company":"Prescriptive Data","name":"Nathan Le Master","email":"nlemaster47@gmail.com","linkedIn":"https://www.linkedin.com/in/nathan-le-master/","campus":"NYC","cohort":"11","jobTitle":"Frontend Developer","industry":"Building Management","cities":["Laredo","Gilbert","Glendale","Buffalo"]},{"company":"Priceline","name":"Tommy Liang","email":"tommyliangsays@gmail.com","linkedIn":"https://www.linkedin.com/in/mrtommyliang/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer - Frontend","industry":"Travel","cities":["Honolulu","Newark"]},{"company":"PRIME","name":"Andrew Park","email":"andrewchanwonpark@gmail.com","linkedIn":"https://www.linkedin.com/in/andrew-c-park/","campus":"LA / WCRI","cohort":"50","jobTitle":"Shopify Developer","industry":"Restaurant, Food, and Beverage","cities":["Reno","Virginia Beach","Winston-Salem"]},{"company":"Prime Therapeutics","name":"Dennis Cheung","email":"dennis.kh.cheung@gmail.com","linkedIn":"https://www.linkedin.com/in/denniskhcheung/","campus":"NYC / ECRI","cohort":"37","jobTitle":"Senior Software Engineer","industry":"Healthcare","cities":["Columbus"]},{"company":"Principal Financial Group","name":"Stephen Lee","email":"stphn.l.nyc@gmail.com","linkedIn":"https://www.linkedin.com/in/stphnl/","campus":"NYOI","cohort":"2","jobTitle":"Software Engineer II","industry":"Insurance","cities":["Atlanta","San Jose","Anchorage","San Francisco"]},{"company":"ProdataKey","name":"William Murphy","email":"w.williamjmurphy@gmail.com","linkedIn":"https://www.linkedin.com/in/w-william-j-murphy/","campus":"FTRI / CTRI","cohort":"15","jobTitle":"Software Engineer","industry":"Business Tech/Enterprise Tech","cities":["Gilbert","Honolulu","San Diego"]},{"company":"Proov (MFB Fertility)","name":"Brian Pham","email":"br.pham13@gmail.com","linkedIn":"https://www.linkedin.com/in/brpham13/","campus":"LA / WCRI","cohort":"53","jobTitle":"Frontend Engineer","industry":"Healthcare","cities":["Irving","Madison","Wichita"]},{"company":"Prosper Marketplace","name":"David Levien","email":"david.levien1@gmail.com","linkedIn":"https://www.linkedin.com/in/dlev01/","campus":"LA","cohort":"28","jobTitle":"Senior Software Engineer","industry":"","cities":["Chula Vista","St. Petersburg","Arlington","Memphis"]},{"company":"Providence Health & Services","name":"Jared Weiss","email":"weissjmw@gmail.com","linkedIn":"https://www.linkedin.com/in/jaredmweiss/","campus":"NYC","cohort":"2","jobTitle":"Software Engineer","industry":"","cities":["Beijing"]},{"company":"Prudential Financial","name":"Michael Lam","email":"mlamchamkee@gmail.com","linkedIn":"https://www.linkedin.com/in/mlamchamkee/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Director, Tech Lead","industry":"Insurance","cities":["Portland","Buffalo"]},{"company":"Prudential Financial","name":"Perla Royer","email":"perlaroyerc@gmail.com","linkedIn":"https://www.linkedin.com/in/perlaroyerc/","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Software Engineer","industry":"Fintech","cities":["Jersey City","Sacramento","Norfolk","Glendale"]},{"company":"Purpose Investments","name":"Anika Mustafiz","email":"munikamustafiz89@gmail.com","linkedIn":"https://www.linkedin.com/in/anikamustafiz-lillies/","campus":"PTRI","cohort":"1","jobTitle":"Full Stack Developer","industry":"Fintech/Insurance software","cities":["Cleveland","New York"]},{"company":"Q2","name":"Justin Poirier","email":"poirierj94@gmail.com","linkedIn":"https://www.linkedin.com/in/justincpoirier","campus":"NYC / ECRI","cohort":"40","jobTitle":"Software Engineer","industry":"Fintech","cities":["Baltimore","Philadelphia","Chandler"]},{"company":"QLogic LLC.","name":"Joe Cervino","email":"jciv.public@gmail.com","linkedIn":"","campus":"NYC","cohort":"6","jobTitle":"Senior Associate - Node Engineer","industry":"","cities":["Portland"]},{"company":"Qrypt","name":"Vinit Patel","email":"za.vinit@gmail.com","linkedIn":"https://www.linkedin.com/in/vinit-za/","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"Cryptography","cities":["Colorado Springs","Toronto","Chesapeake","Garland"]},{"company":"Qualleta Inc / StartPlaying.Games","name":"Brian Hayashi","email":"BrianMHayashi@gmail.com","linkedIn":"https://www.linkedin.com/in/brianmakiohayashi/","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Entertainment","cities":["Miami","Virginia Beach","Minneapolis"]},{"company":"Quantgene","name":"Peter Fasula","email":"peter.fasula@gmail.com","linkedIn":"https://www.linkedin.com/in/petefasula/","campus":"NYC","cohort":"3","jobTitle":"Sr. Full Stack Software Engineer","industry":"","cities":["Tulsa"]},{"company":"Quantiphi, Inc","name":"Alura Chung-Mehdi","email":"aluracm@gmail.com","linkedIn":"linkedin.com/alura-chungmehdi","campus":"FTRI","cohort":"1","jobTitle":"Software Developer","industry":"Conversational AI","cities":["Sydney"]},{"company":"Quantum Metric","name":"Justin Blalock","email":"justin.m.blalock@gmail.com","linkedIn":"https://www.linkedin.com/in/justinmblalock/","campus":"FTRI","cohort":"5","jobTitle":"Customer Success Engineer","industry":"Technology","cities":["Scottsdale","Gilbert","Columbus"]},{"company":"Railbird","name":"Justin Paige","email":"justinpaige3@gmail.com","linkedIn":"https://www.linkedin.com/in/justin-paige/","campus":"LA / WCRI","cohort":"52","jobTitle":"Software Engineer","industry":"Fintech","cities":["Louisville","Tampa","Paris"]},{"company":"Rainmaker Games","name":"Julia Collins","email":"Julia.col@protonmail.com","linkedIn":"","campus":"PTRI","cohort":"2","jobTitle":"Lead Frontend Engineer (Web3)","industry":"Blockchain baby","cities":["Miami","Lubbock","Norfolk","Kansas City"]},{"company":"Rally Health","name":"Stefan Pougatchev","email":"Stefan.Pougatchev@gmail.com","linkedIn":"https://www.linkedin.com/in/stefanpougatchev/","campus":"LA","cohort":"38","jobTitle":"Software Engineer II","industry":"Health/Insurance","cities":["St. Louis","Mesa"]},{"company":"Raytheon Technologies","name":"Troy Prejusa","email":"prejusa.troy@gmail.com","linkedIn":"https://www.linkedin.com/in/troyprejusa/","campus":"LA / WCRI","cohort":"54","jobTitle":"Software Engineer II","industry":"Aerospace","cities":["St. Louis","Laredo"]},{"company":"Ready Responders","name":"Joel Rivera","email":"realjoelrivera@gmail.com","linkedIn":"https://www.linkedin.com/in/RealJoelRivera","campus":"NYC","cohort":"11","jobTitle":"React Developer","industry":"Healthcare","cities":["Seattle","Sรฃo Paulo"]},{"company":"Record360","name":"Abby Chao","email":"abigail.chao@gmail.com","linkedIn":"https://www.linkedin.com/in/abbychao/","campus":"NYC","cohort":"12","jobTitle":"CEO","industry":"Rental Inspection","cities":["Houston","Orlando","San Antonio"]},{"company":"Recurate","name":"PJ Bannon","email":"bannon.pj@gmail.com","linkedIn":"https://www.linkedin.com/in/paulbannon/","campus":"NYOI","cohort":"3","jobTitle":"Frontend Engineer","industry":"Retail","cities":["Nashville","Long Beach"]},{"company":"Recurate","name":"Andrew Altman","email":"andrewaltman@outlook.com","linkedIn":"https://www.linkedin.com/in/andrewaltman1/","campus":"NYOI","cohort":"3","jobTitle":"Lead Frontend Engineer","industry":"Business Tech/Enterprise Tech","cities":["Laredo","Anchorage","St. Louis","Bakersfield"]},{"company":"Red Bull North America","name":"Catherine Larcheveque","email":"clarcheveque14@gmail.com","linkedIn":"https://www.linkedin.com/in/clarcheveque","campus":"LA","cohort":"43","jobTitle":"Software Automation Engineer","industry":"Restaurant, Food, and Beverage","cities":["Denver","Minneapolis","St. Louis"]},{"company":"Reddit","name":"Jessikeรฉ Campbell-Walker","email":"jessikeecw@gmail.com","linkedIn":"https://www.linkedin.com/in/jessikeecampbellwalker/","campus":"LA","cohort":"34","jobTitle":"Junior Front End Engineer","industry":"Internet Media","cities":["New Orleans"]},{"company":"Redox","name":"Jacquelyn Whitworth","email":"jackie.whitworth@gmail.com","linkedIn":"https://www.linkedin.com/in/jackiewhitworth/","campus":"FTRI","cohort":"4","jobTitle":"Full Stack Engineer","industry":"Healthcare","cities":["Buffalo","Detroit","Long Beach"]},{"company":"Redwood Coding Academy","name":"Alexander Landeros","email":"Alexander.Landeros1@gmail.com","linkedIn":"https://www.linkedin.com/in/alexander-landeros/","campus":"LA","cohort":"38","jobTitle":"Software Dev Instructor","industry":"Edtech","cities":["Minneapolis"]},{"company":"REEF","name":"Linda Everswick","email":"lindaeverswick@gmail.com","linkedIn":"https://www.linkedin.com/linda-everswick/","campus":"NYC","cohort":"18","jobTitle":"Front end engineer","industry":"Real Estate","cities":["Austin"]},{"company":"Remine","name":"JJ Friedman","email":"friedmanjarred@gmail.com","linkedIn":"https://www.linkedin.com/in/jj-friedman/","campus":"LA","cohort":"33","jobTitle":"Software Engineer II - Web/Mobile","industry":"PropTech","cities":["Kansas City","Newark"]},{"company":"Remote","name":"Bianca Picasso","email":"bianca.picasso@gmail.com","linkedIn":"https://www.linkedin.com/in/bianca-picasso/","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Engineer I","industry":"Research","cities":["Madison"]},{"company":"Rent the Runway","name":"Rebecca Schell","email":"Rebeccaschell503@gmail.com","linkedIn":"https://www.linkedin.com/in/rschelly/","campus":"NYC","cohort":"25","jobTitle":"Senior Front End Engineer","industry":"Fashion","cities":["Chula Vista","Omaha","Lincoln","Los Angeles"]},{"company":"Republic Services","name":"Lauren Acrich","email":"acrich.lauren@gmail.com","linkedIn":"https://www.linkedin.com/in/laurenacrich/","campus":"PTRI","cohort":"6","jobTitle":"Full Stack Software Engineer","industry":"Other","cities":["Tampa","El Paso"]},{"company":"Republic Services","name":"Nicholas Smith","email":"nicktsmith7@gmail.com","linkedIn":"https://www.linkedin.com/in/nicholastaylorsmith/","campus":"LA","cohort":"23","jobTitle":"Senior Front End Developer","industry":"","cities":["Tulsa"]},{"company":"Rescale","name":"Kushal Talele","email":"kushal.talele@gmail.com","linkedIn":"https://www.linkedin.com/in/kushaltalele/","campus":"NYC","cohort":"24","jobTitle":"Software Engineer","industry":"Cloud computing","cities":["San Francisco"]},{"company":"Research Corporation of the University of Hawaii","name":"Chris Fryer","email":"chris@hifryer.com","linkedIn":"linkedin.com/in/cjfryer","campus":"LA / WCRI","cohort":"51","jobTitle":"Software Engineer Apprentice","industry":"Other","cities":["Chandler"]},{"company":"ResMed","name":"Jackie He","email":"jackie.he98@gmail.com","linkedIn":"https://www.linkedin.com/in/jackie-he/","campus":"LA / WCRI","cohort":"53","jobTitle":"Fullstack App SWE","industry":"Healthcare","cities":["Stockton","El Paso","Henderson","Irving"]},{"company":"Restaurant Brand International (RBI)","name":"Christian Niedermayer","email":"sdchrisn@gmail.com","linkedIn":"https://www.linkedin.com/in/christian-niedermayer/","campus":"LA","cohort":"27","jobTitle":"Full Stack Software Engineer","industry":"Food","cities":["Indianapolis","Phoenix","Tokyo"]},{"company":"Resy (AMEX)","name":"Jonathan Cespedes","email":"jmilescespedes@gmail.com","linkedIn":"https://www.linkedin.com/in/jonathancespedes/","campus":"NYC","cohort":"7","jobTitle":"Senior Front-End Engineer","industry":"Restaurant, Food, Beverage","cities":["Anchorage","Buffalo","Raleigh"]},{"company":"Reveel Group","name":"Jin Soo (John) Lim","email":"jinsoolim1@gmail.com","linkedIn":"https://www.linkedin.com/in/jinsoolim","campus":"NYC","cohort":"21","jobTitle":"Frontend Developer","industry":"Logistics & Supply Chain","cities":["Irving","Kansas City","Fort Worth"]},{"company":"Revel","name":"Kayliegh Hill","email":"kayliegh.hill@gmail.com","linkedIn":"https://www.linkedin.com/in/kayliegh-hill/","campus":"NYC","cohort":"31","jobTitle":"Full Stack Engineer","industry":"Renewables & Environment","cities":["Seattle","San Jose","Fort Wayne","Cleveland"]},{"company":"Reverb","name":"Grace Park","email":"gracepark01@gmail.com","linkedIn":"","campus":"NYC","cohort":"20","jobTitle":"software engineer","industry":"ecommerce","cities":["Chandler","Greensboro","Saint Paul"]},{"company":"Revolution Prep","name":"Max Weisenberger","email":"germanbluemax@gmail.com","linkedIn":"https://www.linkedin.com/in/maxweisen/","campus":"LA","cohort":"42","jobTitle":"Software Engineer","industry":"Education","cities":["Beijing","London","Newark"]},{"company":"RF-Smart","name":"Michael Snyder","email":"msnyder1992@gmail.com","linkedIn":"https://www.linkedin.com/in/michaelcharlessnyder/","campus":"PTRI","cohort":"6","jobTitle":"JavaScript Applications Developer","industry":"Software / Tech","cities":["Seattle"]},{"company":"Rice University","name":"Thasanee Puttamadilok","email":"meow3525@gmail.com","linkedIn":"https://www.linkedin.com/in/thasanee-p-686125243/","campus":"PTRI","cohort":"7","jobTitle":"Front End Software Engineer","industry":"Research","cities":["Miami"]},{"company":"Rightway","name":"Dylan Feldman","email":"dfeldman24@gmail.com","linkedIn":"https://www.linkedin.com/in/dylan-feldman/","campus":"LA","cohort":"45","jobTitle":"Software engineer","industry":"Healthcare navigation","cities":["Plano","Atlanta","Phoenix","Newark"]},{"company":"Riot Games","name":"Pauline Chang","email":"paulseonchang@gmail.com","linkedIn":"https://www.linkedin.com/in/pskchang/","campus":"LA","cohort":"22","jobTitle":"Associate Software Engineer","industry":"","cities":["Jacksonville","Chandler","Oklahoma City"]},{"company":"RIPL","name":"Jared Veltsos","email":"Veltsos.jared@gmail.com","linkedIn":"https://www.linkedin.com/in/jaredveltsos/","campus":"LA / WCRI","cohort":"51","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Plano"]},{"company":"Rivian","name":"Luis Lo","email":"kwun.man.lo@gmail.com","linkedIn":"https://www.linkedin.com/in/luis-lo/","campus":"LA","cohort":"37","jobTitle":"Software Engineer","industry":"Electric Vehicle","cities":["Louisville","Detroit"]},{"company":"Rivian","name":"Matthew Salvador","email":"matthew.jsalvador@gmail.com","linkedIn":"https://www.linkedin.com/in/matthewsalvador/","campus":"NYC","cohort":"24","jobTitle":"Full Stack Software Engineer II","industry":"Automotive","cities":["Boston","Baltimore","Cincinnati"]},{"company":"Rivian","name":"Stacy Learn","email":"sslearn07@gmail.com","linkedIn":"https://www.linkedin.com/in/stacy-learn/","campus":"NYC","cohort":"24","jobTitle":"Software Engineer II","industry":"Automotive","cities":["Tokyo","Washington","Lexington","Indianapolis"]},{"company":"Rivian","name":"Thomas Lutz","email":"tlutz65@gmail.com","linkedIn":"https://www.linkedin.com/in/thomas-j-lutz/","campus":"LA","cohort":"36","jobTitle":"Software Engineer","industry":"Automotive","cities":["Raleigh"]},{"company":"Rocket Auto","name":"Tommy Han","email":"tommy.han.cs@gmail.com","linkedIn":"https://www.linkedin.com/in/tommy-han-cs/","campus":"NYC","cohort":"18","jobTitle":"Senior Javascript Software Engineer","industry":"Fintech","cities":["Beijing","St. Petersburg"]},{"company":"Rocksbox","name":"Ece Isenbike Ozalp","email":"eceiozalp@gmail.com","linkedIn":"https://www.linkedin.com/in/eceiozalp","campus":"PTRI","cohort":"4","jobTitle":"Software Engineer","industry":"Jewelry Ecommerce","cities":["Philadelphia","New York","Baltimore"]},{"company":"RockStep Solutions","name":"Matthew McGowan","email":"matthew.c.mcgowan@gmail.com","linkedIn":"https://www.linkedin.com/in/matthewcharlesmcgowan/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Software Release Manager","industry":"Software / Tech","cities":["Orlando","Memphis","Mesa"]},{"company":"Rohirrim","name":"Alex Corlin","email":"alex.corlin6@gmail.com","linkedIn":"https://www.linkedin.com/in/alex-corlin/","campus":"FTRI / CTRI","cohort":"7","jobTitle":"Full Stack Engineer","industry":"Artificial Intelligence","cities":["Kansas City"]},{"company":"Rohirrim","name":"Simon Chen","email":"simonchn160@gmail.com","linkedIn":"https://www.linkedin.com/in/simonchen7/","campus":"FTRI / CTRI","cohort":"7","jobTitle":"Full Stack Engineer","industry":"Artificial Intelligence","cities":["Durham"]},{"company":"Roivant","name":"Jamie Schiff","email":"jamie.abrams.schiff@gmail.com","linkedIn":"https://www.linkedin.com/in/jamie-schiff/","campus":"NYC / ECRI","cohort":"1","jobTitle":"Technology Analyst","industry":"Biotech","cities":["Lubbock","Toledo"]},{"company":"Rokt","name":"Michael Hoang","email":"michaelhoang781@gmail.com","linkedIn":"https://www.linkedin.com/in/michaelhoang1/","campus":"NYC","cohort":"29","jobTitle":"Frontend Software Engineer","industry":"Digital Advertising/E-commerce","cities":["New York","Tokyo","Norfolk"]},{"company":"Roll","name":"Eric Choy","email":"echoy20@gmail.com","linkedIn":"https://www.linkedin.com/in/silly-turtle/","campus":"NYC","cohort":"8","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Toronto","Tampa","Dallas","Los Angeles"]},{"company":"Roll","name":"Marlon Wiprud","email":"Marlonwiprud1@gmail.com","linkedIn":"","campus":"NYC","cohort":"8","jobTitle":"Software engineer","industry":"Entertainment","cities":["Columbus","New York","Paris","Saint Paul"]},{"company":"Roll","name":"Marlon Wiprud","email":"Marlonwiprud1@gmail.com","linkedIn":"","campus":"NYC","cohort":"8","jobTitle":"Software Engineer","industry":"Search and ads","cities":["Anchorage","Minneapolis","Tulsa","Chandler"]},{"company":"Rose Digital","name":"Chet (ChetBABY!) Hay","email":"chet.hay@gmail.com","linkedIn":"https://www.linkedin.com/in/chethay/","campus":"LA","cohort":"28","jobTitle":"Jr. Frontend Engineer","industry":"Digital Agency/Client Services","cities":["Irving","Atlanta","Columbus"]},{"company":"Rose Digital","name":"Linda Harrison","email":"lindafaithharrison@gmail.com","linkedIn":"https://linkedin.com/in/lindafharrison/","campus":"NYC","cohort":"3","jobTitle":"Junior Software Engineer","industry":"","cities":["Berlin","Memphis","New Orleans","Seattle"]},{"company":"Ruggable","name":"Benjamin Lee Morrison","email":"newben.hd@gmail.com","linkedIn":"https://www.linkedin.com/in/hdlmorrison/","campus":"LA","cohort":"31","jobTitle":"Sr. Software Engineer","industry":"Commerce","cities":["Oakland","Philadelphia","Jersey City"]},{"company":"Ruggable","name":"Andrew Nguyen","email":"nguyen.andrewkh@gmail.com","linkedIn":"https://www.linkedin.com/in/andrew-knguyen/","campus":"LA","cohort":"29","jobTitle":"Sr. Front-End Engineer","industry":"E-Commerce","cities":["Madison","Henderson"]},{"company":"Ruggable","name":"Steven Jung","email":"stehyjung@gmail.com","linkedIn":"https://www.linkedin.com/in/stehyjung/","campus":"LA","cohort":"28","jobTitle":"Front End Engineer","industry":"E-Commerce","cities":["El Paso"]},{"company":"Rush Enterprises","name":"Eric Saldivar","email":"esaldivar1214@gmail.com","linkedIn":"https://www.linkedin.com/in/esaldivar1214/","campus":"PTRI","cohort":"3","jobTitle":"Software Engineer","industry":"Automative","cities":["San Antonio","Irving","El Paso","Buffalo"]},{"company":"S&P Global","name":"Samantha Warrick","email":"samanthawarrick@gmail.com","linkedIn":"www.linkedin.com/samantha-warrick","campus":"LA / WCRI","cohort":"54","jobTitle":"Front End Software Engineer","industry":"Marketing","cities":["Tulsa"]},{"company":"Saggezza","name":"Albert Chen","email":"albert.chen@nyu.edu","linkedIn":"https://www.linkedin.com/in/albert-m-chen/","campus":"NYC","cohort":"2","jobTitle":"Full-stack Analytics Engineer","industry":"Big Data, Analytics","cities":["Anchorage","Glendale","Detroit"]},{"company":"Salesforce","name":"Jennifer Courtner","email":"jmichele.courtner@gmail.com","linkedIn":"https://www.linkedin.com/in/jcourtner/","campus":"NYC","cohort":"22","jobTitle":"Full Stack Engineer","industry":"B2B","cities":["Henderson","Irvine"]},{"company":"San Francisco State University","name":"Paul Valderama","email":"pvalderama@gmail.com","linkedIn":"https://www.linkedin.com/in/paulvalderama/","campus":"LA / WCRI","cohort":"22","jobTitle":"Senior Web and Mobile Developer","industry":"Software / Tech","cities":["Seattle","San Diego","Toronto"]},{"company":"SAP","name":"Charlie Maloney","email":"charliemaloney200@gmail.com","linkedIn":"https://www.linkedin.com/in/charlie-maloney/","campus":"LA","cohort":"35","jobTitle":"Front End Developer","industry":"Enterprise Software","cities":["Kansas City"]},{"company":"SAP","name":"Sylvia Liu","email":"sylvs.liu@gmail.com","linkedIn":"https://www.linkedin.com/in/liusylvia949/","campus":"LA","cohort":"46","jobTitle":"Frontend Software Engineer","industry":"Business Software","cities":["Lincoln","Miami","Durham","Lexington"]},{"company":"Sayari","name":"SEAN YALDA","email":"seanyalda@gmail.com","linkedIn":"https://www.linkedin.com/in/sean-yalda/","campus":"PTRI","cohort":"2","jobTitle":"Senior Full Stack Developer","industry":"Data Intelligence","cities":["New Orleans","Jacksonville","Dallas","Garland"]},{"company":"Sayari Labs","name":"Michael Gower","email":"GowerMikey@gmail.com","linkedIn":"https://www.linkedin.com/in/mikeygower/","campus":"NYC","cohort":"22","jobTitle":"Senior Full Stack Engineer","industry":"Financial Data","cities":["Lubbock"]},{"company":"Scale Computing","name":"Jason Charles de vera","email":"jasoncdevera@gmail.com","linkedIn":"https://www.linkedin.com/in/jason-charles-de-vera/","campus":"FTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Cloud Technology","cities":["St. Petersburg","Arlington","Sacramento"]},{"company":"Scale Computing","name":"Connor Dillon","email":"connordillon06@gmail.com","linkedIn":"https://www.linkedin.com/in/connor-dillon/","campus":"FTRI / CTRI","cohort":"16","jobTitle":"Software Development Engineer","industry":"Business Tech/Enterprise Tech","cities":["Chesapeake"]},{"company":"Science","name":"Michelle Leong","email":"leong.michellew@gmail.com","linkedIn":"https://www.linkedin.com/in/michelle-w-leong/","campus":"LA / WCRI","cohort":"56","jobTitle":"Software Engineer","industry":"Biotech","cities":["London","North Las Vegas","Oklahoma City","Pittsburgh"]},{"company":"Science 37","name":"Tristan Schoenfeld","email":"tristans7@gmail.com","linkedIn":"https://www.linkedin.com/in/tristan-schoenfeld/","campus":"LA","cohort":"26","jobTitle":"Sr. Frontend Engineer","industry":"Research","cities":["Jersey City","Toledo","Dallas","Anchorage"]},{"company":"ScienceLogic","name":"Nick Kruckenberg","email":"nkruckenberg@gmail.com","linkedIn":"https://www.linkedin.com/in/nicholaskruckenberg/","campus":"NYC","cohort":"20","jobTitle":"Engineer","industry":"AIOps, IT monitoring and automation","cities":["Milwaukee"]},{"company":"SciTec","name":"Forest Everest Leigh","email":"theforestleigh@gmail.com","linkedIn":"https://www.linkedin.com/in/forestleigh/","campus":"LA / WCRI","cohort":"53","jobTitle":"Senior Software Engineer","industry":"Other","cities":["St. Petersburg","Irving","Toronto"]},{"company":"SDL","name":"Jamar Dawson","email":"Dawsonjamar@gmail.com","linkedIn":"","campus":"LA","cohort":"30","jobTitle":"Front End Engineer (Mid Level)","industry":"Translation","cities":["Lubbock"]},{"company":"SEAT:CODE","name":"Andrรฉs Gutiรฉrrez Ramรญrez","email":"agfeynman@gmail.com","linkedIn":"https://www.linkedin.com/in/andresgutierrezramirez/","campus":"PTRI","cohort":"5","jobTitle":"Senior Fullstack Engineer","industry":"Software / Tech","cities":["Colorado Springs"]},{"company":"Second Wave Technologies","name":"Nicholas Suzuki","email":"nicholassuzuki@yahoo.com","linkedIn":"https://www.linkedin.com/in/nicholas-j-suzuki/","campus":"FTRI / CTRI","cohort":"5","jobTitle":"Software Engineer","industry":"Consulting","cities":["Fort Wayne"]},{"company":"SecureSeniorConnections","name":"Timothy","email":"tim.atapagra@gmail.com","linkedIn":"https://www.linkedin.com/in/timpagra/","campus":"NYC","cohort":"15","jobTitle":"Software Developer","industry":"Hospitals","cities":["Beijing"]},{"company":"Seed Health","name":"John SaeHwan Lee","email":"john.saehwan.lee@gmail.com","linkedIn":"https://www.linkedin.com/in/john-saehwan-lee/","campus":"NYC / ECRI","cohort":"39","jobTitle":"Fullstack Software Engineer I","industry":"Fitness/Wellness","cities":["Irving"]},{"company":"SeedFi","name":"Peter Millspaugh","email":"peterdgmillspaugh@gmail.com","linkedIn":"https://www.linkedin.com/in/peter-millspaugh/","campus":"NYC","cohort":"26","jobTitle":"Software Engineer","industry":"Fintech","cities":["Mesa","Tucson","Denver","Tulsa"]},{"company":"Seedfi","name":"Stephen Grable","email":"stephengrable@gmail.com","linkedIn":"https://www.linkedin.com/in/stephen-grable/","campus":"NYC","cohort":"3","jobTitle":"Senior Software Engineer","industry":"Finance","cities":["Fort Wayne"]},{"company":"SEL","name":"Jace Crowe","email":"jace.crowe@gmail.com","linkedIn":"https://www.linkedin.com/in/jacecrowe/","campus":"LA / WCRI","cohort":"51","jobTitle":"Software Engineer - Front End","industry":"Energy/Cleantech/Greentech","cities":["Henderson","Riverside","Orlando"]},{"company":"Send Out Carda","name":"Chris romano","email":"Chrispaulromano@gmail.com","linkedIn":"","campus":"NYC","cohort":"15","jobTitle":"Front end engineer","industry":"Not sure: itโ€™s a subscription service for designing hallmark style cards","cities":["Raleigh","Fort Wayne","Long Beach"]},{"company":"SENSE Chat","name":"Donte Nall","email":"donte.nall@gmail.com","linkedIn":"","campus":"LA","cohort":"25","jobTitle":"Senior Mobile Developer","industry":"Consulting","cities":["Portland","Minneapolis","Mumbai"]},{"company":"Sensei","name":"Kevin Fey","email":"kevinfey@gmail.com","linkedIn":"https://www.linkedin.com/in/kevin-fey/","campus":"LA","cohort":"37","jobTitle":"Senior Frontend Engineer","industry":"Wellness","cities":["Reno","Stockton"]},{"company":"SequinAR","name":"Wyatt Bell","email":"wcbell51@gmail.com","linkedIn":"https://www.linkedin.com/in/wyatt-bell1/","campus":"LA","cohort":"37","jobTitle":"Software Engineer","industry":"Augmented Reality, Entertainment","cities":["Tampa","San Diego","Honolulu","Tokyo"]},{"company":"ServiceTrade","name":"Robert Beier","email":"robert.f.beier@gmail.com","linkedIn":"https://www.linkedin.com/in/robert-f-beier/","campus":"NYC","cohort":"31","jobTitle":"Software Engineer II","industry":"Contractor Software","cities":["Philadelphia"]},{"company":"Setsail Marketing","name":"Kirsten Milic","email":"kirsten.milic@gmail.com","linkedIn":"https://www.linkedin.com/in/kirsten-milic/","campus":"LA / WCRI","cohort":"57","jobTitle":"Software Engineer","industry":"Marketing/Advertising","cities":["Omaha","Sacramento"]},{"company":"Sev1Tech","name":"Adam Vanek","email":"atvanek@gmail.com","linkedIn":"https://www.linkedin.com/in/atvanek/","campus":"FTRI / CTRI","cohort":"15","jobTitle":"Full Stack Developer","industry":"Government","cities":["Jersey City"]},{"company":"Shadow Health","name":"Khandker Islam","email":"khandker.islam46@gmail.com","linkedIn":"https://www.linkedin.com/in/khandkerislam/","campus":"FTRI","cohort":"4","jobTitle":"Software Engineer II","industry":"Virtual Reality Education","cities":["Fresno","London","Chula Vista"]},{"company":"SharpenCX","name":"Anu Sharma","email":"anu.le.pau@gmail.com","linkedIn":"https://www.linkedin.com/in/anulepau","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Senior Full Stack Developer","industry":"Software / Tech","cities":["North Las Vegas","Jersey City"]},{"company":"Sherwin Williams","name":"Seamus Ryan","email":"d.seamus.ryan@outlook.com","linkedIn":"https://www.linkedin.com/in/dseamusryan/","campus":"LA","cohort":"39","jobTitle":"React Developer","industry":"Consumer","cities":["Memphis","Saint Paul"]},{"company":"Shift","name":"Ralph Salazar","email":"ralph.slzr@gmail.com","linkedIn":"https://www.linkedin.com/in/ralph-salazar","campus":"NYC","cohort":"2","jobTitle":"Software Engineer","industry":"","cities":["Virginia Beach","Detroit","Lexington"]},{"company":"Showtime","name":"Dan Teng","email":"danwteng@gmail.com","linkedIn":"https://www.linkedin.com/feed/","campus":"NYC","cohort":"32","jobTitle":"Software Engineer","industry":"Entertainment","cities":["Arlington","Seattle"]},{"company":"Shut Up & Write!","name":"Anthony Al-Rifai","email":"anthonyalrifai@gmail.com","linkedIn":"https://www.linkedin.com/in/anthony-al-rifai/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Full Stack Developer","industry":"Events","cities":["Atlanta","Irving","Fort Worth"]},{"company":"Shutterstock","name":"Ari Shoham","email":"arishoham@gmail.com","linkedIn":"https://www.linkedin.com/in/ari-shoham/","campus":"NYC","cohort":"31","jobTitle":"Software Engineer III","industry":"Photography","cities":["Chicago","Lincoln","New York"]},{"company":"Shutterstock","name":"Eli Davis","email":"eli.davis42@gmail.com","linkedIn":"https://www.linkedin.com/in/elidavis42/","campus":"NYC","cohort":"31","jobTitle":"Software Engineer","industry":"Other","cities":["Fort Wayne","Kansas City"]},{"company":"Shutterstock","name":"Michael Pay","email":"michael.edward.pay@gmail.com","linkedIn":"https://www.linkedin.com/in/michael-edward-pay/","campus":"LA","cohort":"46","jobTitle":"SDET III","industry":"Entertainment","cities":["Jacksonville","Charlotte"]},{"company":"Shutterstock, Inc.","name":"Jake B Douglas","email":"jbrandondouglas@gmail.com","linkedIn":"","campus":"NYC","cohort":"11","jobTitle":"Software Engineer, Projects","industry":"Tech? stock photography?","cities":["Chandler","Virginia Beach","Louisville"]},{"company":"Sidecar Health","name":"Sumin Kim","email":"ppsm920@gmail.com","linkedIn":"https://www.linkedin.com/in/ppsm920/","campus":"LA","cohort":"41","jobTitle":"Software Engineer","industry":"Healthcare / insurance","cities":["Kansas City"]},{"company":"Sierra Nevada Corporation","name":"Matthew Xing","email":"matthew.xing@gmail.com","linkedIn":"https://www.linkedin.com/in/matthew-xing/","campus":"PTRI","cohort":"6","jobTitle":"Software Engineer II - Space Systems","industry":"Other","cities":["Washington"]},{"company":"Signos","name":"Rebecca Anderson","email":"randersonviolin@gmail.com","linkedIn":"https://www.linkedin.com/in/rebecca--anderson/","campus":"NYC / ECRI","cohort":"38","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Raleigh","San Diego"]},{"company":"SigTech","name":"Robert Howton","email":"robert.f.howton@gmail.com","linkedIn":"https://www.linkedin.com/in/roberthowton/","campus":"NYC","cohort":"29","jobTitle":"Fullstack Software Engineer","industry":"Fintech","cities":["New Orleans","Glendale","Wichita"]},{"company":"SimpliSafe","name":"Cindy Chau","email":"cindychau38@gmail.com","linkedIn":"https://www.linkedin.com/in/cindychau38/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer II","industry":"Security","cities":["Lincoln","Garland","Norfolk"]},{"company":"Simplr","name":"Grigor Minasyan","email":"grigorminasyan1998@gmail.com","linkedIn":"https://www.linkedin.com/in/grigor-minasyan","campus":"FTRI","cohort":"1","jobTitle":"Front end engineer","industry":"Customer service software","cities":["Charlotte"]},{"company":"SimplyWise","name":"Justin Jaeger","email":"jjustinjaeger@gmail.com","linkedIn":"https://www.linkedin.com/in/justin-jaeger/","campus":"NYC","cohort":"20","jobTitle":"Software Engineer","industry":"Cloud storage","cities":["Mumbai","Scottsdale","Albuquerque"]},{"company":"Sinclair Broadcast Group","name":"Michael Filoramo","email":"mlfiloramo@gmail.com","linkedIn":"linkedin.com/in/michael-filoramo/","campus":"PTRI","cohort":"6","jobTitle":"Full Stack Software Engineer III","industry":"Media","cities":["Raleigh","Mexico City"]},{"company":"Sinclair Broadcast Group","name":"David Beame","email":"dbeame291@gmail.com","linkedIn":"https://www.linkedin.com/in/david-beame/","campus":"LA / WCRI","cohort":"55","jobTitle":"Associate Software Developer","industry":"Media","cities":["Fresno","London"]},{"company":"Sinclair Broadcasting","name":"Joshua Reed","email":"joshreed104@gmail.com","linkedIn":"https://www.linkedin.com/in/josh-a-reed/","campus":"LA / WCRI","cohort":"54","jobTitle":"Associate Development Engineer","industry":"Telecommunications","cities":["Las Vegas","Santa Ana","Long Beach"]},{"company":"Singa","name":"Paul Kassar","email":"p.kassar@hotmail.com","linkedIn":"https://www.linkedin.com/in/paulkassar/","campus":"NYC","cohort":"3","jobTitle":"Engineer","industry":"Outdoor Recreation","cities":["Greensboro","Long Beach","Sacramento","Boston"]},{"company":"SiriusXM","name":"Ben Brower","email":"Bbrower1293@gmail.com","linkedIn":"https://www.linkedin.com/in/ben-brower-80660073","campus":"NYC","cohort":"21","jobTitle":"Software Engineer III","industry":"Entertainment","cities":["Columbus","Irving","London"]},{"company":"Skechers","name":"Christopher Saavedra","email":"cssaavedra56@gmail.com","linkedIn":"https://www.linkedin.com/in/chrisssaavedra/","campus":"LA","cohort":"22","jobTitle":"Front end engineer","industry":"Retail/Manufacturing","cities":["Cincinnati","Cleveland"]},{"company":"Skematic","name":"Christina Or","email":"OR.CHRISTINA27@GMAIL.COM","linkedIn":"https://www.linkedin.com/in/christina-or","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["St. Petersburg","Bakersfield"]},{"company":"Sketch and Etch","name":"Kenny Lee","email":"kenkiblee@gmail.com","linkedIn":"https://www.linkedin.com/in/kennethkiboklee/","campus":"LA / WCRI","cohort":"46","jobTitle":"Founding Engineer","industry":"Retail","cities":["Las Vegas","Tokyo","Detroit","Sรฃo Paulo"]},{"company":"SKF USA","name":"Steve Canavan","email":"stevenrosscanavan@gmail.com","linkedIn":"https://www.linkedin.com/in/stevencanavan/","campus":"NYC","cohort":"19","jobTitle":"Front End Developer","industry":"Manufacturing","cities":["Reno","Detroit"]},{"company":"Skillshare Inc.","name":"Chris Lung","email":"c.lung95@gmail.com","linkedIn":"https://www.linkedin.com/in/chris-lung-5b69b2ba/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Edtech","cities":["Las Vegas","Scottsdale","Mexico City","Durham"]},{"company":"Skillstorm, contracting at Bank of America","name":"Adam Singer","email":"Spincycle01@yahoo.com","linkedIn":"https://www.linkedin.com/in/adsing/","campus":"NYC","cohort":"10","jobTitle":"Application Programmer","industry":"Fintech","cities":["Beijing","Fort Worth","St. Petersburg","Albuquerque"]},{"company":"Skout Cybersecurity","name":"Garrett James","email":"garrettjames55@gmail.com","linkedIn":"https://www.linkedin.com/in/garrett-lamar-james/","campus":"NYC","cohort":"21","jobTitle":"Senior Software Engineer","industry":"Cybersecurity","cities":["Glendale","Washington","Riverside"]},{"company":"Sky Betting and Gaming / Flutter Entertainment","name":"Robert Drake","email":"rmdrake8@gmail.com","linkedIn":"https://www.linkedin.com/in/rmdrake8/","campus":"NYC / ECRI","cohort":"38","jobTitle":"Software Engineer","industry":"Sports/Sports betting","cities":["Louisville","Phoenix","Philadelphia","Nashville"]},{"company":"Skylark Travel","name":"Giuseppe Valentino","email":"zepvalue@gmail.com","linkedIn":"https://www.linkedin.com/in/zepvalue/","campus":"NYC","cohort":"12","jobTitle":"Senior Full Stack Developer","industry":"Travel","cities":["Mumbai"]},{"company":"Skylight","name":"Michael Lu","email":"michaellu213@gmail.com","linkedIn":"https://www.linkedin.com/in/michael-lu/","campus":"LA","cohort":"27","jobTitle":"Full Stack Engineer","industry":"Consumer Goods","cities":["San Antonio","Reno","Lubbock","Charlotte"]},{"company":"Slalom","name":"Angela Franco","email":"angelajfranco18@gmail.com","linkedIn":"https://www.linkedin.com/in/angela-j-franco","campus":"LA","cohort":"43","jobTitle":"Software Engineer (Consultant)","industry":"Consulting","cities":["St. Petersburg","Fort Worth","Columbus","Denver"]},{"company":"slalom","name":"Sara Kivikas","email":"sarakivikas@gmail.com","linkedIn":"https://www.linkedin.com/in/sara-kivikas/","campus":"LA","cohort":"49","jobTitle":"Software Engineer","industry":"Consulting","cities":["Greensboro"]},{"company":"Slang.ai","name":"Kevin Luo","email":"luokev1@gmail.com","linkedIn":"https://www.linkedin.com/in/kevinluo117/","campus":"NYC","cohort":"17","jobTitle":"Software Engineer","industry":"Customer Service","cities":["Aurora","Saint Paul"]},{"company":"SlyEco","name":"Nicolas Jackson","email":"nicolasljax@gmail.com","linkedIn":"https://www.linkedin.com/in/nicjax/","campus":"NYOI","cohort":"2","jobTitle":"Lead Software Engineer","industry":"Energy/Cleantech/Greentech","cities":["Arlington"]},{"company":"Smarkets","name":"Nicholas Healy","email":"nickrhealy@gmail.com","linkedIn":"https://www.linkedin.com/in/nick-r-healy","campus":"LA","cohort":"36","jobTitle":"Frontend Engineer","industry":"Fintech","cities":["Corpus Christi","Norfolk","Colorado Springs","Milwaukee"]},{"company":"Smartbiz","name":"Dennis Lopez","email":"dnnis.lpz@gmail.com","linkedIn":"https://www.linkedin.com/in/dennis-lopezsb/","campus":"LA","cohort":"40","jobTitle":"Frontend Engineer","industry":"Fintech","cities":["Seattle"]},{"company":"Smartrr","name":"Jeffrey Zheng","email":"zhengj98@outlook.com","linkedIn":"https://www.linkedin.com/in/jefzheng/","campus":"NYC","cohort":"26","jobTitle":"Software Developer","industry":"SaaS","cities":["Nashville","Riverside"]},{"company":"SmartSheet","name":"Isaiah Delgado","email":"Isaiah.del621@gmail.com","linkedIn":"https://www.linkedin.com/in/isaiahdel/","campus":"FTRI","cohort":"4","jobTitle":"Software Engineer I","industry":"Computer Hardware & Software","cities":["Irvine","Henderson","Colorado Springs","Gilbert"]},{"company":"SmartThings","name":"Samuel Carrasco","email":"Samhcarrasco@gmail.com","linkedIn":"https://www.linkedin.com/in/samuelhcarrasco","campus":"NYC","cohort":"31","jobTitle":"Associate Software Engineer","industry":"Software / Tech","cities":["Baltimore","Sรฃo Paulo"]},{"company":"Snag Films","name":"Muhammad Sheikh","email":"muhammad.sheikh93@yahoo.com","linkedIn":"https://www.linkedin.com/in/mhsheikh/","campus":"NYC","cohort":"3","jobTitle":"Software Developer","industry":"","cities":["Aurora","Fort Wayne"]},{"company":"Snap eHealth","name":"Jordan Hisel","email":"hiseljm@gmail.com","linkedIn":"https://www.linkedin.com/in/jordan-h-3b7686121/","campus":"LA","cohort":"45","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Colorado Springs","Laredo","Newark"]},{"company":"Snap Inc","name":"Christopher Guizzetti","email":"guizzettic@gmail.com","linkedIn":"https://www.linkedin.com/in/christopherguizzetti","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Entertainment","cities":["Omaha","Glendale","Mumbai","Louisville"]},{"company":"Snap Inc","name":"Madeline Doctor","email":"madelinemdoctor@gmail.com","linkedIn":"https://www.linkedin.com/in/madeline-doctor/","campus":"NYOI","cohort":"1","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Toronto","Chesapeake"]},{"company":"Snap Inc.","name":"Kirsten Yoon","email":"kirstenyoon@gmail.com","linkedIn":"https://www.linkedin.com/in/kirstenyoon","campus":"LA","cohort":"42","jobTitle":"Software Engineer","industry":"camera, social media","cities":["Miami"]},{"company":"Socialive","name":"Alexander Infante","email":"alexinfante17@gmail.com","linkedIn":"https://www.linkedin.com/in/alexander-infante/","campus":"LA","cohort":"35","jobTitle":"Platform Engineer","industry":"Video Streaming","cities":["Columbus","Cincinnati","Tokyo","Milwaukee"]},{"company":"SoftWriters","name":"Jane You","email":"janeyou94@gmail.com","linkedIn":"linkedin.com/in/janeyou94","campus":"LA / WCRI","cohort":"52","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Milwaukee","Los Angeles"]},{"company":"Sojo","name":"Irina Khafizova","email":"irinakhafi@gmail.com","linkedIn":"https://www.linkedin.com/in/irina-khafizova/","campus":"NYC / ECRI","cohort":"38","jobTitle":"Frontend software engineer","industry":"Hospitality","cities":["Glendale","Plano","Sydney","Buffalo"]},{"company":"Solera Health","name":"Joel Park","email":"Joelpark97@gmail.com","linkedIn":"https://www.linkedin.com/in/joelprkk/","campus":"NYC","cohort":"28","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Milwaukee","Miami"]},{"company":"Solid State Scientific Corporation","name":"Tadd LeRocque","email":"t.lerocque@gmail.com","linkedIn":"https://www.linkedin.com/in/taddlerocque/","campus":"NYC / ECRI","cohort":"40","jobTitle":"DevOps Software Developer","industry":"Data/Analytics/Cloud","cities":["Tokyo","Tulsa","Beijing","Henderson"]},{"company":"Solo","name":"Carly Yarnell","email":"carly.yarnell21@gmail.com","linkedIn":"https://www.linkedin.com/in/carly-yarnell/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Wichita","Columbus"]},{"company":"Solvent","name":"Adam Seery","email":"acseery@gmail.com","linkedIn":"www.linkedin.com/in/adam-seery","campus":"NYC / ECRI","cohort":"35","jobTitle":"Software Engineer","industry":"Fintech","cities":["Tokyo","Kansas City"]},{"company":"SOMA Global","name":"Adam Moore","email":"moore76sc@gmail.com","linkedIn":"https://www.linkedin.com/in/adam-moore-se/","campus":"FTRI","cohort":"6","jobTitle":"Platform Engineer","industry":"Public Safety","cities":["Durham","Denver","Memphis"]},{"company":"Sonos","name":"Austin Andrews","email":"austinandrews@berkeley.edu","linkedIn":"https://www.linkedin.com/in/austinandrews17","campus":"FTRI","cohort":"7","jobTitle":"Release Engineer","industry":"Software / Tech","cities":["Pittsburgh","Plano","Columbus","Honolulu"]},{"company":"Sonos","name":"Alexander Nance","email":"balexn@gmail.com","linkedIn":"https://www.linkedin.com/in/balexandernance","campus":"NYC","cohort":"23","jobTitle":"Senior Software Engineer","industry":"Consumer Electronics","cities":["Las Vegas","El Paso"]},{"company":"Sonr","name":"Ian Judd","email":"Iankimjudd@gmail.com","linkedIn":"https://www.linkedin.com/in/iankjudd/","campus":"PTRI","cohort":"3","jobTitle":"Full Stack Developer","industry":"Web3","cities":["Austin"]},{"company":"Sourcepoint Technologies","name":"Adam straus","email":"a.straus1@gmail.com","linkedIn":"","campus":"NYC","cohort":"18","jobTitle":"Software Engineer","industry":"SaaS","cities":["Norfolk","Cincinnati"]},{"company":"Southern California Edison (via Sharp Decisions)","name":"Jie Yun (Catherine) Cheng","email":"chengjieyun59@gmail.com","linkedIn":"https://www.linkedin.com/in/cat-cheng/","campus":"LA","cohort":"33","jobTitle":"Sr. Full Stack Developer","industry":"Energy","cities":["Corpus Christi","Saint Paul","Memphis"]},{"company":"SparkCognition","name":"Harvey Nguyen","email":"harveynwynn@gmail.com","linkedIn":"https://www.linkedin.com/in/harveynwynn/","campus":"LA","cohort":"47","jobTitle":"Software Engineer II","industry":"Artificial intelligence","cities":["El Paso"]},{"company":"SparrowFi","name":"Alex Barbazan","email":"Agbarbazan@gmail.com","linkedIn":"","campus":"NYC","cohort":"29","jobTitle":"Software Engineer","industry":"Fintech","cities":["Cincinnati"]},{"company":"Spatial Data Logic","name":"Thomas Lukasiewicz","email":"tlukasiewicz89@gmail.com","linkedIn":"https://www.linkedin.com/feed/","campus":"NYC / ECRI","cohort":"34","jobTitle":"Software Engineer","industry":"Other","cities":["Chula Vista","Bakersfield","Oakland"]},{"company":"Spearmint","name":"Chloe Aribo","email":"chloearibo92@gmail.com","linkedIn":"https://www.linkedin.com/in/chloe-aribo/","campus":"LA","cohort":"33","jobTitle":"Senior Software Engineer","industry":"Security","cities":["Sacramento","Mexico City"]},{"company":"SpecTrust","name":"Tehya Rassman","email":"tehyaarassman@gmail.com","linkedIn":"https://www.linkedin.com/in/tehya-rassman/","campus":"FTRI","cohort":"5","jobTitle":"Software Engineer","industry":"Cybercrime","cities":["Miami"]},{"company":"Specturm","name":"Sanjay Lavingia","email":"SanjayLavingia@gmail.com","linkedIn":"https://www.linkedin.com/in/sanjay-lavingia/","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Telecom","cities":["Wichita","Tokyo","Durham","Mexico City"]},{"company":"Spirent Communications","name":"Dylan Bury","email":"dylanbury@protonmail.com","linkedIn":"https://www.linkedin.com/in/dylanbury/","campus":"LA","cohort":"42","jobTitle":"Software Engineer","industry":"Telecommunications","cities":["Columbus","Arlington"]},{"company":"Splash Financial","name":"Bahram Bagherzadeh","email":"bjbagher@gmail.com","linkedIn":"https://www.linkedin.com/in/bbagher/","campus":"NYC","cohort":"15","jobTitle":"Senior Software Engineer","industry":"Finance","cities":["Seattle","Washington","Fort Worth"]},{"company":"Splunk","name":"Caroline Kimball","email":"kimballcaroline@gmail.com","linkedIn":"https://www.linkedin.com/in/kimballcaroline/","campus":"NYC / ECRI","cohort":"37","jobTitle":"Software Engineer","industry":"Security/Data Privacy","cities":["Long Beach","Milwaukee","Chandler"]},{"company":"Spotify","name":"Aaron Bart-Addison","email":"abaddison16@gmail.com","linkedIn":"https://www.linkedin.com/in/abaddison16/","campus":"NYC","cohort":"6","jobTitle":"Web Engineer II","industry":"","cities":["Mexico City","Chesapeake"]},{"company":"Spotify","name":"Amanda Flink","email":"avflinkette@gmail.com","linkedIn":"https://www.linkedin.com/in/amandaflink/","campus":"NYC","cohort":"12","jobTitle":"Senior Web Engineer","industry":"Entertainment","cities":["Laredo","Chandler","Cleveland"]},{"company":"Spotify","name":"Chris Kopcow","email":"ckopcow@gmail.com","linkedIn":"https://www.linkedin.com/in/christopherkopcow/","campus":"NYC","cohort":"21","jobTitle":"Technical Writer","industry":"Entertainment","cities":["Irvine","Kansas City","Lubbock","Mexico City"]},{"company":"Spotify","name":"Trevor Gray","email":"trevor.m.gray@outlook.com","linkedIn":"https://www.linkedin.com/mwlite/in/trev-gray","campus":"FTRI","cohort":"7","jobTitle":"Frontend Engineer","industry":"Entertainment","cities":["Sacramento"]},{"company":"Spring Health","name":"Kassandra Meyer","email":"kassandram022@gmail.com","linkedIn":"https://www.linkedin.com/in/kassandram/","campus":"LA","cohort":"31","jobTitle":"Frontend Engineer","industry":"Healthcare","cities":["Colorado Springs"]},{"company":"SpringHealth","name":"Matthew Huang","email":"matthewhuang24@gmail.com","linkedIn":"https://www.linkedin.com/in/matthew-huang/","campus":"LA","cohort":"46","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Santa Ana","Indianapolis"]},{"company":"Spruce","name":"Edward Ryan","email":"15ryane@gmail.com","linkedIn":"https://www.linkedin.com/in/edward-ryan/","campus":"LA","cohort":"27","jobTitle":"Software Engineer","industry":"Hospitality Services","cities":["Toronto"]},{"company":"SPS Health","name":"Mark Teets","email":"markteets@gmail.com","linkedIn":"https://www.linkedin.com/in/markteets/","campus":"FTRI / CTRI","cohort":"15","jobTitle":"Application Developer","industry":"Healthtech/Healthcare","cities":["Dallas","Austin","Aurora","Philadelphia"]},{"company":"Spur Reply","name":"Jeffrey Pettis","email":"jeffrey.pettis@gmail.com","linkedIn":"https://www.linkedin.com/in/jeffreypettis/","campus":"PTRI","cohort":"9","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Long Beach","Lincoln"]},{"company":"Square","name":"Christopher Akinrinade","email":"chris.akinrinade@gmail.com","linkedIn":"https://www.linkedin.com/in/christopher-akinrinade/","campus":"NYC","cohort":"22","jobTitle":"Software Engineer","industry":"Fintech","cities":["Durham","Omaha","St. Louis"]},{"company":"Square","name":"Juan Espinoza","email":"espinozajuan562@gmail.com","linkedIn":"https://www.linkedin.com/in/espinoza-juan/","campus":"LA","cohort":"30","jobTitle":"Software Engineer","industry":"Fintech","cities":["Toledo"]},{"company":"Square Root, Inc.","name":"Angel Vega","email":"angelvega85@gmail.com","linkedIn":"https://www.linkedin.com/in/angel-e-vega","campus":"LA","cohort":"29","jobTitle":"Software Engineer","industry":"Information Technology","cities":["Norfolk","Minneapolis"]},{"company":"STA Group","name":"Gabriel Machado","email":"bielchristo@hotmail.com","linkedIn":"","campus":"LA","cohort":"42","jobTitle":"UI Engineer","industry":"Consulting","cities":["Madison","Dallas","Sacramento"]},{"company":"Stacked Invest","name":"Ross Lamerson","email":"ross.lamerson@gmail.com","linkedIn":"https://www.linkedin.com/in/lamerson28/","campus":"FTRI","cohort":"5","jobTitle":"Software Engineer - Front End","industry":"Cryptocurrency / Fintech","cities":["Charlotte","Kansas City"]},{"company":"Standard Bots","name":"Arshia Masih","email":"arshia.masih@gmail.com","linkedIn":"https://www.linkedin.com/in/arshiamasih/","campus":"LA","cohort":"29","jobTitle":"Software Engineer","industry":"Robotics / Industrial Automation","cities":["Raleigh","Santa Ana","Buffalo"]},{"company":"Starbucks","name":"Sam Carter","email":"sammahcarter@gmail.com","linkedIn":"https://linkedin.com/in/cartersamj","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Engineer","industry":"Restaurant, Food, and Beverage","cities":["Minneapolis","Madison","Toledo","Milwaukee"]},{"company":"Stardust","name":"James Tu","email":"tu.james@gmail.com","linkedIn":"https://www.linkedin.com/in/jamestu2000/","campus":"LA","cohort":"21","jobTitle":"Full Stack Engineer","industry":"","cities":["Tulsa","Tampa"]},{"company":"State Farm","name":"James Manahan","email":"manahanjames@yahoo.com","linkedIn":"https://www.linkedin.com/in/jamesmanahan/","campus":"LA","cohort":"34","jobTitle":"Software Developer","industry":"Insurance","cities":["Wichita","Oklahoma City","Tulsa"]},{"company":"Steel Perlot","name":"Morris Kolman","email":"morristskolman@gmail.com","linkedIn":"linkedin.com/in/morrykolman","campus":"NYOI","cohort":"2","jobTitle":"Initiative Lead: Social Media","industry":"Software / Tech","cities":["London","Chula Vista","Mexico City","Virginia Beach"]},{"company":"SteelHouse","name":"Jordan Betzer","email":"jordanbetzer@gmail.com","linkedIn":"https://www.linkedin.com/in/jordanbetzer/","campus":"LA","cohort":"26","jobTitle":"Software Engineer - Backend","industry":"Healthcare","cities":["Virginia Beach","Winston-Salem","Fort Worth"]},{"company":"SteelHouse","name":"Taylor Burrington","email":"taylor.burrington@gmail.com","linkedIn":"","campus":"LA","cohort":"30","jobTitle":"Software Engineer","industry":"Ad Tech","cities":["Durham","Lubbock","New York"]},{"company":"Stem Disintermedia Inc.","name":"Mia Huynh","email":"mia@stem.is","linkedIn":"https://www.linkedin.com/in/miamyhuynh/","campus":"LA","cohort":"22","jobTitle":"Software Engineer","industry":"","cities":["Minneapolis","Garland"]},{"company":"Storyblocks","name":"Eric Gomez","email":"Ergomez0201@gmail.com","linkedIn":"https://www.linkedin.com/in/eric-gomez","campus":"LA / WCRI","cohort":"48","jobTitle":"Senior Software Engineer","industry":"Software / Tech","cities":["Madison","Irving"]},{"company":"Streamlit","name":"Sam Haar","email":"samhaar@gmail.com","linkedIn":"https://www.linkedin.com/in/samhaar/","campus":"NYC","cohort":"21","jobTitle":"Software Engineer","industry":"ML / Data / Open Source","cities":["Phoenix","Glendale","Oklahoma City"]},{"company":"Stride","name":"Kaitlin Zhang","email":"Kaitlin.Zhang@owasp.org","linkedIn":"https://www.linkedin.com/in/kaizengrowth/","campus":"FTRI","cohort":"9","jobTitle":"Software Engineer, Writer/Instructor","industry":"Software / Tech","cities":["Chesapeake","Toledo","Virginia Beach","Omaha"]},{"company":"Stride Health, Inc.","name":"Ben Kwak","email":"benjamin.h.kwak@gmail.com","linkedIn":"https://www.linkedin.com/in/ben-kwak/","campus":"LA","cohort":"37","jobTitle":"Software Engineer, Full Stack","industry":"Insurance","cities":["Norfolk"]},{"company":"Strider Technologies ","name":"Timothy Chang ","email":"timchang87@gmail.com","linkedIn":"https://www.linkedin.com/in/timchang87","campus":"PTRI","cohort":"9","jobTitle":"Software Engineer","industry":"Other","cities":["Newark","Plano","North Las Vegas","Kansas City"]},{"company":"Stroz Friedberg","name":"Madalyn Baehre","email":"mmbaehre@gmail.com","linkedIn":"https://www.linkedin.com/in/madalynbaehre/","campus":"LA","cohort":"20","jobTitle":"Full-Stack Software Developer","industry":"","cities":["Phoenix","Charlotte","Las Vegas","Glendale"]},{"company":"Stuff","name":"Joseph Toledano","email":"joseph.a.toledano@gmail.com","linkedIn":"https://www.linkedin.com/in/joetoledano/","campus":"NYC","cohort":"23","jobTitle":"Software Developer","industry":"On-Demand Work","cities":["Sacramento","Garland"]},{"company":"Stuller, Inc.","name":"Sarah Moosa","email":"14sbethm@gmail.com","linkedIn":"https://linkedin.com/in/sarah-e-moosa","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Full Stack Developer","industry":"Retail","cities":["Milwaukee","Las Vegas","Denver","Detroit"]},{"company":"Stylitics","name":"Tania Lind","email":"tania.o.lind@gmail.com","linkedIn":"https://www.linkedin.com/in/lind-tania/","campus":"LA","cohort":"39","jobTitle":"Senior Frontend Engineer","industry":"Fashion","cities":["Mesa","Seattle","Sydney","Atlanta"]},{"company":"Suki AI","name":"Edward Shei","email":"edwardshei@gmail.com","linkedIn":"https://www.linkedin.com/in/edwardshei/","campus":"LA","cohort":"39","jobTitle":"Software Engineer","industry":"Medical Transcription","cities":["Mesa","Denver","Berlin"]},{"company":"Surfside","name":"Alec Below","email":"alecbelow@gmail.com","linkedIn":"","campus":"NYC","cohort":"17","jobTitle":"Software Engineer - Platform Integration","industry":"Advertising","cities":["Wichita","Madison"]},{"company":"Suuchi.com","name":"David Kim","email":"davidkim024@gmail.com","linkedIn":"https://www.linkedin.com/in/davidkim024/","campus":"NYC","cohort":"11","jobTitle":"Senior Full Stack Engineer","industry":"Manufacturing","cities":["Indianapolis"]},{"company":"Sweetgreen","name":"Emilia Brizuela-Nothaft","email":"emiliacarmel@gmail.com","linkedIn":"https://www.linkedin.com/in/emilia-brizuela-nothaft/","campus":"LA","cohort":"26","jobTitle":"Software Engineer","industry":"Food","cities":["Austin","Omaha","Norfolk"]},{"company":"Sweetgreen","name":"Melody Chai","email":"melodychai2@gmail.com","linkedIn":"https://www.linkedin.com/in/melodychai/","campus":"LA","cohort":"26","jobTitle":"Engineer I","industry":"Fast Casual Dining","cities":["Irvine","Newark","Arlington","Wichita"]},{"company":"Swisher International, Inc","name":"John Howell","email":"tsjohnnyh@gmail.com","linkedIn":"https://www.linkedin.com/in/johnny-r-howell/","campus":"FTRI / CTRI","cohort":"13","jobTitle":"eCommerce Development Supervisor","industry":"Other","cities":["Seattle","Garland"]},{"company":"Swoon","name":"Tyler Wilson","email":"wilsontyler95@gmail.com","linkedIn":"https://www.linkedin.com/in/twilsontech","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Bakersfield","Aurora","Toledo","Baltimore"]},{"company":"Synapse FI","name":"Mike Huynh","email":"mhuynh517@gmail.com","linkedIn":"https://www.linkedin.com/in/mikehuynh28/","campus":"LA","cohort":"28","jobTitle":"Front-End Engineer II","industry":"Fintech","cities":["Toronto","Newark","Beijing","Mesa"]},{"company":"T-Mobile","name":"Khang Sabre-Nguyen","email":"Klsabren.7@gmail.com","linkedIn":"https://www.linkedin.com/in/khang-sabre-nguyen/","campus":"PTRI","cohort":"7","jobTitle":"Software Engineer","industry":"Telecommunications","cities":["San Francisco","St. Louis","Beijing","San Antonio"]},{"company":"T-mobile","name":"Miaowen Zeng","email":"zmw0525@gmail.com","linkedIn":"www.linkedin.com/in/miaowen-zeng","campus":"FTRI / CTRI","cohort":"7","jobTitle":"Associate Software Engineer","industry":"Telecommunications","cities":["Fort Worth"]},{"company":"T. Rowe Price","name":"Liam Fontes","email":"liamfontes1244@gmail.com","linkedIn":"https://www.linkedin.com/in/liam-fontes/","campus":"NYC","cohort":"28","jobTitle":"Associate Software Engineer","industry":"Fintech","cities":["Stockton","Louisville","Mesa"]},{"company":"T. Rowe Price","name":"Robert Du","email":"robert.c.du@gmail.com","linkedIn":"https://www.linkedin.com/in/robert-du/","campus":"NYC","cohort":"26","jobTitle":"Mid-Level Software Engineer (contract-to-hire)","industry":"Fintech","cities":["Irvine","Gilbert","Reno","Atlanta"]},{"company":"Tailored Brands","name":"Viet Nguyen","email":"n.vietqb@gmail.com","linkedIn":"https://www.linkedin.com/in/viet-nguyen-2280491b2/","campus":"LA","cohort":"45","jobTitle":"UI Engineer","industry":"Retail","cities":["Toronto","Scottsdale"]},{"company":"Take Command Health","name":"Katie Janzen","email":"katiekennerjanzen@gmail.com","linkedIn":"https://www.linkedin.com/in/katie-janzen/","campus":"NYC","cohort":"32","jobTitle":"Front End Developer","industry":"Insurance","cities":["Sacramento","Stockton","San Jose","Buffalo"]},{"company":"Talage","name":"Parker Hutcheson","email":"pdhutcheson@gmail.com","linkedIn":"https://www.linkedin.com/in/parkerhutcheson/","campus":"FTRI","cohort":"4","jobTitle":"Senior Software Engineer","industry":"Insurtech","cities":["Irvine","Winston-Salem","London"]},{"company":"Tallied","name":"Abeer Faizan","email":"abeerfaizan@gmail.com","linkedIn":"https://www.linkedin.com/in/abeerfaizan/","campus":"LA","cohort":"47","jobTitle":"Software Engineer 2","industry":"Financial Services & Digital Payments","cities":["Arlington"]},{"company":"Tandem Chat (Tandem Communications Inc.)","name":"John Jongsun Suh","email":"john.jongsun.suh@pm.me","linkedIn":"https://linkedin.com/in/john-jongsun-suh","campus":"LA","cohort":"44","jobTitle":"Software Engineer","industry":"Communication/Productivity Software","cities":["London"]},{"company":"Tapestry","name":"Natalie Umanzor","email":"umanzor2949@gmail.com","linkedIn":"https://www.linkedin.com/in/nmczormick/","campus":"NYC","cohort":"13","jobTitle":"Software Engineer","industry":"E-Commerce","cities":["Plano","Columbus","Norfolk","St. Petersburg"]},{"company":"Target","name":"Courtney Doss","email":"777.catalyst@gmail.com","linkedIn":"","campus":"LA","cohort":"40","jobTitle":"Software Engineer","industry":"Retail","cities":["Tulsa","Glendale","Newark","Honolulu"]},{"company":"Tatari","name":"Natalie Klein","email":"natklein3@gmail.com","linkedIn":"https://www.linkedin.com/in/nataliesklein/","campus":"LA","cohort":"28","jobTitle":"Software Engineer","industry":"TV ads","cities":["Beijing","Anchorage","Las Vegas"]},{"company":"TaxNow","name":"Tanner Lyon","email":"Tannerhlyon@gmail.com","linkedIn":"https://www.linkedin.com/in/tannerhlyon","campus":"LA / WCRI","cohort":"51","jobTitle":"Software Engineer","industry":"Business Tech/Enterprise Tech","cities":["Nashville","Los Angeles","Jersey City"]},{"company":"TaxSlayer","name":"Katherine Marrow","email":"kmcromer1@gmail.com","linkedIn":"https://www.linkedin.com/in/katherine-marrow/","campus":"PTRI","cohort":"9","jobTitle":"Full Stack Developer","industry":"Other","cities":["El Paso"]},{"company":"Teachers Pay Teachers","name":"Courtney Kwong","email":"cwkwong95@gmail.com","linkedIn":"https://www.linkedin.com/in/courtneywkwong/","campus":"NYC","cohort":"13","jobTitle":"Full Stack Engineer","industry":"Media","cities":["Columbus"]},{"company":"Tech Holding","name":"Pablo Lee","email":"lee.pablo.e@gmail.com","linkedIn":"https://linkedin.com/in/pablo-lee/","campus":"LA","cohort":"24","jobTitle":"Software Engineer","industry":"Media & Advertisement","cities":["Aurora","Chesapeake"]},{"company":"TechEmpower","name":"Nick Stillman","email":"nick.edward.stillman@gmail.com","linkedIn":"https://www.linkedin.com/in/nick-e-stillman/","campus":"NYC","cohort":"24","jobTitle":"Programmer I","industry":"Software Development/Consulting","cities":["Sacramento","Santa Ana","Los Angeles"]},{"company":"Technergetics","name":"Cody Schexnider","email":"codydschexnider@gmail.com","linkedIn":"https://www.linkedin.com/in/schexnider/","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Junior Software Engineer","industry":"Software / Tech","cities":["Chandler","San Jose","Stockton","Madison"]},{"company":"Technergetics","name":"Angel Giron","email":"angel.c.giron1@gmail.con","linkedIn":"https://www.linkedin.com/in/acgiron/","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Software Engineer","industry":"Other","cities":["Kansas City","Sydney"]},{"company":"TEKsystems for AMEX","name":"Connor Rose Delisle","email":"connorrose.delisle@gmail.com","linkedIn":"https://www.linkedin.com/in/connorrosedelisle/","campus":"LA","cohort":"37","jobTitle":"Developer","industry":"Banking","cities":["Memphis","Portland","Paris"]},{"company":"Teleport","name":"Cole Styron","email":"colestyron@gmail.com","linkedIn":"https://www.linkedin.com/in/cole-styron/","campus":"LA","cohort":"40","jobTitle":"Software Engineer II","industry":"Tech","cities":["Columbus","Mesa","Henderson"]},{"company":"Tempus","name":"Eterna tsai","email":"One.eternity@gmail.com","linkedIn":"https://www.linkedin.com/in/eterna/","campus":"NYC","cohort":"7","jobTitle":"Software engineer","industry":"","cities":["Chesapeake","Irving"]},{"company":"Tend","name":"Christopher Johnson","email":"cjbeats@gmail.com","linkedIn":"https://www.linkedin.com/in/thecjjohnson/","campus":"LA","cohort":"39","jobTitle":"Junior Software Developer","industry":"Dentistry","cities":["Fort Worth"]},{"company":"Terminus","name":"Jonathan Ascencio","email":"Jonascencio1@gmail.com","linkedIn":"https://www.linkedin.com/in/jonascencio/","campus":"LA","cohort":"39","jobTitle":"Software Engineer","industry":"Marketing Tevh","cities":["Oakland","Indianapolis"]},{"company":"The Action Network","name":"Diana Li","email":"dianalicarrasco@gmail.com","linkedIn":"https://www.linkedin.com/in/dianalicarrasco/","campus":"NYC","cohort":"31","jobTitle":"Software Engineer II","industry":"Entertainment","cities":["Anaheim"]},{"company":"The Action Network","name":"Mahmoud Hmaidi","email":"mhmaidi789@gmail.com","linkedIn":"https://www.linkedin.com/in/mahmoud-hmaidi-mo/","campus":"LA","cohort":"42","jobTitle":"Software Engineer II","industry":"Entertainment","cities":["Baltimore","Virginia Beach","Sacramento","Colorado Springs"]},{"company":"The Charles Stark Draper Laboratory, Inc.","name":"Kelsey Flynn","email":"flynn.kelseyelizabeth@gmail.com","linkedIn":"www.linkedin.com/in/kelseyeflynn/","campus":"PTRI","cohort":"3","jobTitle":"Member of Technical Staff in Fullstack Web Group","industry":"Research","cities":["Jacksonville","Philadelphia"]},{"company":"The Coates Group","name":"Brandon Tran","email":"btran140@gmail.com","linkedIn":"https://www.linkedin.com/in/btran140","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Typescript Full Stack Engineer","industry":"Software / Tech","cities":["Lubbock"]},{"company":"The Cru","name":"Brooke Luro","email":"lurob@me.com","linkedIn":"https://www.linkedin.com/in/brooke-luro-4413046a/","campus":"NYC","cohort":"22","jobTitle":"Software Engineer","industry":"Professional Training & Coaching","cities":["Austin","Kansas City"]},{"company":"The Edge Treatment Center","name":"Joey Ma","email":"joeyma@gmail.com","linkedIn":"https://www.linkedin.com/in/joeyma/","campus":"LA / WCRI","cohort":"47","jobTitle":"Web Developer","industry":"Healthcare","cities":["Durham","Minneapolis","San Diego"]},{"company":"The Farm Project","name":"Quoc Bui","email":"quocbui@gmail.com","linkedIn":"https://www.linkedin.com/in/buiquoc/","campus":"LA","cohort":"26","jobTitle":"Lead Web UI Engineer?","industry":"Telecommunications","cities":["Lubbock"]},{"company":"The Farmerโ€™s Dog","name":"Willem Rosenthal","email":"willemrosenthal@gmail.com","linkedIn":"https://www.linkedin.com/in/willem-rosenthal","campus":"NYOI","cohort":"1","jobTitle":"Software Engineer III","industry":"Other","cities":["Toronto"]},{"company":"the guarantors","name":"Dmitriy Levy","email":"dmitriylevy01@gmail.com","linkedIn":"https://www.linkedin.com/in/dmitriy-levy/","campus":"NYC","cohort":"12","jobTitle":"Software Engineer","industry":"Fintech","cities":["Sacramento","Reno","Madison"]},{"company":"The Home Depot","name":"Eric Han","email":"eric.j.h92@gmail.com","linkedIn":"https://www.linkedin.com/in/eric-j-han/","campus":"LA / WCRI","cohort":"48","jobTitle":"Front-End Developer","industry":"Retail","cities":["San Francisco","El Paso"]},{"company":"The Home Depot","name":"Max Nikitin","email":"teachandtravelcn@gmail.com","linkedIn":"https://www.linkedin.com/in/maxnikitin23/","campus":"LA","cohort":"40","jobTitle":"Full Stack Software Engineer","industry":"Construction/retail","cities":["Laredo","Milwaukee"]},{"company":"The New York Times","name":"Karl Eden","email":"karl94e@gmail.com","linkedIn":"www.linkedin.com/in/karleden","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Software Engineer","industry":"News/Entertainment/Streaming Platforms","cities":["Columbus","Chesapeake"]},{"company":"The New Yorker","name":"Julien Devlin","email":"juliendevlin@gmail.com","linkedIn":"https://www.linkedin.com/in/juliendevlin/","campus":"NYC / ECRI","cohort":"38","jobTitle":"Software Developer","industry":"News/Entertainment/Streaming Platforms","cities":["Omaha","Tulsa"]},{"company":"The Perlman Clinic","name":"Louis Sheid","email":"louisxsheid@gmail.com","linkedIn":"https://www.linkedin.com/in/louisxsheid/","campus":"LA","cohort":"36","jobTitle":"Full Stack Developer","industry":"Healthcare","cities":["Laredo","Mumbai","Chicago"]},{"company":"The Prospector Theater","name":"Kelly Cuevas","email":"cuev73@live.com","linkedIn":"https://www.linkedin.com/in/kelly-cuevas/","campus":"NYC / ECRI","cohort":"36","jobTitle":"Lead Frontend Engineer","industry":"Social Impact/Nonprofit","cities":["Philadelphia"]},{"company":"The Trevor Project / Tecnolochicas Pro","name":"Miranda Jaramillo Morales","email":"mirandajaramillomorales@gmail.com","linkedIn":"https://www.linkedin.com/in/miranda-jaramillo/","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Software Engineer II / Software Engineering Mentor","industry":"Software / Tech","cities":["Reno","Boston","Denver","Long Beach"]},{"company":"The Walt Disney Company","name":"Gabriel Machado","email":"bielchristo@hotmail.com","linkedIn":"https://www.linkedin.com/in/bielchristo/","campus":"LA","cohort":"41","jobTitle":"Software Engineer","industry":"Entertainment","cities":["Atlanta","North Las Vegas","Virginia Beach"]},{"company":"The Walt Disney Company","name":"Ryan London","email":"ryel590@gmail.com","linkedIn":"https://www.linkedin.com/in/ryanlondon/","campus":"LA","cohort":"18","jobTitle":"Senior Software Engineer","industry":"IT","cities":["Lincoln"]},{"company":"The Walt Disney Company","name":"Shane Taylor","email":"shaneallantaylor@gmail.com","linkedIn":"https://www.linkedin.com/in/shane-allan-taylor/","campus":"LA","cohort":"27","jobTitle":"Software Engineer","industry":"Entertainment/Media","cities":["Beijing","Winston-Salem","Buffalo","Orlando"]},{"company":"The Walt Disney Company","name":"Yurii Shchyrba","email":"yurashchyrba@gmail.com","linkedIn":"https://www.linkedin.com/in/yuriishchyrba/","campus":"NYC","cohort":"31","jobTitle":"Software Engineer II","industry":"Software / Tech","cities":["Dallas","Tampa"]},{"company":"The Washington Post","name":"Christelle Desire","email":"Cdesire20@gmail.com","linkedIn":"https://www.linkedin.com/in/christelle-desire/","campus":"LA","cohort":"39","jobTitle":"Full stack engineer","industry":"Newsroom","cities":["Dallas","Arlington","Chandler","Denver"]},{"company":"The Wing","name":"Xaria Kirtikar","email":"xariak91@gmail.com","linkedIn":"https://www.linkedin.com/in/xaria/","campus":"NYC","cohort":"13","jobTitle":"Software Engineer","industry":"Co-working spaces","cities":["Nashville","Madison","Mesa","Albuquerque"]},{"company":"The X Company","name":"Roy Quintana","email":"rolandquintana1991@gmail.com","linkedIn":"https://www.linkedin.com/in/royquintana/","campus":"LA","cohort":"28","jobTitle":"Senior Software Engineer","industry":"Real Estate","cities":["Los Angeles"]},{"company":"TheMuse","name":"Franklin pinnock","email":"pinnockf@gmail.com","linkedIn":"https://www.linkedin.com/in/pinnockf/","campus":"NYC","cohort":"9","jobTitle":"Full-Stack Engineer","industry":"Robotics","cities":["Tampa"]},{"company":"Thomson Reuters","name":"Li Cheng","email":"lilybearcheng@gmail.com","linkedIn":"https://www.linkedin.com/in/li-cheng-76890540/","campus":"LA / WCRI","cohort":"50","jobTitle":"Integration Engineer","industry":"IT Services","cities":["Wichita","Arlington","Los Angeles"]},{"company":"ThreeKit","name":"Alison Fay","email":"aliglass13@gmail.com","linkedIn":"https://www.linkedin.com/in/alison-fay/","campus":"NYC","cohort":"31","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Sรฃo Paulo","Saint Paul","Fresno"]},{"company":"Thriveworks","name":"Alma Eyre","email":"aselunar@gmail.com","linkedIn":"https://www.linkedin.com/in/alma-eyre/","campus":"NYC / ECRI","cohort":"30","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Chesapeake","Indianapolis"]},{"company":"Thriveworks","name":"Charissa Ramirez","email":"chawissa@gmail.com","linkedIn":"https://linkedin.com/in/chawissa","campus":"NYC / ECRI","cohort":"32","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Las Vegas","Orlando","Houston"]},{"company":"Ticket Bridge","name":"Travis Frank","email":"travis@travismfrank.com","linkedIn":"https://www.linkedin.com/in/travis-m-frank/","campus":"NYC","cohort":"20","jobTitle":"Founder","industry":"Live Events","cities":["Omaha","Glendale","St. Petersburg"]},{"company":"TikTok","name":"James Cross","email":"jamespvcross@gmail.com","linkedIn":"https://www.linkedin.com/in/james-p-cross1/","campus":"NYC","cohort":"28","jobTitle":"Software Engineer","industry":"Social Media","cities":["Virginia Beach"]},{"company":"TikTok","name":"Jason Speare","email":"jcspeare@gmail.com","linkedIn":"https://www.linkedin.com/in/jason-speare","campus":"LA","cohort":"41","jobTitle":"Site Reliability Engineer","industry":"Video Social Networking","cities":["Toronto"]},{"company":"Tinder","name":"Harrison Nam","email":"harrison.j.nam@gmail.com","linkedIn":"https://www.linkedin.com/in/harrison-nam/","campus":"LA","cohort":"46","jobTitle":"Software Engineer","industry":"Social","cities":["Fresno"]},{"company":"Tinder","name":"Harrison Nam","email":"harrison.j.nam@gmail.com","linkedIn":"https://www.linkedin.com/in/harrison-nam/","campus":"LA","cohort":"46","jobTitle":"Software Engineer II, Web Development","industry":"Dating","cities":["St. Louis"]},{"company":"Tinder","name":"Serge Vartanov","email":"vartanov.s@gmail.com","linkedIn":"https://www.linkedin.com/in/svartanov/","campus":"LA","cohort":"24","jobTitle":"Senior Backend Engineer","industry":"","cities":["Long Beach","Buffalo","Honolulu"]},{"company":"Tixologi","name":"Mark Nichting","email":"mtnichting@gmail.com","linkedIn":"https://www.linkedin.com/in/mark-nichting/","campus":"LA / WCRI","cohort":"53","jobTitle":"Frontend Engineer","industry":"Blockchain/Web3","cities":["St. Louis"]},{"company":"Toast Inc","name":"Denys Dekhtiarenko","email":"dekhtiarenko.d@gmail.com","linkedIn":"https://www.linkedin.com/in/denysdekhtiarenko/","campus":"NYC","cohort":"18","jobTitle":"Software Engineer II","industry":"Restaurant software","cities":["Gilbert","Fresno","Kansas City"]},{"company":"TodayTix Group","name":"Xiao Li","email":"lixtong@gmail.com","linkedIn":"https://www.linkedin.com/in/lixiaotong/","campus":"PTRI","cohort":"2","jobTitle":"Associate Software Engineer","industry":"Entertainment","cities":["Sacramento"]},{"company":"TomoCredit","name":"Ramtin Khoee","email":"Ramtin.khoee@gmail.com","linkedIn":"https://www.linkedin.com/mwlite/in/ramtinkhoee","campus":"LA","cohort":"41","jobTitle":"Software Engineer","industry":"Fintech","cities":["Henderson"]},{"company":"Topologe (working with the Air Force)","name":"Joseph Michael Corrado","email":"joeyycorrss@gmail.com","linkedIn":"https://www.linkedin.com/in/josephmichaelcorrado/","campus":"NYC","cohort":"15","jobTitle":"Senior Software Engineer","industry":"Web Dev for Air Force","cities":["San Francisco"]},{"company":"Tortus","name":"Victor To","email":"victorto123@gmail.com","linkedIn":"https://www.linkedin.com/in/victorto1/","campus":"NYC","cohort":"19","jobTitle":"Software Engineer","industry":"Real Estate Tech","cities":["Arlington","Mexico City","Boston","St. Petersburg"]},{"company":"Toucan","name":"Isaac Durand","email":"isaac.durand@gmail.com","linkedIn":"https://www.linkedin.com/in/isaacdurand","campus":"LA","cohort":"5","jobTitle":"Senior Engineer II","industry":"","cities":["Phoenix"]},{"company":"Toucan","name":"Jane Kim","email":"jane.minhyung.kim@gmail.com","linkedIn":"https://www.linkedin.com/in/janeminhyungkim/","campus":"NYC","cohort":"22","jobTitle":"Software Engineer","industry":"Education tools","cities":["Riverside","Berlin","Anchorage","Baltimore"]},{"company":"Toyota","name":"Melanie Forbes","email":"mforbes12@gmail.com","linkedIn":"https://www.linkedin.com/in/melanie-forbes-/","campus":"FTRI / CTRI","cohort":"12","jobTitle":"Software Engineer","industry":"Automotive","cities":["Honolulu","Beijing","Virginia Beach","Lincoln"]},{"company":"Toyota","name":"Emily Hoang","email":"ethlin4@gmail.com","linkedIn":"https://www.linkedin.com/in/emilyhoang","campus":"FTRI / CTRI","cohort":"14","jobTitle":"Software Engineer","industry":"Automotive","cities":["Beijing","Chicago","Washington"]},{"company":"TradeAlly","name":"Adepeju Orefejo","email":"adepeju.kayode@gmail.com","linkedIn":"https://www.linkedin.com/adepeju-orefejo","campus":"PTRI","cohort":"7","jobTitle":"Backend Engineer","industry":"Software / Tech","cities":["North Las Vegas","Arlington"]},{"company":"Travelers Companies Inc.","name":"Dylan Li","email":"dyli797@gmail.com","linkedIn":"https://www.linkedin.com/in/dli107/","campus":"PTRI","cohort":"2","jobTitle":"Software Engineer","industry":"Insurance","cities":["North Las Vegas","Chandler","Kansas City"]},{"company":"Trend micro","name":"Daniel Balistocky","email":"thestinx@gmail.com","linkedIn":"https://www.linkedin.com/in/dannyb1983","campus":"LA","cohort":"41","jobTitle":"Software engineer","industry":"Web security","cities":["San Francisco"]},{"company":"TreviPay","name":"Utkarsh Uppal","email":"utkarshuppal@gmial.com","linkedIn":"https://www.linkedin.com/in/utkarshuppal/","campus":"LA / WCRI","cohort":"55","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Henderson"]},{"company":"Tribe Labs Inc.","name":"Alexander Landeros","email":"alexander.landeros1@gmail.com","linkedIn":"https://www.linkedin.com/in/alexander-landeros/","campus":"LA","cohort":"38","jobTitle":"Frontend Software Engineer","industry":"Communication Tech","cities":["San Jose","Pittsburgh","Anchorage"]},{"company":"Trineo","name":"Rebecca Viner","email":"rtviner@gmail.com","linkedIn":"https://www.linkedin.com/in/rtviner/","campus":"LA","cohort":"39","jobTitle":"Software Engineer II","industry":"Software Consultancy","cities":["Nashville"]},{"company":"Tripadvisor","name":"Jake Bradbeer","email":"jakebradbeer@gmail.com","linkedIn":"https://www.linkedin.com/in/jacobbradbeer/","campus":"LA","cohort":"49","jobTitle":"Software Engineer","industry":"Other","cities":["Reno","Virginia Beach","San Antonio","Kansas City"]},{"company":"TripleLift","name":"Arron Nestor","email":"arronnestor@gmail.com","linkedIn":"https://www.linkedin.com/in/arron-nestor/","campus":"PTRI","cohort":"2","jobTitle":"Cloud Infrastructure Engineer","industry":"Ad-Tech","cities":["North Las Vegas","Sydney","Tulsa","Austin"]},{"company":"Triplelift","name":"Kia Colbert","email":"colber16@gmail.com","linkedIn":"https://www.linkedin.com/in/kiacolbert/","campus":"NYC","cohort":"9","jobTitle":"Engineer I","industry":"Social Impact","cities":["Scottsdale","Sรฃo Paulo","Buffalo"]},{"company":"True Tickets","name":"Alesi-Andreya Ladas","email":"alesiladas@gmail.com","linkedIn":"https://www.linkedin.com/in/alesiladas/","campus":"NYC","cohort":"3","jobTitle":"Software Engineer","industry":"","cities":["Long Beach","Detroit","Jacksonville","Newark"]},{"company":"TrueCar","name":"Calvin Cao","email":"jtcao430@gmail.com","linkedIn":"https://www.linkedin.com/in/calvincao9/","campus":"LA","cohort":"48","jobTitle":"Software Engineer II","industry":"Marketing","cities":["Buffalo","Toledo","Plano","Chesapeake"]},{"company":"TrueCar","name":"Zac Haluza","email":"zac.haluza@gmail.com","linkedIn":"https://www.linkedin.com/in/zhaluza/","campus":"NYC","cohort":"17","jobTitle":"Software Engineer","industry":"Automotive","cities":["North Las Vegas","St. Petersburg","Madison","Fresno"]},{"company":"trueface.ai","name":"Sam Siye Yu","email":"yudataguy@gmail.com","linkedIn":"https://www.linkedin.com/in/yusiye/","campus":"LA","cohort":"27","jobTitle":"full stack developer","industry":"computer vision","cities":["Oklahoma City","Tampa"]},{"company":"Truepill","name":"Justin Baik","email":"bij3377@gmail.com","linkedIn":"https://www.linkedin.com/in/justin-baik/","campus":"LA","cohort":"42","jobTitle":"Associate Software Engineer","industry":"Health Tech","cities":["Lincoln","Kansas City","Plano"]},{"company":"Truepill","name":"Jonah Stewart","email":"jonahlstewart@gmail.com","linkedIn":"https://www.linkedin.com/in/jonahlstewart/","campus":"NYC","cohort":"22","jobTitle":"Associate Software Engineer - Backend","industry":"Healthtech","cities":["Oakland","Winston-Salem","Laredo","St. Louis"]},{"company":"Turbonomic","name":"Tyler Hurtt","email":"TylerAdamHurtt@gmail.com","linkedIn":"https://www.linkedin.com/in/TylerHurtt/","campus":"LA","cohort":"34","jobTitle":"Senior Software Engineer","industry":"Cloud & Network Monitoring","cities":["Lubbock","Nashville","Virginia Beach","Sรฃo Paulo"]},{"company":"Twilio","name":"Christopher Docuyanan","email":"Christophejd@gmail.com","linkedIn":"https://www.linkedin.com/in/cjdocuyanan/","campus":"LA","cohort":"40","jobTitle":"Software Engineer (Personas R&D)","industry":"Communications","cities":["Atlanta","Henderson","Fresno"]},{"company":"Twitch","name":"Alice Wong","email":"alice.sky.wong@gmail.com","linkedIn":"https://www.linkedin.com/in/wong-alice/","campus":"NYC","cohort":"11","jobTitle":"Frontend Engineer","industry":"IoT","cities":["Buffalo","Oakland","Fort Worth"]},{"company":"Two Barrels LLC","name":"Ryan Rambaran","email":"ryanrambaran.fl@gmail.com","linkedIn":"https://www.linkedin.com/in/ryan-rambaran/","campus":"PTRI","cohort":"4","jobTitle":"Front End Developer","industry":"Software / Tech","cities":["Scottsdale","Houston","Glendale"]},{"company":"Two Six Labs","name":"Kevin Nam","email":"Kevinjnam@gmail.com","linkedIn":"","campus":"LA","cohort":"31","jobTitle":"Software Engineer - Front End","industry":"Cybersecurity","cities":["Jacksonville","Pittsburgh"]},{"company":"TwoSix Labs","name":"Darren Napier","email":"darren.napier5@gmail.com","linkedIn":"https://www.linkedin.com/in/darrencnapier/","campus":"LA","cohort":"31","jobTitle":"Jr. Frontend Developer","industry":"Government","cities":["Miami","New York"]},{"company":"TwoThirtySix Labs","name":"Tayvon Wright","email":"tayvonwright@gmail.com","linkedIn":"https://www.linkedin.com/in/tayvon-wright/","campus":"NYC","cohort":"10","jobTitle":"Backend Engineer","industry":"Crypto","cities":["Fort Wayne"]},{"company":"Uber","name":"Michael Noah","email":"mnoah1@gmail.com","linkedIn":"https://www.linkedin.com/in/mnoah/","campus":"NYC","cohort":"31","jobTitle":"Software Engineer II","industry":"Transportation","cities":["Bakersfield","Beijing","Honolulu"]},{"company":"UiPath","name":"Eric Rodgers","email":"ericerodgers@yahoo.com","linkedIn":"https://www.linkedin.com/in/erodgers/","campus":"NYC","cohort":"31","jobTitle":"Software Engineer (SE1)","industry":"Software / Tech","cities":["Anaheim"]},{"company":"Umbra","name":"Joey Friedman","email":"friedman.joey@gmail.com","linkedIn":"https://www.linkedin.com/in/joseph-friedman-803803149/","campus":"NYC / ECRI","cohort":"34","jobTitle":"Software Engineer","industry":"Aerospace","cities":["New Orleans","Oakland","Mexico City","Omaha"]},{"company":"Uncommon Schools","name":"Taryn A Cunha","email":"taryn.cunha@gmail.com","linkedIn":"LinkedIn.com/in/taryncunha","campus":"NYC / ECRI","cohort":"34","jobTitle":"Integrationโ€™s Developer","industry":"Other","cities":["Las Vegas","Wichita","Mexico City","Madison"]},{"company":"Unify Consulting","name":"Gibran Haq","email":"gibran.haq57@gmail.com","linkedIn":"https://www.linkedin.com/in/gibran-haq/","campus":"FTRI","cohort":"5","jobTitle":"Senior Consultant","industry":"Consulting","cities":["Las Vegas","Sacramento"]},{"company":"Uniphore","name":"Vince Vu","email":"vince.hvu@gmail.com","linkedIn":"https://www.linkedin.com/in/vin-vu/","campus":"LA","cohort":"42","jobTitle":"Full Stack Developer","industry":"Conversational Service Automation","cities":["Riverside"]},{"company":"Unit21","name":"Nicole Ip","email":"nicole@unit21.ai","linkedIn":"","campus":"NYC","cohort":"19","jobTitle":"Software Engineer","industry":"AI / ML","cities":["Fort Wayne","St. Louis","Detroit"]},{"company":"United Airlines","name":"Jordan Jeter","email":"jeter.education@gmail.com","linkedIn":"linkedin.com/in/jordanrjeter","campus":"NYC / ECRI","cohort":"36","jobTitle":"Developer - IT","industry":"Aerospace","cities":["Chicago","Tulsa"]},{"company":"United Power","name":"Clifford Harvey","email":"cliffharvey06@gmail.com","linkedIn":"https://www.linkedin.com/in/clifford-harvey/","campus":"LA","cohort":"16","jobTitle":"Sr Fullstack Developer","industry":"","cities":["Irvine","Oakland","Long Beach"]},{"company":"United States Cold Storage Inc","name":"Glen Kasoff","email":"glen.kasoff@gmail.com","linkedIn":"https://www.linkedin.com/in/glen-kasoff","campus":"PTRI","cohort":"7","jobTitle":"Software Developer ERP","industry":"Other","cities":["Tampa","San Diego"]},{"company":"University of California","name":"Justin Wouters","email":"justinwouters@gmail.com","linkedIn":"Https://www.linkedin.com/in/justinwouters","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Junior application developer","industry":"Other","cities":["Los Angeles","Bakersfield","Boston"]},{"company":"University of Chicago, Center for the Art of East Asia","name":"Greg Panciera","email":"gregpanciera@gmail.com","linkedIn":"https://www.linkedin.com/in/gregpanciera","campus":"LA","cohort":"36","jobTitle":"Web Developer","industry":"Art","cities":["Dallas","Irving"]},{"company":"Unqork","name":"Donald Blanc","email":"Donaldblanc1@gmail.com","linkedIn":"https://www.linkedin.com/in/donald-b/","campus":"NYC","cohort":"11","jobTitle":"Senior Software Engineer","industry":"Tech","cities":["Pittsburgh","Oakland","San Diego"]},{"company":"Unum ID","name":"Allison Roderiques","email":"aeroderiques@gmail.com","linkedIn":"https://www.linkedin.com/in/allison-roderiques/","campus":"LA / WCRI","cohort":"51","jobTitle":"Full Stack Developer","industry":"Other","cities":["Fort Wayne","Plano","Buffalo"]},{"company":"Uphold","name":"Chelsea Harris","email":"chelseaharris137@gmail.com","linkedIn":"https://www.linkedin.com/in/chelseaharris23/","campus":"NYC","cohort":"22","jobTitle":"Frontend Engineer","industry":"Crypto","cities":["Memphis","Toronto","Riverside"]},{"company":"Upkeep","name":"Elie Baik","email":"semsemm810@gmail.com","linkedIn":"https://www.linkedin.com/in/sae-min-baik","campus":"LA","cohort":"34","jobTitle":"Software Engineer","industry":"CRM","cities":["Santa Ana"]},{"company":"UST","name":"Dhruv Thota","email":"dthota8@gmail.com","linkedIn":"https://linkedin.com/in/dhruv-thota","campus":"NYC / ECRI","cohort":"36","jobTitle":"Software Engineer","industry":"Software Solutions/Developer Tools","cities":["Anchorage","Phoenix"]},{"company":"VacationRenter","name":"Michele Moody","email":"moody.lillian@gmail.com","linkedIn":"https://www.linkedin.com/in/milmoody/","campus":"LA","cohort":"30","jobTitle":"Software Engineer","industry":"Travel","cities":["Reno"]},{"company":"Valor Performance","name":"Marco Tulio Gonzalez","email":"marco.t.gonzalez15@gmail.com","linkedIn":"https://www.linkedin.com/in/marcogonzalez2015/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Senior Software Engineer","industry":"Other","cities":["Portland","Indianapolis","Kansas City","Oakland"]},{"company":"VanGo","name":"Nicolas Venegas","email":"nicolasvenegasparker@gmail.com","linkedIn":"https://www.linkedin.com/in/nicolas-venegas-parker/","campus":"LA","cohort":"30","jobTitle":"Mobile Software Engineer","industry":"Consumer / Transportation","cities":["Plano","Anchorage","Chandler","Fresno"]},{"company":"Vanguard","name":"Ian Kila","email":"ian.nie.kila@gmail.com","linkedIn":"https://www.linkedin.com/in/ian-kila","campus":"NYC / ECRI","cohort":"35","jobTitle":"Application Developer","industry":"Software / Tech","cities":["St. Louis","Irving","Chula Vista"]},{"company":"Vanguard","name":"Carolina Bonitatis","email":"carolina@bonitat.is","linkedIn":"https://www.linkedin.com/in/carolina-bonitatis/","campus":"NYC / ECRI","cohort":"42","jobTitle":"Application Developer","industry":"Other","cities":["Mumbai"]},{"company":"Vantage Point Consulting, Inc.","name":"Constance Cho","email":"chcho87@gmail.com","linkedIn":"https://www.linkedin.com/in/chcho2/","campus":"NYC","cohort":"21","jobTitle":"Full Stack Engineer","industry":"Consulting","cities":["Chula Vista","Tucson","Lexington"]},{"company":"Vaulted Oak","name":"Alfred Sta. Iglesia","email":"a.sta.iglesia@gmail.com","linkedIn":"https://www.linkedin.com/in/astaiglesia/","campus":"LA","cohort":"41","jobTitle":"Software Engineer + Solutions Architect","industry":"E-Commerce","cities":["Miami"]},{"company":"VedaPointe","name":"Michelle Chang","email":"michelle.kelly.chang@gmail.com","linkedIn":"https://www.linkedin.com/in/michellekchang/","campus":"LA / WCRI","cohort":"49","jobTitle":"Software Developer","industry":"Healthcare","cities":["Virginia Beach","Beijing","Jersey City"]},{"company":"Vercel","name":"Jueun Grace Yun","email":"graceyunn@gmail.com","linkedIn":"https://www.linkedin.com/in/gracejueunyun/","campus":"NYC","cohort":"29","jobTitle":"Software Engineer","industry":"Gaming hardware","cities":["Memphis","Mesa"]},{"company":"Verily Life Sciences","name":"Michael Geismar","email":"mikelafobe@yahoo.com","linkedIn":"https://www.linkedin.com/in/michael-geismar/","campus":"FTRI","cohort":"2","jobTitle":"Software Engineer","industry":"Life Sciences","cities":["Chesapeake","San Jose","Lexington"]},{"company":"Veritext","name":"Shawn Convery","email":"shawnmconvery@gmail.com","linkedIn":"https://www.linkedin.com/in/shawnconvery1/","campus":"NYC","cohort":"27","jobTitle":"Software Engineer","industry":"Law","cities":["Tampa","Columbus"]},{"company":"Veritext","name":"Storm Ross","email":"stormaross@gmail.com","linkedIn":"https://www.linkedin.com/in/stormaross/","campus":"NYC","cohort":"27","jobTitle":"Backend Developer","industry":"Legal","cities":["Berlin","Pittsburgh","Paris","Dallas"]},{"company":"Verizon Media Platform","name":"Leonard Kee","email":"leonardwkee@gmail.com","linkedIn":"https://www.linkedin.com/in/thiskeeword/","campus":"LA","cohort":"4","jobTitle":"Software Development Engineer II","industry":"Media","cities":["Philadelphia","Irving","Tulsa"]},{"company":"Vertalo","name":"Phillip Bannister","email":"phillip.kbannister@Gmail.com","linkedIn":"https://www.linkedin.com/in/phillipkekoabannister/","campus":"LA","cohort":"41","jobTitle":"Software Engineer","industry":"Fintech","cities":["Boston","Anaheim","Detroit"]},{"company":"Verys","name":"Ray Yao","email":"rocaray51@gmail.com","linkedIn":"https://www.linkedin.com/in/raymondyao51/","campus":"LA","cohort":"27","jobTitle":"Software Developer","industry":"Consulting/Contracting Agency","cities":["Lubbock","Irving","Kansas City"]},{"company":"Verys","name":"Ted Min","email":"tedtaemin@gmail.com","linkedIn":"","campus":"LA","cohort":"41","jobTitle":"Senior Software Engineer","industry":"Consulting","cities":["London"]},{"company":"View, Inc.","name":"Eric Lee","email":"emlee54@gmail.com","linkedIn":"https://www.linkedin.com/in/errc-lee/","campus":"LA","cohort":"45","jobTitle":"Software Engineer, Front-End","industry":"Software / Tech","cities":["Henderson"]},{"company":"Violet","name":"Johanna Merluza","email":"johanna.merluza@gmail.com","linkedIn":"https://www.linkedin.com/in/johannamerluza/","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Senior Full Stack Engineer","industry":"Software / Tech","cities":["Raleigh","Kansas City","Los Angeles","Fort Worth"]},{"company":"Virga Labs","name":"Vance McGrady","email":"vancemcgrady@gmail.com","linkedIn":"https://www.linkedin.com/in/vancemcgrady/","campus":"LA / WCRI","cohort":"52","jobTitle":"Application Developer","industry":"Data Analytics","cities":["Tampa","Tucson","Chicago"]},{"company":"Virgin Hyperloop One","name":"Justin Fung","email":"justincaseyfung@gmail.com","linkedIn":"https://www.linkedin.com/in/citrusvanilla/","campus":"LA","cohort":"30","jobTitle":"Front-End Developer","industry":"Transportation","cities":["Long Beach"]},{"company":"Virgin Orbit","name":"Arkadiy Nigay","email":"ark234@gmail.com","linkedIn":"https://www.linkedin.com/in/ark234","campus":"LA","cohort":"23","jobTitle":"Full Stack Developer","industry":"Aerospace","cities":["Philadelphia","Baltimore","Kansas City","Houston"]},{"company":"Virgin Orbit","name":"Eric McCorkle","email":"ericm.mccorkle@gmail.com","linkedIn":"https://www.linkedin.com/in/eric-mccorkle/","campus":"LA","cohort":"48","jobTitle":"Full Stack Developer","industry":"Aerospace","cities":["Lexington","Fort Wayne"]},{"company":"Virtru","name":"Jake Van Vorhis","email":"vanvorhisjake@gmail.com","linkedIn":"https://www.linkedin.com/in/jakedoublev/","campus":"PTRI","cohort":"5","jobTitle":"Senior Full Stack Engineer","industry":"Security","cities":["Baltimore"]},{"company":"Visa","name":"Bryan Mooyeong Lee","email":"mylee1995@gmail.com","linkedIn":"https://www.linkedin.com/bryanm-lee","campus":"NYC","cohort":"12","jobTitle":"Software Engineer","industry":"Fintech","cities":["Tulsa"]},{"company":"VMware","name":"Maureen Onchiri","email":"onchirimaureen1@gmail.com","linkedIn":"https://www.linkedin.com/in/maureenonchiri/","campus":"NYC","cohort":"24","jobTitle":"Software Engineer","industry":"Tech","cities":["St. Louis","Lexington","Cleveland"]},{"company":"Volta Charging","name":"Maximilian Gonzalez","email":"thamaxlg@gmail.com","linkedIn":"https://www.linkedin.com/in/maximiliangonzalez/","campus":"LA","cohort":"29","jobTitle":"Full Stack Software Engineer, Cloud Platform","industry":"Transportation","cities":["Pittsburgh","North Las Vegas"]},{"company":"VS Media Inc","name":"Patrick Hu","email":"patrickhu91@gmail.com","linkedIn":"https://www.LinkedIn.com/in/patrickhu91","campus":"LA / WCRI","cohort":"52","jobTitle":"JavaScript Developer","industry":"Entertainment","cities":["San Jose","Plano"]},{"company":"VTS","name":"Andy Koh","email":"yk567@cornell.edu","linkedIn":"https://www.linkedin.com/in/andersonkoh/","campus":"LA","cohort":"39","jobTitle":"Software Engineer, Platform","industry":"Commercial Real Estate","cities":["Indianapolis"]},{"company":"W.L. Gore & Associates","name":"Amir Marcel","email":"amirmarcel@yahoo.com","linkedIn":"https://www.linkedin.com/in/amir-marcel","campus":"LA","cohort":"39","jobTitle":"Backend Developer","industry":"Manufacturing","cities":["Oklahoma City","Sรฃo Paulo","St. Petersburg"]},{"company":"Wag Labs Inc","name":"William Adamowicz","email":"william.adamowicz@gmail.com","linkedIn":"https://www.linkedin.com/in/williamadamowicz/","campus":"LA","cohort":"24","jobTitle":"Software Engineer","industry":"Pet Care","cities":["Oakland","Lexington","Madison"]},{"company":"Walgreens","name":"Ed Cho","email":"edcho720@gmail.com","linkedIn":"https://www.linkedin.com/in/edcho720/","campus":"FTRI / CTRI","cohort":"12","jobTitle":"Software Engineer","industry":"Other","cities":["Mexico City"]},{"company":"Walmart","name":"ChunHao Zheng","email":"chz062009@gmail.com","linkedIn":"https://www.linkedin.com/in/chunhz/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Software Engineer II","industry":"Marketing","cities":["Beijing"]},{"company":"Walmart","name":"Eddy Kwon","email":"eddykwon0@gmail.com","linkedIn":"https://www.linkedin.com/in/eddykwon/","campus":"NYC","cohort":"29","jobTitle":"Software Engineer","industry":"Retail","cities":["Louisville","Anchorage","El Paso","Orlando"]},{"company":"Walmart - Store No. 8","name":"Starvon Washington","email":"staronejazz@yahoo.com","linkedIn":"","campus":"LA","cohort":"19","jobTitle":"Software Engineer","industry":"","cities":["Lexington"]},{"company":"Walmart Global Tech","name":"Tao Chen","email":"xtc2008@gmail.com","linkedIn":"https://www.linkedin.com/in/xtc2008","campus":"NYC","cohort":"31","jobTitle":"Senior Software Engineer","industry":"Health and Wellness","cities":["Beijing","San Francisco","Chicago"]},{"company":"Walmart Labs","name":"Brian Barr","email":"Brian.Barr23@gmail.com","linkedIn":"https://www.linkedin.com/in/barrbrian/","campus":"NYC","cohort":"25","jobTitle":"Senior Backend Engineer (Node)","industry":"FinTech (?)","cities":["Columbus","Henderson"]},{"company":"Walmart Labs","name":"Stephanie Fong","email":"stfongg@gmail.com","linkedIn":"https://www.linkedin.com/in/stephaniefong08/","campus":"LA","cohort":"24","jobTitle":"Software Engineer","industry":"","cities":["Kansas City","San Francisco"]},{"company":"Warby Parker","name":"Sanaya Mirpuri","email":"ssmirpuri@gmail.com","linkedIn":"https://www.linkedin.com/in/sanayamirpuri/","campus":"NYC","cohort":"22","jobTitle":"BackendSoftware Engineer II","industry":"Retail","cities":["St. Louis","Gilbert","San Jose"]},{"company":"Warner Bros Discovery","name":"Mark Shin (Shino)","email":"pe.markshin@gmail.com","linkedIn":"https://www.linkedin.com/in/markshins/","campus":"NYC","cohort":"13","jobTitle":"Software Development Engineer II","industry":"Entertainment","cities":["Jacksonville","Tulsa","Arlington"]},{"company":"WASH","name":"Kevin Park","email":"xkevinpark@gmail.com","linkedIn":"https://www.linkedin.com/in/xkevinpark/","campus":"LA","cohort":"42","jobTitle":"Software UI Engineer","industry":"Electronics","cities":["Pittsburgh","Oklahoma City","Paris"]},{"company":"Wash Laundry Systems","name":"Harmon Huynh","email":"harmon.huynh@outlook.com","linkedIn":"https://www.linkedin.com/in/harmon-huynh/","campus":"LA","cohort":"26","jobTitle":"Senior Software Engineer","industry":"Consumer Services","cities":["Minneapolis","Jersey City"]},{"company":"Watsco","name":"Romelo Gilbert","email":"romelogilbert@gmail.com","linkedIn":"https://www.linkedin.com/in/romelo-gilbert","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"HVAC distributor","cities":["San Antonio","Denver"]},{"company":"Wayfair","name":"Dylan Bergstrom","email":"contact.dylanbergstrom@gmail.com","linkedIn":"https://www.linkedin.com/in/dylan-bergstrom","campus":"LA","cohort":"23","jobTitle":"Software Engineer L1","industry":"E-Commerce","cities":["Nashville"]},{"company":"Wayfair","name":"Jay Cogen","email":"jaycog44@gmail.com","linkedIn":"https://www.linkedin.com/in/jaycogen/","campus":"LA","cohort":"26","jobTitle":"Software Engineer II","industry":"Fintech","cities":["Dallas","New York","Raleigh","Orlando"]},{"company":"Wayfair","name":"Bryan Lee","email":"mylee1995@gmail.com","linkedIn":"https://www.linkedin.com/in/bryanm-lee/","campus":"NYC","cohort":"12","jobTitle":"Software Engineer Intern","industry":"E-Commerce","cities":["Winston-Salem","Milwaukee","Nashville","Oklahoma City"]},{"company":"WayScript","name":"Bren Yamaguchi","email":"Yamaguchibren@gmail.com","linkedIn":"https://www.linkedin.com/in/brenyamaguchi/","campus":"LA","cohort":"36","jobTitle":"Front End Software Engineer","industry":"Developer Tools","cities":["Irving","Anchorage"]},{"company":"WayUp","name":"Angela Scerbo","email":"amscerbo@gmail.com","linkedIn":"https://www.linkedin.com/in/angelascerbo/","campus":"NYC","cohort":"2","jobTitle":"Frontend Software Engineer","industry":"","cities":["Jacksonville","Cincinnati"]},{"company":"Weill Cornell Medicine","name":"Zoew McGrath","email":"Zoewmcgrath@outlook.com","linkedIn":"","campus":"FTRI","cohort":"5","jobTitle":"Web Developer","industry":"Healthcare","cities":["Paris","Bakersfield","San Francisco"]},{"company":"WELL Health","name":"Elise Bare","email":"elisebare@gmail.com","linkedIn":"https://www.linkedin.com/in/elisebare/","campus":"LA","cohort":"39","jobTitle":"Software Engineer, Front End","industry":"Healtchare","cities":["Sacramento","Greensboro","Omaha"]},{"company":"Well Health","name":"Janis Hernandez","email":"Janis11546@gmail.com","linkedIn":"https://www.linkedin.com/in/janis-h/","campus":"LA","cohort":"39","jobTitle":"Mid-level Frontend Engineer","industry":"Health","cities":["Denver"]},{"company":"Well Health","name":"Jesus Vargas","email":"jmodestov@gmail.com","linkedIn":"https://www.linkedin.com/in/jesusmvargas/","campus":"LA","cohort":"38","jobTitle":"Frontend Software Engineer","industry":"Health Tech","cities":["Memphis","New York","El Paso"]},{"company":"Well Health","name":"Michael Wang","email":"michaelwawang@gmail.com","linkedIn":"https://www.linkedin.com/in/michael--wang/","campus":"LA","cohort":"36","jobTitle":"Software Engineer (Backend)","industry":"Health Tech","cities":["San Jose","Las Vegas","San Antonio"]},{"company":"Well Health","name":"Eric Stallings","email":"stallings.eric@gmail.com","linkedIn":"https://www.linkedin.com/in/EricStallings/","campus":"LA","cohort":"30","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Chesapeake","Arlington","Santa Ana","Cincinnati"]},{"company":"Wellio","name":"Rachel Park","email":"rachelpark.dev@gmail.com","linkedIn":"https://www.linkedin.com/in/rachelparkdev/","campus":"NYC","cohort":"13","jobTitle":"Senior Software Engineer","industry":"Foodtech","cities":["Charlotte"]},{"company":"Wells Fargo","name":"Taylor Davis","email":"Taylor.davis7@live.com","linkedIn":"https://www.linkedin.com/in/taylordavis7","campus":"LA","cohort":"41","jobTitle":"Software Engineer","industry":"Fintech","cities":["Mesa"]},{"company":"Western Psychological Services (WPS)","name":"Justin Stoddard","email":"jgstoddard@gmail.com","linkedIn":"https://www.linkedin.com/in/jgstoddard/","campus":"FTRI","cohort":"4","jobTitle":"Microservices Engineer","industry":"Health Tech","cities":["Bakersfield"]},{"company":"WeWork","name":"Maung Maung Lay (Raphael Ram)","email":"ramraphael@gmail.com","linkedIn":"https://www.linkedin.com/in/raphaelram/","campus":"NYC","cohort":"8","jobTitle":"Software Engineer","industry":"Real Estate / Hospitality","cities":["Tampa","Sรฃo Paulo"]},{"company":"Whisper","name":"Kevin Mui","email":"kmui.work@gmail.com","linkedIn":"https://www.linkedin.com/in/kevin-mui1/","campus":"LA","cohort":"24","jobTitle":"Server Developer","industry":"","cities":["Sydney","Oakland"]},{"company":"William Hill","name":"Chris Flannery","email":"chriswillsflannery@gmail.com","linkedIn":"https://www.linkedin.com/in/chriswillsflannery/","campus":"NYC","cohort":"14","jobTitle":"Frontend Software Engineer","industry":"Sports/Entertainment","cities":["Durham","Albuquerque","Detroit"]},{"company":"William Hill","name":"Matt Greenberg","email":"mattagreenberg1@gmail.com","linkedIn":"https://www.linkedin.com/in/mattagreenberg/","campus":"NYC","cohort":"24","jobTitle":"front end software engineer","industry":"casino","cities":["Lincoln","Denver"]},{"company":"Willow Servicing","name":"Ian Grepo","email":"iangrapeo@gmail.com","linkedIn":"https://www.linkedin.com/in/ian-grepo/","campus":"LA / WCRI","cohort":"51","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Norfolk"]},{"company":"Windfall Data","name":"Bruno Portela","email":"bportela@pm.me","linkedIn":"https://www.linkedin.com/in/bgp/","campus":"LA","cohort":"42","jobTitle":"Senior Full Stack Engineer","industry":"Fintech, ML, AI","cities":["Las Vegas"]},{"company":"Windhover Labs","name":"Alex McPhail","email":"mcphail.alex@gmail.com","linkedIn":"www.linkedin.com/in/mcphail-alex","campus":"LA / WCRI","cohort":"53","jobTitle":"Software Engineer","industry":"Aerospace","cities":["Tulsa","Mesa","Pittsburgh"]},{"company":"Wiselayer","name":"Eric Lemay","email":"ericrogerlemay@gmail.com","linkedIn":"","campus":"NYC / ECRI","cohort":"31","jobTitle":"Software Engineer","industry":"Business Analytics","cities":["Indianapolis","Austin","El Paso"]},{"company":"Wiser Solutions","name":"Alex Hersler","email":"alex@alexhersler.com","linkedIn":"https://www.linkedin.com/in/alex-hersler/","campus":"LA / WCRI","cohort":"48","jobTitle":"Software Engineer II","industry":"Data Analytics","cities":["Henderson"]},{"company":"Wix.com","name":"Kenny shen","email":"kenny.shen313@gmail.com","linkedIn":"","campus":"NYC","cohort":"27","jobTitle":"Solutions Engineer","industry":"Software / Tech","cities":["Los Angeles","Chula Vista","San Jose","Chicago"]},{"company":"Wizely Finance","name":"Erik Cox","email":"erikbcox@gmail.com","linkedIn":"https://www.linkedin.com/in/erikbcox/","campus":"LA","cohort":"22","jobTitle":"Senior Full Stack Developer","industry":"","cities":["Arlington","Memphis","Tulsa","Miami"]},{"company":"WorkDay","name":"Tu Pham","email":"toopham@gmail.com","linkedIn":"https://www.linkedin.com/in/toopham/","campus":"LA","cohort":"46","jobTitle":"Software Development Engineer","industry":"FinTech, HR","cities":["Bakersfield","New York","Tokyo","Portland"]},{"company":"WorkFusion","name":"Matt Meigs","email":"mattmeigs@gmail.com","linkedIn":"https://www.linkedin.com/in/matt-meigs/","campus":"NYC","cohort":"20","jobTitle":"Front-End Developer","industry":"Intelligent Automation","cities":["Cincinnati","Tulsa"]},{"company":"WorkRamp","name":"Lex Choi","email":"lexchoi3@gmail.com","linkedIn":"https://www.linkedin.com/in/lexchoi3/","campus":"LA","cohort":"40","jobTitle":"Internal Tools/Customer Support Engineer","industry":"SaaS","cities":["Dallas"]},{"company":"World Wide Technology","name":"Christopher Davis","email":"chdavis0917@gmail.com","linkedIn":"https://www.linkedin.com/in/chris-davis0917","campus":"FTRI / CTRI","cohort":"11","jobTitle":"JavaScript Developer - Material Planning","industry":"IT Services","cities":["Tucson"]},{"company":"World Wide Technology","name":"Crystal Agoncillo","email":"crystal.agoncillo@gmail.com","linkedIn":"https://www.linkedin.com/in/agoncillo/","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Full Stack Developer","industry":"IT Services","cities":["Austin","Indianapolis","Mexico City","Louisville"]},{"company":"World Wide Technology","name":"Stephanie Page","email":"stephanieelainepage@gmail.com","linkedIn":"https://www.linkedin.com/in/stephanie-page-atx/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Associate Developer","industry":"Consulting","cities":["London"]},{"company":"World Wide Technology","name":"Brett Guidry","email":"guidry.brett@gmail.com","linkedIn":"https://www.linkedin.com/in/brett-guidry504/","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Software Engineer","industry":"IT Services","cities":["Phoenix","Washington"]},{"company":"WPROMOTE","name":"Nay Linn","email":"naylinn.pkv@gmail.com","linkedIn":"https://www.linkedin.com/in/nay-linn/","campus":"NYC","cohort":"19","jobTitle":"Software Engineer","industry":"Digital Marketing","cities":["Minneapolis","Chula Vista"]},{"company":"WQA","name":"Victor Martins","email":"martinsvictor287@gmail.com","linkedIn":"https://www.linkedin.com/in/victormartinsfemi","campus":"LA / WCRI","cohort":"59","jobTitle":"Software Develooper","industry":"Consulting","cities":["Wichita"]},{"company":"WW(formally Weight Watchers)","name":"Mika Todd","email":"mikataressatodd@gmail.com","linkedIn":"https://www.linkedin.com/in/mika-todd","campus":"LA","cohort":"43","jobTitle":"Software Engineer","industry":"Health and Wellness","cities":["Fresno","Lexington"]},{"company":"Wyze","name":"Jason Victor","email":"jason.victor26@gmail.com","linkedIn":"","campus":"LA","cohort":"38","jobTitle":"Jr. Front End Engineer","industry":"IoT","cities":["Washington","Denver"]},{"company":"Xandr","name":"Billy Hepfinger","email":"bhepfing@gmail.com","linkedIn":"https://www.linkedin.com/in/billy-hepfinger","campus":"NYC","cohort":"25","jobTitle":"Software Engineer II","industry":"Advertising / Telecom","cities":["Charlotte"]},{"company":"Xandr","name":"Whit Rooke","email":"whit.rooke@gmail.com","linkedIn":"https://www.linkedin.com/in/whit-rooke/","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"Adtech","cities":["Albuquerque"]},{"company":"Xinova","name":"Clariz Mariano","email":"clariz.mariano@gmail.com","linkedIn":"https://www.linkedin.com/in/clarmariano/","campus":"LA","cohort":"22","jobTitle":"Software Engineer 2","industry":"","cities":["Toronto","Fort Worth"]},{"company":"Xtivia","name":"Anthony Lo","email":"87.anthonylo@gmail.com","linkedIn":"https://www.linkedin.com/in/anthonyelo/","campus":"LA / WCRI","cohort":"52","jobTitle":"Jr. UI Developer","industry":"IT Services","cities":["North Las Vegas","Madison","Fresno","Louisville"]},{"company":"Yahoo","name":"DeriAnte Sinclair","email":"deriante.sinclair@gmail.com","linkedIn":"https://www.linkedin.com/in/deriante-sinclair/","campus":"LA / WCRI","cohort":"49","jobTitle":"Software Apps Engineer I","industry":"Software / Tech","cities":["Fort Worth","New Orleans","Denver","Philadelphia"]},{"company":"Yahoo","name":"Tom Curtin","email":"thisistomcurtin@gmail.com","linkedIn":"https://www.linkedin.com/in/tfcurtin/","campus":"PTRI","cohort":"3","jobTitle":"Software Engineer","industry":"Other","cities":["Phoenix","Saint Paul","New York","Santa Ana"]},{"company":"Yale New Haven Health","name":"Aileen Chan Miranda","email":"aileenchany@gmail.com","linkedIn":"https://www.linkedin.com/in/aileen-chanmiranda/","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Web Developer","industry":"Healthtech/Healthcare","cities":["Wichita","Oakland"]},{"company":"Yext","name":"Allen Xie","email":"axie0320@gmail.com","linkedIn":"https://www.linkedin.com/in/axie0320/","campus":"PTRI","cohort":"4","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Gilbert","Mumbai","San Jose"]},{"company":"YMCA Retirement Fund","name":"Anna Konstantinovich","email":"anna@anreko.design","linkedIn":"https://www.linkedin.com/in/anna-konstantinovich/","campus":"NYC","cohort":"15","jobTitle":"UX Designer & Developer (It's complicated - let me know if you want more details)","industry":"Financial Services","cities":["Oklahoma City","Paris"]},{"company":"Zeal","name":"Jason Lee","email":"jasonmlee1020@gmail.com","linkedIn":"https://www.linkedin.com/in/jasonjml/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer II","industry":"Fintech","cities":["Louisville"]},{"company":"Zealthy","name":"Kennan Budnik","email":"kobudnik@gmail.com","linkedIn":"https://linkedin.com/in/kobudnik","campus":"NYOI","cohort":"2","jobTitle":"Software Engineer II","industry":"Healthtech/Healthcare","cities":["Norfolk","Tucson"]},{"company":"ZenBusiness","name":"Adam Sheff","email":"adamisheff@gmail.com","linkedIn":"https://www.linkedin.com/in/adam-sheff/","campus":"FTRI","cohort":"4","jobTitle":"Software Engineer","industry":"Entrepreneurship","cities":["Miami","Kansas City"]},{"company":"ZenBusiness","name":"Christie Herring","email":"clherring@gmail.com","linkedIn":"https://www.linkedin.com/in/christie-herring/","campus":"LA","cohort":"46","jobTitle":"Software Engineer II","industry":"SaaS, business creation services","cities":["Stockton","Milwaukee","Madison","Norfolk"]},{"company":"Zenefits","name":"Tobey Forsman","email":"tobeyforsman@gmail.com","linkedIn":"https://www.linkedin.com/in/tobeyforsman/","campus":"LA","cohort":"42","jobTitle":"Senior Software Engineer","industry":"Software/Tech","cities":["Portland"]},{"company":"zephyrx","name":"Brian Haller","email":"brian@brianhaller.com","linkedIn":"https://www.linkedin.com/in/brianjhaller/","campus":"NYC","cohort":"14","jobTitle":"Software Engineer","industry":"med tech","cities":["Houston"]},{"company":"ZeroPW","name":"Tammy Tan","email":"tammytan1912@gmail.com","linkedIn":"https://www.linkedin.com/in/tammytan1/","campus":"NYC","cohort":"15","jobTitle":"Frontend Engineer","industry":"Computer & Network Security","cities":["Paris","Norfolk"]},{"company":"Zest AI","name":"Ronelle Caguioa","email":"ronelle.caguioa@gmail.com","linkedIn":"https://www.linkedin.com/in/ronellecaguioa/","campus":"LA","cohort":"36","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Paris","Aurora","New Orleans","Anchorage"]},{"company":"Zeta Global","name":"Chris Tang","email":"chrisjtang@gmail.com","linkedIn":"https://www.linkedin.com/in/chrisjtang","campus":"LA","cohort":"46","jobTitle":"Software Engineer","industry":"Data","cities":["Boston","Riverside","Saint Paul"]},{"company":"Zillow","name":"Cary L Chan","email":"caryLchan@gmail.com","linkedIn":"https://www.linkedin.com/in/carylchan/","campus":"LA","cohort":"35","jobTitle":"Full Stack Engineer","industry":"Entertainment","cities":["Toronto","Toledo","Chandler"]},{"company":"Zillow","name":"Hien Nguyen","email":"hien.qqnguyen@gmail.com","linkedIn":"https://www.linkedin.com/in/hienqn/","campus":"LA","cohort":"37","jobTitle":"Software Engineer","industry":"Entertainment","cities":["Fresno","Miami"]},{"company":"Zillow Group","name":"Logan Thies","email":"logan.thies@icloud.com","linkedIn":"https://www.linkedin.com/in/loganthies137/","campus":"PTRI","cohort":"1","jobTitle":"Software Development Engineer","industry":"Real Estate","cities":["Tampa","Bakersfield","Charlotte"]},{"company":"Zip","name":"Chase Walters","email":"cwwalters@fastmail.com","linkedIn":"https://www.linkedin.com/in/charleswwalters/","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Founding Software Engineer","industry":"Security","cities":["Albuquerque"]},{"company":"Zipcar","name":"Sean Smith","email":"smith.seanm17@gmail.com","linkedIn":"https://www.linkedin.com/in/sean-smith17/","campus":"LA","cohort":"36","jobTitle":"Software Engineer (Front End)","industry":"Transportation","cities":["Laredo","Chula Vista"]},{"company":"Zipdrug","name":"Tolga Mizrakci","email":"tolgamizrakci@gmail.com","linkedIn":"https://www.linkedin.com/in/tolga-mizrakci/","campus":"NYC","cohort":"10","jobTitle":"Senior Software Engineer","industry":"Health Care","cities":["Las Vegas","New York","Mexico City"]},{"company":"ZipRecruiter","name":"Ryan Lee","email":"rynklee@gmail.com","linkedIn":"https://linkedin.com/in/rynklee","campus":"LA","cohort":"46","jobTitle":"Software Engineer III","industry":"Other","cities":["Mexico City","Corpus Christi","Stockton"]},{"company":"Zoetis","name":"Eileen Cho","email":"eileenaracho@gmail.com","linkedIn":"https://www.linkedin.com/in/eileenaracho/","campus":"LA / WCRI","cohort":"56","jobTitle":"Data Systems Engineer","industry":"Other","cities":["Tulsa","Laredo","Louisville","Pittsburgh"]},{"company":"Zogo Finance","name":"Derek Miller","email":"dsymiller@gmail.com","linkedIn":"https://www.linkedin.com/in/dsymiller/","campus":"NYC","cohort":"22","jobTitle":"Full Stack Engineer","industry":"education, financial services, banking","cities":["Buffalo","Dallas","St. Petersburg","Tokyo"]},{"company":"Zoom Video Communications","name":"Jason Jones","email":"Jasonroyjones@gmail.com","linkedIn":"https://www.linkedin.com/in/jasonroyjones","campus":"LA","cohort":"33","jobTitle":"Software Development Engineer","industry":"Telecommunications","cities":["Houston","Tucson"]},{"company":"Zywave","name":"Jacob Davis","email":"jacob.drew.davis@gmail.com","linkedIn":"https://www.linkedin.com/in/jacob-drew-davis/","campus":"FTRI","cohort":"4","jobTitle":"Senior DevSecOps Engineer","industry":"Software / Tech","cities":["Plano","Tampa"]}] \ No newline at end of file diff --git a/scripts/db/mockData/MOCK_FORUMS.json b/scripts/db/mockData/MOCK_FORUMS.json new file mode 100644 index 00000000..cb85ccc3 --- /dev/null +++ b/scripts/db/mockData/MOCK_FORUMS.json @@ -0,0 +1 @@ +[{"title":"Code Crunch & Job Hunt: Battle Logs","description":"Share your epic (or tragic) tales from the job search battlefield. Did you bravely conquer the coding test, or did it conquer you?"},{"title":"Debugging My Resume","description":"Need help squashing those pesky resume bugs? Post your CV here and let the community help you refactor it into a job offer magnet."},{"title":"Interview Nightmares & Dream Jobs","description":"Spill the beans on your worst interview disasters and celebrate those rare moments when it actually went well. Misery loves company, and so do success stories!"},{"title":"HR: Humans or Robots?","description":"Ever wonder if that HR person was a cleverly disguised bot? Share your weirdest and most robotic interactions with hiring departments."},{"title":"Salary Negotiation: The Boss Fight","description":"Tips, tricks, and epic fails from the final boss battle of job hunting: salary negotiations. Did you get the loot or just a consolation prize?"},{"title":"Coding Challenge Gauntlet","description":"Post and discuss the coding challenges that made you cry, laugh, or question your career choices. Help others survive the gauntlet!"},{"title":"Office Buzzwords & Bingo","description":"Share and decipher the latest buzzwords and jargon from job postings and interviews. Bonus points for the most absurd phrases."},{"title":"Side Projects & Procrastination","description":"Brag about your side projects or confess how theyโ€™re really just elaborate ways to procrastinate. Either way, weโ€™re impressed!"},{"title":"LinkedIn Lamentations","description":"Rant and rave about the peculiarities of LinkedIn. Endorsements, random connection requests, and the mysterious 'we found your profile' emails."},{"title":"Rejected & Dejected: Therapy Sessions","description":"A safe space to vent about job rejections and support each other through the emotional rollercoaster of the job hunt. Cookies and virtual hugs provided."}] \ No newline at end of file diff --git a/scripts/db/mockData/MOCK_GRADUATE_INVITATIONS.json b/scripts/db/mockData/MOCK_GRADUATE_INVITATIONS.json new file mode 100644 index 00000000..0459a941 --- /dev/null +++ b/scripts/db/mockData/MOCK_GRADUATE_INVITATIONS.json @@ -0,0 +1 @@ +[{"email":"acarradice0@gravatar.com","token":"541658530c351ab19011dc5a1cc7f796eb9fd388","tokenExpiry":"1714386955","isRegistered":true,"firstName":"Alonso","lastName":"Carradice","registeredAt":"1677124950","cohort":"FTRI 3"},{"email":"wbleaden1@usgs.gov","token":"8ce87b99dc305ef8272b2261a73539156a2a4b11","tokenExpiry":"1703047259","isRegistered":false,"firstName":"Wilton","lastName":"Bleaden","registeredAt":"1710588748","cohort":"WCRI 14"},{"email":"ghalso2@jalbum.net","token":"19e7fd479b1310e00940ac610b6d3731699224b3","tokenExpiry":"1708125337","isRegistered":true,"firstName":"Gannon","lastName":"Halso","registeredAt":"1685884782","cohort":"NYC 50"},{"email":"dgrinter3@amazon.com","token":"15639748a71a12b6c5b2a9e715aca9ff092877ae","tokenExpiry":"1719655502","isRegistered":false,"firstName":"Doralynn","lastName":"Grinter","registeredAt":"1693987127","cohort":"PTRI 62"},{"email":"wweatherley4@phoca.cz","token":"bc2b71d4fbd3ed3de0a0022aa21bbed4f851c755","tokenExpiry":"1699687351","isRegistered":true,"firstName":"Winn","lastName":"Weatherley","registeredAt":"1710066414","cohort":"LA 0"},{"email":"hregis5@dailymail.co.uk","token":"01aa9782932b7772770b0c4eae54787dea5f9638","tokenExpiry":"1719748549","isRegistered":true,"firstName":"Hermon","lastName":"Regis","registeredAt":"1694142909","cohort":"CTRI 69"},{"email":"crousby6@apache.org","token":"22ce1f16d86aa9b601a6bd044d3bbc455b4f36e2","tokenExpiry":"1721465604","isRegistered":false,"firstName":"Cordie","lastName":"Rousby","registeredAt":"1682025913","cohort":"LA 69"},{"email":"mriseborough7@clickbank.net","token":"3fad65274e7439c2c0a35200295c46977020885f","tokenExpiry":"1706069183","isRegistered":false,"firstName":"Maureene","lastName":"Riseborough","registeredAt":"1686092791","cohort":"LA 52"},{"email":"olawson8@washington.edu","token":"39b226afbd4282124dd31b9dd3243cb7e0b1f596","tokenExpiry":"1704307416","isRegistered":false,"firstName":"Orelle","lastName":"Lawson","registeredAt":"1689333880","cohort":"NYC 36"},{"email":"jemer9@constantcontact.com","token":"dbc7e41297546ad0d7a437abc4573ad5ac36dd2c","tokenExpiry":"1710382524","isRegistered":false,"firstName":"Jess","lastName":"Emer","registeredAt":"1688557374","cohort":"LA 58"},{"email":"mtubblesa@nifty.com","token":"a664d8ee7cd56a9ce2963eae874da9c65fcd2361","tokenExpiry":"1719286527","isRegistered":true,"firstName":"Mariel","lastName":"Tubbles","registeredAt":"1679623674","cohort":"FTRI 97"},{"email":"pkeightleyb@webnode.com","token":"3c78dccda8c878bb7dea64431e5811b2a75af184","tokenExpiry":"1714278643","isRegistered":true,"firstName":"Perice","lastName":"Keightley","registeredAt":"1690276231","cohort":"LA 60"},{"email":"efalcusc@mapy.cz","token":"184efd9e68dbe020111734f78303742a65c1fd15","tokenExpiry":"1718471384","isRegistered":false,"firstName":"Eula","lastName":"Falcus","registeredAt":"1708142836","cohort":"LA 95"},{"email":"jbaldinid@simplemachines.org","token":"26f1e984850651b64779d36d31af27602c8e714b","tokenExpiry":"1704480185","isRegistered":true,"firstName":"Jacqui","lastName":"Baldini","registeredAt":"1692681038","cohort":"FTRI 0"},{"email":"snorthridgee@macromedia.com","token":"801d95108e35ccce2fe3b290803de8637d65959e","tokenExpiry":"1715200469","isRegistered":true,"firstName":"Scottie","lastName":"Northridge","registeredAt":"1691263603","cohort":"WCRI 3"},{"email":"dhedgerf@shareasale.com","token":"d681aa42bf9f2371c60c05754a93fd1dc860fec8","tokenExpiry":"1727580488","isRegistered":false,"firstName":"Dorie","lastName":"Hedger","registeredAt":"1687226473","cohort":"FTRI 47"},{"email":"nskeeng@yellowbook.com","token":"fadb33e7532fdce703106043931f2a6f15f88bc3","tokenExpiry":"1721509297","isRegistered":false,"firstName":"Nadia","lastName":"Skeen","registeredAt":"1695484577","cohort":"LA 74"},{"email":"mgroomh@samsung.com","token":"8df1430be1cc296c94155b06a79a1e24d12b16ad","tokenExpiry":"1698531018","isRegistered":true,"firstName":"Mickie","lastName":"Groom","registeredAt":"1691239049","cohort":"PTRI 41"},{"email":"lkupiszi@liveinternet.ru","token":"1740f0be8a449176d15c33a65a5c3bc011cc0f07","tokenExpiry":"1707223534","isRegistered":true,"firstName":"Leticia","lastName":"Kupisz","registeredAt":"1683211294","cohort":"CTRI 43"},{"email":"bdeanj@mlb.com","token":"7f27fa69908e6aa17e28f425de5fcc57f0eeedc0","tokenExpiry":"1717798784","isRegistered":false,"firstName":"Babb","lastName":"Dean","registeredAt":"1686342997","cohort":"FTRI 8"},{"email":"blilleyk@blogs.com","token":"7fb8c075412d11bebc0ba1aeca86bb08393f136b","tokenExpiry":"1721551606","isRegistered":false,"firstName":"Burtie","lastName":"Lilley","registeredAt":"1679902087","cohort":"ECRI 77"},{"email":"dwoodlandl@dailymotion.com","token":"774c9ed5bf04f259139e1c14b9446c818f83ec2a","tokenExpiry":"1721916987","isRegistered":true,"firstName":"Dorelle","lastName":"Woodland","registeredAt":"1717510004","cohort":"CTRI 81"},{"email":"bdunlapm@dropbox.com","token":"0ddfcd5aee883c68ff7a7a704a406998d3b95a64","tokenExpiry":"1697506453","isRegistered":false,"firstName":"Burk","lastName":"Dunlap","registeredAt":"1680396642","cohort":"FTRI 7"},{"email":"cdarreln@newyorker.com","token":"53488dd01c43dfa1d596c7964a4d2f534dc8ead5","tokenExpiry":"1724607931","isRegistered":false,"firstName":"Cecilius","lastName":"Darrel","registeredAt":"1706643899","cohort":"PTRI 25"},{"email":"bbudcocko@va.gov","token":"efb168a15a3096e53d12ae9f80569d8d557c4493","tokenExpiry":"1701718041","isRegistered":true,"firstName":"Brod","lastName":"Budcock","registeredAt":"1676443900","cohort":"NYC 37"},{"email":"bthickinp@ibm.com","token":"8e4af5f631de12544c44ed442d50aafb83204a44","tokenExpiry":"1711888928","isRegistered":false,"firstName":"Bayard","lastName":"Thickin","registeredAt":"1695590750","cohort":"CTRI 6"},{"email":"llarringtonq@sakura.ne.jp","token":"9951ab34e301c226be2b63b1e3f6b61e7ca6f178","tokenExpiry":"1706943537","isRegistered":true,"firstName":"Lorenza","lastName":"Larrington","registeredAt":"1683278978","cohort":"FTRI 46"},{"email":"rstantonr@mashable.com","token":"e5cd7ddfdfb812f47184272328b5510c9d8887b9","tokenExpiry":"1707981578","isRegistered":true,"firstName":"Ranna","lastName":"Stanton","registeredAt":"1694102332","cohort":"LA 91"},{"email":"scowdroys@umich.edu","token":"43315d4d9b75715104ee90104db03bf430b78fb1","tokenExpiry":"1705880075","isRegistered":false,"firstName":"Silvan","lastName":"Cowdroy","registeredAt":"1698398807","cohort":"NYC 23"},{"email":"pskirlingt@4shared.com","token":"85d7af1fdd70f8fd165a014e08b7a4b3963ac044","tokenExpiry":"1716827794","isRegistered":false,"firstName":"Pepita","lastName":"Skirling","registeredAt":"1703077019","cohort":"PTRI 94"},{"email":"bspensleyu@indiatimes.com","token":"597d4be98c6ed3ab97f2301c6da3ee55d69033ed","tokenExpiry":"1715899465","isRegistered":true,"firstName":"Brinna","lastName":"Spensley","registeredAt":"1690415190","cohort":"WCRI 52"},{"email":"lblaisv@networksolutions.com","token":"b7502e54d2a16983c2ffab259798841eec4e8272","tokenExpiry":"1705285133","isRegistered":true,"firstName":"Leta","lastName":"Blais","registeredAt":"1704030885","cohort":"LA 1"},{"email":"olehuquetw@privacy.gov.au","token":"d368e4882e0e66e2c93020c54534bb56ff2d9d52","tokenExpiry":"1721342625","isRegistered":true,"firstName":"Onfre","lastName":"Le Huquet","registeredAt":"1700655434","cohort":"PTRI 1"},{"email":"cedworthiex@yelp.com","token":"8cb9209121c6007c214e4d7bc010190ee2bdd22a","tokenExpiry":"1701803096","isRegistered":false,"firstName":"Cairistiona","lastName":"Edworthie","registeredAt":"1695427010","cohort":"ECRI 24"},{"email":"jchongy@cpanel.net","token":"239edcea2ff7a2c73af428692f85be9b2ffab43f","tokenExpiry":"1725107146","isRegistered":true,"firstName":"Jonas","lastName":"Chong","registeredAt":"1700604074","cohort":"CTRI 85"},{"email":"emintoz@statcounter.com","token":"4fdd3aae97ec4a7d44202cbfe5034517d0f00ebc","tokenExpiry":"1720135279","isRegistered":true,"firstName":"Ezra","lastName":"Minto","registeredAt":"1701904952","cohort":"FTRI 10"},{"email":"vlicari10@businessweek.com","token":"752025d65cc509ae58038fa039654c7c5ccff278","tokenExpiry":"1718335874","isRegistered":false,"firstName":"Virgina","lastName":"Licari","registeredAt":"1708284774","cohort":"LA 61"},{"email":"rlambrick11@netscape.com","token":"38e604f9dd47c6468ab3d4104d8dbc9f6968bfd8","tokenExpiry":"1714756935","isRegistered":true,"firstName":"Rickert","lastName":"Lambrick","registeredAt":"1678948854","cohort":"FTRI 86"},{"email":"jmadner12@boston.com","token":"6f81c343c0ee4efec0c7d3359ec562dfdd26bdfd","tokenExpiry":"1715296843","isRegistered":true,"firstName":"Jesselyn","lastName":"Madner","registeredAt":"1685889400","cohort":"LA 38"},{"email":"ptest13@ovh.net","token":"81d623ebdd75de31900eaeefd2f8f6d82e5de0f8","tokenExpiry":"1708108205","isRegistered":false,"firstName":"Peirce","lastName":"Test","registeredAt":"1678201051","cohort":"PTRI 56"},{"email":"swalcher14@hc360.com","token":"824b906fd32c063d19ac0413a25ed88b366b400c","tokenExpiry":"1706535307","isRegistered":true,"firstName":"Saraann","lastName":"Walcher","registeredAt":"1710539027","cohort":"NYC 45"},{"email":"gbank15@live.com","token":"0e265dea03b6dd81279caee70688ffc3e4aac84d","tokenExpiry":"1709350549","isRegistered":true,"firstName":"Giff","lastName":"Bank","registeredAt":"1685242746","cohort":"WCRI 30"},{"email":"rallmen16@ask.com","token":"ed6593ece367f7a7dc24f97bd2f6f0842f14c0c4","tokenExpiry":"1718707719","isRegistered":false,"firstName":"Ronny","lastName":"Allmen","registeredAt":"1687899673","cohort":"WCRI 9"},{"email":"kyarrow17@fastcompany.com","token":"d7cf565a92803a64d2cee30653696e1d1a6378b9","tokenExpiry":"1701602996","isRegistered":true,"firstName":"Kimmi","lastName":"Yarrow","registeredAt":"1691124672","cohort":"LA 67"},{"email":"pshepard18@fc2.com","token":"9210e18a7553812264f0de3dc1dfdfd149a98b78","tokenExpiry":"1721087332","isRegistered":false,"firstName":"Portia","lastName":"Shepard","registeredAt":"1672585642","cohort":"LA 56"},{"email":"egook19@yale.edu","token":"bb6e13b3f037f856d1bb9608fd0c621d6a2a91de","tokenExpiry":"1720577150","isRegistered":false,"firstName":"Emlen","lastName":"Gook","registeredAt":"1683775506","cohort":"ECRI 7"},{"email":"drocks1a@yandex.ru","token":"e8a818868eba93a6c8ec66475111de0443dc1bb9","tokenExpiry":"1703012938","isRegistered":false,"firstName":"Debee","lastName":"Rocks","registeredAt":"1706023454","cohort":"WCRI 88"},{"email":"vdhennin1b@webmd.com","token":"a38dcb44964ee25e8a6dec9154038d5d9938a87a","tokenExpiry":"1699587212","isRegistered":false,"firstName":"Valina","lastName":"Dhennin","registeredAt":"1681065096","cohort":"WCRI 2"},{"email":"dcheasman1c@123-reg.co.uk","token":"94b64ff354e2f9fa7c8a037923bfa8b2dd866eeb","tokenExpiry":"1697933422","isRegistered":false,"firstName":"Dwayne","lastName":"Cheasman","registeredAt":"1683418150","cohort":"FTRI 8"},{"email":"ngladhill1d@bravesites.com","token":"d1e4e372f411f9b7078f2a40a97c922e29cc77d7","tokenExpiry":"1718918519","isRegistered":false,"firstName":"Nellie","lastName":"Gladhill","registeredAt":"1688963480","cohort":"FTRI 95"},{"email":"elivzey1e@yandex.ru","token":"2b1e273101fd6f2762a922de2b5da38bcc106e0a","tokenExpiry":"1709220017","isRegistered":true,"firstName":"Eziechiele","lastName":"Livzey","registeredAt":"1681975403","cohort":"PTRI 99"},{"email":"smingasson1f@geocities.jp","token":"11b06aee7ad84b24658444456a578d207869e512","tokenExpiry":"1728292948","isRegistered":true,"firstName":"Sallyanne","lastName":"Mingasson","registeredAt":"1683913073","cohort":"FTRI 75"},{"email":"hpattullo1g@cocolog-nifty.com","token":"f2006654fe52c91bb6953933346a297da119c8c5","tokenExpiry":"1724940391","isRegistered":true,"firstName":"Heall","lastName":"Pattullo","registeredAt":"1679673540","cohort":"FTRI 89"},{"email":"ascarlan1h@businessinsider.com","token":"9cff46cacb3a30c7b3b3b54f277e0aab630d45c4","tokenExpiry":"1721464700","isRegistered":true,"firstName":"Amaleta","lastName":"Scarlan","registeredAt":"1712701940","cohort":"NYC 29"},{"email":"zlawlance1i@gmpg.org","token":"bcb5ce7157e175a16358d596e508c2db76cfc1bc","tokenExpiry":"1722208526","isRegistered":true,"firstName":"Zonda","lastName":"Lawlance","registeredAt":"1701924480","cohort":"PTRI 85"},{"email":"lromney1j@independent.co.uk","token":"b85fe93921acfd5cf8d12b574dd3b47e4018e436","tokenExpiry":"1713504543","isRegistered":false,"firstName":"Livvy","lastName":"Romney","registeredAt":"1704174160","cohort":"WCRI 11"},{"email":"ballardyce1k@dell.com","token":"0f8a9aac15a71fa742c39d3096542281589366b8","tokenExpiry":"1718762499","isRegistered":true,"firstName":"Brockie","lastName":"Allardyce","registeredAt":"1679041128","cohort":"LA 32"},{"email":"jatthowe1l@omniture.com","token":"aca52ba0413382dde47301aeadf43a363e9997ba","tokenExpiry":"1698166033","isRegistered":false,"firstName":"Jaquelyn","lastName":"Atthowe","registeredAt":"1707608705","cohort":"LA 60"},{"email":"bguerre1m@ftc.gov","token":"7b1dd8462dbfad6cea9dad31f7261fef4ec8be95","tokenExpiry":"1718130214","isRegistered":true,"firstName":"Barn","lastName":"Guerre","registeredAt":"1716202221","cohort":"PTRI 71"},{"email":"cmillions1n@domainmarket.com","token":"5f6819ad846a8ea3e0880dd7fd17c7e1e2b55d90","tokenExpiry":"1706426083","isRegistered":false,"firstName":"Carina","lastName":"Millions","registeredAt":"1698636752","cohort":"NYC 70"},{"email":"mgrigorini1o@pinterest.com","token":"355d05a947933941c88073a12e6787e4e3199b2d","tokenExpiry":"1719008606","isRegistered":true,"firstName":"Micaela","lastName":"Grigorini","registeredAt":"1674400482","cohort":"CTRI 6"},{"email":"fredwin1p@lulu.com","token":"dd3f9f8550968f560e0beddeeb22e6ed345b66f3","tokenExpiry":"1720847163","isRegistered":false,"firstName":"Fran","lastName":"Redwin","registeredAt":"1690182467","cohort":"NYC 31"},{"email":"kfirmager1q@vistaprint.com","token":"dc439fab416b534d3f1691e2b5afa1cb67879d76","tokenExpiry":"1709501604","isRegistered":true,"firstName":"Kalina","lastName":"Firmager","registeredAt":"1696473707","cohort":"NYC 30"},{"email":"lblyth1r@dion.ne.jp","token":"a10da796c88d8b7cf9fb78132bf8ec674f2ccf6e","tokenExpiry":"1702709120","isRegistered":true,"firstName":"Lurline","lastName":"Blyth","registeredAt":"1693114651","cohort":"LA 0"},{"email":"jstowte1s@pbs.org","token":"f1f937e0689f1bc5c2c2c586282f591e7f65d53b","tokenExpiry":"1724992951","isRegistered":true,"firstName":"Julianne","lastName":"Stowte","registeredAt":"1680965284","cohort":"ECRI 38"},{"email":"tpatrie1t@economist.com","token":"650aaa0e6787da810abff83ac7745809a1cda53f","tokenExpiry":"1718005232","isRegistered":true,"firstName":"Tierney","lastName":"Patrie","registeredAt":"1702385719","cohort":"FTRI 5"},{"email":"gsherborne1u@ustream.tv","token":"37cfac40e6796b28a9f5887a0f7ce0bfc8ac4ecb","tokenExpiry":"1713943470","isRegistered":false,"firstName":"Gerladina","lastName":"Sherborne","registeredAt":"1711728496","cohort":"PTRI 58"},{"email":"pfarress1v@amazonaws.com","token":"bf080b5bb70d6c0a44ce68a8ab8a88e042b19cc1","tokenExpiry":"1711916219","isRegistered":true,"firstName":"Phil","lastName":"Farress","registeredAt":"1693852128","cohort":"ECRI 56"},{"email":"eallsop1w@deviantart.com","token":"1a5bea6e3a65ac46f6e21680ca0ba34f5e2122f2","tokenExpiry":"1701094713","isRegistered":false,"firstName":"Elisha","lastName":"Allsop","registeredAt":"1713801737","cohort":"FTRI 13"},{"email":"cskipton1x@4shared.com","token":"45278d736abab31f911da7c843e62b524b65c4f4","tokenExpiry":"1722876760","isRegistered":false,"firstName":"Carline","lastName":"Skipton","registeredAt":"1702155150","cohort":"PTRI 93"},{"email":"mnorthridge1y@google.com.au","token":"62f61c162c2ccffc5edcbdfdd02ec45cf1c39376","tokenExpiry":"1706595173","isRegistered":false,"firstName":"Mia","lastName":"Northridge","registeredAt":"1681630387","cohort":"WCRI 56"},{"email":"ifriedenbach1z@last.fm","token":"bd680ad939d973c3e0010ec7a2a2f1921fecc19d","tokenExpiry":"1718623836","isRegistered":true,"firstName":"Isaiah","lastName":"Friedenbach","registeredAt":"1702230245","cohort":"PTRI 16"},{"email":"tdulton20@sitemeter.com","token":"f2f3b6b7c83a606cf8cbef085140c25683e80a46","tokenExpiry":"1725180112","isRegistered":true,"firstName":"Tallulah","lastName":"Dulton","registeredAt":"1689429264","cohort":"ECRI 42"},{"email":"besherwood21@amazon.com","token":"c3beb14a7cd4e9fd4834cdf6594413ed971c01f3","tokenExpiry":"1706079008","isRegistered":false,"firstName":"Bel","lastName":"Esherwood","registeredAt":"1712417366","cohort":"NYC 84"},{"email":"akiley22@cpanel.net","token":"d2b06ea8d9e4a572cee6d4e2681f67f00894ad56","tokenExpiry":"1724941587","isRegistered":true,"firstName":"Anatol","lastName":"Kiley","registeredAt":"1714539754","cohort":"WCRI 58"},{"email":"cmeth23@zimbio.com","token":"8c4a90e9eb572a8dcfb306cc5c26d30387590e28","tokenExpiry":"1727396000","isRegistered":true,"firstName":"Corabel","lastName":"Meth","registeredAt":"1682784205","cohort":"LA 27"},{"email":"sterrill24@behance.net","token":"03eddbc6485cdd42c8f5cac45e249f6cdb7400eb","tokenExpiry":"1723586241","isRegistered":false,"firstName":"Shae","lastName":"Terrill","registeredAt":"1687562944","cohort":"CTRI 64"},{"email":"dmahedy25@wix.com","token":"ce05349faa503dc55d9038773796038a7c8df560","tokenExpiry":"1717922995","isRegistered":false,"firstName":"Dotty","lastName":"Mahedy","registeredAt":"1703040599","cohort":"FTRI 59"},{"email":"sattiwill26@wsj.com","token":"a09c0f90af57af5b39b94cd83d208ffb25111ccb","tokenExpiry":"1723749405","isRegistered":false,"firstName":"Salaidh","lastName":"Attiwill","registeredAt":"1710531917","cohort":"LA 46"},{"email":"bbomb27@cmu.edu","token":"a196221355ed403ad250ccebf4b4019028b1de19","tokenExpiry":"1716626869","isRegistered":true,"firstName":"Billi","lastName":"Bomb","registeredAt":"1703618131","cohort":"ECRI 93"},{"email":"bbedells28@lycos.com","token":"31d50e34784504d1ed2ba0fe979c98c64beaf408","tokenExpiry":"1721657038","isRegistered":true,"firstName":"Burty","lastName":"Bedells","registeredAt":"1703325382","cohort":"WCRI 70"},{"email":"dlemin29@nhs.uk","token":"b3f374ec819cae31abc03d8d4fd606182994b61c","tokenExpiry":"1726394947","isRegistered":false,"firstName":"De","lastName":"Lemin","registeredAt":"1712314981","cohort":"WCRI 79"},{"email":"mdraco2a@shinystat.com","token":"106220c3f67863ec7b60efa5d818a9615f1f6ae8","tokenExpiry":"1709423735","isRegistered":true,"firstName":"Morgen","lastName":"Draco","registeredAt":"1683637999","cohort":"CTRI 37"},{"email":"ugrassin2b@ucoz.com","token":"0bfe9f83752600b459f9299ef15aeff6e2403feb","tokenExpiry":"1707725381","isRegistered":true,"firstName":"Urban","lastName":"Grassin","registeredAt":"1710071474","cohort":"ECRI 67"},{"email":"aatto2c@va.gov","token":"d918b6a21507a3b203a595b174084d1bcbfd8643","tokenExpiry":"1714845693","isRegistered":false,"firstName":"Archy","lastName":"Atto","registeredAt":"1712043526","cohort":"NYC 32"},{"email":"lmurfill2d@earthlink.net","token":"1cfa1580520273a41a6101c1c40d9387a8240e15","tokenExpiry":"1724471765","isRegistered":true,"firstName":"Lothaire","lastName":"Murfill","registeredAt":"1704133684","cohort":"CTRI 45"},{"email":"aocrigan2e@ezinearticles.com","token":"7c84c138aaea08c8478456fe062b6026922c6bb0","tokenExpiry":"1723900980","isRegistered":true,"firstName":"Anne","lastName":"O'Crigan","registeredAt":"1676208159","cohort":"FTRI 81"},{"email":"nmeacher2f@barnesandnoble.com","token":"fe1032812102bf0930a52971a39da65b9d92be03","tokenExpiry":"1711033160","isRegistered":true,"firstName":"Nisse","lastName":"Meacher","registeredAt":"1681639572","cohort":"LA 30"},{"email":"dtraill2g@tamu.edu","token":"356be8cf14a78b06cb741c6c1082a5b2639dc100","tokenExpiry":"1722195575","isRegistered":false,"firstName":"Dix","lastName":"Traill","registeredAt":"1688441678","cohort":"FTRI 76"},{"email":"vproske2h@newsvine.com","token":"674dfc2ddb23a74b43373f5d42b23d29016408c2","tokenExpiry":"1713842238","isRegistered":false,"firstName":"Verla","lastName":"Proske","registeredAt":"1688943295","cohort":"CTRI 27"},{"email":"pdahmke2i@diigo.com","token":"d165ca490f364a0c81f1c3cf44f7bc5bd314c483","tokenExpiry":"1712885460","isRegistered":false,"firstName":"Pennie","lastName":"Dahmke","registeredAt":"1705568448","cohort":"NYC 63"},{"email":"akilroy2j@elpais.com","token":"651b1e2b34363ee9eaeb35d884cacce571bb20d3","tokenExpiry":"1710647532","isRegistered":true,"firstName":"Anestassia","lastName":"Kilroy","registeredAt":"1707162650","cohort":"NYC 94"},{"email":"rvanelli2k@xing.com","token":"362b7aeeb1b86eeeeb751f0feb30446f38b3551a","tokenExpiry":"1700611810","isRegistered":true,"firstName":"Remus","lastName":"Vanelli","registeredAt":"1688468428","cohort":"WCRI 63"},{"email":"gtarbert2l@discovery.com","token":"47b989b8ef9a9640e1301246469e90468b0409b4","tokenExpiry":"1728367924","isRegistered":true,"firstName":"Gil","lastName":"Tarbert","registeredAt":"1685191965","cohort":"LA 88"},{"email":"ysmelley2m@twitpic.com","token":"d9a8b41e99f1fc724641283b275b61141086ecef","tokenExpiry":"1712733227","isRegistered":true,"firstName":"Yulma","lastName":"Smelley","registeredAt":"1715333795","cohort":"CTRI 80"},{"email":"tlongworth2n@engadget.com","token":"5261c5b65c8539a3affa90614190fcedb77f1fac","tokenExpiry":"1728250140","isRegistered":false,"firstName":"Timmy","lastName":"Longworth","registeredAt":"1709278351","cohort":"PTRI 57"},{"email":"amollatt2o@printfriendly.com","token":"4019b03e69e2362fbd1a10fce561eb60bdc16b99","tokenExpiry":"1724376365","isRegistered":true,"firstName":"Arthur","lastName":"Mollatt","registeredAt":"1708084127","cohort":"NYC 55"},{"email":"gtaylor2p@nps.gov","token":"16ce55d2ccf612dc3285cfdee894fb8064453a4b","tokenExpiry":"1727617372","isRegistered":false,"firstName":"Griffin","lastName":"Taylor","registeredAt":"1707031385","cohort":"ECRI 10"},{"email":"ostudholme2q@pcworld.com","token":"9d62938833da712a578ade3e54cb627996a5464e","tokenExpiry":"1702451012","isRegistered":true,"firstName":"Odelinda","lastName":"Studholme","registeredAt":"1674695487","cohort":"CTRI 9"},{"email":"aduffill2r@nbcnews.com","token":"8ccc9ddb9f92b0ee6848dd20ca7f3fab1d98fbb0","tokenExpiry":"1707417687","isRegistered":true,"firstName":"Ardith","lastName":"Duffill","registeredAt":"1693295088","cohort":"FTRI 28"}] \ No newline at end of file diff --git a/scripts/db/mockData/MOCK_USERS.json b/scripts/db/mockData/MOCK_USERS.json new file mode 100644 index 00000000..f048cac4 --- /dev/null +++ b/scripts/db/mockData/MOCK_USERS.json @@ -0,0 +1,709 @@ +[ + { + "firstName": "Testy", + "lastName": "McTesterson", + "email": "tester@codehammers.com", + "profilePic": "https://www.codesmith.io/hubfs/Screen%20Shot%202024-06-10%20at%2010.46.24%20AM.png", + "password": "$2a$10$kc8M2Pp3YPQ/L0zuNiP8NO/ktM3be2G/Jvz7JgfHKNwisEEmI6HhC" + }, + { + "firstName": "Corine", + "lastName": "Tugwell", + "email": "ctugwell0@ovh.net", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$RHjqSxTGqGH3sJ5M8y1N/ONYdf0lW/wiS.1Np0ygzdLXV1.iKNWHW" + }, + { + "firstName": "Brody", + "lastName": "Cumpton", + "email": "bcumpton1@bluehost.com", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$5MCj99AUmJLR8vNusi/kKulhGujk0g9TNp2HnNNad0diDKr/voqx6" + }, + { + "firstName": "Moselle", + "lastName": "Duro", + "email": "mduro2@technorati.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$3g77AxfV5hxy.8T7ibcsFeAzj0.8XLQtyWZ8LXMV/r1xFffb6CrQ6" + }, + { + "firstName": "Winifred", + "lastName": "Carnelley", + "email": "wcarnelley3@ucsd.edu", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$YtgZAtramhBGFDYgd4WJm.O1aSGVY9XpW6c3EvmgF/r016wO8c6Kq" + }, + { + "firstName": "Marchelle", + "lastName": "Truin", + "email": "mtruin4@stumbleupon.com", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$/aPHxsmvntnLCoYx87M43eJ5emMDz5By06sCDBJw0rV7b4zGEDRY6" + }, + { + "firstName": "Cally", + "lastName": "Gisbey", + "email": "cgisbey5@squarespace.com", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$ilsSaThdTHnBlNAcgzO3XuGbV4U95jRfnHfK.0vgh8Ryv527n17IW" + }, + { + "firstName": "Arlina", + "lastName": "Moodie", + "email": "amoodie6@twitpic.com", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$.rndahfCenIT18WWTCOhn.GaSDoPsQJu.DqlPREIyuzqypAGcReKO" + }, + { + "firstName": "Phineas", + "lastName": "Coon", + "email": "pcoon7@hc360.com", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$HCmJy4bzQALHWoJGiDlLqe0uZNACP3QyligsCBs6YgkPcGvhWK6SK" + }, + { + "firstName": "Shurlock", + "lastName": "Tytcomb", + "email": "stytcomb8@google.it", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$FqL6UUoRp24Rr//9tRG18uN4QGUoggKZ1p78oeQZKJ6HnPgWEMNZe" + }, + { + "firstName": "Ermina", + "lastName": "Guyton", + "email": "eguyton9@blog.com", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$rMnbMAnBHkfzsyvcQktDzuHXs.cL43euEuC/sBqBloZdmETYV4Tra" + }, + { + "firstName": "Shelton", + "lastName": "Halwood", + "email": "shalwooda@sciencedirect.com", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$MZt/Qd/2CqKCCBuO/b3wI.gF4Y5Ggk6hb9s475rSc1UKWPXqzvusS" + }, + { + "firstName": "Nigel", + "lastName": "Clemenzo", + "email": "nclemenzob@fotki.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$wDWpM3JEnwGmaml0aTc7yO6Qqg1083sLQwpirYpc4kCA4jJRfytGW" + }, + { + "firstName": "Colver", + "lastName": "Oswell", + "email": "coswellc@wsj.com", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$GIVKx6GIDuuez2wyzQ1uKunCOLyk95cU1Cix3K.Apz31eXyk4qR1a" + }, + { + "firstName": "Saundra", + "lastName": "Normabell", + "email": "snormabelld@businessinsider.com", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$zanHPCuY87iOLnK8l.izQObTM5z.Lv.0NTP4CJUR6RO/UOcwVzw46" + }, + { + "firstName": "Grant", + "lastName": "Chasney", + "email": "gchasneye@mediafire.com", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$Zft06tsFJC0qa1cWhF8q4u29XSmdPd59l7A0NuwUZGyNDhOzJmHkO" + }, + { + "firstName": "Franni", + "lastName": "Chance", + "email": "fchancef@ted.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$v4piVmYED/yGy7Z02fIN1eeDjW3DWvHoMJkVIdKDe6xCuahM5XGxS" + }, + { + "firstName": "Clarance", + "lastName": "Meecher", + "email": "cmeecherg@addthis.com", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$XS0Bcgj6KKZ6/bO96j2Ci.tS2lQ4SwiWlwsZruORpp0bCDFswIEyK" + }, + { + "firstName": "Katharine", + "lastName": "Lancett", + "email": "klancetth@sfgate.com", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$WJfAa2JyWAeNTby65GBnI.k4tgBrVkNBsVhQHYIuv5o83TBmXP6VW" + }, + { + "firstName": "Margaret", + "lastName": "Dubber", + "email": "mdubberi@dropbox.com", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$k3/k6SSUAvw4qEBZAitTzOlQym0gFVcVQU4z88nEN0J96BwkUkah." + }, + { + "firstName": "Addy", + "lastName": "Fass", + "email": "afassj@vistaprint.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$rqjbsf2iTQmKu1nphUSiseQXyQkw0P5P7F4Wx0Mwug06Vvwtup5Ie" + }, + { + "firstName": "Sollie", + "lastName": "Puckinghorne", + "email": "spuckinghornek@topsy.com", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$hozq/j4uwMjwarUfJvwzE.8RYZVmMU5j.Oh54TV10QnPJtOSEAkA6" + }, + { + "firstName": "Xena", + "lastName": "Tomczynski", + "email": "xtomczynskil@ted.com", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$Rv1D7q1enZ8rYwGbeMRgKeelEc4Lpx0OjOUhNXKFb3KpZq3j/K50K" + }, + { + "firstName": "Harmonie", + "lastName": "Karpinski", + "email": "hkarpinskim@g.co", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$f1ISgk3vWVJUxAziAVPYy.3UBF9NohPeLwdT97X9rZPHQuLFZsWli" + }, + { + "firstName": "Marielle", + "lastName": "Crocket", + "email": "mcrocketn@craigslist.org", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$.jPCYnepe4Nwb5rv.kddHO1LkIw.q8cgd6DHk5SV8d60QHyOu5ylm" + }, + { + "firstName": "Ulrick", + "lastName": "Blasing", + "email": "ublasingo@yahoo.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$TtW5XG3xux16EANFLnYjqO5WxkKUPKVTVBW/cq1DWXsYLieazZkfm" + }, + { + "firstName": "Cheri", + "lastName": "Danielsson", + "email": "cdanielssonp@example.com", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$DI4MwyXAT3TIwQBbDUO3SenUmXSjF.WZFrNih6eMpzY6eg2uX9HQu" + }, + { + "firstName": "Durand", + "lastName": "Joron", + "email": "djoronq@google.cn", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$JnNpCVE0Nb46kM4Qtkbha.qQeYfK1HUFfWrSo1SGv758RvktY/8qO" + }, + { + "firstName": "Kristien", + "lastName": "Burgett", + "email": "kburgettr@kickstarter.com", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$d1/XXb1OflCvAnGE2Cd/gOB9G/EhjVjwPm89O5rTYa.m7jumCqteq" + }, + { + "firstName": "Kaia", + "lastName": "Fassmann", + "email": "kfassmanns@ted.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$yStUrrgR9Q2yg8TAv.IFTepba9OVQjnCCpYklDXNOPKvWQzm/f71W" + }, + { + "firstName": "Lockwood", + "lastName": "Moxham", + "email": "lmoxhamt@wikia.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$SunYJs.bPKUUtL1qGP0EOOaljWJA5rkwSV2eheBj4qAi8S2IsY.36" + }, + { + "firstName": "Tessie", + "lastName": "Sugden", + "email": "tsugdenu@npr.org", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$hKCgoJybjluN7YTcW3fDtuHGw9XZExEzP.SM9dS0/39mFi8AS4xvG" + }, + { + "firstName": "Rea", + "lastName": "Jeremiah", + "email": "rjeremiahv@wikispaces.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$wX974k1kacRzEfdHxGJd/.IIMrQnt/ZLeMfE/zHaexPQrweS4fNOm" + }, + { + "firstName": "Cassie", + "lastName": "Meadows", + "email": "cmeadowsw@smugmug.com", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$G.JEfN.EgUQv2lxHhuyP5.Fgz5yNuA.lGIocNiCqHqePbmyGq8mbq" + }, + { + "firstName": "Kelci", + "lastName": "Bastide", + "email": "kbastidex@latimes.com", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$tGExVET9Zoo.CiNeh9M6k.ulg8WoyFw26xlz0cZq2e5ZNbgfTE.Bu" + }, + { + "firstName": "Thurston", + "lastName": "Speechly", + "email": "tspeechlyy@plala.or.jp", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$PecBrxyFG0Ul/EqlBUKq7.lixy5WoSLvT6wMUUDY2WzTMwvFPvhyq" + }, + { + "firstName": "Silas", + "lastName": "Reyes", + "email": "sreyesz@google.co.jp", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$YjNYJGOUfv.Np8pkgjDyA.2XJ1YUDtux4H708Ia7ZYL9Mv5GHMUs2" + }, + { + "firstName": "Marley", + "lastName": "Boshard", + "email": "mboshard10@tiny.cc", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$s34llzRxpdigLFo0dO3Zp.JM9X3Bm2U.H1R3tNXNrieNoIfwWeHcy" + }, + { + "firstName": "Eb", + "lastName": "Dargie", + "email": "edargie11@artisteer.com", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$YKro.0iuOHI9KyY4.IQv9eSWtgeP/KQ9h3tKxPFxPBaaCzlj9gcba" + }, + { + "firstName": "Porter", + "lastName": "Paladini", + "email": "ppaladini12@deliciousdays.com", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$aKFXB4ZQTOX1nJUdjnFGmO/6eU/z3QCaKtvp51sQSpHdHDIsnoHqq" + }, + { + "firstName": "Dian", + "lastName": "Dackombe", + "email": "ddackombe13@ihg.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$m16Q41BtIR7PsL.cEp1qJ.2b4zCFRYcWR//CLZ70.BGeHb5BazpHe" + }, + { + "firstName": "Freedman", + "lastName": "Scrafton", + "email": "fscrafton14@posterous.com", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$UseDUfEbBuBVQosgK9hLyOzBIwiFGmhRiaRaBfmKF2oHyR/ptXL9S" + }, + { + "firstName": "Tabbitha", + "lastName": "Jolliffe", + "email": "tjolliffe15@bbb.org", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$/BRp.zCmtbUqrBpdfDjxH.fzzqooeJsgMSJj9tRLQV9jrG785mI3q" + }, + { + "firstName": "Jordon", + "lastName": "Ganley", + "email": "jganley16@geocities.jp", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$SpNKlyf82tnRWgiMVFGHnur2fyfeVIAfHG2BIsed/Hu5lvRYd6zaq" + }, + { + "firstName": "Annora", + "lastName": "Brigge", + "email": "abrigge17@joomla.org", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$fNPrRI/UzhvFJ1eOZKQNOe2SriLmDSoibNWPqKozgjnT13q3NQ5/O" + }, + { + "firstName": "Bethanne", + "lastName": "Osband", + "email": "bosband18@blinklist.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$db2.QwkRMc2UqnW.wbRv6uT2ZzGKGMruV/rZeVv/.ELxk0wSkGRa6" + }, + { + "firstName": "Hedda", + "lastName": "Tallquist", + "email": "htallquist19@cisco.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$e7REOMvBqIjEC1fDI0uLNOMkCJRZvhO4KdOYvtsoTmN/A0zC5ZoGq" + }, + { + "firstName": "Lynelle", + "lastName": "Grosvener", + "email": "lgrosvener1a@google.cn", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$bQgNEej3PToxLUTbeTEsuODYNcwlxAnks0PLKJa/AT4y1ounPuq2O" + }, + { + "firstName": "Lenee", + "lastName": "Pethybridge", + "email": "lpethybridge1b@chron.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$eCwUl.lf05F/Bop6vUElveEyM8pjYRg82Dq4DdUiVzqAcv5FHaRCG" + }, + { + "firstName": "Ninnette", + "lastName": "Maden", + "email": "nmaden1c@sciencedirect.com", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$ijlhLATjvzWv2ovikfDH/ufuoEFwqK9QNiryzymkB6LWAig2p8K3m" + }, + { + "firstName": "Jolynn", + "lastName": "Catenot", + "email": "jcatenot1d@oakley.com", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$aSzNb6A.kYflbnn/xwJoqOzCX9sIDCkNeMPw7zjVgEGJnht8/qX1i" + }, + { + "firstName": "Marabel", + "lastName": "Puleston", + "email": "mpuleston1e@utexas.edu", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$kDdrnGvJhkScD8smnhXGV.RNBbvMAaIcl2bGLg4VmIekVcReNtz7." + }, + { + "firstName": "Bryn", + "lastName": "Arias", + "email": "barias1f@flavors.me", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$ZajYO4RNsq8/qA9Jg1vNJ.lADYiuFDx3BB8rldJ32GOXqROluDfbi" + }, + { + "firstName": "Arni", + "lastName": "Jertz", + "email": "ajertz1g@tuttocitta.it", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$YLt1lVwcCc/3PiHd6UOsXevxvEiNbEjUq1eIfYxeJ8ngcRFCpX5hi" + }, + { + "firstName": "Maegan", + "lastName": "Mulhall", + "email": "mmulhall1h@wikipedia.org", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$Aif6H2Z.giCkMXGBxJX3TutzAvAuAJLijp6r.G4wQYzi/WW60sLaa" + }, + { + "firstName": "Nicolai", + "lastName": "Brugsma", + "email": "nbrugsma1i@4shared.com", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$GQIoJKuUvoZfHY.Z2YfRouNTnzI1GfJwperv6inTblhhLAShaViOu" + }, + { + "firstName": "Bryan", + "lastName": "Heffy", + "email": "bheffy1j@cbsnews.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$QlE4KlmsB3rlD4XZKABi0.BafpsCBdHddFtlZ2nYJyyj9tpF2jw5i" + }, + { + "firstName": "Donavon", + "lastName": "Osichev", + "email": "dosichev1k@pinterest.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$9JghLaPXIX4RoBxUq6umY.itdAgsBWFito4xcu2XdC5XTTn/ikKRq" + }, + { + "firstName": "Kennan", + "lastName": "Dugget", + "email": "kdugget1l@opensource.org", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$3DuJ6wsSdMsZk.7DcoTDU.cOMrl7cJ3T.xw.Qhu98KkOeZyJnAPn2" + }, + { + "firstName": "Paton", + "lastName": "Climance", + "email": "pclimance1m@webnode.com", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$GsRvHQHiFgafXSxx0lV9a.COTn6y7ccTXjtqaQrpGlObrUtv5pxHm" + }, + { + "firstName": "Caitrin", + "lastName": "McAllister", + "email": "cmcallister1n@ft.com", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$oemDl2Fl9xkIlQK4roEkvuPV8YlXJuR/QSLO2CuYixpspPn58c3IK" + }, + { + "firstName": "Sephira", + "lastName": "Kaming", + "email": "skaming1o@about.me", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$D9vgbSRRKKL9VF1h3yaAnuzXsi7C2A43Djd8G/FKJFK.coCXx4WTW" + }, + { + "firstName": "Fraser", + "lastName": "Londsdale", + "email": "flondsdale1p@freewebs.com", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$f6XFReXajluyek3Jzd.dL.uMeoEOZQUmeGzcdboxW203TMo7QYXne" + }, + { + "firstName": "Alyssa", + "lastName": "Bangham", + "email": "abangham1q@usgs.gov", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$0mqFf987WSqD2Dt6k9bvCucM2UrbCCYIfs0xl9LeCbV4s5bwhXGgC" + }, + { + "firstName": "Clarette", + "lastName": "Alcock", + "email": "calcock1r@amazonaws.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$QGDxhItZ39N0pDJNB/IOuu/EweEPoT9KlodGaJxhLMZIEhc0xmMqW" + }, + { + "firstName": "Lizbeth", + "lastName": "France", + "email": "lfrance1s@yahoo.com", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$LunBNZ8SvmtISZ92eEu.Xek8.vDQZQnDV0QZ7Eo20LxZuRzNquOlm" + }, + { + "firstName": "Abramo", + "lastName": "Sparkwell", + "email": "asparkwell1t@berkeley.edu", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$QYm1ge0tj0gSdDL7IRWEzeqqaenO6Zas9RhHKFYhnj8VStVeVW6gq" + }, + { + "firstName": "Darb", + "lastName": "Coen", + "email": "dcoen1u@prlog.org", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$1bhpvbesE0IVgwJnM4lqc.GfjG5FK0omsaaueVs/c08OIs3ebSxX." + }, + { + "firstName": "Gusty", + "lastName": "Besnardeau", + "email": "gbesnardeau1v@themeforest.net", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$6vCDDrNMFOZl5K5CM9KxROmEumfcGXqYU7tkg65yCAccqF7b9H1km" + }, + { + "firstName": "Randy", + "lastName": "Verriour", + "email": "rverriour1w@ebay.co.uk", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$ND9dRuKq/p0TyIXDyCXUhetI35HULYyCLtfvfba.wYHO9VlDCKq/e" + }, + { + "firstName": "Israel", + "lastName": "Canti", + "email": "icanti1x@businesswire.com", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$NHNl9.KpZB60jKCrqD2MG.y5y87LmabkqK.lrsFcmRCFOBYSLUjqG" + }, + { + "firstName": "Micky", + "lastName": "Dunseath", + "email": "mdunseath1y@miibeian.gov.cn", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$6uRJm/WXtPkWGA4W62HFU.RmEzyUu5siHS.ZsXiI.OXTZOCN.Rjzy" + }, + { + "firstName": "Gabi", + "lastName": "Hardcastle", + "email": "ghardcastle1z@weebly.com", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$cdZeQHxIqJCzkwQzUJpg9egznL4FVgm.n6exQ7VT4PfGrpzeNBAUO" + }, + { + "firstName": "Rakel", + "lastName": "Scothron", + "email": "rscothron20@yellowbook.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$rc.SQHRUkMcnmeutSbPEeeK8k6DVtEL6lW58Pc/ljrIC5/iYs5Dk." + }, + { + "firstName": "Gretel", + "lastName": "Sitford", + "email": "gsitford21@tinyurl.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$vgwSM.REDV6QIt0rNo9K5.riA7jke0nZC5Rc09Kaf0PgFYQkRhBli" + }, + { + "firstName": "Rosalinda", + "lastName": "Naisby", + "email": "rnaisby22@nationalgeographic.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$riw7asjBJdH3HFI/fNOHre05RD8Tn9ewNoVJBxYA.L3FB58aYdfE." + }, + { + "firstName": "Thaddus", + "lastName": "Waddell", + "email": "twaddell23@nymag.com", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$hahavWujiKjjPBYImkUA9e73YcfKBZeNVP4I.ezip6sEyQPVc8.cW" + }, + { + "firstName": "Nadia", + "lastName": "Zeale", + "email": "nzeale24@google.ru", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$N01TsCv2u6LBGhpHK8z8VOCRD2vG1sxRIuZYYlyX/4iEtA7mom9wW" + }, + { + "firstName": "Emmett", + "lastName": "Buckell", + "email": "ebuckell25@reddit.com", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$U16tvQU51kBO8HfIdCrGx.on4MEFOnt0a2.m51C7rOBIS0rzOf9eO" + }, + { + "firstName": "Lavinia", + "lastName": "Baume", + "email": "lbaume26@tinyurl.com", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$2So/b3QTY/PNvNWervUONeEETF2rviHpXrUrxnAnnnH2QZvTIh5gW" + }, + { + "firstName": "Janine", + "lastName": "Kitt", + "email": "jkitt27@wsj.com", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$QB9d3PmZ4mNopfy3RzOdC.O2OFnR8JEPsl2JQllkcnCyKfjFzMRvO" + }, + { + "firstName": "Beatrix", + "lastName": "Healey", + "email": "bhealey28@amazon.co.jp", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$r3VCaLaRVQx.CMUBVwBeo.QVhGKc8Z7TztHXIKPLZNuC9mL8ayxpu" + }, + { + "firstName": "Simone", + "lastName": "Buske", + "email": "sbuske29@soundcloud.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$sVfBQmixhBsO2UweyDGB.urBXwcbCs4/X8ed2UKbYlmnb6iagTcbC" + }, + { + "firstName": "Cristine", + "lastName": "Gaddesby", + "email": "cgaddesby2a@senate.gov", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$iLTB1MM2I1xWA3VL7kTe.OHv.IzSntFeoc.FDn8pWnOJgw3P00roO" + }, + { + "firstName": "Marta", + "lastName": "Daveren", + "email": "mdaveren2b@odnoklassniki.ru", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$TBTRKpaEEJyTh9FTw2h73uGeHyj7ZGazo7xi.cA48R69jbjbLY4di" + }, + { + "firstName": "Nanon", + "lastName": "Gligoraci", + "email": "ngligoraci2c@addthis.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$u/nIHSMhz9vSiWWzISARc.pAAtSUEPvSWY1pZHO4DG5Epc7t/DDsy" + }, + { + "firstName": "Donall", + "lastName": "Frapwell", + "email": "dfrapwell2d@hostgator.com", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$iHKNdye22EulFKSVN5.tNOcTpJlqu0O6acKJPwCCyOil1zF3FkdIy" + }, + { + "firstName": "Beverlee", + "lastName": "Bangham", + "email": "bbangham2e@tamu.edu", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$wXNZnEE9TL8tgeKuWKyKRubR/IgUjCmKZWTd9wc8sUjA8QZ93vthq" + }, + { + "firstName": "Englebert", + "lastName": "Bancroft", + "email": "ebancroft2f@ow.ly", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$EcjGdJhrox/tXFARNuuMmeBQubqJjgoXLq7eZYWo/er3C6gppLfby" + }, + { + "firstName": "Siegfried", + "lastName": "Castillou", + "email": "scastillou2g@reddit.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$DrOmLH.JF0oi6FR9IXr8VOmSHP0C/I9WZnuStZgrOUUi1dK/wlf0i" + }, + { + "firstName": "Marvin", + "lastName": "Cranke", + "email": "mcranke2h@marketwatch.com", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$.Wg0UV/Dmd/zViYP/OnvJ.X09ZBZY7BKMSiV9h7aq0DD9lRUreND6" + }, + { + "firstName": "Arne", + "lastName": "Rummin", + "email": "arummin2i@is.gd", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$AjZSO39N.UP3GjEXbSuU8.d5d9V1Y/8qK6mt1.QYgwgpKR07cyeIG" + }, + { + "firstName": "Seumas", + "lastName": "Feldberger", + "email": "sfeldberger2j@ning.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$2883OY2HM07TY6fqkKCI9OWKZEo6ZeE/RJpa3g3KzG6YnvQlGLljC" + }, + { + "firstName": "Hilda", + "lastName": "Worham", + "email": "hworham2k@mail.ru", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$kOlY/HxnObnwym4y0pIgoOFPKa9a8RL6XA3pDj.iFlIG44F3NXNgm" + }, + { + "firstName": "Winny", + "lastName": "O'Glessane", + "email": "woglessane2l@deviantart.com", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$IjXeIf6njEA1Kq/.zd0IFOzWWeBmKPfg1EQsMutjP08Yjdabx/PZe" + }, + { + "firstName": "Gwenora", + "lastName": "Agge", + "email": "gagge2m@unesco.org", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$vJ5BSyLvZliREEMdxLrPe.qHrV6XnUPRWZL25tp1J22604Wn5uCP." + }, + { + "firstName": "Piggy", + "lastName": "Torrisi", + "email": "ptorrisi2n@goodreads.com", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$E/yrtzHHJpaYFjb00b8sMO2IgW9H7vNUV9/C7V/VOZwAqquEX/q1m" + }, + { + "firstName": "Niki", + "lastName": "Glaysher", + "email": "nglaysher2o@kickstarter.com", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$3IuzlNTRGZcFzLhHhA7.TujKVstdPVzFPA/IUQxBUcZFCmWeb4rn." + }, + { + "firstName": "Pail", + "lastName": "Vasechkin", + "email": "pvasechkin2p@vk.com", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$nl9fW9EQWV37BP0MFeY5HuS1xZ64Lq.n4mPr5x0IML8JIuM5RRB46" + }, + { + "firstName": "Gav", + "lastName": "Renneke", + "email": "grenneke2q@hp.com", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$NzSQF086.xq.2E2jFkpY5O.qNJyVq2Fkd6iwAHKrFDuIx2G705cPO" + }, + { + "firstName": "Perle", + "lastName": "Rizziello", + "email": "prizziello2r@mashable.com", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$mYw63dkZFGwy4N8d5.8S2utcYeiiNwRRbUL9KyChIYpYudxekQ7KG" + } +] diff --git a/scripts/db/mongoInit/mongo-init.js b/scripts/db/mongoInit/mongo-init.js new file mode 100644 index 00000000..39813b6e --- /dev/null +++ b/scripts/db/mongoInit/mongo-init.js @@ -0,0 +1,22 @@ +db = db.getSiblingDB('admin'); +db.auth(process.env.MONGO_INITDB_ROOT_USERNAME, process.env.MONGO_INITDB_ROOT_PASSWORD); + +db = db.getSiblingDB(process.env.MONGO_INITDB_DATABASE); +db.createUser({ + user: 'root', + pwd: 'testpass', + roles: [ + { + role: 'readWrite', + db: process.env.MONGO_INITDB_DATABASE, + }, + ], +}); + +db.createCollection('alumnis'); +db.createCollection('graduateinvitations'); +db.createCollection('users'); +db.createCollection('profiles'); +db.createCollection('forums'); +db.createCollection('threads'); +db.createCollection('posts'); diff --git a/scripts/db/mongoInit/seed-base-collections.js b/scripts/db/mongoInit/seed-base-collections.js new file mode 100644 index 00000000..4e2d3298 --- /dev/null +++ b/scripts/db/mongoInit/seed-base-collections.js @@ -0,0 +1,19580 @@ +console.log('๐ŸŒฑ Seeding base collections'); + +const mockAlumnis = [ + { + company: '1-800 Flowers', + name: 'Daniel Reilley', + email: 'dannyreilley@gmail.com', + linkedIn: 'https://www.linkedin.com/in/daniel-reilley/', + campus: 'LA', + cohort: '45', + jobTitle: 'Full-Stack Application Developer', + industry: 'Retail', + cities: ['Gilbert', 'Nashville', 'Paris'], + }, + { + company: '1Password', + name: 'William Quan Nguyen', + email: 'william.nguyen202103@gmail.com', + linkedIn: 'https://www.linkedin.com/in/william-nguyen202103/', + campus: 'PTRI', + cohort: '10', + jobTitle: 'Software Engineer intern', + industry: 'Security/Data Privacy', + cities: ['Dallas'], + }, + { + company: '1StopBedrooms', + name: 'David Yedid', + email: 'diyedid@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yedid/', + campus: 'NYC', + cohort: '15', + jobTitle: 'VP, Projects (working under CTO); and General Counsel', + industry: 'E-Commerce', + cities: ['Jersey City'], + }, + { + company: '1upHealth', + name: 'Robleh Farah', + email: 'farahrobleh1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/farahrobleh', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer', + industry: 'Health Tech', + cities: ['St. Louis'], + }, + { + company: '23andMe', + name: 'Jiwon Chung', + email: 'jiwon.chung07@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jchung07/', + campus: 'LA', + cohort: '48', + jobTitle: 'Software Engineer', + industry: 'Biotech', + cities: ['Riverside', 'Jacksonville', 'Irving'], + }, + { + company: '2U', + name: 'Rebecca Shesser', + email: 'rebeccashesser@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rebeccashesser/', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Anchorage', 'Honolulu', 'Scottsdale'], + }, + { + company: '98point6', + name: 'Avi Kerson', + email: 'avitacos@gmail.com', + linkedIn: 'https://www.linkedin.com/in/avi-kerson/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['Chandler', 'London'], + }, + { + company: 'AAA (Club Labs)', + name: 'Michael Chan', + email: 'mckchan13@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael-ck-chan/', + campus: 'PTRI', + cohort: '5', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: ['Baltimore', 'Aurora'], + }, + { + company: 'Aavia', + name: 'Wayland SIngh', + email: 'wmsingh@ucdavis.edu', + linkedIn: 'https://www.linkedin.com/in/wayland-singh/', + campus: 'NYOI', + cohort: '4', + jobTitle: 'Backend Engineer', + industry: 'Healthtech/Healthcare', + cities: ['Glendale', 'Toledo', 'Miami', 'Paris'], + }, + { + company: 'Abstract', + name: 'Tyler Kneidl', + email: 'tskneidl@gmail.com', + linkedIn: 'https://www.LinkedIn.com/in/tylerkneidl', + campus: 'NYC', + cohort: '25', + jobTitle: 'Full Stack Engineer', + industry: 'Software Development', + cities: ['Los Angeles', 'Scottsdale'], + }, + { + company: 'Accenture', + name: 'Adrian Reczek', + email: 'adrianwreczek@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adrian-reczek/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Full Stack Software Engineer, Senior Analyst', + industry: 'Consulting', + cities: ['Mexico City', 'Aurora'], + }, + { + company: 'Accenture', + name: 'Colin Roemer', + email: 'colin.roemer@gmail.com', + linkedIn: 'https://www.linkedin.com/in/colinroemer/', + campus: 'LA', + cohort: '23', + jobTitle: 'Node Microservices Engineer', + industry: '', + cities: ['Portland', 'Scottsdale', 'Oakland', 'Fresno'], + }, + { + company: 'Accenture', + name: 'Shamilah Faria', + email: 'shamilahfaria@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shamilah-faria/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Software Artisan', + industry: 'Technology', + cities: ['Mumbai'], + }, + { + company: 'Accrete AI', + name: 'Andrew Moy', + email: 'ajmoy35@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andrewmoy/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Full Stack Engineer', + industry: 'Artificial Intelligence', + cities: ['San Francisco', 'Glendale'], + }, + { + company: 'Acorns', + name: 'Zahaan Jasani', + email: 'zahaanjasani@gmail.com', + linkedIn: 'https://www.linkedin.com/in/zahaan-jasani-183913126/', + campus: 'LA', + cohort: '26', + jobTitle: 'Software Engineer II - Backend', + industry: 'Finance', + cities: ['Chandler', 'Sรฃo Paulo'], + }, + { + company: 'Acronis', + name: 'Paul Kim', + email: 'Khyunwoo1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/paulyjkim', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: '"Data Protection/ Cyber Security"', + cities: ['Chesapeake', 'Fort Worth', 'Denver', 'Kansas City'], + }, + { + company: 'ActiveCampaign', + name: 'Jacob Gillan', + email: 'jacobgillan9@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jacob-gillan/', + campus: 'FTRI / CTRI', + cohort: '15', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['San Francisco', 'Jacksonville', 'Mumbai'], + }, + { + company: 'Actuate', + name: 'Braddon Murphy', + email: 'braddonmurphy@gmail.com', + linkedIn: 'https://www.linkedin.com/in/braddonlee/', + campus: 'FTRI', + cohort: '6', + jobTitle: 'Software Engineer', + industry: 'Security', + cities: ['Winston-Salem', 'Tucson'], + }, + { + company: 'Acuity Brands', + name: 'Logan Coale', + email: 'lcoale@gmail.com', + linkedIn: 'https://www.linkedin.com/in/logancoale/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Senior Software Engineer', + industry: 'Industrial Lighting/IoT', + cities: ['Corpus Christi', 'Madison'], + }, + { + company: 'Adaptive Biotechnologies', + name: 'Conor Chinitz', + email: 'conorchinitz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/conorchinitz', + campus: 'FTRI', + cohort: '7', + jobTitle: 'Software Engineer III', + industry: 'Biotech', + cities: ['Gilbert'], + }, + { + company: 'Adobe - Frame.io', + name: 'Anna Brakowska', + email: 'anna.brakowska91@gmail.com', + linkedIn: 'https://www.linkedin.com/in/anna-brakowska/', + campus: 'NYC', + cohort: '7', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Toronto', 'Arlington'], + }, + { + company: 'Affirm', + name: 'Oscar Chan', + email: 'chanoscar0@gmail.com', + linkedIn: 'https://www.linkedin.com/in/occhan/', + campus: 'LA', + cohort: '26', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Cleveland', 'St. Petersburg', 'Albuquerque'], + }, + { + company: 'Age of Learning', + name: 'Brian Kwok', + email: 'brian.kwok15@gmail.com', + linkedIn: 'https://www.linkedin.com/in/briankwok15/', + campus: 'LA', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Education', + cities: ['Washington'], + }, + { + company: 'Age of Learning', + name: 'Tre Hultzen', + email: 'hultzentre@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tre-hultzen/', + campus: 'LA', + cohort: '45', + jobTitle: 'Web Services Engineer', + industry: 'Education', + cities: ['Honolulu'], + }, + { + company: 'Agua Caliente Casinos', + name: 'Mark Alexander', + email: 'markalexander72@gmail.com', + linkedIn: 'https://www.linkedin.com/in/marka772', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Web Developer', + industry: 'Gaming/eSports', + cities: ['Fort Wayne'], + }, + { + company: 'AI Insurance', + name: 'James Edwards III', + email: 'j.olden.edwards@gmail.com', + linkedIn: 'https://www.linkedin.com/in/james-edwards-547307242/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Riverside', 'Durham', 'Louisville'], + }, + { + company: 'Air Labs, Inc.', + name: 'Madison Brown', + email: 'mbrown3391@gmail.com', + linkedIn: 'https://www.linkedin.com/in/madisondbrown/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Sr. Software Engineer', + industry: 'Digital Asset Management', + cities: ['Atlanta', 'Jacksonville', 'Tampa', 'Washington'], + }, + { + company: 'Airtable', + name: 'Clara Kim', + email: 'clarayhkim96@gmail.com', + linkedIn: 'https://www.linkedin.com/in/clarakm/', + campus: 'LA', + cohort: '34', + jobTitle: 'Full-stack Engineer', + industry: 'SaaS', + cities: ['Baltimore', 'Seattle', 'Arlington', 'El Paso'], + }, + { + company: 'Ajmadison', + name: 'Shlomo porges', + email: 'porges.s@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shlomoporges/', + campus: 'NYC', + cohort: '10', + jobTitle: 'DB architect', + industry: 'Appliances', + cities: ['Denver', 'Paris'], + }, + { + company: 'Albert', + name: 'Will Bladon', + email: 'whbladon@gmail.com', + linkedIn: 'https://www.linkedin.com/in/will-bladon/', + campus: 'LA', + cohort: '40', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Jersey City', 'Phoenix', 'Scottsdale'], + }, + { + company: 'Alchemy', + name: 'Mathias Perfumo', + email: 'mathias.perfumo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mathiasperfumo', + campus: 'FTRI / CTRI', + cohort: '7', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Columbus'], + }, + { + company: 'Aledade', + name: 'Etana Kopin', + email: 'claws.33@gmail.com', + linkedIn: 'https://www.linkedin.com/in/egkopin/', + campus: 'PTRI', + cohort: '8', + jobTitle: 'Senior Software Engineer', + industry: 'Healthcare', + cities: ['Glendale', 'San Francisco'], + }, + { + company: 'Alethix', + name: 'Mark Dolan', + email: 'mark.dolan3@gmail.com', + linkedIn: 'https://www.linkedin.com/in/markdolan30/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Frontend Software Engineer', + industry: 'Government services', + cities: ['Scottsdale', 'Saint Paul'], + }, + { + company: 'Algolia', + name: 'Jacob Cole', + email: 'jacob.cole@gmail.com', + linkedIn: 'jacobcole34', + campus: 'PTRI', + cohort: '8', + jobTitle: 'Solutions Engineer', + industry: 'Software / Tech', + cities: ['Los Angeles'], + }, + { + company: 'Allen Institute', + name: 'Joseph Heffernan', + email: 'Interim17@gmail.com', + linkedIn: 'LinkedIn.com/in/Joseph-heffernan', + campus: 'LA / WCRI', + cohort: '53', + jobTitle: 'Software Engineer Front End', + industry: 'Biotech', + cities: ['Fort Worth', 'Jersey City', 'Portland'], + }, + { + company: 'Alleo.ai', + name: 'Rawan Al Bairouti', + email: 'rawan.bairouti@gmail.com', + linkedIn: 'linkedin.com/in/rawanbairouti', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Lead Developer ', + industry: 'Software Solutions/Developer Tools', + cities: ['Reno', 'Boston', 'Long Beach', 'Nashville'], + }, + { + company: 'Alloy', + name: 'Jacqueline Chang', + email: 'jqw.chang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jqw-chang/', + campus: 'NYC', + cohort: '7', + jobTitle: 'Software Engineer II', + industry: '', + cities: ['El Paso', 'Lincoln', 'Pittsburgh', 'Oklahoma City'], + }, + { + company: 'Alloy', + name: 'Sophie Nye', + email: 'sophie.nye@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gsophienye/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Software Engineer II', + industry: 'Fintech', + cities: ['Fort Wayne', 'Fresno', 'Memphis', 'Lincoln'], + }, + { + company: 'Allure Bridal', + name: 'Patrick Reid', + email: 'patrickjreid@gmail.com', + linkedIn: 'https://www.linkedin.com/in/patrickjreid/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Senior Solutions Engineer', + industry: 'Retail', + cities: ['Madison', 'El Paso'], + }, + { + company: 'Ally', + name: 'Oleksii Hordiienko', + email: 'alex.hord@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/oleksii-hordiienko/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Sr. Software Engineer', + industry: 'Fintech', + cities: ['Norfolk', 'Jersey City'], + }, + { + company: 'Ally', + name: 'Allison Jacobs', + email: 'allison-jacobs@outlook.com', + linkedIn: 'https://www.linkedin.com/in/allison-j', + campus: 'NYC', + cohort: '25', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: ['Scottsdale', 'Toronto', 'Long Beach'], + }, + { + company: 'Ally', + name: 'Connor Tracy', + email: 'Connortracy15@gmail.com', + linkedIn: 'https://www.linkedin.com/in/connortracy19', + campus: 'NYC', + cohort: '28', + jobTitle: 'Frontend Software Engineer', + industry: 'Fintech', + cities: ['Madison'], + }, + { + company: 'Ally', + name: 'Damien Evans', + email: 'damiensevans@gmail.com', + linkedIn: 'https://www.linkedin.com/in/damien-s-evans/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Principal Software Engineer', + industry: 'Fintech', + cities: ['Raleigh', 'Bakersfield', 'Baltimore'], + }, + { + company: 'Ally', + name: 'Mercedes Kalaizic', + email: 'Kalaizicmercedes@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mkalaizic/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Principal Software Engineer', + industry: 'Fintech', + cities: ['Anaheim', 'Oklahoma City'], + }, + { + company: 'Ally', + name: 'Richard Zhang', + email: 'rchzhng@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dickzhang/', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['San Francisco', 'Laredo'], + }, + { + company: 'Ally', + name: 'Garrett Weaver', + email: 'Uncommonweaver@gmail.com', + linkedIn: 'https://www.linkedin.com/in/g-weaver/', + campus: 'NYC', + cohort: '23', + jobTitle: 'API Developer', + industry: 'Fintech', + cities: ['Chesapeake', 'Houston', 'Arlington', 'Washington'], + }, + { + company: 'Alo Yoga', + name: 'Angie Chang', + email: 'angiechangpagne@gmail.com', + linkedIn: 'https://www.linkedin.com/in/angelsofwar', + campus: 'LA', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'E-Commerce/Fashion/Wellness/Mindfulness', + cities: ['Sydney'], + }, + { + company: 'AlphaSense', + name: 'Joe Pavlisko', + email: 'jpavlisko@protonmail.com', + linkedIn: 'https://www.linkedin.com/in/joe-pavlisko-11b74930/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Software Engineer', + industry: 'FinTech', + cities: ['Reno'], + }, + { + company: 'ALTEN GmbH', + name: 'Jay Wall', + email: 'walljayw@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hanswand/', + campus: 'LA', + cohort: '47', + jobTitle: 'Senior Consultant', + industry: 'Consultancy - Fintech, Manufacturing, Healthcare', + cities: ['Plano', 'Houston', 'Lincoln', 'Oakland'], + }, + { + company: 'Alteryx', + name: 'Miriam Feder', + email: 'mirfeder@gmail.com', + linkedIn: 'https://www.linkedin.com/in/miriam-feder', + campus: 'NYC', + cohort: '32', + jobTitle: 'Senior Software Engineer', + industry: 'Data Analytics', + cities: ['Boston', 'El Paso', 'Virginia Beach'], + }, + { + company: 'Altice USA', + name: 'Ola Adedoyin', + email: 'ola_adedoyin@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/oadedoyin/', + campus: 'NYC', + cohort: '15', + jobTitle: 'DevOps Engineering Manager', + industry: 'Communication and Media', + cities: ['Garland', 'Corpus Christi', 'Denver'], + }, + { + company: 'Amazon', + name: 'Amy Liang', + email: 'amyliangny@gmail.com', + linkedIn: 'https://www.linkedin.com/in/amyliang18/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Software Development Engineer', + industry: 'Software / Tech', + cities: ['Plano', 'Norfolk'], + }, + { + company: 'Amazon', + name: 'Anna Falvello', + email: 'anna.falvello@gmail.com', + linkedIn: 'https://www.linkedin.com/in/afalvello/', + campus: 'NYC', + cohort: '29', + jobTitle: 'SDEII', + industry: 'Ecommerce', + cities: ['Reno', 'Toledo', 'Fort Worth'], + }, + { + company: 'Amazon', + name: 'Anthony Valdez', + email: 'avaldez520@gmail.com', + linkedIn: 'https://www.linkedin.com/in/va1dez/', + campus: 'NYC', + cohort: '32', + jobTitle: 'SDE II (Full Stack)', + industry: 'Software / Tech', + cities: ['Fort Wayne', 'Toronto', 'Seattle'], + }, + { + company: 'Amazon', + name: 'Christopher LeBrett', + email: 'clebrett@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chris-lebrett/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Development Engineer', + industry: 'Software / Tech', + cities: ['Gilbert'], + }, + { + company: 'Amazon', + name: 'Christopher Wong', + email: 'cwong8257@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chriswong2/', + campus: 'NYC', + cohort: '7', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Norfolk', 'Oklahoma City', 'Newark', 'Memphis'], + }, + { + company: 'Amazon', + name: 'David Anderson', + email: 'dlande000@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dlande000/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Front-End Engineer', + industry: 'AWS / internet infrastructure', + cities: ['Sรฃo Paulo', 'Houston', 'Milwaukee'], + }, + { + company: 'Amazon', + name: 'Dillon Schriver', + email: 'dschriver9@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dillon-schriver/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Software Development Engineer II', + industry: 'Ecommerce', + cities: ['Gilbert'], + }, + { + company: 'Amazon', + name: 'Eelan Tung', + email: 'eelantung@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eelantung', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Development Engineer', + industry: 'Software / Tech', + cities: ['Las Vegas'], + }, + { + company: 'Amazon', + name: 'Jason Huang', + email: 'huang.jason999@gmail.com', + linkedIn: 'https://www.linkedin.com/in/huang-jason999/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Software Development Engineer II', + industry: 'Technology', + cities: ['Las Vegas'], + }, + { + company: 'Amazon', + name: 'Idan Michael', + email: 'idan.michael3@gmail.com', + linkedIn: 'https://www.linkedin.com/in/idanmichael/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Software Develpment Engineer', + industry: 'Cloud', + cities: ['Lubbock', 'Wichita'], + }, + { + company: 'Amazon', + name: 'Jacqueline Douglass', + email: 'jackie.douglass@icloud.com', + linkedIn: 'https://www.linkedin.com/in/jacqueline-douglass/', + campus: 'FTRI', + cohort: '2', + jobTitle: 'Front-End Engineer', + industry: 'e-commerce, cloud computing, digital streaming, and artificial intelligence.', + cities: ['Santa Ana', 'Honolulu', 'Virginia Beach'], + }, + { + company: 'Amazon', + name: 'James Kim', + email: 'james.minjae.97@gmail.com', + linkedIn: 'https://linkedin.com/in/jamesmjkim', + campus: 'PTRI', + cohort: '5', + jobTitle: 'Software Development Engineer 1', + industry: 'Software / Tech', + cities: ['Los Angeles', 'Garland', 'Lubbock', 'Fort Worth'], + }, + { + company: 'Amazon', + name: 'Luke Michals', + email: 'luke.michals@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '14', + jobTitle: 'Frontend Engineer II', + industry: 'Retail', + cities: ['Irving', 'Chula Vista', 'Fort Wayne', 'Mumbai'], + }, + { + company: 'Amazon', + name: 'Jennifer Song', + email: 'lumie.song@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lu0713/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Development Engineer II', + industry: 'Tech', + cities: ['North Las Vegas', 'Lexington', 'Laredo', 'Sรฃo Paulo'], + }, + { + company: 'Amazon', + name: 'Megan Nadkarni', + email: 'megan.nadkarni@gmail.com', + linkedIn: 'https://www.linkedin.com/in/megannadkarni/', + campus: 'LA', + cohort: '48', + jobTitle: 'Front End Engineer', + industry: 'Software / Tech', + cities: ['Oakland', 'Laredo'], + }, + { + company: 'Amazon', + name: 'Mark Washkewicz', + email: 'mwashkewicz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mark-washkewicz/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Development Engineer 1', + industry: 'Retail', + cities: ['Corpus Christi', 'Indianapolis'], + }, + { + company: 'Amazon', + name: 'Stephan Halarewicz', + email: 'shalarewicz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stephanhalarewicz/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Software Development Engineer, People Engine', + industry: 'Software / Tech', + cities: ['Colorado Springs', 'Norfolk', 'Anaheim'], + }, + { + company: 'Amazon', + name: 'Tanner Peterson', + email: 'tanpeterson@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tanner-peterson/', + campus: 'LA', + cohort: '46', + jobTitle: 'Front End Engineer', + industry: 'Cloud Services', + cities: ['Glendale'], + }, + { + company: 'Amazon', + name: 'Timothy Mai', + email: 'timothy.mai13@gmail.com', + linkedIn: 'https://www.linkedin.com/in/timothy-mai-459085b3/', + campus: 'LA', + cohort: '31', + jobTitle: 'Software Development Engineer I', + industry: 'Advertising', + cities: ['Madison'], + }, + { + company: 'Amazon', + name: 'Yogi Paturu', + email: 'ypaturu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yogi-paturu/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Software Development Engineer', + industry: 'Cloud', + cities: ['Albuquerque', 'Glendale', 'Jersey City'], + }, + { + company: 'Amazon', + name: 'Yale Yng-Wong', + email: 'yyngwong@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ywyw/', + campus: 'NYC', + cohort: '32', + jobTitle: 'SDE1', + industry: 'Advertising', + cities: ['San Diego', 'Stockton'], + }, + { + company: 'Amazon (AWS)', + name: 'Michael Weber', + email: 'michael.weber.jr@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael-weber-jr/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Software Development Engineer', + industry: 'Cloud Services', + cities: ['Chandler', 'Washington', 'Fort Wayne'], + }, + { + company: 'Amazon Prime Video', + name: 'Faraz Moallemi', + email: 'moallemifaraz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/farazmoallemi/', + campus: 'LA', + cohort: '44', + jobTitle: 'Software Development Engineer I', + industry: 'Big Tech', + cities: ['Stockton', 'Cincinnati', 'San Jose'], + }, + { + company: 'Amazon Web Services', + name: 'Daniel Forrester', + email: 'danielf216@gmail.com', + linkedIn: 'https://www.linkedin.com/in/danielforrester/', + campus: 'PTRI', + cohort: '5', + jobTitle: 'Cloud Application Architect', + industry: 'Cloud Services', + cities: ['Santa Ana', 'Nashville', 'Louisville', 'San Diego'], + }, + { + company: 'Amazon Web Services', + name: 'Lumie (Jen) Song', + email: 'lumie.song@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lu0713/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Development Engineer II', + industry: 'Software', + cities: ['Houston', 'Tulsa', 'Los Angeles'], + }, + { + company: 'Amazon Web Services', + name: 'Matthew Lee', + email: 'matthewcml6022@gmail.com', + linkedIn: 'https://www.linkedin.com/in/matthewcmlee/', + campus: 'LA', + cohort: '45', + jobTitle: 'Software Development Engineer', + industry: 'Web Services / Cloud Computing', + cities: ['Winston-Salem', 'Glendale'], + }, + { + company: 'Amazon Web Services', + name: 'Taylor Rodrigues', + email: 'taylor.d.rod33@gmail.com', + linkedIn: 'https://www.linkedin.com/in/taylorrodrigues/', + campus: 'LA', + cohort: '33', + jobTitle: 'Software Development Engineer I (L4)', + industry: 'Cloud Computing', + cities: ['Seattle', 'Newark', 'Mexico City'], + }, + { + company: 'Amazon Web Services (AWS)', + name: 'Raphael Bargues', + email: 'rbargues@gmail.com', + linkedIn: 'https://www.linkedin.com/in/raphael-bargues/', + campus: 'NYC', + cohort: '17', + jobTitle: 'Software Engineer', + industry: '', + cities: ['San Diego', 'Cleveland'], + }, + { + company: 'Amazon, AWS', + name: 'Jimmy Ngo', + email: 'jimmycngo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jimmycngo/', + campus: 'FTRI', + cohort: '2', + jobTitle: 'Software Development Engineer 1', + industry: 'cloud computing', + cities: ['Las Vegas', 'Newark', 'Raleigh', 'Glendale'], + }, + { + company: 'AMC Networks', + name: 'Wade Armstrong', + email: 'wade@wadearmstrong.com', + linkedIn: 'https://www.linkedin.com/in/wadearmstrong/', + campus: 'LA', + cohort: '5', + jobTitle: 'Director, Front-End Development', + industry: 'Entertainment', + cities: ['Fresno', 'Long Beach'], + }, + { + company: 'American Airlines(Contracted via BrookSource)', + name: 'Mariah Talicuran', + email: 'talicuran.mariah@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mariahtalicuran/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Associate React Developer', + industry: 'Other', + cities: ['Raleigh'], + }, + { + company: 'American Dawn', + name: 'Charlie Huang', + email: 'charliehuang913@gmail.com', + linkedIn: 'https://www.linkedin.com/in/huangcharlie', + campus: 'LA / WCRI', + cohort: '48', + jobTitle: 'Junior Software Engineer', + industry: 'Retail', + cities: ['Orlando', 'Colorado Springs'], + }, + { + company: 'American Express', + name: 'Dominic DiSalvo', + email: 'Dominicd17@gmail.com', + linkedIn: 'https://www.linkedin.com/mwlite/in/dominicdisalvo', + campus: 'FTRI', + cohort: '3', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Scottsdale'], + }, + { + company: 'American Express', + name: 'Jake Diorio', + email: 'jdiorio2393@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jake-diorio/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: 'Banking', + cities: ['Milwaukee', 'Washington'], + }, + { + company: 'American Express', + name: 'Kelvin Shamy', + email: 'kelvinshamy@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kelvinshamy/', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Gilbert', 'Denver'], + }, + { + company: 'American Express', + name: 'Rebecca Turk', + email: 'rebecca.e.turk@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rebeccaturk/', + campus: 'NYC', + cohort: '5', + jobTitle: 'Engineer I', + industry: '', + cities: ['Minneapolis'], + }, + { + company: 'American Express', + name: 'Victor He', + email: 'victorhe33@gmail.com', + linkedIn: 'www.linkedin.com/in/victorhe33', + campus: 'PTRI', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Washington', 'San Diego'], + }, + { + company: 'AmeriSave', + name: 'Andrew Pomatti', + email: 'ampomatti@gmail.com', + linkedIn: 'https://www.linkedin.com/in/drewpomatti/', + campus: 'LA', + cohort: '47', + jobTitle: 'Systems Engineer I', + industry: 'Real Estate', + cities: ['Houston', 'Dallas'], + }, + { + company: 'AmeriSave', + name: 'Jacob C Viesselman', + email: 'jacob.viesselman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jacobviesselman/', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: ['Portland', 'Saint Paul', 'Jacksonville', 'Reno'], + }, + { + company: 'Amerisave', + name: 'Norman Liu', + email: 'Normanliu91@gmail.com', + linkedIn: 'https://www.linkedin.com/in/norm-liu', + campus: 'PTRI', + cohort: '5', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Saint Paul', 'Colorado Springs', 'Glendale', 'Houston'], + }, + { + company: 'AmeriSave Mortgage Corporation', + name: 'Jason Chan', + email: 'Jason.chann91@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jason-chan1765/', + campus: 'FTRI', + cohort: '7', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: ['Sรฃo Paulo', 'Garland', 'Plano', 'Omaha'], + }, + { + company: 'AmeriSave Mortgage Corporation', + name: 'Michael Prince', + email: 'mgp2454@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael-prince', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['New York'], + }, + { + company: 'Ample, LLC', + name: 'Rudo Hengst', + email: 'rudohengst@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rhengst/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Lead Developer', + industry: 'Digital Marketing', + cities: ['Mesa', 'Wichita', 'Saint Paul'], + }, + { + company: 'Amplify', + name: 'Ekaterina Vasileva', + email: 'ekaterinavasileva768@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ekaterina-vasileva238/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Education', + cities: ['Sydney', 'North Las Vegas'], + }, + { + company: 'Amplify', + name: 'Biet Van Nguyen', + email: 'vanbietnguyen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/van-biet-nguyen-6879434a/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Software Engineer', + industry: 'Edtech', + cities: ['Portland', 'Philadelphia', 'Lexington', 'Cleveland'], + }, + { + company: 'Anaconda', + name: 'Rosio Reyes', + email: 'rosio_reyes@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/rosio-reyes-09b9a256/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Software Engineer', + industry: 'Computer Software', + cities: ['Albuquerque', 'Santa Ana'], + }, + { + company: 'Ancestry', + name: 'Miguel Garibay', + email: 'miguelgaribay93@gmail.com', + linkedIn: 'https://www.linkedin.com/in/miguel-garibay-mag/', + campus: 'LA', + cohort: '43', + jobTitle: 'Full Stack Software Engineer', + industry: 'Genealogy', + cities: ['Boston', 'Las Vegas', 'Sacramento', 'Phoenix'], + }, + { + company: 'Ancestry', + name: 'Schno Mozingo', + email: 'schno.mozingo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/schno-mozingo/', + campus: 'LA', + cohort: '12', + jobTitle: 'Senior Software Engineer', + industry: 'Geneology', + cities: ['Toledo', 'Lubbock'], + }, + { + company: 'Ancilia', + name: 'Clark Pang', + email: 'clarkcpang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/clarkpang/', + campus: 'LA / WCRI', + cohort: '56', + jobTitle: 'Software Engineer', + industry: 'Security', + cities: ['Fort Wayne', 'Los Angeles', 'Washington', 'Mesa'], + }, + { + company: 'Anheuser-Busch', + name: 'Brandon Bowers', + email: 'brandonbowers1234@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brandon-michael-bowers/', + campus: 'FTRI', + cohort: '3', + jobTitle: 'Senior Front-end React Developer', + industry: 'Beverages', + cities: ['Reno', 'Raleigh'], + }, + { + company: 'Annalect', + name: 'Carlos Peรฑa', + email: 'carlos.pena91@gmail.com', + linkedIn: 'https://www.linkedin.com/in/carlospena91', + campus: 'LA', + cohort: '39', + jobTitle: 'Front End Engineer', + industry: 'Advertisement and Media', + cities: ['Mesa', 'Sacramento'], + }, + { + company: 'Annalect', + name: 'Trent Currie', + email: 'trentdcurrie@gmail.com', + linkedIn: 'https://www.linkedin.com/in/trentdcurrie/', + campus: 'LA', + cohort: '39', + jobTitle: 'Front-End Engineer', + industry: 'Marketing', + cities: ['Aurora'], + }, + { + company: 'Apex Fintech Solutions', + name: 'Kevin Le', + email: 'lekevin2013@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kevinvu-le/', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Beijing', 'New York', 'Baltimore'], + }, + { + company: 'Apex Systems', + name: 'Anthony Martinez', + email: 'anthony@amartinez.cc', + linkedIn: 'https://www.linkedin.com/in/tony-mtz/', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer', + industry: 'Bank', + cities: ['Winston-Salem', 'Fort Wayne', 'Orlando', 'Anchorage'], + }, + { + company: 'Apollo GraphQL', + name: 'Joel Burton', + email: 'joeltburton@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joeltburton', + campus: 'LA', + cohort: '26', + jobTitle: 'Software Engineer', + industry: 'Technology', + cities: ['Boston', 'Santa Ana', 'Lincoln', 'Riverside'], + }, + { + company: 'Appfolio', + name: 'Erik Fisher', + email: 'efishr4@gmail.com', + linkedIn: 'https://www.linkedin.com/in/erik-fisher-53b9b6b3/', + campus: 'LA', + cohort: '24', + jobTitle: 'Software Engineer II', + industry: 'Aviation & Aerospace', + cities: ['Lincoln', 'Norfolk', 'Santa Ana', 'Kansas City'], + }, + { + company: 'Appfolio', + name: 'Michelle Holland', + email: 'michellebholland@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michellebholland/', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: ['Lincoln', 'Anaheim', 'New York', 'San Francisco'], + }, + { + company: 'AppFolio', + name: 'Timothy Barry', + email: 'tim.barry12@gmail.com', + linkedIn: 'https://www.linkedin.com/in/timothy-barry-se', + campus: 'FTRI', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: ['Toledo'], + }, + { + company: 'Apple', + name: 'Alexander Zhang', + email: 'azalexanderzhang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/zhang-alexander/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Software Engineer', + industry: 'Tech', + cities: ['Chesapeake', 'Jacksonville', 'Saint Paul'], + }, + { + company: 'Apple (via Ryzen)', + name: 'Dieu Huynh', + email: 'dieuhhuynh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dieu-huynh/', + campus: 'LA', + cohort: '42', + jobTitle: 'Frontend Engineer', + industry: 'Technology', + cities: ['Jacksonville', 'Paris', 'Raleigh', 'Indianapolis'], + }, + { + company: 'Applied Minds', + name: 'Michael Chiang', + email: 'michael.chiang.dev5@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael-chiang-dev5/', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'software engineer', + industry: 'Software / Tech', + cities: ['Colorado Springs', 'Mexico City'], + }, + { + company: 'AppOmni', + name: 'Ousman Diallo', + email: 'ordiallo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ousman-diallo/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Front End Engineer', + industry: 'Security', + cities: ['Fresno', 'Anchorage', 'Glendale'], + }, + { + company: "Arc'teryx", + name: 'Simon Grigenas', + email: 'grigenas@outlook.com', + linkedIn: 'https://www.linkedin.com/in/simon-grigenas/', + campus: 'NYC / ECRI', + cohort: '1', + jobTitle: 'Intermediate Web Applications Developer', + industry: 'Retail', + cities: ['Anchorage', 'Oklahoma City', 'Los Angeles'], + }, + { + company: 'Arcadia', + name: 'Adda Kridler', + email: 'addakridler@gmail.com', + linkedIn: 'https://www.linkedin.com/in/addakridler/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Software Engineer 1', + industry: 'Energy Tech', + cities: ['Denver'], + }, + { + company: 'Arcadia', + name: 'Cameron Baumgartner', + email: 'cameron.h.baumgartner@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cameronbaumgartner/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: 'Renewable Energy', + cities: ['Reno'], + }, + { + company: 'Arcadia', + name: 'Jehovany A Cruz', + email: 'howaboutjeho@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jehovany-cruz/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer', + industry: 'Energy - Renewable Energy', + cities: ['Santa Ana', 'North Las Vegas'], + }, + { + company: 'Arcadia', + name: 'Jason Liggayu', + email: 'jligg224@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jasonliggayu/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Full Stack Engineer', + industry: 'Renewable Energy', + cities: ['Seattle', 'San Jose'], + }, + { + company: 'Arcadia', + name: 'Kristen Althoff', + email: 'kristenwalthoff@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kristen-althoff-3a4765b9/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Full-Stack Software Engineer I', + industry: 'Software / Tech', + cities: ['Anchorage', 'Louisville'], + }, + { + company: 'Arcules', + name: 'Nico Flores', + email: 'floresni1996@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nicolasaflores/', + campus: 'LA', + cohort: '48', + jobTitle: 'Software Engineer', + industry: 'Cloud Services', + cities: ['Albuquerque', 'St. Petersburg', 'Mesa'], + }, + { + company: 'Arcules', + name: 'Patrick Allen', + email: 'patrick@ohana-app.io', + linkedIn: 'https://linkedin.com/in/patrickallendfs', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer', + industry: 'Cloud Video', + cities: ['Miami'], + }, + { + company: 'Armoire', + name: 'Katie Sandfort', + email: 'katie.sandfort@gmail.com', + linkedIn: 'https://www.linkedin.com/in/katie-sandfort/', + campus: 'LA / WCRI', + cohort: '55', + jobTitle: 'Software Engineer', + industry: 'Retail', + cities: ['Sydney', 'Sacramento', 'Chicago', 'Memphis'], + }, + { + company: 'Artsy', + name: 'Matt Jones', + email: 'matt.chris.jones@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mc-jones/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Senior Engineer 1 (Fullstack)', + industry: 'Art', + cities: ['Chula Vista'], + }, + { + company: 'Artyc', + name: 'Daniel Geiger', + email: 'daniel.w.geiger@gmail.com', + linkedIn: 'https://www.linkedin.com/in/danielwgeiger/', + campus: 'FTRI / CTRI', + cohort: '4', + jobTitle: 'Fullstack Engineer', + industry: 'Other', + cities: ['Corpus Christi', 'Honolulu', 'Pittsburgh', 'Scottsdale'], + }, + { + company: 'Arvest Bank', + name: 'Leilani Hernandez', + email: 'leilani.digame@gmail.com', + linkedIn: 'www.linkedin.com/in/lherna05', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Front End Developer', + industry: 'Fintech', + cities: ['London', 'Lubbock', 'Milwaukee', 'Sacramento'], + }, + { + company: 'Ash Wellness', + name: 'Andrew Rehrig', + email: 'arehrig@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andrew-rehrig/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Full Stack Engineer', + industry: 'Healthcare', + cities: ['Honolulu', 'Oklahoma City'], + }, + { + company: 'Asics', + name: 'Alexa Roberts', + email: 'alexarobertss@protonmail.com', + linkedIn: 'https://www.linkedin.com/in/alexarobertss', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Frontend Software Engineer', + industry: 'Software / Tech', + cities: ['Atlanta'], + }, + { + company: 'Aspiration', + name: 'Charles Gyer', + email: 'charlesgyer@gmail.com', + linkedIn: 'https://www.linkedin.com/in/charles-gyer/', + campus: 'PTRI', + cohort: '4', + jobTitle: 'Software Engineer, Backend', + industry: 'Green Fintech', + cities: ['Oklahoma City', 'Stockton'], + }, + { + company: 'Astra', + name: 'Jae Ryu', + email: 'rj.jaeryu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jaeryu/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Senior Software Engineer', + industry: 'Space-tech', + cities: ['Las Vegas', 'Fresno', 'Kansas City'], + }, + { + company: 'Asurion', + name: 'Jinseon Shin', + email: 'jinseonshin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jinseonshin/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Tech Insurance', + cities: ['Chula Vista', 'Laredo', 'Irvine', 'New York'], + }, + { + company: 'Asurion', + name: 'Shah Chaudri', + email: 'shah.pro.se@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shah-chaudri/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer 3', + industry: 'Tech Insurance', + cities: ['Wichita', 'Durham', 'New York', 'Newark'], + }, + { + company: 'Asurion', + name: 'Travis Woolston', + email: 'travis.ww@hotmail.com', + linkedIn: 'https://www.linkedin.com/in/traviswoolston/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: ['El Paso'], + }, + { + company: 'AT&T', + name: 'Alexander Kim', + email: 'akim3235@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexanderkim1/', + campus: 'LA', + cohort: '38', + jobTitle: 'Backend Software Engineer', + industry: 'Entertainment', + cities: ['Washington', 'Chula Vista'], + }, + { + company: 'AT&T', + name: 'Marc Doran', + email: 'doramm4408@gmail.com', + linkedIn: 'https://www.linkedin.com/in/marc-doran', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Database Developer', + industry: 'Telecommunications', + cities: ['Dallas', 'Stockton'], + }, + { + company: 'AT&T', + name: 'Alina Grafkina', + email: 'grafkina.production@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alinakyaw/', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Baltimore', 'New York', 'Gilbert', 'Lexington'], + }, + { + company: 'Athena Health', + name: 'Zach Pestaina', + email: 'zpestaina@gmail.com', + linkedIn: 'linkedin.com/zachpestaina/', + campus: 'NYC / ECRI', + cohort: '38', + jobTitle: 'Analytics Engineer', + industry: 'Healthcare', + cities: ['Glendale'], + }, + { + company: 'Atlassian', + name: 'Giao Tran', + email: 'contactgiaotran@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gd-tran/', + campus: 'LA', + cohort: '40', + jobTitle: 'Software Engineer P3', + industry: 'Project management?', + cities: ['Sydney'], + }, + { + company: 'Atlassian', + name: 'Dan Snyder', + email: 'dasnyder3@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dasnyder3/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: 'Tech', + cities: ['Detroit', 'Kansas City', 'Henderson', 'Long Beach'], + }, + { + company: 'Atlassian/ Trello', + name: 'Elizabeth Lotto', + email: 'fakeEmail1@fakeEmail.com', + linkedIn: 'https://www.linkedin.com/in/elizabethlotto/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer', + industry: 'Computer Software', + cities: ['Kansas City', 'Atlanta', 'Raleigh', 'San Francisco'], + }, + { + company: 'Atos Syntel (at Disney)', + name: 'Dakota Gilbreath', + email: 'dgilbrea92@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dakota-gilbreath/', + campus: 'LA', + cohort: '34', + jobTitle: 'Full Stack Developer', + industry: 'Entertainment', + cities: ['Detroit'], + }, + { + company: 'Attentive', + name: 'Sam Goldberg', + email: 'sgoldber61@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sgoldber61/', + campus: 'LA', + cohort: '27', + jobTitle: 'Software Engineer, Frontend - L4', + industry: 'E-commerce', + cities: ['Atlanta', 'Sacramento', 'Norfolk'], + }, + { + company: 'Attentive ', + name: 'Pravek Karwe', + email: 'pkarwe62@gmail.com', + linkedIn: + 'https://www.linkedin.com/in/pravek-karwe?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app', + campus: 'NYOI', + cohort: '7', + jobTitle: 'Senior Product Manager ', + industry: 'Marketing/Advertising', + cities: ['Baltimore', 'Chandler', 'Newark', 'Colorado Springs'], + }, + { + company: 'Audacy', + name: 'John Roman', + email: 'johnmroman33@gmail.com', + linkedIn: 'https://www.linkedin.com/in/john-m-roman/', + campus: 'NYC / ECRI', + cohort: '38', + jobTitle: 'Associate Software Engineer', + industry: 'Entertainment', + cities: ['New York', 'Berlin', 'Portland'], + }, + { + company: 'AuditBoard', + name: 'Alex Yu', + email: 'alexjihunyu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexjihunyu/', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer', + industry: 'FinTech', + cities: ['Detroit', 'London'], + }, + { + company: 'Autodesk', + name: 'Javan Ang', + email: 'javanamt@gmail.com', + linkedIn: 'https://www.linkedin.com/in/javanang/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Software Engineer', + industry: 'Software/Tech', + cities: ['Austin'], + }, + { + company: 'AutoFi', + name: 'Rocky Lin', + email: 'liangwen511@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rocky-lin/', + campus: 'NYC', + cohort: '14', + jobTitle: 'Senior Software Engineer', + industry: 'FinTech', + cities: ['Philadelphia', 'Las Vegas'], + }, + { + company: 'Ava', + name: 'Eden Shirin', + email: 'edenshirin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eden-shirin/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Software Engineer', + industry: 'Artificial Intelligence', + cities: ['San Jose', 'Charlotte', 'Memphis', 'Riverside'], + }, + { + company: 'Avant', + name: 'David Riley Burns', + email: 'drileyburns@gmail.com', + linkedIn: 'https://www.linkedin.com/in/drileyburns/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Software Engineer', + industry: 'Loans', + cities: ['Houston', 'Denver'], + }, + { + company: 'Avirtek', + name: 'Eliot L Nguyen', + email: 'eliotlefrin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ibeeliot', + campus: 'LA', + cohort: '34', + jobTitle: 'Front End Lead Developer', + industry: 'Cybersecurity', + cities: ['Albuquerque'], + }, + { + company: 'Avise', + name: 'Frank Norton', + email: 'jfnorton@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jfnorton32/', + campus: 'LA', + cohort: '37', + jobTitle: 'Full Stack Software Engineer', + industry: 'Fintech', + cities: ['Mexico City', 'San Francisco', 'Raleigh'], + }, + { + company: 'Avoma', + name: 'Kevin Chung', + email: 'kevin.c@me.com', + linkedIn: 'https://www.linkedin.com/in/kevc/', + campus: 'LA / WCRI', + cohort: '47', + jobTitle: 'Software Engineer - Frontend', + industry: 'Software / Tech', + cities: ['Toledo', 'Mexico City', 'Scottsdale', 'San Diego'], + }, + { + company: 'AVOXI', + name: 'Shirley Luu', + email: 'sh.rleyluu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/luu-shirley', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Full Stack Software Engineer', + industry: 'Business Tech/Enterprise Tech', + cities: ['Pittsburgh', 'Albuquerque'], + }, + { + company: 'Avvir', + name: 'Sharon Zhu', + email: 'sharonzhu.15@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sharonzhu/', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer II', + industry: 'Construction Tech', + cities: ['Wichita', 'Scottsdale'], + }, + { + company: 'AWS', + name: 'Blake Myrick', + email: 'blake.myrick@gmail.com', + linkedIn: 'https://www.linkedin.com/in/blake-myrick', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Software Development Engineer', + industry: 'Tech', + cities: ['Norfolk', 'Stockton', 'Beijing', 'Buffalo'], + }, + { + company: 'AWS', + name: 'George Jeng', + email: 'gjenga@icloud.com', + linkedIn: 'https://www.linkedin.com/in/gjenga', + campus: 'LA', + cohort: '49', + jobTitle: 'SDE1', + industry: 'Cloud Services', + cities: ['San Diego'], + }, + { + company: 'AWS', + name: 'Marc Burnie', + email: 'MarcABurnie@gmail.com', + linkedIn: 'https://www.linkedin.com/in/marcburnie', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Development Engineer II', + industry: 'Tech', + cities: ['San Antonio', 'Mesa', 'Bakersfield'], + }, + { + company: 'AWS', + name: 'Patty Qian', + email: 'patty.qian@gmail.com', + linkedIn: 'https://www.linkedin.com/in/patty-qian/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Development Engineer', + industry: 'Tech', + cities: ['Chandler'], + }, + { + company: 'Axim Geospatial', + name: 'Kevin Le', + email: 'kevinle1003@gmail.com', + linkedIn: 'https://www.linkedin.com/in/xkevinle/', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Software Developer', + industry: 'IT Services', + cities: ['Orlando', 'Cleveland', 'Las Vegas'], + }, + { + company: 'Axle Health', + name: 'Alexandra Ashcraft', + email: 'lash211@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexandra-ashcraft1/', + campus: 'FTRI / CTRI', + cohort: '17', + jobTitle: 'Software Engineer', + industry: 'Healthtech/Healthcare', + cities: ['Henderson', 'Corpus Christi', 'Chicago'], + }, + { + company: 'Axon', + name: 'Meng Ting Chiang', + email: 'a123deandean@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mengting-chiang/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer', + industry: 'Public Safety', + cities: ['Durham', 'Garland'], + }, + { + company: 'B-stock solutions', + name: 'Michael Feldman', + email: 'michaelfeldma1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael-feldman15/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Nodejs / microservices software engineer', + industry: 'E-commerce', + cities: ['Oklahoma City', 'Sรฃo Paulo', 'Gilbert', 'Washington'], + }, + { + company: 'Bach', + name: 'Abbey Campbell', + email: 'campbellabbeya@gmail.com', + linkedIn: 'https://www.linkedin.com/in/campbellabbeya/', + campus: 'LA', + cohort: '31', + jobTitle: 'Frontend Developer', + industry: "Entertainment? Wed-tech? lol idk it's pretty niche", + cities: ['Cincinnati'], + }, + { + company: 'BallerTV', + name: 'Jenessa Chapalamadugu', + email: 'jenessachap@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jenessachap/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Full Stack Engineer', + industry: 'Entertainment', + cities: ['Berlin'], + }, + { + company: 'Bank of America', + name: 'Ranisha Rafeeque Soopi Kalphantakath', + email: 'ranisharafeeque@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ranisha-rafeeque-s-k/', + campus: 'NYC', + cohort: '26', + jobTitle: 'AVP, Software Engineer', + industry: 'Fintech', + cities: ['Indianapolis'], + }, + { + company: 'Barstool Sports', + name: 'Daniel Nagano-Gerace', + email: 'dnaganog@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dnaganog/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Senior Backend Engineer', + industry: 'Media', + cities: ['Reno', 'Glendale', 'Denver', 'Nashville'], + }, + { + company: 'Bayer Crop Science (Neteffects)', + name: 'Jason Fricano', + email: 'jason.fricano@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jasonfricano/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Node / React Developer', + industry: 'Agricultural Science', + cities: ['Jacksonville', 'Irving'], + }, + { + company: 'Bayer Crop Sciences', + name: 'Stephen Budarz', + email: 'sbudarz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/steve-budarz/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Full Stack Engineer', + industry: 'Agriculture', + cities: ['Sรฃo Paulo', 'Toledo'], + }, + { + company: 'BD', + name: 'Annabelle Ni', + email: 'ann.j.ni@gmail.com', + linkedIn: 'https://www.linkedin.com/in/annabelleni/', + campus: 'FTRI / CTRI', + cohort: '17', + jobTitle: 'Software Engineer', + industry: 'Healthtech/Healthcare', + cities: ['Lexington', 'Las Vegas', 'Mesa'], + }, + { + company: 'Beacon Hill Staffing (Charter Communications)', + name: 'David Russo', + email: 'dr2378@gmail.com', + linkedIn: 'https://www.linkedin.com/in/russo-david', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Telecommunications', + cities: ['Sacramento', 'Houston'], + }, + { + company: 'Beacon Hill Staffing (working for Charter Communications)', + name: 'Jessica Balding', + email: 'jessica.r.balding@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jessica-balding/', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Full Stack Developer', + industry: 'Telecommunications', + cities: ['Orlando', 'Henderson', 'Irvine', 'Mumbai'], + }, + { + company: 'Beautycounter', + name: 'Mario Granberri', + email: 'mgranberri@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mgranberri/', + campus: 'LA', + cohort: '25', + jobTitle: 'Full stack software engineer', + industry: 'Compliance', + cities: ['Chula Vista'], + }, + { + company: 'Behavior Frontiers', + name: 'Chance Hernandez', + email: 'chance.hernandez24@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chance-hernandez/', + campus: 'LA', + cohort: '40', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['Jacksonville', 'Honolulu', 'Cincinnati', 'Milwaukee'], + }, + { + company: 'Bentobox', + name: 'Corey Van Splinter', + email: 'cvanspl1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/corey-van-splinter/', + campus: 'LA', + cohort: '39', + jobTitle: 'Senior Software Engineer', + industry: 'Hospitality', + cities: ['Durham', 'Fort Wayne', 'Minneapolis'], + }, + { + company: 'Bentobox', + name: 'Greg Dixon', + email: 'gdixon529@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gdixon529/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Engineer', + industry: 'Software', + cities: ['Sรฃo Paulo', 'Pittsburgh', 'Atlanta', 'Phoenix'], + }, + { + company: 'BentoBox', + name: 'Brian Liang', + email: 'liangbrian94@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brian-z-liang/', + campus: 'LA', + cohort: '43', + jobTitle: 'Product Support Engineer', + industry: 'Not sure', + cities: ['San Jose', 'Baltimore'], + }, + { + company: 'Berkadia', + name: 'Isaac Kittila', + email: 'isaac.kittila@gmail.com', + linkedIn: 'https://www.linkedin.com/in/isaac-kittila/', + campus: 'LA', + cohort: '39', + jobTitle: 'Associate Software Engineer', + industry: 'Commercial Real Estate', + cities: ['Chula Vista', 'Fort Worth'], + }, + { + company: 'Best Buy', + name: 'Alexander Hager', + email: 'alexhager19@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hager-alexander/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Front end Engineer', + industry: 'Data analytics', + cities: ['Atlanta', 'Phoenix'], + }, + { + company: 'Better.com', + name: 'Stefan Armijo', + email: 'stefan.armijo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stefanarmijo/', + campus: 'LA', + cohort: '21', + jobTitle: 'Sr. Software Engineer', + industry: '', + cities: ['Berlin', 'Plano'], + }, + { + company: 'BidWrangler', + name: 'Kylene Hohman', + email: 'kylenehohman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kylene-hohman', + campus: 'PTRI', + cohort: '5', + jobTitle: 'Full-Stack Developer', + industry: 'Auction Services', + cities: ['Lexington', 'Louisville', 'Durham'], + }, + { + company: 'Bigeye', + name: 'Dasha Kondratenko', + email: 'dashakondrattenko@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dasha-k/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer 1', + industry: 'Data quality', + cities: ['Louisville', 'Austin', 'Chula Vista', 'Oakland'], + }, + { + company: 'BigID', + name: 'Helen Regula', + email: 'hregula03@gmail.com', + linkedIn: 'https://www.linkedin.com/in/helenregula/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Senior Full Stack Software Engineer', + industry: 'Cyber Security', + cities: ['New York', 'Charlotte', 'Garland'], + }, + { + company: 'Bill.com', + name: 'Gordon Hui', + email: 'Maddogg612@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gordon-hui', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Software engineer 2 - Frontend', + industry: 'Fintech', + cities: ['Jacksonville', 'Sรฃo Paulo', 'Toronto', 'Chicago'], + }, + { + company: 'Bio-Rad Laboratories', + name: 'Tiffany Yang', + email: 'teefyang7857@gmail.com', + linkedIn: 'https://www.linkedin.com/in/teayang/', + campus: 'LA', + cohort: '21', + jobTitle: 'Software Engineer', + industry: 'Biotech', + cities: ['Chicago', 'Lexington'], + }, + { + company: 'BitGo', + name: 'Joe Kinney', + email: 'josephrkinney@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joekinney17/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Sรฃo Paulo', 'Reno'], + }, + { + company: 'Bitovi', + name: 'Edward Park', + email: 'edwardpark123@gmail.com', + linkedIn: 'https://www.linkedin.com/in/edwardparkwork/', + campus: 'LA', + cohort: '41', + jobTitle: 'Junior Developer and Consultant', + industry: 'Computer Software', + cities: ['El Paso'], + }, + { + company: 'BitPay', + name: 'Taven Shumaker', + email: 'tavensshumaker@gmail.com', + linkedIn: 'https://www.linkedin.com/in/taven-shumaker/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Denver', 'Riverside', 'Bakersfield', 'Pittsburgh'], + }, + { + company: 'Black Cape', + name: 'kyle saunders', + email: 'kylersaunders@gmail.com', + linkedIn: '/kylersaunders', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Chesapeake', 'Pittsburgh', 'Virginia Beach', 'Tulsa'], + }, + { + company: 'Blackrock', + name: 'Jiaxin Li', + email: 'jiaxin.li.gogo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lijiaxingogo/', + campus: 'NYC', + cohort: '22', + jobTitle: 'DevOps Engineer', + industry: '', + cities: ['Anaheim', 'Sรฃo Paulo', 'Greensboro', 'Tulsa'], + }, + { + company: 'Blackthorn Software', + name: 'Aalok Shah', + email: 'aalok.tsh@gmail.com', + linkedIn: '/kolashah', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Full Stack Software Engineer', + industry: 'Other', + cities: ['North Las Vegas', 'Greensboro', 'St. Petersburg'], + }, + { + company: 'Blackthorn.io', + name: 'Tristan Onfroy', + email: 'tonfroy90@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tristan-onfroy/', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Support Software Engineer', + industry: 'Software Solutions/Developer Tools', + cities: ['Houston', 'Memphis', 'Scottsdale'], + }, + { + company: 'Blend', + name: 'Peter Makhnatch', + email: 'p.makhnatch@gmail.com', + linkedIn: 'https://www.linkedin.com/in/petermakhnatch/', + campus: 'PTRI', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Long Beach', 'San Francisco'], + }, + { + company: 'Blink Health', + name: 'Matthew Digel', + email: 'Digel.matt@gmail.com', + linkedIn: 'https://www.linkedin.com/in/matt-digel', + campus: 'PTRI', + cohort: 'Beta', + jobTitle: 'Sr. Product Manager', + industry: 'Health Care Tech', + cities: ['Austin', 'Jacksonville'], + }, + { + company: 'Blizzard', + name: 'Christopher Washburn', + email: 'chris132128@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christopherwashburn/', + campus: 'LA', + cohort: '24', + jobTitle: 'Software Development Engineer', + industry: 'Insurance', + cities: ['Tucson', 'Philadelphia'], + }, + { + company: 'BlockFi', + name: 'Mohtasim Chowdhury', + email: 'mohtasim.hc@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mohtasimc/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Frontend Engineer', + industry: 'Fintech', + cities: ['New York'], + }, + { + company: 'BLOCKS', + name: 'Christopher C Carney', + email: 'ccarney51@gmail.com', + linkedIn: 'https://www.linkedin.com/mwlite/in/christopher-c-carney', + campus: 'NYC', + cohort: '24', + jobTitle: 'Senior Backend Engineer', + industry: 'Technology', + cities: ['Kansas City', 'Norfolk'], + }, + { + company: 'Bloom Medicinals', + name: 'Candie Hill', + email: 'can330330@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/candie-hill/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Jr Software Developer', + industry: 'Other', + cities: ['Saint Paul'], + }, + { + company: 'Bloomberg', + name: 'John Haberstroh', + email: 'haberstroh.john@gmail.com', + linkedIn: 'https://www.linkedin.com/in/johnhaberstroh/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Senior Fullstack Engineer', + industry: 'Financial,Software,Media,Data', + cities: ['Seattle', 'Colorado Springs'], + }, + { + company: 'Bloomberg', + name: 'James Maguire', + email: 'Jmaguire655@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Orlando'], + }, + { + company: 'Bloomberg', + name: 'Cedric Lee', + email: 'leeced@umich.edu', + linkedIn: 'https://www.linkedin.com/in/leeced/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: ['Laredo', 'Los Angeles', 'Austin'], + }, + { + company: 'Bloomberg', + name: 'Duke Lee', + email: 'leeduke90@gmail.com', + linkedIn: 'https://www.linkedin.com/in/duke-lee/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Software Engineer', + industry: 'Fin-Tech', + cities: ['Buffalo', 'Columbus', 'Glendale'], + }, + { + company: 'Bloomberg', + name: 'Michael Chin', + email: 'mikechin37@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael-9-chin/', + campus: 'NYC / ECRI', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Irving', 'Minneapolis'], + }, + { + company: 'Bloomberg Industry Group', + name: 'Neel Lakshman', + email: 'neelanjan.lakshman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/neel-lakshman/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Web Application Architect I', + industry: 'Other', + cities: ['Wichita', 'Phoenix', 'London', 'Charlotte'], + }, + { + company: 'Bloomberg L.P.', + name: 'Ariel Hyman', + email: 'a.o.hyman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ahyman0712/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Las Vegas', 'Raleigh', 'Atlanta', 'Kansas City'], + }, + { + company: 'Bloomberg LP', + name: 'Jinhee Choi', + email: 'jinhee.k.choi@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jinheekchoi/', + campus: 'LA', + cohort: '44', + jobTitle: 'Senior Software Engineer (Consultant)', + industry: 'Fintech', + cities: ['Santa Ana', 'Tucson'], + }, + { + company: 'Bloomboard', + name: 'Junie Hou', + email: 'selilac9@gmail.com', + linkedIn: 'https://www.linkedin.com/in/juniehou/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Charlotte', 'Oklahoma City', 'Lexington'], + }, + { + company: 'Blue Cross Blue Sheild of Florida', + name: 'Adam Rodriguez', + email: 'adamxrodriguez@gmail.com', + linkedIn: 'https://linkedin.com/in/adamrodriguez/', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Senior React Node Software Engineer', + industry: 'Healthcare', + cities: ['Oklahoma City', 'Miami', 'Cincinnati', 'Durham'], + }, + { + company: 'Blue Origin', + name: 'Sam VanTassel', + email: 'vantassel.sam@gmail.com', + linkedIn: 'https://www.linkedin.com/in/samvantassel/', + campus: 'LA', + cohort: '47', + jobTitle: 'Software Engineer I', + industry: 'Aerospace', + cities: ['Tucson', 'Lexington', 'Omaha'], + }, + { + company: 'Blueberry Pediatrics', + name: 'Lina Lee', + email: 'woorin.lee1524@gmail.com', + linkedIn: 'www.linkedin.com/in/lee-lina', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Full-Stack Software Engineer', + industry: 'Healthcare', + cities: ['Cleveland', 'Honolulu'], + }, + { + company: 'BlueStream Health', + name: 'Wei Huang', + email: 'wei.waye.huang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/wei-waye-huang/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Senior Software Engineer', + industry: 'Healthcare', + cities: ['New York', 'Fresno', 'Kansas City'], + }, + { + company: 'BlueVoyant', + name: 'Mahfuz Kabir', + email: 'mahfuzk@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mahfuzkabir/', + campus: 'NYC', + cohort: '4', + jobTitle: 'Software Engineer (Managed Security Services)', + industry: '', + cities: ['Aurora', 'Seattle'], + }, + { + company: 'BNY Mellon', + name: 'Ahsan Ali', + email: 'ali.ahsan95@gmail.com', + linkedIn: 'https://www.linkedin.com/in/greyali', + campus: 'FTRI / CTRI', + cohort: '12', + jobTitle: 'Senior Full Stack Developer', + industry: 'Fintech', + cities: ['Toronto', 'Jacksonville'], + }, + { + company: 'Bolt', + name: 'Chelsey Fewer', + email: 'chelsey.fewer@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chelsey-fewer/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Support Engineer', + industry: 'Ecommerce', + cities: ['Portland', 'Mexico City', 'Berlin', 'Fresno'], + }, + { + company: 'Booster', + name: 'Evelin Goldin', + email: 'evelinsaba1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/evelin-goldin/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Fullstack Software Engineer', + industry: 'Other', + cities: ['Virginia Beach'], + }, + { + company: 'Booz Allen Hamilton', + name: 'Sang Rea Han', + email: 'sxhanx@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sangreahan/', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Sr. Consultant', + industry: 'Consulting', + cities: ['Mesa'], + }, + { + company: 'Boulevard', + name: 'Ashley Austin', + email: 'aaustin86@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mraustin2u', + campus: 'LA', + cohort: '34', + jobTitle: 'Senior Associate Software Engineer', + industry: 'Business Management Tool', + cities: ['Newark', 'Stockton', 'Santa Ana', 'Gilbert'], + }, + { + company: 'Boxed', + name: 'Adam Goodman', + email: 'adamrgoodman1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adam-goodman1/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Backend Engineer I', + industry: 'e-commerce', + cities: ['London', 'Mesa', 'St. Louis', 'Oakland'], + }, + { + company: 'BP3', + name: 'Brian Jungk', + email: 'brian.jungk@outlook.com', + linkedIn: 'https://www.linkedin.com/in/brian-jungk/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Software Engineer', + industry: 'Consulting', + cities: ['Durham', 'Reno', 'Baltimore'], + }, + { + company: 'Brady Corporation', + name: 'Sean Flynn', + email: 'seanflynn5000@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sean-g-flynn', + campus: 'NYC / ECRI', + cohort: '38', + jobTitle: 'Web Developer', + industry: 'Business Tech/Enterprise Tech', + cities: ['Oklahoma City', 'Plano', 'Reno', 'Winston-Salem'], + }, + { + company: 'Branding Brand', + name: 'Andy Heng', + email: 'andyheng1095@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andy-heng/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Engineer', + industry: 'E-Commerce', + cities: ['Lexington'], + }, + { + company: 'Branding Brand', + name: 'Christian Wong', + email: 'ctcwong73@gmail.com', + linkedIn: 'https://www.linkedin.com/in/wong-christian/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Bakersfield', 'Oakland', 'Washington', 'El Paso'], + }, + { + company: 'Branding Brand', + name: 'Nobuhide Ajito', + email: 'Nobuhide95@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nobuhide-ajito/', + campus: 'LA', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Technology', + cities: ['Cleveland'], + }, + { + company: 'Bread Financial', + name: 'Cho Yee Win Aung', + email: 'choyeewinag@gmail.com', + linkedIn: 'https://www.linkedin.com/in/choyeewinaung/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer 1', + industry: 'Fintech', + cities: ['Riverside', 'Boston', 'Norfolk'], + }, + { + company: 'Brighter', + name: 'Elliot Kim', + email: 'elliot.kim@gmail.com', + linkedIn: 'https://www.linkedin.com/in/elliotjykim/', + campus: 'LA', + cohort: '24', + jobTitle: 'Full Stack Engineer', + industry: 'Gaming & Entertainment', + cities: ['Indianapolis', 'Chandler', 'Phoenix', 'Arlington'], + }, + { + company: 'Brighter (Cigna)', + name: 'David Marquess', + email: 'dave.marquess@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dave-marquess/', + campus: 'LA', + cohort: '25', + jobTitle: 'Senior Software Engineer', + industry: 'Cybersecurity', + cities: ['Albuquerque', 'Riverside'], + }, + { + company: 'Brightflow AI', + name: 'Erika Jung', + email: 'erika.h.jung@gmail.com', + linkedIn: 'https://www.linkedin.com/in/erikahjung/', + campus: 'LA / WCRI', + cohort: '56', + jobTitle: 'Software Engineer', + industry: 'IT Services', + cities: ['Long Beach', 'Irvine', 'San Diego'], + }, + { + company: 'Brillio', + name: 'Alexander Smith', + email: 'ajsmith925@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ajsmith925/', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer', + industry: 'Software Consulting', + cities: ['Sacramento', 'Honolulu', 'Glendale'], + }, + { + company: 'Brooksource, contracted to Northwestern Mutual', + name: 'Jessica Louie Lee', + email: 'jlouielee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jessllee/', + campus: 'LA', + cohort: '48', + jobTitle: + 'Backend Node Engineer with Brooksource, Full stack Engineer with Northwestern Mutual', + industry: 'Fintech', + cities: ['Mesa', 'Bakersfield', 'Newark', 'Plano'], + }, + { + company: 'BuildOps', + name: 'Muhammad Trad', + email: 'Muhammad.trad@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/muhammadtrad/', + campus: 'LA', + cohort: '37', + jobTitle: 'Senior Software Engineer', + industry: 'Commercial Real Estate', + cities: ['Toronto', 'Buffalo'], + }, + { + company: 'Business Alliance Financial Services (BAFS)', + name: 'Justin McKay', + email: 'justinmckay99@gmail.com', + linkedIn: 'https://www.linkedin.com/in/justinwmckay/', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Washington', 'Cleveland'], + }, + { + company: 'Business Alliance Financial Services, LLC', + name: 'Joe Bigelow', + email: 'joebigelow@protonmail.com', + linkedIn: 'https://www.linkedin.com/in/joe-bigelow', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer', + industry: 'Finance (Credit union service organization)', + cities: ['Irvine', 'Arlington', 'El Paso'], + }, + { + company: 'ButcherBox', + name: 'Maxwell Shick', + email: 'maxwellshick@gmail.com', + linkedIn: 'https://www.linkedin.com/in/maxwell-shick/', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Restaurant, Food, and Beverage', + cities: ['Colorado Springs'], + }, + { + company: 'Butterfly Network', + name: 'Akiko Hagio Dulaney', + email: 'akikoinhd@gmail.com', + linkedIn: 'https://www.linkedin.com/in/akiko-hagio-dulaney/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Web/API QA Automation Engineer', + industry: 'Healthtech', + cities: ['Toledo', 'Corpus Christi', 'Atlanta'], + }, + { + company: 'Butterfly Network', + name: 'Crystal (Crys) Lim', + email: 'crystal.joy.lim@gmail.com', + linkedIn: 'https://www.linkedin.com/in/crystallim/', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer II - Cloud Backend', + industry: 'Medical Equipment Manufacturing', + cities: ['Scottsdale'], + }, + { + company: 'C3 AI', + name: 'Shelby Cotton', + email: 'hello@shelbycotton.com', + linkedIn: 'https://linkedin.com/in/shelbycotton', + campus: 'NYC', + cohort: '23', + jobTitle: 'Forward Deployed Engineer', + industry: 'Artificial intelligence', + cities: ['Long Beach'], + }, + { + company: 'C3.AI', + name: 'Dominic Genuario', + email: 'dominicgenuario@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dominic-genuario/', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Forward Deployed Engineer', + industry: 'Artificial Intelligence', + cities: ['Boston', 'Jersey City'], + }, + { + company: 'Cadent', + name: 'William Yoon', + email: 'williamdyoon@gmail.com', + linkedIn: 'https://www.linkedin.com/in/williamdyoon/', + campus: 'LA', + cohort: '42', + jobTitle: 'Front End Engineer', + industry: 'TV Advertising', + cities: ['Omaha', 'Chandler', 'Chula Vista'], + }, + { + company: 'CafeMedia', + name: 'Jasper Narvil', + email: 'jaspernarvil@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jaspernarvil/', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Software Eng II', + industry: 'Software / Tech', + cities: ['Long Beach'], + }, + { + company: 'CAIS Group', + name: 'Anson Avellar', + email: 'anson@ansonavellar.com', + linkedIn: 'https://www.linkedin.com/in/ansonavellar/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Front End Developer (internally Associate)', + industry: 'Fintech', + cities: ['Greensboro', 'Henderson', 'Louisville'], + }, + { + company: 'Canadian Tire Corporation', + name: 'Ansel Andro Santos', + email: 'anselandrosantos@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ansel-santos', + campus: 'NYOI', + cohort: '3', + jobTitle: 'Manager, Advanced Measurement & Analytics', + industry: 'Data/Analytics/Cloud', + cities: ['Portland', 'North Las Vegas', 'Milwaukee', 'Reno'], + }, + { + company: 'Canary Connect', + name: 'Dillon Garrett', + email: 'dillon.garrett.dev@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dillon-garrett/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Front End Engineer', + industry: 'Home Security', + cities: ['Corpus Christi'], + }, + { + company: 'Capital Connect by JP Morgan', + name: 'Peter Baniuszewicz', + email: 'Baniuszewicz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/peter-ba/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Lubbock', 'Austin', 'New Orleans', 'St. Petersburg'], + }, + { + company: 'Capital One', + name: 'Adrian Inza-Cruz', + email: 'ainzacruz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adrian-inza-cruz/', + campus: 'LA', + cohort: '41', + jobTitle: 'Senior Associate Software Engineer', + industry: 'Fintech', + cities: ['Louisville'], + }, + { + company: 'Capital One', + name: 'Alexander Gurfinkel', + email: 'alexgurfinkel@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexandergurfinkel/', + campus: 'PTRI', + cohort: '5', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Nashville', 'Chandler', 'Reno', 'Columbus'], + }, + { + company: 'Capital One', + name: 'Jung Ho Lee', + email: 'alexxleee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jungholee27/', + campus: 'FTRI', + cohort: '1', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: ['Washington', 'Indianapolis', 'Oakland'], + }, + { + company: 'Capital One', + name: 'Allan MacLean', + email: 'allanpmaclean@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Las Vegas'], + }, + { + company: 'Capital One', + name: 'Alvin Ma', + email: 'alvin.ma95@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alvinrayma/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Mesa', 'Tampa', 'Virginia Beach'], + }, + { + company: 'Capital One', + name: 'Alvin Cheng', + email: 'alvincheng505@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alvin-cheng/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: 'Banking', + cities: ['Berlin', 'Bakersfield', 'Tokyo'], + }, + { + company: 'Capital One', + name: 'Allana Ordonez', + email: 'ayaordonez@gmail.com', + linkedIn: 'https://www.linkedin.com/in/allana-ordonez/', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer, Frontend', + industry: 'Banking/Fintech', + cities: ['Albuquerque', 'Raleigh', 'Arlington'], + }, + { + company: 'Capital One', + name: 'Brandon Miller', + email: 'bmiller1881@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brandon-j-miller', + campus: 'FTRI / CTRI', + cohort: '12', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: ['Chicago', 'Louisville'], + }, + { + company: 'Capital One', + name: 'Carson Chen', + email: 'carson.cy.chen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/carsoncychen/', + campus: 'NYC', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'IT', + cities: ['San Antonio', 'Louisville', 'Washington'], + }, + { + company: 'Capital One', + name: 'Carlos Botero-Vargas', + email: 'cbotero-vargas@outlook.com', + linkedIn: 'https://www.linkedin.com/in/carlosb-v/', + campus: 'FTRI', + cohort: '1', + jobTitle: 'Senior Software Engineer', + industry: 'Finance', + cities: ['Long Beach'], + }, + { + company: 'Capital One', + name: 'Jason Clark', + email: 'clarkjasonee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/clarkjasonee/', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: ['Kansas City'], + }, + { + company: 'Capital One', + name: 'Sina Kahrobaei', + email: 'cna.kahrobaei@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sinakahrobaei/', + campus: 'FTRI', + cohort: '6', + jobTitle: 'Senior Software Engineer (Full Stack)', + industry: 'Fintech', + cities: ['Chula Vista', 'Houston', 'Oklahoma City'], + }, + { + company: 'Capital One', + name: 'Christopher cheng', + email: 'Ctpcheng@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ctpcheng/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Senior Software Engineer, Front End', + industry: 'Fintech', + cities: ['Durham', 'Tulsa', 'Irving', 'Chula Vista'], + }, + { + company: 'Capital One', + name: 'Darren Chan', + email: 'darrenc3195@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dbchan/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Full Stack Software Engineer', + industry: 'Fintech', + cities: ['Albuquerque', 'Memphis', 'Miami', 'Omaha'], + }, + { + company: 'Capital One', + name: 'David Zhang', + email: 'davidnyc@umich.edu', + linkedIn: 'https://www.linkedin.com/in/davidnyc/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Fullstack Software Engineer', + industry: 'Finance', + cities: ['Fort Wayne', 'Berlin', 'Columbus'], + }, + { + company: 'Capital One', + name: 'Dani Almaraz', + email: 'dtalmaraz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dani-almaraz/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: ['Fort Wayne', 'El Paso', 'Memphis', 'Stockton'], + }, + { + company: 'Capital One', + name: 'Eugene Lee', + email: 'eugleenyc@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Santa Ana', 'Tulsa'], + }, + { + company: 'Capital One', + name: 'Nel Malikova', + email: 'gunelmalikova@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gmalikova/', + campus: 'NYC', + cohort: '10', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Tucson', 'Mesa', 'Albuquerque'], + }, + { + company: 'Capital One', + name: 'Hemwatie Persaud', + email: 'hemwatiecodes@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hemwatie/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'Banking', + cities: ['Buffalo', 'Norfolk'], + }, + { + company: 'Capital One', + name: 'Ian Madden', + email: 'ianfmadden@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ian-madden/', + campus: 'FTRI / CTRI', + cohort: '7', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: ['Mumbai', 'Tucson'], + }, + { + company: 'Capital One', + name: 'Jae Hyun Ha', + email: 'jaehyunha96@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jae-hyun-ha/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Software Engineer - backend', + industry: 'Fintech', + cities: ['Boston', 'Aurora', 'Scottsdale'], + }, + { + company: 'Capital One', + name: 'James Ma', + email: 'jamesma991@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jamesma1199/', + campus: 'FTRI', + cohort: '7', + jobTitle: 'Senior Associate Software Engineer', + industry: 'Fintech', + cities: ['Seattle'], + }, + { + company: 'Capital One', + name: 'Jennifer Chau', + email: 'jenniferchau512@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jenniferchau512/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Cincinnati', 'Irving', 'Corpus Christi'], + }, + { + company: 'Capital One', + name: 'Jin Oh', + email: 'jintoh613@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jintoh613/', + campus: 'LA', + cohort: '42', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: ['Anaheim', 'Mumbai'], + }, + { + company: 'Capital One', + name: 'John Li', + email: 'jli159@binghamton.edu', + linkedIn: 'https://www.linkedin.com/in/john-li7/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Fullstack Engineer', + industry: 'Banking', + cities: ['Berlin', 'Mesa', 'Paris'], + }, + { + company: 'Capital One', + name: 'Joseph Amos', + email: 'joeamos17@gmail.com', + linkedIn: 'linkedin.com/in/joe-amos', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Senior Associate Software Engineer', + industry: 'Software / Tech', + cities: ['Colorado Springs', 'Tucson', 'Santa Ana'], + }, + { + company: 'Capital One', + name: 'Johnny Chen', + email: 'johncschen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/johnnycschen/', + campus: 'LA', + cohort: '45', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Dallas'], + }, + { + company: 'Capital One', + name: 'Jonathan Chen', + email: 'jonathanchen832@gmail.com', + linkedIn: 'Https://linkedin.com/in/jonathan-hp-chen', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Full Stack Engineer', + industry: 'Fintech', + cities: ['Chesapeake'], + }, + { + company: 'Capital One', + name: 'June Culp', + email: 'juneculp1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/juneculp/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Senior Front End Engineer', + industry: 'Fintech', + cities: ['Phoenix'], + }, + { + company: 'Capital One', + name: 'Kristine Aguda', + email: 'kaguda03@gmail.com', + linkedIn: 'https://www.linkedin.com/kristine-aguda', + campus: 'LA', + cohort: '45', + jobTitle: 'Software Engineer, Full Stack', + industry: 'Fin tech', + cities: ['Paris', 'Irvine'], + }, + { + company: 'Capital One', + name: 'Kasthuri Menon', + email: 'kasthuri.menon1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kasthurimenon/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Senior Software Engineer', + industry: 'Banking/ Fintech', + cities: ['Corpus Christi'], + }, + { + company: 'Capital One', + name: 'Ken Litton', + email: 'kennethclitton@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ken-litton/', + campus: 'LA', + cohort: '43', + jobTitle: 'Backend Engineer, Senior Associate', + industry: 'Finance/Banking', + cities: ['Las Vegas'], + }, + { + company: 'Capital One', + name: 'Kevin Park-Lee', + email: 'kevin38424@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kevin38424/', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: ['Columbus', 'Tampa', 'Laredo'], + }, + { + company: 'Capital One', + name: 'Kellen Levy', + email: 'Kmalcolmlevy@gmail.com', + linkedIn: 'https://www.linked.com/in/kellenmlevy', + campus: 'FTRI', + cohort: '1', + jobTitle: 'Senior Associate Software Engineer', + industry: 'Fintech', + cities: ['San Diego', 'Virginia Beach', 'Washington'], + }, + { + company: 'Capital One', + name: 'Jason Lin', + email: 'lin.jasonp@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jplin/', + campus: 'FTRI', + cohort: '7', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Kansas City', 'Sรฃo Paulo', 'Sacramento', 'Corpus Christi'], + }, + { + company: 'Capital One', + name: 'Luke Cho', + email: 'luke.h.cho@gmail.com', + linkedIn: 'https://www.linkedin.com/in/luke-h-cho/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'Banking', + cities: ['Fort Worth', 'Las Vegas', 'Tucson', 'Norfolk'], + }, + { + company: 'Capital One', + name: 'Philip Kang', + email: 'm.philipkang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/pkmi/', + campus: 'NYC / ECRI', + cohort: '27', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Gilbert', 'Lubbock', 'Minneapolis', 'Sacramento'], + }, + { + company: 'Capital One', + name: 'Matthew Femia', + email: 'mattfemia1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mattfemia/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Las Vegas', 'Albuquerque', 'Baltimore'], + }, + { + company: 'Capital One', + name: 'May Li', + email: 'mayleeli1234@gmail.com', + linkedIn: 'https://www.linkedin.com/in/maysli', + campus: 'LA', + cohort: '44', + jobTitle: 'Fullstack Software Engineer', + industry: 'Fintech', + cities: ['Baltimore', 'Aurora', 'Fort Worth'], + }, + { + company: 'Capital One', + name: 'Matt von der Lippe', + email: 'mvdlippe@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mvdlippe/', + campus: 'FTRI', + cohort: '3', + jobTitle: 'Senior Associate Software Engineer - Backend', + industry: 'Fintech', + cities: ['Tucson', 'Jersey City', 'Philadelphia', 'Omaha'], + }, + { + company: 'Capital One', + name: 'Nathanael Tracy', + email: 'n.tracy@outlook.com', + linkedIn: 'https://www.linkedin.com/in/nathanael-tracy/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Senior Associate Software Engineer', + industry: 'Finance', + cities: ['Irving', 'Tokyo', 'Norfolk'], + }, + { + company: 'Capital One', + name: 'Nathan Yang', + email: 'nathan.yang16@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nathanmyang/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Sr. Associate Software Engineer (Full-Stack)', + industry: 'Business', + cities: ['Omaha', 'San Antonio'], + }, + { + company: 'Capital One', + name: 'Nicholas A Gonzalez', + email: 'nicholas.a.gonz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nicholasagonzalez/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Fullstack Engineer', + industry: 'Fintech', + cities: ['Mumbai', 'Dallas'], + }, + { + company: 'Capital One', + name: 'Patrick Slagle', + email: 'patrickryanslagle@gmail.com', + linkedIn: 'https://www.linkedin.com/in/patrickslagle/', + campus: 'LA', + cohort: '23', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Cleveland', 'Oklahoma City', 'New York'], + }, + { + company: 'Capital One', + name: 'Peter Van', + email: 'peterrvan@gmail.com', + linkedIn: 'https://www.linkedin.com/in/peter-van/', + campus: 'LA', + cohort: '43', + jobTitle: 'Front End Software Engineer', + industry: 'Financial Services', + cities: ['Gilbert', 'Beijing', 'Greensboro', 'Winston-Salem'], + }, + { + company: 'Capital One', + name: 'Rachel Patterson', + email: 'racheljpatterson@gmail.com', + linkedIn: 'https://www.linkedin.com/in/racheljpatterson/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Software Engineer, Full Stack', + industry: 'Banking/Fintech', + cities: ['Austin'], + }, + { + company: 'Capital One', + name: 'Quentin Rousset', + email: 'roussetquent1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/qrousset/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Sr Software Engineer Back-end', + industry: 'Fintech', + cities: ['Beijing', 'New York', 'Dallas', 'San Diego'], + }, + { + company: 'Capital One', + name: 'Ahad Rajput', + email: 'sachem2015@gmail.com', + linkedIn: 'https://www.linkedin.com/in/arajput96/', + campus: 'FTRI', + cohort: '3', + jobTitle: 'Senior Software Engineer', + industry: 'Finance/Fintech', + cities: ['San Diego', 'Tampa', 'Colorado Springs'], + }, + { + company: 'Capital One', + name: 'Sam Portelance', + email: 'sportelance1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sportelance/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Senior Associate Fullstack Engineer', + industry: 'Fintech', + cities: ['Arlington'], + }, + { + company: 'Capital One', + name: 'Stephen Kim', + email: 'stephenkim612@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stephenkim612/', + campus: 'LA', + cohort: '47', + jobTitle: 'Software Engineer, Fullstack', + industry: 'Finance', + cities: ['Virginia Beach'], + }, + { + company: 'Capital One', + name: 'Andrew Talle', + email: 'talle.andrew@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andrewtalle/', + campus: 'FTRI', + cohort: '6', + jobTitle: 'Backend Software Engineer', + industry: 'Fintech', + cities: ['Colorado Springs', 'Irvine'], + }, + { + company: 'Capital One', + name: 'Terrence Granger', + email: 'Terrence.granger@gmail.com', + linkedIn: 'https://www.linkedin.com/in/terrence-granger/', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: ['Denver', 'Mexico City'], + }, + { + company: 'Capital One', + name: 'Thomas Reeder', + email: 'thomaseugenereeder@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thomas-reeder/', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer, Full Stack', + industry: 'Banking', + cities: ['Greensboro', 'Kansas City', 'Toledo'], + }, + { + company: 'Capital One', + name: 'Trevor Leung', + email: 'trevorleeeung@gmail.com', + linkedIn: 'https://www.linkedin.com/in/trevleung/', + campus: 'LA', + cohort: '47', + jobTitle: 'Software Engineer, Full Stack', + industry: 'Finance/Banking', + cities: ['Mexico City', 'Glendale', 'Columbus', 'Omaha'], + }, + { + company: 'Capital One', + name: 'Vivian Wu', + email: 'Vivian.wu.here@gmail.com', + linkedIn: 'https://www.linkedin.com/in/viv-wu', + campus: 'LA', + cohort: '44', + jobTitle: 'Solutions Engineer', + industry: 'Healthcare fintech', + cities: ['San Diego', 'North Las Vegas', 'Austin'], + }, + { + company: 'Capital One', + name: 'Vicki Yang', + email: 'vwyangdev@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vwyang/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Senior Software Engineer', + industry: 'Financial Services', + cities: ['Laredo', 'Albuquerque', 'Columbus'], + }, + { + company: 'Capital One', + name: 'Walker Marsh', + email: 'walkermarsh9@gmail.com', + linkedIn: 'https://www.linkedin.com/in/WalkerVEMarsh/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Software Engineer, Full Stack', + industry: 'Fintech/ Banking', + cities: ['Greensboro', 'Philadelphia', 'Irvine', 'San Diego'], + }, + { + company: 'Capital One', + name: 'Kevin Richardson', + email: 'kevin@karcodes.com', + linkedIn: 'https://www.linkedin.com/in/kevinalexrichardson/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Senior Software Engineer', + industry: 'Other', + cities: ['Washington', 'Milwaukee'], + }, + { + company: 'Capital One', + name: 'Michael Benliyan', + email: 'michaelbenliyan@gmail.com', + linkedIn: 'michaelbenliyan', + campus: 'LA / WCRI', + cohort: '55', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: ['Stockton', 'Glendale', 'Toronto'], + }, + { + company: 'Capital One', + name: 'Nathan Cho', + email: 'nathan.y.cho@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nathanycho', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['London'], + }, + { + company: 'Capital One', + name: 'Martin Ng', + email: 'kamartinng@gmail.com', + linkedIn: 'https://www.linkedin.com/in/martinngsf/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Senior Full Stack Engineer', + industry: 'Fintech', + cities: ['Sacramento', 'Anchorage', 'Fort Worth'], + }, + { + company: 'Capital One', + name: 'Honghao sun', + email: 'sunhonghaoshh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/honghaosunmichael/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Senior Fullstack Engineer', + industry: 'Fintech', + cities: ['Sรฃo Paulo', 'Charlotte'], + }, + { + company: 'Capital One Bank', + name: 'Donald Cross', + email: 'derekcrosslu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/crossderek/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Front End Engineer', + industry: 'Finance', + cities: ['Tokyo', 'Anaheim'], + }, + { + company: 'Capital Rx', + name: 'Htin Linn Aung', + email: 'htinlinnag1993@gmail.com', + linkedIn: 'https://www.linkedin.com/in/htinlinnaung/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Senior Fullstack Software Engineer', + industry: 'Healthcare Tech', + cities: ['Reno', 'New York', 'Los Angeles', 'Phoenix'], + }, + { + company: 'Capital Rx', + name: 'Jin Qin', + email: 'jxq32@case.edu', + linkedIn: 'https://www.linkedin.com/in/jcqin/', + campus: 'FTRI', + cohort: '1', + jobTitle: 'Senior Fullstack Developer', + industry: 'Health Care', + cities: ['Virginia Beach', 'Portland', 'Chula Vista', 'Paris'], + }, + { + company: 'Caraway Health', + name: 'Gwendolyn (Gwen) Phillips', + email: 'gwen.phil@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gwen-phillips/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Full Stack Engineer', + industry: 'Healthcare', + cities: ['Chandler', 'Berlin', 'Aurora', 'Baltimore'], + }, + { + company: 'Carbon Mapper', + name: 'Zach Franz', + email: 'zachafranz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/zacharyfranz/', + campus: 'NYC', + cohort: '4', + jobTitle: 'Software Engineer', + industry: 'Research', + cities: ['Anchorage'], + }, + { + company: 'Care/of', + name: 'Jake Pino', + email: 'Jakepino@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/jake-pino', + campus: 'NYC', + cohort: '30', + jobTitle: 'Senior Software Engineer', + industry: 'Wellness', + cities: ['Minneapolis', 'Irving', 'Los Angeles'], + }, + { + company: 'Care/of', + name: 'Malika Butler', + email: 'missemmbutler@gmail.com', + linkedIn: 'https://www.linkedin.com/in/malikabutler', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Health tech', + cities: ['Denver', 'Memphis', 'Chula Vista'], + }, + { + company: 'CareDox', + name: 'Christine Choi', + email: 'christine.yj.choi@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christineyjchoi/', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Retail', + cities: ['Henderson', 'Chicago', 'Fresno', 'Anchorage'], + }, + { + company: 'Carrot Fertility', + name: 'Heather Barney', + email: 'heather.barney@gmail.com', + linkedIn: 'https://www.linkedin.com/in/heather-barney1/', + campus: 'PTRI', + cohort: '4', + jobTitle: 'Associate Software Engineer', + industry: 'Insurance', + cities: ['Omaha', 'Charlotte'], + }, + { + company: 'Cassian Solutions, Inc.', + name: 'Darin Ngau', + email: 'darin.ngau@gmail.com', + linkedIn: 'https://www.linkedin.com/in/darin-ngau/', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['Lubbock'], + }, + { + company: 'Cast & Crew', + name: 'Tianhao Yao', + email: 'mapleseventh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tianhao-yao-2021826a/', + campus: 'LA', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'Entertainment', + cities: ['Washington', 'Philadelphia', 'Las Vegas'], + }, + { + company: 'cast and crew', + name: 'Sam Selfridge', + email: 'sirclesam@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/sam-selfridge/', + campus: 'LA', + cohort: '28', + jobTitle: 'software engineer', + industry: 'fintech/entertainment', + cities: ['Anchorage', 'Newark', 'Irvine'], + }, + { + company: 'Cast.app', + name: 'Robert Maeda', + email: 'rob.maeda3@gmail.com', + linkedIn: 'https://www.linkedin.com/in/robert-maeda/', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Los Angeles'], + }, + { + company: 'Catchpoint', + name: 'Neyser Zana', + email: 'neyserj.zana@gmail.com', + linkedIn: 'https://www.linkedin.com/in/neyser-zana-860018152/', + campus: 'NYC', + cohort: '7', + jobTitle: 'Software Engineer II', + industry: 'Advertising', + cities: ['Bakersfield', 'Tampa'], + }, + { + company: 'Causebox', + name: 'Grace Kim', + email: 'gracekiim@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gracekiim/', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Engineer', + industry: 'Consumer products', + cities: ['Paris', 'Portland', 'Chicago', 'Cincinnati'], + }, + { + company: 'CB Insights', + name: 'Hazel Na', + email: 'hazel.na3@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hyeseon-na', + campus: 'NYC', + cohort: '27', + jobTitle: 'Software Engineer III - Frontend', + industry: 'business analytics platform', + cities: ['Bakersfield'], + }, + { + company: 'CBTS - CVS', + name: 'Chang Shuen Lee', + email: 'changshuen.lee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/daveelee/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Frontend Software Engineer', + industry: 'Health', + cities: ['Norfolk', 'Cleveland', 'Virginia Beach'], + }, + { + company: 'Cecelia Health', + name: 'Kwadwo Asamoah', + email: 'addoasa94@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kwadwoasamoah', + campus: 'NYC', + cohort: '12', + jobTitle: 'Front End Engineer', + industry: 'Health', + cities: ['Stockton'], + }, + { + company: 'Cedars-Sinai Cancer', + name: 'William Chu', + email: 'Williamchu9@gmail.com', + linkedIn: 'https://www.linkedin.com/in/williamchu9/', + campus: 'LA', + cohort: '49', + jobTitle: 'Software Engineer/Programming Analyst', + industry: 'Healthcare', + cities: ['Minneapolis', 'Jacksonville'], + }, + { + company: 'Cenith Innovations', + name: 'Serena Amos', + email: 'amos.serena17@gmail.com', + linkedIn: 'https://www.linkedin.com/in/serena-amos/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Software Engineer', + industry: 'Aerospace', + cities: ['Seattle', 'Colorado Springs', 'Austin', 'Gilbert'], + }, + { + company: 'Centene', + name: 'Serena Romano', + email: 'serenahromano2000@gmail.com', + linkedIn: 'https://www.linkedin.com/in/srom1/', + campus: 'NYC / ECRI', + cohort: '41', + jobTitle: 'Full Stack Developer', + industry: 'Healthtech/Healthcare', + cities: ['Santa Ana', 'Tulsa'], + }, + { + company: 'Cequint', + name: 'Carol Xia', + email: 'c.xia.98@gmail.com', + linkedIn: 'linkedin.com/in/carolxia2', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Software Development Engineer', + industry: 'Telecommunications', + cities: ['Scottsdale', 'Jersey City'], + }, + { + company: 'Cerebral', + name: 'Irine Kang', + email: 'irine.kang@codesmith.io', + linkedIn: 'https://www.linkedin.com/in/irinekang/', + campus: 'FTRI', + cohort: '6', + jobTitle: 'Full Stack Engineer II', + industry: 'Medicine', + cities: ['Henderson', 'Reno', 'Philadelphia'], + }, + { + company: 'CH Robinson', + name: 'Joseph Cheng', + email: 'josephcheng.y@gmail.com', + linkedIn: 'https://www.linkedin.com/in/josephcheng-y/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Engineer', + industry: 'Logistic', + cities: ['Santa Ana', 'San Francisco'], + }, + { + company: 'Chainalysis', + name: 'Natalia Vargas-Caba', + email: 'nvargas@gm.slc.edu', + linkedIn: 'https://www.linkedin.com/in/nataliavargascaba', + campus: 'NYC', + cohort: '17', + jobTitle: 'Technical Writer', + industry: 'Fintech', + cities: ['Saint Paul', 'Glendale'], + }, + { + company: 'Chainguard', + name: 'Felipe Ocampo', + email: 'felipe.aocampo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ocampofelipe/', + campus: 'LA / WCRI', + cohort: '56', + jobTitle: 'Web Developer', + industry: 'Marketing/Advertising', + cities: ['Nashville', 'Jersey City'], + }, + { + company: 'Chainlink', + name: 'Finley Decker', + email: 'finleydecker@gmail.com', + linkedIn: 'https://www.linkedin.com/in/finleydecker/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Software Engineer', + industry: 'Blockchain/Web3', + cities: ['Mesa', 'Indianapolis', 'Los Angeles'], + }, + { + company: 'Change Healthcare', + name: 'Bruce Wong', + email: 'dbrucewong@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dawong/', + campus: 'LA', + cohort: '29', + jobTitle: 'Senior Software Engineer', + industry: 'Healthcare', + cities: ['Honolulu', 'Toronto', 'Madison'], + }, + { + company: 'Change Healthcare', + name: 'Billy K Lee', + email: 'ucanfindbillie@gmail.com', + linkedIn: 'https://www.linkedin.com/in/billy-k-lee/', + campus: 'LA', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['Arlington', 'Anchorage'], + }, + { + company: 'Change Healthcare.', + name: 'Noah Lee', + email: 'no@hlee.me', + linkedIn: 'https://www.linkedin.com/in/justnoah/', + campus: 'LA', + cohort: '27', + jobTitle: 'Software Engineer.', + industry: 'Healthcare.', + cities: ['Lincoln'], + }, + { + company: 'Chargebacks911', + name: 'Chandni Patel', + email: 'chandnip6@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chandnip6/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Winston-Salem', 'San Francisco', 'Arlington', 'Philadelphia'], + }, + { + company: 'Chargebee Retention', + name: 'Abhi Krishnan', + email: 'krabhishaken@gmail.com', + linkedIn: 'https://www.linkedin.com/in/krabhishaken/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Senior Software Engineer', + industry: 'Subscription Tech', + cities: ['Berlin'], + }, + { + company: 'Chariot', + name: 'Weilan Cui', + email: 'weilanc@gmail.com', + linkedIn: 'https://www.linkedin.com/in/weilan-cui', + campus: 'NYC', + cohort: '24', + jobTitle: 'Founding engineer', + industry: 'Software as a service', + cities: ['Nashville', 'Beijing'], + }, + { + company: 'Charles River', + name: 'Josh Howard', + email: 'JoshHoward.Dev@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joshhowarddev/', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Full Stack Developer', + industry: 'Software / Tech', + cities: ['Sydney', 'Nashville'], + }, + { + company: 'Charles Schwab', + name: 'Troy Witonsky', + email: 'troywitonsky@gmail.com', + linkedIn: 'https://www.linkedin.com/in/troy-witonsky', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Enterprise Engineer', + industry: 'Fintech', + cities: ['Fort Worth', 'Arlington', 'Cincinnati'], + }, + { + company: 'Chattanooga Shooting Supplies', + name: 'Zach Hall', + email: 'zachh85@gmail.com', + linkedIn: 'linkedin.com/in/z-r-hall', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Senior Application Developer', + industry: 'Retail', + cities: ['Beijing', 'Boston', 'Mesa', 'Columbus'], + }, + { + company: 'Cheddar Media', + name: 'David Neuhaus', + email: 'david@neuha.us', + linkedIn: 'https://www.linkedin.com/in/dneuhaus/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Sr Software Engineer', + industry: 'Media / News', + cities: ['Henderson'], + }, + { + company: 'Chegg, Inc', + name: 'Kate Matthews', + email: 'katesmatthews@gmail.com', + linkedIn: 'https://www.linkedin.com/in/katesmatthews/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Software Engineer', + industry: 'EdTech', + cities: ['Minneapolis', 'Cleveland', 'Austin', 'Berlin'], + }, + { + company: 'Chewy', + name: 'Lucy Chi', + email: 'lucycchi@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chilucy/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Tech Consulting, Client is in HealthTech', + cities: ['Lexington', 'Corpus Christi', 'Toledo'], + }, + { + company: 'Chewy', + name: 'Joseph Nagy', + email: 'nagyjoseph29@gmail.com', + linkedIn: 'https://www.linkedin.com/in/josephmnagy/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'E-commerce', + cities: ['Henderson', 'Berlin', 'Irvine'], + }, + { + company: 'Chief', + name: 'Tim Ruszala', + email: 'truszala@gmail.com', + linkedIn: 'https://www.linkedin.com/in/timruszala/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Fullstack Software Engineer', + industry: 'Other', + cities: ['Minneapolis', 'Omaha'], + }, + { + company: 'Chipper Cash', + name: 'Sean Lee', + email: 'lee.sw.sean@gmail.com', + linkedIn: 'https://www.linkedin.com/in/seanleesw', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Mesa'], + }, + { + company: 'Choose Ketamine', + name: 'Eric Komatsu', + email: 'eric@cpgexperience.com', + linkedIn: 'https://www.linkedin.com/in/eric-komatsu/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Lead Engineer', + industry: 'Healthcare', + cities: ['Long Beach', 'Las Vegas'], + }, + { + company: 'Chopra Global', + name: 'Jonathon Gonzalez', + email: 'gonzalezjonathon55@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonathon-gonzalez/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Backend Engineer', + industry: 'Health & Wellness', + cities: ['Kansas City'], + }, + { + company: 'Chopra Global', + name: 'Josh Naso', + email: 'jnaso29@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joshnaso/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Web Developer', + industry: 'Meditation/self-care', + cities: ['Sรฃo Paulo', 'Santa Ana'], + }, + { + company: 'ChromaCode', + name: 'Edwin Menendez', + email: 'edwinjmenendez@gmail.com', + linkedIn: 'https://www.linkedin.com/in/edwinmenendez/', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Bio-Tech', + cities: ['Portland', 'Atlanta'], + }, + { + company: 'Chubb insurance', + name: 'Robert Hernandez', + email: 'Rob23Hernandez@gmail.com', + linkedIn: 'https://www.linkedin.com/in/robhernandeznyc/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: ['Saint Paul', 'Honolulu', 'Wichita', 'New Orleans'], + }, + { + company: 'Cigna', + name: 'JC Fernandez', + email: 'jorgecarlosfern@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jorge-carlos-fernandez/', + campus: 'LA', + cohort: '42', + jobTitle: 'Full Stack Engineer', + industry: 'Health Care', + cities: ['Chandler', 'Washington'], + }, + { + company: 'CIMx', + name: 'Christian Springer', + email: 'christian@christianspringer.com', + linkedIn: 'https://www.linkedin.com/in/christian-springer0/', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Charlotte', 'Arlington', 'Seattle', 'Cleveland'], + }, + { + company: 'CircleCI', + name: 'Ai Mi Bui', + email: 'Aimibui22@gmail.com', + linkedIn: 'https://www.linkedin.com/in/aimibui/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Software Engineer', + industry: 'Software', + cities: ['Cincinnati'], + }, + { + company: 'CircleCI', + name: 'Jeff Chen', + email: 'contact.jeffchen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jalexchen/', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Development Engineer', + industry: 'Tech', + cities: ['Plano', 'Fort Wayne'], + }, + { + company: 'CircleCI', + name: 'Tony Shen', + email: 'tshen815@live.com', + linkedIn: 'https://www.linkedin.com/in/tonyShen815/', + campus: 'LA', + cohort: '35', + jobTitle: 'Software Engineer', + industry: 'Computer Software/Tech', + cities: ['Seattle', 'Laredo', 'Mumbai', 'Garland'], + }, + { + company: 'CircleCI', + name: 'Tyler Sullberg', + email: 'tysullberg@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tyler-sullberg/', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Dev Ops', + cities: ['Seattle', 'Garland'], + }, + { + company: 'Cisco', + name: 'Laura Llano', + email: 'ldllano@gmail.com', + linkedIn: 'https://www.linkedin.com/in/laura-llano', + campus: 'NYC', + cohort: '26', + jobTitle: 'Software Engineering', + industry: 'Software / Tech', + cities: ['Bakersfield', 'Corpus Christi', 'New Orleans'], + }, + { + company: 'Cisco Systems, Inc.', + name: 'Egon Levy', + email: 'egonlevy@gmail.com', + linkedIn: 'https://www.linkedin.com/in/egon-levy-8b62aa1b0/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Senior Software Engineer', + industry: 'Computer Engineering', + cities: ['Tampa', 'Cleveland', 'Portland', 'New York'], + }, + { + company: 'Citi', + name: 'Max Heubel', + email: 'maxhuebel@gmail.com', + linkedIn: 'https://www.linkedin.com/in/max-heubel/', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Sr. Programmer Analyst', + industry: 'Fintech', + cities: ['Anchorage', 'Aurora'], + }, + { + company: 'Citi (Citicorp Credit Services, Inc.)', + name: 'Reland Boyle', + email: 'reland.boyle@gmail.com', + linkedIn: 'https://www.linkedin.com/in/relandboyle/', + campus: 'FTRI', + cohort: '4', + jobTitle: + 'Digital Software Engineer / Senior Analyst - C12, Assistant Vice President of Matrix Reportingโ€‹', + industry: 'Fintech', + cities: ['Oklahoma City', 'Winston-Salem', 'Lexington'], + }, + { + company: 'Cityblock', + name: 'Oluwajomiloju Olaode', + email: 'jojuolaode@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jojuolaode/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Senior Software Engineer', + industry: 'Healthcare', + cities: ['Saint Paul', 'Milwaukee', 'Chicago'], + }, + { + company: 'Civera', + name: 'Hank McGill', + email: 'henrymcgill@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hank-mcgill/', + campus: 'NYOI', + cohort: '4', + jobTitle: 'Data Engineering Fellow', + industry: 'Government', + cities: ['Oakland'], + }, + { + company: 'CivilGrid', + name: 'Jack Moorman', + email: 'johnmoormaniii@gmail.com', + linkedIn: 'www.linkedin.com/in/jack-moorman', + campus: 'FTRI / CTRI', + cohort: '14', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Phoenix', 'Long Beach', 'North Las Vegas'], + }, + { + company: 'Classy', + name: 'Kim Spicer', + email: 'Kspicerny@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kimberleyspicer/', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer', + industry: 'Software', + cities: ['Memphis', 'Toledo', 'Tampa'], + }, + { + company: 'Clear', + name: 'Nate Adams', + email: 'NathanielBAdams@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adamsnathaniel/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Software Engineer', + industry: 'Biometrics / Security services', + cities: ['Fort Wayne'], + }, + { + company: 'Clear Capital', + name: 'Sean Haverstock', + email: 'seanhaverstock@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sean-haverstock/', + campus: 'LA', + cohort: '37', + jobTitle: 'Associate Software Engineer', + industry: 'Fintech, Real Estate', + cities: ['San Antonio', 'Jersey City', 'El Paso'], + }, + { + company: 'Clevyr', + name: 'Michael Watson', + email: 'mdwatson988@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mdwatson988/', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Jr. Software Developer', + industry: 'Software / Tech', + cities: ['Miami', 'Atlanta', 'Nashville'], + }, + { + company: 'Clicktripz', + name: 'Bryan Bart', + email: 'bart.bryan.e@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bryan-bart/', + campus: 'LA', + cohort: '48', + jobTitle: 'Software Engineer', + industry: 'Travel Technology', + cities: ['Plano'], + }, + { + company: 'Clover', + name: 'Michael Trapani', + email: 'mtrapani27@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael-a-trapani/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Web Software Engineer', + industry: 'Software / Tech', + cities: ['Columbus', 'Lexington'], + }, + { + company: 'ClubLabs', + name: 'Natlyn Phomsavanh', + email: 'natlynp@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'Insurance/Travel', + cities: ['London', 'Portland', 'San Francisco', 'Chula Vista'], + }, + { + company: 'ClubLabs', + name: 'Talya Sasek', + email: 'talyaercag@gmail.com', + linkedIn: 'https://www.linkedin.com/in/talyasasek/', + campus: 'LA', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: ['Sacramento', 'Houston'], + }, + { + company: 'CoachEm', + name: 'Matthew Garza', + email: 'mattg614@gmail.com', + linkedIn: 'https://www.linkedin.com/in/garzamatte/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Full Stack Software Engineer', + industry: 'Software / Tech', + cities: ['Cincinnati', 'Mumbai', 'Memphis'], + }, + { + company: 'Coates Group', + name: 'Paul Kim', + email: 'paulkim0209@gmail.com', + linkedIn: 'https://www.linkedin.com/in/paul-kim-37735b217', + campus: 'NYC / ECRI', + cohort: '41', + jobTitle: 'Backend Engineer', + industry: 'Business Tech/Enterprise Tech', + cities: ['Irving', 'Baltimore'], + }, + { + company: 'Cobalt.io', + name: 'Karl Richards', + email: 'krichards175@gmail.com', + linkedIn: 'https://www.linkedin.com/in/krichards175/', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Data Engineer', + industry: 'Security', + cities: ['Tulsa', 'Colorado Springs', 'Santa Ana', 'Atlanta'], + }, + { + company: 'Cobble', + name: 'Matt Peters', + email: 'matt@mpeters.io', + linkedIn: 'https://www.linkedin.com/in/mattgpeters', + campus: 'NYC', + cohort: '16', + jobTitle: 'Frontend Engineer', + industry: 'Leisure, Travel & Tourism', + cities: ['Virginia Beach', 'Sydney', 'Mumbai', 'Cincinnati'], + }, + { + company: 'Code Climate', + name: 'Margaret Ma', + email: 'margaretma00@gmail.com', + linkedIn: 'https://www.linkedin.com/in/margaret-ma/', + campus: 'NYC', + cohort: '3', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Indianapolis', 'North Las Vegas', 'Sรฃo Paulo', 'New Orleans'], + }, + { + company: 'Coder', + name: 'Michael Smith', + email: 'throwawayclover@gmail.com', + linkedIn: 'www.linkedin.com/in/michael-eric-smith', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Software Engineer', + industry: 'Software Solutions/Developer Tools', + cities: ['Mesa', 'Honolulu', 'Columbus'], + }, + { + company: 'Codesmith', + name: 'Terry L. Tilley', + email: 'terryltilley@gmail.com', + linkedIn: 'https://www.linkedin.com/in/t-l-tilley/', + campus: 'LA', + cohort: '44', + jobTitle: 'Instruction Training Manager', + industry: 'Software/Tech', + cities: ['Sรฃo Paulo', 'Stockton', 'Oakland'], + }, + { + company: 'Cofebe', + name: 'Seong Choi', + email: 'choies921003@gmail.com', + linkedIn: 'https://www.linkedin.com/in/seongchoi/', + campus: 'LA', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Computer Software', + cities: ['Berlin', 'Reno', 'El Paso'], + }, + { + company: 'Cognizant', + name: 'Scott Burman', + email: 'Scottburs@gmail.com', + linkedIn: 'https://www.linkedin.com/in/scottburman847/', + campus: 'LA', + cohort: '39', + jobTitle: 'Senior Developer', + industry: 'Technology', + cities: ['Indianapolis', 'Tucson'], + }, + { + company: 'Cohere AI', + name: 'Zahara Aviv ', + email: 'zahara.aviv@gmail.com', + linkedIn: 'https://linkedIn.com/in/zahara-aviv', + campus: 'NYC / ECRI', + cohort: '38', + jobTitle: 'Senior Full Stack Engineer ', + industry: 'Artificial Intelligence', + cities: ['Denver', 'Chicago', 'Fresno', 'Boston'], + }, + { + company: 'CoinCircle', + name: 'Andrew Fuselier', + email: 'theandewlarry@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andrewfuselier/', + campus: 'LA', + cohort: '19', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Fort Worth'], + }, + { + company: 'Collective Health', + name: 'Daryl Foster', + email: 'dmafoster@gmail.com', + linkedIn: 'https://www.linkedin.com/in/darylfosterma/', + campus: 'LA', + cohort: '42', + jobTitle: 'Senior Frontend Engineer', + industry: 'Health Tech (Healthplan Administration for 1000 plus employee companies)', + cities: ['Tokyo', 'Laredo', 'Arlington', 'Mesa'], + }, + { + company: 'Colliers - Contract position through Hays', + name: 'Pauline Nguyen', + email: 'Paulinekpn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/paulineknguyen/', + campus: 'LA / WCRI', + cohort: '55', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: ['Reno', 'Toledo'], + }, + { + company: 'Comcast', + name: 'Brian Chiang', + email: 'brianchiang2008@gmail.com', + linkedIn: 'linkedin.com/in/brian-chiang4', + campus: 'LA / WCRI', + cohort: '48', + jobTitle: 'Software Engineer', + industry: 'Media', + cities: ['El Paso', 'Scottsdale', 'Jacksonville', 'Paris'], + }, + { + company: 'Comcast', + name: 'Darwin Sinchi', + email: 'dsinchi19@gmail.com', + linkedIn: 'https://www.linkedin.com/in/darwin-m-sinchi/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer', + industry: 'TeleCom', + cities: ['Bakersfield', 'Kansas City', 'Winston-Salem', 'Lexington'], + }, + { + company: 'Comcast', + name: 'Matthew Francis', + email: 'mbfrancis7@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mbfrancis7/', + campus: 'NYC', + cohort: '7', + jobTitle: 'Software Developer', + industry: '', + cities: ['Columbus', 'Philadelphia', 'Berlin'], + }, + { + company: 'Comcast', + name: 'Yong-Nicholas Alexander Kim', + email: 'yongnicholaskim@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yongnicholaskim/', + campus: 'NYC', + cohort: '7', + jobTitle: 'Node.js Engineer', + industry: 'Commercial Services', + cities: ['Madison', 'Raleigh', 'Irvine', 'Stockton'], + }, + { + company: 'CommonBond', + name: 'Nathan Bargers', + email: 'nbargers@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nathan-bargers/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Finance', + cities: ['Houston', 'Virginia Beach', 'Saint Paul', 'Wichita'], + }, + { + company: 'Community Attributes Inc', + name: 'Carter Long', + email: 'crlong7@gmail.com', + linkedIn: 'https://www.linkedin.com/in/carterrobertlong/', + campus: 'FTRI / CTRI', + cohort: '15', + jobTitle: 'Full Stack Developer', + industry: 'Consulting', + cities: ['Tampa', 'Austin'], + }, + { + company: 'Compass', + name: 'Casey Walker', + email: 'casey.e.walker@gmail.com', + linkedIn: 'https://www.linkedin.com/in/caseyewalker', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer II', + industry: 'Real Estate', + cities: ['San Diego', 'Tampa', 'Houston'], + }, + { + company: 'Compass', + name: 'Liam McBride', + email: 'liameno16@gmail.com', + linkedIn: 'https://www.linkedin.com/in/liamemcbride/', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: ['Omaha'], + }, + { + company: 'Compass', + name: 'Sierra Swaby', + email: 'Sierra.swaby@gmail.com', + linkedIn: 'https://www.linkedin.com/in/Sierra-swaby', + campus: 'NYC', + cohort: '12', + jobTitle: 'Creative Developer', + industry: 'Real Estate', + cities: ['Sรฃo Paulo', 'Oakland', 'Phoenix', 'Kansas City'], + }, + { + company: 'Compliancy Group', + name: 'Bruno Albero', + email: 'alberobruno@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alberobruno/', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['St. Louis', 'Charlotte', 'Chesapeake', 'Philadelphia'], + }, + { + company: 'Conagra Brands', + name: 'Scott Hallock', + email: 'scott.hallock@gmail.com', + linkedIn: 'https://www.linkedin.com/in/scottjhallock', + campus: 'FTRI / CTRI', + cohort: '16', + jobTitle: 'Senior Software Engineer', + industry: 'Food/Beverage/Restaurant', + cities: ['Oakland', 'Dallas', 'Lexington'], + }, + { + company: 'Concert Health', + name: 'Raubern Totanes', + email: 'rstotanes@g.ucla.edu', + linkedIn: 'https://www.linkedin.com/in/rauberntotanes/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Software Development Engineer', + industry: 'Health Tech', + cities: ['Laredo'], + }, + { + company: 'Contracting for Perspecta Labs via Roc Search via Precision Global Consulting', + name: 'Ben Mizel', + email: 'ben.mizel@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ben-mizel/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Back End Software Engineer', + industry: 'Defense', + cities: ['Sydney', 'Anaheim', 'St. Louis'], + }, + { + company: 'Core Business Technology', + name: 'Jason Hwang', + email: 'hwangja1019@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jason-jh-hwang/', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Associate Engineer', + industry: 'Fintech', + cities: ['Chesapeake', 'Stockton', 'Washington'], + }, + { + company: 'Core Digital Media', + name: 'Edward Greenberg', + email: 'ed.w.greenberg@gmail.com', + linkedIn: 'https://www.linkedin.com/in/edwgreenberg/', + campus: 'NYC', + cohort: '14', + jobTitle: 'Senior Web Developer', + industry: 'Software', + cities: ['Greensboro'], + }, + { + company: 'Cosm', + name: 'Shana Hoehn', + email: 'Shanahoehn@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer', + industry: 'Entertainment technology', + cities: ['New York', 'Garland'], + }, + { + company: 'Costa Farms LLC', + name: 'Ernesto Gonzalez', + email: 'egonzalez442@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ernesto-gonzalez123', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'Agriculture Science', + cities: ['Mesa', 'Irvine'], + }, + { + company: 'CoStar', + name: 'Prasad Pulaguntla', + email: 'prasad.pul@gmail.com', + linkedIn: 'https://www.linkedin.com/in/prasad-pulaguntla/', + campus: 'FTRI', + cohort: '2', + jobTitle: 'Lead Software Engineer', + industry: 'Commercial Real Estate', + cities: ['Jersey City', 'Fort Worth', 'Mumbai', 'Tokyo'], + }, + { + company: 'CoStar Group', + name: 'Alan Richardson', + email: 'alanrichardson723@gmail.com', + linkedIn: '', + campus: 'NYC / ECRI', + cohort: '29', + jobTitle: 'Associate Software Engineer', + industry: 'Real Estate', + cities: ['Toledo', 'Stockton'], + }, + { + company: 'CoStar Group', + name: 'Julian Kang', + email: 'julianswkang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/julianswkang', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Software Engineer II', + industry: 'Real Estate', + cities: ['Aurora', 'Oklahoma City', 'San Diego'], + }, + { + company: 'CoStar Group', + name: 'Kevin Berlanga', + email: 'kvnberlanga@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kevinberlanga/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Software Engineer II', + industry: 'Real Estate', + cities: ['Henderson', 'London'], + }, + { + company: 'CoStar Group', + name: 'Ruzeb Chowdhury', + email: 'ruzeb1996@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ruzebchowdhury/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Frontend Engineer', + industry: 'Commercial Real Estate', + cities: ['Jacksonville', 'Oklahoma City', 'Albuquerque', 'Berlin'], + }, + { + company: 'Coursetune', + name: 'John Maltese', + email: 'john.maltese@gmail.com', + linkedIn: 'https://www.linkedin.com/in/john-maltese/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Senior Software Engineer/Web App Architect', + industry: 'Software / Tech', + cities: ['Washington'], + }, + { + company: 'Courted', + name: 'Sett Hein', + email: 'settnaing199@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sett-hein/', + campus: 'FTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: ['Tulsa', 'Lincoln'], + }, + { + company: 'Cox Automotive', + name: 'Tarik Mokhtech', + email: 'tarik.mokhtech@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tarik-mokhtech/', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Software Engineer II', + industry: 'Automotive', + cities: ['Bakersfield', 'Tulsa', 'Plano'], + }, + { + company: 'Cox Automotive', + name: 'Tarik Mokhtech', + email: 'tarik.mokhtech@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tarik-mokhtech/', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Software Engineer II', + industry: 'Automotive', + cities: ['Lincoln', 'San Antonio', 'San Diego', 'Henderson'], + }, + { + company: 'Credera', + name: 'Nisa Lintakoon', + email: 'nisa.lintakoon@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nisalintakoon', + campus: 'FTRI', + cohort: '1', + jobTitle: 'Technology Solutions Consultant', + industry: 'Consulting', + cities: ['Glendale', 'Colorado Springs', 'Minneapolis', 'St. Louis'], + }, + { + company: 'Crescita', + name: 'Gordon Campbell', + email: 'gordonspencer.c@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '14', + jobTitle: 'Software Engineer', + industry: 'VC', + cities: ['Raleigh'], + }, + { + company: 'Cricket Health', + name: 'Lina Shin', + email: 'rxlina01@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rxlina/', + campus: 'LA', + cohort: '45', + jobTitle: 'Fullstack Software Engineer', + industry: 'Healthcare', + cities: ['Miami', 'Mexico City', 'Mesa'], + }, + { + company: 'Crisis Text Line', + name: 'Chan Choi', + email: 'chanychoi93@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chan-choi/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Software Engineer', + industry: 'Mental Health Services', + cities: ['Boston'], + }, + { + company: 'Crocs', + name: 'Mark Charles Smith', + email: 'markcharlessmith@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mark-charles-smith/', + campus: 'NYC / ECRI', + cohort: '31', + jobTitle: 'Senior React Developer', + industry: 'Consumer Goods: Fashion', + cities: ['Durham', 'Beijing', 'Buffalo', 'Nashville'], + }, + { + company: 'Crossbeam', + name: 'Harrison Cramer', + email: 'Harrisoncramer@gmail.com', + linkedIn: 'https://www.linkedin.com/in/harrison-cramer', + campus: 'NYC', + cohort: '27', + jobTitle: 'Software engineer', + industry: 'SaaS', + cities: ['Dallas', 'San Diego', 'Seattle', 'Atlanta'], + }, + { + company: 'Crossbeam', + name: 'Aryeh Kobrinsky', + email: 'shmaryeh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/aryehkobrinsky/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer', + industry: 'Data Analytics', + cities: ['Plano', 'Philadelphia', 'Riverside', 'Bakersfield'], + }, + { + company: 'Crossover Health', + name: 'Heather Friedman', + email: 'hfried25@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hgfriedman/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Senior Software Engineer', + industry: 'Health', + cities: ['Pittsburgh'], + }, + { + company: 'Crossover Health', + name: 'Taylor Riley Du', + email: 'taylor.r.du@gmail.com', + linkedIn: 'https://www.linkedin.com/in/taylordu/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['Scottsdale'], + }, + { + company: 'Crowdstrike', + name: 'yi bo (eddie) wang', + email: 'eddiewang12345@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eddie-wang2/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Software Developer', + industry: 'Cybersecurity', + cities: ['Arlington', 'Houston', 'Seattle'], + }, + { + company: 'Crowley', + name: 'Alina Gasperino', + email: 'alina.gasperino@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alinagasperino/', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Software Engineer III', + industry: 'Other', + cities: ['Saint Paul', 'Portland', 'Los Angeles'], + }, + { + company: 'Crown Sterling', + name: 'Shirin Davis', + email: 'Shirinlittle94@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '39', + jobTitle: 'Software engineer', + industry: 'Cryptography', + cities: ['Arlington'], + }, + { + company: 'CrunchyBananas', + name: 'Corey Morrison', + email: 'corey.neil.morrison@gmail.com', + linkedIn: 'https://www.linkedin.com/in/corey-morrison', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Consulting', + cities: ['Toronto', 'Santa Ana', 'Detroit', 'Chandler'], + }, + { + company: 'Crunchyroll', + name: 'Brit Lim', + email: 'britsta92@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brit-lim/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Full Stack Software Engineer', + industry: 'Entertainment', + cities: ['Beijing', 'Minneapolis'], + }, + { + company: 'CSI Interfusion', + name: 'Snow Bai', + email: 'xueapp@gmail.com', + linkedIn: 'https://www.linkedin.com/in/xuebaiprofile/', + campus: 'LA / WCRI', + cohort: '55', + jobTitle: 'Fullstack Engineer', + industry: 'Software / Tech', + cities: ['Cincinnati', 'Mesa'], + }, + { + company: 'Culture Biosciences', + name: 'Savitri Beaver', + email: 'savitribeaver@gmail.com', + linkedIn: 'https://www.linkedin.com/in/savitribeaver', + campus: 'FTRI', + cohort: '3', + jobTitle: 'Software Engineer I', + industry: 'Biotech', + cities: ['Bakersfield', 'Long Beach', 'Tulsa', 'Mesa'], + }, + { + company: 'Curia.ai', + name: 'Young Min Lee', + email: 'youngmineeh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/youngminlee-/', + campus: 'LA', + cohort: '48', + jobTitle: 'Senior Software Engineer', + industry: 'Healthcare, AI', + cities: ['Virginia Beach', 'Durham'], + }, + { + company: 'Currency', + name: 'Jason Wong', + email: 'jwaosnogn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jwong1995/', + campus: 'LA', + cohort: '25', + jobTitle: 'Full Stack Developer', + industry: '', + cities: ['Toronto', 'Louisville', 'Winston-Salem'], + }, + { + company: 'Cutover', + name: 'Paul Rhee', + email: 'youjun27@gmail.com', + linkedIn: 'https://www.linkedin.com/in/prheee', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Memphis', 'Raleigh', 'Fort Wayne'], + }, + { + company: 'CVS', + name: 'Mario Eldin', + email: 'marioeldin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/marioeldin/', + campus: 'LA', + cohort: '40', + jobTitle: 'Software Engineer', + industry: 'Health/Insurance', + cities: ['Aurora', 'Irvine'], + }, + { + company: 'CVS', + name: 'Vinh Chau', + email: 'vchau511@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vinh-chau/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Software Engineer', + industry: 'Pharmacy', + cities: ['San Jose'], + }, + { + company: 'CVS Health', + name: 'Connor Bovino', + email: 'connor.bovino@gmail.com', + linkedIn: 'https://www.linkedin.com/in/connor-bovino/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Fullstack Node.js Developer (Software Engineer)', + industry: 'Health', + cities: ['Louisville'], + }, + { + company: 'CVS Health', + name: 'Satyam sheth', + email: 'Snsheth55@gmail.com', + linkedIn: 'https://www.linkedin.com/in/satyamsheth55/', + campus: 'NYC', + cohort: '5', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['Madison'], + }, + { + company: 'CVS Health', + name: 'Windu Sayles', + email: 'Windu.Sayles@gmail.com', + linkedIn: 'https://www.linkedin.com/in/windusayles/', + campus: 'LA', + cohort: '40', + jobTitle: 'Full Stack Node Developer', + industry: 'Health', + cities: ['Long Beach', 'Winston-Salem'], + }, + { + company: 'CVS Health/ Aetna', + name: 'Miklos Kertesz', + email: 'mikloslkertesz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mikl%C3%B3s-kert%C3%A9sz/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Data Engineer - Web UI Engineer', + industry: 'health', + cities: ['Oakland', 'Tucson', 'Saint Paul'], + }, + { + company: 'Cyber Popup', + name: 'Stephen Fitzsimmons', + email: 'smf0211@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stephenfitzsimmons', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Lead Full Stack Engineer', + industry: 'Software / Tech', + cities: ['Oklahoma City', 'Oakland', 'Irvine'], + }, + { + company: 'Cybereason', + name: 'Phoebe Ermert', + email: 'phoebeermert@gmail.com', + linkedIn: 'https://www.linkedin.com/in/phoebe-ermert/', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Full Stack Engineer', + industry: 'Other', + cities: ['Anchorage', 'St. Louis'], + }, + { + company: 'Cyborg, Inc', + name: 'Jim Armbruster', + email: 'JMArmbruster@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jim-armbruster/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Full-Stack Engineer', + industry: 'Computer Software', + cities: ['Louisville'], + }, + { + company: 'Cyderes', + name: 'Giovanni Flores-Lovo', + email: 'giovanniflores.l@gmail.com', + linkedIn: 'https://www.linkedin.com/in/giovanni-flores-lovo-11a288232/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Engineer', + industry: 'Security', + cities: ['Indianapolis', 'Denver'], + }, + { + company: 'Dandy', + name: 'Aram Krakirian', + email: 'aramkrakirian@gmail.com', + linkedIn: 'https://www.linkedin.com/in/aram-krakirian/', + campus: 'LA', + cohort: '47', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Anchorage', 'San Diego', 'Honolulu'], + }, + { + company: 'Data Intelligence', + name: 'Jimmy Mei', + email: 'Jimmy27mei@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jimmymei/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Full Stack Engineer', + industry: 'Tech consultant', + cities: ['Garland', 'Irving', 'Reno', 'Greensboro'], + }, + { + company: 'Data Surge LLC', + name: 'Hang Xu', + email: 'hxu009@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hangxu09/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Data Engineer', + industry: 'Data solutions', + cities: ['Louisville', 'Riverside', 'Reno'], + }, + { + company: 'Databook', + name: 'Julie Wu', + email: 'scorp_only@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/yu-ting-w/', + campus: 'LA', + cohort: '40', + jobTitle: 'Sr Software Engineer', + industry: 'Sales', + cities: ['Lexington', 'Sรฃo Paulo', 'Jacksonville'], + }, + { + company: 'Datacoral', + name: 'Jae Park', + email: 'woojae.jay.park@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Fashion/E-Commerce', + cities: ['Seattle', 'Lubbock', 'Anchorage', 'Santa Ana'], + }, + { + company: 'Datametrics', + name: 'Luis Navarro', + email: 'pozhiin@hotmail.com', + linkedIn: 'https://www.linkedin.com/in/luis-e-navarro/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Frontend Developer', + industry: 'Software / Tech', + cities: ['Riverside', 'Stockton', 'Indianapolis'], + }, + { + company: 'DAZN', + name: 'Leonoor Rinke de Wit', + email: 'lrinkedewit@gmail.com', + linkedIn: 'https://www.linkedin.com/in/leonoorrinkedewit/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Backend Software Engineer', + industry: 'Media', + cities: ['Omaha', 'Indianapolis', 'Orlando'], + }, + { + company: 'DealPath', + name: 'Huy Bui', + email: 'huybui.sj@gmail.com', + linkedIn: 'https://www.linkedin.com/in/huyqbui/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: ['Madison', 'Sacramento'], + }, + { + company: 'Decent Labs', + name: 'Julia Collins', + email: 'Julia.col@protonmail.com', + linkedIn: 'https://www.linkedin.com/in/julia-col', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Full Stack Web3 Engineer', + industry: 'Crypto', + cities: ['Beijing', 'Fresno', 'Milwaukee'], + }, + { + company: 'Deloitte', + name: 'Justin Buckner', + email: 'jwbprofessional@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jbuild/', + campus: 'FTRI', + cohort: '3', + jobTitle: 'Consultant - front end developer', + industry: 'Consulting', + cities: ['Memphis', 'Chesapeake', 'Virginia Beach', 'Irving'], + }, + { + company: 'Delta Air Lines', + name: 'Joal Kim', + email: 'joalkims@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joal-kim', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Airline', + cities: ['Louisville', 'Jacksonville', 'Indianapolis'], + }, + { + company: 'DeltaMath', + name: 'Hannah McDowell', + email: 'hannah.mcdowell1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hannah-lisbeth-mcdowell/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Scottsdale', 'San Antonio', 'Mexico City', 'Omaha'], + }, + { + company: 'DeMark Analytics LLC', + name: 'SEUNGHO BAEK', + email: 'shbaek115@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Engineer', + industry: 'Software & Tech services', + cities: ['Jersey City', 'Fresno', 'Winston-Salem', 'Buffalo'], + }, + { + company: 'Dematic', + name: 'Liang Wen (Rocky) Lin', + email: 'liangwen511@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rocky-lin/', + campus: 'NYC', + cohort: '14', + jobTitle: 'Senior Software Engineer', + industry: 'Manufacturing and Distribution', + cities: ['Durham', 'Fort Wayne', 'Boston', 'Tokyo'], + }, + { + company: 'Dendi Software', + name: 'Ozair Ghulam', + email: 'Ozairghulam4@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ozair-ghulam', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Forward deployed software engineer', + industry: 'Healthcare', + cities: ['Raleigh'], + }, + { + company: 'Denizen', + name: 'Greg Domingue', + email: 'Greg.domingue1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/greg-domingue', + campus: 'LA', + cohort: '23', + jobTitle: 'Full Stack Software Engineer', + industry: 'International Banking', + cities: ['Phoenix', 'Las Vegas', 'Charlotte', 'Austin'], + }, + { + company: 'Density', + name: 'Timothy Weidinger', + email: 'timothy.weidinger@gmail.com', + linkedIn: 'https://www.linkedin.com/in/timweidinger/', + campus: 'NYC / ECRI', + cohort: '41', + jobTitle: 'Senior Full Stack Software Engineer', + industry: 'Data/Analytics/Cloud', + cities: ['Saint Paul', 'Washington', 'Chicago'], + }, + { + company: 'Derivco Sports', + name: 'Denny Temple', + email: 'denny.temple@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dentemple/', + campus: 'NYC', + cohort: '6', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Tulsa', 'Tampa', 'Beijing', 'Anaheim'], + }, + { + company: 'Destination Pet', + name: 'Nicholas Jordan Brush', + email: 'njbrush@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nicholas-j-brush?trk=people-guest_people_search-card', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer', + industry: 'Pet healthcare', + cities: ['North Las Vegas', 'Bakersfield', 'Anaheim'], + }, + { + company: 'DexCare', + name: 'Nhan Ly', + email: 'nhansense1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nhanly/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Healthtech', + cities: ['Houston', 'Scottsdale', 'San Francisco'], + }, + { + company: 'Diamond Web Services', + name: 'Ben Gummelt', + email: 'Camaromelt@gmail.com', + linkedIn: 'https://www.linkedin.com/in/benjamingummelt', + campus: 'LA', + cohort: '20', + jobTitle: 'Full stack software engineer', + industry: '', + cities: ['Henderson', 'Jersey City'], + }, + { + company: 'Diamond Web Services', + name: 'Gregory Palasciano', + email: 'greg.palasciano@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gregory-palasciano/', + campus: 'LA', + cohort: '36', + jobTitle: 'Fullstack Engineer', + industry: 'Entertainment/Consulting', + cities: ['Honolulu', 'Oakland', 'Atlanta'], + }, + { + company: 'Diamond Web Services', + name: 'Jonathan Perera', + email: 'Jon.p@codesmith.io', + linkedIn: 'https://www.linkedin.com/in/japerera/', + campus: 'LA', + cohort: '22', + jobTitle: 'Developer', + industry: '', + cities: ['Irvine'], + }, + { + company: 'Diana Health', + name: 'Jackson Dahl', + email: 'jacksondahl27@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jackson-dahl/', + campus: 'NYOI', + cohort: '4', + jobTitle: 'Full Stack Software Engineer', + industry: 'Healthtech/Healthcare', + cities: ['Fort Wayne', 'Seattle', 'Colorado Springs'], + }, + { + company: "Dick's Sporting Goods", + name: 'Brian Hon', + email: 'brianwhon@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brianwhon/', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Retail', + cities: ['Fresno', 'Lubbock'], + }, + { + company: 'DigiCert', + name: 'James M Espy II', + email: 'jespy2@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jamesespy/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'digital certificates / security', + cities: ['Lexington', 'North Las Vegas', 'Fort Worth'], + }, + { + company: 'Digilock', + name: 'Aaron Yang', + email: 'aaronyang024@gmail.com', + linkedIn: 'https://www.linkedin.com/in/aaronyang24/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Electronic Manufacturing', + cities: ['Sacramento', 'Aurora', 'London'], + }, + { + company: 'Digital Position', + name: 'Joe Beger', + email: 'jtbeger@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jtbeger/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Developer', + industry: 'SEO', + cities: ['Detroit'], + }, + { + company: 'DigitalOcean', + name: 'Natalia Vargas-Caba', + email: 'nvargascaba@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nataliavargascaba', + campus: 'NYC', + cohort: '17', + jobTitle: 'Technical Editor', + industry: 'Cloud service', + cities: ['Toronto', 'Glendale', 'Oakland'], + }, + { + company: 'Discord', + name: 'Jacob Richards', + email: 'jacob.richards33@gmail.com', + linkedIn: 'https://www.linkedin.com/in/palgorhythm/', + campus: 'LA', + cohort: '29', + jobTitle: 'Senior Software Engineer', + industry: 'Tech', + cities: ['New York', 'Corpus Christi', 'Chula Vista', 'Minneapolis'], + }, + { + company: 'Discovery', + name: 'adele calvo', + email: 'adelecalvo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adelecalvo/', + campus: 'NYC', + cohort: '9', + jobTitle: 'Software Engineer I, UI,', + industry: 'Blockchain', + cities: ['Albuquerque'], + }, + { + company: 'Discovery', + name: 'Sarah t Renshaw', + email: 'strenshaw@gmail.com', + linkedIn: 'https://linkedin.com/in/strenshaw/', + campus: 'NYC', + cohort: '2', + jobTitle: 'Software Engineer I', + industry: 'Music', + cities: ['London', 'Pittsburgh', 'Kansas City'], + }, + { + company: 'Disney Streaming', + name: 'Daniel Palumbo', + email: 'Drpalumbo17@gmail.com', + linkedIn: 'https://www.linkedin.com/in/daniel-palumbo-735715137', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Portland'], + }, + { + company: 'Disney Streaming', + name: 'Nat Heller', + email: 'nat.w.heller@gmail.com', + linkedIn: 'https://www.linkedin.com/in/natwheller/', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Entertainment', + cities: ['Long Beach'], + }, + { + company: 'Disney Streaming', + name: 'Frank Ma', + email: 'yurenfrankma@gmail.com', + linkedIn: 'https://www.linkedin.com/in/frankma2', + campus: 'LA', + cohort: '25', + jobTitle: 'Sr Frontend and Fullstack Engineer', + industry: 'Entertainment', + cities: ['Oakland'], + }, + { + company: 'Disney Streaming Services', + name: 'Casey Escovedo', + email: 'caseyjescovedo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/caseyescovedo/', + campus: 'LA', + cohort: '38', + jobTitle: 'Associate Software Engineer', + industry: 'Entertainment', + cities: ['Milwaukee', 'Mesa', 'San Francisco', 'Kansas City'], + }, + { + company: 'Disney Streaming Services', + name: 'Mark Marcelo', + email: 'markmarcelo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/markmarcelo/', + campus: 'LA', + cohort: '12', + jobTitle: 'Lead Software Engineer', + industry: 'Entertainment', + cities: ['Newark'], + }, + { + company: 'Disney Streaming Services', + name: 'Rachel Farley', + email: 'rachyl.farley@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rachel-farley/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Associate Software Engineer', + industry: 'Entertainment', + cities: ['Memphis', 'El Paso', 'Lexington'], + }, + { + company: 'Dispense', + name: 'Kerrianne Crawford', + email: 'kerriannercrawford@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kerriannercrawford/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Senior Software Engineer', + industry: 'Software / Tech', + cities: ['Chicago'], + }, + { + company: 'Distributed Machines, Inc.', + name: 'William LeGate', + email: 'codesmith@legate.me', + linkedIn: 'https://www.linkedin.com/in/william-legate/', + campus: 'LA', + cohort: '21', + jobTitle: 'CEO, Prediqt', + industry: 'Medical', + cities: ['Jacksonville', 'Newark'], + }, + { + company: 'DistroKid', + name: 'Jackson Tong', + email: 'jacksonktong@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jacksonktong/', + campus: 'LA', + cohort: '48', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Sรฃo Paulo', 'New York', 'Colorado Springs'], + }, + { + company: 'DMC Inc', + name: 'Shane Yao', + email: 'Shanexinyao@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shanexinyao/', + campus: 'NYC', + cohort: '3', + jobTitle: 'Senior Robotics Engineer', + industry: 'Crypto Fintech', + cities: ['Minneapolis'], + }, + { + company: 'Dollar Shave Club', + name: 'Vincent Nguyen', + email: 'gvincemail@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vnguyenucla/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer(Contract)', + industry: 'Products', + cities: ['Aurora'], + }, + { + company: 'Dollar Shave Club', + name: 'Ryan Trontz', + email: 'rtrontz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/trontz/', + campus: 'LA', + cohort: '22', + jobTitle: 'Software Engineer, Backend', + industry: '', + cities: ['Norfolk', 'Omaha'], + }, + { + company: 'Domio', + name: 'Neftali Dominguez', + email: 'n.l.dominguez23@gmail.com', + linkedIn: 'https://www.linkedin.com/in/neftalildominguez/', + campus: 'LA', + cohort: '30', + jobTitle: 'Back end engineer', + industry: 'apartment hotels', + cities: ['Santa Ana', 'Lincoln', 'El Paso', 'Los Angeles'], + }, + { + company: 'Doorcast', + name: 'James Bui', + email: 'Jamesmdang.bui@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jamesminhbui/', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Senior Fullstack Engineer', + industry: 'Real Estate', + cities: ['Chula Vista', 'San Francisco', 'Riverside', 'Fresno'], + }, + { + company: 'Doorkee', + name: 'Jarred Jack-Harewood', + email: 'jackhajb@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jarred-jack-harewood/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: ['El Paso', 'Saint Paul'], + }, + { + company: 'Dottid', + name: 'Brian Grosso', + email: 'bgro63@gmail.com', + linkedIn: 'https://www.linkedin.com/in/newarkBG/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech - Real Estate', + cities: ['Garland', 'Washington'], + }, + { + company: 'Dr Squatch', + name: 'Ben Cauffman', + email: 'Benjamincauffman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/benjamin-cauffman', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Full Stack Engineer', + industry: 'Retail', + cities: ['Oklahoma City'], + }, + { + company: 'DraftKings', + name: 'Jonnie Oak', + email: 'jonathan.oak28@gmail.com', + linkedIn: 'https://www.linkedin.com/in/oakj28/', + campus: 'LA', + cohort: '45', + jobTitle: 'Software Engineer', + industry: 'Fantasy Sports', + cities: ['Raleigh', 'North Las Vegas'], + }, + { + company: 'Dray Alliance', + name: 'Hayden Fithyan', + email: 'hayden@fithyan.com', + linkedIn: 'https://www.linkedin.com/in/fithyan/', + campus: 'LA', + cohort: '23', + jobTitle: 'Software Developer II', + industry: '', + cities: ['Glendale', 'Chicago'], + }, + { + company: 'Dray Alliance', + name: 'Joshua Wright', + email: 'jwrightbluj@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joshua-w-86758a121/', + campus: 'LA', + cohort: '23', + jobTitle: 'Software Engineer II', + industry: '', + cities: ['Houston'], + }, + { + company: 'Dreambox Learning', + name: 'Pei-Yun Chu', + email: 'pchu2018@gmail.com', + linkedIn: 'https://www.linkedin.com/in/pei-yun-chu/', + campus: 'PTRI', + cohort: '8', + jobTitle: 'Software Development Engineer - Frontend', + industry: 'Software / Tech', + cities: ['Arlington', 'Memphis', 'Seattle', 'Scottsdale'], + }, + { + company: 'Driven Deliveries', + name: 'Adam Stover', + email: 'adam.jacob.stover@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '31', + jobTitle: 'Software Engineer', + industry: 'Supply Chain & Logistics', + cities: ['Plano', 'Bakersfield', 'St. Petersburg'], + }, + { + company: 'Drizly', + name: 'Diego Vazquez', + email: 'diegovazquezny@gmail.com', + linkedIn: 'https://www.linkedin.com/in/diegovazquezny/', + campus: 'LA', + cohort: '21', + jobTitle: 'Jr. Software Engineer', + industry: 'Food & Beverages', + cities: ['Irvine', 'Sรฃo Paulo', 'Charlotte'], + }, + { + company: 'Dropbox', + name: 'Benjamin Kwak', + email: 'benjamin.h.kwak@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ben-kwak/', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Engineer, Product', + industry: 'Techonology Services', + cities: ['Buffalo', 'Philadelphia', 'Toledo', 'Scottsdale'], + }, + { + company: 'Dropbox', + name: 'Myounghan Chae', + email: 'chaekmh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chaekmh/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Software Engineer', + industry: 'Cloudtech', + cities: ['Berlin', 'Houston', 'Tulsa', 'San Francisco'], + }, + { + company: 'Dropbox', + name: 'Miguel Michel', + email: 'migmic93@gmail.com', + linkedIn: 'https://www.linkedin.com/in/miguel-michel/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Cloud Storage', + cities: ['Fort Worth', 'Sacramento', 'Tucson'], + }, + { + company: 'Dropps', + name: 'Sonny Nguyen', + email: 'sonnynguyen163@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sn163/', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Developer', + industry: 'Sustainable E-Commerce', + cities: ['San Antonio', 'Anaheim', 'Phoenix'], + }, + { + company: 'Dstillery', + name: 'Chai Lee', + email: 'imchai@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chai-lee-5a064649/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Software Engineer', + industry: 'Adtech', + cities: ['New York', 'Honolulu'], + }, + { + company: 'Dun & Bradstreet', + name: 'Jack Hall', + email: 'jackvincenthall@gmail.com', + linkedIn: 'https://linkedin.com/in/jackvhall', + campus: 'PTRI', + cohort: '4', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech, Data Analytics', + cities: ['Miami'], + }, + { + company: 'Dun & Bradstreet', + name: 'Scott Rosen', + email: 'scott.rosen14@gmail.com', + linkedIn: 'https://www.linkedin.com/in/scott-rosen/', + campus: 'LA', + cohort: '17', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Nashville', 'Lubbock'], + }, + { + company: 'dv01', + name: 'Michelle Herrera', + email: 'mesherrera@aol.com', + linkedIn: 'https://www.linkedin.com/in/mherreradev/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Senior Fullstack Engineer I', + industry: 'Fintech', + cities: ['Stockton'], + }, + { + company: 'Dynamic benchmarking', + name: 'andres jaramillo', + email: 'andresj89@live.com', + linkedIn: 'https://www.linkedin.com/in/andresjaramillo210/', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Software engineer', + industry: 'Software / Tech', + cities: ['Riverside', 'Paris', 'Mesa'], + }, + { + company: 'Earnest', + name: 'Kai Rilliet', + email: 'kairilliet@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kairilliet/', + campus: 'LA / WCRI', + cohort: '45', + jobTitle: 'Full Stack Software Engineer', + industry: 'Fintech', + cities: ['Raleigh', 'Austin', 'Los Angeles', 'Portland'], + }, + { + company: 'eBay', + name: 'Ryan Kim', + email: 'ryansukwookim@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tkdryan/', + campus: 'LA', + cohort: '33', + jobTitle: 'Software Engineer', + industry: 'ECcmmerce', + cities: ['Oklahoma City', 'San Francisco'], + }, + { + company: 'EBSCO', + name: 'Sankari Ayyaluru', + email: 'sankariayyaluru@gmail', + linkedIn: 'https://www.linkedin.com/in/sankari-ayyaluru/', + campus: 'LA / WCRI', + cohort: '48', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Reno'], + }, + { + company: 'Econify', + name: 'Jordan Kelly', + email: 'Jordan.w.kelly@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jordan-k-340257140/', + campus: 'NYC', + cohort: '17', + jobTitle: 'Software Engineer', + industry: 'Consulting', + cities: ['El Paso'], + }, + { + company: 'Econify', + name: 'Jovan Kelly', + email: 'fakeEmail2@fakeEmail.com', + linkedIn: 'https://www.linkedin.com/in/jovankelly', + campus: 'NYC', + cohort: '10', + jobTitle: 'Software developer', + industry: 'Media Consulting', + cities: ['Phoenix', 'San Diego', 'Santa Ana', 'Paris'], + }, + { + company: 'Edify Labs', + name: 'Scott McInnis', + email: 'scottalyst@gmail.com', + linkedIn: 'https://www.linkedin.com/in/scott-mcinnis/', + campus: 'LA', + cohort: '32', + jobTitle: 'Nodejs Developer', + industry: 'Customer Service', + cities: ['Wichita', 'Chicago', 'Scottsdale'], + }, + { + company: 'Edify Labs', + name: 'Tony Lei', + email: 'tony.lei003@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tony-lei/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'NodeJS Developer', + industry: 'Software / Tech', + cities: ['Oakland', 'Cleveland', 'Phoenix'], + }, + { + company: 'EDUrain', + name: 'Jacob Jurado', + email: 'jakejurado@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jakejurado', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'chief technology officer', + industry: 'Education/Edtech', + cities: ['Irving'], + }, + { + company: 'Egen', + name: 'Jonathan Escamilla', + email: 'jonathanescamilla1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jon-escamilla/', + campus: 'LA', + cohort: '36', + jobTitle: 'Associate Software Engineer', + industry: 'Tech (Builds solutions for companies - Typically Web Dev)', + cities: ['Gilbert'], + }, + { + company: 'Elder Research', + name: 'Ben Huang', + email: 'Byhuang4100@gmail.com', + linkedIn: 'byhuang4100', + campus: 'FTRI / CTRI', + cohort: '14', + jobTitle: 'Data Engineer', + industry: 'Artificial Intelligence', + cities: ['Chula Vista'], + }, + { + company: 'Elder Research Inc', + name: 'Nick Reardon', + email: 'nickjreardon@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nickjreardon/', + campus: 'PTRI', + cohort: '4', + jobTitle: 'Software Engineer', + industry: 'Consulting', + cities: ['Long Beach'], + }, + { + company: 'Elder Tree', + name: 'Stormi Hashimoto', + email: 'stormikhashimoto@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stormikph/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Software Engineer', + industry: 'NA', + cities: ['Laredo', 'Sรฃo Paulo', 'Boston'], + }, + { + company: 'eLink Design', + name: 'Tristan Krause', + email: 'yukiokrause@gmail.com', + linkedIn: 'https://www.linkedin.com/in/krausetristan/', + campus: 'FTRI / CTRI', + cohort: '17', + jobTitle: 'Web / Mobile Developer', + industry: 'Design', + cities: ['Jacksonville', 'Baltimore', 'New Orleans'], + }, + { + company: 'Elk Capital Markets', + name: 'Manuel Castro', + email: 'manuel.a.castro1992@gmail.com', + linkedIn: 'https://www.linkedin.com/in/manuel-castro-42466273', + campus: 'NYC', + cohort: '5', + jobTitle: 'Software Engineer', + industry: 'Finance', + cities: ['Tampa', 'Chicago'], + }, + { + company: 'Ellie Mae', + name: 'Karen Pinilla', + email: 'pinillakaren11@gmail.com', + linkedIn: 'https://www.linkedin.com/in/karen-pinilla/', + campus: 'LA', + cohort: '28', + jobTitle: 'Software Engineer I', + industry: 'Computer Software', + cities: ['Winston-Salem', 'Sydney'], + }, + { + company: 'eMoney', + name: 'Kenneth Hui', + email: 'kennethhui121@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kenneth-hui/', + campus: 'LA', + cohort: '45', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Los Angeles', 'Santa Ana', 'Beijing', 'Buffalo'], + }, + { + company: 'Empire Flippers', + name: 'Rob Wise', + email: 'robertwise1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/robertwise/', + campus: 'PTRI', + cohort: 'Beta', + jobTitle: 'Frontend Engineer', + industry: 'eCommerce', + cities: ['San Francisco', 'Kansas City', 'New Orleans', 'Virginia Beach'], + }, + { + company: 'Empowered Buildings', + name: 'Kevin Dooley', + email: 'kjdooley1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kjdooley1/', + campus: 'NYOI', + cohort: '1', + jobTitle: 'Full-Stack Software Developer', + industry: 'Real Estate', + cities: ['Tampa', 'Nashville', 'New Orleans'], + }, + { + company: 'Enlighten', + name: 'Jonathon Garber', + email: 'jgarber2675@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jgarber2675/', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Front End Software Engineer', + industry: 'Security', + cities: ['Stockton', 'Madison', 'Boston', 'Fresno'], + }, + { + company: 'Envoy', + name: 'Graham Pierce', + email: 'grahampiercenyc@gmail.com', + linkedIn: 'https://www.linkedin.com/in/graham-a-pierce/', + campus: 'FTRI', + cohort: '3', + jobTitle: 'Software Engineer', + industry: 'Workplace tech', + cities: ['Plano'], + }, + { + company: 'Enzo Digital', + name: 'Johnny Bryan', + email: 'johnnybryan21@gmail.com', + linkedIn: 'https://www.linkedin.com/in/johnnybryan/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Backend/API Engineer', + industry: 'Fintech', + cities: ['Oakland'], + }, + { + company: 'EolianVR', + name: 'Henry Halse', + email: 'henryhalse@gmail.com', + linkedIn: 'https://www.linkedin.com/in/henryhalse/', + campus: 'PTRI', + cohort: '8', + jobTitle: 'Backend Engineer', + industry: 'Other', + cities: ['Newark', 'Greensboro'], + }, + { + company: 'Epic Games', + name: 'Nahuel Arjona Tennerini', + email: 'nahuel.arjona.93@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nahuelarjonadev/', + campus: 'LA', + cohort: '29', + jobTitle: 'Game Systems Programmer', + industry: 'Video Games', + cities: ['Riverside', 'Philadelphia', 'Saint Paul'], + }, + { + company: 'Epic Games (Fortnite)', + name: 'Taylor T Morgan', + email: 'TaylorMorganTTM@gmail.com', + linkedIn: 'https://www.linkedin.com/in/taylormor77la/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Developer', + industry: 'Gaming', + cities: ['Arlington', 'San Antonio', 'Indianapolis'], + }, + { + company: 'Eqengineered', + name: 'William Ramirez', + email: 'willramirez630@gmail.com', + linkedIn: 'https://www.linkedin.com/in/willramirez528/', + campus: 'LA', + cohort: '43', + jobTitle: 'Senior Technical Consultant', + industry: 'Software Consulting Firm', + cities: ['Cleveland', 'San Diego', 'Bakersfield', 'Lexington'], + }, + { + company: 'Erdos Miller', + name: 'Michael Collier Grant', + email: 'DragonZSG@aol.com', + linkedIn: 'https://www.linkedin.com/in/michaelcolliergrant/', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Firmware Developer', + industry: 'Other', + cities: ['Chandler'], + }, + { + company: 'Ernst & Young', + name: 'Eduardo Maรญllo Conesa', + email: 'eduardomaillo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eduardomaillo/', + campus: 'NYC', + cohort: '2', + jobTitle: 'Senior Software Engineer', + industry: '', + cities: ['Paris', 'Santa Ana', 'Saint Paul'], + }, + { + company: 'Esri', + name: 'Gilbert Ramirez', + email: 'contemporarygil@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gillramirez/', + campus: 'LA', + cohort: '29', + jobTitle: 'Software Development Engineer', + industry: 'GIS', + cities: ['Fresno', 'St. Louis', 'Denver'], + }, + { + company: 'ESRI', + name: 'Evan Hilton', + email: 'ehilton1537@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ehilton1537/', + campus: 'LA', + cohort: '33', + jobTitle: 'Software Development Engineer', + industry: 'Geographic Information System', + cities: ['San Antonio'], + }, + { + company: 'Esri', + name: 'Elena Conn', + email: 'elenakconn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/elena-conn/', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineering Intern (end date 10/29/21)', + industry: 'Geospatial Engineering (GIS)', + cities: ['New York', 'Buffalo', 'Bakersfield'], + }, + { + company: 'Ethic', + name: 'Andrea Li', + email: 'andrea.li8341@hotmail.com', + linkedIn: 'https://www.linkedin.com/in/andrea-gli/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Frontend Engineer', + industry: 'Fintech', + cities: ['Garland'], + }, + { + company: 'Ethos Life', + name: 'Alan Lee', + email: 'lee.alan.c12@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alanlee12/', + campus: 'LA', + cohort: '35', + jobTitle: 'Software Engineer, Test', + industry: 'Insurance', + cities: ['Mesa'], + }, + { + company: 'etsy', + name: 'alfonso zamarripa', + email: 'alfonsozam93@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alfonsozamarripa/', + campus: 'NYC', + cohort: '31', + jobTitle: 'software engineer', + industry: 'Retail', + cities: ['Berlin', 'Seattle'], + }, + { + company: 'Even', + name: 'Claudio Santos', + email: 'claudiohbsantos@gmail.com', + linkedIn: 'https://www.linkedin.com/in/claudio-santos-5b8134207/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer I', + industry: 'Fintech', + cities: ['Fort Worth', 'Philadelphia'], + }, + { + company: 'Even Financial', + name: 'Andy Wong', + email: 'andywong.ny@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andywongdev', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Irving', 'Norfolk'], + }, + { + company: 'Eventbrite', + name: 'Ashley Pean', + email: 'pean.ashley@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ashley-pean/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Software Engineer II', + industry: 'Entertainment', + cities: ['Honolulu', 'Raleigh', 'Fort Worth'], + }, + { + company: 'EventHound', + name: 'Greg Shamalta', + email: 'gregshamalta@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/gregory-shamalta/', + campus: 'LA', + cohort: '23', + jobTitle: 'Founder', + industry: '', + cities: ['Chula Vista', 'Orlando'], + }, + { + company: 'everest', + name: 'Will Hack', + email: 'will.j.hack@gmail.com', + linkedIn: 'https://www.linkedin.com/in/willhack/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Full-Stack Engineer (Sr)', + industry: 'UX Design', + cities: ['Paris', 'Phoenix'], + }, + { + company: 'Everest, AI', + name: 'Jordan Long', + email: 'jlong4159@gmail.com', + linkedIn: 'www.linkedin.com/jlongtlw', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Winston-Salem'], + }, + { + company: 'Everfi', + name: 'Jacob Ory', + email: 'jacobtory@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/jacobory/', + campus: 'LA', + cohort: '30', + jobTitle: 'Frontend Engineer', + industry: 'Ed Tech', + cities: ['Irvine', 'Chicago', 'San Antonio', 'San Francisco'], + }, + { + company: 'Exabeam', + name: 'Lisa Tian', + email: 'lisatian8@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lisatian-/', + campus: 'LA / WCRI', + cohort: '53', + jobTitle: 'Software Engineer - UI', + industry: 'Security', + cities: ['Cincinnati', 'Orlando', 'Honolulu'], + }, + { + company: 'Exodus Movement Inc', + name: 'Lanre Makinde', + email: 'lanre.developer@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lanre-mark/', + campus: 'PTRI', + cohort: 'Beta', + jobTitle: 'Sr. Software Engineer', + industry: 'blockchain/cryptocurrency', + cities: ['Dallas'], + }, + { + company: 'Expedia Group', + name: 'Tang', + email: 'eytang8@gmail.com', + linkedIn: 'https://www.linkedin.com/mwlite/in/ttaanngg', + campus: 'LA', + cohort: '27', + jobTitle: 'Software Development Engineer II', + industry: 'Travel', + cities: ['Henderson', 'Boston', 'Louisville'], + }, + { + company: 'Extend', + name: 'Diane Wu', + email: 'dianewudw@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '14', + jobTitle: 'Backend Software Engineer', + industry: 'Insurance', + cities: ['Sacramento', 'Baltimore', 'Riverside'], + }, + { + company: 'Extensis', + name: 'Daniel Chang', + email: 'dkchang213@gmail.com', + linkedIn: 'https://www.linkedin.com/in/daniel-k-chang/', + campus: 'LA / WCRI', + cohort: '56', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['San Francisco', 'El Paso', 'Newark'], + }, + { + company: 'Facebook', + name: 'Ben Ray', + email: 'benray887@gmail.com', + linkedIn: 'https://www.linkedin.com/in/benray-/', + campus: 'NYC', + cohort: '14', + jobTitle: 'Rotational Engineer', + industry: 'Tech', + cities: ['Stockton', 'Sydney', 'Charlotte'], + }, + { + company: 'Facebook', + name: 'Jason Lee', + email: 'jason.dongyul.lee@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '42', + jobTitle: 'Full-Stack Engineer', + industry: 'Social Media/Networking', + cities: ['Las Vegas', 'St. Louis', 'London'], + }, + { + company: 'Facebook', + name: 'Jonathan Calvo Ramirez', + email: 'jono.calvo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonathan-calvo', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer', + industry: 'Social Media', + cities: ['New York', 'Mumbai', 'Las Vegas'], + }, + { + company: 'Facebook', + name: 'Rajeeb Banstola', + email: 'rajeebanstola@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rajeebbanstola/', + campus: 'NYC', + cohort: '14', + jobTitle: 'Fullstack Developer - Contract', + industry: 'Internet', + cities: ['New York', 'Chandler', 'Santa Ana'], + }, + { + company: 'Facebook', + name: 'Ricardo Cortez', + email: 'ricardodgers12@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rcortez88/', + campus: 'LA', + cohort: '44', + jobTitle: 'Full Stack Software Engineer', + industry: 'Social Media', + cities: ['Fort Worth', 'Tucson', 'Beijing'], + }, + { + company: 'Facebook', + name: 'Sean Grace', + email: 'seanmgrace@gmail.com', + linkedIn: 'https://www.linkedin.com/in/seanmgrace/', + campus: 'LA', + cohort: '44', + jobTitle: 'Full Stack Software Engineer', + industry: 'Tech', + cities: ['Lexington', 'Washington', 'Sรฃo Paulo', 'Chandler'], + }, + { + company: 'Facebook', + name: 'Shreshth Srivastava', + email: 'shreshthsrivastava2@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shreshth-srivastava/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Software Engineer', + industry: 'Social Media', + cities: ['Wichita', 'Fort Wayne', 'Newark', 'Corpus Christi'], + }, + { + company: 'Facebook (Meta)', + name: 'Eric Wilding', + email: 'eric.d.wilding@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eric-wilding/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Full Stack Software Engineer', + industry: 'Social Media', + cities: ['Orlando', 'Stockton'], + }, + { + company: 'Facebook (via K2Partners)', + name: 'Thanh Doan', + email: 'tdoan35@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ty-thanh-doan/', + campus: 'LA', + cohort: '42', + jobTitle: 'Full-Stack Engineer', + industry: 'Social Media', + cities: ['Las Vegas', 'San Antonio'], + }, + { + company: 'Facebook via TEK System', + name: 'Yoko Kawamoto', + email: 'yokokawamoto@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yokokawamoto/', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer', + industry: 'Social Media', + cities: ['Greensboro', 'Seattle', 'Austin', 'New Orleans'], + }, + { + company: 'Facebook/K2', + name: 'Charles Gutwirth', + email: 'charlesgutwirth@gmail.com', + linkedIn: 'https://www.linkedin.com/in/charles-gutwirth/', + campus: 'LA', + cohort: '45', + jobTitle: 'Full Stack Engineer', + industry: 'Social media', + cities: ['Detroit'], + }, + { + company: 'FactSet', + name: 'Ethan Sclarsky', + email: 'esclarsky@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ethan-sclarsky/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: ['Scottsdale', 'Las Vegas', 'Plano', 'Honolulu'], + }, + { + company: 'Fanatics, Inc', + name: 'Jonah Eidman', + email: 'jonah.eidman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonah-eidman/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Software Engineer II', + industry: 'Entertainment', + cities: ['Dallas', 'Glendale'], + }, + { + company: 'Fandango', + name: 'Ha-Rry Kim', + email: 'hari9497@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hkim9497/', + campus: 'LA', + cohort: '24', + jobTitle: 'Software Engineer I', + industry: '', + cities: ['Corpus Christi', 'Jacksonville', 'Saint Paul', 'Portland'], + }, + { + company: 'Fandango', + name: 'Ken Lam', + email: 'heiyeunl@gmail.com', + linkedIn: 'https://www.linkedin.com/in/heiyeunl/', + campus: 'LA', + cohort: '27', + jobTitle: 'Front end software engineer', + industry: 'Entertainment?', + cities: ['Denver', 'Santa Ana'], + }, + { + company: 'FanDuel', + name: 'Alex Haile', + email: 'ahaile923@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ahaile923/', + campus: 'FTRI', + cohort: '7', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Riverside', 'Plano'], + }, + { + company: 'Fanfix', + name: 'Dylan Hensel', + email: 'dylan@hensel.com', + linkedIn: 'https://www.linkedin.com/in/dylanhensel/', + campus: 'LA', + cohort: '38', + jobTitle: 'Senior Software Engineer', + industry: 'Entertainment', + cities: ['Chicago', 'Colorado Springs', 'Omaha'], + }, + { + company: 'Fanfix', + name: 'Jonathan Mavandi', + email: 'jonathan.mavandi@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jon-mavandi/', + campus: 'LA', + cohort: '26', + jobTitle: 'Software Engineer', + industry: 'Entertainment', + cities: ['Tokyo', 'Anchorage'], + }, + { + company: 'Fannie Mae', + name: 'Abhi Gullapalli', + email: 'aubertlone@gmail.com', + linkedIn: 'https://www.linkedin.com/in/viswagullapalli/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Cloud Engineer', + industry: 'Cloud Services', + cities: ['Kansas City', 'Reno'], + }, + { + company: 'Fantoons', + name: 'Hank McGill', + email: 'henrymcgill@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hank-mcgill/', + campus: 'NYOI', + cohort: '4', + jobTitle: 'Founding Full-Stack Software Engineer', + industry: 'Entertainment', + cities: ['Toledo'], + }, + { + company: 'Farm to People', + name: 'Katharine Angelopoulos', + email: 'katharine.angelopoulos@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kangelopoulos/', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Full Stack Developer', + industry: 'Restaurant, Food, and Beverage', + cities: ['London', 'Saint Paul', 'Paris', 'New Orleans'], + }, + { + company: 'Fashionphile', + name: 'Amy Yee', + email: 'amyyee1998@gmail.com', + linkedIn: 'https://www.linkedin.com/in/amyyee98/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'E-commerce', + cities: ['Omaha', 'Buffalo'], + }, + { + company: 'Fashionphile', + name: 'Gabriela Jardim Aquino', + email: 'gjardimaquino@gmail.com', + linkedIn: 'https://www.linkedin.com/in/aquinojardim/', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Fashion', + cities: ['San Jose', 'Saint Paul', 'Gilbert', 'Charlotte'], + }, + { + company: 'Fastly', + name: 'Angelo Chengcuenca', + email: 'amchengcuenca@gmail.com', + linkedIn: 'https://www.linkedin.com/in/angelotmchengcuenca/', + campus: 'FTRI / CTRI', + cohort: '14', + jobTitle: 'Software Development Engineer', + industry: 'Software / Tech', + cities: ['Riverside', 'Austin'], + }, + { + company: 'Fearless (fearless.tech)', + name: 'Faraz Akhtar', + email: 'fa8338@gmail.com', + linkedIn: 'https://www.linkedin.com/in/faraz22/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer II', + industry: 'Government Consulting', + cities: ['Virginia Beach', 'Aurora'], + }, + { + company: 'Feather', + name: 'Bryan Fong', + email: 'bryanfong.dev@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bryanfong-dev/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Software Engineer', + industry: 'Furniture Subscription', + cities: ['Detroit'], + }, + { + company: 'FeatureBase', + name: 'David Kagan', + email: 'David.kagan07@gmail.com', + linkedIn: 'David-kagan07', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Jr Software Engineer, Cloud', + industry: 'Cloud Services', + cities: ['Philadelphia'], + }, + { + company: 'Federal Reserve Bank', + name: 'Robert McHalffey', + email: 'R.mchalffey@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '26', + jobTitle: 'Software Engineer 4', + industry: 'Government/Banking', + cities: ['New York'], + }, + { + company: 'Federal Reserve Bank of NY', + name: 'Anthony Lee', + email: 'anthonylee2797@gmail.com', + linkedIn: 'https://www.linkedin.com/in/anthony-lee27/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Frontend Developer', + industry: 'Finance', + cities: ['St. Louis', 'Mexico City'], + }, + { + company: 'Ferguson', + name: 'Eric Hagen', + email: 'ericjameshagen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hagenforhire/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Pittsburgh'], + }, + { + company: 'Ferguson Enterprises', + name: 'James Ferrell', + email: 'James David.ferrell@ferguson.com', + linkedIn: 'https://www.linkedin.com/in/james-d-ferrell/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'E-commerce', + cities: ['Pittsburgh', 'Oakland'], + }, + { + company: 'Fictiv', + name: 'Cherie Zhong', + email: 'cheriemzhong@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cheriezhong/', + campus: 'LA', + cohort: '35', + jobTitle: 'Software Engineer', + industry: 'Manufacturing', + cities: ['Saint Paul', 'St. Louis', 'Henderson', 'Pittsburgh'], + }, + { + company: 'Fidelity Investments', + name: 'Eli Muir', + email: 'eli.t.muir@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eli-muir/', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Full Stack Engineer', + industry: 'Fintech', + cities: ['Toronto'], + }, + { + company: 'Fidelity Investments', + name: 'Christopher Jamali', + email: 'jamalichristopher@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chrisjamali/', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Senior Mobile Developer', + industry: 'Fintech', + cities: ['Irving', 'Gilbert', 'Honolulu'], + }, + { + company: 'Fin', + name: 'Matt Jiang', + email: 'mattljiang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mattljiang/', + campus: 'LA', + cohort: '40', + jobTitle: 'Product Engineer', + industry: 'SaaS', + cities: ['Long Beach', 'Los Angeles', 'Chandler', 'San Antonio'], + }, + { + company: 'Find my past', + name: 'Mitesh patel', + email: 'mit06@hotmail.com', + linkedIn: 'https://www.linkedin.com/in/miteshvjpatel', + campus: 'NYC', + cohort: '21', + jobTitle: 'Mid software engineer', + industry: 'genealogy', + cities: ['Madison'], + }, + { + company: 'FinDox Inc.', + name: 'Jhonatan Passalacqua', + email: 'jpascas@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jpassalacqua', + campus: 'PTRI', + cohort: 'Beta', + jobTitle: 'Senior Software Architect', + industry: 'Fintech', + cities: ['Fort Worth', 'Seattle', 'Santa Ana', 'Detroit'], + }, + { + company: 'Finra', + name: 'Yankun Song', + email: 'yankun.L.song@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yankunsong/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Data engineer', + industry: 'Fintech', + cities: ['Fresno', 'Albuquerque'], + }, + { + company: 'First American ', + name: 'Jen Lee', + email: 'jenleesj@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jenleesj', + campus: 'FTRI / CTRI', + cohort: '14', + jobTitle: 'Front End Software Engineer', + industry: 'Insurance', + cities: ['New Orleans'], + }, + { + company: 'First Help Financial', + name: 'Juliana Morrelli', + email: 'julianamorrelli28@gmail.com', + linkedIn: 'https://www.linkedin.com/in/julianamorrelli/', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Frontend Software Engineer', + industry: 'Fintech', + cities: ['Plano', 'Stockton'], + }, + { + company: 'First Republic Bank', + name: 'Nikhil Massand', + email: 'nikhil.massand@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nikhil-massand/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Banking', + cities: ['Los Angeles', 'Long Beach'], + }, + { + company: 'First Resonance', + name: 'Maxwell Reed', + email: 'mxjreed@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mxjrd/', + campus: 'LA', + cohort: '41', + jobTitle: 'Frontend Engineer', + industry: 'Manufacturing', + cities: ['Portland'], + }, + { + company: 'Fiserv', + name: 'Ozi Oztourk', + email: 'oztrkgzhn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ozi-oztourk', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Gilbert', 'Bakersfield', 'Tucson', 'Phoenix'], + }, + { + company: 'Fiserv.', + name: 'eddy zapata', + email: 'ecz001@live.com', + linkedIn: 'https://www.linkedin.com/in/eddy-zapata/', + campus: 'FTRI', + cohort: '2', + jobTitle: 'Software Development Engineer IV', + industry: 'Fintech', + cities: ['Louisville', 'Lexington', 'Berlin', 'Mesa'], + }, + { + company: 'Fitch Solutions', + name: 'Duane McFarlane', + email: 'Duanemcfarlane@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/duanemcfarlane/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'Entertainment', + cities: ['Arlington', 'Gilbert'], + }, + { + company: 'Flash Scientific Technology', + name: 'William Howard', + email: 'willh91@msn.com', + linkedIn: 'https://www.linkedin.com/in/wph91/', + campus: 'LA', + cohort: '21', + jobTitle: 'Lead Software Engineer', + industry: 'Meteorology/Environmental Science', + cities: ['Madison', 'Philadelphia', 'Irvine', 'Colorado Springs'], + }, + { + company: 'Flashpoint', + name: 'Robbie Gottlieb', + email: 'robbiegottlieb.dev@gmail.com', + linkedIn: 'https://www.linkedin.com/in/robbie-gottlieb/', + campus: 'NYC / ECRI', + cohort: '1', + jobTitle: 'Security', + industry: 'Software / Tech', + cities: ['Newark'], + }, + { + company: 'Flexion', + name: 'Cameron Walls', + email: 'cwalls45@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cameron-walls45/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Full Stack Software Developer', + industry: 'Consulting, the project I am working on is in the Education industry', + cities: ['Madison', 'London'], + }, + { + company: 'FlightAware', + name: 'Robert Yang', + email: 'rob.yang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/robwyang/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Senior Software Engineer', + industry: 'Aviation', + cities: ['Baltimore', 'Laredo'], + }, + { + company: 'Flock Safety', + name: 'Rocio Infante', + email: 'Rocio.infante417@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Public Safety', + cities: ['El Paso', 'Anaheim'], + }, + { + company: 'Flock Safety', + name: 'Hunter Shaw', + email: 'hu.shaw215@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hshaw215/', + campus: 'NYC / ECRI', + cohort: '40', + jobTitle: 'Software Engineer II', + industry: 'Other', + cities: ['Chicago', 'Corpus Christi', 'Lincoln', 'Colorado Springs'], + }, + { + company: 'FloQast', + name: 'Stephanie Chiu', + email: 'stephaniekchiu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stephanie-chiu-/', + campus: 'LA', + cohort: '32', + jobTitle: 'Software Engineer I', + industry: 'Fintech', + cities: ['Las Vegas', 'San Francisco', 'Tokyo', 'Miami'], + }, + { + company: 'FloQast', + name: 'Khaile Tran', + email: 'khailetran94@gmail.com', + linkedIn: 'linkedin.com/in/khailetran', + campus: 'FTRI / CTRI', + cohort: '16', + jobTitle: 'Software Engineer I', + industry: 'Other', + cities: ['Minneapolis', 'Tampa', 'Beijing', 'Oakland'], + }, + { + company: 'Florence Healthcare', + name: 'Bill Greco', + email: 'wgreco13@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bill-greco/', + campus: 'NYC', + cohort: '32', + jobTitle: 'Senior Full Stack Software Engineer', + industry: 'Healthcare', + cities: ['Lubbock'], + }, + { + company: 'FNS, Inc.', + name: 'Shinhae Na', + email: 'shinhaena@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shinhaena-stella/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Software Engineer', + industry: 'Retail', + cities: ['Mumbai', 'Denver', 'Memphis'], + }, + { + company: 'Foodpanda', + name: 'Josh Kim', + email: 'joshua940308@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sungtae/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Frontend software engineer', + industry: 'Food tech', + cities: ['Portland', 'Corpus Christi', 'Kansas City'], + }, + { + company: 'Forma', + name: 'Jay Lim', + email: 'jaymlim93@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jaylim218/', + campus: 'LA', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'Human Resources', + cities: ['Wichita', 'Bakersfield', 'Seattle', 'Tulsa'], + }, + { + company: 'Formation', + name: 'Stella Liao', + email: 'stellaliao.01@gmail.com', + linkedIn: 'https://www.linkedin.com/feed/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Engineer', + industry: 'Education', + cities: ['Indianapolis', 'Mexico City', 'Oakland'], + }, + { + company: 'Formidable', + name: 'Juan Hart', + email: 'juanhart1@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '12', + jobTitle: 'Software Engineer III', + industry: 'Consultancy', + cities: ['San Antonio'], + }, + { + company: 'Fortress Information Security', + name: 'Keith Lisiak', + email: 'bball.coach@icloud.com', + linkedIn: 'https://www.linkedin.com/in/keithlisiak/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: 'Security', + cities: ['Chula Vista', 'Garland', 'Toronto'], + }, + { + company: 'Forward Financing', + name: 'Shanon Lee', + email: 'shanonlee541@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shanonlee541/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Associate Software Engineer', + industry: 'Fintech', + cities: ['Madison'], + }, + { + company: 'Forward Slope Inc.', + name: 'Ilija Bibic', + email: 'ibibic2@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ilija-bibic', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Charlotte', 'Madison'], + }, + { + company: 'Forward Slope, Inc.', + name: 'Thang Thai', + email: 'thaithangt@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thang-thai/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Santa Ana'], + }, + { + company: 'FourKites', + name: 'Anthony Stanislaus', + email: 'anthonystanislaus1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/anthonystanislaus/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Oklahoma City'], + }, + { + company: 'Fox Corporation', + name: 'James Edwards', + email: 'digitalmediapro7@gmail.com', + linkedIn: 'https://www.linkedin.com/in/digital9/', + campus: 'LA', + cohort: '19', + jobTitle: 'Senior Full Stack Software Engineer (Frontend)', + industry: '', + cities: ['Mexico City'], + }, + { + company: 'Freewheel', + name: 'Hubert Lin', + email: 'huberthflin@gmail.com', + linkedIn: 'https://www.linkedin.com/feed/', + campus: 'NYC', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'IT', + cities: ['Oakland', 'Beijing', 'Cincinnati', 'Boston'], + }, + { + company: 'Frontier Communications', + name: 'Josh Cretella', + email: 'jcrtll@protonmail.com', + linkedIn: 'https://www.linkedin.com/in/josh-cretella', + campus: 'LA', + cohort: '45', + jobTitle: 'Backend Developer', + industry: 'Telecoms', + cities: ['Charlotte', 'Mumbai', 'Columbus'], + }, + { + company: 'Frozen Dessert Supplies', + name: 'Ethan McRae', + email: 'ethanmcrae0@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ethanmcrae/', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Senior Developer', + industry: 'Consumer Goods: Retail (general)', + cities: ['Stockton', 'El Paso', 'Tokyo', 'Sacramento'], + }, + { + company: 'Fulcrum', + name: 'Valerie Huang', + email: 'valeriewhuang@gmail.com', + linkedIn: 'https://www.linkedin.com/mwlite/in/valeriewhuang', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Software Engineer', + industry: 'Manufacturing', + cities: ['Berlin', 'Durham', 'Scottsdale'], + }, + { + company: 'fulcrumpro', + name: 'Nicole Du', + email: 'Nicoleduu@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Developer', + industry: 'Manufacturing', + cities: ['Honolulu', 'Tokyo', 'Seattle', 'Houston'], + }, + { + company: 'Full In Partners', + name: 'Kevin HoEun Lee', + email: 'kevin.hoeun.lee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kevinhoeunlee/', + campus: 'LA', + cohort: '50', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Sydney'], + }, + { + company: 'Funimation', + name: 'Justin Joseph', + email: 'jrayjoseph@gmail.com', + linkedIn: 'https://www.linkedin.com/mwlite/in/jrayjoseph', + campus: 'LA', + cohort: '32', + jobTitle: 'Backend Software Engineer', + industry: 'Entertainment', + cities: ['Charlotte', 'Mexico City', 'New York'], + }, + { + company: 'Fusion Medical Staffing', + name: 'Kelsey Graner', + email: 'Kels.graner@gmail.com', + linkedIn: 'LinkedIn.com/Kelsey-graner', + campus: 'LA / WCRI', + cohort: '54', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['Indianapolis', 'Raleigh', 'Las Vegas'], + }, + { + company: 'Fusion Medical Staffing', + name: 'Krisette Odegard', + email: 'kmodeg@gmail.com', + linkedIn: 'https://linkedin.com/in/krisette', + campus: 'LA / WCRI', + cohort: '53', + jobTitle: 'Software Developer', + industry: 'Healthcare', + cities: ['Laredo', 'Corpus Christi', 'Miami'], + }, + { + company: 'Futuralis', + name: 'Rex Osariemen', + email: 'rexosariemen@gmail.com', + linkedIn: 'https://linkedin/in/rexosariemen', + campus: 'NYC', + cohort: '15', + jobTitle: 'Software Engineer', + industry: 'IT', + cities: ['Arlington'], + }, + { + company: 'G-Research', + name: 'Sigele Nickerson-Adams', + email: 'sigeleakosua@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sigelenickersonadams', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Software Engineer', + industry: 'Research', + cities: ['Cincinnati', 'Tampa', 'Colorado Springs', 'Honolulu'], + }, + { + company: 'Gaia Platform', + name: 'Jorge Fernandez', + email: 'jcferna1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jorge-carlos-fernandez', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Developer', + industry: 'Automation', + cities: ['Henderson', 'Pittsburgh', 'Honolulu'], + }, + { + company: 'Gallery Media Group', + name: 'Kristiina Eelnurme', + email: 'kristiina.eelnurme@gmail.com', + linkedIn: 'https://www.linkedin.com/in/Kristiina-eelnurme/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Frontend Engineer', + industry: 'Media', + cities: ['Plano'], + }, + { + company: 'GameOn Technology', + name: 'Jeffrey Kim', + email: 'kimjeffrey96@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jeffrey-kim-79810112a/', + campus: 'NYC', + cohort: '6', + jobTitle: 'Frontend, Software Engineer', + industry: 'Tech', + cities: ['Cincinnati', 'Saint Paul', 'Tucson'], + }, + { + company: 'GAN Integrity', + name: 'Erik Larsen', + email: 'erik.w.larsen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/erik-w-larsen', + campus: 'NYC', + cohort: '3', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Berlin'], + }, + { + company: 'Gap', + name: 'Khayal Alasgarov', + email: 'alaskarov.khayal@gmail.com', + linkedIn: 'https://www.linkedin.com/in/khayal-alasgaroff', + campus: 'LA', + cohort: '44', + jobTitle: 'React/JavaScript Developer', + industry: 'Clothing', + cities: ['Irvine', 'Los Angeles'], + }, + { + company: 'Gap', + name: 'Wesley Appleget', + email: 'wesget182@gmail.com', + linkedIn: 'https://www.linkedin.com/in/wesley-appleget/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Full Stack Engineer', + industry: 'Retail', + cities: ['Plano', 'Portland', 'Milwaukee', 'Glendale'], + }, + { + company: 'Gap Inc.', + name: 'Cole Redfearn', + email: 'coleredfearn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/coleredfearn/', + campus: 'LA', + cohort: '41', + jobTitle: 'UI Developer', + industry: 'Clothing/E-Commerce', + cities: ['New York', 'Corpus Christi', 'London', 'Reno'], + }, + { + company: 'Gap inc.', + name: 'Nayan Parmar', + email: 'nparmar84@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nparmar1', + campus: 'LA', + cohort: '44', + jobTitle: 'Software Engineer', + industry: 'eCommerce', + cities: ['Detroit'], + }, + { + company: 'Gartner-L2', + name: 'Jonathan P Schwartz', + email: 'jonathanschwartz30@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonathanpschwartz/', + campus: 'NYC', + cohort: '7', + jobTitle: 'Front-End Lead', + industry: '', + cities: ['Kansas City', 'Garland', 'Seattle'], + }, + { + company: 'Gatheround', + name: 'Andrew Widjaja', + email: 'andrewdwidjaja@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andrew-widjaja/', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Phoenix', 'Jacksonville', 'Milwaukee', 'Nashville'], + }, + { + company: 'GE Aviation', + name: 'Nathan Richardson', + email: 'nathan.richardson94@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nathan-p-richardson/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Fullstack Developer', + industry: 'Aerospace', + cities: ['Washington', 'Bakersfield', 'Minneapolis'], + }, + { + company: 'Geneoscopy', + name: 'Steve Schlepphorst', + email: 'steve.schlepphorst@gmail.com', + linkedIn: 'https://www.linkedin.com/in/schlepphorst/', + campus: 'FTRI / CTRI', + cohort: '17', + jobTitle: 'Senior Software Engineer I', + industry: 'Healthtech/Healthcare', + cities: ['Jersey City', 'Toledo', 'Scottsdale'], + }, + { + company: 'Genomic Prediction', + name: 'Rebecca Miller', + email: 'beemills@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rebeccamiller19/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Frontend Engineer', + industry: 'Biotech', + cities: ['Glendale'], + }, + { + company: 'Ghostery', + name: 'Leury Rodriguez', + email: 'leuryr07@gmail.com', + linkedIn: 'https://www.linkedin.com/in/leury-rodriguez/', + campus: 'NYC', + cohort: '8', + jobTitle: 'Jr. Software Engineer', + industry: 'Internet', + cities: ['Riverside', 'Irving', 'Columbus', 'Norfolk'], + }, + { + company: 'Giglabs, Inc.', + name: 'Tyler Pohn', + email: 'tylerpohn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tylerpohn/', + campus: 'FTRI / CTRI', + cohort: '5', + jobTitle: 'Software Engineer', + industry: 'Blockchain/Web3', + cities: ['Lubbock', 'Memphis'], + }, + { + company: 'Giglabs.io', + name: 'Daniel Nguyen', + email: 'dannguyen1191@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/danlord-nguyen/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Software Engineer (Node)', + industry: 'Blockchain, Media and Entertainment', + cities: ['Tulsa', 'Phoenix'], + }, + { + company: 'Github', + name: 'Sabrina Goldfarb', + email: 's.goldfarb2@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sabrinagoldfarb/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Software Engineer II', + industry: 'Tech', + cities: ['Arlington', 'Riverside'], + }, + { + company: 'glimpse.ai', + name: 'Ryan Lim', + email: 'ryanlim301@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ryanlim3/', + campus: 'LA', + cohort: '46', + jobTitle: 'Full Stack Engineer', + industry: 'Information Technology', + cities: ['Durham', 'Memphis', 'Albuquerque'], + }, + { + company: 'Gluware', + name: 'Abid Ramay', + email: 'abidramay@gmail.com', + linkedIn: 'https://www.linkedin.com/in/aramay/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Fort Worth', 'San Antonio'], + }, + { + company: 'GOAT Group', + name: 'Jordan Deleon', + email: 'jordanscottdeleon@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jordan-deleon/', + campus: 'LA', + cohort: '35', + jobTitle: 'Software Engineer II', + industry: 'E-commerce', + cities: ['San Antonio', 'Mexico City'], + }, + { + company: 'GoBolt', + name: 'Kyo Ku', + email: 'kyosan.ku34@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kyosan-ku/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Software Developer II', + industry: 'Logistics Technology', + cities: ['Paris', 'Washington'], + }, + { + company: 'GoDaddy', + name: 'Joyce Lo', + email: 'joycemanning@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joycelo/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer', + industry: 'Internet', + cities: ['Santa Ana', 'Honolulu', 'San Jose'], + }, + { + company: 'GoDaddy', + name: 'Kristina Wallen', + email: 'KristinaKWallen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kristina-wallen/', + campus: 'LA', + cohort: '46', + jobTitle: 'Senior Software Development Engineer', + industry: 'Software / Tech', + cities: ['North Las Vegas'], + }, + { + company: 'GoFundMe', + name: 'Colin McCarthy', + email: 'colinhmccarthy@gmail.com', + linkedIn: 'https://www.linkedin.com/in/colinhmccarthy/', + campus: 'LA', + cohort: '21', + jobTitle: 'Software Engineer', + industry: 'Crowdfunding/fundraising', + cities: ['Anaheim', 'Toledo'], + }, + { + company: 'Golden Hippo', + name: 'Mauricio Castro', + email: 'mauricio.a.castro7@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mauricioacastro/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Senior Full Stack Developer', + industry: 'Advertising', + cities: ['St. Petersburg', 'Toronto', 'Saint Paul', 'Houston'], + }, + { + company: 'Goldman Sachs', + name: 'Alfredo Alpizar', + email: 'fredo.alpizar@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alfredoalpizar/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Associate Software Engineer', + industry: 'Finance / Banking', + cities: ['Virginia Beach', 'Anchorage'], + }, + { + company: 'Goldman Sachs', + name: 'Peyton Pedersen', + email: 'pedersen0819@gmail.com', + linkedIn: 'https://www.linkedin.com/in/peyton-pedersen/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Analyst', + industry: 'Fintech', + cities: ['Pittsburgh', 'Phoenix', 'Beijing', 'Fort Wayne'], + }, + { + company: 'Goldman Sachs', + name: 'Stephen Budarz', + email: 'sbudarz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/steve-budarz/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Vice President', + industry: 'Finance', + cities: ['Portland'], + }, + { + company: 'Goldschmitt & Associates', + name: 'Kirk Shin', + email: 'shin.kirk@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kirkshin/', + campus: 'LA', + cohort: '31', + jobTitle: 'Frontend Developer', + industry: 'Government contractor', + cities: ['San Jose', 'Atlanta'], + }, + { + company: 'GoodPup', + name: 'Eric Wells', + email: 'epiqu1n@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ewells2275/', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Baltimore', 'Mumbai', 'Arlington'], + }, + { + company: 'GoodRX', + name: 'Byron Jay Inocencio', + email: 'jay.byron@gmail.com', + linkedIn: 'https://www.linkedin.com/in/binocencio/', + campus: 'LA', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'Healthcare, Med-tech, Telemedecine', + cities: ['Tulsa', 'Cleveland', 'Kansas City', 'Chesapeake'], + }, + { + company: 'GoodRx', + name: 'Mike Richards', + email: 'mike@madebymtr.com', + linkedIn: 'https://www.linkedin.com/in/madebymtr/', + campus: 'LA', + cohort: '11', + jobTitle: 'Senior Frontend Engineer', + industry: 'Healthcare', + cities: ['Virginia Beach', 'Portland', 'Washington'], + }, + { + company: 'Google', + name: 'Andie Ritter', + email: 'A.k.rittr@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andieritter/', + campus: 'LA', + cohort: '34', + jobTitle: 'Software Engineer', + industry: 'Business Intelligence', + cities: ['San Antonio', 'Aurora'], + }, + { + company: 'Google', + name: 'Ben Hawley', + email: 'benhawley0@gmail.com', + linkedIn: 'https://www.linkedin.com/in/benchawley/', + campus: 'NYC', + cohort: '4', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Berlin', 'Irving', 'Colorado Springs'], + }, + { + company: 'Google', + name: 'Brett Beekley', + email: 'brettbeekley@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brettbeekley/', + campus: 'LA', + cohort: '15', + jobTitle: 'Senior Software Engineer, Site Reliability Engineering', + industry: 'Technology', + cities: ['Reno', 'Cincinnati', 'Nashville'], + }, + { + company: 'Google', + name: 'Cameron Greer', + email: 'camgreer01@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cameron-greer/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer - Level 3', + industry: 'Technology', + cities: ['El Paso', 'Norfolk', 'Anaheim'], + }, + { + company: 'Google', + name: 'Christian Padilla', + email: 'christianepadilla@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christianedwardpadilla/', + campus: 'NYC', + cohort: '10', + jobTitle: 'Software Engineer (L3)', + industry: 'Frontend Mobile Development', + cities: ['Denver', 'Garland', 'Reno', 'St. Petersburg'], + }, + { + company: 'Google', + name: 'Crystal Pederson', + email: 'crystalpederson88@gmail.com', + linkedIn: 'https://www.linkedin.com/in/crystalpederson/', + campus: 'PTRI', + cohort: '5', + jobTitle: 'Software Engineer (Frontend III)', + industry: 'Software / Tech', + cities: ['Sydney'], + }, + { + company: 'Google', + name: 'Edwin Lee', + email: 'edjl1289@gmail.com', + linkedIn: 'https://www.linkedin.com/in/edwinlee89/', + campus: 'LA', + cohort: '45', + jobTitle: 'Software Engineer', + industry: 'Cloud Service', + cities: ['St. Petersburg', 'Cincinnati'], + }, + { + company: 'Google', + name: 'Ian Geckeler', + email: 'ikcgeckeler@gmail.com', + linkedIn: 'https://www.linkedin.com/in/iangeckeler/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Software Engineer', + industry: 'Adtech', + cities: ['Kansas City', 'St. Louis', 'Mesa'], + }, + { + company: 'Google', + name: 'Jeff Kang', + email: 'jeffreyrkang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jeffreyrkang/', + campus: 'LA', + cohort: '21', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Winston-Salem', 'San Jose'], + }, + { + company: 'Google', + name: 'Jenae Pennie', + email: 'jenaepen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jenae-pennie/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Software Engineer', + industry: 'Tech', + cities: ['Fresno', 'San Diego'], + }, + { + company: 'Google', + name: 'Jonathan Tam', + email: 'jktam336@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jktam/', + campus: 'LA', + cohort: '47', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Tokyo', 'San Antonio', 'Philadelphia'], + }, + { + company: 'Google', + name: 'Miguel Gonzalez', + email: 'MiguelGonzalez@alumni.upenn.edu', + linkedIn: 'https://www.linkedin.com/in/miguel-gonzalez96/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Software Engineer - Search Engine Privacy', + industry: 'Tech', + cities: ['Mexico City'], + }, + { + company: 'Google', + name: 'Nak Young Kim', + email: 'nydkim@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nak-young-kim/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer', + industry: 'Social Media', + cities: ['Henderson', 'Denver'], + }, + { + company: 'Google', + name: 'Patrick Liu', + email: 'patrickliu.hhs@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ptrkl/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Software Engineer', + industry: 'Tech', + cities: ['Lubbock'], + }, + { + company: 'Google', + name: 'Swetha Kunda', + email: 'swethakunda@gmail.com', + linkedIn: 'https://www.linkedin.com/in/swethakunda/', + campus: 'FTRI', + cohort: '6', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Gilbert', 'Tucson'], + }, + { + company: 'Google', + name: 'Cecilia Yena Choi', + email: 'yenachoi95@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ceciliayenachoi/', + campus: 'LA', + cohort: '34', + jobTitle: 'Software Engineer', + industry: 'Tech', + cities: ['Chandler'], + }, + { + company: 'Google Cloud', + name: 'Sarah Heacock', + email: 'sarahheacock03@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sarah-heacock/', + campus: 'NYC', + cohort: '2', + jobTitle: 'Software Engineer', + industry: 'Tech', + cities: ['Glendale', 'Louisville'], + }, + { + company: 'GoSite', + name: 'Alexander Young', + email: 'youngalexj00@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexander-young-7aabb7122/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Full Stack Engineer', + industry: 'Digital Services', + cities: ['Fort Wayne', 'Aurora'], + }, + { + company: 'Govini', + name: 'Aaron Bumanglag', + email: 'aaron.k.bumanglag@gmail.com', + linkedIn: 'https://linkedin.com/akbuma', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Decision Science', + cities: ['Irving', 'Chandler', 'North Las Vegas', 'Honolulu'], + }, + { + company: 'Grailed', + name: 'Eugene Chen', + email: 'chen.eugene19@gmail.com', + linkedIn: 'https://www.linkedin.com/in/canopeia', + campus: 'NYC', + cohort: '8', + jobTitle: 'Junior Software Engineer', + industry: 'HR tech', + cities: ['Miami', 'Arlington', 'Jacksonville', 'Atlanta'], + }, + { + company: 'Grailed', + name: 'Danni Ballena', + email: 'danni.ballena@gmail.com', + linkedIn: 'https://www.linkedin.com/in/danni-ballena/', + campus: 'LA', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Entertainment', + cities: ['Sรฃo Paulo', 'Fresno', 'Colorado Springs'], + }, + { + company: 'Granular', + name: 'Charles Ryu', + email: 'charles.ryu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/charcharryu', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer', + industry: 'Agriculture Tech', + cities: ['Toledo', 'Wichita'], + }, + { + company: 'Graphika', + name: 'Sam Carlile', + email: 'sam@samkc.me', + linkedIn: 'https://LinkedIn.com/in/samkcarlile', + campus: 'NYC', + cohort: '21', + jobTitle: 'Full Stack Engineer', + industry: 'Research & Analytics', + cities: ['Saint Paul', 'Plano', 'St. Louis', 'Reno'], + }, + { + company: 'Green Street Advisors', + name: 'Joshua Nordstrom', + email: 'joshua@jdnordstrom.com', + linkedIn: 'https://www.linkedin.com/in/jdnordy/', + campus: 'LA', + cohort: '34', + jobTitle: 'Technology Associate', + industry: 'Real Estate', + cities: ['Norfolk', 'Jacksonville', 'Denver', 'Arlington'], + }, + { + company: 'Greenphire', + name: 'Nicholas Krug', + email: 'n.e.krug@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nicholas-e-krug', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Application Developer III', + industry: 'Healthcare', + cities: ['Las Vegas'], + }, + { + company: 'Greentech Financial Solutions', + name: 'Justin Hicks', + email: 'justinhickswork@gmail.com', + linkedIn: 'https://www.linkedin.com/in/justinlhicks/', + campus: 'LA / WCRI', + cohort: '48', + jobTitle: 'Engineer', + industry: 'Fintech', + cities: ['Miami', 'Cincinnati', 'Nashville', 'Henderson'], + }, + { + company: 'Grid Networks', + name: 'Trine Medina', + email: 'trinemedina@gmail.com', + linkedIn: 'www.linkedin.com/in/trinemedina', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Lincoln', 'Tulsa', 'Arlington', 'Mexico City'], + }, + { + company: 'Gro Intelligence', + name: 'Damian Lim', + email: 'limd96@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lim-damian/', + campus: 'FTRI', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Agriculture Science', + cities: ['Miami'], + }, + { + company: 'Gro-Intelligence', + name: 'David Bernstein', + email: 'dxbernstein@gmail.com', + linkedIn: 'https://www.linkedin.com/in/davidsamuelbernstein/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Software Engineer (API/Data Visualization Team)', + industry: 'Agricultural Analytics', + cities: ['Dallas', 'El Paso', 'Paris'], + }, + { + company: 'Groove Jones', + name: 'Kristopher Sorensen', + email: 'Krismsorensen@gmail.com', + linkedIn: 'Linkedin/in/kris-sorensen', + campus: 'FTRI / CTRI', + cohort: '7', + jobTitle: 'Senior WebXR Developer', + industry: 'Other', + cities: ['St. Louis', 'Gilbert', 'Washington'], + }, + { + company: 'GuideMe Solutions', + name: 'David Nadler', + email: 'Davidnadler9637@gmail.com', + linkedIn: 'https://www.linkedin.com/in/davenads/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Technical Consultant', + industry: 'Digital Adoption Software', + cities: ['Dallas'], + }, + { + company: 'Gulfstream', + name: 'Chris Hicks', + email: 'chrishicks430@gmail.com', + linkedIn: 'Www.LinkedIn.com/in/chrishicks430', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Application Developer', + industry: 'Aerospace', + cities: ['Toronto', 'Memphis'], + }, + { + company: 'Guy Carpenter', + name: 'Dennis Palomo', + email: 'dennispalomo@icloud.com', + linkedIn: 'https://linkedin.com/in/dennispalomo', + campus: 'NYC', + cohort: '27', + jobTitle: 'Developer', + industry: 'Insurance', + cities: ['Detroit', 'Oklahoma City', 'Lincoln'], + }, + { + company: 'HackerOne', + name: 'Catherine Chiu', + email: 'catherinechiuu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cchiu2/', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Engineer II', + industry: 'Cybersecurity', + cities: ['Seattle', 'Colorado Springs', 'Honolulu', 'Arlington'], + }, + { + company: 'HackerOne', + name: 'Serena Kuo', + email: 'hello@serenakuo.com', + linkedIn: 'https://www.linkedin.com/in/serenakuo/', + campus: 'LA', + cohort: '37', + jobTitle: 'Senior Software Engineer', + industry: 'Computer Safety', + cities: ['Virginia Beach', 'Lexington', 'St. Petersburg'], + }, + { + company: 'HackerOne', + name: 'Haejin Jo', + email: 'swe.haejin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/haejinjo', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Engineer', + industry: 'Cybersecurity', + cities: ['Chicago'], + }, + { + company: 'Halo Investing', + name: 'Gareth Leake', + email: 'gfleake@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gareth-leake/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'Finance', + cities: ['Irvine', 'Anchorage'], + }, + { + company: 'Handshake', + name: 'Annie Shin', + email: 'annieshin51@gmail.com', + linkedIn: 'https://www.linkedin.com/in/annieshinn/', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer, Platform Services Team', + industry: 'Recruiting', + cities: ['Durham'], + }, + { + company: 'Handshake', + name: 'Chase Benjamin', + email: 'chasebenjamin6@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chase-benjamin300/', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Growth Engineer', + industry: 'Other', + cities: ['Milwaukee', 'Sydney'], + }, + { + company: 'Handshake', + name: 'Jeffrey Lu', + email: 'hi@jeffreyclu.com', + linkedIn: 'https://www.linkedin.com/in/jeffreyclu/', + campus: 'PTRI', + cohort: 'Beta', + jobTitle: 'Software Engineer', + industry: 'Education', + cities: ['Anchorage', 'Corpus Christi', 'Orlando'], + }, + { + company: 'Handshake', + name: 'Joel Pratt', + email: 'pratt.joel@gmail.com', + linkedIn: 'https://www.linkedin.com/in/pratt-joel/', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Riverside', 'Kansas City'], + }, + { + company: 'Harbor.ai', + name: 'Rodolfo Guzman', + email: 'Rodolfoguzman147@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rodolfo-guzman-59249594/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Full Stack Developer', + industry: 'Insurance Tech', + cities: ['Mexico City', 'Louisville'], + }, + { + company: 'Harness Inc.', + name: 'Tran McFarland Nguyen', + email: 'tranviolin@me.com', + linkedIn: 'https://www.linkedin.com/in/tranmcfarlandnguyen/', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Senior UX Designer', + industry: 'Software / Tech', + cities: ['Scottsdale', 'Wichita'], + }, + { + company: 'Harver', + name: 'Will Robinson', + email: 'wrobinson91@gmail.com', + linkedIn: 'https://www.linkedin.com/in/wrobinson91', + campus: 'NYC', + cohort: '12', + jobTitle: 'Fullstack Engineer', + industry: 'Applicant Tracking Software', + cities: ['Columbus', 'Austin'], + }, + { + company: 'Health Note', + name: 'Jeffrey Sul', + email: 'jeffsul97@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jsul/', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer', + industry: 'Medical CRM', + cities: ['San Francisco', 'Chandler', 'Detroit', 'Arlington'], + }, + { + company: 'Healthcare.com', + name: 'Stephen Jue', + email: 'steve.h.jue@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stephen-jue09/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Software Engineer - Front End', + industry: 'Other', + cities: ['Cleveland', 'Gilbert'], + }, + { + company: 'Healthgrades', + name: 'Joel K. Perkins', + email: 'Joel.climbs@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joelkperkins/', + campus: 'LA', + cohort: '24', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Omaha'], + }, + { + company: 'Hearst', + name: 'Josh Roberts', + email: 'josh@quantumspot.io', + linkedIn: 'https://www.linkedin.com/in/joshrobertsv2/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Lead Frontend Engineer', + industry: 'Media', + cities: ['Orlando', 'Saint Paul', 'Chesapeake'], + }, + { + company: 'Hearst', + name: 'Rob Nobile', + email: 'robert.nobile@gmail.com', + linkedIn: 'https://www.linkedin.com/in/robnobile/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer', + industry: 'Media', + cities: ['Raleigh', 'Tucson'], + }, + { + company: 'Hearst Newspaper', + name: 'Kevin Sarchi', + email: 'kevinsarchi@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/kevin-sarchi/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Associate Software Engineer', + industry: 'Media', + cities: ['Jersey City', 'Norfolk', 'Seattle', 'Boston'], + }, + { + company: 'Hearth', + name: 'Vince Ho', + email: 'vinceho022@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vinceho022/', + campus: 'LA', + cohort: '40', + jobTitle: 'Backend Engineer', + industry: 'Fintech', + cities: ['New Orleans', 'San Antonio', 'Durham'], + }, + { + company: 'Heartland ', + name: 'Lloyd Bistany', + email: 'lloydbistany@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lloyd-bistany', + campus: 'NYOI', + cohort: '3', + jobTitle: 'Software Developer ', + industry: 'Business Tech/Enterprise Tech', + cities: ['Sydney', 'Sรฃo Paulo', 'Irving', 'Madison'], + }, + { + company: 'Helix', + name: 'Robert Crocker', + email: 'robert@vizsimply.com', + linkedIn: 'https://www.linkedin.com/in/robertcrocker/', + campus: 'PTRI', + cohort: '4', + jobTitle: 'Data Visualization Engineer', + industry: 'Bio Tech', + cities: ['Tampa', 'Winston-Salem', 'Riverside'], + }, + { + company: 'Hertz', + name: 'Michael Costello', + email: 'mcostello91@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mcostello-swe/', + campus: 'FTRI / CTRI', + cohort: '12', + jobTitle: 'Software Engineer', + industry: 'Automotive', + cities: ['Raleigh', 'New York', 'Anchorage', 'Tokyo'], + }, + { + company: 'Highnote', + name: 'Trevor Carr', + email: 'trevor.a.carr@gmail.com', + linkedIn: 'https://www.linkedin.com/in/carr-trevor/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Software', + cities: ['Stockton'], + }, + { + company: 'Hilton', + name: 'Andrei Cabrera', + email: 'andrei.cabrera@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andrei-cabrera/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Backend Software Engineer', + industry: 'Entertainment', + cities: ['Seattle', 'Columbus', 'Anchorage'], + }, + { + company: 'Hilton', + name: 'Nick Andreala', + email: 'nandreala@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nickandreala/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Front-End Software Engineer', + industry: 'Hospitality', + cities: ['Durham', 'Washington', 'New Orleans', 'Oklahoma City'], + }, + { + company: 'Hilton', + name: 'Conor Sexton', + email: 'sextonc@me.com', + linkedIn: 'https://www.linkedin.com/in/sextonc/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Render Tier Engineer', + industry: 'Hospitality', + cities: ['Garland'], + }, + { + company: 'Hinge Health', + name: 'Ahsan Rao', + email: 'ahsan.ijaz.rao@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ahsan-rao/', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Software Engineer - Full-Stack', + industry: 'Healthcare', + cities: ['El Paso', 'Greensboro', 'Philadelphia', 'St. Louis'], + }, + { + company: 'Hinge Health', + name: 'Evan King', + email: 'evanking112@gmail.com', + linkedIn: 'https://www.linkedin.com/in/evanking11/', + campus: 'LA', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Healthcare Technology', + cities: ['Indianapolis'], + }, + { + company: 'Hinge Health', + name: 'Vanessa Lutz', + email: 'vanessayplutz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vanessa-lutz', + campus: 'FTRI', + cohort: '2', + jobTitle: 'Software Engineer', + industry: 'Health', + cities: ['Portland', 'Chesapeake', 'Baltimore'], + }, + { + company: 'Hireology', + name: 'Stella Baek', + email: 'seungyeon1008@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stellabaek/', + campus: 'LA / WCRI', + cohort: '54', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Madison'], + }, + { + company: 'HiTactics/ ZH Solutions Inc.', + name: 'Sidhi Gosain', + email: 'sidhigosain@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sidhi-gosain/', + campus: 'LA', + cohort: '22', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Aurora', 'Baltimore'], + }, + { + company: 'HiThrive', + name: 'Zack Daniels', + email: 'Zackdanielsnyc@gmail.com', + linkedIn: 'https://www.linkedin.com/in/zackdanielsnyc/', + campus: 'LA', + cohort: '49', + jobTitle: 'Full stack software engineer', + industry: 'Other', + cities: ['Los Angeles', 'Atlanta', 'Oakland', 'Seattle'], + }, + { + company: 'Hive', + name: 'Max Latoche', + email: 'max.latoche@gmail.com', + linkedIn: 'https://www.linkedin.com/in/maxlatoche/', + campus: 'NYC', + cohort: '2', + jobTitle: 'Senior Software Engineer', + industry: 'Tech', + cities: ['Toronto', 'Fresno', 'Reno', 'Milwaukee'], + }, + { + company: 'Hive Technologies Inc', + name: 'Lilah August', + email: 'lilahraeaugust@gmail.com', + linkedIn: 'https://www.linkedin.com/lilahaugust', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Software Engineer', + industry: 'Automotive', + cities: ['Tulsa', 'Lexington'], + }, + { + company: 'HOF Capital', + name: 'Frank Hu', + email: 'frank.junhu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/frankjunhu/', + campus: 'NYC', + cohort: '2', + jobTitle: 'Venture Analyst', + industry: '', + cities: ['Albuquerque', 'Los Angeles', 'Wichita'], + }, + { + company: 'Home Depot', + name: 'Hannah Santoyo', + email: 'hannah.santoyo7@gmail.com', + linkedIn: 'linkedin.com/in/hannah-santoyo', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Fullstack Software Engineer', + industry: 'Retail', + cities: ['Honolulu', 'Nashville', 'Buffalo', 'Norfolk'], + }, + { + company: 'Honey (PayPal)', + name: 'Jenny Hai', + email: 'jenny.hai420@gmail.com', + linkedIn: 'https://www.linkedin.com/in/Jenny-hai/', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer II', + industry: 'Fintech / Ecommerce', + cities: ['Charlotte', 'Fresno', 'Fort Wayne', 'Henderson'], + }, + { + company: 'Hooray Agency', + name: 'Aris Razuri', + email: 'arazuli4@gmail.com', + linkedIn: 'https://www.linkedin.com/in/aris-razuri/', + campus: 'LA', + cohort: '34', + jobTitle: 'Junior Frontend Developer', + industry: 'Marketing & Advertising', + cities: ['Phoenix', 'North Las Vegas'], + }, + { + company: 'Hopin', + name: 'Linda Wishingrad', + email: 'linda.wishingrad@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lindawishingrad/', + campus: 'LA', + cohort: '33', + jobTitle: 'Front End Engineer', + industry: 'Tech', + cities: ['Chandler'], + }, + { + company: 'Hopin', + name: 'Rachel Yoo', + email: 'yoo.rache@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rachel-yoo/', + campus: 'LA', + cohort: '33', + jobTitle: 'Frontend Engineer', + industry: 'Online Events Platform', + cities: ['Mesa', 'Irving'], + }, + { + company: 'Hopkins', + name: 'Nicole Abramowski', + email: 'nabramow@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nicoleabramowski/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Senior Full Stack Engineer', + industry: 'Law', + cities: ['Los Angeles', 'Miami'], + }, + { + company: 'HotPyp', + name: 'Kendall Lu', + email: 'kendall.luu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kendall-lu/', + campus: 'LA', + cohort: '31', + jobTitle: 'Front End Software Engineer', + industry: 'Cyber Security', + cities: ['Portland'], + }, + { + company: 'Howl', + name: 'Adam Allison', + email: 'allisonadam81@gmail.com', + linkedIn: 'https://www.linkedin.com/in/allisonadam81/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Full Stack Software Engineer', + industry: 'Other', + cities: ['Anchorage', 'Madison', 'Jersey City'], + }, + { + company: 'Howl', + name: 'Ryan Wallace', + email: 'ryanwallace1396@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rwallie/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Software Engineer', + industry: 'Media', + cities: ['Atlanta'], + }, + { + company: 'Hoylu', + name: 'Judy Song', + email: 'judysongg@gmail.com', + linkedIn: 'https://www.linkedin.com/in/judysongg/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Boston', 'Saint Paul'], + }, + { + company: 'HqO', + name: 'Shadman Khan', + email: 'shadmankhan.825@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shadmanmkhan/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Senior Software Engineer', + industry: 'Tenant Experience Platform/Commercial Real Estate', + cities: ['Cincinnati', 'Chesapeake', 'Phoenix', 'Minneapolis'], + }, + { + company: 'HubSpot', + name: 'Michael Caballero', + email: 'caballeromichaelus@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael-caballero-a48b0b211/', + campus: 'LA', + cohort: '42', + jobTitle: 'Senior Software Engineer I', + industry: 'Software', + cities: ['Stockton'], + }, + { + company: 'Human Interest', + name: 'Paulo Choi', + email: 'Paulinho@hey.com', + linkedIn: 'https://www.linkedin.com/in/paulochoi', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: ['Aurora', 'Mesa', 'Mumbai'], + }, + { + company: 'Humana', + name: 'Jeffery Richardson', + email: 'Jeffery.erichardson03@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jefferyrichardsonii', + campus: 'FTRI / CTRI', + cohort: '12', + jobTitle: 'Senior Software Engineer', + industry: 'Insurance', + cities: ['Honolulu'], + }, + { + company: 'HumanQ', + name: 'Aya Moosa', + email: 'ayamoosa1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ayamoosa/', + campus: 'LA / WCRI', + cohort: '55', + jobTitle: 'Full Stack Developer', + industry: 'Other', + cities: ['Reno', 'Scottsdale', 'Dallas'], + }, + { + company: 'Hunter Strategy', + name: 'Rankin Draa', + email: 'rankindraa@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rankin-draa/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Application Developer', + industry: 'IT Services', + cities: ['Lubbock', 'Newark', 'Tokyo', 'Scottsdale'], + }, + { + company: 'Hy-Vee', + name: 'Daniel An', + email: 'da568@georgetown.edu', + linkedIn: 'https://www.linkedin.com/in/d-an96/', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Restaurant, Food, and Beverage', + cities: ['Baltimore'], + }, + { + company: 'Hy-Vee', + name: 'Paul Perez', + email: 'pau.per92@gmail.com', + linkedIn: 'https://www.linkedin.com/in/perezp92', + campus: 'NYC / ECRI', + cohort: '31', + jobTitle: 'Software Engineer II', + industry: 'Restaurant, Food, and Beverage', + cities: ['New York', 'Minneapolis', 'Fresno'], + }, + { + company: 'Hyliion', + name: 'Gordon Yu', + email: 'gordon@gordonyu.com', + linkedIn: 'https://www.linkedin.com/in/gordonu/', + campus: 'LA', + cohort: '16', + jobTitle: 'Senior Full Stack Engineer', + industry: 'Electric Vehicles', + cities: ['St. Louis', 'New York', 'Aurora'], + }, + { + company: 'Hypergiant', + name: 'Abu Fofanah', + email: 'Bubakarrr@gmail.com', + linkedIn: 'https://www.linkedin.com/in/Abu-Fofanah/', + campus: 'LA', + cohort: '41', + jobTitle: 'Senior Frontend Developer', + industry: 'Technology', + cities: ['St. Petersburg', 'Toronto', 'Corpus Christi', 'Lincoln'], + }, + { + company: 'Hyperproof', + name: 'Tai Nguyen', + email: 'ndhuutai1@gmail.com', + linkedIn: '', + campus: 'PTRI', + cohort: 'Beta', + jobTitle: 'Software Engineer', + industry: 'Compliance Operations', + cities: ['Fort Worth', 'Kansas City'], + }, + { + company: 'Hyster-Yale Group', + name: 'Patrick Mojica', + email: 'patrickmojica@gmail.com', + linkedIn: 'https://www.linkedin.com/in/patrick-mojica/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Software Engineer II - Emerging Technology', + industry: 'Automotive', + cities: ['Omaha', 'Greensboro', 'Anchorage', 'Riverside'], + }, + { + company: 'IAPP', + name: 'Wanlu Ding', + email: 'wanlu.ding@gmail.com', + linkedIn: 'https://www.linkedin.com/in/wanlu-ding/', + campus: 'NYC / ECRI', + cohort: '42', + jobTitle: 'Fullstack software engineer (Contractor)', + industry: 'Consulting', + cities: ['Toledo', 'New York'], + }, + { + company: 'IBI Group', + name: 'wisdom liu', + email: 'wliu1290@gmail.com', + linkedIn: 'https://www.linkedin.com/in/wisdom-liu/', + campus: 'LA', + cohort: '27', + jobTitle: 'Software Developer', + industry: 'Architectural Services', + cities: ['Phoenix', 'Baltimore', 'Pittsburgh', 'San Jose'], + }, + { + company: 'IBM', + name: 'Annette Lin', + email: 'al261310@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alin10/', + campus: 'NYC', + cohort: '9', + jobTitle: 'Software engineer, backend', + industry: 'IT', + cities: ['Anaheim', 'Newark', 'Houston'], + }, + { + company: 'IBM', + name: 'Jimmy Deng', + email: 'Jdeng619@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/zhijimmydeng/', + campus: 'LA', + cohort: '30', + jobTitle: 'Software Developer - Cloud Software Developer', + industry: 'Sales? Tbh idk', + cities: ['Chandler'], + }, + { + company: 'IBM', + name: 'Kyle Jurassic', + email: 'kjurassic@protonmail.com', + linkedIn: 'https://www.linkedin.com/in/kylejurassic/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Cloud Engineer', + industry: 'Technology', + cities: ['Atlanta', 'Sรฃo Paulo', 'Durham', 'Chicago'], + }, + { + company: 'IBM', + name: 'Nader Almogazy', + email: 'nader73107@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nader-almogazy-97603080/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Tech', + cities: ['Santa Ana', 'Denver', 'Raleigh', 'Plano'], + }, + { + company: 'IBM', + name: 'Brian Bui', + email: 'umius.brian@gmail.com', + linkedIn: 'https://www.linkedin.com/in/umius-brian/', + campus: 'LA', + cohort: '35', + jobTitle: 'Cloud Engineer', + industry: 'Information Technology & Services', + cities: ['Henderson', 'Riverside'], + }, + { + company: 'IBM', + name: 'Vessy Shestorkina', + email: 'v.shestorkina@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shestorkina/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Full Stack Developer', + industry: 'Technology & Consulting', + cities: ['San Francisco', 'Stockton'], + }, + { + company: 'Icetec Energy Services', + name: 'Nicholas Ly', + email: 'lynick14@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nicholasly/', + campus: 'FTRI / CTRI', + cohort: '15', + jobTitle: 'Senior Applications Engineer', + industry: 'Other', + cities: ['Bakersfield', 'Dallas'], + }, + { + company: 'ICF', + name: 'David Cheng', + email: 'davidzcheng@protonmail.com', + linkedIn: 'https://www.linkedin.com/in/davidzcheng/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Software Engineer', + industry: 'Consulting', + cities: ['Scottsdale', 'Sacramento', 'Gilbert', 'Mexico City'], + }, + { + company: 'ICF', + name: 'Gwen Phillips', + email: 'gwen.phil@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gwen-phillips/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Frontend Developer', + industry: 'Consulting', + cities: ['Gilbert', 'Columbus'], + }, + { + company: 'IDEMIA', + name: 'David Conrad Friesen', + email: 'conrad.friesen@pm.me', + linkedIn: 'https://www.linkedin.com/in/conrad-friesen/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Software Engineer I', + industry: 'Software / Tech', + cities: ['Lubbock'], + }, + { + company: 'Idemia', + name: 'Tommy Edmunds', + email: 'tommyedmunds5@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tommy-edmunds-a91aa41a9/', + campus: 'FTRI', + cohort: '2', + jobTitle: 'Software Engineer', + industry: 'Security', + cities: ['New York', 'Tampa'], + }, + { + company: 'iHeartMedia', + name: 'Genevieve Annable', + email: 'genevieveannable@gmail.com', + linkedIn: 'https://www.linkedin.com/in/genevieveannable/', + campus: 'LA', + cohort: '47', + jobTitle: 'Full-Stack Engineer', + industry: 'Entertainment', + cities: ['Colorado Springs', 'Paris'], + }, + { + company: 'iHeartMedia', + name: 'Alexa Nunes', + email: 'alexaraenunes@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexanunes/', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Software Engineer', + industry: 'News/Entertainment/Streaming Platforms', + cities: ['Santa Ana', 'Newark', 'Albuquerque'], + }, + { + company: 'iHeartRadio', + name: 'Serhii Kaistrenko', + email: 'skaistrenko@gmail.com', + linkedIn: 'https://www.linkedin.com/in/skaistrenko/', + campus: 'NYC', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Hospitality', + cities: ['Indianapolis', 'Lincoln'], + }, + { + company: 'Impending Bloom', + name: 'William Magee', + email: 'wmagee03@gmail.com', + linkedIn: 'https://www.linkedin.com/in/william-magee-22a677181/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Data Engineer', + industry: 'Fintech', + cities: ['New Orleans', 'Plano'], + }, + { + company: 'Inari', + name: 'Kelly Dekitani', + email: 'kellydekitani@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kelly-dekitani/', + campus: 'LA', + cohort: '33', + jobTitle: 'Full Stack Engineer', + industry: 'Biotech/Agriculture', + cities: ['Riverside', 'Jersey City'], + }, + { + company: 'Inbrace', + name: 'Jim Yoon', + email: 'jimyoon90@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jimkyoon', + campus: 'LA', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Health', + cities: ['Lincoln', 'Newark', 'Columbus'], + }, + { + company: 'Industrious', + name: 'Bryan Li', + email: 'Bryan.li@foxmail.com', + linkedIn: 'https://www.linkedin.com/in/bbbryan14/', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Tokyo', 'Washington'], + }, + { + company: 'Infinite Computer Solutions', + name: 'Brianna Sookhoo', + email: 'brianna.sookhoo24@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brianna-sookhoo/', + campus: 'LA', + cohort: '35', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['Glendale', 'Tampa'], + }, + { + company: 'Influent', + name: 'Adam Berri', + email: 'adamberri123@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adamberri/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Software Engineer 1', + industry: 'Social Media', + cities: ['Seattle', 'Chicago', 'Washington'], + }, + { + company: 'Influx Data', + name: 'Grace Spletzer', + email: 'gracespletzer05@gmail.com', + linkedIn: 'https://www.linkedin.com/in/grace-spletzer/', + campus: 'LA', + cohort: '36', + jobTitle: 'Engineer I', + industry: 'Database service', + cities: ['Buffalo', 'Miami', 'Philadelphia', 'Newark'], + }, + { + company: 'InfluxData', + name: 'Bill OConnell', + email: 'wdoconnell@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bill-oconnell/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'SaaS', + cities: ['Oklahoma City'], + }, + { + company: 'Infor', + name: 'Olga Naumova', + email: 'leliknaum@gmail.com', + linkedIn: 'https://www.linkedin.com/in/onaumova/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'software', + cities: ['Henderson', 'London', 'Riverside'], + }, + { + company: 'Infosys', + name: 'Honghao Sun', + email: 'ilovepuffseven@gmail.com', + linkedIn: 'https://www.linkedin.com/in/honghaosunmichael/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Technical lead', + industry: 'IT Services', + cities: ['Long Beach', 'Denver', 'Berlin', 'Jacksonville'], + }, + { + company: 'Infosys', + name: 'Reuben Kirsh', + email: 'reubenakirsh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/reubenkirsh/', + campus: 'LA', + cohort: '41', + jobTitle: 'Technology Analyst', + industry: 'Tech', + cities: ['North Las Vegas', 'Fort Wayne', 'San Diego', 'Toronto'], + }, + { + company: 'Infosys', + name: 'Samuel Ratemo', + email: 'Sratemo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/samuelratemo/', + campus: 'LA', + cohort: '24', + jobTitle: 'Technology lead -US', + industry: 'Entertainment', + cities: ['Honolulu', 'San Jose', 'Corpus Christi', 'Paris'], + }, + { + company: 'Inhance Digital', + name: 'Brian Chiang', + email: 'chiangbri@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ch-brian/', + campus: 'LA', + cohort: '34', + jobTitle: 'Software Engineer', + industry: 'Marketing', + cities: ['Detroit'], + }, + { + company: 'Initiative', + name: 'Brian Cheng', + email: 'Chengbrian24@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brian-cheng24/', + campus: 'LA', + cohort: '45', + jobTitle: 'Full Stack Developer', + industry: 'Media Agency', + cities: ['Virginia Beach', 'El Paso'], + }, + { + company: 'INLT', + name: 'Andrew Wong', + email: 'andwong91@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andwong91/', + campus: 'LA', + cohort: '23', + jobTitle: 'Full Stack Developer', + industry: '', + cities: ['Mumbai', 'Charlotte', 'Virginia Beach', 'Mexico City'], + }, + { + company: 'Inman', + name: 'David Kim', + email: 'scriptura7773@gmail.com', + linkedIn: 'https://www.linkedin.com/in/davidkim7773/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Developer', + industry: 'Real Estate', + cities: ['Seattle', 'Scottsdale', 'Philadelphia', 'Milwaukee'], + }, + { + company: 'Innovative Defense Technologies', + name: 'Daniel Pietsch', + email: 'drpietsch14@gmail.com', + linkedIn: 'https://www.linkedin.com/in/danielpietsch14/', + campus: 'NYOI', + cohort: '1', + jobTitle: 'Associate Software Engineer', + industry: 'Other', + cities: ['Fort Wayne', 'Anchorage', 'Virginia Beach'], + }, + { + company: 'InRhythm', + name: 'Altai Chiang', + email: 'altai.chiang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/altaic/', + campus: 'NYC', + cohort: '8', + jobTitle: 'Senior Software Engineer', + industry: 'Consulting', + cities: ['Saint Paul'], + }, + { + company: 'InRhythm', + name: 'Eric Marcatoma', + email: 'ericmarc159@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ericmarc159/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Software Engineer', + industry: 'Information Technology & Services', + cities: ['Fort Wayne'], + }, + { + company: 'InRhythm', + name: 'Benjamin Johnson', + email: 'johnsben002@gmail.com', + linkedIn: 'https://www.linkedin.com/in/johnsben002/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Software Engineer: Web Accessibility', + industry: 'Consulting', + cities: ['Saint Paul'], + }, + { + company: 'InRhythm', + name: 'Johnson Che', + email: 'Johnson.Che01@gmail.com', + linkedIn: 'https://www.linkedin.com/in/johnsonche/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Consulting', + cities: ['Lubbock', 'Mumbai', 'Orlando'], + }, + { + company: 'InRhythm', + name: 'Wai Fai Lau', + email: 'wlau8088@gmail.com', + linkedIn: 'https://www.linkedin.com/in/wai-fai-lau/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Software Engineer', + industry: 'Software Consulting', + cities: ['Detroit'], + }, + { + company: 'Insider, Inc.', + name: 'Michael Lauri', + email: 'michael.lauri@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mlauri/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer II', + industry: 'Online Media', + cities: ['Anaheim', 'Reno', 'Honolulu', 'Norfolk'], + }, + { + company: 'Insider, Inc.', + name: 'Mitchel Severe', + email: 'mitchelsevere@gmail.com', + linkedIn: 'https://www.linkedin.com/in/misevere/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Software Engineer III', + industry: 'Digital Media', + cities: ['Saint Paul', 'Seattle', 'Greensboro', 'Virginia Beach'], + }, + { + company: 'Insight Global', + name: 'Lucas Mobley', + email: 'Lucas.W.Mobley@Gmail.com', + linkedIn: 'https://www.linkedin.com/in/lucasmobley/', + campus: 'LA', + cohort: '41', + jobTitle: 'Front End Developer', + industry: 'Entertainment', + cities: ['Fresno', 'Tampa'], + }, + { + company: 'Insight Global (contract for Nike)', + name: 'Dave Franz', + email: 'davefranz@me.com', + linkedIn: 'https://www.linkedin.com/in/dave-franz/', + campus: 'LA', + cohort: '33', + jobTitle: 'Senior Full-Stack Automation Developer', + industry: 'athletic footwear and apparel', + cities: ['Scottsdale'], + }, + { + company: 'Insight Global Consulting', + name: 'Andrew Kessinger', + email: 'andrew.kessinger@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '27', + jobTitle: 'React developer', + industry: 'Consulting', + cities: ['Fort Wayne', 'New York', 'Garland'], + }, + { + company: 'Instride', + name: 'Jayvee Aspa', + email: 'jayvee.aspa@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jayveeaspa/', + campus: 'LA', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Education', + cities: ['Las Vegas', 'Washington'], + }, + { + company: 'Integral', + name: 'Anna Larouche', + email: 'alarouche@gmail.com', + linkedIn: 'https://www.linkedin.com/in/anna-larouche/', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Full-stack Engineer', + industry: 'Healthcare', + cities: ['Arlington', 'Atlanta', 'San Jose'], + }, + { + company: 'Intelepeer', + name: 'Colton Robbins', + email: 'coltondr@gmail.com', + linkedIn: 'https://www.linkedin.com/in/c-robbins/', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Developer', + industry: 'Other', + cities: ['San Francisco', 'San Jose', 'Garland', 'Santa Ana'], + }, + { + company: 'Intellective', + name: 'Dennis Lopez', + email: 'dnnis.lpz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dennis-lopezsb/', + campus: 'LA', + cohort: '40', + jobTitle: 'Full-Stack Developer', + industry: 'Internet', + cities: ['Santa Ana', 'Sacramento'], + }, + { + company: 'Intent Media', + name: 'Denali DeMots', + email: 'denali.demots@gmail.com', + linkedIn: 'https://www.linkedin.com/in/denali-demots/', + campus: 'NYC', + cohort: '3', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Sacramento', 'Sydney', 'Jacksonville', 'Beijing'], + }, + { + company: 'Interactive Brokers', + name: 'Luke McInerney', + email: 'mciluke@gmail.com', + linkedIn: 'https://www.linkedin.com/in/luke-mcinerney/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Oklahoma City', 'El Paso', 'Chesapeake', 'Tampa'], + }, + { + company: 'Intercom', + name: 'Michael Colley', + email: 'michael.e.colley@googlemail.com', + linkedIn: 'https://www.linkedin.com/in/michaelecolley/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Product Engineer', + industry: 'SaaS, business creation services', + cities: ['Stockton', 'Durham', 'Albuquerque'], + }, + { + company: 'International association of the better business bureau', + name: 'Giovanni Rodriguez', + email: 'Gjrod16@gmail.com', + linkedIn: + 'https://www.linkedin.com/in/giovanni-rodriguez2?trk=public_profile_browsemap&challengeId=AQFtoT_NoFD3KAAAAYkntGZKTiNfC60o4v2Z4zYAnz_4_KDTQUBD7ql40SFHKBenfzE9c6FBwiMar6V09FHeEqmjVS1EAfJ7Ag&submissionId=3cc6cd5a-1812-6f17-7ceb-2e5c0f6f3658&challengeSource=AgFf2bVUVWWRnwAAAYkntJ9Q3ysytHHh91YXaw8gQiFJEKewOYeYX6rLjYNFhlQ&challegeType=AgGCPMxM5AqqqwAAAYkntJ9TeXuuC8zmVgvrjuLxi773fqd8_2_50rU&memberId=AgFbJ9qnK0duCgAAAYkntJ9WYBoUAlgShMkO190TrWZI9XA&recognizeDevice=AgGnKEfL32RWyAAAAYkntJ9aHRqgkhTAzFQoMuIEWQbDY5Tac0sU', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Full Stack Developer', + industry: 'Other', + cities: ['Los Angeles', 'Laredo', 'Oklahoma City', 'Winston-Salem'], + }, + { + company: 'International Business Machines', + name: 'Michael Evans', + email: 'amike.evans@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael-evans-8278b865/', + campus: 'NYC', + cohort: '14', + jobTitle: 'Lead Full Stack Developer', + industry: 'Computer Software', + cities: ['Las Vegas', 'Lexington', 'Jacksonville'], + }, + { + company: 'Intrinsic Enterprises', + name: 'Jasmine A Gonzalez', + email: 'jasminezalez@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jasminezalez/', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Portland', 'Berlin', 'Toledo', 'Irving'], + }, + { + company: 'Intuit', + name: 'Daria Bondarenko', + email: 'dan4ik18@gmail.com', + linkedIn: 'https://www.linkedin.com/in/daria-b/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer', + industry: 'Enterprise Software', + cities: ['San Francisco', 'Gilbert'], + }, + { + company: 'Intuit', + name: 'Davide Molino', + email: 'davidemmolino@gmail.com', + linkedIn: 'https://www.linkedin.com/in/davide-molino/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer III', + industry: 'Technology', + cities: ['Henderson', 'Columbus'], + }, + { + company: 'Intuit', + name: 'Manjeet Kaur', + email: 'manjeet175@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kaurmanjeet/', + campus: 'NYC', + cohort: '5', + jobTitle: 'Senior Frontend Engineer', + industry: '', + cities: ['Mesa'], + }, + { + company: 'Intuit', + name: 'Matthew Marchand', + email: 'matthew.marchand.93@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mnmarchand/', + campus: 'LA', + cohort: '40', + jobTitle: 'Software Engineer II', + industry: 'Fintech', + cities: ['Las Vegas', 'Santa Ana'], + }, + { + company: 'intuit', + name: 'Yevgeniy Skroznikov', + email: 'yevskro@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yevgeniyskroznikov/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Software Engineer II', + industry: 'Enterprise software', + cities: ['Albuquerque', 'Cincinnati', 'Raleigh'], + }, + { + company: 'InvestCloud', + name: 'Curtis Lovrak', + email: 'curtislovrak@gmail.com', + linkedIn: 'https://www.linkedin.com/in/curtislovrak/', + campus: 'NYOI', + cohort: '4', + jobTitle: 'UI Developer', + industry: 'Fintech', + cities: ['Fort Worth', 'Minneapolis'], + }, + { + company: 'Invisory', + name: 'Thomas Kady', + email: 'thomas.kady@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thomas-kady/', + campus: 'FTRI / CTRI', + cohort: '14', + jobTitle: 'Software Developer', + industry: 'Cloud Services', + cities: ['Henderson', 'Tampa', 'Raleigh'], + }, + { + company: 'IP.com', + name: 'Matthew Miller', + email: 'matthewjohnmiller2020@gmail.com', + linkedIn: 'https://www.linkedin.com/in/matthew-miller2020/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Baltimore', 'Oklahoma City'], + }, + { + company: 'Iridium Satellite LLC', + name: 'Lyam Hunt', + email: 'lyamnhunt@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lyamhunt/', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Software Developer II', + industry: 'Telecommunications', + cities: ['Scottsdale', 'Irvine'], + }, + { + company: 'IronNet Cybersecurity', + name: 'Daniel Stein', + email: 'danlikesbikes@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dangineer/', + campus: 'LA', + cohort: '33', + jobTitle: 'Senior UI/UX Developer', + industry: 'Computer and Network Security', + cities: ['London', 'Arlington', 'Tampa'], + }, + { + company: 'ISAT Total Support', + name: 'Anthony Le', + email: 'anthonyle910@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/anthonyle910/', + campus: 'LA / WCRI', + cohort: '58', + jobTitle: 'Full Stack Developer', + industry: 'Other', + cities: ['Reno', 'Tokyo'], + }, + { + company: 'Isobar', + name: 'Anthony Torrero', + email: 'Anthonyduarteee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/anthony-duarte-4b8798159/', + campus: 'LA', + cohort: '41', + jobTitle: 'Frontend Developer', + industry: 'Creative Agency', + cities: ['Colorado Springs', 'Kansas City'], + }, + { + company: 'Isobar', + name: 'James Gary', + email: 'jim@jamesgary.com', + linkedIn: 'https://www.linkedin.com/in/james-gary/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Senior Front End Developer', + industry: 'Media', + cities: ['Las Vegas'], + }, + { + company: 'iStrategyLabs', + name: 'Brittany Miltenberger', + email: 'brittany.miltenberger@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brittanywm/', + campus: 'LA', + cohort: '23', + jobTitle: 'Senior Web Developer', + industry: '', + cities: ['Raleigh', 'Omaha', 'St. Louis'], + }, + { + company: 'Itential', + name: 'Chao Zhong Yu', + email: 'ChaoY91@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/czyu/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Kansas City', 'Nashville'], + }, + { + company: 'Ivy Energy', + name: 'Gavin Crews', + email: 'Gcrews1894@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gavincrews/', + campus: 'LA', + cohort: '39', + jobTitle: 'Frontend Engineer', + industry: 'Solar', + cities: ['Madison', 'Mesa', 'Austin', 'Fresno'], + }, + { + company: 'Ivy Energy', + name: 'Nicolas Pita', + email: 'pitanicolase@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nicolaspita/', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Developer', + industry: 'Clean Energy', + cities: ['Sรฃo Paulo'], + }, + { + company: 'Jam City', + name: 'Tony Ito-Cole', + email: 'tonyitocole@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tony-ito-cole/', + campus: 'LA', + cohort: '34', + jobTitle: 'Platform Engineer', + industry: 'Mobile Gaming', + cities: ['Lubbock', 'Sacramento'], + }, + { + company: 'Janus Health', + name: 'Benjamin Michareune', + email: 'ben.michareune@Gmail.com', + linkedIn: 'https://www.linkedin.com/in/benmichareune', + campus: 'FTRI / CTRI', + cohort: '7', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['Sacramento'], + }, + { + company: 'Janus Healthcare', + name: 'Simon Lee', + email: 'simonlee1125@gmail.com', + linkedIn: 'https://www.linkedin.com/in/simonhlee/', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Software Engineer II', + industry: 'Healthcare', + cities: ['Jacksonville', 'Aurora', 'Las Vegas'], + }, + { + company: 'Jasper (AI)', + name: 'Marcellies Pettiford', + email: 'marcellies@pettifords.xyz', + linkedIn: 'https://www.linkedin.com/in/marcellies-pettiford/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Software Engineer II', + industry: 'Software / Tech', + cities: ['Lincoln', 'Beijing', 'Mexico City', 'San Diego'], + }, + { + company: 'Jogg', + name: 'Alex Kolb', + email: 'akolb981@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexanderjkolb/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Detroit', 'Gilbert', 'Colorado Springs', 'Fresno'], + }, + { + company: 'JP Morgan', + name: 'jonathan k coe', + email: 'jon.coe@codesmith.io', + linkedIn: 'https://www.linkedin.com/in/jonathan-k-coe/', + campus: 'NYC', + cohort: '4', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Chandler', 'Corpus Christi'], + }, + { + company: 'JP Morgan', + name: 'Jimmy Tran', + email: 'jvtran48@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jimmytran48/', + campus: 'NYC / ECRI', + cohort: '40', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: ['Arlington', 'Atlanta', 'Charlotte'], + }, + { + company: 'JP Morgan / Chase', + name: 'Wayne Wilcox', + email: 'wilcox_wayne@hotmail.com', + linkedIn: 'https://www.linkedin.com/in/wayne-wilcox/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Junior Developer Associate', + industry: 'Fintech', + cities: ['Seattle', 'Baltimore', 'Virginia Beach'], + }, + { + company: 'JP Morgan Chase', + name: 'David Behmoaras', + email: 'dbehmoaras@gmail.com', + linkedIn: 'https://www.linkedin.com/in/david-behmoaras/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Tampa', 'El Paso', 'Riverside', 'Austin'], + }, + { + company: 'JP Morgan Chase', + name: 'Howard Na', + email: 'howardna317@gmail.com', + linkedIn: 'https://www.linkedin.com/in/howard-na-jr/', + campus: 'LA', + cohort: '26', + jobTitle: 'Software Engineer', + industry: 'Media', + cities: ['Indianapolis', 'Buffalo', 'Los Angeles', 'Orlando'], + }, + { + company: 'JP Morgan Chase', + name: 'Stewart Elmore', + email: 'stewart.elmore@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stewart-elmore/', + campus: 'NYC / ECRI', + cohort: '31', + jobTitle: 'Associate Software Engineer', + industry: 'Fintech', + cities: ['Kansas City', 'Durham', 'New Orleans'], + }, + { + company: 'JP Morgan Chase & Co', + name: 'Parker Steinberg', + email: 'parker.s52@gmail.com', + linkedIn: 'https://www.linkedin.com/in/parker-steinberg/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Omaha'], + }, + { + company: 'JP Morgan Chase & Co.', + name: 'Jimmy Chen', + email: 'jimmychen12249@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jimchn/', + campus: 'NYC', + cohort: '17', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Washington'], + }, + { + company: 'JP Morgan Chase & Co.', + name: 'Mike Oโ€™Donnell', + email: 'michaelodonnell18@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michaelodonnell18', + campus: 'NYC', + cohort: '28', + jobTitle: 'Full Stack Developer', + industry: 'Banking', + cities: ['Reno', 'Portland'], + }, + { + company: 'JPMChase', + name: 'Adam Wilson', + email: 'aswilson87@gmail.com', + linkedIn: 'https://www.linkedin.com/in/aswilson87/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Associate Engineer', + industry: 'Finance', + cities: ['Washington', 'Mexico City'], + }, + { + company: 'JPMorgan', + name: 'Winford Lin', + email: 'linwinford@gmail.com', + linkedIn: 'https://www.linkedin.com/in/winfordlin/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer II', + industry: 'Fintech', + cities: ['Tokyo', 'Aurora', 'Cincinnati', 'Chicago'], + }, + { + company: 'JPMorgan Chase', + name: 'Adam White', + email: 'adamkarnwhite@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adam-karn-white', + campus: 'NYC / ECRI', + cohort: '31', + jobTitle: 'Senior Associate Software Engineer', + industry: 'Fintech', + cities: ['Anchorage', 'Toronto'], + }, + { + company: 'JPMorgan Chase', + name: 'Adrian Uesugui', + email: 'auesugui@gmail.com', + linkedIn: 'https://www.linkedin.com/in/auesugui/', + campus: 'LA', + cohort: '46', + jobTitle: 'Associate Software Engineer', + industry: 'Fintech', + cities: ['Phoenix', 'San Diego', 'Charlotte'], + }, + { + company: 'JPMorgan Chase', + name: 'John Donovan ', + email: 'jodonovan845@gmail.com', + linkedIn: 'https://www.linkedin.com/in/john-d-donovan', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Software Engineer - Associate II', + industry: 'Software / Tech', + cities: ['Philadelphia', 'Oakland', 'Dallas', 'Durham'], + }, + { + company: 'JPMorgan Chase & Co', + name: 'Jo Huang', + email: 'johuangx@gmail.com', + linkedIn: 'https://www.linkedin.com/in/johuangx/', + campus: 'NYOI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Berlin'], + }, + { + company: 'JPMorgan Chase & Co.', + name: 'Stanley Huang', + email: 'iamstanleyhuang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stanleyhuang16/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Tulsa', 'Boston', 'New Orleans', 'Phoenix'], + }, + { + company: 'JPMorgan Chase & Co.', + name: 'Terence Petersen', + email: 'robo.terence@gmail.com', + linkedIn: 'https://www.linkedin.com/in/terence-petersen/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Associate Software Engineer', + industry: 'Merchant Services', + cities: ['Paris', 'Miami', 'Detroit'], + }, + { + company: 'Juniper Behavioral Health', + name: 'Kelvin Cuesta', + email: 'kelvinscuesta@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kelvinscuesta/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['Dallas'], + }, + { + company: 'Justworks', + name: 'Shelby Neuman', + email: 'shelbydneuman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shelbyneuman/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Indianapolis', 'Virginia Beach', 'San Diego'], + }, + { + company: 'JustWorks Labs', + name: 'Sophia Huttner', + email: 'sophjean@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sophia-huttner/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Frontend Software Engineer', + industry: 'HR Suite', + cities: ['Anaheim', 'San Antonio', 'Irving'], + }, + { + company: 'Karr Barth Administrators', + name: 'Loralyn Milcarek', + email: 'loralyn.milcarek@gmail.com', + linkedIn: 'https://www.linkedin.com/in/loralyn-milcarek/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Developer', + industry: 'Other', + cities: ['Aurora'], + }, + { + company: 'Keller Williams Realty, Inc', + name: 'Brent Speight', + email: 'brentjosephspeight@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brent-speight/', + campus: 'LA', + cohort: '44', + jobTitle: 'Software Engineer', + industry: 'Realty', + cities: ['Sรฃo Paulo', 'Irvine'], + }, + { + company: 'Kelley Blue Book (Cox Automotive)', + name: 'Ryan Bender', + email: 'rdbender@me.com', + linkedIn: 'https://www.linkedin.com/in/rdbender', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer I', + industry: 'Automotive', + cities: ['Mesa'], + }, + { + company: 'Kevel', + name: 'Adam Joesten', + email: 'adamjoesten@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adamjoesten/', + campus: 'LA', + cohort: '40', + jobTitle: 'Senior Software Engineer (SDE II)', + industry: 'Adtech', + cities: ['San Antonio'], + }, + { + company: 'Key Bank (Laurel Road)', + name: 'Eric Pham', + email: 'ericpham36@gmail.com', + linkedIn: 'https://www.linkedin.com/in/epstylesoflife/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Senior Full Stack Engineer', + industry: 'Fintech', + cities: ['Los Angeles'], + }, + { + company: 'Kibanx', + name: 'Celeste Knopf', + email: 'celesteknopf@gmail.com', + linkedIn: 'https://www.linkedin.com/in/celesteknopf/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Front End Engineer', + industry: 'Real Estate', + cities: ['Detroit'], + }, + { + company: 'Kin + Carta', + name: 'Eric Olaya', + email: 'ericolaya@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eric-olaya/', + campus: 'FTRI', + cohort: '3', + jobTitle: 'Software Engineer', + industry: 'Tech Consulting', + cities: ['Lexington', 'Winston-Salem'], + }, + { + company: 'Kindo', + name: 'Hannah Bernstein', + email: 'hbern00@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bernstein-hannah/', + campus: 'LA / WCRI', + cohort: '53', + jobTitle: 'Software Engineer', + industry: 'Artificial Intelligence', + cities: ['Albuquerque'], + }, + { + company: 'Kitman Labs', + name: 'Gregory Levine-Rozenvayn', + email: 'Grisha617@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gregory-levine-rozenvayn', + campus: 'NYC', + cohort: '24', + jobTitle: 'Senior Software Engineer, Frontend', + industry: 'Sports data science', + cities: ['St. Louis', 'Long Beach'], + }, + { + company: 'Klarna', + name: 'Natalie Vick', + email: 'vicknatalie@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vicknatalie/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Senior Frontend Engineer', + industry: 'Ecommerce', + cities: ['Atlanta'], + }, + { + company: 'Klaviyo', + name: 'Amy Chen', + email: 'aechen46@gmail.com', + linkedIn: 'https://www.linkedin.com/in/amyechen/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Marketing Technology', + cities: ['Buffalo'], + }, + { + company: 'Klaviyo', + name: 'Elinor Weissberg', + email: 'elinorthw@gmail.com', + linkedIn: 'https://www.linkedin.com/in/elinorweissberg/', + campus: 'NYOI', + cohort: '5', + jobTitle: 'Software Engineer II', + industry: 'Marketing/Advertising', + cities: ['Chicago'], + }, + { + company: 'Knotel', + name: 'Rocky Liao', + email: 'rliao3613@gmail.com', + linkedIn: 'https://linkedin.com/in/seemsrocky', + campus: 'NYC', + cohort: '12', + jobTitle: 'Software engineer', + industry: 'Real Estate', + cities: ['Chesapeake', 'Toledo', 'Aurora', 'Las Vegas'], + }, + { + company: 'Knowable', + name: 'Alex Sanhueza', + email: 'alexrsanhueza@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alex-sanhueza/', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Development Engineer II (Front end)', + industry: 'Legal Services', + cities: ['Miami', 'Colorado Springs', 'Fort Worth', 'Minneapolis'], + }, + { + company: 'Komodo Health', + name: 'Ju Kim', + email: 'juhyuns98@gmail.com', + linkedIn: '', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Engineer, Applications', + industry: 'Healthcare', + cities: ['Phoenix', 'Austin'], + }, + { + company: 'Konami Gaming', + name: 'Aidan Noble-Goodman', + email: 'anoblegoodman@gmail.com', + linkedIn: 'www.linkedin.com/anoblegoodman', + campus: 'LA', + cohort: '28', + jobTitle: 'Software Engineer II', + industry: 'Gaming/casino management software', + cities: ['Chicago', 'Paris', 'Lexington', 'Mexico City'], + }, + { + company: 'Kroger', + name: 'John Wong', + email: 'johnwong4150@gmail.com', + linkedIn: 'https://www.linkedin.com/in/john-wong-fongching/', + campus: 'LA / WCRI', + cohort: '43', + jobTitle: 'Web Platform Engineer', + industry: 'Retail', + cities: ['Beijing', 'Honolulu'], + }, + { + company: 'Kroger', + name: 'Jason Seidler', + email: 'jsonseidler@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jason-seidler/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Senior Front End Developer', + industry: 'Retail', + cities: ['Newark'], + }, + { + company: 'Kroger', + name: 'Kevin MacCoy', + email: 'kmaccoy@fau.edu', + linkedIn: 'https://www.linkedin.com/in/kevin-maccoy/', + campus: 'FTRI', + cohort: '1', + jobTitle: 'Backend Engineer', + industry: 'Other', + cities: ['Omaha', 'Buffalo', 'Garland', 'Anchorage'], + }, + { + company: 'Kroger', + name: 'Elise McConnell', + email: 'elisemcconnell11@gmail.com', + linkedIn: 'www.linkedin.com/in/elisemcconnell', + campus: 'FTRI / CTRI', + cohort: '12', + jobTitle: 'Software Engineer', + industry: 'Retail', + cities: ['Austin', 'Louisville', 'Jacksonville', 'Lubbock'], + }, + { + company: 'Kryptowire', + name: 'Michael Ross', + email: 'michaelalross@gmail.com', + linkedIn: 'https://linkedin.com/in/michaelalross', + campus: 'LA', + cohort: '45', + jobTitle: 'Software Engineer II', + industry: 'DevSecOps', + cities: ['Greensboro'], + }, + { + company: 'KyckGlobal', + name: 'Joseph Lee', + email: 'josephemlee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/josephjslee/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Cleveland'], + }, + { + company: 'Kyte Dynamics, Inc.', + name: 'Lawrence Yeh', + email: 'lawyeh391@gmail.com', + linkedIn: 'linkedin.com/in/lawyeh', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Cleveland', 'Sรฃo Paulo', 'Philadelphia', 'New York'], + }, + { + company: 'LA County', + name: 'Vu Duong', + email: 'vthanhd@gmail.com', + linkedIn: 'www.linkedin.com/in/vu-duong', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Application Developer II', + industry: 'Government', + cities: ['Cleveland', 'Louisville', 'Chicago'], + }, + { + company: 'LaaSie.ai', + name: 'Tyler Sayles', + email: 'saylestyler@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tylersayles/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Full stack Engineer', + industry: 'Marketing', + cities: ['Oakland'], + }, + { + company: 'Lab49', + name: 'Eric Tacher', + email: 'erictacher@gmail.com', + linkedIn: 'https://www.linkedin.com/in/erictacher/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Web UI Engineer', + industry: 'Fintech Consulting', + cities: ['Mesa', 'Boston'], + }, + { + company: 'Lasso Marketing', + name: 'Andy Tsou', + email: 'tsou.andy@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andy-tsou/', + campus: 'LA', + cohort: '45', + jobTitle: 'Integration Engineer', + industry: 'Health Care Marketing', + cities: ['Greensboro', 'Sacramento', 'Indianapolis'], + }, + { + company: 'LastPass', + name: 'E Kathuria', + email: 'e@kathuria.dev', + linkedIn: 'https://www.linkedin.com/in/ekathuria', + campus: 'NYC', + cohort: '32', + jobTitle: 'Front End Engineer', + industry: 'Software / Tech', + cities: ['Oklahoma City', 'Henderson', 'Bakersfield'], + }, + { + company: 'Lattitude', + name: 'Carolyn Zheng', + email: 'ruxinzheng01@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ruxinzhengswe/', + campus: 'LA / WCRI', + cohort: '57', + jobTitle: 'Software Engineer', + industry: 'Marketing/Advertising', + cities: ['Cleveland'], + }, + { + company: 'Launch Darkly', + name: 'Samuel Kim', + email: 'samuyyy@gmail.com', + linkedIn: 'https://www.linkedin.com/in/samuy/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Software Engineer (Backend)', + industry: 'Developer Tools', + cities: ['Jacksonville', 'Glendale', 'Tampa'], + }, + { + company: 'Lawmatics', + name: 'Omar Rana', + email: 'omar_rana93@hotmail.com', + linkedIn: 'https://www.linkedin.com/in/orana1/', + campus: 'LA', + cohort: '45', + jobTitle: 'Full Stack Engineer', + industry: 'CRM for law firms', + cities: ['Paris', 'Chesapeake'], + }, + { + company: 'Leadpages', + name: 'Evan McNeely', + email: 'evanmcneely@me.com', + linkedIn: 'https://www.linkedin.com/in/evanmcneely/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Software Engineer II', + industry: 'Marketing', + cities: ['Fort Worth'], + }, + { + company: 'Leaf Group (Society6)', + name: 'Oliver Roldan', + email: 'oproldan01@gmail.com', + linkedIn: '', + campus: 'LA / WCRI', + cohort: '40', + jobTitle: 'Frontend Engineer', + industry: 'Other', + cities: ['Detroit'], + }, + { + company: 'LeaseLock', + name: 'Kara Chisholm', + email: 'kkchisholm@gmail.com', + linkedIn: 'https://www.linkedin.com/in/karachisholm/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: ['Stockton', 'Fresno', 'Oklahoma City', 'Chandler'], + }, + { + company: 'LedgerX', + name: 'Abaas Khorrami', + email: 'abaas.khorrami@gmail.com', + linkedIn: 'https://www.linkedin.com/in/abaas-khorrami/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Senior Frontend Engineer', + industry: 'Fintech', + cities: ['Long Beach', 'Berlin', 'Sydney'], + }, + { + company: 'LegacyScape', + name: 'Cassidy Johnson', + email: 'cassidyrose56@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cassidy-r-johnson/', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Irving', 'Paris', 'Omaha', 'Fort Wayne'], + }, + { + company: 'LegalZoom', + name: 'Henry Park', + email: 'codedenma@gmail.com', + linkedIn: 'https://www.linkedin.com/in/henrytpark/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Software Engineer II, Product Experiences', + industry: 'Other', + cities: ['Saint Paul', 'Irving', 'El Paso'], + }, + { + company: 'Lendbuzz Inc.', + name: 'Quoc Do', + email: 'dlaquoc1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dlaquoc/', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Full Stack Engineer Co-op (Internship)', + industry: 'Automotive', + cities: ['Corpus Christi'], + }, + { + company: 'Lessen Inc', + name: 'Davette Bryan', + email: 'davettejones11@gmail.com', + linkedIn: 'https://www.linkedin.com/in/davette-bryan/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Jr. Software Engineer', + industry: 'Real Estate', + cities: ['Houston', 'Atlanta'], + }, + { + company: 'Lever', + name: 'Aiden Blinn', + email: 'apblinn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/aidenblinn/', + campus: 'FTRI', + cohort: '7', + jobTitle: 'Integrations Engineer', + industry: 'IT Services', + cities: ['Tucson', 'Lexington', 'Mumbai'], + }, + { + company: 'Lever', + name: 'Jae Lee', + email: 'jaelee213@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jaelee213/', + campus: 'LA', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Recruiting', + cities: ['Gilbert', 'Louisville', 'Sydney'], + }, + { + company: 'Lever', + name: 'Sophia Sam', + email: 'sophia.sam96@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sophia-sam', + campus: 'FTRI', + cohort: '7', + jobTitle: 'Software Engineer II', + industry: 'Software / Tech', + cities: ['Louisville', 'Phoenix', 'Washington', 'Kansas City'], + }, + { + company: 'Lexis Nexis', + name: 'Danny Martinez', + email: 'codesmith@jdanielmartinez.com', + linkedIn: 'https://www.linkedin.com/in/jdanielmartinez/', + campus: 'LA', + cohort: '42', + jobTitle: 'GraphQL Full Stack Developer', + industry: 'Paralegal', + cities: ['Portland', 'Sacramento', 'El Paso', 'Chandler'], + }, + { + company: 'LexisNexis', + name: 'Graham Albachten', + email: 'albachteng@gmail.com', + linkedIn: 'https://www.linkedin.com/in/graham-albachten-00162a52/', + campus: 'FTRI', + cohort: '1', + jobTitle: 'GraphQL Full Stack Developer', + industry: 'Legal', + cities: ['Chula Vista', 'Philadelphia', 'Norfolk', 'Charlotte'], + }, + { + company: 'Lexmark', + name: 'Luke Roberts', + email: 'luke.roberts089@gmail.com', + linkedIn: 'https://www.linkedin.com/in/luke-roberts0/', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Fort Wayne', 'El Paso'], + }, + { + company: 'Liberty Maritime', + name: 'Garrett Layden', + email: 'garlayden@gmail.com', + linkedIn: 'https://linkedin.com/in/garrett-layden', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Full Stack Developer', + industry: 'Other', + cities: ['San Antonio', 'Arlington', 'Memphis'], + }, + { + company: 'Liberty Mutual', + name: 'Bryan Kim', + email: 'bkim0826@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bkimmm/', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: ['Los Angeles', 'Buffalo', 'Houston', 'Riverside'], + }, + { + company: 'Liberty Mutual', + name: 'Cristian De Los Rios', + email: 'Cris2595@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cristian-dlr/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: ['Newark', 'Buffalo', 'Virginia Beach'], + }, + { + company: 'Liberty Mutual', + name: 'Patrick Sullivan', + email: 'patrick@jsullivan.org', + linkedIn: 'https://www.linkedin.com/in/patrick-j-m-sullivan/', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: ['Oakland', 'Washington', 'Omaha'], + }, + { + company: 'Liberty Mutual', + name: 'Robert Tipton', + email: 'robbytiptontol@gmail.com', + linkedIn: 'https://www.linkedin.com/in/robert-tipton/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: ['Atlanta'], + }, + { + company: 'Liberty Mutual', + name: 'Tyler Jameson Martinez', + email: 'tm6002005@gmail.com', + linkedIn: 'https://www.linkedin.com/mwlite/in/tylerjamesonmartinez', + campus: 'LA', + cohort: '43', + jobTitle: 'Software engineer', + industry: 'Insurance', + cities: ['Garland', 'Wichita'], + }, + { + company: 'LifeOmic', + name: 'Chloe Courtois', + email: 'crc.courtois@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chloe-courtois-3337a210b/', + campus: 'FTRI', + cohort: '7', + jobTitle: 'Associate Software Engineer', + industry: 'Healthcare', + cities: ['Pittsburgh'], + }, + { + company: 'Limble CMMS', + name: 'Josh Merrell', + email: 'joshmerrell.us@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joshmerrell/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Software Developer III', + industry: 'Software / Tech', + cities: ['Detroit'], + }, + { + company: 'Linguabee', + name: 'Connor Gillis', + email: 'connoregillis@gmail.com', + linkedIn: 'https://www.linkedin.com/in/connor-gillis/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Front End Software Engineer', + industry: 'Interpreting', + cities: ['Bakersfield'], + }, + { + company: 'LinkedIn', + name: 'Ethan Yeh', + email: 'Ethanhwyeh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ethanhwyeh/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Full Stack Software Engineer', + industry: 'Professional Networking', + cities: ['Fresno', 'Henderson', 'Mumbai', 'Honolulu'], + }, + { + company: 'LinkedIn', + name: 'Douglas Yao', + email: 'doug.yao@gmail.com', + linkedIn: 'https://www.linkedin.com/in/douglas-yao/', + campus: 'FTRI / CTRI', + cohort: '16', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Sacramento', 'Irvine', 'Oakland', 'San Jose'], + }, + { + company: 'Linus Health', + name: 'Tommy Song', + email: 'Tommysong123@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Health tech', + cities: ['New York', 'Oklahoma City', 'Fort Worth', 'Lubbock'], + }, + { + company: 'LiquidPixels', + name: 'Christian Looff', + email: 'ctnguy10@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christian-looff/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['San Francisco'], + }, + { + company: 'Literably', + name: 'Tiffany Wong', + email: 'Wongt1227@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tiffanywong149', + campus: 'NYC / ECRI', + cohort: '42', + jobTitle: 'Junior Software Engineer', + industry: 'Education/Edtech', + cities: ['Corpus Christi', 'New Orleans'], + }, + { + company: 'Little Cinema', + name: 'Kenny Ma', + email: 'Kennyjjma@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '15', + jobTitle: 'Front End Engineer', + industry: 'Entertainment', + cities: ['Honolulu', 'Toledo', 'Austin'], + }, + { + company: 'Littlebits', + name: 'Jinsung Park', + email: 'js.lia.park@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jsliapark/', + campus: 'NYC', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Beauty/Cosmetic', + cities: ['Berlin', 'Los Angeles', 'Newark'], + }, + { + company: 'Live Nation', + name: 'Colin Gibson', + email: 'colingibs@gmail.com', + linkedIn: 'https://www.linkedin.com/in/colin--gibson/', + campus: 'LA', + cohort: '44', + jobTitle: 'Software Development Engineer', + industry: 'Real Estate', + cities: ['Plano', 'Paris', 'Washington'], + }, + { + company: 'Lively Video', + name: 'Mark Miller', + email: 'markmmiller825@gmail.com', + linkedIn: 'https://www.linkedin.com/in/markmanuelmiller/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Senior Software Engineer', + industry: 'Entertainment/education', + cities: ['Corpus Christi'], + }, + { + company: 'LivePerson', + name: 'Geoffrey Lin', + email: 'geoffrey.s.lin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/geoff-lin/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'Computer Software', + cities: ['Reno', 'St. Petersburg', 'Miami', 'Tampa'], + }, + { + company: 'LivePerson', + name: 'Taihyun (Ray) Lee', + email: 'taihyun.ray.lee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/taihyun-ray-lee/', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software Development Engineer', + industry: 'Software (SAAS)', + cities: ['Arlington', 'Chandler'], + }, + { + company: 'LivePerson', + name: 'Taihyun Lee', + email: 'th9061@gmail.com', + linkedIn: 'https://www.linkedin.com/in/taihyun-ray-lee', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software Development Engineer', + industry: 'Entertainment', + cities: ['Henderson', 'Miami'], + }, + { + company: 'LogicMonitor', + name: 'Jessica Vaughan', + email: 'jessicavaughan820@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jessicavaughan820/', + campus: 'LA', + cohort: '30', + jobTitle: 'frontend developer', + industry: 'SaaS', + cities: ['Tampa'], + }, + { + company: 'Lokavant', + name: 'Eric Peng', + email: 'tzerpeng@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eric-peng-jojo/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: 'Information Technology & Services', + cities: ['Buffalo', 'Irving'], + }, + { + company: 'Lonesdale Invest', + name: 'Coral Fussman', + email: 'coralfussman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/coral-fussman-21721538/', + campus: 'FTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Madison'], + }, + { + company: 'Longtail Studios', + name: 'Daniel Steinbrook', + email: 'steinbrookdaniel@gmail.com', + linkedIn: 'https://www.linkedin.com/in/daniel-steinbrook/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Developer - AI Models Integration', + industry: 'Software / Tech', + cities: ['San Francisco', 'Phoenix', 'Plano', 'Chandler'], + }, + { + company: 'Loop', + name: 'Olivia Hodel', + email: 'ohodel16@gmail.com', + linkedIn: 'https://www.linkedin.com/in/olivia-hodel/', + campus: 'NYC / ECRI', + cohort: '39', + jobTitle: 'Associate Software Engineer', + industry: 'Other', + cities: ['Mumbai', 'Tulsa'], + }, + { + company: 'Lord, Abbett & Co. LLC', + name: 'Vince Chin', + email: 'vincech@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vincech/', + campus: 'PTRI', + cohort: '5', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['London'], + }, + { + company: 'Los Alamos National Laboratory', + name: 'James Howat', + email: 'james@howat.dev', + linkedIn: 'LinkedIn.com/in/jamesbhowat', + campus: 'FTRI / CTRI', + cohort: '12', + jobTitle: 'Software Developer 2', + industry: 'Security', + cities: ['St. Louis'], + }, + { + company: 'Lotic AI', + name: 'Adam Blackwell', + email: 'blackwell.ada@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adam-blackwell-85918595/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Software Engineer', + industry: 'Mental Health', + cities: ['Chesapeake'], + }, + { + company: 'Low Associates', + name: 'William Robson', + email: 'will.robson19@gmail.com', + linkedIn: 'https://www.linkedin.com/in/william-k-robson/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Full Stack Developer', + industry: 'Software / Tech', + cities: ['Indianapolis', 'New Orleans'], + }, + { + company: 'Lowes', + name: 'Joshuah Edwards', + email: 'joshuah.edwards@proton.me', + linkedIn: 'linkedin.com/in/joshuah-edwards/', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'Retail', + cities: ['Tucson', 'Norfolk', 'Mumbai', 'Wichita'], + }, + { + company: 'Lumi AI', + name: 'Ryan Hastings', + email: 'rhaasti@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rhaasti/', + campus: 'NYOI', + cohort: '4', + jobTitle: 'Front-End Engineer (six month contract-to-hire)', + industry: 'Artificial Intelligence/Machine Learning', + cities: ['Jersey City'], + }, + { + company: 'Lumifi', + name: 'Ryan Gause', + email: 'Ryan.g.gause.3@gmail.com', + linkedIn: 'LinkedIn.com/in/ryangause', + campus: 'PTRI', + cohort: '9', + jobTitle: 'Software Developer II', + industry: 'Security', + cities: ['New York'], + }, + { + company: 'Lunchbox', + name: 'Judy Tan', + email: 'judytan86@gmail.com', + linkedIn: 'https://www.linkedin.com/in/judy-tan93/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Frontend Engineer', + industry: 'Food Industry', + cities: ['Tucson', 'Fort Wayne', 'Corpus Christi'], + }, + { + company: 'LVRG', + name: 'Gary Slootskiy', + email: 'garyslootskiy@gmail.com', + linkedIn: 'https://linkedin.com/in/garyslootskiy', + campus: 'NYC', + cohort: '21', + jobTitle: 'Senior Software Engineer', + industry: 'Supply Chain Management', + cities: ['Nashville'], + }, + { + company: 'Lytx', + name: 'Miller Johnston', + email: 'miller.johnston17@gmail.com', + linkedIn: 'linkedin.com/in/miller-johnston', + campus: 'FTRI / CTRI', + cohort: '6', + jobTitle: 'Software Engineer II', + industry: 'Automotive', + cities: ['New Orleans', 'New York'], + }, + { + company: 'M Science', + name: 'Celena Chan', + email: 'celenachan@gmail.com', + linkedIn: 'https://www.linkedin.com/in/celenachan', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Columbus'], + }, + { + company: 'Madison Logic', + name: 'Richie Edwards', + email: 'richie00edwards@gmail.com', + linkedIn: 'https://www.linkedin.com/in/richieedwards/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Full Stack Engineer', + industry: 'Marketing', + cities: ['Baltimore', 'Beijing', 'Dallas', 'Tokyo'], + }, + { + company: 'Maestro', + name: 'Jacob Banks', + email: 'jacobjeffreybanks@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jacobjbanks/', + campus: 'LA', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Media/Entertainment', + cities: ['Wichita'], + }, + { + company: 'Magic Leap', + name: 'Randy Reyes', + email: 'rqreyes@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rqreyes/', + campus: 'LA', + cohort: '31', + jobTitle: 'Front-End Software Engineer', + industry: 'Augmented Reality', + cities: ['Anchorage', 'Pittsburgh', 'Bakersfield', 'Durham'], + }, + { + company: 'MagMutual', + name: 'Mark Yencheske', + email: 'markyencheske@gmail.com', + linkedIn: 'https://www.linkedin.com/in/markyencheske/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: ['Portland'], + }, + { + company: 'Magnite', + name: 'John Madrigal', + email: 'johnmadrigal17@gmail.com', + linkedIn: 'https://www.linkedin.com/in/john-r-madrigal/', + campus: 'LA', + cohort: '37', + jobTitle: 'Front End Software Development Engineer', + industry: 'Adtech', + cities: ['New York', 'Albuquerque', 'Berlin'], + }, + { + company: 'Mailchimp/Intuit', + name: 'Albert Han', + email: 'albert.h1231@gmail.com', + linkedIn: 'https://www.linkedin.com/in/albert-han1', + campus: 'LA', + cohort: '47', + jobTitle: 'SWE II', + industry: 'Marketing/financial management', + cities: ['Chicago', 'Newark', 'Plano'], + }, + { + company: 'Mailchimp/Intuit', + name: 'Gerry Bong', + email: 'ggbong734@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gerry-bong/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Houston', 'Fort Wayne', 'Miami', 'San Francisco'], + }, + { + company: 'Maisonette', + name: 'Heidi Kim', + email: 'heidiyoora@gmail.com', + linkedIn: 'https://www.linkedin.com/in/heidiykim/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: 'E-commerce', + cities: ['Tokyo', 'London', 'Jersey City', 'Pittsburgh'], + }, + { + company: 'Major League Baseball', + name: 'Steven Rosas', + email: 'srosas20@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rosassteven/', + campus: 'NYC', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Sports', + cities: ['Honolulu'], + }, + { + company: 'MakerBot', + name: 'Anthony R Toreson', + email: 'anthony.toreson@gmail.com', + linkedIn: 'https://www.linkedin.com/in/atoreson/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Senior Software Engineer', + industry: 'Hardware manufacturer (3d printers)', + cities: ['New Orleans', 'Lubbock', 'Irving'], + }, + { + company: 'ManageGo', + name: 'Bo Peng', + email: 'bopeng95@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bopeng95/', + campus: 'NYC', + cohort: '10', + jobTitle: 'Software Developer', + industry: 'Real Estate', + cities: ['Cleveland', 'Raleigh', 'Stockton', 'Glendale'], + }, + { + company: 'Manatee', + name: 'Raivyno Sutrisno', + email: 'yessysutter@gmail.com', + linkedIn: 'https://www.linkedin.com/in/raivyno-sutrisno/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['Cleveland', 'Bakersfield', 'Saint Paul'], + }, + { + company: 'Mantium', + name: 'Steve Hong', + email: 'swe.stevehong@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stevehong-swe/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Artificial Intelligence', + cities: ['Aurora'], + }, + { + company: 'MANTL', + name: 'Lourent Flores', + email: 'lourent.flores@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lourent-flores/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Full stack Engineer', + industry: 'Fintech', + cities: ['Aurora', 'Los Angeles', 'Chicago'], + }, + { + company: 'MANTL', + name: 'TJ Wetmore', + email: 'Thomas.j.wetmore@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tjwetmore/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Irvine', 'Charlotte'], + }, + { + company: 'Mantra Health', + name: 'Konrad Kopko', + email: 'konradkopko1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/konradkopko/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'HealthTech', + cities: ['Louisville', 'Colorado Springs'], + }, + { + company: 'Maple.Finance', + name: 'Thomas Harper', + email: 'tommyrharper@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thomas-robert-harper/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Senior Software Engineer', + industry: 'Blockchain/Web3', + cities: ['Sacramento', 'Stockton'], + }, + { + company: 'Mariana Tek', + name: 'Owen Eldridge', + email: 'oweneldridge7@gmail.com', + linkedIn: 'https://www.LinkedIn.com/in/owen-eldridge', + campus: 'NYC', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Fitness Center Saas', + cities: ['Oklahoma City', 'San Diego', 'Jacksonville', 'Newark'], + }, + { + company: 'MarineSitu', + name: 'Emily Paine', + email: 'erpaine@gmail.com', + linkedIn: 'https://www.linkedin.com/in/emily-paine1/', + campus: 'FTRI / CTRI', + cohort: '12', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Houston', 'Winston-Salem', 'Atlanta'], + }, + { + company: 'Mark43', + name: 'Kadir Gundogdu', + email: 'kadirgund@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kadirgund/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer', + industry: 'Law Enforcement', + cities: ['Winston-Salem', 'Tampa'], + }, + { + company: 'Mark43', + name: 'Sophie Nye', + email: 'sophie.nye@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '12', + jobTitle: 'Software engineer', + industry: 'Itโ€™s software for first responders, not sure what industry that is', + cities: ['Greensboro', 'Mesa', 'Winston-Salem'], + }, + { + company: 'Marsh Mclennan', + name: 'Mina Koo', + email: 'minalunakoo@gmail.com', + linkedIn: 'linkedin.com/in/minakoo', + campus: 'NYC / ECRI', + cohort: '30', + jobTitle: 'Developer', + industry: 'Insurance', + cities: ['Raleigh', 'Toledo', 'Phoenix'], + }, + { + company: 'MAS Medical Staffing', + name: 'Jeffrey Schrock', + email: 'rhythmmagi@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jmschrock/', + campus: 'NYC', + cohort: '4', + jobTitle: 'React Software Engineer', + industry: 'FinTech', + cities: ['Louisville'], + }, + { + company: 'MassMutual', + name: 'Ausar English', + email: 'ausareenglish@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ausarenglish/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Fullstack Developer', + industry: 'Financial Services/Insurance', + cities: ['London'], + }, + { + company: 'MassMutual', + name: 'Bryanna DeJesus', + email: 'bryanna.dejesus@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bryannadejesus/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Full Stack Developer', + industry: 'Insurance', + cities: ['San Francisco'], + }, + { + company: 'MasterCard', + name: 'Abigail Gerig', + email: 'abigail.gerig@gmail.com', + linkedIn: 'https://www.linkedin.com/in/abigail-gerig/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: ['Omaha', 'Tokyo', 'Paris', 'North Las Vegas'], + }, + { + company: 'Mastercard', + name: 'Edwin Lin', + email: 'Edwinlim@gmail.com', + linkedIn: 'https://www.linkedin.com/in/edwinlin/', + campus: 'NYC', + cohort: '14', + jobTitle: 'JavaScript Engineer', + industry: 'Payment card', + cities: ['Henderson'], + }, + { + company: 'Mavis', + name: 'Aalayah-Lynn Olaes', + email: 'olaesaalayah@gmail.com', + linkedIn: 'linkedin.com/in/aalayaholaes', + campus: 'NYC / ECRI', + cohort: '40', + jobTitle: 'Software Engineer', + industry: 'Automotive', + cities: ['Chula Vista'], + }, + { + company: 'Mavis Tire', + name: 'Peter Kennedy', + email: 'Ptkennedy9@gmail.com', + linkedIn: 'https://www.linkedin.com/peter-kennedy', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Full Stack Software Engineer ', + industry: 'Automotive', + cities: ['Wichita', 'Aurora', 'Las Vegas'], + }, + { + company: 'Mavis Tires', + name: 'Jessica Davila', + email: 'jdav92@gmail.com', + linkedIn: 'https://www.linkedin.com/feed/', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Senior Full Stack Engineer', + industry: 'Automotive', + cities: ['New York', 'Boston', 'Los Angeles', 'St. Louis'], + }, + { + company: 'Maya Health', + name: 'Danny Byrne', + email: 'danny.byrne.dev@gmail.com', + linkedIn: 'https://www.linkedin.com/in/danny-byrne-la/', + campus: 'LA', + cohort: '30', + jobTitle: 'Front End Engineer', + industry: 'Psychedelic Health', + cities: ['Paris'], + }, + { + company: 'Maze', + name: 'Henry Black', + email: 'blackhaj@gmail.com', + linkedIn: 'https://www.linkedin.com/in/henryblack1/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Full Stack Engineer', + industry: 'Design', + cities: ['Winston-Salem', 'Albuquerque', 'Oakland'], + }, + { + company: 'McGraw Hill', + name: 'Kristin Green', + email: 'kngreen@umich.edu', + linkedIn: 'https://www.linkedin.com/in/kristin-green-101902a4/', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Orlando', 'Mumbai', 'Newark', 'Corpus Christi'], + }, + { + company: 'Mcgraw Hill', + name: 'Richard Guo', + email: 'richardguo11@gmail.com', + linkedIn: 'https://www.linkedin.com/in/richardyguo/', + campus: 'LA / WCRI', + cohort: '46', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Durham', 'Austin'], + }, + { + company: 'McGraw-Hill Education', + name: 'Victor Wang', + email: 'vwang4536@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vwang4536', + campus: 'LA', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Consulting and technology services', + cities: ['Oakland', 'Irvine', 'Seattle', 'Boston'], + }, + { + company: 'McKinsey & Company', + name: 'Em Podhorcer', + email: 'epithe@gmail.com', + linkedIn: 'https://www.linkedin.com/feed/', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Engineer I', + industry: 'Consulting', + cities: ['Detroit', 'Phoenix', 'Wichita', 'San Francisco'], + }, + { + company: 'McKinsey & Company', + name: 'Matthew Yeon', + email: 'yeon34387@gmail.com', + linkedIn: 'https://www.linkedin.com/in/matthew-yeon/', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Software Engineer', + industry: 'Consulting', + cities: ['Detroit', 'Minneapolis'], + }, + { + company: 'MDCalc', + name: 'Jonah Wilkof', + email: 'wilkof.jonah@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonahwilkof/', + campus: 'NYC', + cohort: '7', + jobTitle: 'Software Engineer', + industry: 'Fintech, Payment Processing', + cities: ['Denver'], + }, + { + company: 'Medal.tv', + name: 'Joseph Heinz', + email: 'joeheinz99@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joseph-heinz1/', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Full Stack Engineer', + industry: 'Gaming', + cities: ['Bakersfield', 'Fort Wayne', 'Las Vegas'], + }, + { + company: 'MediaMonks NYC', + name: 'Case Simmons', + email: 'casesimmons@pm.me', + linkedIn: 'https://www.linkedin.com/mwlite/in/case-simmons', + campus: 'LA', + cohort: '38', + jobTitle: 'Creative Technologist', + industry: 'Digital Production', + cities: ['Berlin'], + }, + { + company: 'Mediaocean', + name: 'Parker Keller', + email: 'parkerkeller@gmail.com', + linkedIn: 'https://www.linkedin.com/in/parkerkeller/', + campus: 'LA', + cohort: '28', + jobTitle: 'Senior Software Engineer', + industry: 'Advertising & Marketing', + cities: ['Wichita', 'Greensboro'], + }, + { + company: 'Medical Informatics Engineering', + name: 'Keifer Alan Beck', + email: 'keiferbeck@gmail.com', + linkedIn: 'https://www.linkedin.com/in/k-alan-beck', + campus: 'FTRI / CTRI', + cohort: '16', + jobTitle: 'Fullstack Developer', + industry: 'Healthtech/Healthcare', + cities: ['Tucson', 'Chula Vista', 'Indianapolis', 'Lincoln'], + }, + { + company: 'Medidata', + name: 'Wontae Han', + email: 'wontaeh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/wontaeh/', + campus: 'NYC', + cohort: '4', + jobTitle: 'Frontend Engineer', + industry: '', + cities: ['Arlington', 'Mumbai', 'Plano'], + }, + { + company: 'Medium', + name: 'Keiran Carpen', + email: 'keirancarpen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/keirancarpen/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Senior Full Stack Engineer, Trust & Safety', + industry: 'Online publishing platform', + cities: ['Greensboro', 'Colorado Springs', 'Las Vegas', 'Virginia Beach'], + }, + { + company: 'Medly Pharmacy', + name: 'Austin Ruby', + email: 'austinjruby@gmail.com', + linkedIn: 'https://www.linkedin.com/in/austinjruby/', + campus: 'NYC', + cohort: '14', + jobTitle: 'Software Engineer I', + industry: 'Healthcare', + cities: ['Irvine', 'Boston'], + }, + { + company: 'MedMen', + name: 'Brendan Morrell', + email: 'brendanmorrell@gmail.com', + linkedIn: 'https://linkedin.com/in/brendanmorrell', + campus: 'LA', + cohort: '22', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Milwaukee', 'Lexington'], + }, + { + company: 'Meltwater', + name: 'Richard Lam', + email: 'rlam108994@gmail.com', + linkedIn: 'https://www.linkedin.com/in/richardlam108/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: 'Digital Media Intelligence', + cities: ['San Jose', 'St. Louis', 'Charlotte', 'Sรฃo Paulo'], + }, + { + company: 'MeltWater', + name: 'Sebastian Damazo', + email: 'sebastiandamazo1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ernesto-sebastian-damazo', + campus: 'LA', + cohort: '42', + jobTitle: 'Backend software engineer level 2', + industry: 'Software as a Service', + cities: ['North Las Vegas', 'Aurora'], + }, + { + company: 'Memorial Sloan Kettering', + name: 'David Zhang', + email: 'davidzhang8828@gmail.com', + linkedIn: 'https://www.linkedin.com/in/davdjz/', + campus: 'NYC', + cohort: '17', + jobTitle: 'Advanced Software Developer', + industry: 'Healthcare', + cities: ['Gilbert'], + }, + { + company: 'Memorial Sloan Kettering', + name: 'Phillip Yoo', + email: 'phillipyoo.218@gmail.com', + linkedIn: 'https://www.linkedin.com/in/phillipyoo218/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Bioinformatics Software Engineer I', + industry: 'Healthcare', + cities: ['Philadelphia', 'Tampa', 'San Antonio'], + }, + { + company: 'Memorial Sloan Kettering Cancer Center', + name: 'Raymond Kwan', + email: 'kwanvm@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rkwn/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Frontend Software Engineer', + industry: 'Health', + cities: ['Lubbock', 'Omaha', 'Berlin'], + }, + { + company: 'Memorial Sloan Kettering Cancer Center', + name: 'Natsuki Wada', + email: 'wachka06@gmail.com', + linkedIn: 'https://www.linkedin.com/in/natsukiwada/', + campus: 'FTRI', + cohort: '3', + jobTitle: 'Software Engineer II', + industry: 'Healthcare', + cities: ['Mesa', 'Milwaukee', 'Durham'], + }, + { + company: 'Mento', + name: 'James Highsmith', + email: 'me@jameshighsmith.com', + linkedIn: 'https://www.linkedin.com/in/jameshighsmith/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Lead Fullstack Engineer', + industry: 'HR', + cities: ['Philadelphia'], + }, + { + company: 'Mentorcam', + name: 'Stephen Rivas', + email: 'Stephen.Anthony.rivas@gmail.com', + linkedIn: 'https://linkedin.com/in/stephenscript', + campus: 'NYOI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Louisville', 'Berlin'], + }, + { + company: 'Mentra', + name: 'Mathew Hultquist', + email: 'mathew.j.hultquist@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mjhult/', + campus: 'PTRI', + cohort: '9', + jobTitle: 'Senior Full Stack Engineer', + industry: 'Software / Tech', + cities: ['San Antonio', 'Nashville', 'Saint Paul', 'Oakland'], + }, + { + company: 'Merck', + name: 'Jin Yoo', + email: 'iyoojin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/iyoojin/', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['Glendale', 'Tucson'], + }, + { + company: 'Meredith', + name: 'Kai Evans', + email: 'kaijosefevans@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonathan-jim-ramirez/', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer', + industry: 'Media Agency', + cities: ['Toledo'], + }, + { + company: 'Mess', + name: 'Anne-lise Emig', + email: 'anneliseemig@gmail.com', + linkedIn: 'linkedin.com/in/anneliseemig', + campus: 'FTRI / CTRI', + cohort: '15', + jobTitle: 'Junior Web Developer', + industry: 'Marketing', + cities: ['Albuquerque', 'Madison', 'Virginia Beach'], + }, + { + company: 'Meta', + name: 'Carlos Lovera', + email: 'Calovera@bu.edu', + linkedIn: '', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Partner Engineer', + industry: 'Fintech', + cities: ['Nashville', 'Detroit', 'Albuquerque', 'Tokyo'], + }, + { + company: 'Meta', + name: 'Jonathan Jim Ramirez', + email: 'jramirezor.91@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonathan-jim-ramirez/', + campus: 'PTRI', + cohort: '0', + jobTitle: 'Data Engineer', + industry: 'Social Media + VR', + cities: ['Albuquerque', 'Dallas', 'Irvine'], + }, + { + company: 'Meta', + name: 'Karandeep Ahluwalia', + email: 'karandeepahluwalia@gmail.com', + linkedIn: 'https://www.linkedin.com/in/karandeepahluwalia97/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Software Engineer', + industry: 'Technology', + cities: ['Albuquerque', 'Sรฃo Paulo'], + }, + { + company: 'Meta', + name: 'Tom Herrmann', + email: 'Tomherrmannd@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thomasherrmann1/', + campus: 'NYC', + cohort: '14', + jobTitle: 'Software engineer - E4', + industry: '', + cities: ['Corpus Christi', 'Durham'], + }, + { + company: 'Metecs', + name: 'Justin Lee Kirk', + email: 'justinleekirk@gmail.com', + linkedIn: 'https://www.linkedin.com/in/justinleekirk/', + campus: 'LA', + cohort: '48', + jobTitle: 'Software Engineer', + industry: 'Research', + cities: ['New York', 'Washington', 'Virginia Beach', 'Portland'], + }, + { + company: 'Metric5', + name: 'Alex Kang', + email: 'akang0408@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alex-kang/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Software Engineer', + industry: 'Information Technology & Services', + cities: ['Raleigh', 'Gilbert'], + }, + { + company: 'Metrolina Greenhouses', + name: 'Stefan Jordan', + email: 'sjordan2010@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stefan-w-jordan', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Frontend Software Engineer', + industry: 'Agriculture Science', + cities: ['Albuquerque', 'Gilbert', 'Beijing'], + }, + { + company: 'Microsoft', + name: 'Alonso Garza', + email: 'alonsogarza6@gmail.com', + linkedIn: 'https://www.linkedin.com/in/e-alonso-garza/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer II', + industry: 'Software', + cities: ['Madison', 'Gilbert', 'Long Beach', 'Boston'], + }, + { + company: 'Microsoft', + name: 'Bernie Green', + email: 'bgreen280@gmail.com', + linkedIn: 'https://www.linkedin.com/in/berniegreen/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Sydney', 'Toledo'], + }, + { + company: 'Microsoft', + name: 'Brad Morgan', + email: 'bkmorgan3@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bkmorgan3/', + campus: 'LA', + cohort: '31', + jobTitle: 'UI Engineer', + industry: 'Tech', + cities: ['Greensboro'], + }, + { + company: 'Microsoft', + name: 'Brandi Richardson', + email: 'brandi.jrichardson@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brandi-richardson-28295158/', + campus: 'LA', + cohort: '40', + jobTitle: 'Software Engineer ll', + industry: 'Computer Software', + cities: ['Winston-Salem', 'New Orleans', 'Colorado Springs', 'Houston'], + }, + { + company: 'Microsoft', + name: 'Brian Hong', + email: 'brianhhong96@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brianhhong', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer', + industry: 'Cloud', + cities: ['Chula Vista'], + }, + { + company: 'Microsoft', + name: 'Georgina Carr', + email: 'carre.georgina@gmail.com', + linkedIn: 'https://www.linkedin.com/in/georginacarr/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Software Engineer, Contract', + industry: 'tech', + cities: ['Garland', 'Glendale', 'Oakland', 'Reno'], + }, + { + company: 'Microsoft', + name: 'Andrew Dunne', + email: 'Drewdunne88@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andrew-dunne-7620bb84', + campus: 'LA / WCRI', + cohort: '53', + jobTitle: 'Senior Automation Engineer', + industry: 'Gaming', + cities: ['Chesapeake', 'Lexington'], + }, + { + company: 'Microsoft', + name: 'Griffin Roger Mccartney Silver', + email: 'griffinrogersilver@gmail.com', + linkedIn: 'https://www.linkedin.com/in/griffin-silver/', + campus: 'LA / WCRI', + cohort: '43', + jobTitle: 'Cloud Support Engineer', + industry: 'IT Services', + cities: ['Mesa', 'Oakland'], + }, + { + company: 'Microsoft', + name: 'Rella Cruz', + email: 'rellas.email@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rella/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Software Engineer Apprentice (LEAP Program)', + industry: 'Computer Technology', + cities: ['Minneapolis', 'San Jose'], + }, + { + company: 'Microsoft', + name: 'Silvia Kemp Miranda', + email: 'silvia.kemp@gmail.com', + linkedIn: 'https://www.linkedin.com/in/silviakmiranda/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Technical Program Manager', + industry: 'Technology', + cities: ['Tampa', 'Tulsa', 'Anaheim', 'Orlando'], + }, + { + company: 'Microsoft', + name: 'Timothy Jung', + email: 'timjj92@gmail.com', + linkedIn: 'www.linkedin.com/in/timjj92', + campus: 'LA', + cohort: '32', + jobTitle: 'Software Development Engineer', + industry: 'Cloud computing', + cities: ['Detroit', 'Omaha', 'Paris', 'Anaheim'], + }, + { + company: 'Microsoft', + name: 'Tjolanda "Sully" Sullivan', + email: 'tjolanda.sullivan@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tjolanda-sullivan/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer', + industry: 'Cloud Storage', + cities: ['Columbus', 'Norfolk', 'Arlington'], + }, + { + company: 'Microsoft', + name: 'William kencel', + email: 'Wkencel1@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '40', + jobTitle: 'React/react native/full stack engineer', + industry: 'Device payment system', + cities: ['Minneapolis'], + }, + { + company: 'Microsoft Leap Apprenticeship Program (via Aerotek)', + name: 'Roseanne Damasco', + email: 'rosedamasco@gmail.com', + linkedIn: 'https://www.linkedin.com/in/roseannedamasco/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer', + industry: 'Computer Software', + cities: ['Norfolk', 'Las Vegas'], + }, + { + company: 'Mighty', + name: 'Jakob Kousholt', + email: 'jakobjk@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jakobjk/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Software Engineer', + industry: 'Consumer Services', + cities: ['Mumbai', 'Oakland'], + }, + { + company: 'MightyHive', + name: 'Alyso Swerdloff', + email: 'alysonswerdloff@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alyson-swerdloff/', + campus: 'NYC', + cohort: '8', + jobTitle: 'Technical Solutions Engineer', + industry: 'Insurance/ cybersecurity', + cities: ['Corpus Christi', 'Pittsburgh'], + }, + { + company: 'Mimecast', + name: 'Tim Ruszala', + email: 'truszala@gmail.com', + linkedIn: 'https://www.linkedin.com/in/timruszala/', + campus: 'NYC', + cohort: '32', + jobTitle: 'Senior Software Engineer', + industry: 'Security', + cities: ['Omaha', 'Oakland', 'Denver', 'San Francisco'], + }, + { + company: 'MindBody', + name: 'Charlie Malave', + email: 'malavecharles@gmail.com', + linkedIn: 'https://www.linkedin.com/in/charlesmalave/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Software Engineer', + industry: 'Fitness Tech', + cities: ['Long Beach'], + }, + { + company: 'Mindbody ClassPass', + name: 'Christina Son', + email: 'christinason17@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christinason17/', + campus: 'FTRI / CTRI', + cohort: '7', + jobTitle: 'Software Engineer I', + industry: 'Fitness/Wellness', + cities: ['Irvine'], + }, + { + company: 'MindCloud', + name: 'Emily Chu', + email: 'lin.emily.chu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lin-chu/', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Junior Software Engineer', + industry: 'Software / Tech', + cities: ['Saint Paul', 'Los Angeles', 'Mumbai'], + }, + { + company: 'Mindstrong', + name: 'Chon Hou Ho', + email: 'chonhouh@gmail.com', + linkedIn: 'https://www.linkedin.com/mwlite/in/chon-hou-ho', + campus: 'FTRI', + cohort: '6', + jobTitle: 'Software Engineer I, Full Stack', + industry: 'Healthcare', + cities: ['St. Louis', 'Lexington'], + }, + { + company: 'Mirror.xyz', + name: 'Nathaniel Grossman', + email: 'nathanielbensongrossman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nathanielgrossman/', + campus: 'LA', + cohort: '22', + jobTitle: 'Software Engineer', + industry: 'Education', + cities: ['San Antonio', 'Los Angeles', 'Buffalo', 'Boston'], + }, + { + company: 'Mission Lane', + name: 'Ali Elhawary', + email: 'Alielhawary123@gmail.com', + linkedIn: '', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Mesa', 'Anaheim'], + }, + { + company: 'Mission Lane', + name: 'Esther Cho', + email: 'xesthercho@gmail.com', + linkedIn: 'https://www.linkedin.com/in/esther-cho/', + campus: 'LA', + cohort: '49', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Houston', 'Mesa', 'Greensboro', 'Milwaukee'], + }, + { + company: 'Mitchell Martin', + name: 'Jonathan Barenboim', + email: 'Jonathan.Barenboim@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonathan-barenboim/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: ['Tucson', 'San Diego', 'Wichita'], + }, + { + company: 'MJH Life Sciences', + name: 'Arthur Sato', + email: 'swatto12@gmail.com', + linkedIn: 'https://www.linkedin.com/in/arthursato', + campus: 'NYC', + cohort: '25', + jobTitle: 'React Developer', + industry: 'Health Care Media', + cities: ['Las Vegas', 'New Orleans', 'Milwaukee'], + }, + { + company: 'MKTG', + name: 'Garrett Lee', + email: 'geewai.lee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/geewailee/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Senior Software Developer', + industry: 'Marketing', + cities: ['Dallas'], + }, + { + company: 'MNTN', + name: 'Chris Franz', + email: 'chrisfranz@mac.com', + linkedIn: 'https://www.linkedin.com/in/chris--franz/', + campus: 'LA', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Advertising', + cities: ['Los Angeles', 'Tokyo', 'North Las Vegas'], + }, + { + company: 'MNTN', + name: 'Timothy Kachler', + email: 'kachler@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tkachler', + campus: 'LA', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Advertising', + cities: ['Fresno', 'St. Petersburg', 'Toronto'], + }, + { + company: 'MNTN', + name: 'Bryan Trang', + email: 'bryanltrang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bryanltrang/', + campus: 'LA / WCRI', + cohort: '58', + jobTitle: 'Fullstack Software Engineer', + industry: 'Other', + cities: ['Louisville', 'Sydney'], + }, + { + company: 'Moment House', + name: 'Hoon Choi', + email: 'vhchoi@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '10', + jobTitle: 'Sr. Software eng', + industry: 'Entertainment', + cities: ['Boston'], + }, + { + company: 'MongoDB', + name: 'Cris Newsome', + email: 'crisnewsome@outlook.com', + linkedIn: 'https://linkedin.com/in/crisnewsome', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer II', + industry: 'Tech?', + cities: ['Tucson', 'Irvine', 'Honolulu'], + }, + { + company: 'Monument', + name: 'Midori Yang', + email: 'midoki.yang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/midori-yang/', + campus: 'NYC', + cohort: '19', + jobTitle: '', + industry: 'Healthcare', + cities: ['Chula Vista'], + }, + { + company: "Moody's Analytics", + name: 'Alan Ye', + email: 'alye13@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alan-ye-008/', + campus: 'PTRI', + cohort: '4', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Jacksonville', 'Scottsdale', 'Pittsburgh', 'El Paso'], + }, + { + company: "Moody's Analytics", + name: 'Cara Dibdin', + email: 'cdibdin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cara-dibdin/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Senior Software Engineer', + industry: 'Finance', + cities: ['Raleigh', 'Greensboro', 'Virginia Beach'], + }, + { + company: 'Morgan Stanley', + name: 'Jackie Lin', + email: 'jackie.lin128@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jackielin12/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Developer', + industry: 'Finance', + cities: ['Mumbai', 'Plano', 'Sydney'], + }, + { + company: 'Morning Consult', + name: 'Lucas Lima Taffo', + email: 'lucas.taffo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lucastaffo/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Software Engineer II', + industry: 'Decision Intelligence', + cities: ['Plano', 'Tokyo', 'Jacksonville'], + }, + { + company: 'Mothership', + name: 'Carlos Perez', + email: 'crperez@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cpereztoro/', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Freight', + cities: ['Toronto', 'Jacksonville', 'Irving', 'Miami'], + }, + { + company: 'Motion Intelligence', + name: 'Russell F Hayward', + email: 'russdawg44@gmail.com', + linkedIn: 'https://www.linkedin.com/in/russell-hayward/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Cloud Developer', + industry: 'Automotive', + cities: ['El Paso', 'Raleigh', 'Henderson'], + }, + { + company: 'mPulse Mobile', + name: 'Devon Vaccarino', + email: 'devonev92@gmail.com', + linkedIn: 'https://www.linkedin.com/in/devon-vaccarino/', + campus: 'LA', + cohort: '30', + jobTitle: 'Mid Software Engineer', + industry: 'Health Communications', + cities: ['Scottsdale'], + }, + { + company: 'MRI-Simmons', + name: 'Dan Lin', + email: 'dannlin91@gmail.com', + linkedIn: 'https://www.linkedin.com/in/danlin91/', + campus: 'NYC', + cohort: '20', + jobTitle: 'UI Developer', + industry: 'Data Consumer', + cities: ['Omaha', 'Fort Wayne'], + }, + { + company: 'MUFG', + name: 'Parker Hutcheson', + email: 'pdhutcheson@gmail.com', + linkedIn: 'https://www.linkedin.com/in/parkerhutcheson/', + campus: 'FTRI / CTRI', + cohort: '4', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Anchorage', 'Fort Worth', 'London', 'Omaha'], + }, + { + company: 'Mulberry Technology', + name: 'Mia Kang', + email: 'fakeEmail3@fakeEmail.com', + linkedIn: 'https://www.linkedin.com/in/mia-kang/', + campus: 'PTRI', + cohort: '5', + jobTitle: 'Associate Engineer', + industry: 'Fintech', + cities: ['Berlin', 'Saint Paul', 'Beijing'], + }, + { + company: 'Multi Media, LLC', + name: 'Cameron Fitz', + email: 'hellocameronfitz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cameron-lee-fitz/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Product Manager, Growth', + industry: 'Entertainment', + cities: ['Stockton', 'Columbus', 'Miami'], + }, + { + company: 'Munera', + name: 'Yuehao Wong', + email: 'yuehaowong@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yuehaowong/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Full Stack Developer', + industry: 'Other', + cities: ['Denver', 'Kansas City', 'Mesa', 'Wichita'], + }, + { + company: 'Musee Archives', + name: 'Walter David DeVault', + email: 'wdd4services@outlook.com', + linkedIn: 'https://www.linkedin.com/in/walter-devault', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Full-Stack Software Engineer', + industry: 'Media', + cities: ['Lincoln', 'El Paso', 'Chandler'], + }, + { + company: 'MX', + name: 'Harlan Evans', + email: 'harlanevans5@gmail.com', + linkedIn: 'https://www.linkedin.com/mwlite/in/harlan-evans', + campus: 'LA', + cohort: '40', + jobTitle: 'Front end Software engineer (mid-sr)', + industry: 'Fintech', + cities: ['St. Petersburg', 'Tulsa', 'Sacramento', 'North Las Vegas'], + }, + { + company: 'MX', + name: 'Mike Coker', + email: 'mbcoker100@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mike-coker/', + campus: 'LA', + cohort: '35', + jobTitle: 'Backend JavaScript Engineer', + industry: 'Fintech', + cities: ['Cleveland', 'Nashville', 'Garland', 'Chandler'], + }, + { + company: 'Naked Development', + name: 'Cayla Co', + email: 'caylasco@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cayla-co/', + campus: 'FTRI', + cohort: '6', + jobTitle: 'Senior Full Stack Developer', + industry: 'Digital Advertising', + cities: ['Los Angeles', 'Memphis', 'Irvine'], + }, + { + company: 'Namely', + name: 'Yujin kang', + email: 'ykang7858@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'SaaS / HR startup', + cities: ['Kansas City', 'Scottsdale', 'Indianapolis'], + }, + { + company: 'Narmi', + name: 'Derek Lam', + email: 'derekquoc@gmail.com', + linkedIn: 'https://www.linkedin.com/in/derekqlam/', + campus: 'LA', + cohort: '40', + jobTitle: 'Solutions Engineer', + industry: 'Fintech', + cities: ['Irvine', 'Chicago', 'Cincinnati'], + }, + { + company: 'Narrativ', + name: 'Lisa Han', + email: 'jjlisahan@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lisajjhan/', + campus: 'NYC', + cohort: '17', + jobTitle: 'Software Engineer', + industry: 'E-commerce', + cities: ['Stockton', 'Tampa'], + }, + { + company: 'National Grid', + name: 'Edward Deng', + email: 'edeng4237@gmail.com', + linkedIn: 'https://www.linkedin.com/in/edwarddeng-/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: 'Utilities', + cities: ['Gilbert', 'Winston-Salem', 'Virginia Beach', 'Berlin'], + }, + { + company: 'Navitus', + name: 'Young Kim', + email: 'young.kim770@gmail.com', + linkedIn: 'https://www.linkedin.com/in/young-j-kim', + campus: 'FTRI / CTRI', + cohort: '12', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['Wichita', 'San Francisco'], + }, + { + company: 'NBA', + name: 'Cecily Jansen', + email: 'cecilyjansen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cecily-j/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Associate Front-End Engineer', + industry: 'Sports & Entertainment Media', + cities: ['Boston', 'Greensboro'], + }, + { + company: 'NBCUniversal', + name: 'Sam Arnold', + email: 'sam.arnold72@gmail.com', + linkedIn: 'https://www.linkedin.com/in/samarnold723/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Software Engineer II', + industry: 'Entertainment', + cities: ['Detroit', 'Chicago', 'Saint Paul', 'Paris'], + }, + { + company: 'NBCUniversal Media', + name: 'Jimmy Phong', + email: 'jayacados@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jphongmph/', + campus: 'LA', + cohort: '35', + jobTitle: 'Senior Software Engineer', + industry: 'Media and Entertainment', + cities: ['San Antonio', 'Garland', 'Chandler', 'Saint Paul'], + }, + { + company: 'NCR', + name: 'Bryan Chau', + email: 'chaubryan@hotmail.com', + linkedIn: 'https://www.linkedin.com/in/chaubryan1', + campus: 'LA / WCRI', + cohort: '47', + jobTitle: 'SW Engineer III', + industry: 'IT Services', + cities: ['Pittsburgh', 'Philadelphia', 'Portland', 'San Jose'], + }, + { + company: 'NEC', + name: 'Stacey Lee', + email: 'staceyjlee18@gmail.com', + linkedIn: 'https://www.linkedin.com/in/staceyjhlee/', + campus: 'FTRI / CTRI', + cohort: '16', + jobTitle: 'Full Stack Engineer', + industry: 'Business Tech/Enterprise Tech', + cities: ['Dallas', 'Plano', 'Long Beach', 'Denver'], + }, + { + company: 'Neiro AI', + name: 'Daria Mordvinov', + email: 'daria.mordvinov@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dariamordvinov/', + campus: 'NYOI', + cohort: '1', + jobTitle: 'Frontend Engineer', + industry: 'Artificial Intelligence', + cities: ['Norfolk', 'Jersey City'], + }, + { + company: 'Nelnet', + name: 'Zach Brucker', + email: 'zach.brucker@gmail.com', + linkedIn: 'https://www.linkedin.com/in/zachbrucker/', + campus: 'LA', + cohort: '41', + jobTitle: 'Full-Stack Developer', + industry: 'Fintech', + cities: ['Sacramento', 'Toledo', 'Bakersfield'], + }, + { + company: 'Neo.Tax', + name: 'Lindsay Baird', + email: 'lindsay.a.baird@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lindsaybaird/', + campus: 'LA', + cohort: '45', + jobTitle: 'Full-Stack Software Engineer', + industry: 'Fintech', + cities: ['Kansas City', 'San Jose', 'Baltimore'], + }, + { + company: 'Neo.tax', + name: 'Miguel Hernandez', + email: 'miguelh72@outlook.com', + linkedIn: 'https://www.linkedin.com/in/miguelh72/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Senior Full-Stack Software Engineer', + industry: 'Fintech', + cities: ['Arlington', 'Anchorage', 'Honolulu'], + }, + { + company: 'Nespresso', + name: 'Raymond Huang', + email: 'raymond.huang1011@gmail.com', + linkedIn: 'https://www.linkedin.com/in/raymondhuang95/', + campus: 'NYC / ECRI', + cohort: '31', + jobTitle: 'Associate Front-End Developer', + industry: 'Other', + cities: ['Washington'], + }, + { + company: 'Netflix', + name: 'Josie Glore', + email: 'Josieglore@gmail.com', + linkedIn: 'https://www.linkedin.com/in/josie-glore/', + campus: 'LA', + cohort: '25', + jobTitle: 'Technologist', + industry: 'Fashion', + cities: ['Aurora', 'Nashville'], + }, + { + company: 'Netflix', + name: 'Sagar Velagala', + email: 'sagar.velagala@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sagarvelagala/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Sr. Analytics Engineer', + industry: 'Software / Tech', + cities: ['Anchorage'], + }, + { + company: 'Netflix', + name: 'Victoria Adnet', + email: 'victoria.adnet@gmail.com', + linkedIn: 'https://www.linkedin.com/in/victoria-lellis/', + campus: 'LA', + cohort: '29', + jobTitle: 'Technologist', + industry: 'Entertainment', + cities: ['El Paso', 'Las Vegas', 'Cincinnati'], + }, + { + company: 'Netskope', + name: 'Mariya Eyges', + email: 'mariya.sf@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mariya-eyges-8511131/', + campus: 'PTRI', + cohort: 'Beta', + jobTitle: 'Software Engineer', + industry: 'Security Cloud', + cities: ['Cleveland', 'Gilbert'], + }, + { + company: 'Neulion', + name: 'Myles Green', + email: 'mylescorygreen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/myles-c-green/', + campus: 'NYC', + cohort: '4', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Seattle', 'Phoenix'], + }, + { + company: 'New York Institute of Technology College of Osteopathic Medicine', + name: 'Justin Ribarich', + email: 'jribarich98@gmail.com', + linkedIn: 'https://www.linkedin.com/in/justin-ribarich', + campus: 'NYOI', + cohort: '2', + jobTitle: 'Full Stack Developer', + industry: 'Education/Edtech', + cities: ['Plano', 'Reno', 'Chicago', 'Beijing'], + }, + { + company: 'Newsela', + name: 'Anthony Terruso', + email: 'aterruso@gmail.com', + linkedIn: 'https://www.linkedin.com/in/anthony-w-terruso/', + campus: 'NYC', + cohort: '7', + jobTitle: 'Senior Web Application Developer', + industry: '', + cities: ['Bakersfield', 'Albuquerque'], + }, + { + company: 'Nexient', + name: 'James Kolotouros', + email: 'dkolotouros1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jameskolotouros', + campus: 'NYC', + cohort: '22', + jobTitle: 'Software Developer II', + industry: 'Tech', + cities: ['Cleveland', 'Minneapolis'], + }, + { + company: 'Nexient', + name: 'Gaber Mowiena', + email: 'gaber.abouelsoud@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gabermowiena/', + campus: 'NYC', + cohort: '9', + jobTitle: 'Frontend Developer', + industry: 'Tech products', + cities: ['Gilbert', 'Lexington'], + }, + { + company: 'Nexstar Media Group', + name: 'Beckett Hanan', + email: 'beckett.hanan@gmail.com', + linkedIn: 'https://www.linkedin.com/in/becketthanan/', + campus: 'PTRI', + cohort: 'Beta', + jobTitle: 'Front End Software Engineer', + industry: 'Media', + cities: ['El Paso', 'Cincinnati', 'Chandler', 'Cleveland'], + }, + { + company: 'NextGen Healthcare', + name: 'Samuel Tran', + email: 'samwell.tran@gmail.com', + linkedIn: 'https://www.linkedin.com/in/samuel-tran-836448231/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Software Engineer II', + industry: 'Healthcare', + cities: ['El Paso'], + }, + { + company: 'NextME', + name: 'Linh Tran', + email: 'linhtanl51@gmail.com', + linkedIn: 'https://www.linkedin.com/in/linhatran', + campus: 'LA', + cohort: '40', + jobTitle: 'Senior Software Engineer', + industry: 'Management', + cities: ['Louisville', 'Las Vegas', 'Wichita'], + }, + { + company: 'NFL', + name: 'Michael Blanchard', + email: 'michael.james.blanchard@gmail.com', + linkedIn: 'https://www.linkedin.com/in/miblanchard12/', + campus: 'LA', + cohort: '7', + jobTitle: 'Director of Engineering - Platform', + industry: 'Media / Sports', + cities: ['New York', 'Seattle', 'New Orleans'], + }, + { + company: 'Niantic', + name: 'Oliver Zhang', + email: 'zezang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/oliver-zhang91', + campus: 'PTRI', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Riverside', 'Anchorage', 'Colorado Springs', 'Garland'], + }, + { + company: 'Nielsen', + name: 'Alexander Tu', + email: 'alexandertu95@gmail.com', + linkedIn: 'https://www.linkedin.com/in/atu816', + campus: 'FTRI / CTRI', + cohort: '12', + jobTitle: 'Senior Software Engineer', + industry: 'Business Analytics', + cities: ['Laredo', 'Tucson', 'Tulsa'], + }, + { + company: 'Nielsen', + name: 'Diana Kim', + email: 'ruslanovna.kim@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ruslanovna/', + campus: 'NYC / ECRI', + cohort: '31', + jobTitle: 'Software Engineer II', + industry: 'Business Analytics', + cities: ['Anchorage', 'Cleveland'], + }, + { + company: 'Nielsen Sports', + name: 'Karina Illesova', + email: 'karin.illesova@gmail.com', + linkedIn: 'https://www.linkedin.com/in/karin-illesova/', + campus: 'LA', + cohort: '41', + jobTitle: 'Sr Software Engineer', + industry: 'Information Technology & Services', + cities: ['St. Louis', 'Corpus Christi'], + }, + { + company: 'Nike', + name: 'adrian Sun', + email: 'Adriansun2@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adrian-sun', + campus: 'LA', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Travel', + cities: ['Cleveland', 'Lexington', 'Miami'], + }, + { + company: 'Nimble', + name: 'Zachary Daniels', + email: 'Zackdanielsnyc@gmail.com', + linkedIn: 'LinkedIn.com/in/zackdanielsnyc', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Baltimore', 'Glendale'], + }, + { + company: 'Nobel.AI', + name: 'Kate Chanthakaew', + email: 'kubkate@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kate-chanthakaew/', + campus: 'LA', + cohort: '36', + jobTitle: 'Full Stack Engineer', + industry: 'Scientist R&D', + cities: ['Seattle', 'Fresno', 'Anchorage'], + }, + { + company: 'Noblr Insurance', + name: 'Brian Taylor', + email: 'brian.taylor818@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brianwtaylor/', + campus: 'LA', + cohort: '22', + jobTitle: 'Software Engineer', + industry: 'Health', + cities: ['Detroit'], + }, + { + company: 'Nomad Health', + name: 'Julia Bakerink', + email: 'juliabakerink@gmail.com', + linkedIn: 'https://www.linkedin.com/in/juliabakerink/', + campus: 'LA', + cohort: '48', + jobTitle: 'Fullstack Software Engineer', + industry: 'Healthcare', + cities: ['Sydney', 'Toledo', 'Glendale'], + }, + { + company: 'Nomad Health', + name: 'Neftali Dominguez', + email: 'n.l.dominguez23@gmail.com', + linkedIn: 'https://www.linkedin.com/in/neftalildominguez/', + campus: 'LA', + cohort: '30', + jobTitle: 'Senior Software Engineer', + industry: 'Health', + cities: ['Irving', 'Corpus Christi', 'Tokyo', 'Tampa'], + }, + { + company: 'Nordstrom', + name: 'Vicki Lee', + email: 'leevicki01@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vlee022/', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer', + industry: 'E-Commerce / Fashion', + cities: ['Buffalo', 'Minneapolis'], + }, + { + company: 'Nordstrom', + name: 'Sohee Lee', + email: 'soheelee1985@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sohee419/', + campus: 'LA', + cohort: '46', + jobTitle: 'Engineer 2', + industry: 'Fintech', + cities: ['Reno'], + }, + { + company: 'Nordstrom Rack | HauteLook', + name: 'Robb Eastman', + email: 'ereastman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/robbeastman/', + campus: 'LA', + cohort: '31', + jobTitle: 'Software Engineer I, Web', + industry: 'Fashion', + cities: ['Miami', 'Toledo', 'Baltimore'], + }, + { + company: 'Noria Water Technologies', + name: 'Umair Shafiq', + email: 'umairshafiqprof@gmail.com', + linkedIn: 'https://www.linkedin.com/in/umair-w-shafiq/', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Associate Developer', + industry: 'Other', + cities: ['Raleigh'], + }, + { + company: 'North American Bancard', + name: 'Edward Chow', + email: 'Pdphybrid@gmail.com', + linkedIn: 'https://www.linkedin.com/in/edkchow/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Full Stack Engineer', + industry: 'Fintech', + cities: ['Fort Wayne', 'Detroit', 'Riverside'], + }, + { + company: 'Northflank', + name: 'Emma Genesen', + email: 'genesen.emma@gmail.com', + linkedIn: 'https://www.linkedin.com/in/emma-genesen/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Head of Developer Marketing', + industry: 'Cloud Services', + cities: ['Anaheim', 'Houston', 'Glendale', 'Chula Vista'], + }, + { + company: 'Northrop Grumman', + name: 'David Lopez', + email: 'd7lopez@gmail.com', + linkedIn: 'https://www.linkedin.com/in/david-michael-lopez/', + campus: 'NYC / ECRI', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Aerospace', + cities: ['Baltimore'], + }, + { + company: 'Northrop Grumman', + name: 'Michael Way', + email: 'mjway01@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michaeljway/', + campus: 'PTRI', + cohort: '10', + jobTitle: 'Cognitive Software Engineer', + industry: 'Aerospace', + cities: ['Baltimore'], + }, + { + company: 'Northspyre', + name: 'Vaughn Sulit', + email: 'bvaughnsulit@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bvaughnsulit/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Full Stack Engineer', + industry: 'Real Estate', + cities: ['El Paso'], + }, + { + company: 'Northwestern Mutual', + name: 'Hussein Hamade', + email: 'hamade.hussein00@gmail.com', + linkedIn: 'https://www.linkedin.com/in/husseinhamade1/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Software Engineer (P2 - Midlevel)', + industry: 'Fintech', + cities: ['Virginia Beach'], + }, + { + company: 'Northwestern Mutual', + name: 'Jake Policano', + email: 'jdpolicano@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jacob-policano/', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: ['Greensboro'], + }, + { + company: 'Northwestern Mutual', + name: 'Max Lee', + email: 'maxolee23@gmail.com', + linkedIn: 'https://www.linkedin.com/in/max-lee1', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Full Stack Software Engineer', + industry: 'Fintech', + cities: ['Fort Wayne'], + }, + { + company: 'Northwestern Mutual', + name: 'Vince Nguyen', + email: 'vince.g.nguyen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vince-nguyen/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Full Stack Software Engineer', + industry: 'Fintech/Insurance', + cities: ['Mexico City'], + }, + { + company: 'Northwestern Mutual', + name: 'Warren Harrison Tait', + email: 'warrenhtait@gmail.com', + linkedIn: 'https://www.linkedin.com/in/warrenhtait/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Full Stack Software Engineer', + industry: 'Fintech', + cities: ['Bakersfield', 'Plano'], + }, + { + company: 'Not currently employed in tech/as a dev', + name: 'Evan Deam', + email: 'ebdeam@gmail.com', + linkedIn: 'https://www.linkedin.com/in/evandeam/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Registered Nurse', + industry: 'Healthtech/Healthcare', + cities: ['Glendale'], + }, + { + company: 'Notion', + name: 'Marissa Lafontant', + email: 'marissa.lafontant@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mlafontant/', + campus: 'NYC', + cohort: '2', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Boston', 'Albuquerque', 'Tampa', 'Miami'], + }, + { + company: 'Nousot', + name: 'Winslow Taylor', + email: 'winslow.benjamin.taylor@gmail.com', + linkedIn: 'https://www.linkedin.com/in/winslow-taylor/', + campus: 'FTRI', + cohort: '6', + jobTitle: 'Advance Associate', + industry: 'IT, SaaS', + cities: ['Plano', 'Santa Ana', 'Stockton', 'Newark'], + }, + { + company: 'Noyo', + name: 'Jonathan Mendoza', + email: 'j.d.mendoza415@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonathan-mendoza1', + campus: 'LA', + cohort: '41', + jobTitle: 'L1 Engineer', + industry: 'Heath care', + cities: ['Stockton', 'Berlin', 'New York'], + }, + { + company: 'NPR', + name: 'Alex Mannix', + email: 'alexleemannix@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alex-mannix-53015668/', + campus: 'NYC', + cohort: '5', + jobTitle: 'Junior Software Engineer', + industry: '', + cities: ['Chesapeake'], + }, + { + company: 'NPR', + name: 'Jordan Grubb', + email: 'imjordangrubb@gmail.com', + linkedIn: 'https://www.linkedin.com/in/j-grubb/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Software Engineer', + industry: 'Subscriptions', + cities: ['San Francisco', 'Madison'], + }, + { + company: 'NPR', + name: 'Samantha Wessel', + email: 'samantha.n.wessel@gmail.com', + linkedIn: 'https://www.linkedin.com/in/samantha-wessel/', + campus: 'LA', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'News Media', + cities: ['Plano'], + }, + { + company: 'NU Borders', + name: 'Ryan Tumel', + email: 'rtumel123@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ryan-tumel/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Information Technology & Services', + cities: ['Austin'], + }, + { + company: 'NWEA', + name: 'Celene Chang', + email: 'Celene Chang', + linkedIn: 'https://www.linkedin.com/in/celenecchang/', + campus: 'LA', + cohort: '48', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['London', 'Jacksonville', 'Glendale', 'Lubbock'], + }, + { + company: 'NYU Langone Health', + name: 'Alexander Lin', + email: 'alexanderlin164@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexander-lin-8aab79167/', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Developer 1', + industry: 'Healthtech/Healthcare', + cities: ['Dallas', 'Atlanta', 'Virginia Beach', 'San Antonio'], + }, + { + company: 'O POSITIV', + name: 'Jonah Lin', + email: 'jjonah.lin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/linjonah/', + campus: 'LA', + cohort: '33', + jobTitle: 'Software Engineer (eCommerce)', + industry: 'E-commerce', + cities: ['Fresno', 'San Jose', 'Virginia Beach'], + }, + { + company: 'ObvioHealth', + name: 'Joshua Jordan', + email: 'josh.r.jordan@gmail.com', + linkedIn: 'https://www.linkedin.com/in/josh-r-jordan/', + campus: 'NYC / ECRI', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Biotech', + cities: ['Saint Paul', 'Reno', 'North Las Vegas', 'Denver'], + }, + { + company: 'OceanX', + name: 'Jun Lee', + email: 'jushuworld@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jushuworld/', + campus: 'LA', + cohort: '29', + jobTitle: 'Full Stack Developer', + industry: 'E-commerce', + cities: ['Sรฃo Paulo'], + }, + { + company: 'Ocrolus', + name: 'Daniel Shu', + email: 'shudaniel95@gmail.com', + linkedIn: 'https://www.linkedin.com/in/danielshu/', + campus: 'NYC', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Blockchain', + cities: ['San Jose', 'Anchorage'], + }, + { + company: 'Octane Lending', + name: 'Christian Paul Ejercito', + email: 'chris.paul.ejercito@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christian-paul-ejercito/', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer II', + industry: 'Fintech', + cities: ['Arlington', 'Mexico City'], + }, + { + company: 'Odie Pet Insurance', + name: 'Nicholas Echols', + email: 'nechols87@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nickechols87/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Senior Software Engineer', + industry: '', + cities: ['Nashville'], + }, + { + company: 'ODME Solutions', + name: 'Jackqueline Nguyen', + email: 'jackquelineanguyen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jackquelinenguyen/', + campus: 'LA / WCRI', + cohort: '54', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Garland'], + }, + { + company: 'Okta', + name: 'Sterling Deng', + email: 'sterlingdeng@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sterling-deng/', + campus: 'LA', + cohort: '27', + jobTitle: 'Software Engineer', + industry: 'SaaS - Security', + cities: ['Jacksonville'], + }, + { + company: 'Olive AI', + name: 'Saejin Kang', + email: 'saejin.kang1004@gmail.com', + linkedIn: 'https://www.linkedin.com/in/saejinkang1004/', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['Wichita'], + }, + { + company: 'Olivine Inc', + name: 'Yirou Chen', + email: 'yirou.zm@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yirouchen/', + campus: 'PTRI', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Gilbert', 'Minneapolis', 'Chula Vista', 'Columbus'], + }, + { + company: 'Ollie', + name: 'Brynn Sakell', + email: 'brynnsakell@gmail.com', + linkedIn: 'www.linkedin.com/in/brynnsakell', + campus: 'NYOI', + cohort: '1', + jobTitle: 'Software Engineer, Front End', + industry: 'Other', + cities: ['Anaheim', 'Minneapolis', 'Tucson'], + }, + { + company: 'Omaze', + name: 'Rachel Kim', + email: 'rayykim323@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rayykim/', + campus: 'LA', + cohort: '31', + jobTitle: 'Software Engineer', + industry: 'Fundraising', + cities: ['Milwaukee'], + }, + { + company: 'OneSignal', + name: 'Dean Ohashi', + email: 'd.n.ohashi@gmail.com', + linkedIn: 'https://www.linkedin.com/in/deanohashi/', + campus: 'LA', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'MarTech', + cities: ['Raleigh', 'Toronto', 'Tokyo', 'Virginia Beach'], + }, + { + company: 'OneTrack.AI', + name: 'Alexander Martinez', + email: 'alexmartinez7184@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexander-martinez415/', + campus: 'LA / WCRI', + cohort: '53', + jobTitle: 'Implementation Support Engineer', + industry: 'Artificial Intelligence', + cities: ['San Antonio', 'Columbus', 'Lincoln', 'Irving'], + }, + { + company: 'OneView', + name: 'Sean Yoo', + email: 'yooys87@gmail.com', + linkedIn: 'https://www.linkedin.com/in/seanyyoo/', + campus: 'LA', + cohort: '43', + jobTitle: 'Full Stack Developer', + industry: 'ECommerce', + cities: ['Austin', 'Plano'], + }, + { + company: 'Onyx Team at JP Morgan Chase', + name: 'Dwayne Richards', + email: 'dwaynerichards@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dnkrichards', + campus: 'NYC / ECRI', + cohort: '24', + jobTitle: 'Senior Blockchain Engineer', + industry: 'Blockchain/Web3', + cities: ['Pittsburgh'], + }, + { + company: 'Oomph', + name: 'Rob Mosher', + email: 'rob@robmosher.com', + linkedIn: 'https://www.linkedin.com/in/rob-mosher-it/', + campus: 'NYOI', + cohort: '1', + jobTitle: 'Senior Software Engineer', + industry: 'Software / Tech', + cities: ['Minneapolis', 'New Orleans'], + }, + { + company: 'OpenFin', + name: 'Elliott Burr', + email: 'elliottnburr@gmail.com', + linkedIn: 'https://www.linkedin.com/in/elliott-burr/', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Tulsa', 'Scottsdale', 'Chandler', 'Mesa'], + }, + { + company: 'Openfin', + name: 'Hina Khalid', + email: 'k.hinaa87@gmail.com', + linkedIn: '', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Software engineer', + industry: 'Fintech', + cities: ['Tampa', 'Tulsa', 'Long Beach', 'San Diego'], + }, + { + company: 'Opentrons', + name: 'Geovanni Alarcon', + email: 'geovannialarcon92@gmail.com', + linkedIn: 'https://www.linkedin.com/in/geo-alarcon/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Biotech, Robotics', + cities: ['Cincinnati'], + }, + { + company: 'Opentrons', + name: 'Jamey Huffnagle', + email: 'mjhuffnagle@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jamey-huffnagle/', + campus: 'NYOI', + cohort: '3', + jobTitle: 'Senior Software Engineer', + industry: 'Biotech', + cities: ['Tokyo', 'San Jose'], + }, + { + company: 'Optimize Health', + name: 'Kim Mai Nguyen', + email: 'kim.mai.e.nguyen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nkmai/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['Sรฃo Paulo'], + }, + { + company: 'Optum', + name: 'Austin Johnson', + email: 'austinlovesworking@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lovesworking/', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Full stack dev', + industry: 'Healthcare', + cities: ['Newark', 'London'], + }, + { + company: 'Oscar Health', + name: 'Brian Kang', + email: 'brkang1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thebriankang/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Software Engineer (E2)', + industry: 'Health', + cities: ['Paris'], + }, + { + company: 'Oscar Health', + name: 'Brian Kang', + email: 'brkang1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thebriankang/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Software Engineer (E2)', + industry: 'Health', + cities: ['Santa Ana', 'Boston'], + }, + { + company: 'Oscar Health', + name: 'Sergey Zeygerman', + email: 'sergey@zeygerman.com', + linkedIn: 'https://www.linkedin.com/in/sergey-zeygerman/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Software Engineer, Web & Mobile', + industry: 'Insurance', + cities: ['Tulsa', 'Irving', 'Seattle'], + }, + { + company: 'OTG Experience', + name: 'Chang Cai', + email: 'Chang.Cai@pm.me', + linkedIn: 'https://www.linkedin.com/in/chang-c-cai/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Typescript NodeJS Senior Engineer', + industry: 'Hospitality', + cities: ['Sydney', 'Baltimore'], + }, + { + company: 'Other World Computing', + name: 'Miles Wright', + email: 'mileswright818@gmail.com', + linkedIn: 'https://www.linkedin.com/in/miles-m-wright/', + campus: 'LA / WCRI', + cohort: '45', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Fort Wayne', 'Austin'], + }, + { + company: 'Ouraring', + name: 'Jenna Hamza', + email: 'jennashamza@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jennahamza', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Full Stack Developer', + industry: 'Other', + cities: ['Chicago', 'London', 'North Las Vegas', 'Henderson'], + }, + { + company: 'Outside Analytics', + name: 'Timeo Williams', + email: 'timeo.j.williams@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '24', + jobTitle: 'FullStack Software Engineer', + industry: 'Analytics, Defense', + cities: ['Anaheim', 'Irving'], + }, + { + company: 'Ovis Technologies', + name: 'Andrew Lovato', + email: 'andrew.lovato@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andrew-lovato/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Senior Full Stack Developer', + industry: 'Fintech', + cities: ['Lexington'], + }, + { + company: 'Ovis Technologies', + name: 'David Soerensen', + email: 'Dsoerensen28@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '18', + jobTitle: 'Senior Fullstack Developer', + industry: 'Fintech', + cities: ['Henderson', 'Gilbert', 'Cincinnati', 'Anaheim'], + }, + { + company: 'OwnerIQ Inc.', + name: 'Alejandro Romero', + email: 'alexrom789@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alejandromromero/', + campus: 'NYC', + cohort: '4', + jobTitle: 'Software Engineer', + industry: '', + cities: ['San Antonio', 'Henderson'], + }, + { + company: 'Ownet', + name: 'Ari bengiyat', + email: 'ari@aribengiyat.com', + linkedIn: 'https://www.linkedin.com/in/ari-bengiyat', + campus: 'NYOI', + cohort: '2', + jobTitle: 'Senior Software Engineer', + industry: 'Media', + cities: ['Chicago'], + }, + { + company: 'Palmetto', + name: 'Fan Shao', + email: 'fanny.shao18@gmail.com', + linkedIn: 'https://www.linkedin.com/in/fan-shao/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Software Engineer', + industry: 'Renewable Energy', + cities: ['Madison'], + }, + { + company: 'Panda Express', + name: 'Krystal Chen', + email: 'Kcrystalchen@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '31', + jobTitle: 'Software developer', + industry: 'Restaurant', + cities: ['Cleveland', 'Anaheim'], + }, + { + company: 'Paperless Parts', + name: 'Scott Campbell', + email: 'thisisscottcampbell@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thisisscottcampbell/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Contract Manufacturing', + cities: ['Charlotte', 'Oklahoma City', 'San Diego'], + }, + { + company: 'Paragon Application Systems', + name: 'Autumn Wallen', + email: 'mymail1269@gmail.com', + linkedIn: 'https://www.linkedin.com/in/autumn-wallen/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Software Engineer II', + industry: 'Fintech', + cities: ['Cleveland'], + }, + { + company: 'Paramount+', + name: 'Todd Alexander', + email: 'todd.alexander@me.com', + linkedIn: 'https://www.linkedin.com/in/toddalex/', + campus: 'LA', + cohort: '35', + jobTitle: 'Senior SWE', + industry: 'Entertainment', + cities: ['Irvine', 'Lubbock'], + }, + { + company: 'Paramount++', + name: 'Evan Emenegger', + email: 'evanemenegger@gmail.com', + linkedIn: 'https://www.linkedin.com/in/evan-emenegger/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Software Engineer, Frontend', + industry: 'Entertainment', + cities: ['Atlanta'], + }, + { + company: 'Parative', + name: 'Mariko Iwata', + email: 'mariko.iwata@gmail.com', + linkedIn: 'https://www.linkedin.com/in/marikoiwata/', + campus: 'PTRI', + cohort: '9', + jobTitle: 'Senior Front End Engineer', + industry: 'Sales', + cities: ['Chula Vista', 'Lexington', 'Corpus Christi'], + }, + { + company: 'Passage.io', + name: 'Yusuf Nevruz Olmez', + email: 'nvrz@windowslive.com', + linkedIn: 'https://www.linkedin.com/in/nevruzolmez', + campus: 'NYC / ECRI', + cohort: '33', + jobTitle: 'Full Stack Developer', + industry: 'Blockchain/Web3', + cities: ['Boston', 'Fort Wayne'], + }, + { + company: 'PassiveLogic', + name: 'Tanner Hesterman', + email: 'tannerhesterman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tannerhesterman/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Junior Software Engineer', + industry: 'Software / Tech', + cities: ['Santa Ana', 'Seattle'], + }, + { + company: 'PavCon', + name: 'Bradley Woolf', + email: 'bradleymwoolf@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bradley-woolf/', + campus: 'LA', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Federal Defense', + cities: ['St. Louis', 'Philadelphia'], + }, + { + company: 'Pavemint', + name: 'Vivian Cermeno', + email: 'vcermeno6@gmail.com', + linkedIn: 'https://www.linkedin.com/in/viviancermeno/', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Parking', + cities: ['Winston-Salem', 'Mexico City'], + }, + { + company: 'Pax8', + name: 'Steve Frend', + email: 'stevefrend1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stevefrend/', + campus: 'LA', + cohort: '35', + jobTitle: 'Software Engineer II', + industry: 'Cloud services', + cities: ['Dallas', 'Lexington', 'Atlanta', 'Greensboro'], + }, + { + company: 'Paypal', + name: 'Cynthia Franqui', + email: 'cynthiafranqui@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cynthiafranqui/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer II', + industry: 'Fintech', + cities: ['Anchorage'], + }, + { + company: 'Paypal', + name: 'Stanley Huang', + email: 'Huang.stan@icloud.com', + linkedIn: '', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer II (T23)', + industry: 'electronic Payment/ financial services', + cities: ['Cleveland', 'Tucson'], + }, + { + company: 'PayPal', + name: 'Jason Yu', + email: 'jasonyu@hotmail.com', + linkedIn: 'https://www.linkedin.com/in/json-yu/', + campus: 'LA', + cohort: '32', + jobTitle: 'Software Engineer 2', + industry: 'Fintech', + cities: ['Boston', 'Irvine'], + }, + { + company: 'PayPal', + name: 'Jorge Espinoza', + email: 'jorge.e.espinoza.57@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jorge-e-espinoza1/', + campus: 'FTRI', + cohort: '3', + jobTitle: 'Software Engineer I', + industry: 'Fintech', + cities: ['Toledo', 'Saint Paul'], + }, + { + company: 'PayPal', + name: 'Qwen Ballard', + email: 'qwen.ballard@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mqballard/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Full Stack Developer', + industry: 'Fintech', + cities: ['Arlington', 'Laredo'], + }, + { + company: 'PayPal (Happy Returns)', + name: 'Lawrence Han', + email: 'lawrencehan3@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lawrence-han/', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer', + industry: 'Logistics', + cities: ['Columbus', 'Lincoln'], + }, + { + company: 'PayPal Inc.', + name: 'Darryl Amour', + email: 'darryl.amour@gmail.com', + linkedIn: 'https://www.linkedin.com/in/darryl-amour/', + campus: 'LA', + cohort: '25', + jobTitle: 'Engineering Manager, Software Development 2', + industry: 'Fintech', + cities: ['Baltimore', 'Tokyo', 'Las Vegas', 'Cincinnati'], + }, + { + company: 'Payscale', + name: 'Truett Davis', + email: 'truett.davis@gmail.com', + linkedIn: 'https://www.linkedin.com/in/truett-davis', + campus: 'NYOI', + cohort: '3', + jobTitle: 'Software Engineer II', + industry: 'Software / Tech', + cities: ['San Diego', 'Columbus', 'Washington', 'Phoenix'], + }, + { + company: 'Peacock', + name: 'Eli Gallipoli', + email: 'eligallipoli317@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eli-gallipoli/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Fullstack Developer - Video Software Engineering', + industry: 'Video Streaming', + cities: ['Tulsa'], + }, + { + company: 'Peatix', + name: 'Yula Ko', + email: 'larkspury.k@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yulako/', + campus: 'NYC', + cohort: '17', + jobTitle: 'Software Engineer', + industry: 'Entertainment', + cities: ['Jersey City'], + }, + { + company: 'Peloton', + name: 'Lorenzo Guevara', + email: 'joselorenzo.guevara@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lorenzoguevara/', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer', + industry: 'Tech/Health & Wellness', + cities: ['Oklahoma City', 'Mesa', 'Fort Wayne', 'Chula Vista'], + }, + { + company: 'Penny Mac', + name: 'Edward Roh', + email: 'eroh@rubiconproject.com', + linkedIn: 'https://www.linkedin.com/in/edwardroh/', + campus: 'LA', + cohort: '24', + jobTitle: 'Front End Lead Engineer', + industry: 'Sports?', + cities: ['Baltimore', 'Chesapeake'], + }, + { + company: 'PennyMac', + name: 'Cornelius Phanthanh', + email: 'corneliusphanthanh@gmail.com', + linkedIn: 'www.linkedin.com/in/corneliusphanthanh', + campus: 'LA', + cohort: '33', + jobTitle: 'Full Stack (UI/UX) Senior Application Developer', + industry: 'Loan/Mortgage', + cities: ['Virginia Beach', 'Pittsburgh', 'Houston'], + }, + { + company: 'Penumbra', + name: 'Abigail Gjurich', + email: 'amgjurich@gmail.com', + linkedIn: 'https://www.linkedin.com/in/abigail-gjurich/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Front End Engineer', + industry: 'Medical', + cities: ['San Diego'], + }, + { + company: 'Penumbra, Inc.', + name: 'Junaid Ahmed', + email: 'junaid7ahmed96@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ahmedjnd/', + campus: 'NYOI', + cohort: '3', + jobTitle: 'Full Stack Engineer', + industry: 'Healthtech/Healthcare', + cities: ['San Diego', 'Arlington'], + }, + { + company: 'Peraton', + name: 'Andrew Jung', + email: 'andrewjung89@icloud.com', + linkedIn: 'https://www.linkedin.com/in/sjung80/', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Cyber Software Engineer', + industry: 'Public Safety', + cities: ['Seattle', 'Tampa', 'Fresno'], + }, + { + company: 'PGA Tour', + name: 'Rami Abdelghafar', + email: 'ramabdel12@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ramiabdelghafar/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Software Engineer', + industry: 'Digital', + cities: ['Memphis', 'Indianapolis', 'Denver'], + }, + { + company: 'PGi', + name: 'Zi Hao He', + email: 'germanychinaaustralia@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/zi-hao-he/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer I', + industry: 'Video', + cities: ['Denver'], + }, + { + company: 'PGS', + name: 'Yi Sun', + email: 'timyisun@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yi-sun-swe/', + campus: 'PTRI', + cohort: '10', + jobTitle: 'Senior Software Engineer', + industry: 'Energy/Cleantech/Greentech', + cities: ['Anaheim', 'Portland'], + }, + { + company: 'PhotoShelter', + name: 'Julia Ieshtokina', + email: 'julia.ieshtokina@gmail.com', + linkedIn: 'https://www.linkedin.com/in/julia-ieshtokina/', + campus: 'NYC', + cohort: '5', + jobTitle: 'Software Automation Engineer', + industry: '', + cities: ['Kansas City', 'Sรฃo Paulo', 'Minneapolis'], + }, + { + company: 'Picarro', + name: 'Sรฉbastien Fauque', + email: 'Sbfauque@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sebastienfauque', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Software engineer', + industry: 'Green tech', + cities: ['Jacksonville'], + }, + { + company: 'Pie Insurance', + name: 'Alex Wolinsky', + email: 'alexwolinsky1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alex-wolinsky/', + campus: 'LA', + cohort: '40', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: ['Toledo', 'St. Petersburg'], + }, + { + company: 'Pima County', + name: 'Jake Kazi', + email: 'kazijake@gmail.com', + linkedIn: 'linkedin.com/in/jakekazi', + campus: 'PTRI', + cohort: '7', + jobTitle: 'IT Applications Engineer', + industry: 'Other', + cities: ['Santa Ana', 'Aurora', 'Tulsa'], + }, + { + company: 'Pinterest', + name: 'Edar Liu', + email: 'liuedar@gmail.com', + linkedIn: 'https://www.linkedin.com/in/liuedar/', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer L4', + industry: 'Social Media', + cities: ['Nashville', 'Mesa'], + }, + { + company: 'Pitzer College', + name: 'Kurt Crandall', + email: 'kcrandall67@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kurtcrandall', + campus: 'LA / WCRI', + cohort: '47', + jobTitle: 'Web Developer', + industry: 'Other', + cities: ['Chesapeake', 'New Orleans', 'Colorado Springs'], + }, + { + company: 'Place Exchange', + name: 'Wesley Jia', + email: 'wesleyjia34@gmail.com', + linkedIn: 'https://www.linkedin.com/in/wesleyjia/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Advertising', + cities: ['Anaheim', 'San Francisco', 'Los Angeles', 'Jersey City'], + }, + { + company: 'Plaid', + name: 'Nicolas Ferretti', + email: 'nf96@cornell.edu', + linkedIn: 'https://www.linkedin.com/in/nicolas-ferretti/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Mexico City', 'Colorado Springs'], + }, + { + company: 'Platform Science', + name: 'Daniel Aurand', + email: 'Daurand303@gmail.com', + linkedIn: 'https://www.linkedin.com/in/daniel-aurand/', + campus: 'PTRI', + cohort: '7', + jobTitle: 'software development engineer - FMS', + industry: 'Automotive', + cities: ['Tampa', 'Minneapolis'], + }, + { + company: 'Playstation', + name: 'Bryan Santos', + email: 'brymsantos@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bryan-santos/', + campus: 'LA', + cohort: '49', + jobTitle: 'Software Engineer II', + industry: 'Gaming', + cities: ['Scottsdale'], + }, + { + company: 'PlayStation', + name: 'Jackqueline Nguyen', + email: 'jackquelineanguyen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jackquelinenguyen/', + campus: 'LA / WCRI', + cohort: '54', + jobTitle: 'Senior Software Engineer', + industry: 'Gaming', + cities: ['Indianapolis'], + }, + { + company: 'PlayVs', + name: 'Alyvia Moss', + email: 'alyvialmoss@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alyviam/', + campus: 'LA', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'E-Sports', + cities: ['Tulsa', 'Jacksonville', 'Riverside', 'Lubbock'], + }, + { + company: 'Plum', + name: 'Nattie Chan', + email: 'nattie.chan@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nattiechan/', + campus: 'LA / WCRI', + cohort: '56', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Beijing', 'Henderson', 'Fort Wayne'], + }, + { + company: 'Pluralsight', + name: 'Ronak Hirpara', + email: 'ronakh130@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ronak-hirpara/', + campus: 'NYC', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Education', + cities: ['Long Beach'], + }, + { + company: 'Pluralsight', + name: 'Stephanie Wood', + email: 'wood.steph@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stephaniewood22/', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'EdTech', + cities: ['Tokyo', 'St. Louis', 'North Las Vegas', 'Houston'], + }, + { + company: 'Plutoshift', + name: 'Alex Bednarek', + email: 'alexbednarek4@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alex-bednarek/', + campus: 'NYC', + cohort: '16', + jobTitle: 'Backend Engineer', + industry: 'Internet/AI/Energy', + cities: ['Newark', 'Chandler'], + }, + { + company: 'Podsights', + name: 'Emily Krebs', + email: 'erkrebs@gmail.com', + linkedIn: 'https://www.linkedin.com/in/emilyrkrebs/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: 'Podcast Analytics', + cities: ['El Paso', 'Boston', 'Milwaukee', 'Oklahoma City'], + }, + { + company: 'PointsBet', + name: 'Joseph Eisele', + email: 'eisele.joseph1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joseph-eisele/', + campus: 'LA', + cohort: '29', + jobTitle: 'Front-end Engineering Consultant', + industry: 'Sports Betting', + cities: ['Columbus'], + }, + { + company: 'PokerAtlas', + name: 'Patrick S. Young', + email: 'patrick.shaffer.young@gmail.com', + linkedIn: 'https://www.linkedin.com/in/patrick-s-young/', + campus: 'LA', + cohort: '31', + jobTitle: 'Frontend Engineer', + industry: 'Entertainment', + cities: ['Toronto'], + }, + { + company: 'Policygenius', + name: 'Christopher Bosserman', + email: 'christopherpbosserman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christopherpbosserman/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: ['Toronto', 'Pittsburgh', 'Wichita'], + }, + { + company: 'Policygenius', + name: 'Kelly Porter', + email: 'kporter101@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kporter101/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: ['Madison'], + }, + { + company: 'Poll Everywhere', + name: 'Samuel Filip', + email: 'samjfilip@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sam-filip/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Full Stack Integrations Engineer', + industry: 'IT Services', + cities: ['North Las Vegas', 'Gilbert', 'Houston'], + }, + { + company: 'Poloniex', + name: 'Sunit Bhalotia', + email: 'sunit.bh@gmail.com', + linkedIn: 'linkedin.com/in/sunitb/', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Senior Software Engineer, Web', + industry: 'Blockchain/Web3', + cities: ['Tampa', 'Chula Vista', 'Scottsdale'], + }, + { + company: 'Polyture', + name: 'Dieu Huynh', + email: 'dieu@dieuhuynh.com', + linkedIn: 'https://www.linkedin.com/in/dieu-huynh', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer', + industry: 'Data Analytics', + cities: ['Louisville', 'San Jose', 'Winston-Salem', 'Oklahoma City'], + }, + { + company: 'Polyture', + name: 'Evan Grobar', + email: 'egrobar@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '33', + jobTitle: 'Software Engineer', + industry: 'Data Analysis', + cities: ['San Jose', 'Cincinnati', 'Glendale', 'Fort Worth'], + }, + { + company: 'Pondurance', + name: 'Nancy Dao', + email: 'nancyddao@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '33', + jobTitle: 'Front End Software Engineer', + industry: 'Security', + cities: ['Laredo'], + }, + { + company: 'Postman', + name: 'Jonathan Haviv', + email: 'jonathandhaviv@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonathanhaviv/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Garland', 'Jersey City', 'Cincinnati', 'Long Beach'], + }, + { + company: 'Potato', + name: 'Kiril Christov', + email: 'kiril.christov@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kchristov/', + campus: 'LA', + cohort: '32', + jobTitle: 'Full stack engineer', + industry: 'Technology', + cities: ['Santa Ana', 'Beijing', 'Albuquerque'], + }, + { + company: 'Power Digital', + name: 'Feiyi Wu', + email: 'freyawu10@gmail.com', + linkedIn: 'https://www.linkedin.com/in/freya-wu/', + campus: 'LA', + cohort: '45', + jobTitle: 'Jr. Software Engineer', + industry: 'Marketing', + cities: ['Jersey City'], + }, + { + company: 'Prescriptive Data', + name: 'Nathan Le Master', + email: 'nlemaster47@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nathan-le-master/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Frontend Developer', + industry: 'Building Management', + cities: ['Saint Paul', 'Scottsdale', 'Greensboro'], + }, + { + company: 'Priceline', + name: 'Tommy Liang', + email: 'tommyliangsays@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mrtommyliang/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer - Frontend', + industry: 'Travel', + cities: ['Long Beach', 'Paris'], + }, + { + company: 'PRIME', + name: 'Andrew Park', + email: 'andrewchanwonpark@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andrew-c-park/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Shopify Developer', + industry: 'Restaurant, Food, and Beverage', + cities: ['Denver', 'St. Louis'], + }, + { + company: 'Prime Therapeutics', + name: 'Dennis Cheung', + email: 'dennis.kh.cheung@gmail.com', + linkedIn: 'https://www.linkedin.com/in/denniskhcheung/', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Senior Software Engineer', + industry: 'Healthcare', + cities: ['Sรฃo Paulo', 'Beijing', 'Buffalo', 'London'], + }, + { + company: 'Principal Financial Group', + name: 'Stephen Lee', + email: 'stphn.l.nyc@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stphnl/', + campus: 'NYOI', + cohort: '2', + jobTitle: 'Software Engineer II', + industry: 'Insurance', + cities: ['Seattle', 'San Antonio', 'Kansas City'], + }, + { + company: 'ProdataKey', + name: 'William Murphy', + email: 'w.williamjmurphy@gmail.com', + linkedIn: 'https://www.linkedin.com/in/w-william-j-murphy/', + campus: 'FTRI / CTRI', + cohort: '15', + jobTitle: 'Software Engineer', + industry: 'Business Tech/Enterprise Tech', + cities: ['Austin', 'St. Louis', 'New York'], + }, + { + company: 'Proov (MFB Fertility)', + name: 'Brian Pham', + email: 'br.pham13@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brpham13/', + campus: 'LA / WCRI', + cohort: '53', + jobTitle: 'Frontend Engineer', + industry: 'Healthcare', + cities: ['Memphis', 'Sacramento'], + }, + { + company: 'Prosper Marketplace', + name: 'David Levien', + email: 'david.levien1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dlev01/', + campus: 'LA', + cohort: '28', + jobTitle: 'Senior Software Engineer', + industry: '', + cities: ['Beijing', 'San Antonio', 'Riverside'], + }, + { + company: 'Providence Health & Services', + name: 'Jared Weiss', + email: 'weissjmw@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jaredmweiss/', + campus: 'NYC', + cohort: '2', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Irvine', 'El Paso'], + }, + { + company: 'Prudential Financial', + name: 'Michael Lam', + email: 'mlamchamkee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mlamchamkee/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Director, Tech Lead', + industry: 'Insurance', + cities: ['El Paso', 'Aurora'], + }, + { + company: 'Prudential Financial', + name: 'Perla Royer', + email: 'perlaroyerc@gmail.com', + linkedIn: 'https://www.linkedin.com/in/perlaroyerc/', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Columbus', 'Chesapeake', 'Long Beach'], + }, + { + company: 'Purpose Investments', + name: 'Anika Mustafiz', + email: 'munikamustafiz89@gmail.com', + linkedIn: 'https://www.linkedin.com/in/anikamustafiz-lillies/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Full Stack Developer', + industry: 'Fintech/Insurance software', + cities: ['Buffalo'], + }, + { + company: 'Q2', + name: 'Justin Poirier', + email: 'poirierj94@gmail.com', + linkedIn: 'https://www.linkedin.com/in/justincpoirier', + campus: 'NYC / ECRI', + cohort: '40', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Beijing', 'Norfolk', 'Detroit', 'Mexico City'], + }, + { + company: 'QLogic LLC.', + name: 'Joe Cervino', + email: 'jciv.public@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '6', + jobTitle: 'Senior Associate - Node Engineer', + industry: '', + cities: ['Indianapolis', 'Chicago'], + }, + { + company: 'Qrypt', + name: 'Vinit Patel', + email: 'za.vinit@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vinit-za/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Cryptography', + cities: ['Chesapeake', 'Omaha'], + }, + { + company: 'Qualleta Inc / StartPlaying.Games', + name: 'Brian Hayashi', + email: 'BrianMHayashi@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brianmakiohayashi/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Entertainment', + cities: ['London', 'Los Angeles'], + }, + { + company: 'Quantgene', + name: 'Peter Fasula', + email: 'peter.fasula@gmail.com', + linkedIn: 'https://www.linkedin.com/in/petefasula/', + campus: 'NYC', + cohort: '3', + jobTitle: 'Sr. Full Stack Software Engineer', + industry: '', + cities: ['Gilbert', 'Tokyo', 'Houston'], + }, + { + company: 'Quantiphi, Inc', + name: 'Alura Chung-Mehdi', + email: 'aluracm@gmail.com', + linkedIn: 'linkedin.com/alura-chungmehdi', + campus: 'FTRI', + cohort: '1', + jobTitle: 'Software Developer', + industry: 'Conversational AI', + cities: ['San Antonio', 'Sydney', 'Las Vegas'], + }, + { + company: 'Quantum Metric', + name: 'Justin Blalock', + email: 'justin.m.blalock@gmail.com', + linkedIn: 'https://www.linkedin.com/in/justinmblalock/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Customer Success Engineer', + industry: 'Technology', + cities: ['Virginia Beach'], + }, + { + company: 'Railbird', + name: 'Justin Paige', + email: 'justinpaige3@gmail.com', + linkedIn: 'https://www.linkedin.com/in/justin-paige/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Cleveland', 'Raleigh', 'Chandler', 'Sacramento'], + }, + { + company: 'Rainmaker Games', + name: 'Julia Collins', + email: 'Julia.col@protonmail.com', + linkedIn: '', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Lead Frontend Engineer (Web3)', + industry: 'Blockchain baby', + cities: ['Washington'], + }, + { + company: 'Rally Health', + name: 'Stefan Pougatchev', + email: 'Stefan.Pougatchev@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stefanpougatchev/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer II', + industry: 'Health/Insurance', + cities: ['Jersey City', 'Miami'], + }, + { + company: 'Raytheon Technologies', + name: 'Troy Prejusa', + email: 'prejusa.troy@gmail.com', + linkedIn: 'https://www.linkedin.com/in/troyprejusa/', + campus: 'LA / WCRI', + cohort: '54', + jobTitle: 'Software Engineer II', + industry: 'Aerospace', + cities: ['Lincoln', 'Corpus Christi', 'Tampa', 'Cincinnati'], + }, + { + company: 'Ready Responders', + name: 'Joel Rivera', + email: 'realjoelrivera@gmail.com', + linkedIn: 'https://www.linkedin.com/in/RealJoelRivera', + campus: 'NYC', + cohort: '11', + jobTitle: 'React Developer', + industry: 'Healthcare', + cities: ['Scottsdale', 'Beijing', 'Cincinnati', 'Phoenix'], + }, + { + company: 'Record360', + name: 'Abby Chao', + email: 'abigail.chao@gmail.com', + linkedIn: 'https://www.linkedin.com/in/abbychao/', + campus: 'NYC', + cohort: '12', + jobTitle: 'CEO', + industry: 'Rental Inspection', + cities: ['Memphis', 'Houston', 'Fresno'], + }, + { + company: 'Recurate', + name: 'PJ Bannon', + email: 'bannon.pj@gmail.com', + linkedIn: 'https://www.linkedin.com/in/paulbannon/', + campus: 'NYOI', + cohort: '3', + jobTitle: 'Frontend Engineer', + industry: 'Retail', + cities: ['Tampa', 'Denver', 'Oklahoma City', 'Bakersfield'], + }, + { + company: 'Recurate', + name: 'Andrew Altman', + email: 'andrewaltman@outlook.com', + linkedIn: 'https://www.linkedin.com/in/andrewaltman1/', + campus: 'NYOI', + cohort: '3', + jobTitle: 'Lead Frontend Engineer', + industry: 'Business Tech/Enterprise Tech', + cities: ['San Francisco', 'New York', 'Indianapolis'], + }, + { + company: 'Red Bull North America', + name: 'Catherine Larcheveque', + email: 'clarcheveque14@gmail.com', + linkedIn: 'https://www.linkedin.com/in/clarcheveque', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Automation Engineer', + industry: 'Restaurant, Food, and Beverage', + cities: ['Seattle'], + }, + { + company: 'Reddit', + name: 'Jessikeรฉ Campbell-Walker', + email: 'jessikeecw@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jessikeecampbellwalker/', + campus: 'LA', + cohort: '34', + jobTitle: 'Junior Front End Engineer', + industry: 'Internet Media', + cities: ['Mesa', 'Austin'], + }, + { + company: 'Redox', + name: 'Jacquelyn Whitworth', + email: 'jackie.whitworth@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jackiewhitworth/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Full Stack Engineer', + industry: 'Healthcare', + cities: ['Chicago', 'Raleigh'], + }, + { + company: 'Redwood Coding Academy', + name: 'Alexander Landeros', + email: 'Alexander.Landeros1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexander-landeros/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Dev Instructor', + industry: 'Edtech', + cities: ['Mexico City'], + }, + { + company: 'REEF', + name: 'Linda Everswick', + email: 'lindaeverswick@gmail.com', + linkedIn: 'https://www.linkedin.com/linda-everswick/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Front end engineer', + industry: 'Real Estate', + cities: ['Anaheim', 'Long Beach'], + }, + { + company: 'Remine', + name: 'JJ Friedman', + email: 'friedmanjarred@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jj-friedman/', + campus: 'LA', + cohort: '33', + jobTitle: 'Software Engineer II - Web/Mobile', + industry: 'PropTech', + cities: ['Charlotte', 'Chandler', 'San Jose', 'Corpus Christi'], + }, + { + company: 'Remote', + name: 'Bianca Picasso', + email: 'bianca.picasso@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bianca-picasso/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Engineer I', + industry: 'Research', + cities: ['Lexington', 'Philadelphia', 'Toledo', 'Saint Paul'], + }, + { + company: 'Rent the Runway', + name: 'Rebecca Schell', + email: 'Rebeccaschell503@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rschelly/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Senior Front End Engineer', + industry: 'Fashion', + cities: ['Oklahoma City', 'Plano'], + }, + { + company: 'Republic Services', + name: 'Lauren Acrich', + email: 'acrich.lauren@gmail.com', + linkedIn: 'https://www.linkedin.com/in/laurenacrich/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Full Stack Software Engineer', + industry: 'Other', + cities: ['Madison', 'Wichita', 'San Antonio'], + }, + { + company: 'Republic Services', + name: 'Nicholas Smith', + email: 'nicktsmith7@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nicholastaylorsmith/', + campus: 'LA', + cohort: '23', + jobTitle: 'Senior Front End Developer', + industry: '', + cities: ['Pittsburgh', 'Mumbai'], + }, + { + company: 'Rescale', + name: 'Kushal Talele', + email: 'kushal.talele@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kushaltalele/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Software Engineer', + industry: 'Cloud computing', + cities: ['Anchorage', 'Baltimore'], + }, + { + company: 'Research Corporation of the University of Hawaii', + name: 'Chris Fryer', + email: 'chris@hifryer.com', + linkedIn: 'linkedin.com/in/cjfryer', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Software Engineer Apprentice', + industry: 'Other', + cities: ['Berlin', 'Lubbock'], + }, + { + company: 'ResMed', + name: 'Jackie He', + email: 'jackie.he98@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jackie-he/', + campus: 'LA / WCRI', + cohort: '53', + jobTitle: 'Fullstack App SWE', + industry: 'Healthcare', + cities: ['Winston-Salem', 'Garland', 'Chula Vista', 'Virginia Beach'], + }, + { + company: 'Restaurant Brand International (RBI)', + name: 'Christian Niedermayer', + email: 'sdchrisn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christian-niedermayer/', + campus: 'LA', + cohort: '27', + jobTitle: 'Full Stack Software Engineer', + industry: 'Food', + cities: ['Memphis'], + }, + { + company: 'Resy (AMEX)', + name: 'Jonathan Cespedes', + email: 'jmilescespedes@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonathancespedes/', + campus: 'NYC', + cohort: '7', + jobTitle: 'Senior Front-End Engineer', + industry: 'Restaurant, Food, Beverage', + cities: ['Omaha', 'Arlington', 'St. Petersburg'], + }, + { + company: 'Reveel Group', + name: 'Jin Soo (John) Lim', + email: 'jinsoolim1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jinsoolim', + campus: 'NYC', + cohort: '21', + jobTitle: 'Frontend Developer', + industry: 'Logistics & Supply Chain', + cities: ['Madison', 'New York', 'Minneapolis', 'San Diego'], + }, + { + company: 'Revel', + name: 'Kayliegh Hill', + email: 'kayliegh.hill@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kayliegh-hill/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Full Stack Engineer', + industry: 'Renewables & Environment', + cities: ['Santa Ana', 'London'], + }, + { + company: 'Reverb', + name: 'Grace Park', + email: 'gracepark01@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '20', + jobTitle: 'software engineer', + industry: 'ecommerce', + cities: ['Houston', 'Saint Paul'], + }, + { + company: 'Revolution Prep', + name: 'Max Weisenberger', + email: 'germanbluemax@gmail.com', + linkedIn: 'https://www.linkedin.com/in/maxweisen/', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer', + industry: 'Education', + cities: ['El Paso', 'Toledo'], + }, + { + company: 'RF-Smart', + name: 'Michael Snyder', + email: 'msnyder1992@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michaelcharlessnyder/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'JavaScript Applications Developer', + industry: 'Software / Tech', + cities: ['Denver', 'Miami', 'Tulsa'], + }, + { + company: 'Rice University', + name: 'Thasanee Puttamadilok', + email: 'meow3525@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thasanee-p-686125243/', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Front End Software Engineer', + industry: 'Research', + cities: ['Saint Paul', 'Charlotte', 'Long Beach'], + }, + { + company: 'Rightway', + name: 'Dylan Feldman', + email: 'dfeldman24@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dylan-feldman/', + campus: 'LA', + cohort: '45', + jobTitle: 'Software engineer', + industry: 'Healthcare navigation', + cities: ['Mesa'], + }, + { + company: 'Riot Games', + name: 'Pauline Chang', + email: 'paulseonchang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/pskchang/', + campus: 'LA', + cohort: '22', + jobTitle: 'Associate Software Engineer', + industry: '', + cities: ['Philadelphia', 'St. Louis', 'Detroit', 'Riverside'], + }, + { + company: 'RIPL', + name: 'Jared Veltsos', + email: 'Veltsos.jared@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jaredveltsos/', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Chicago'], + }, + { + company: 'Rivian', + name: 'Luis Lo', + email: 'kwun.man.lo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/luis-lo/', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Engineer', + industry: 'Electric Vehicle', + cities: ['Chandler', 'Charlotte', 'Philadelphia'], + }, + { + company: 'Rivian', + name: 'Matthew Salvador', + email: 'matthew.jsalvador@gmail.com', + linkedIn: 'https://www.linkedin.com/in/matthewsalvador/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Full Stack Software Engineer II', + industry: 'Automotive', + cities: ['Baltimore', 'Houston'], + }, + { + company: 'Rivian', + name: 'Stacy Learn', + email: 'sslearn07@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stacy-learn/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Software Engineer II', + industry: 'Automotive', + cities: ['Beijing'], + }, + { + company: 'Rivian', + name: 'Thomas Lutz', + email: 'tlutz65@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thomas-j-lutz/', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Automotive', + cities: ['Los Angeles', 'Oakland', 'Long Beach', 'Jersey City'], + }, + { + company: 'Rocket Auto', + name: 'Tommy Han', + email: 'tommy.han.cs@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tommy-han-cs/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Senior Javascript Software Engineer', + industry: 'Fintech', + cities: ['Lubbock', 'Jersey City', 'Saint Paul'], + }, + { + company: 'Rocksbox', + name: 'Ece Isenbike Ozalp', + email: 'eceiozalp@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eceiozalp', + campus: 'PTRI', + cohort: '4', + jobTitle: 'Software Engineer', + industry: 'Jewelry Ecommerce', + cities: ['Irvine', 'New York'], + }, + { + company: 'RockStep Solutions', + name: 'Matthew McGowan', + email: 'matthew.c.mcgowan@gmail.com', + linkedIn: 'https://www.linkedin.com/in/matthewcharlesmcgowan/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Software Release Manager', + industry: 'Software / Tech', + cities: ['Reno'], + }, + { + company: 'Rohirrim', + name: 'Alex Corlin', + email: 'alex.corlin6@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alex-corlin/', + campus: 'FTRI / CTRI', + cohort: '7', + jobTitle: 'Full Stack Engineer', + industry: 'Artificial Intelligence', + cities: ['Minneapolis', 'Fort Wayne'], + }, + { + company: 'Rohirrim', + name: 'Simon Chen', + email: 'simonchn160@gmail.com', + linkedIn: 'https://www.linkedin.com/in/simonchen7/', + campus: 'FTRI / CTRI', + cohort: '7', + jobTitle: 'Full Stack Engineer', + industry: 'Artificial Intelligence', + cities: ['Orlando', 'Colorado Springs'], + }, + { + company: 'Roivant', + name: 'Jamie Schiff', + email: 'jamie.abrams.schiff@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jamie-schiff/', + campus: 'NYC / ECRI', + cohort: '1', + jobTitle: 'Technology Analyst', + industry: 'Biotech', + cities: ['Cleveland', 'Chandler', 'Honolulu', 'Sydney'], + }, + { + company: 'Rokt', + name: 'Michael Hoang', + email: 'michaelhoang781@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michaelhoang1/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Frontend Software Engineer', + industry: 'Digital Advertising/E-commerce', + cities: ['Houston', 'Orlando'], + }, + { + company: 'Roll', + name: 'Eric Choy', + email: 'echoy20@gmail.com', + linkedIn: 'https://www.linkedin.com/in/silly-turtle/', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: ['Long Beach', 'St. Petersburg', 'San Jose'], + }, + { + company: 'Roll', + name: 'Marlon Wiprud', + email: 'Marlonwiprud1@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software engineer', + industry: 'Entertainment', + cities: ['Los Angeles', 'Gilbert', 'Sacramento'], + }, + { + company: 'Roll', + name: 'Marlon Wiprud', + email: 'Marlonwiprud1@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Search and ads', + cities: ['Phoenix', 'Toronto', 'Honolulu'], + }, + { + company: 'Rose Digital', + name: 'Chet (ChetBABY!) Hay', + email: 'chet.hay@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chethay/', + campus: 'LA', + cohort: '28', + jobTitle: 'Jr. Frontend Engineer', + industry: 'Digital Agency/Client Services', + cities: ['Toronto', 'Louisville', 'Saint Paul'], + }, + { + company: 'Rose Digital', + name: 'Linda Harrison', + email: 'lindafaithharrison@gmail.com', + linkedIn: 'https://linkedin.com/in/lindafharrison/', + campus: 'NYC', + cohort: '3', + jobTitle: 'Junior Software Engineer', + industry: '', + cities: ['Reno'], + }, + { + company: 'Ruggable', + name: 'Benjamin Lee Morrison', + email: 'newben.hd@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hdlmorrison/', + campus: 'LA', + cohort: '31', + jobTitle: 'Sr. Software Engineer', + industry: 'Commerce', + cities: ['Jacksonville', 'Toledo'], + }, + { + company: 'Ruggable', + name: 'Andrew Nguyen', + email: 'nguyen.andrewkh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andrew-knguyen/', + campus: 'LA', + cohort: '29', + jobTitle: 'Sr. Front-End Engineer', + industry: 'E-Commerce', + cities: ['Boston'], + }, + { + company: 'Ruggable', + name: 'Steven Jung', + email: 'stehyjung@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stehyjung/', + campus: 'LA', + cohort: '28', + jobTitle: 'Front End Engineer', + industry: 'E-Commerce', + cities: ['Plano', 'New Orleans'], + }, + { + company: 'Rush Enterprises', + name: 'Eric Saldivar', + email: 'esaldivar1214@gmail.com', + linkedIn: 'https://www.linkedin.com/in/esaldivar1214/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Software Engineer', + industry: 'Automative', + cities: ['St. Louis', 'Kansas City', 'Mexico City', 'Buffalo'], + }, + { + company: 'S&P Global', + name: 'Samantha Warrick', + email: 'samanthawarrick@gmail.com', + linkedIn: 'www.linkedin.com/samantha-warrick', + campus: 'LA / WCRI', + cohort: '54', + jobTitle: 'Front End Software Engineer', + industry: 'Marketing', + cities: ['Seattle', 'Virginia Beach', 'Detroit', 'Lubbock'], + }, + { + company: 'Saggezza', + name: 'Albert Chen', + email: 'albert.chen@nyu.edu', + linkedIn: 'https://www.linkedin.com/in/albert-m-chen/', + campus: 'NYC', + cohort: '2', + jobTitle: 'Full-stack Analytics Engineer', + industry: 'Big Data, Analytics', + cities: ['Sacramento', 'Buffalo'], + }, + { + company: 'Salesforce', + name: 'Jennifer Courtner', + email: 'jmichele.courtner@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jcourtner/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Full Stack Engineer', + industry: 'B2B', + cities: ['Oakland', 'Colorado Springs'], + }, + { + company: 'San Francisco State University', + name: 'Paul Valderama', + email: 'pvalderama@gmail.com', + linkedIn: 'https://www.linkedin.com/in/paulvalderama/', + campus: 'LA / WCRI', + cohort: '22', + jobTitle: 'Senior Web and Mobile Developer', + industry: 'Software / Tech', + cities: ['Long Beach', 'Virginia Beach', 'Stockton', 'Tokyo'], + }, + { + company: 'SAP', + name: 'Charlie Maloney', + email: 'charliemaloney200@gmail.com', + linkedIn: 'https://www.linkedin.com/in/charlie-maloney/', + campus: 'LA', + cohort: '35', + jobTitle: 'Front End Developer', + industry: 'Enterprise Software', + cities: ['Corpus Christi', 'Raleigh', 'Greensboro', 'San Francisco'], + }, + { + company: 'SAP', + name: 'Sylvia Liu', + email: 'sylvs.liu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/liusylvia949/', + campus: 'LA', + cohort: '46', + jobTitle: 'Frontend Software Engineer', + industry: 'Business Software', + cities: ['Columbus', 'Charlotte'], + }, + { + company: 'Sayari', + name: 'SEAN YALDA', + email: 'seanyalda@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sean-yalda/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Senior Full Stack Developer', + industry: 'Data Intelligence', + cities: ['Phoenix', 'Berlin'], + }, + { + company: 'Sayari Labs', + name: 'Michael Gower', + email: 'GowerMikey@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mikeygower/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Senior Full Stack Engineer', + industry: 'Financial Data', + cities: ['Fort Wayne', 'St. Petersburg', 'Louisville', 'North Las Vegas'], + }, + { + company: 'Scale Computing', + name: 'Jason Charles de vera', + email: 'jasoncdevera@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jason-charles-de-vera/', + campus: 'FTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Cloud Technology', + cities: ['Winston-Salem'], + }, + { + company: 'Scale Computing', + name: 'Connor Dillon', + email: 'connordillon06@gmail.com', + linkedIn: 'https://www.linkedin.com/in/connor-dillon/', + campus: 'FTRI / CTRI', + cohort: '16', + jobTitle: 'Software Development Engineer', + industry: 'Business Tech/Enterprise Tech', + cities: ['Austin', 'Jacksonville'], + }, + { + company: 'Science', + name: 'Michelle Leong', + email: 'leong.michellew@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michelle-w-leong/', + campus: 'LA / WCRI', + cohort: '56', + jobTitle: 'Software Engineer', + industry: 'Biotech', + cities: ['Corpus Christi', 'Washington'], + }, + { + company: 'Science 37', + name: 'Tristan Schoenfeld', + email: 'tristans7@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tristan-schoenfeld/', + campus: 'LA', + cohort: '26', + jobTitle: 'Sr. Frontend Engineer', + industry: 'Research', + cities: ['St. Louis'], + }, + { + company: 'ScienceLogic', + name: 'Nick Kruckenberg', + email: 'nkruckenberg@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nicholaskruckenberg/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Engineer', + industry: 'AIOps, IT monitoring and automation', + cities: ['Cincinnati', 'San Diego', 'Albuquerque'], + }, + { + company: 'SciTec', + name: 'Forest Everest Leigh', + email: 'theforestleigh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/forestleigh/', + campus: 'LA / WCRI', + cohort: '53', + jobTitle: 'Senior Software Engineer', + industry: 'Other', + cities: ['Sรฃo Paulo', 'Tulsa', 'Oklahoma City'], + }, + { + company: 'SDL', + name: 'Jamar Dawson', + email: 'Dawsonjamar@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '30', + jobTitle: 'Front End Engineer (Mid Level)', + industry: 'Translation', + cities: ['Tucson', 'Memphis'], + }, + { + company: 'SEAT:CODE', + name: 'Andrรฉs Gutiรฉrrez Ramรญrez', + email: 'agfeynman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/andresgutierrezramirez/', + campus: 'PTRI', + cohort: '5', + jobTitle: 'Senior Fullstack Engineer', + industry: 'Software / Tech', + cities: ['North Las Vegas', 'Dallas', 'Philadelphia'], + }, + { + company: 'Second Wave Technologies', + name: 'Nicholas Suzuki', + email: 'nicholassuzuki@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/nicholas-j-suzuki/', + campus: 'FTRI / CTRI', + cohort: '5', + jobTitle: 'Software Engineer', + industry: 'Consulting', + cities: ['Detroit', 'New York', 'Oklahoma City'], + }, + { + company: 'SecureSeniorConnections', + name: 'Timothy', + email: 'tim.atapagra@gmail.com', + linkedIn: 'https://www.linkedin.com/in/timpagra/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Software Developer', + industry: 'Hospitals', + cities: ['Plano', 'Riverside', 'Glendale'], + }, + { + company: 'Seed Health', + name: 'John SaeHwan Lee', + email: 'john.saehwan.lee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/john-saehwan-lee/', + campus: 'NYC / ECRI', + cohort: '39', + jobTitle: 'Fullstack Software Engineer I', + industry: 'Fitness/Wellness', + cities: ['Durham', 'Scottsdale', 'Henderson'], + }, + { + company: 'SeedFi', + name: 'Peter Millspaugh', + email: 'peterdgmillspaugh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/peter-millspaugh/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Oakland', 'Chandler', 'Phoenix'], + }, + { + company: 'Seedfi', + name: 'Stephen Grable', + email: 'stephengrable@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stephen-grable/', + campus: 'NYC', + cohort: '3', + jobTitle: 'Senior Software Engineer', + industry: 'Finance', + cities: ['Fort Worth'], + }, + { + company: 'SEL', + name: 'Jace Crowe', + email: 'jace.crowe@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jacecrowe/', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Software Engineer - Front End', + industry: 'Energy/Cleantech/Greentech', + cities: ['North Las Vegas', 'Buffalo'], + }, + { + company: 'Send Out Carda', + name: 'Chris romano', + email: 'Chrispaulromano@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '15', + jobTitle: 'Front end engineer', + industry: 'Not sure: itโ€™s a subscription service for designing hallmark style cards', + cities: ['Tokyo', 'Saint Paul'], + }, + { + company: 'SENSE Chat', + name: 'Donte Nall', + email: 'donte.nall@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '25', + jobTitle: 'Senior Mobile Developer', + industry: 'Consulting', + cities: ['Detroit'], + }, + { + company: 'Sensei', + name: 'Kevin Fey', + email: 'kevinfey@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kevin-fey/', + campus: 'LA', + cohort: '37', + jobTitle: 'Senior Frontend Engineer', + industry: 'Wellness', + cities: ['Stockton', 'Newark', 'Henderson'], + }, + { + company: 'SequinAR', + name: 'Wyatt Bell', + email: 'wcbell51@gmail.com', + linkedIn: 'https://www.linkedin.com/in/wyatt-bell1/', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Engineer', + industry: 'Augmented Reality, Entertainment', + cities: ['Greensboro', 'Tulsa'], + }, + { + company: 'ServiceTrade', + name: 'Robert Beier', + email: 'robert.f.beier@gmail.com', + linkedIn: 'https://www.linkedin.com/in/robert-f-beier/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Software Engineer II', + industry: 'Contractor Software', + cities: ['Indianapolis'], + }, + { + company: 'Setsail Marketing', + name: 'Kirsten Milic', + email: 'kirsten.milic@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kirsten-milic/', + campus: 'LA / WCRI', + cohort: '57', + jobTitle: 'Software Engineer', + industry: 'Marketing/Advertising', + cities: ['New York', 'Houston', 'Greensboro', 'Santa Ana'], + }, + { + company: 'Sev1Tech', + name: 'Adam Vanek', + email: 'atvanek@gmail.com', + linkedIn: 'https://www.linkedin.com/in/atvanek/', + campus: 'FTRI / CTRI', + cohort: '15', + jobTitle: 'Full Stack Developer', + industry: 'Government', + cities: ['Paris', 'Toronto', 'Long Beach'], + }, + { + company: 'Shadow Health', + name: 'Khandker Islam', + email: 'khandker.islam46@gmail.com', + linkedIn: 'https://www.linkedin.com/in/khandkerislam/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Software Engineer II', + industry: 'Virtual Reality Education', + cities: ['Seattle'], + }, + { + company: 'SharpenCX', + name: 'Anu Sharma', + email: 'anu.le.pau@gmail.com', + linkedIn: 'https://www.linkedin.com/in/anulepau', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Senior Full Stack Developer', + industry: 'Software / Tech', + cities: ['Pittsburgh', 'Sacramento', 'Baltimore', 'Saint Paul'], + }, + { + company: 'Sherwin Williams', + name: 'Seamus Ryan', + email: 'd.seamus.ryan@outlook.com', + linkedIn: 'https://www.linkedin.com/in/dseamusryan/', + campus: 'LA', + cohort: '39', + jobTitle: 'React Developer', + industry: 'Consumer', + cities: ['Toronto', 'Chandler', 'St. Petersburg'], + }, + { + company: 'Shift', + name: 'Ralph Salazar', + email: 'ralph.slzr@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ralph-salazar', + campus: 'NYC', + cohort: '2', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Wichita', 'Indianapolis', 'Cincinnati'], + }, + { + company: 'Showtime', + name: 'Dan Teng', + email: 'danwteng@gmail.com', + linkedIn: 'https://www.linkedin.com/feed/', + campus: 'NYC', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Entertainment', + cities: ['Fort Wayne', 'Boston'], + }, + { + company: 'Shut Up & Write!', + name: 'Anthony Al-Rifai', + email: 'anthonyalrifai@gmail.com', + linkedIn: 'https://www.linkedin.com/in/anthony-al-rifai/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Full Stack Developer', + industry: 'Events', + cities: ['Paris', 'Sรฃo Paulo', 'Chandler'], + }, + { + company: 'Shutterstock', + name: 'Ari Shoham', + email: 'arishoham@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ari-shoham/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Software Engineer III', + industry: 'Photography', + cities: ['Mumbai'], + }, + { + company: 'Shutterstock', + name: 'Eli Davis', + email: 'eli.davis42@gmail.com', + linkedIn: 'https://www.linkedin.com/in/elidavis42/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Sรฃo Paulo', 'Charlotte'], + }, + { + company: 'Shutterstock', + name: 'Michael Pay', + email: 'michael.edward.pay@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael-edward-pay/', + campus: 'LA', + cohort: '46', + jobTitle: 'SDET III', + industry: 'Entertainment', + cities: ['Lubbock'], + }, + { + company: 'Shutterstock, Inc.', + name: 'Jake B Douglas', + email: 'jbrandondouglas@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '11', + jobTitle: 'Software Engineer, Projects', + industry: 'Tech? stock photography?', + cities: ['Portland', 'Anaheim'], + }, + { + company: 'Sidecar Health', + name: 'Sumin Kim', + email: 'ppsm920@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ppsm920/', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer', + industry: 'Healthcare / insurance', + cities: ['Sacramento', 'Stockton'], + }, + { + company: 'Sierra Nevada Corporation', + name: 'Matthew Xing', + email: 'matthew.xing@gmail.com', + linkedIn: 'https://www.linkedin.com/in/matthew-xing/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Software Engineer II - Space Systems', + industry: 'Other', + cities: ['Oklahoma City', 'Durham', 'Reno'], + }, + { + company: 'Signos', + name: 'Rebecca Anderson', + email: 'randersonviolin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rebecca--anderson/', + campus: 'NYC / ECRI', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['Greensboro'], + }, + { + company: 'SigTech', + name: 'Robert Howton', + email: 'robert.f.howton@gmail.com', + linkedIn: 'https://www.linkedin.com/in/roberthowton/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Fullstack Software Engineer', + industry: 'Fintech', + cities: ['Orlando', 'Durham'], + }, + { + company: 'SimpliSafe', + name: 'Cindy Chau', + email: 'cindychau38@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cindychau38/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Engineer II', + industry: 'Security', + cities: ['Plano', 'Fort Wayne', 'Anaheim'], + }, + { + company: 'Simplr', + name: 'Grigor Minasyan', + email: 'grigorminasyan1998@gmail.com', + linkedIn: 'https://www.linkedin.com/in/grigor-minasyan', + campus: 'FTRI', + cohort: '1', + jobTitle: 'Front end engineer', + industry: 'Customer service software', + cities: ['Garland', 'El Paso'], + }, + { + company: 'SimplyWise', + name: 'Justin Jaeger', + email: 'jjustinjaeger@gmail.com', + linkedIn: 'https://www.linkedin.com/in/justin-jaeger/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Software Engineer', + industry: 'Cloud storage', + cities: ['New York', 'Long Beach', 'Laredo', 'Toledo'], + }, + { + company: 'Sinclair Broadcast Group', + name: 'Michael Filoramo', + email: 'mlfiloramo@gmail.com', + linkedIn: 'linkedin.com/in/michael-filoramo/', + campus: 'PTRI', + cohort: '6', + jobTitle: 'Full Stack Software Engineer III', + industry: 'Media', + cities: ['Chicago', 'Sรฃo Paulo', 'Columbus'], + }, + { + company: 'Sinclair Broadcast Group', + name: 'David Beame', + email: 'dbeame291@gmail.com', + linkedIn: 'https://www.linkedin.com/in/david-beame/', + campus: 'LA / WCRI', + cohort: '55', + jobTitle: 'Associate Software Developer', + industry: 'Media', + cities: ['Gilbert', 'Fort Worth', 'Orlando'], + }, + { + company: 'Sinclair Broadcasting', + name: 'Joshua Reed', + email: 'joshreed104@gmail.com', + linkedIn: 'https://www.linkedin.com/in/josh-a-reed/', + campus: 'LA / WCRI', + cohort: '54', + jobTitle: 'Associate Development Engineer', + industry: 'Telecommunications', + cities: ['Minneapolis', 'Gilbert', 'Cincinnati', 'Norfolk'], + }, + { + company: 'Singa', + name: 'Paul Kassar', + email: 'p.kassar@hotmail.com', + linkedIn: 'https://www.linkedin.com/in/paulkassar/', + campus: 'NYC', + cohort: '3', + jobTitle: 'Engineer', + industry: 'Outdoor Recreation', + cities: ['Long Beach', 'Lubbock', 'Corpus Christi', 'Las Vegas'], + }, + { + company: 'SiriusXM', + name: 'Ben Brower', + email: 'Bbrower1293@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ben-brower-80660073', + campus: 'NYC', + cohort: '21', + jobTitle: 'Software Engineer III', + industry: 'Entertainment', + cities: ['Laredo'], + }, + { + company: 'Skechers', + name: 'Christopher Saavedra', + email: 'cssaavedra56@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chrisssaavedra/', + campus: 'LA', + cohort: '22', + jobTitle: 'Front end engineer', + industry: 'Retail/Manufacturing', + cities: ['Garland', 'Denver', 'San Francisco', 'Sydney'], + }, + { + company: 'Skematic', + name: 'Christina Or', + email: 'OR.CHRISTINA27@GMAIL.COM', + linkedIn: 'https://www.linkedin.com/in/christina-or', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Long Beach', 'Lexington', 'Glendale'], + }, + { + company: 'Sketch and Etch', + name: 'Kenny Lee', + email: 'kenkiblee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kennethkiboklee/', + campus: 'LA / WCRI', + cohort: '46', + jobTitle: 'Founding Engineer', + industry: 'Retail', + cities: ['Irvine', 'Laredo', 'Milwaukee', 'Anaheim'], + }, + { + company: 'SKF USA', + name: 'Steve Canavan', + email: 'stevenrosscanavan@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stevencanavan/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Front End Developer', + industry: 'Manufacturing', + cities: ['Winston-Salem', 'Mexico City'], + }, + { + company: 'Skillshare Inc.', + name: 'Chris Lung', + email: 'c.lung95@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chris-lung-5b69b2ba/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Edtech', + cities: ['Colorado Springs', 'Buffalo'], + }, + { + company: 'Skillstorm, contracting at Bank of America', + name: 'Adam Singer', + email: 'Spincycle01@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/adsing/', + campus: 'NYC', + cohort: '10', + jobTitle: 'Application Programmer', + industry: 'Fintech', + cities: ['Pittsburgh', 'Washington', 'Miami'], + }, + { + company: 'Skout Cybersecurity', + name: 'Garrett James', + email: 'garrettjames55@gmail.com', + linkedIn: 'https://www.linkedin.com/in/garrett-lamar-james/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Senior Software Engineer', + industry: 'Cybersecurity', + cities: ['Chandler', 'Anaheim', 'Scottsdale', 'Orlando'], + }, + { + company: 'Sky Betting and Gaming / Flutter Entertainment', + name: 'Robert Drake', + email: 'rmdrake8@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rmdrake8/', + campus: 'NYC / ECRI', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Sports/Sports betting', + cities: ['Honolulu', 'Gilbert', 'Buffalo'], + }, + { + company: 'Skylark Travel', + name: 'Giuseppe Valentino', + email: 'zepvalue@gmail.com', + linkedIn: 'https://www.linkedin.com/in/zepvalue/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Senior Full Stack Developer', + industry: 'Travel', + cities: ['Omaha', 'Tampa', 'Lexington', 'New Orleans'], + }, + { + company: 'Skylight', + name: 'Michael Lu', + email: 'michaellu213@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael-lu/', + campus: 'LA', + cohort: '27', + jobTitle: 'Full Stack Engineer', + industry: 'Consumer Goods', + cities: ['Indianapolis', 'Milwaukee'], + }, + { + company: 'Slalom', + name: 'Angela Franco', + email: 'angelajfranco18@gmail.com', + linkedIn: 'https://www.linkedin.com/in/angela-j-franco', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer (Consultant)', + industry: 'Consulting', + cities: ['Baltimore', 'Jacksonville'], + }, + { + company: 'slalom', + name: 'Sara Kivikas', + email: 'sarakivikas@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sara-kivikas/', + campus: 'LA', + cohort: '49', + jobTitle: 'Software Engineer', + industry: 'Consulting', + cities: ['San Jose'], + }, + { + company: 'Slang.ai', + name: 'Kevin Luo', + email: 'luokev1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kevinluo117/', + campus: 'NYC', + cohort: '17', + jobTitle: 'Software Engineer', + industry: 'Customer Service', + cities: ['Chicago', 'Wichita', 'Louisville'], + }, + { + company: 'SlyEco', + name: 'Nicolas Jackson', + email: 'nicolasljax@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nicjax/', + campus: 'NYOI', + cohort: '2', + jobTitle: 'Lead Software Engineer', + industry: 'Energy/Cleantech/Greentech', + cities: ['San Diego'], + }, + { + company: 'Smarkets', + name: 'Nicholas Healy', + email: 'nickrhealy@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nick-r-healy', + campus: 'LA', + cohort: '36', + jobTitle: 'Frontend Engineer', + industry: 'Fintech', + cities: ['Omaha', 'Lubbock', 'Detroit'], + }, + { + company: 'Smartbiz', + name: 'Dennis Lopez', + email: 'dnnis.lpz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dennis-lopezsb/', + campus: 'LA', + cohort: '40', + jobTitle: 'Frontend Engineer', + industry: 'Fintech', + cities: ['Oklahoma City', 'Washington', 'Jersey City'], + }, + { + company: 'Smartrr', + name: 'Jeffrey Zheng', + email: 'zhengj98@outlook.com', + linkedIn: 'https://www.linkedin.com/in/jefzheng/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Software Developer', + industry: 'SaaS', + cities: ['Chandler', 'San Jose'], + }, + { + company: 'SmartSheet', + name: 'Isaiah Delgado', + email: 'Isaiah.del621@gmail.com', + linkedIn: 'https://www.linkedin.com/in/isaiahdel/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Software Engineer I', + industry: 'Computer Hardware & Software', + cities: ['Oklahoma City', 'Long Beach', 'Austin', 'Mesa'], + }, + { + company: 'SmartThings', + name: 'Samuel Carrasco', + email: 'Samhcarrasco@gmail.com', + linkedIn: 'https://www.linkedin.com/in/samuelhcarrasco', + campus: 'NYC', + cohort: '31', + jobTitle: 'Associate Software Engineer', + industry: 'Software / Tech', + cities: ['Jacksonville', 'Beijing', 'Miami', 'Laredo'], + }, + { + company: 'Snag Films', + name: 'Muhammad Sheikh', + email: 'muhammad.sheikh93@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/mhsheikh/', + campus: 'NYC', + cohort: '3', + jobTitle: 'Software Developer', + industry: '', + cities: ['Detroit', 'San Diego', 'Colorado Springs'], + }, + { + company: 'Snap eHealth', + name: 'Jordan Hisel', + email: 'hiseljm@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jordan-h-3b7686121/', + campus: 'LA', + cohort: '45', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['Chula Vista', 'Fresno', 'Fort Worth'], + }, + { + company: 'Snap Inc', + name: 'Christopher Guizzetti', + email: 'guizzettic@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christopherguizzetti', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Entertainment', + cities: ['Madison', 'Jersey City', 'Corpus Christi'], + }, + { + company: 'Snap Inc', + name: 'Madeline Doctor', + email: 'madelinemdoctor@gmail.com', + linkedIn: 'https://www.linkedin.com/in/madeline-doctor/', + campus: 'NYOI', + cohort: '1', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Norfolk', 'Los Angeles'], + }, + { + company: 'Snap Inc.', + name: 'Kirsten Yoon', + email: 'kirstenyoon@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kirstenyoon', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer', + industry: 'camera, social media', + cities: ['Tampa', 'Madison'], + }, + { + company: 'Socialive', + name: 'Alexander Infante', + email: 'alexinfante17@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexander-infante/', + campus: 'LA', + cohort: '35', + jobTitle: 'Platform Engineer', + industry: 'Video Streaming', + cities: ['Lubbock', 'Fresno', 'Houston'], + }, + { + company: 'SoftWriters', + name: 'Jane You', + email: 'janeyou94@gmail.com', + linkedIn: 'linkedin.com/in/janeyou94', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Garland'], + }, + { + company: 'Sojo', + name: 'Irina Khafizova', + email: 'irinakhafi@gmail.com', + linkedIn: 'https://www.linkedin.com/in/irina-khafizova/', + campus: 'NYC / ECRI', + cohort: '38', + jobTitle: 'Frontend software engineer', + industry: 'Hospitality', + cities: ['Henderson', 'Lubbock', 'Garland', 'New York'], + }, + { + company: 'Solera Health', + name: 'Joel Park', + email: 'Joelpark97@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joelprkk/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['Denver', 'Tulsa', 'Oklahoma City', 'Irvine'], + }, + { + company: 'Solid State Scientific Corporation', + name: 'Tadd LeRocque', + email: 't.lerocque@gmail.com', + linkedIn: 'https://www.linkedin.com/in/taddlerocque/', + campus: 'NYC / ECRI', + cohort: '40', + jobTitle: 'DevOps Software Developer', + industry: 'Data/Analytics/Cloud', + cities: ['St. Petersburg', 'Tokyo', 'Virginia Beach', 'Wichita'], + }, + { + company: 'Solo', + name: 'Carly Yarnell', + email: 'carly.yarnell21@gmail.com', + linkedIn: 'https://www.linkedin.com/in/carly-yarnell/', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Santa Ana'], + }, + { + company: 'Solvent', + name: 'Adam Seery', + email: 'acseery@gmail.com', + linkedIn: 'www.linkedin.com/in/adam-seery', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Miami', 'Los Angeles', 'Washington', 'St. Louis'], + }, + { + company: 'SOMA Global', + name: 'Adam Moore', + email: 'moore76sc@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adam-moore-se/', + campus: 'FTRI', + cohort: '6', + jobTitle: 'Platform Engineer', + industry: 'Public Safety', + cities: ['Sacramento', 'Orlando', 'Beijing'], + }, + { + company: 'Sonos', + name: 'Austin Andrews', + email: 'austinandrews@berkeley.edu', + linkedIn: 'https://www.linkedin.com/in/austinandrews17', + campus: 'FTRI', + cohort: '7', + jobTitle: 'Release Engineer', + industry: 'Software / Tech', + cities: ['Riverside', 'Atlanta'], + }, + { + company: 'Sonos', + name: 'Alexander Nance', + email: 'balexn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/balexandernance', + campus: 'NYC', + cohort: '23', + jobTitle: 'Senior Software Engineer', + industry: 'Consumer Electronics', + cities: ['Charlotte', 'Atlanta', 'Nashville', 'Houston'], + }, + { + company: 'Sonr', + name: 'Ian Judd', + email: 'Iankimjudd@gmail.com', + linkedIn: 'https://www.linkedin.com/in/iankjudd/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Full Stack Developer', + industry: 'Web3', + cities: ['Winston-Salem', 'St. Louis', 'Durham', 'Chicago'], + }, + { + company: 'Sourcepoint Technologies', + name: 'Adam straus', + email: 'a.straus1@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '18', + jobTitle: 'Software Engineer', + industry: 'SaaS', + cities: ['Toledo'], + }, + { + company: 'Southern California Edison (via Sharp Decisions)', + name: 'Jie Yun (Catherine) Cheng', + email: 'chengjieyun59@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cat-cheng/', + campus: 'LA', + cohort: '33', + jobTitle: 'Sr. Full Stack Developer', + industry: 'Energy', + cities: ['Denver', 'San Diego'], + }, + { + company: 'SparkCognition', + name: 'Harvey Nguyen', + email: 'harveynwynn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/harveynwynn/', + campus: 'LA', + cohort: '47', + jobTitle: 'Software Engineer II', + industry: 'Artificial intelligence', + cities: ['Indianapolis', 'Pittsburgh', 'Mexico City'], + }, + { + company: 'SparrowFi', + name: 'Alex Barbazan', + email: 'Agbarbazan@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Dallas'], + }, + { + company: 'Spatial Data Logic', + name: 'Thomas Lukasiewicz', + email: 'tlukasiewicz89@gmail.com', + linkedIn: 'https://www.linkedin.com/feed/', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Oakland', 'Sacramento', 'Beijing'], + }, + { + company: 'Spearmint', + name: 'Chloe Aribo', + email: 'chloearibo92@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chloe-aribo/', + campus: 'LA', + cohort: '33', + jobTitle: 'Senior Software Engineer', + industry: 'Security', + cities: ['Chicago'], + }, + { + company: 'SpecTrust', + name: 'Tehya Rassman', + email: 'tehyaarassman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tehya-rassman/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Software Engineer', + industry: 'Cybercrime', + cities: ['San Jose', 'Kansas City', 'Madison', 'Honolulu'], + }, + { + company: 'Specturm', + name: 'Sanjay Lavingia', + email: 'SanjayLavingia@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sanjay-lavingia/', + campus: 'LA', + cohort: '38', + jobTitle: 'Software Engineer', + industry: 'Telecom', + cities: ['Raleigh', 'Colorado Springs', 'Mesa'], + }, + { + company: 'Spirent Communications', + name: 'Dylan Bury', + email: 'dylanbury@protonmail.com', + linkedIn: 'https://www.linkedin.com/in/dylanbury/', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer', + industry: 'Telecommunications', + cities: ['Mesa', 'Minneapolis', 'Detroit'], + }, + { + company: 'Splash Financial', + name: 'Bahram Bagherzadeh', + email: 'bjbagher@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bbagher/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Senior Software Engineer', + industry: 'Finance', + cities: ['Seattle'], + }, + { + company: 'Splunk', + name: 'Caroline Kimball', + email: 'kimballcaroline@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kimballcaroline/', + campus: 'NYC / ECRI', + cohort: '37', + jobTitle: 'Software Engineer', + industry: 'Security/Data Privacy', + cities: ['Virginia Beach', 'New York', 'St. Louis'], + }, + { + company: 'Spotify', + name: 'Aaron Bart-Addison', + email: 'abaddison16@gmail.com', + linkedIn: 'https://www.linkedin.com/in/abaddison16/', + campus: 'NYC', + cohort: '6', + jobTitle: 'Web Engineer II', + industry: '', + cities: ['Atlanta'], + }, + { + company: 'Spotify', + name: 'Amanda Flink', + email: 'avflinkette@gmail.com', + linkedIn: 'https://www.linkedin.com/in/amandaflink/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Senior Web Engineer', + industry: 'Entertainment', + cities: ['Sรฃo Paulo', 'Lexington', 'Oklahoma City', 'Indianapolis'], + }, + { + company: 'Spotify', + name: 'Chris Kopcow', + email: 'ckopcow@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christopherkopcow/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Technical Writer', + industry: 'Entertainment', + cities: ['Jersey City', 'Gilbert'], + }, + { + company: 'Spotify', + name: 'Trevor Gray', + email: 'trevor.m.gray@outlook.com', + linkedIn: 'https://www.linkedin.com/mwlite/in/trev-gray', + campus: 'FTRI', + cohort: '7', + jobTitle: 'Frontend Engineer', + industry: 'Entertainment', + cities: ['Phoenix'], + }, + { + company: 'Spring Health', + name: 'Kassandra Meyer', + email: 'kassandram022@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kassandram/', + campus: 'LA', + cohort: '31', + jobTitle: 'Frontend Engineer', + industry: 'Healthcare', + cities: ['Chicago', 'North Las Vegas', 'Henderson'], + }, + { + company: 'SpringHealth', + name: 'Matthew Huang', + email: 'matthewhuang24@gmail.com', + linkedIn: 'https://www.linkedin.com/in/matthew-huang/', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['Columbus', 'Orlando', 'San Diego'], + }, + { + company: 'Spruce', + name: 'Edward Ryan', + email: '15ryane@gmail.com', + linkedIn: 'https://www.linkedin.com/in/edward-ryan/', + campus: 'LA', + cohort: '27', + jobTitle: 'Software Engineer', + industry: 'Hospitality Services', + cities: ['Lexington', 'Fort Wayne'], + }, + { + company: 'SPS Health', + name: 'Mark Teets', + email: 'markteets@gmail.com', + linkedIn: 'https://www.linkedin.com/in/markteets/', + campus: 'FTRI / CTRI', + cohort: '15', + jobTitle: 'Application Developer', + industry: 'Healthtech/Healthcare', + cities: ['Mesa', 'Sรฃo Paulo'], + }, + { + company: 'Spur Reply', + name: 'Jeffrey Pettis', + email: 'jeffrey.pettis@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jeffreypettis/', + campus: 'PTRI', + cohort: '9', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: ['Virginia Beach', 'Tokyo', 'Chula Vista'], + }, + { + company: 'Square', + name: 'Christopher Akinrinade', + email: 'chris.akinrinade@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christopher-akinrinade/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Charlotte', 'Omaha', 'Norfolk'], + }, + { + company: 'Square', + name: 'Juan Espinoza', + email: 'espinozajuan562@gmail.com', + linkedIn: 'https://www.linkedin.com/in/espinoza-juan/', + campus: 'LA', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Lexington', 'Detroit'], + }, + { + company: 'Square Root, Inc.', + name: 'Angel Vega', + email: 'angelvega85@gmail.com', + linkedIn: 'https://www.linkedin.com/in/angel-e-vega', + campus: 'LA', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Information Technology', + cities: ['Fresno', 'Chicago', 'Indianapolis'], + }, + { + company: 'STA Group', + name: 'Gabriel Machado', + email: 'bielchristo@hotmail.com', + linkedIn: '', + campus: 'LA', + cohort: '42', + jobTitle: 'UI Engineer', + industry: 'Consulting', + cities: ['New Orleans', 'Washington', 'Las Vegas', 'Oklahoma City'], + }, + { + company: 'Stacked Invest', + name: 'Ross Lamerson', + email: 'ross.lamerson@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lamerson28/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Software Engineer - Front End', + industry: 'Cryptocurrency / Fintech', + cities: ['Tucson', 'Anaheim', 'Cincinnati'], + }, + { + company: 'Standard Bots', + name: 'Arshia Masih', + email: 'arshia.masih@gmail.com', + linkedIn: 'https://www.linkedin.com/in/arshiamasih/', + campus: 'LA', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Robotics / Industrial Automation', + cities: ['Jersey City', 'Austin'], + }, + { + company: 'Starbucks', + name: 'Sam Carter', + email: 'sammahcarter@gmail.com', + linkedIn: 'https://linkedin.com/in/cartersamj', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Software Engineer', + industry: 'Restaurant, Food, and Beverage', + cities: ['Philadelphia'], + }, + { + company: 'Stardust', + name: 'James Tu', + email: 'tu.james@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jamestu2000/', + campus: 'LA', + cohort: '21', + jobTitle: 'Full Stack Engineer', + industry: '', + cities: ['Portland'], + }, + { + company: 'State Farm', + name: 'James Manahan', + email: 'manahanjames@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/jamesmanahan/', + campus: 'LA', + cohort: '34', + jobTitle: 'Software Developer', + industry: 'Insurance', + cities: ['Houston', 'Jersey City'], + }, + { + company: 'Steel Perlot', + name: 'Morris Kolman', + email: 'morristskolman@gmail.com', + linkedIn: 'linkedin.com/in/morrykolman', + campus: 'NYOI', + cohort: '2', + jobTitle: 'Initiative Lead: Social Media', + industry: 'Software / Tech', + cities: ['Raleigh', 'Madison', 'Greensboro', 'Arlington'], + }, + { + company: 'SteelHouse', + name: 'Jordan Betzer', + email: 'jordanbetzer@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jordanbetzer/', + campus: 'LA', + cohort: '26', + jobTitle: 'Software Engineer - Backend', + industry: 'Healthcare', + cities: ['Denver', 'Toledo', 'Arlington', 'Austin'], + }, + { + company: 'SteelHouse', + name: 'Taylor Burrington', + email: 'taylor.burrington@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Ad Tech', + cities: ['Jersey City'], + }, + { + company: 'Stem Disintermedia Inc.', + name: 'Mia Huynh', + email: 'mia@stem.is', + linkedIn: 'https://www.linkedin.com/in/miamyhuynh/', + campus: 'LA', + cohort: '22', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Atlanta'], + }, + { + company: 'Storyblocks', + name: 'Eric Gomez', + email: 'Ergomez0201@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eric-gomez', + campus: 'LA / WCRI', + cohort: '48', + jobTitle: 'Senior Software Engineer', + industry: 'Software / Tech', + cities: ['North Las Vegas', 'Dallas', 'Aurora'], + }, + { + company: 'Streamlit', + name: 'Sam Haar', + email: 'samhaar@gmail.com', + linkedIn: 'https://www.linkedin.com/in/samhaar/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Software Engineer', + industry: 'ML / Data / Open Source', + cities: ['Long Beach', 'Tucson', 'Detroit'], + }, + { + company: 'Stride', + name: 'Kaitlin Zhang', + email: 'Kaitlin.Zhang@owasp.org', + linkedIn: 'https://www.linkedin.com/in/kaizengrowth/', + campus: 'FTRI', + cohort: '9', + jobTitle: 'Software Engineer, Writer/Instructor', + industry: 'Software / Tech', + cities: ['Minneapolis'], + }, + { + company: 'Stride Health, Inc.', + name: 'Ben Kwak', + email: 'benjamin.h.kwak@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ben-kwak/', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Engineer, Full Stack', + industry: 'Insurance', + cities: ['Kansas City', 'Baltimore', 'Chandler'], + }, + { + company: 'Strider Technologies ', + name: 'Timothy Chang ', + email: 'timchang87@gmail.com', + linkedIn: 'https://www.linkedin.com/in/timchang87', + campus: 'PTRI', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Las Vegas', 'Denver', 'El Paso', 'Detroit'], + }, + { + company: 'Stroz Friedberg', + name: 'Madalyn Baehre', + email: 'mmbaehre@gmail.com', + linkedIn: 'https://www.linkedin.com/in/madalynbaehre/', + campus: 'LA', + cohort: '20', + jobTitle: 'Full-Stack Software Developer', + industry: '', + cities: ['London'], + }, + { + company: 'Stuff', + name: 'Joseph Toledano', + email: 'joseph.a.toledano@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joetoledano/', + campus: 'NYC', + cohort: '23', + jobTitle: 'Software Developer', + industry: 'On-Demand Work', + cities: ['Anchorage', 'Oakland', 'Winston-Salem'], + }, + { + company: 'Stuller, Inc.', + name: 'Sarah Moosa', + email: '14sbethm@gmail.com', + linkedIn: 'https://linkedin.com/in/sarah-e-moosa', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Full Stack Developer', + industry: 'Retail', + cities: ['Phoenix', 'San Francisco'], + }, + { + company: 'Stylitics', + name: 'Tania Lind', + email: 'tania.o.lind@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lind-tania/', + campus: 'LA', + cohort: '39', + jobTitle: 'Senior Frontend Engineer', + industry: 'Fashion', + cities: ['Glendale', 'Atlanta'], + }, + { + company: 'Suki AI', + name: 'Edward Shei', + email: 'edwardshei@gmail.com', + linkedIn: 'https://www.linkedin.com/in/edwardshei/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Engineer', + industry: 'Medical Transcription', + cities: ['Indianapolis', 'Anchorage', 'Tokyo'], + }, + { + company: 'Surfside', + name: 'Alec Below', + email: 'alecbelow@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '17', + jobTitle: 'Software Engineer - Platform Integration', + industry: 'Advertising', + cities: ['Denver', 'Durham'], + }, + { + company: 'Suuchi.com', + name: 'David Kim', + email: 'davidkim024@gmail.com', + linkedIn: 'https://www.linkedin.com/in/davidkim024/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Senior Full Stack Engineer', + industry: 'Manufacturing', + cities: ['Seattle', 'Fresno', 'Paris'], + }, + { + company: 'Sweetgreen', + name: 'Emilia Brizuela-Nothaft', + email: 'emiliacarmel@gmail.com', + linkedIn: 'https://www.linkedin.com/in/emilia-brizuela-nothaft/', + campus: 'LA', + cohort: '26', + jobTitle: 'Software Engineer', + industry: 'Food', + cities: ['Buffalo', 'Dallas'], + }, + { + company: 'Sweetgreen', + name: 'Melody Chai', + email: 'melodychai2@gmail.com', + linkedIn: 'https://www.linkedin.com/in/melodychai/', + campus: 'LA', + cohort: '26', + jobTitle: 'Engineer I', + industry: 'Fast Casual Dining', + cities: ['Phoenix'], + }, + { + company: 'Swisher International, Inc', + name: 'John Howell', + email: 'tsjohnnyh@gmail.com', + linkedIn: 'https://www.linkedin.com/in/johnny-r-howell/', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'eCommerce Development Supervisor', + industry: 'Other', + cities: ['Detroit', 'Virginia Beach', 'St. Petersburg', 'Miami'], + }, + { + company: 'Swoon', + name: 'Tyler Wilson', + email: 'wilsontyler95@gmail.com', + linkedIn: 'https://www.linkedin.com/in/twilsontech', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['Saint Paul', 'Honolulu', 'Bakersfield', 'Nashville'], + }, + { + company: 'Synapse FI', + name: 'Mike Huynh', + email: 'mhuynh517@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mikehuynh28/', + campus: 'LA', + cohort: '28', + jobTitle: 'Front-End Engineer II', + industry: 'Fintech', + cities: ['Oklahoma City'], + }, + { + company: 'T-Mobile', + name: 'Khang Sabre-Nguyen', + email: 'Klsabren.7@gmail.com', + linkedIn: 'https://www.linkedin.com/in/khang-sabre-nguyen/', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Software Engineer', + industry: 'Telecommunications', + cities: ['Saint Paul', 'Houston'], + }, + { + company: 'T-mobile', + name: 'Miaowen Zeng', + email: 'zmw0525@gmail.com', + linkedIn: 'www.linkedin.com/in/miaowen-zeng', + campus: 'FTRI / CTRI', + cohort: '7', + jobTitle: 'Associate Software Engineer', + industry: 'Telecommunications', + cities: ['Portland', 'Madison'], + }, + { + company: 'T. Rowe Price', + name: 'Liam Fontes', + email: 'liamfontes1244@gmail.com', + linkedIn: 'https://www.linkedin.com/in/liam-fontes/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Associate Software Engineer', + industry: 'Fintech', + cities: ['Glendale', 'Gilbert', 'Corpus Christi'], + }, + { + company: 'T. Rowe Price', + name: 'Robert Du', + email: 'robert.c.du@gmail.com', + linkedIn: 'https://www.linkedin.com/in/robert-du/', + campus: 'NYC', + cohort: '26', + jobTitle: 'Mid-Level Software Engineer (contract-to-hire)', + industry: 'Fintech', + cities: ['Glendale', 'Toledo'], + }, + { + company: 'Tailored Brands', + name: 'Viet Nguyen', + email: 'n.vietqb@gmail.com', + linkedIn: 'https://www.linkedin.com/in/viet-nguyen-2280491b2/', + campus: 'LA', + cohort: '45', + jobTitle: 'UI Engineer', + industry: 'Retail', + cities: ['Irvine', 'Sรฃo Paulo', 'Orlando'], + }, + { + company: 'Take Command Health', + name: 'Katie Janzen', + email: 'katiekennerjanzen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/katie-janzen/', + campus: 'NYC', + cohort: '32', + jobTitle: 'Front End Developer', + industry: 'Insurance', + cities: ['New York', 'Cleveland', 'Houston', 'Memphis'], + }, + { + company: 'Talage', + name: 'Parker Hutcheson', + email: 'pdhutcheson@gmail.com', + linkedIn: 'https://www.linkedin.com/in/parkerhutcheson/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Senior Software Engineer', + industry: 'Insurtech', + cities: ['San Jose', 'Jersey City', 'Corpus Christi'], + }, + { + company: 'Tallied', + name: 'Abeer Faizan', + email: 'abeerfaizan@gmail.com', + linkedIn: 'https://www.linkedin.com/in/abeerfaizan/', + campus: 'LA', + cohort: '47', + jobTitle: 'Software Engineer 2', + industry: 'Financial Services & Digital Payments', + cities: ['Fresno', 'Tucson', 'Philadelphia', 'Nashville'], + }, + { + company: 'Tandem Chat (Tandem Communications Inc.)', + name: 'John Jongsun Suh', + email: 'john.jongsun.suh@pm.me', + linkedIn: 'https://linkedin.com/in/john-jongsun-suh', + campus: 'LA', + cohort: '44', + jobTitle: 'Software Engineer', + industry: 'Communication/Productivity Software', + cities: ['Oklahoma City', 'Beijing', 'Laredo', 'St. Petersburg'], + }, + { + company: 'Tapestry', + name: 'Natalie Umanzor', + email: 'umanzor2949@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nmczormick/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'E-Commerce', + cities: ['Minneapolis', 'Washington'], + }, + { + company: 'Target', + name: 'Courtney Doss', + email: '777.catalyst@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '40', + jobTitle: 'Software Engineer', + industry: 'Retail', + cities: ['Long Beach'], + }, + { + company: 'Tatari', + name: 'Natalie Klein', + email: 'natklein3@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nataliesklein/', + campus: 'LA', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'TV ads', + cities: ['Tucson', 'Milwaukee'], + }, + { + company: 'TaxNow', + name: 'Tanner Lyon', + email: 'Tannerhlyon@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tannerhlyon', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Software Engineer', + industry: 'Business Tech/Enterprise Tech', + cities: ['San Diego', 'Seattle'], + }, + { + company: 'TaxSlayer', + name: 'Katherine Marrow', + email: 'kmcromer1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/katherine-marrow/', + campus: 'PTRI', + cohort: '9', + jobTitle: 'Full Stack Developer', + industry: 'Other', + cities: ['Winston-Salem'], + }, + { + company: 'Teachers Pay Teachers', + name: 'Courtney Kwong', + email: 'cwkwong95@gmail.com', + linkedIn: 'https://www.linkedin.com/in/courtneywkwong/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Full Stack Engineer', + industry: 'Media', + cities: ['Irvine', 'Tulsa'], + }, + { + company: 'Tech Holding', + name: 'Pablo Lee', + email: 'lee.pablo.e@gmail.com', + linkedIn: 'https://linkedin.com/in/pablo-lee/', + campus: 'LA', + cohort: '24', + jobTitle: 'Software Engineer', + industry: 'Media & Advertisement', + cities: ['Atlanta', 'Cleveland', 'Columbus'], + }, + { + company: 'TechEmpower', + name: 'Nick Stillman', + email: 'nick.edward.stillman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nick-e-stillman/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Programmer I', + industry: 'Software Development/Consulting', + cities: ['Baltimore', 'Chesapeake', 'Anchorage'], + }, + { + company: 'Technergetics', + name: 'Cody Schexnider', + email: 'codydschexnider@gmail.com', + linkedIn: 'https://www.linkedin.com/in/schexnider/', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Junior Software Engineer', + industry: 'Software / Tech', + cities: ['Reno', 'Sydney', 'Miami'], + }, + { + company: 'Technergetics', + name: 'Angel Giron', + email: 'angel.c.giron1@gmail.con', + linkedIn: 'https://www.linkedin.com/in/acgiron/', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Oakland', 'Nashville'], + }, + { + company: 'TEKsystems for AMEX', + name: 'Connor Rose Delisle', + email: 'connorrose.delisle@gmail.com', + linkedIn: 'https://www.linkedin.com/in/connorrosedelisle/', + campus: 'LA', + cohort: '37', + jobTitle: 'Developer', + industry: 'Banking', + cities: ['Tampa'], + }, + { + company: 'Teleport', + name: 'Cole Styron', + email: 'colestyron@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cole-styron/', + campus: 'LA', + cohort: '40', + jobTitle: 'Software Engineer II', + industry: 'Tech', + cities: ['San Francisco', 'Lexington'], + }, + { + company: 'Tempus', + name: 'Eterna tsai', + email: 'One.eternity@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eterna/', + campus: 'NYC', + cohort: '7', + jobTitle: 'Software engineer', + industry: '', + cities: ['Wichita', 'Houston', 'Paris', 'Honolulu'], + }, + { + company: 'Tend', + name: 'Christopher Johnson', + email: 'cjbeats@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thecjjohnson/', + campus: 'LA', + cohort: '39', + jobTitle: 'Junior Software Developer', + industry: 'Dentistry', + cities: ['Phoenix'], + }, + { + company: 'Terminus', + name: 'Jonathan Ascencio', + email: 'Jonascencio1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonascencio/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Engineer', + industry: 'Marketing Tevh', + cities: ['San Francisco'], + }, + { + company: 'The Action Network', + name: 'Diana Li', + email: 'dianalicarrasco@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dianalicarrasco/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Software Engineer II', + industry: 'Entertainment', + cities: ['Colorado Springs', 'Greensboro', 'Honolulu', 'Memphis'], + }, + { + company: 'The Action Network', + name: 'Mahmoud Hmaidi', + email: 'mhmaidi789@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mahmoud-hmaidi-mo/', + campus: 'LA', + cohort: '42', + jobTitle: 'Software Engineer II', + industry: 'Entertainment', + cities: ['Scottsdale', 'Lincoln', 'St. Petersburg'], + }, + { + company: 'The Charles Stark Draper Laboratory, Inc.', + name: 'Kelsey Flynn', + email: 'flynn.kelseyelizabeth@gmail.com', + linkedIn: 'www.linkedin.com/in/kelseyeflynn/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Member of Technical Staff in Fullstack Web Group', + industry: 'Research', + cities: ['Nashville', 'Charlotte', 'Oklahoma City', 'Baltimore'], + }, + { + company: 'The Coates Group', + name: 'Brandon Tran', + email: 'btran140@gmail.com', + linkedIn: 'https://www.linkedin.com/in/btran140', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Typescript Full Stack Engineer', + industry: 'Software / Tech', + cities: ['Lincoln', 'Gilbert'], + }, + { + company: 'The Cru', + name: 'Brooke Luro', + email: 'lurob@me.com', + linkedIn: 'https://www.linkedin.com/in/brooke-luro-4413046a/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Software Engineer', + industry: 'Professional Training & Coaching', + cities: ['Boston', 'Oakland', 'Toronto', 'Detroit'], + }, + { + company: 'The Edge Treatment Center', + name: 'Joey Ma', + email: 'joeyma@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joeyma/', + campus: 'LA / WCRI', + cohort: '47', + jobTitle: 'Web Developer', + industry: 'Healthcare', + cities: ['Winston-Salem', 'Toronto', 'Kansas City', 'North Las Vegas'], + }, + { + company: 'The Farm Project', + name: 'Quoc Bui', + email: 'quocbui@gmail.com', + linkedIn: 'https://www.linkedin.com/in/buiquoc/', + campus: 'LA', + cohort: '26', + jobTitle: 'Lead Web UI Engineer?', + industry: 'Telecommunications', + cities: ['Winston-Salem'], + }, + { + company: 'The Farmerโ€™s Dog', + name: 'Willem Rosenthal', + email: 'willemrosenthal@gmail.com', + linkedIn: 'https://www.linkedin.com/in/willem-rosenthal', + campus: 'NYOI', + cohort: '1', + jobTitle: 'Software Engineer III', + industry: 'Other', + cities: ['Toledo', 'El Paso'], + }, + { + company: 'the guarantors', + name: 'Dmitriy Levy', + email: 'dmitriylevy01@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dmitriy-levy/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Colorado Springs', 'New Orleans', 'Glendale'], + }, + { + company: 'The Home Depot', + name: 'Eric Han', + email: 'eric.j.h92@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eric-j-han/', + campus: 'LA / WCRI', + cohort: '48', + jobTitle: 'Front-End Developer', + industry: 'Retail', + cities: ['Jacksonville', 'Tulsa', 'Aurora', 'Plano'], + }, + { + company: 'The Home Depot', + name: 'Max Nikitin', + email: 'teachandtravelcn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/maxnikitin23/', + campus: 'LA', + cohort: '40', + jobTitle: 'Full Stack Software Engineer', + industry: 'Construction/retail', + cities: ['Dallas', 'Seattle', 'Corpus Christi'], + }, + { + company: 'The New York Times', + name: 'Karl Eden', + email: 'karl94e@gmail.com', + linkedIn: 'www.linkedin.com/in/karleden', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Software Engineer', + industry: 'News/Entertainment/Streaming Platforms', + cities: ['Denver', 'San Diego', 'Cincinnati'], + }, + { + company: 'The New Yorker', + name: 'Julien Devlin', + email: 'juliendevlin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/juliendevlin/', + campus: 'NYC / ECRI', + cohort: '38', + jobTitle: 'Software Developer', + industry: 'News/Entertainment/Streaming Platforms', + cities: ['Pittsburgh', 'Bakersfield'], + }, + { + company: 'The Perlman Clinic', + name: 'Louis Sheid', + email: 'louisxsheid@gmail.com', + linkedIn: 'https://www.linkedin.com/in/louisxsheid/', + campus: 'LA', + cohort: '36', + jobTitle: 'Full Stack Developer', + industry: 'Healthcare', + cities: ['Irving', 'Chula Vista', 'Phoenix'], + }, + { + company: 'The Prospector Theater', + name: 'Kelly Cuevas', + email: 'cuev73@live.com', + linkedIn: 'https://www.linkedin.com/in/kelly-cuevas/', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Lead Frontend Engineer', + industry: 'Social Impact/Nonprofit', + cities: ['Miami', 'Louisville', 'Henderson', 'Oklahoma City'], + }, + { + company: 'The Trevor Project / Tecnolochicas Pro', + name: 'Miranda Jaramillo Morales', + email: 'mirandajaramillomorales@gmail.com', + linkedIn: 'https://www.linkedin.com/in/miranda-jaramillo/', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Software Engineer II / Software Engineering Mentor', + industry: 'Software / Tech', + cities: ['San Antonio'], + }, + { + company: 'The Walt Disney Company', + name: 'Gabriel Machado', + email: 'bielchristo@hotmail.com', + linkedIn: 'https://www.linkedin.com/in/bielchristo/', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer', + industry: 'Entertainment', + cities: ['London', 'Boston', 'Madison', 'Norfolk'], + }, + { + company: 'The Walt Disney Company', + name: 'Ryan London', + email: 'ryel590@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ryanlondon/', + campus: 'LA', + cohort: '18', + jobTitle: 'Senior Software Engineer', + industry: 'IT', + cities: ['Tokyo', 'Toronto', 'Wichita'], + }, + { + company: 'The Walt Disney Company', + name: 'Shane Taylor', + email: 'shaneallantaylor@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shane-allan-taylor/', + campus: 'LA', + cohort: '27', + jobTitle: 'Software Engineer', + industry: 'Entertainment/Media', + cities: ['Long Beach', 'Chula Vista', 'Virginia Beach', 'Tokyo'], + }, + { + company: 'The Walt Disney Company', + name: 'Yurii Shchyrba', + email: 'yurashchyrba@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yuriishchyrba/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Software Engineer II', + industry: 'Software / Tech', + cities: ['Las Vegas'], + }, + { + company: 'The Washington Post', + name: 'Christelle Desire', + email: 'Cdesire20@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christelle-desire/', + campus: 'LA', + cohort: '39', + jobTitle: 'Full stack engineer', + industry: 'Newsroom', + cities: ['Lexington', 'Stockton', 'Newark', 'Cincinnati'], + }, + { + company: 'The Wing', + name: 'Xaria Kirtikar', + email: 'xariak91@gmail.com', + linkedIn: 'https://www.linkedin.com/in/xaria/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Engineer', + industry: 'Co-working spaces', + cities: ['Indianapolis'], + }, + { + company: 'The X Company', + name: 'Roy Quintana', + email: 'rolandquintana1991@gmail.com', + linkedIn: 'https://www.linkedin.com/in/royquintana/', + campus: 'LA', + cohort: '28', + jobTitle: 'Senior Software Engineer', + industry: 'Real Estate', + cities: ['San Francisco', 'Sรฃo Paulo', 'Louisville', 'Washington'], + }, + { + company: 'TheMuse', + name: 'Franklin pinnock', + email: 'pinnockf@gmail.com', + linkedIn: 'https://www.linkedin.com/in/pinnockf/', + campus: 'NYC', + cohort: '9', + jobTitle: 'Full-Stack Engineer', + industry: 'Robotics', + cities: ['Austin', 'London'], + }, + { + company: 'Thomson Reuters', + name: 'Li Cheng', + email: 'lilybearcheng@gmail.com', + linkedIn: 'https://www.linkedin.com/in/li-cheng-76890540/', + campus: 'LA / WCRI', + cohort: '50', + jobTitle: 'Integration Engineer', + industry: 'IT Services', + cities: ['Lubbock', 'Pittsburgh'], + }, + { + company: 'ThreeKit', + name: 'Alison Fay', + email: 'aliglass13@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alison-fay/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Wichita', 'Pittsburgh', 'El Paso', 'Aurora'], + }, + { + company: 'Thriveworks', + name: 'Alma Eyre', + email: 'aselunar@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alma-eyre/', + campus: 'NYC / ECRI', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['North Las Vegas'], + }, + { + company: 'Thriveworks', + name: 'Charissa Ramirez', + email: 'chawissa@gmail.com', + linkedIn: 'https://linkedin.com/in/chawissa', + campus: 'NYC / ECRI', + cohort: '32', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['Scottsdale'], + }, + { + company: 'Ticket Bridge', + name: 'Travis Frank', + email: 'travis@travismfrank.com', + linkedIn: 'https://www.linkedin.com/in/travis-m-frank/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Founder', + industry: 'Live Events', + cities: ['Boston'], + }, + { + company: 'TikTok', + name: 'James Cross', + email: 'jamespvcross@gmail.com', + linkedIn: 'https://www.linkedin.com/in/james-p-cross1/', + campus: 'NYC', + cohort: '28', + jobTitle: 'Software Engineer', + industry: 'Social Media', + cities: ['London', 'Cincinnati'], + }, + { + company: 'TikTok', + name: 'Jason Speare', + email: 'jcspeare@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jason-speare', + campus: 'LA', + cohort: '41', + jobTitle: 'Site Reliability Engineer', + industry: 'Video Social Networking', + cities: ['St. Petersburg', 'San Antonio'], + }, + { + company: 'Tinder', + name: 'Harrison Nam', + email: 'harrison.j.nam@gmail.com', + linkedIn: 'https://www.linkedin.com/in/harrison-nam/', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer', + industry: 'Social', + cities: ['Honolulu', 'Pittsburgh'], + }, + { + company: 'Tinder', + name: 'Harrison Nam', + email: 'harrison.j.nam@gmail.com', + linkedIn: 'https://www.linkedin.com/in/harrison-nam/', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer II, Web Development', + industry: 'Dating', + cities: ['Sรฃo Paulo'], + }, + { + company: 'Tinder', + name: 'Serge Vartanov', + email: 'vartanov.s@gmail.com', + linkedIn: 'https://www.linkedin.com/in/svartanov/', + campus: 'LA', + cohort: '24', + jobTitle: 'Senior Backend Engineer', + industry: '', + cities: ['Anaheim', 'Tucson', 'Mesa', 'St. Petersburg'], + }, + { + company: 'Tixologi', + name: 'Mark Nichting', + email: 'mtnichting@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mark-nichting/', + campus: 'LA / WCRI', + cohort: '53', + jobTitle: 'Frontend Engineer', + industry: 'Blockchain/Web3', + cities: ['Honolulu', 'Lincoln', 'St. Petersburg', 'Nashville'], + }, + { + company: 'Toast Inc', + name: 'Denys Dekhtiarenko', + email: 'dekhtiarenko.d@gmail.com', + linkedIn: 'https://www.linkedin.com/in/denysdekhtiarenko/', + campus: 'NYC', + cohort: '18', + jobTitle: 'Software Engineer II', + industry: 'Restaurant software', + cities: ['Mexico City', 'Bakersfield', 'Winston-Salem', 'Raleigh'], + }, + { + company: 'TodayTix Group', + name: 'Xiao Li', + email: 'lixtong@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lixiaotong/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Associate Software Engineer', + industry: 'Entertainment', + cities: ['Louisville', 'Raleigh', 'Norfolk', 'Charlotte'], + }, + { + company: 'TomoCredit', + name: 'Ramtin Khoee', + email: 'Ramtin.khoee@gmail.com', + linkedIn: 'https://www.linkedin.com/mwlite/in/ramtinkhoee', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Fort Worth'], + }, + { + company: 'Topologe (working with the Air Force)', + name: 'Joseph Michael Corrado', + email: 'joeyycorrss@gmail.com', + linkedIn: 'https://www.linkedin.com/in/josephmichaelcorrado/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Senior Software Engineer', + industry: 'Web Dev for Air Force', + cities: ['Orlando'], + }, + { + company: 'Tortus', + name: 'Victor To', + email: 'victorto123@gmail.com', + linkedIn: 'https://www.linkedin.com/in/victorto1/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer', + industry: 'Real Estate Tech', + cities: ['Wichita', 'Oklahoma City', 'Scottsdale'], + }, + { + company: 'Toucan', + name: 'Isaac Durand', + email: 'isaac.durand@gmail.com', + linkedIn: 'https://www.linkedin.com/in/isaacdurand', + campus: 'LA', + cohort: '5', + jobTitle: 'Senior Engineer II', + industry: '', + cities: ['Wichita', 'Virginia Beach', 'Anaheim'], + }, + { + company: 'Toucan', + name: 'Jane Kim', + email: 'jane.minhyung.kim@gmail.com', + linkedIn: 'https://www.linkedin.com/in/janeminhyungkim/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Software Engineer', + industry: 'Education tools', + cities: ['Cleveland'], + }, + { + company: 'Toyota', + name: 'Melanie Forbes', + email: 'mforbes12@gmail.com', + linkedIn: 'https://www.linkedin.com/in/melanie-forbes-/', + campus: 'FTRI / CTRI', + cohort: '12', + jobTitle: 'Software Engineer', + industry: 'Automotive', + cities: ['Newark'], + }, + { + company: 'Toyota', + name: 'Emily Hoang', + email: 'ethlin4@gmail.com', + linkedIn: 'https://www.linkedin.com/in/emilyhoang', + campus: 'FTRI / CTRI', + cohort: '14', + jobTitle: 'Software Engineer', + industry: 'Automotive', + cities: ['Oklahoma City'], + }, + { + company: 'TradeAlly', + name: 'Adepeju Orefejo', + email: 'adepeju.kayode@gmail.com', + linkedIn: 'https://www.linkedin.com/adepeju-orefejo', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Backend Engineer', + industry: 'Software / Tech', + cities: ['Saint Paul'], + }, + { + company: 'Travelers Companies Inc.', + name: 'Dylan Li', + email: 'dyli797@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dli107/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Software Engineer', + industry: 'Insurance', + cities: ['Sรฃo Paulo', 'Henderson', 'Memphis'], + }, + { + company: 'Trend micro', + name: 'Daniel Balistocky', + email: 'thestinx@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dannyb1983', + campus: 'LA', + cohort: '41', + jobTitle: 'Software engineer', + industry: 'Web security', + cities: ['Madison', 'Denver'], + }, + { + company: 'TreviPay', + name: 'Utkarsh Uppal', + email: 'utkarshuppal@gmial.com', + linkedIn: 'https://www.linkedin.com/in/utkarshuppal/', + campus: 'LA / WCRI', + cohort: '55', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: ['Omaha', 'St. Louis'], + }, + { + company: 'Tribe Labs Inc.', + name: 'Alexander Landeros', + email: 'alexander.landeros1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alexander-landeros/', + campus: 'LA', + cohort: '38', + jobTitle: 'Frontend Software Engineer', + industry: 'Communication Tech', + cities: ['Denver', 'Milwaukee'], + }, + { + company: 'Trineo', + name: 'Rebecca Viner', + email: 'rtviner@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rtviner/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Engineer II', + industry: 'Software Consultancy', + cities: ['Sacramento', 'North Las Vegas', 'Albuquerque', 'Henderson'], + }, + { + company: 'Tripadvisor', + name: 'Jake Bradbeer', + email: 'jakebradbeer@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jacobbradbeer/', + campus: 'LA', + cohort: '49', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Pittsburgh', 'Buffalo', 'Wichita'], + }, + { + company: 'TripleLift', + name: 'Arron Nestor', + email: 'arronnestor@gmail.com', + linkedIn: 'https://www.linkedin.com/in/arron-nestor/', + campus: 'PTRI', + cohort: '2', + jobTitle: 'Cloud Infrastructure Engineer', + industry: 'Ad-Tech', + cities: ['Fort Wayne', 'San Jose', 'Louisville'], + }, + { + company: 'Triplelift', + name: 'Kia Colbert', + email: 'colber16@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kiacolbert/', + campus: 'NYC', + cohort: '9', + jobTitle: 'Engineer I', + industry: 'Social Impact', + cities: ['Fort Worth'], + }, + { + company: 'True Tickets', + name: 'Alesi-Andreya Ladas', + email: 'alesiladas@gmail.com', + linkedIn: 'https://www.linkedin.com/in/alesiladas/', + campus: 'NYC', + cohort: '3', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Irving', 'San Antonio', 'Raleigh', 'Chicago'], + }, + { + company: 'TrueCar', + name: 'Calvin Cao', + email: 'jtcao430@gmail.com', + linkedIn: 'https://www.linkedin.com/in/calvincao9/', + campus: 'LA', + cohort: '48', + jobTitle: 'Software Engineer II', + industry: 'Marketing', + cities: ['Stockton', 'Durham', 'Washington'], + }, + { + company: 'TrueCar', + name: 'Zac Haluza', + email: 'zac.haluza@gmail.com', + linkedIn: 'https://www.linkedin.com/in/zhaluza/', + campus: 'NYC', + cohort: '17', + jobTitle: 'Software Engineer', + industry: 'Automotive', + cities: ['Fort Wayne', 'Indianapolis', 'Lincoln'], + }, + { + company: 'trueface.ai', + name: 'Sam Siye Yu', + email: 'yudataguy@gmail.com', + linkedIn: 'https://www.linkedin.com/in/yusiye/', + campus: 'LA', + cohort: '27', + jobTitle: 'full stack developer', + industry: 'computer vision', + cities: ['London'], + }, + { + company: 'Truepill', + name: 'Justin Baik', + email: 'bij3377@gmail.com', + linkedIn: 'https://www.linkedin.com/in/justin-baik/', + campus: 'LA', + cohort: '42', + jobTitle: 'Associate Software Engineer', + industry: 'Health Tech', + cities: ['Glendale', 'Arlington', 'Corpus Christi'], + }, + { + company: 'Truepill', + name: 'Jonah Stewart', + email: 'jonahlstewart@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jonahlstewart/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Associate Software Engineer - Backend', + industry: 'Healthtech', + cities: ['Fort Worth', 'Baltimore', 'San Antonio', 'Dallas'], + }, + { + company: 'Turbonomic', + name: 'Tyler Hurtt', + email: 'TylerAdamHurtt@gmail.com', + linkedIn: 'https://www.linkedin.com/in/TylerHurtt/', + campus: 'LA', + cohort: '34', + jobTitle: 'Senior Software Engineer', + industry: 'Cloud & Network Monitoring', + cities: ['North Las Vegas', 'Albuquerque'], + }, + { + company: 'Twilio', + name: 'Christopher Docuyanan', + email: 'Christophejd@gmail.com', + linkedIn: 'https://www.linkedin.com/in/cjdocuyanan/', + campus: 'LA', + cohort: '40', + jobTitle: 'Software Engineer (Personas R&D)', + industry: 'Communications', + cities: ['Toronto', 'Columbus', 'Jacksonville', 'Virginia Beach'], + }, + { + company: 'Twitch', + name: 'Alice Wong', + email: 'alice.sky.wong@gmail.com', + linkedIn: 'https://www.linkedin.com/in/wong-alice/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Frontend Engineer', + industry: 'IoT', + cities: ['Oklahoma City', 'Philadelphia'], + }, + { + company: 'Two Barrels LLC', + name: 'Ryan Rambaran', + email: 'ryanrambaran.fl@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ryan-rambaran/', + campus: 'PTRI', + cohort: '4', + jobTitle: 'Front End Developer', + industry: 'Software / Tech', + cities: ['Philadelphia', 'Berlin', 'Anaheim', 'Memphis'], + }, + { + company: 'Two Six Labs', + name: 'Kevin Nam', + email: 'Kevinjnam@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '31', + jobTitle: 'Software Engineer - Front End', + industry: 'Cybersecurity', + cities: ['Chesapeake', 'Paris', 'St. Louis'], + }, + { + company: 'TwoSix Labs', + name: 'Darren Napier', + email: 'darren.napier5@gmail.com', + linkedIn: 'https://www.linkedin.com/in/darrencnapier/', + campus: 'LA', + cohort: '31', + jobTitle: 'Jr. Frontend Developer', + industry: 'Government', + cities: ['Anchorage', 'Los Angeles'], + }, + { + company: 'TwoThirtySix Labs', + name: 'Tayvon Wright', + email: 'tayvonwright@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tayvon-wright/', + campus: 'NYC', + cohort: '10', + jobTitle: 'Backend Engineer', + industry: 'Crypto', + cities: ['Tucson', 'Paris'], + }, + { + company: 'Uber', + name: 'Michael Noah', + email: 'mnoah1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mnoah/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Software Engineer II', + industry: 'Transportation', + cities: ['Phoenix'], + }, + { + company: 'UiPath', + name: 'Eric Rodgers', + email: 'ericerodgers@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/erodgers/', + campus: 'NYC', + cohort: '31', + jobTitle: 'Software Engineer (SE1)', + industry: 'Software / Tech', + cities: ['Scottsdale', 'Philadelphia', 'Indianapolis', 'Oakland'], + }, + { + company: 'Umbra', + name: 'Joey Friedman', + email: 'friedman.joey@gmail.com', + linkedIn: 'https://www.linkedin.com/in/joseph-friedman-803803149/', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Software Engineer', + industry: 'Aerospace', + cities: ['Cincinnati', 'San Francisco'], + }, + { + company: 'Uncommon Schools', + name: 'Taryn A Cunha', + email: 'taryn.cunha@gmail.com', + linkedIn: 'LinkedIn.com/in/taryncunha', + campus: 'NYC / ECRI', + cohort: '34', + jobTitle: 'Integrationโ€™s Developer', + industry: 'Other', + cities: ['Baltimore', 'Plano'], + }, + { + company: 'Unify Consulting', + name: 'Gibran Haq', + email: 'gibran.haq57@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gibran-haq/', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Senior Consultant', + industry: 'Consulting', + cities: ['Santa Ana', 'Riverside', 'Colorado Springs', 'Chula Vista'], + }, + { + company: 'Uniphore', + name: 'Vince Vu', + email: 'vince.hvu@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vin-vu/', + campus: 'LA', + cohort: '42', + jobTitle: 'Full Stack Developer', + industry: 'Conversational Service Automation', + cities: ['Laredo', 'Saint Paul', 'Milwaukee', 'Anchorage'], + }, + { + company: 'Unit21', + name: 'Nicole Ip', + email: 'nicole@unit21.ai', + linkedIn: '', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer', + industry: 'AI / ML', + cities: ['Tulsa', 'Santa Ana', 'Tokyo', 'Mesa'], + }, + { + company: 'United Airlines', + name: 'Jordan Jeter', + email: 'jeter.education@gmail.com', + linkedIn: 'linkedin.com/in/jordanrjeter', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Developer - IT', + industry: 'Aerospace', + cities: ['Stockton', 'Plano', 'Atlanta', 'Bakersfield'], + }, + { + company: 'United Power', + name: 'Clifford Harvey', + email: 'cliffharvey06@gmail.com', + linkedIn: 'https://www.linkedin.com/in/clifford-harvey/', + campus: 'LA', + cohort: '16', + jobTitle: 'Sr Fullstack Developer', + industry: '', + cities: ['Orlando', 'Bakersfield', 'Milwaukee', 'Glendale'], + }, + { + company: 'United States Cold Storage Inc', + name: 'Glen Kasoff', + email: 'glen.kasoff@gmail.com', + linkedIn: 'https://www.linkedin.com/in/glen-kasoff', + campus: 'PTRI', + cohort: '7', + jobTitle: 'Software Developer ERP', + industry: 'Other', + cities: ['Paris', 'Greensboro', 'Scottsdale', 'Nashville'], + }, + { + company: 'University of California', + name: 'Justin Wouters', + email: 'justinwouters@gmail.com', + linkedIn: 'Https://www.linkedin.com/in/justinwouters', + campus: 'FTRI / CTRI', + cohort: '9', + jobTitle: 'Junior application developer', + industry: 'Other', + cities: ['Norfolk', 'Glendale'], + }, + { + company: 'University of Chicago, Center for the Art of East Asia', + name: 'Greg Panciera', + email: 'gregpanciera@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gregpanciera', + campus: 'LA', + cohort: '36', + jobTitle: 'Web Developer', + industry: 'Art', + cities: ['Lubbock', 'Corpus Christi'], + }, + { + company: 'Unqork', + name: 'Donald Blanc', + email: 'Donaldblanc1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/donald-b/', + campus: 'NYC', + cohort: '11', + jobTitle: 'Senior Software Engineer', + industry: 'Tech', + cities: ['Denver', 'El Paso', 'Colorado Springs'], + }, + { + company: 'Unum ID', + name: 'Allison Roderiques', + email: 'aeroderiques@gmail.com', + linkedIn: 'https://www.linkedin.com/in/allison-roderiques/', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Full Stack Developer', + industry: 'Other', + cities: ['Nashville', 'Boston'], + }, + { + company: 'Uphold', + name: 'Chelsea Harris', + email: 'chelseaharris137@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chelseaharris23/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Frontend Engineer', + industry: 'Crypto', + cities: ['El Paso'], + }, + { + company: 'Upkeep', + name: 'Elie Baik', + email: 'semsemm810@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sae-min-baik', + campus: 'LA', + cohort: '34', + jobTitle: 'Software Engineer', + industry: 'CRM', + cities: ['Chandler', 'Long Beach', 'Nashville', 'Aurora'], + }, + { + company: 'UST', + name: 'Dhruv Thota', + email: 'dthota8@gmail.com', + linkedIn: 'https://linkedin.com/in/dhruv-thota', + campus: 'NYC / ECRI', + cohort: '36', + jobTitle: 'Software Engineer', + industry: 'Software Solutions/Developer Tools', + cities: ['Jersey City', 'Scottsdale', 'San Francisco', 'Seattle'], + }, + { + company: 'VacationRenter', + name: 'Michele Moody', + email: 'moody.lillian@gmail.com', + linkedIn: 'https://www.linkedin.com/in/milmoody/', + campus: 'LA', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Travel', + cities: ['Glendale', 'Oakland', 'Mumbai'], + }, + { + company: 'Valor Performance', + name: 'Marco Tulio Gonzalez', + email: 'marco.t.gonzalez15@gmail.com', + linkedIn: 'https://www.linkedin.com/in/marcogonzalez2015/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Senior Software Engineer', + industry: 'Other', + cities: ['San Antonio', 'Houston', 'Riverside'], + }, + { + company: 'VanGo', + name: 'Nicolas Venegas', + email: 'nicolasvenegasparker@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nicolas-venegas-parker/', + campus: 'LA', + cohort: '30', + jobTitle: 'Mobile Software Engineer', + industry: 'Consumer / Transportation', + cities: ['Minneapolis', 'North Las Vegas'], + }, + { + company: 'Vanguard', + name: 'Ian Kila', + email: 'ian.nie.kila@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ian-kila', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Application Developer', + industry: 'Software / Tech', + cities: ['Philadelphia', 'Lexington', 'Winston-Salem', 'Cleveland'], + }, + { + company: 'Vanguard', + name: 'Carolina Bonitatis', + email: 'carolina@bonitat.is', + linkedIn: 'https://www.linkedin.com/in/carolina-bonitatis/', + campus: 'NYC / ECRI', + cohort: '42', + jobTitle: 'Application Developer', + industry: 'Other', + cities: ['Boston', 'Tucson'], + }, + { + company: 'Vantage Point Consulting, Inc.', + name: 'Constance Cho', + email: 'chcho87@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chcho2/', + campus: 'NYC', + cohort: '21', + jobTitle: 'Full Stack Engineer', + industry: 'Consulting', + cities: ['New York'], + }, + { + company: 'Vaulted Oak', + name: 'Alfred Sta. Iglesia', + email: 'a.sta.iglesia@gmail.com', + linkedIn: 'https://www.linkedin.com/in/astaiglesia/', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer + Solutions Architect', + industry: 'E-Commerce', + cities: ['Gilbert', 'Milwaukee'], + }, + { + company: 'VedaPointe', + name: 'Michelle Chang', + email: 'michelle.kelly.chang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michellekchang/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Software Developer', + industry: 'Healthcare', + cities: ['Tokyo'], + }, + { + company: 'Vercel', + name: 'Jueun Grace Yun', + email: 'graceyunn@gmail.com', + linkedIn: 'https://www.linkedin.com/in/gracejueunyun/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Gaming hardware', + cities: ['Raleigh', 'Cincinnati', 'Chesapeake'], + }, + { + company: 'Verily Life Sciences', + name: 'Michael Geismar', + email: 'mikelafobe@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/michael-geismar/', + campus: 'FTRI', + cohort: '2', + jobTitle: 'Software Engineer', + industry: 'Life Sciences', + cities: ['Chicago', 'New Orleans', 'Chandler', 'Beijing'], + }, + { + company: 'Veritext', + name: 'Shawn Convery', + email: 'shawnmconvery@gmail.com', + linkedIn: 'https://www.linkedin.com/in/shawnconvery1/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Software Engineer', + industry: 'Law', + cities: ['Virginia Beach', 'London', 'Lubbock', 'Scottsdale'], + }, + { + company: 'Veritext', + name: 'Storm Ross', + email: 'stormaross@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stormaross/', + campus: 'NYC', + cohort: '27', + jobTitle: 'Backend Developer', + industry: 'Legal', + cities: ['Winston-Salem', 'Fresno'], + }, + { + company: 'Verizon Media Platform', + name: 'Leonard Kee', + email: 'leonardwkee@gmail.com', + linkedIn: 'https://www.linkedin.com/in/thiskeeword/', + campus: 'LA', + cohort: '4', + jobTitle: 'Software Development Engineer II', + industry: 'Media', + cities: ['Philadelphia', 'El Paso', 'Memphis', 'Dallas'], + }, + { + company: 'Vertalo', + name: 'Phillip Bannister', + email: 'phillip.kbannister@Gmail.com', + linkedIn: 'https://www.linkedin.com/in/phillipkekoabannister/', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Memphis', 'Paris'], + }, + { + company: 'Verys', + name: 'Ray Yao', + email: 'rocaray51@gmail.com', + linkedIn: 'https://www.linkedin.com/in/raymondyao51/', + campus: 'LA', + cohort: '27', + jobTitle: 'Software Developer', + industry: 'Consulting/Contracting Agency', + cities: ['Greensboro', 'Portland'], + }, + { + company: 'Verys', + name: 'Ted Min', + email: 'tedtaemin@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '41', + jobTitle: 'Senior Software Engineer', + industry: 'Consulting', + cities: ['Miami', 'Cleveland', 'Mexico City', 'Milwaukee'], + }, + { + company: 'View, Inc.', + name: 'Eric Lee', + email: 'emlee54@gmail.com', + linkedIn: 'https://www.linkedin.com/in/errc-lee/', + campus: 'LA', + cohort: '45', + jobTitle: 'Software Engineer, Front-End', + industry: 'Software / Tech', + cities: ['New York', 'Saint Paul', 'Los Angeles', 'Seattle'], + }, + { + company: 'Violet', + name: 'Johanna Merluza', + email: 'johanna.merluza@gmail.com', + linkedIn: 'https://www.linkedin.com/in/johannamerluza/', + campus: 'FTRI / CTRI', + cohort: '13', + jobTitle: 'Senior Full Stack Engineer', + industry: 'Software / Tech', + cities: ['Fresno'], + }, + { + company: 'Virga Labs', + name: 'Vance McGrady', + email: 'vancemcgrady@gmail.com', + linkedIn: 'https://www.linkedin.com/in/vancemcgrady/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Application Developer', + industry: 'Data Analytics', + cities: ['Fresno'], + }, + { + company: 'Virgin Hyperloop One', + name: 'Justin Fung', + email: 'justincaseyfung@gmail.com', + linkedIn: 'https://www.linkedin.com/in/citrusvanilla/', + campus: 'LA', + cohort: '30', + jobTitle: 'Front-End Developer', + industry: 'Transportation', + cities: ['Pittsburgh', 'Honolulu', 'Madison', 'Fresno'], + }, + { + company: 'Virgin Orbit', + name: 'Arkadiy Nigay', + email: 'ark234@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ark234', + campus: 'LA', + cohort: '23', + jobTitle: 'Full Stack Developer', + industry: 'Aerospace', + cities: ['Chandler'], + }, + { + company: 'Virgin Orbit', + name: 'Eric McCorkle', + email: 'ericm.mccorkle@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eric-mccorkle/', + campus: 'LA', + cohort: '48', + jobTitle: 'Full Stack Developer', + industry: 'Aerospace', + cities: ['Henderson'], + }, + { + company: 'Virtru', + name: 'Jake Van Vorhis', + email: 'vanvorhisjake@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jakedoublev/', + campus: 'PTRI', + cohort: '5', + jobTitle: 'Senior Full Stack Engineer', + industry: 'Security', + cities: ['Paris', 'San Francisco', 'Detroit', 'Lincoln'], + }, + { + company: 'Visa', + name: 'Bryan Mooyeong Lee', + email: 'mylee1995@gmail.com', + linkedIn: 'https://www.linkedin.com/bryanm-lee', + campus: 'NYC', + cohort: '12', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Winston-Salem', 'Chandler', 'El Paso'], + }, + { + company: 'VMware', + name: 'Maureen Onchiri', + email: 'onchirimaureen1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/maureenonchiri/', + campus: 'NYC', + cohort: '24', + jobTitle: 'Software Engineer', + industry: 'Tech', + cities: ['Winston-Salem', 'Bakersfield', 'Fort Worth', 'Minneapolis'], + }, + { + company: 'Volta Charging', + name: 'Maximilian Gonzalez', + email: 'thamaxlg@gmail.com', + linkedIn: 'https://www.linkedin.com/in/maximiliangonzalez/', + campus: 'LA', + cohort: '29', + jobTitle: 'Full Stack Software Engineer, Cloud Platform', + industry: 'Transportation', + cities: ['Pittsburgh', 'Minneapolis', 'Saint Paul', 'Henderson'], + }, + { + company: 'VS Media Inc', + name: 'Patrick Hu', + email: 'patrickhu91@gmail.com', + linkedIn: 'https://www.LinkedIn.com/in/patrickhu91', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'JavaScript Developer', + industry: 'Entertainment', + cities: ['Omaha', 'Irvine', 'Greensboro', 'Madison'], + }, + { + company: 'VTS', + name: 'Andy Koh', + email: 'yk567@cornell.edu', + linkedIn: 'https://www.linkedin.com/in/andersonkoh/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Engineer, Platform', + industry: 'Commercial Real Estate', + cities: ['Plano', 'St. Petersburg', 'Oakland', 'Glendale'], + }, + { + company: 'W.L. Gore & Associates', + name: 'Amir Marcel', + email: 'amirmarcel@yahoo.com', + linkedIn: 'https://www.linkedin.com/in/amir-marcel', + campus: 'LA', + cohort: '39', + jobTitle: 'Backend Developer', + industry: 'Manufacturing', + cities: ['Atlanta', 'Austin', 'Orlando'], + }, + { + company: 'Wag Labs Inc', + name: 'William Adamowicz', + email: 'william.adamowicz@gmail.com', + linkedIn: 'https://www.linkedin.com/in/williamadamowicz/', + campus: 'LA', + cohort: '24', + jobTitle: 'Software Engineer', + industry: 'Pet Care', + cities: ['San Francisco', 'Jacksonville', 'Orlando'], + }, + { + company: 'Walgreens', + name: 'Ed Cho', + email: 'edcho720@gmail.com', + linkedIn: 'https://www.linkedin.com/in/edcho720/', + campus: 'FTRI / CTRI', + cohort: '12', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Phoenix'], + }, + { + company: 'Walmart', + name: 'ChunHao Zheng', + email: 'chz062009@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chunhz/', + campus: 'NYC / ECRI', + cohort: '35', + jobTitle: 'Software Engineer II', + industry: 'Marketing', + cities: ['Orlando', 'St. Louis'], + }, + { + company: 'Walmart', + name: 'Eddy Kwon', + email: 'eddykwon0@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eddykwon/', + campus: 'NYC', + cohort: '29', + jobTitle: 'Software Engineer', + industry: 'Retail', + cities: ['Norfolk', 'Atlanta'], + }, + { + company: 'Walmart - Store No. 8', + name: 'Starvon Washington', + email: 'staronejazz@yahoo.com', + linkedIn: '', + campus: 'LA', + cohort: '19', + jobTitle: 'Software Engineer', + industry: '', + cities: ['London', 'Berlin', 'Chula Vista'], + }, + { + company: 'Walmart Global Tech', + name: 'Tao Chen', + email: 'xtc2008@gmail.com', + linkedIn: 'https://www.linkedin.com/in/xtc2008', + campus: 'NYC', + cohort: '31', + jobTitle: 'Senior Software Engineer', + industry: 'Health and Wellness', + cities: ['North Las Vegas', 'Charlotte', 'Tokyo'], + }, + { + company: 'Walmart Labs', + name: 'Brian Barr', + email: 'Brian.Barr23@gmail.com', + linkedIn: 'https://www.linkedin.com/in/barrbrian/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Senior Backend Engineer (Node)', + industry: 'FinTech (?)', + cities: ['Stockton', 'Omaha'], + }, + { + company: 'Walmart Labs', + name: 'Stephanie Fong', + email: 'stfongg@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stephaniefong08/', + campus: 'LA', + cohort: '24', + jobTitle: 'Software Engineer', + industry: '', + cities: ['Newark', 'Indianapolis'], + }, + { + company: 'Warby Parker', + name: 'Sanaya Mirpuri', + email: 'ssmirpuri@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sanayamirpuri/', + campus: 'NYC', + cohort: '22', + jobTitle: 'BackendSoftware Engineer II', + industry: 'Retail', + cities: ['Atlanta'], + }, + { + company: 'Warner Bros Discovery', + name: 'Mark Shin (Shino)', + email: 'pe.markshin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/markshins/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Software Development Engineer II', + industry: 'Entertainment', + cities: ['Anaheim'], + }, + { + company: 'WASH', + name: 'Kevin Park', + email: 'xkevinpark@gmail.com', + linkedIn: 'https://www.linkedin.com/in/xkevinpark/', + campus: 'LA', + cohort: '42', + jobTitle: 'Software UI Engineer', + industry: 'Electronics', + cities: ['Washington', 'Wichita', 'Fresno'], + }, + { + company: 'Wash Laundry Systems', + name: 'Harmon Huynh', + email: 'harmon.huynh@outlook.com', + linkedIn: 'https://www.linkedin.com/in/harmon-huynh/', + campus: 'LA', + cohort: '26', + jobTitle: 'Senior Software Engineer', + industry: 'Consumer Services', + cities: ['Portland', 'Sacramento', 'Milwaukee'], + }, + { + company: 'Watsco', + name: 'Romelo Gilbert', + email: 'romelogilbert@gmail.com', + linkedIn: 'https://www.linkedin.com/in/romelo-gilbert', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'HVAC distributor', + cities: ['Tokyo', 'Chula Vista', 'Atlanta'], + }, + { + company: 'Wayfair', + name: 'Dylan Bergstrom', + email: 'contact.dylanbergstrom@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dylan-bergstrom', + campus: 'LA', + cohort: '23', + jobTitle: 'Software Engineer L1', + industry: 'E-Commerce', + cities: ['Sacramento', 'London', 'Milwaukee', 'Raleigh'], + }, + { + company: 'Wayfair', + name: 'Jay Cogen', + email: 'jaycog44@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jaycogen/', + campus: 'LA', + cohort: '26', + jobTitle: 'Software Engineer II', + industry: 'Fintech', + cities: ['Tulsa', 'Oakland'], + }, + { + company: 'Wayfair', + name: 'Bryan Lee', + email: 'mylee1995@gmail.com', + linkedIn: 'https://www.linkedin.com/in/bryanm-lee/', + campus: 'NYC', + cohort: '12', + jobTitle: 'Software Engineer Intern', + industry: 'E-Commerce', + cities: ['Las Vegas'], + }, + { + company: 'WayScript', + name: 'Bren Yamaguchi', + email: 'Yamaguchibren@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brenyamaguchi/', + campus: 'LA', + cohort: '36', + jobTitle: 'Front End Software Engineer', + industry: 'Developer Tools', + cities: ['Detroit', 'Tampa', 'Sacramento', 'Durham'], + }, + { + company: 'WayUp', + name: 'Angela Scerbo', + email: 'amscerbo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/angelascerbo/', + campus: 'NYC', + cohort: '2', + jobTitle: 'Frontend Software Engineer', + industry: '', + cities: ['Orlando', 'Oakland'], + }, + { + company: 'Weill Cornell Medicine', + name: 'Zoew McGrath', + email: 'Zoewmcgrath@outlook.com', + linkedIn: '', + campus: 'FTRI', + cohort: '5', + jobTitle: 'Web Developer', + industry: 'Healthcare', + cities: ['Indianapolis', 'Corpus Christi', 'Phoenix'], + }, + { + company: 'WELL Health', + name: 'Elise Bare', + email: 'elisebare@gmail.com', + linkedIn: 'https://www.linkedin.com/in/elisebare/', + campus: 'LA', + cohort: '39', + jobTitle: 'Software Engineer, Front End', + industry: 'Healtchare', + cities: ['Nashville'], + }, + { + company: 'Well Health', + name: 'Janis Hernandez', + email: 'Janis11546@gmail.com', + linkedIn: 'https://www.linkedin.com/in/janis-h/', + campus: 'LA', + cohort: '39', + jobTitle: 'Mid-level Frontend Engineer', + industry: 'Health', + cities: ['Gilbert', 'Anchorage'], + }, + { + company: 'Well Health', + name: 'Jesus Vargas', + email: 'jmodestov@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jesusmvargas/', + campus: 'LA', + cohort: '38', + jobTitle: 'Frontend Software Engineer', + industry: 'Health Tech', + cities: ['Henderson', 'Tulsa', 'Jersey City', 'Philadelphia'], + }, + { + company: 'Well Health', + name: 'Michael Wang', + email: 'michaelwawang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/michael--wang/', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer (Backend)', + industry: 'Health Tech', + cities: ['Chandler'], + }, + { + company: 'Well Health', + name: 'Eric Stallings', + email: 'stallings.eric@gmail.com', + linkedIn: 'https://www.linkedin.com/in/EricStallings/', + campus: 'LA', + cohort: '30', + jobTitle: 'Software Engineer', + industry: 'Healthcare', + cities: ['Anchorage', 'Pittsburgh'], + }, + { + company: 'Wellio', + name: 'Rachel Park', + email: 'rachelpark.dev@gmail.com', + linkedIn: 'https://www.linkedin.com/in/rachelparkdev/', + campus: 'NYC', + cohort: '13', + jobTitle: 'Senior Software Engineer', + industry: 'Foodtech', + cities: ['St. Petersburg', 'San Francisco'], + }, + { + company: 'Wells Fargo', + name: 'Taylor Davis', + email: 'Taylor.davis7@live.com', + linkedIn: 'https://www.linkedin.com/in/taylordavis7', + campus: 'LA', + cohort: '41', + jobTitle: 'Software Engineer', + industry: 'Fintech', + cities: ['Berlin'], + }, + { + company: 'Western Psychological Services (WPS)', + name: 'Justin Stoddard', + email: 'jgstoddard@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jgstoddard/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Microservices Engineer', + industry: 'Health Tech', + cities: ['Chicago', 'Lexington'], + }, + { + company: 'WeWork', + name: 'Maung Maung Lay (Raphael Ram)', + email: 'ramraphael@gmail.com', + linkedIn: 'https://www.linkedin.com/in/raphaelram/', + campus: 'NYC', + cohort: '8', + jobTitle: 'Software Engineer', + industry: 'Real Estate / Hospitality', + cities: ['Mumbai', 'San Jose'], + }, + { + company: 'Whisper', + name: 'Kevin Mui', + email: 'kmui.work@gmail.com', + linkedIn: 'https://www.linkedin.com/in/kevin-mui1/', + campus: 'LA', + cohort: '24', + jobTitle: 'Server Developer', + industry: '', + cities: ['Cleveland'], + }, + { + company: 'William Hill', + name: 'Chris Flannery', + email: 'chriswillsflannery@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chriswillsflannery/', + campus: 'NYC', + cohort: '14', + jobTitle: 'Frontend Software Engineer', + industry: 'Sports/Entertainment', + cities: ['San Antonio'], + }, + { + company: 'William Hill', + name: 'Matt Greenberg', + email: 'mattagreenberg1@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mattagreenberg/', + campus: 'NYC', + cohort: '24', + jobTitle: 'front end software engineer', + industry: 'casino', + cities: ['Jersey City'], + }, + { + company: 'Willow Servicing', + name: 'Ian Grepo', + email: 'iangrapeo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ian-grepo/', + campus: 'LA / WCRI', + cohort: '51', + jobTitle: 'Software Engineer', + industry: 'Real Estate', + cities: ['Austin', 'Sacramento', 'Mexico City'], + }, + { + company: 'Windfall Data', + name: 'Bruno Portela', + email: 'bportela@pm.me', + linkedIn: 'https://www.linkedin.com/in/bgp/', + campus: 'LA', + cohort: '42', + jobTitle: 'Senior Full Stack Engineer', + industry: 'Fintech, ML, AI', + cities: ['Anaheim', 'Houston', 'Tulsa', 'New York'], + }, + { + company: 'Windhover Labs', + name: 'Alex McPhail', + email: 'mcphail.alex@gmail.com', + linkedIn: 'www.linkedin.com/in/mcphail-alex', + campus: 'LA / WCRI', + cohort: '53', + jobTitle: 'Software Engineer', + industry: 'Aerospace', + cities: ['San Diego', 'San Antonio', 'Sydney', 'Cleveland'], + }, + { + company: 'Wiselayer', + name: 'Eric Lemay', + email: 'ericrogerlemay@gmail.com', + linkedIn: '', + campus: 'NYC / ECRI', + cohort: '31', + jobTitle: 'Software Engineer', + industry: 'Business Analytics', + cities: ['Laredo', 'Oklahoma City', 'Cleveland'], + }, + { + company: 'Wiser Solutions', + name: 'Alex Hersler', + email: 'alex@alexhersler.com', + linkedIn: 'https://www.linkedin.com/in/alex-hersler/', + campus: 'LA / WCRI', + cohort: '48', + jobTitle: 'Software Engineer II', + industry: 'Data Analytics', + cities: ['Mesa', 'London', 'Lubbock'], + }, + { + company: 'Wix.com', + name: 'Kenny shen', + email: 'kenny.shen313@gmail.com', + linkedIn: '', + campus: 'NYC', + cohort: '27', + jobTitle: 'Solutions Engineer', + industry: 'Software / Tech', + cities: ['Tucson', 'Tampa'], + }, + { + company: 'Wizely Finance', + name: 'Erik Cox', + email: 'erikbcox@gmail.com', + linkedIn: 'https://www.linkedin.com/in/erikbcox/', + campus: 'LA', + cohort: '22', + jobTitle: 'Senior Full Stack Developer', + industry: '', + cities: ['Boston', 'Fresno', 'Irvine', 'Scottsdale'], + }, + { + company: 'WorkDay', + name: 'Tu Pham', + email: 'toopham@gmail.com', + linkedIn: 'https://www.linkedin.com/in/toopham/', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Development Engineer', + industry: 'FinTech, HR', + cities: ['Buffalo', 'Stockton', 'Norfolk', 'Lubbock'], + }, + { + company: 'WorkFusion', + name: 'Matt Meigs', + email: 'mattmeigs@gmail.com', + linkedIn: 'https://www.linkedin.com/in/matt-meigs/', + campus: 'NYC', + cohort: '20', + jobTitle: 'Front-End Developer', + industry: 'Intelligent Automation', + cities: ['Jacksonville', 'Santa Ana'], + }, + { + company: 'WorkRamp', + name: 'Lex Choi', + email: 'lexchoi3@gmail.com', + linkedIn: 'https://www.linkedin.com/in/lexchoi3/', + campus: 'LA', + cohort: '40', + jobTitle: 'Internal Tools/Customer Support Engineer', + industry: 'SaaS', + cities: ['New Orleans', 'Atlanta', 'Minneapolis'], + }, + { + company: 'World Wide Technology', + name: 'Christopher Davis', + email: 'chdavis0917@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chris-davis0917', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'JavaScript Developer - Material Planning', + industry: 'IT Services', + cities: ['Paris', 'Tokyo', 'El Paso'], + }, + { + company: 'World Wide Technology', + name: 'Crystal Agoncillo', + email: 'crystal.agoncillo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/agoncillo/', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Full Stack Developer', + industry: 'IT Services', + cities: ['Stockton', 'Tucson', 'Newark'], + }, + { + company: 'World Wide Technology', + name: 'Stephanie Page', + email: 'stephanieelainepage@gmail.com', + linkedIn: 'https://www.linkedin.com/in/stephanie-page-atx/', + campus: 'FTRI / CTRI', + cohort: '11', + jobTitle: 'Associate Developer', + industry: 'Consulting', + cities: ['Tucson', 'Austin', 'Raleigh'], + }, + { + company: 'World Wide Technology', + name: 'Brett Guidry', + email: 'guidry.brett@gmail.com', + linkedIn: 'https://www.linkedin.com/in/brett-guidry504/', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Software Engineer', + industry: 'IT Services', + cities: ['North Las Vegas', 'Miami', 'Anchorage', 'Newark'], + }, + { + company: 'WPROMOTE', + name: 'Nay Linn', + email: 'naylinn.pkv@gmail.com', + linkedIn: 'https://www.linkedin.com/in/nay-linn/', + campus: 'NYC', + cohort: '19', + jobTitle: 'Software Engineer', + industry: 'Digital Marketing', + cities: ['Kansas City', 'Reno', 'Minneapolis', 'Anchorage'], + }, + { + company: 'WQA', + name: 'Victor Martins', + email: 'martinsvictor287@gmail.com', + linkedIn: 'https://www.linkedin.com/in/victormartinsfemi', + campus: 'LA / WCRI', + cohort: '59', + jobTitle: 'Software Develooper', + industry: 'Consulting', + cities: ['Tucson', 'Winston-Salem'], + }, + { + company: 'WW(formally Weight Watchers)', + name: 'Mika Todd', + email: 'mikataressatodd@gmail.com', + linkedIn: 'https://www.linkedin.com/in/mika-todd', + campus: 'LA', + cohort: '43', + jobTitle: 'Software Engineer', + industry: 'Health and Wellness', + cities: ['Tulsa', 'Louisville', 'Mexico City', 'Philadelphia'], + }, + { + company: 'Wyze', + name: 'Jason Victor', + email: 'jason.victor26@gmail.com', + linkedIn: '', + campus: 'LA', + cohort: '38', + jobTitle: 'Jr. Front End Engineer', + industry: 'IoT', + cities: ['Lexington', 'Raleigh', 'Sรฃo Paulo', 'Stockton'], + }, + { + company: 'Xandr', + name: 'Billy Hepfinger', + email: 'bhepfing@gmail.com', + linkedIn: 'https://www.linkedin.com/in/billy-hepfinger', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer II', + industry: 'Advertising / Telecom', + cities: ['Honolulu', 'Buffalo', 'Washington', 'Long Beach'], + }, + { + company: 'Xandr', + name: 'Whit Rooke', + email: 'whit.rooke@gmail.com', + linkedIn: 'https://www.linkedin.com/in/whit-rooke/', + campus: 'NYC', + cohort: '25', + jobTitle: 'Software Engineer', + industry: 'Adtech', + cities: ['Mumbai', 'Arlington'], + }, + { + company: 'Xinova', + name: 'Clariz Mariano', + email: 'clariz.mariano@gmail.com', + linkedIn: 'https://www.linkedin.com/in/clarmariano/', + campus: 'LA', + cohort: '22', + jobTitle: 'Software Engineer 2', + industry: '', + cities: ['Kansas City'], + }, + { + company: 'Xtivia', + name: 'Anthony Lo', + email: '87.anthonylo@gmail.com', + linkedIn: 'https://www.linkedin.com/in/anthonyelo/', + campus: 'LA / WCRI', + cohort: '52', + jobTitle: 'Jr. UI Developer', + industry: 'IT Services', + cities: ['Plano', 'San Antonio', 'Tulsa'], + }, + { + company: 'Yahoo', + name: 'DeriAnte Sinclair', + email: 'deriante.sinclair@gmail.com', + linkedIn: 'https://www.linkedin.com/in/deriante-sinclair/', + campus: 'LA / WCRI', + cohort: '49', + jobTitle: 'Software Apps Engineer I', + industry: 'Software / Tech', + cities: ['Corpus Christi', 'Paris', 'St. Louis', 'Glendale'], + }, + { + company: 'Yahoo', + name: 'Tom Curtin', + email: 'thisistomcurtin@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tfcurtin/', + campus: 'PTRI', + cohort: '3', + jobTitle: 'Software Engineer', + industry: 'Other', + cities: ['Sacramento'], + }, + { + company: 'Yale New Haven Health', + name: 'Aileen Chan Miranda', + email: 'aileenchany@gmail.com', + linkedIn: 'https://www.linkedin.com/in/aileen-chanmiranda/', + campus: 'FTRI / CTRI', + cohort: '8', + jobTitle: 'Web Developer', + industry: 'Healthtech/Healthcare', + cities: ['Honolulu'], + }, + { + company: 'Yext', + name: 'Allen Xie', + email: 'axie0320@gmail.com', + linkedIn: 'https://www.linkedin.com/in/axie0320/', + campus: 'PTRI', + cohort: '4', + jobTitle: 'Software Engineer', + industry: 'Software / Tech', + cities: ['Colorado Springs'], + }, + { + company: 'YMCA Retirement Fund', + name: 'Anna Konstantinovich', + email: 'anna@anreko.design', + linkedIn: 'https://www.linkedin.com/in/anna-konstantinovich/', + campus: 'NYC', + cohort: '15', + jobTitle: "UX Designer & Developer (It's complicated - let me know if you want more details)", + industry: 'Financial Services', + cities: ['Minneapolis', 'Long Beach', 'Cleveland', 'Kansas City'], + }, + { + company: 'Zeal', + name: 'Jason Lee', + email: 'jasonmlee1020@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jasonjml/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Engineer II', + industry: 'Fintech', + cities: ['Chesapeake', 'Raleigh'], + }, + { + company: 'Zealthy', + name: 'Kennan Budnik', + email: 'kobudnik@gmail.com', + linkedIn: 'https://linkedin.com/in/kobudnik', + campus: 'NYOI', + cohort: '2', + jobTitle: 'Software Engineer II', + industry: 'Healthtech/Healthcare', + cities: ['Anchorage', 'Chesapeake'], + }, + { + company: 'ZenBusiness', + name: 'Adam Sheff', + email: 'adamisheff@gmail.com', + linkedIn: 'https://www.linkedin.com/in/adam-sheff/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Software Engineer', + industry: 'Entrepreneurship', + cities: ['San Diego', 'Charlotte', 'Newark'], + }, + { + company: 'ZenBusiness', + name: 'Christie Herring', + email: 'clherring@gmail.com', + linkedIn: 'https://www.linkedin.com/in/christie-herring/', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer II', + industry: 'SaaS, business creation services', + cities: ['Corpus Christi', 'Lubbock', 'Philadelphia'], + }, + { + company: 'Zenefits', + name: 'Tobey Forsman', + email: 'tobeyforsman@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tobeyforsman/', + campus: 'LA', + cohort: '42', + jobTitle: 'Senior Software Engineer', + industry: 'Software/Tech', + cities: ['Omaha', 'Raleigh', 'Paris', 'New York'], + }, + { + company: 'zephyrx', + name: 'Brian Haller', + email: 'brian@brianhaller.com', + linkedIn: 'https://www.linkedin.com/in/brianjhaller/', + campus: 'NYC', + cohort: '14', + jobTitle: 'Software Engineer', + industry: 'med tech', + cities: ['Indianapolis', 'San Jose', 'Paris'], + }, + { + company: 'ZeroPW', + name: 'Tammy Tan', + email: 'tammytan1912@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tammytan1/', + campus: 'NYC', + cohort: '15', + jobTitle: 'Frontend Engineer', + industry: 'Computer & Network Security', + cities: ['Oklahoma City', 'Plano'], + }, + { + company: 'Zest AI', + name: 'Ronelle Caguioa', + email: 'ronelle.caguioa@gmail.com', + linkedIn: 'https://www.linkedin.com/in/ronellecaguioa/', + campus: 'LA', + cohort: '36', + jobTitle: 'Senior Software Engineer', + industry: 'Fintech', + cities: ['San Francisco'], + }, + { + company: 'Zeta Global', + name: 'Chris Tang', + email: 'chrisjtang@gmail.com', + linkedIn: 'https://www.linkedin.com/in/chrisjtang', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer', + industry: 'Data', + cities: ['Sydney', 'Columbus', 'Detroit'], + }, + { + company: 'Zillow', + name: 'Cary L Chan', + email: 'caryLchan@gmail.com', + linkedIn: 'https://www.linkedin.com/in/carylchan/', + campus: 'LA', + cohort: '35', + jobTitle: 'Full Stack Engineer', + industry: 'Entertainment', + cities: ['Jacksonville', 'Sydney', 'Tokyo'], + }, + { + company: 'Zillow', + name: 'Hien Nguyen', + email: 'hien.qqnguyen@gmail.com', + linkedIn: 'https://www.linkedin.com/in/hienqn/', + campus: 'LA', + cohort: '37', + jobTitle: 'Software Engineer', + industry: 'Entertainment', + cities: ['Irvine', 'Beijing', 'Chandler', 'Philadelphia'], + }, + { + company: 'Zillow Group', + name: 'Logan Thies', + email: 'logan.thies@icloud.com', + linkedIn: 'https://www.linkedin.com/in/loganthies137/', + campus: 'PTRI', + cohort: '1', + jobTitle: 'Software Development Engineer', + industry: 'Real Estate', + cities: ['Phoenix', 'Lincoln', 'North Las Vegas'], + }, + { + company: 'Zip', + name: 'Chase Walters', + email: 'cwwalters@fastmail.com', + linkedIn: 'https://www.linkedin.com/in/charleswwalters/', + campus: 'FTRI / CTRI', + cohort: '10', + jobTitle: 'Founding Software Engineer', + industry: 'Security', + cities: ['El Paso', 'Toledo'], + }, + { + company: 'Zipcar', + name: 'Sean Smith', + email: 'smith.seanm17@gmail.com', + linkedIn: 'https://www.linkedin.com/in/sean-smith17/', + campus: 'LA', + cohort: '36', + jobTitle: 'Software Engineer (Front End)', + industry: 'Transportation', + cities: ['Long Beach', 'Los Angeles'], + }, + { + company: 'Zipdrug', + name: 'Tolga Mizrakci', + email: 'tolgamizrakci@gmail.com', + linkedIn: 'https://www.linkedin.com/in/tolga-mizrakci/', + campus: 'NYC', + cohort: '10', + jobTitle: 'Senior Software Engineer', + industry: 'Health Care', + cities: ['El Paso', 'Dallas'], + }, + { + company: 'ZipRecruiter', + name: 'Ryan Lee', + email: 'rynklee@gmail.com', + linkedIn: 'https://linkedin.com/in/rynklee', + campus: 'LA', + cohort: '46', + jobTitle: 'Software Engineer III', + industry: 'Other', + cities: ['Mexico City', 'Irving'], + }, + { + company: 'Zoetis', + name: 'Eileen Cho', + email: 'eileenaracho@gmail.com', + linkedIn: 'https://www.linkedin.com/in/eileenaracho/', + campus: 'LA / WCRI', + cohort: '56', + jobTitle: 'Data Systems Engineer', + industry: 'Other', + cities: ['Oakland', 'Fort Wayne', 'Chula Vista'], + }, + { + company: 'Zogo Finance', + name: 'Derek Miller', + email: 'dsymiller@gmail.com', + linkedIn: 'https://www.linkedin.com/in/dsymiller/', + campus: 'NYC', + cohort: '22', + jobTitle: 'Full Stack Engineer', + industry: 'education, financial services, banking', + cities: ['Philadelphia', 'Memphis', 'Mesa'], + }, + { + company: 'Zoom Video Communications', + name: 'Jason Jones', + email: 'Jasonroyjones@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jasonroyjones', + campus: 'LA', + cohort: '33', + jobTitle: 'Software Development Engineer', + industry: 'Telecommunications', + cities: ['Madison', 'Laredo', 'San Jose'], + }, + { + company: 'Zywave', + name: 'Jacob Davis', + email: 'jacob.drew.davis@gmail.com', + linkedIn: 'https://www.linkedin.com/in/jacob-drew-davis/', + campus: 'FTRI', + cohort: '4', + jobTitle: 'Senior DevSecOps Engineer', + industry: 'Software / Tech', + cities: ['Buffalo', 'Berlin', 'Irvine'], + }, +]; + +const mockGraduteInvitions = [ + { + email: 'acarradice0@gravatar.com', + token: '541658530c351ab19011dc5a1cc7f796eb9fd388', + tokenExpiry: '1714386955', + isRegistered: true, + firstName: 'Alonso', + lastName: 'Carradice', + registeredAt: '1677124950', + cohort: 'LA 44', + }, + { + email: 'wbleaden1@usgs.gov', + token: '8ce87b99dc305ef8272b2261a73539156a2a4b11', + tokenExpiry: '1703047259', + isRegistered: false, + firstName: 'Wilton', + lastName: 'Bleaden', + registeredAt: '1710588748', + cohort: 'CTRI 21', + }, + { + email: 'ghalso2@jalbum.net', + token: '19e7fd479b1310e00940ac610b6d3731699224b3', + tokenExpiry: '1708125337', + isRegistered: true, + firstName: 'Gannon', + lastName: 'Halso', + registeredAt: '1685884782', + cohort: 'PTRI 25', + }, + { + email: 'dgrinter3@amazon.com', + token: '15639748a71a12b6c5b2a9e715aca9ff092877ae', + tokenExpiry: '1719655502', + isRegistered: false, + firstName: 'Doralynn', + lastName: 'Grinter', + registeredAt: '1693987127', + cohort: 'WCRI 64', + }, + { + email: 'wweatherley4@phoca.cz', + token: 'bc2b71d4fbd3ed3de0a0022aa21bbed4f851c755', + tokenExpiry: '1699687351', + isRegistered: true, + firstName: 'Winn', + lastName: 'Weatherley', + registeredAt: '1710066414', + cohort: 'FTRI 93', + }, + { + email: 'hregis5@dailymail.co.uk', + token: '01aa9782932b7772770b0c4eae54787dea5f9638', + tokenExpiry: '1719748549', + isRegistered: true, + firstName: 'Hermon', + lastName: 'Regis', + registeredAt: '1694142909', + cohort: 'ECRI 49', + }, + { + email: 'crousby6@apache.org', + token: '22ce1f16d86aa9b601a6bd044d3bbc455b4f36e2', + tokenExpiry: '1721465604', + isRegistered: false, + firstName: 'Cordie', + lastName: 'Rousby', + registeredAt: '1682025913', + cohort: 'FTRI 6', + }, + { + email: 'mriseborough7@clickbank.net', + token: '3fad65274e7439c2c0a35200295c46977020885f', + tokenExpiry: '1706069183', + isRegistered: false, + firstName: 'Maureene', + lastName: 'Riseborough', + registeredAt: '1686092791', + cohort: 'FTRI 91', + }, + { + email: 'olawson8@washington.edu', + token: '39b226afbd4282124dd31b9dd3243cb7e0b1f596', + tokenExpiry: '1704307416', + isRegistered: false, + firstName: 'Orelle', + lastName: 'Lawson', + registeredAt: '1689333880', + cohort: 'FTRI 92', + }, + { + email: 'jemer9@constantcontact.com', + token: 'dbc7e41297546ad0d7a437abc4573ad5ac36dd2c', + tokenExpiry: '1710382524', + isRegistered: false, + firstName: 'Jess', + lastName: 'Emer', + registeredAt: '1688557374', + cohort: 'PTRI 64', + }, + { + email: 'mtubblesa@nifty.com', + token: 'a664d8ee7cd56a9ce2963eae874da9c65fcd2361', + tokenExpiry: '1719286527', + isRegistered: true, + firstName: 'Mariel', + lastName: 'Tubbles', + registeredAt: '1679623674', + cohort: 'PTRI 10', + }, + { + email: 'pkeightleyb@webnode.com', + token: '3c78dccda8c878bb7dea64431e5811b2a75af184', + tokenExpiry: '1714278643', + isRegistered: true, + firstName: 'Perice', + lastName: 'Keightley', + registeredAt: '1690276231', + cohort: 'WCRI 53', + }, + { + email: 'efalcusc@mapy.cz', + token: '184efd9e68dbe020111734f78303742a65c1fd15', + tokenExpiry: '1718471384', + isRegistered: false, + firstName: 'Eula', + lastName: 'Falcus', + registeredAt: '1708142836', + cohort: 'CTRI 97', + }, + { + email: 'jbaldinid@simplemachines.org', + token: '26f1e984850651b64779d36d31af27602c8e714b', + tokenExpiry: '1704480185', + isRegistered: true, + firstName: 'Jacqui', + lastName: 'Baldini', + registeredAt: '1692681038', + cohort: 'NYC 68', + }, + { + email: 'snorthridgee@macromedia.com', + token: '801d95108e35ccce2fe3b290803de8637d65959e', + tokenExpiry: '1715200469', + isRegistered: true, + firstName: 'Scottie', + lastName: 'Northridge', + registeredAt: '1691263603', + cohort: 'PTRI 6', + }, + { + email: 'dhedgerf@shareasale.com', + token: 'd681aa42bf9f2371c60c05754a93fd1dc860fec8', + tokenExpiry: '1727580488', + isRegistered: false, + firstName: 'Dorie', + lastName: 'Hedger', + registeredAt: '1687226473', + cohort: 'NYC 89', + }, + { + email: 'nskeeng@yellowbook.com', + token: 'fadb33e7532fdce703106043931f2a6f15f88bc3', + tokenExpiry: '1721509297', + isRegistered: false, + firstName: 'Nadia', + lastName: 'Skeen', + registeredAt: '1695484577', + cohort: 'ECRI 23', + }, + { + email: 'mgroomh@samsung.com', + token: '8df1430be1cc296c94155b06a79a1e24d12b16ad', + tokenExpiry: '1698531018', + isRegistered: true, + firstName: 'Mickie', + lastName: 'Groom', + registeredAt: '1691239049', + cohort: 'WCRI 50', + }, + { + email: 'lkupiszi@liveinternet.ru', + token: '1740f0be8a449176d15c33a65a5c3bc011cc0f07', + tokenExpiry: '1707223534', + isRegistered: true, + firstName: 'Leticia', + lastName: 'Kupisz', + registeredAt: '1683211294', + cohort: 'NYC 58', + }, + { + email: 'bdeanj@mlb.com', + token: '7f27fa69908e6aa17e28f425de5fcc57f0eeedc0', + tokenExpiry: '1717798784', + isRegistered: false, + firstName: 'Babb', + lastName: 'Dean', + registeredAt: '1686342997', + cohort: 'ECRI 72', + }, + { + email: 'blilleyk@blogs.com', + token: '7fb8c075412d11bebc0ba1aeca86bb08393f136b', + tokenExpiry: '1721551606', + isRegistered: false, + firstName: 'Burtie', + lastName: 'Lilley', + registeredAt: '1679902087', + cohort: 'NYC 25', + }, + { + email: 'dwoodlandl@dailymotion.com', + token: '774c9ed5bf04f259139e1c14b9446c818f83ec2a', + tokenExpiry: '1721916987', + isRegistered: true, + firstName: 'Dorelle', + lastName: 'Woodland', + registeredAt: '1717510004', + cohort: 'LA 45', + }, + { + email: 'bdunlapm@dropbox.com', + token: '0ddfcd5aee883c68ff7a7a704a406998d3b95a64', + tokenExpiry: '1697506453', + isRegistered: false, + firstName: 'Burk', + lastName: 'Dunlap', + registeredAt: '1680396642', + cohort: 'NYC 8', + }, + { + email: 'cdarreln@newyorker.com', + token: '53488dd01c43dfa1d596c7964a4d2f534dc8ead5', + tokenExpiry: '1724607931', + isRegistered: false, + firstName: 'Cecilius', + lastName: 'Darrel', + registeredAt: '1706643899', + cohort: 'ECRI 83', + }, + { + email: 'bbudcocko@va.gov', + token: 'efb168a15a3096e53d12ae9f80569d8d557c4493', + tokenExpiry: '1701718041', + isRegistered: true, + firstName: 'Brod', + lastName: 'Budcock', + registeredAt: '1676443900', + cohort: 'NYC 8', + }, + { + email: 'bthickinp@ibm.com', + token: '8e4af5f631de12544c44ed442d50aafb83204a44', + tokenExpiry: '1711888928', + isRegistered: false, + firstName: 'Bayard', + lastName: 'Thickin', + registeredAt: '1695590750', + cohort: 'ECRI 97', + }, + { + email: 'llarringtonq@sakura.ne.jp', + token: '9951ab34e301c226be2b63b1e3f6b61e7ca6f178', + tokenExpiry: '1706943537', + isRegistered: true, + firstName: 'Lorenza', + lastName: 'Larrington', + registeredAt: '1683278978', + cohort: 'WCRI 26', + }, + { + email: 'rstantonr@mashable.com', + token: 'e5cd7ddfdfb812f47184272328b5510c9d8887b9', + tokenExpiry: '1707981578', + isRegistered: true, + firstName: 'Ranna', + lastName: 'Stanton', + registeredAt: '1694102332', + cohort: 'ECRI 50', + }, + { + email: 'scowdroys@umich.edu', + token: '43315d4d9b75715104ee90104db03bf430b78fb1', + tokenExpiry: '1705880075', + isRegistered: false, + firstName: 'Silvan', + lastName: 'Cowdroy', + registeredAt: '1698398807', + cohort: 'LA 55', + }, + { + email: 'pskirlingt@4shared.com', + token: '85d7af1fdd70f8fd165a014e08b7a4b3963ac044', + tokenExpiry: '1716827794', + isRegistered: false, + firstName: 'Pepita', + lastName: 'Skirling', + registeredAt: '1703077019', + cohort: 'CTRI 60', + }, + { + email: 'bspensleyu@indiatimes.com', + token: '597d4be98c6ed3ab97f2301c6da3ee55d69033ed', + tokenExpiry: '1715899465', + isRegistered: true, + firstName: 'Brinna', + lastName: 'Spensley', + registeredAt: '1690415190', + cohort: 'LA 65', + }, + { + email: 'lblaisv@networksolutions.com', + token: 'b7502e54d2a16983c2ffab259798841eec4e8272', + tokenExpiry: '1705285133', + isRegistered: true, + firstName: 'Leta', + lastName: 'Blais', + registeredAt: '1704030885', + cohort: 'LA 75', + }, + { + email: 'olehuquetw@privacy.gov.au', + token: 'd368e4882e0e66e2c93020c54534bb56ff2d9d52', + tokenExpiry: '1721342625', + isRegistered: true, + firstName: 'Onfre', + lastName: 'Le Huquet', + registeredAt: '1700655434', + cohort: 'CTRI 79', + }, + { + email: 'cedworthiex@yelp.com', + token: '8cb9209121c6007c214e4d7bc010190ee2bdd22a', + tokenExpiry: '1701803096', + isRegistered: false, + firstName: 'Cairistiona', + lastName: 'Edworthie', + registeredAt: '1695427010', + cohort: 'NYC 26', + }, + { + email: 'jchongy@cpanel.net', + token: '239edcea2ff7a2c73af428692f85be9b2ffab43f', + tokenExpiry: '1725107146', + isRegistered: true, + firstName: 'Jonas', + lastName: 'Chong', + registeredAt: '1700604074', + cohort: 'CTRI 51', + }, + { + email: 'emintoz@statcounter.com', + token: '4fdd3aae97ec4a7d44202cbfe5034517d0f00ebc', + tokenExpiry: '1720135279', + isRegistered: true, + firstName: 'Ezra', + lastName: 'Minto', + registeredAt: '1701904952', + cohort: 'FTRI 17', + }, + { + email: 'vlicari10@businessweek.com', + token: '752025d65cc509ae58038fa039654c7c5ccff278', + tokenExpiry: '1718335874', + isRegistered: false, + firstName: 'Virgina', + lastName: 'Licari', + registeredAt: '1708284774', + cohort: 'ECRI 91', + }, + { + email: 'rlambrick11@netscape.com', + token: '38e604f9dd47c6468ab3d4104d8dbc9f6968bfd8', + tokenExpiry: '1714756935', + isRegistered: true, + firstName: 'Rickert', + lastName: 'Lambrick', + registeredAt: '1678948854', + cohort: 'WCRI 64', + }, + { + email: 'jmadner12@boston.com', + token: '6f81c343c0ee4efec0c7d3359ec562dfdd26bdfd', + tokenExpiry: '1715296843', + isRegistered: true, + firstName: 'Jesselyn', + lastName: 'Madner', + registeredAt: '1685889400', + cohort: 'WCRI 93', + }, + { + email: 'ptest13@ovh.net', + token: '81d623ebdd75de31900eaeefd2f8f6d82e5de0f8', + tokenExpiry: '1708108205', + isRegistered: false, + firstName: 'Peirce', + lastName: 'Test', + registeredAt: '1678201051', + cohort: 'PTRI 45', + }, + { + email: 'swalcher14@hc360.com', + token: '824b906fd32c063d19ac0413a25ed88b366b400c', + tokenExpiry: '1706535307', + isRegistered: true, + firstName: 'Saraann', + lastName: 'Walcher', + registeredAt: '1710539027', + cohort: 'CTRI 14', + }, + { + email: 'gbank15@live.com', + token: '0e265dea03b6dd81279caee70688ffc3e4aac84d', + tokenExpiry: '1709350549', + isRegistered: true, + firstName: 'Giff', + lastName: 'Bank', + registeredAt: '1685242746', + cohort: 'WCRI 8', + }, + { + email: 'rallmen16@ask.com', + token: 'ed6593ece367f7a7dc24f97bd2f6f0842f14c0c4', + tokenExpiry: '1718707719', + isRegistered: false, + firstName: 'Ronny', + lastName: 'Allmen', + registeredAt: '1687899673', + cohort: 'NYC 66', + }, + { + email: 'kyarrow17@fastcompany.com', + token: 'd7cf565a92803a64d2cee30653696e1d1a6378b9', + tokenExpiry: '1701602996', + isRegistered: true, + firstName: 'Kimmi', + lastName: 'Yarrow', + registeredAt: '1691124672', + cohort: 'WCRI 75', + }, + { + email: 'pshepard18@fc2.com', + token: '9210e18a7553812264f0de3dc1dfdfd149a98b78', + tokenExpiry: '1721087332', + isRegistered: false, + firstName: 'Portia', + lastName: 'Shepard', + registeredAt: '1672585642', + cohort: 'NYC 11', + }, + { + email: 'egook19@yale.edu', + token: 'bb6e13b3f037f856d1bb9608fd0c621d6a2a91de', + tokenExpiry: '1720577150', + isRegistered: false, + firstName: 'Emlen', + lastName: 'Gook', + registeredAt: '1683775506', + cohort: 'NYC 94', + }, + { + email: 'drocks1a@yandex.ru', + token: 'e8a818868eba93a6c8ec66475111de0443dc1bb9', + tokenExpiry: '1703012938', + isRegistered: false, + firstName: 'Debee', + lastName: 'Rocks', + registeredAt: '1706023454', + cohort: 'PTRI 57', + }, + { + email: 'vdhennin1b@webmd.com', + token: 'a38dcb44964ee25e8a6dec9154038d5d9938a87a', + tokenExpiry: '1699587212', + isRegistered: false, + firstName: 'Valina', + lastName: 'Dhennin', + registeredAt: '1681065096', + cohort: 'WCRI 59', + }, + { + email: 'dcheasman1c@123-reg.co.uk', + token: '94b64ff354e2f9fa7c8a037923bfa8b2dd866eeb', + tokenExpiry: '1697933422', + isRegistered: false, + firstName: 'Dwayne', + lastName: 'Cheasman', + registeredAt: '1683418150', + cohort: 'ECRI 77', + }, + { + email: 'ngladhill1d@bravesites.com', + token: 'd1e4e372f411f9b7078f2a40a97c922e29cc77d7', + tokenExpiry: '1718918519', + isRegistered: false, + firstName: 'Nellie', + lastName: 'Gladhill', + registeredAt: '1688963480', + cohort: 'PTRI 75', + }, + { + email: 'elivzey1e@yandex.ru', + token: '2b1e273101fd6f2762a922de2b5da38bcc106e0a', + tokenExpiry: '1709220017', + isRegistered: true, + firstName: 'Eziechiele', + lastName: 'Livzey', + registeredAt: '1681975403', + cohort: 'WCRI 1', + }, + { + email: 'smingasson1f@geocities.jp', + token: '11b06aee7ad84b24658444456a578d207869e512', + tokenExpiry: '1728292948', + isRegistered: true, + firstName: 'Sallyanne', + lastName: 'Mingasson', + registeredAt: '1683913073', + cohort: 'NYC 6', + }, + { + email: 'hpattullo1g@cocolog-nifty.com', + token: 'f2006654fe52c91bb6953933346a297da119c8c5', + tokenExpiry: '1724940391', + isRegistered: true, + firstName: 'Heall', + lastName: 'Pattullo', + registeredAt: '1679673540', + cohort: 'WCRI 99', + }, + { + email: 'ascarlan1h@businessinsider.com', + token: '9cff46cacb3a30c7b3b3b54f277e0aab630d45c4', + tokenExpiry: '1721464700', + isRegistered: true, + firstName: 'Amaleta', + lastName: 'Scarlan', + registeredAt: '1712701940', + cohort: 'CTRI 35', + }, + { + email: 'zlawlance1i@gmpg.org', + token: 'bcb5ce7157e175a16358d596e508c2db76cfc1bc', + tokenExpiry: '1722208526', + isRegistered: true, + firstName: 'Zonda', + lastName: 'Lawlance', + registeredAt: '1701924480', + cohort: 'PTRI 70', + }, + { + email: 'lromney1j@independent.co.uk', + token: 'b85fe93921acfd5cf8d12b574dd3b47e4018e436', + tokenExpiry: '1713504543', + isRegistered: false, + firstName: 'Livvy', + lastName: 'Romney', + registeredAt: '1704174160', + cohort: 'PTRI 26', + }, + { + email: 'ballardyce1k@dell.com', + token: '0f8a9aac15a71fa742c39d3096542281589366b8', + tokenExpiry: '1718762499', + isRegistered: true, + firstName: 'Brockie', + lastName: 'Allardyce', + registeredAt: '1679041128', + cohort: 'CTRI 36', + }, + { + email: 'jatthowe1l@omniture.com', + token: 'aca52ba0413382dde47301aeadf43a363e9997ba', + tokenExpiry: '1698166033', + isRegistered: false, + firstName: 'Jaquelyn', + lastName: 'Atthowe', + registeredAt: '1707608705', + cohort: 'FTRI 20', + }, + { + email: 'bguerre1m@ftc.gov', + token: '7b1dd8462dbfad6cea9dad31f7261fef4ec8be95', + tokenExpiry: '1718130214', + isRegistered: true, + firstName: 'Barn', + lastName: 'Guerre', + registeredAt: '1716202221', + cohort: 'NYC 13', + }, + { + email: 'cmillions1n@domainmarket.com', + token: '5f6819ad846a8ea3e0880dd7fd17c7e1e2b55d90', + tokenExpiry: '1706426083', + isRegistered: false, + firstName: 'Carina', + lastName: 'Millions', + registeredAt: '1698636752', + cohort: 'LA 40', + }, + { + email: 'mgrigorini1o@pinterest.com', + token: '355d05a947933941c88073a12e6787e4e3199b2d', + tokenExpiry: '1719008606', + isRegistered: true, + firstName: 'Micaela', + lastName: 'Grigorini', + registeredAt: '1674400482', + cohort: 'ECRI 40', + }, + { + email: 'fredwin1p@lulu.com', + token: 'dd3f9f8550968f560e0beddeeb22e6ed345b66f3', + tokenExpiry: '1720847163', + isRegistered: false, + firstName: 'Fran', + lastName: 'Redwin', + registeredAt: '1690182467', + cohort: 'WCRI 74', + }, + { + email: 'kfirmager1q@vistaprint.com', + token: 'dc439fab416b534d3f1691e2b5afa1cb67879d76', + tokenExpiry: '1709501604', + isRegistered: true, + firstName: 'Kalina', + lastName: 'Firmager', + registeredAt: '1696473707', + cohort: 'LA 58', + }, + { + email: 'lblyth1r@dion.ne.jp', + token: 'a10da796c88d8b7cf9fb78132bf8ec674f2ccf6e', + tokenExpiry: '1702709120', + isRegistered: true, + firstName: 'Lurline', + lastName: 'Blyth', + registeredAt: '1693114651', + cohort: 'FTRI 40', + }, + { + email: 'jstowte1s@pbs.org', + token: 'f1f937e0689f1bc5c2c2c586282f591e7f65d53b', + tokenExpiry: '1724992951', + isRegistered: true, + firstName: 'Julianne', + lastName: 'Stowte', + registeredAt: '1680965284', + cohort: 'ECRI 33', + }, + { + email: 'tpatrie1t@economist.com', + token: '650aaa0e6787da810abff83ac7745809a1cda53f', + tokenExpiry: '1718005232', + isRegistered: true, + firstName: 'Tierney', + lastName: 'Patrie', + registeredAt: '1702385719', + cohort: 'FTRI 44', + }, + { + email: 'gsherborne1u@ustream.tv', + token: '37cfac40e6796b28a9f5887a0f7ce0bfc8ac4ecb', + tokenExpiry: '1713943470', + isRegistered: false, + firstName: 'Gerladina', + lastName: 'Sherborne', + registeredAt: '1711728496', + cohort: 'NYC 82', + }, + { + email: 'pfarress1v@amazonaws.com', + token: 'bf080b5bb70d6c0a44ce68a8ab8a88e042b19cc1', + tokenExpiry: '1711916219', + isRegistered: true, + firstName: 'Phil', + lastName: 'Farress', + registeredAt: '1693852128', + cohort: 'LA 77', + }, + { + email: 'eallsop1w@deviantart.com', + token: '1a5bea6e3a65ac46f6e21680ca0ba34f5e2122f2', + tokenExpiry: '1701094713', + isRegistered: false, + firstName: 'Elisha', + lastName: 'Allsop', + registeredAt: '1713801737', + cohort: 'LA 52', + }, + { + email: 'cskipton1x@4shared.com', + token: '45278d736abab31f911da7c843e62b524b65c4f4', + tokenExpiry: '1722876760', + isRegistered: false, + firstName: 'Carline', + lastName: 'Skipton', + registeredAt: '1702155150', + cohort: 'WCRI 40', + }, + { + email: 'mnorthridge1y@google.com.au', + token: '62f61c162c2ccffc5edcbdfdd02ec45cf1c39376', + tokenExpiry: '1706595173', + isRegistered: false, + firstName: 'Mia', + lastName: 'Northridge', + registeredAt: '1681630387', + cohort: 'WCRI 72', + }, + { + email: 'ifriedenbach1z@last.fm', + token: 'bd680ad939d973c3e0010ec7a2a2f1921fecc19d', + tokenExpiry: '1718623836', + isRegistered: true, + firstName: 'Isaiah', + lastName: 'Friedenbach', + registeredAt: '1702230245', + cohort: 'WCRI 0', + }, + { + email: 'tdulton20@sitemeter.com', + token: 'f2f3b6b7c83a606cf8cbef085140c25683e80a46', + tokenExpiry: '1725180112', + isRegistered: true, + firstName: 'Tallulah', + lastName: 'Dulton', + registeredAt: '1689429264', + cohort: 'PTRI 76', + }, + { + email: 'besherwood21@amazon.com', + token: 'c3beb14a7cd4e9fd4834cdf6594413ed971c01f3', + tokenExpiry: '1706079008', + isRegistered: false, + firstName: 'Bel', + lastName: 'Esherwood', + registeredAt: '1712417366', + cohort: 'ECRI 52', + }, + { + email: 'akiley22@cpanel.net', + token: 'd2b06ea8d9e4a572cee6d4e2681f67f00894ad56', + tokenExpiry: '1724941587', + isRegistered: true, + firstName: 'Anatol', + lastName: 'Kiley', + registeredAt: '1714539754', + cohort: 'FTRI 51', + }, + { + email: 'cmeth23@zimbio.com', + token: '8c4a90e9eb572a8dcfb306cc5c26d30387590e28', + tokenExpiry: '1727396000', + isRegistered: true, + firstName: 'Corabel', + lastName: 'Meth', + registeredAt: '1682784205', + cohort: 'WCRI 86', + }, + { + email: 'sterrill24@behance.net', + token: '03eddbc6485cdd42c8f5cac45e249f6cdb7400eb', + tokenExpiry: '1723586241', + isRegistered: false, + firstName: 'Shae', + lastName: 'Terrill', + registeredAt: '1687562944', + cohort: 'LA 76', + }, + { + email: 'dmahedy25@wix.com', + token: 'ce05349faa503dc55d9038773796038a7c8df560', + tokenExpiry: '1717922995', + isRegistered: false, + firstName: 'Dotty', + lastName: 'Mahedy', + registeredAt: '1703040599', + cohort: 'NYC 93', + }, + { + email: 'sattiwill26@wsj.com', + token: 'a09c0f90af57af5b39b94cd83d208ffb25111ccb', + tokenExpiry: '1723749405', + isRegistered: false, + firstName: 'Salaidh', + lastName: 'Attiwill', + registeredAt: '1710531917', + cohort: 'FTRI 14', + }, + { + email: 'bbomb27@cmu.edu', + token: 'a196221355ed403ad250ccebf4b4019028b1de19', + tokenExpiry: '1716626869', + isRegistered: true, + firstName: 'Billi', + lastName: 'Bomb', + registeredAt: '1703618131', + cohort: 'FTRI 72', + }, + { + email: 'bbedells28@lycos.com', + token: '31d50e34784504d1ed2ba0fe979c98c64beaf408', + tokenExpiry: '1721657038', + isRegistered: true, + firstName: 'Burty', + lastName: 'Bedells', + registeredAt: '1703325382', + cohort: 'LA 47', + }, + { + email: 'dlemin29@nhs.uk', + token: 'b3f374ec819cae31abc03d8d4fd606182994b61c', + tokenExpiry: '1726394947', + isRegistered: false, + firstName: 'De', + lastName: 'Lemin', + registeredAt: '1712314981', + cohort: 'NYC 50', + }, + { + email: 'mdraco2a@shinystat.com', + token: '106220c3f67863ec7b60efa5d818a9615f1f6ae8', + tokenExpiry: '1709423735', + isRegistered: true, + firstName: 'Morgen', + lastName: 'Draco', + registeredAt: '1683637999', + cohort: 'CTRI 77', + }, + { + email: 'ugrassin2b@ucoz.com', + token: '0bfe9f83752600b459f9299ef15aeff6e2403feb', + tokenExpiry: '1707725381', + isRegistered: true, + firstName: 'Urban', + lastName: 'Grassin', + registeredAt: '1710071474', + cohort: 'CTRI 54', + }, + { + email: 'aatto2c@va.gov', + token: 'd918b6a21507a3b203a595b174084d1bcbfd8643', + tokenExpiry: '1714845693', + isRegistered: false, + firstName: 'Archy', + lastName: 'Atto', + registeredAt: '1712043526', + cohort: 'NYC 62', + }, + { + email: 'lmurfill2d@earthlink.net', + token: '1cfa1580520273a41a6101c1c40d9387a8240e15', + tokenExpiry: '1724471765', + isRegistered: true, + firstName: 'Lothaire', + lastName: 'Murfill', + registeredAt: '1704133684', + cohort: 'CTRI 43', + }, + { + email: 'aocrigan2e@ezinearticles.com', + token: '7c84c138aaea08c8478456fe062b6026922c6bb0', + tokenExpiry: '1723900980', + isRegistered: true, + firstName: 'Anne', + lastName: "O'Crigan", + registeredAt: '1676208159', + cohort: 'NYC 98', + }, + { + email: 'nmeacher2f@barnesandnoble.com', + token: 'fe1032812102bf0930a52971a39da65b9d92be03', + tokenExpiry: '1711033160', + isRegistered: true, + firstName: 'Nisse', + lastName: 'Meacher', + registeredAt: '1681639572', + cohort: 'FTRI 86', + }, + { + email: 'dtraill2g@tamu.edu', + token: '356be8cf14a78b06cb741c6c1082a5b2639dc100', + tokenExpiry: '1722195575', + isRegistered: false, + firstName: 'Dix', + lastName: 'Traill', + registeredAt: '1688441678', + cohort: 'FTRI 19', + }, + { + email: 'vproske2h@newsvine.com', + token: '674dfc2ddb23a74b43373f5d42b23d29016408c2', + tokenExpiry: '1713842238', + isRegistered: false, + firstName: 'Verla', + lastName: 'Proske', + registeredAt: '1688943295', + cohort: 'WCRI 25', + }, + { + email: 'pdahmke2i@diigo.com', + token: 'd165ca490f364a0c81f1c3cf44f7bc5bd314c483', + tokenExpiry: '1712885460', + isRegistered: false, + firstName: 'Pennie', + lastName: 'Dahmke', + registeredAt: '1705568448', + cohort: 'FTRI 75', + }, + { + email: 'akilroy2j@elpais.com', + token: '651b1e2b34363ee9eaeb35d884cacce571bb20d3', + tokenExpiry: '1710647532', + isRegistered: true, + firstName: 'Anestassia', + lastName: 'Kilroy', + registeredAt: '1707162650', + cohort: 'ECRI 91', + }, + { + email: 'rvanelli2k@xing.com', + token: '362b7aeeb1b86eeeeb751f0feb30446f38b3551a', + tokenExpiry: '1700611810', + isRegistered: true, + firstName: 'Remus', + lastName: 'Vanelli', + registeredAt: '1688468428', + cohort: 'FTRI 29', + }, + { + email: 'gtarbert2l@discovery.com', + token: '47b989b8ef9a9640e1301246469e90468b0409b4', + tokenExpiry: '1728367924', + isRegistered: true, + firstName: 'Gil', + lastName: 'Tarbert', + registeredAt: '1685191965', + cohort: 'CTRI 29', + }, + { + email: 'ysmelley2m@twitpic.com', + token: 'd9a8b41e99f1fc724641283b275b61141086ecef', + tokenExpiry: '1712733227', + isRegistered: true, + firstName: 'Yulma', + lastName: 'Smelley', + registeredAt: '1715333795', + cohort: 'FTRI 42', + }, + { + email: 'tlongworth2n@engadget.com', + token: '5261c5b65c8539a3affa90614190fcedb77f1fac', + tokenExpiry: '1728250140', + isRegistered: false, + firstName: 'Timmy', + lastName: 'Longworth', + registeredAt: '1709278351', + cohort: 'PTRI 29', + }, + { + email: 'amollatt2o@printfriendly.com', + token: '4019b03e69e2362fbd1a10fce561eb60bdc16b99', + tokenExpiry: '1724376365', + isRegistered: true, + firstName: 'Arthur', + lastName: 'Mollatt', + registeredAt: '1708084127', + cohort: 'FTRI 64', + }, + { + email: 'gtaylor2p@nps.gov', + token: '16ce55d2ccf612dc3285cfdee894fb8064453a4b', + tokenExpiry: '1727617372', + isRegistered: false, + firstName: 'Griffin', + lastName: 'Taylor', + registeredAt: '1707031385', + cohort: 'WCRI 51', + }, + { + email: 'ostudholme2q@pcworld.com', + token: '9d62938833da712a578ade3e54cb627996a5464e', + tokenExpiry: '1702451012', + isRegistered: true, + firstName: 'Odelinda', + lastName: 'Studholme', + registeredAt: '1674695487', + cohort: 'LA 2', + }, + { + email: 'aduffill2r@nbcnews.com', + token: '8ccc9ddb9f92b0ee6848dd20ca7f3fab1d98fbb0', + tokenExpiry: '1707417687', + isRegistered: true, + firstName: 'Ardith', + lastName: 'Duffill', + registeredAt: '1693295088', + cohort: 'FTRI 50', + }, +]; + +const mockUsers = [ + { + firstName: 'Testy', + lastName: 'McTesterson', + email: 'tester@codehammers.com', + profilePic: + 'https://www.codesmith.io/hubfs/Screen%20Shot%202024-06-10%20at%2010.46.24%20AM.png', + password: '$2a$10$kc8M2Pp3YPQ/L0zuNiP8NO/ktM3be2G/Jvz7JgfHKNwisEEmI6HhC', + }, + { + firstName: 'Corine', + lastName: 'Tugwell', + email: 'ctugwell0@ovh.net', + profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', + password: '$2a$10$RHjqSxTGqGH3sJ5M8y1N/ONYdf0lW/wiS.1Np0ygzdLXV1.iKNWHW', + }, + { + firstName: 'Brody', + lastName: 'Cumpton', + email: 'bcumpton1@bluehost.com', + profilePic: 'https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg', + password: '$2a$10$5MCj99AUmJLR8vNusi/kKulhGujk0g9TNp2HnNNad0diDKr/voqx6', + }, + { + firstName: 'Moselle', + lastName: 'Duro', + email: 'mduro2@technorati.com', + profilePic: 'https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png', + password: '$2a$10$3g77AxfV5hxy.8T7ibcsFeAzj0.8XLQtyWZ8LXMV/r1xFffb6CrQ6', + }, + { + firstName: 'Winifred', + lastName: 'Carnelley', + email: 'wcarnelley3@ucsd.edu', + profilePic: + 'https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827', + password: '$2a$10$YtgZAtramhBGFDYgd4WJm.O1aSGVY9XpW6c3EvmgF/r016wO8c6Kq', + }, + { + firstName: 'Marchelle', + lastName: 'Truin', + email: 'mtruin4@stumbleupon.com', + profilePic: 'https://www.codesmith.io/hubfs/Gabriela%20%20Small.png', + password: '$2a$10$/aPHxsmvntnLCoYx87M43eJ5emMDz5By06sCDBJw0rV7b4zGEDRY6', + }, + { + firstName: 'Cally', + lastName: 'Gisbey', + email: 'cgisbey5@squarespace.com', + profilePic: 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', + password: '$2a$10$ilsSaThdTHnBlNAcgzO3XuGbV4U95jRfnHfK.0vgh8Ryv527n17IW', + }, + { + firstName: 'Arlina', + lastName: 'Moodie', + email: 'amoodie6@twitpic.com', + profilePic: 'https://www.codesmith.io/hubfs/Gabriela%20%20Small.png', + password: '$2a$10$.rndahfCenIT18WWTCOhn.GaSDoPsQJu.DqlPREIyuzqypAGcReKO', + }, + { + firstName: 'Phineas', + lastName: 'Coon', + email: 'pcoon7@hc360.com', + profilePic: 'https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg', + password: '$2a$10$HCmJy4bzQALHWoJGiDlLqe0uZNACP3QyligsCBs6YgkPcGvhWK6SK', + }, + { + firstName: 'Shurlock', + lastName: 'Tytcomb', + email: 'stytcomb8@google.it', + profilePic: + 'https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720', + password: '$2a$10$FqL6UUoRp24Rr//9tRG18uN4QGUoggKZ1p78oeQZKJ6HnPgWEMNZe', + }, + { + firstName: 'Ermina', + lastName: 'Guyton', + email: 'eguyton9@blog.com', + profilePic: + 'https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg', + password: '$2a$10$rMnbMAnBHkfzsyvcQktDzuHXs.cL43euEuC/sBqBloZdmETYV4Tra', + }, + { + firstName: 'Shelton', + lastName: 'Halwood', + email: 'shalwooda@sciencedirect.com', + profilePic: 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', + password: '$2a$10$MZt/Qd/2CqKCCBuO/b3wI.gF4Y5Ggk6hb9s475rSc1UKWPXqzvusS', + }, + { + firstName: 'Nigel', + lastName: 'Clemenzo', + email: 'nclemenzob@fotki.com', + profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', + password: '$2a$10$wDWpM3JEnwGmaml0aTc7yO6Qqg1083sLQwpirYpc4kCA4jJRfytGW', + }, + { + firstName: 'Colver', + lastName: 'Oswell', + email: 'coswellc@wsj.com', + profilePic: + 'https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg', + password: '$2a$10$GIVKx6GIDuuez2wyzQ1uKunCOLyk95cU1Cix3K.Apz31eXyk4qR1a', + }, + { + firstName: 'Saundra', + lastName: 'Normabell', + email: 'snormabelld@businessinsider.com', + profilePic: + 'https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg', + password: '$2a$10$zanHPCuY87iOLnK8l.izQObTM5z.Lv.0NTP4CJUR6RO/UOcwVzw46', + }, + { + firstName: 'Grant', + lastName: 'Chasney', + email: 'gchasneye@mediafire.com', + profilePic: + 'https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4', + password: '$2a$10$Zft06tsFJC0qa1cWhF8q4u29XSmdPd59l7A0NuwUZGyNDhOzJmHkO', + }, + { + firstName: 'Franni', + lastName: 'Chance', + email: 'fchancef@ted.com', + profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', + password: '$2a$10$v4piVmYED/yGy7Z02fIN1eeDjW3DWvHoMJkVIdKDe6xCuahM5XGxS', + }, + { + firstName: 'Clarance', + lastName: 'Meecher', + email: 'cmeecherg@addthis.com', + profilePic: 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', + password: '$2a$10$XS0Bcgj6KKZ6/bO96j2Ci.tS2lQ4SwiWlwsZruORpp0bCDFswIEyK', + }, + { + firstName: 'Katharine', + lastName: 'Lancett', + email: 'klancetth@sfgate.com', + profilePic: 'https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg', + password: '$2a$10$WJfAa2JyWAeNTby65GBnI.k4tgBrVkNBsVhQHYIuv5o83TBmXP6VW', + }, + { + firstName: 'Margaret', + lastName: 'Dubber', + email: 'mdubberi@dropbox.com', + profilePic: + 'https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720', + password: '$2a$10$k3/k6SSUAvw4qEBZAitTzOlQym0gFVcVQU4z88nEN0J96BwkUkah.', + }, + { + firstName: 'Addy', + lastName: 'Fass', + email: 'afassj@vistaprint.com', + profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', + password: '$2a$10$rqjbsf2iTQmKu1nphUSiseQXyQkw0P5P7F4Wx0Mwug06Vvwtup5Ie', + }, + { + firstName: 'Sollie', + lastName: 'Puckinghorne', + email: 'spuckinghornek@topsy.com', + profilePic: 'https://www.codesmith.io/hubfs/Gabriela%20%20Small.png', + password: '$2a$10$hozq/j4uwMjwarUfJvwzE.8RYZVmMU5j.Oh54TV10QnPJtOSEAkA6', + }, + { + firstName: 'Xena', + lastName: 'Tomczynski', + email: 'xtomczynskil@ted.com', + profilePic: 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', + password: '$2a$10$Rv1D7q1enZ8rYwGbeMRgKeelEc4Lpx0OjOUhNXKFb3KpZq3j/K50K', + }, + { + firstName: 'Harmonie', + lastName: 'Karpinski', + email: 'hkarpinskim@g.co', + profilePic: 'https://www.codesmith.io/hubfs/Gabriela%20%20Small.png', + password: '$2a$10$f1ISgk3vWVJUxAziAVPYy.3UBF9NohPeLwdT97X9rZPHQuLFZsWli', + }, + { + firstName: 'Marielle', + lastName: 'Crocket', + email: 'mcrocketn@craigslist.org', + profilePic: + 'https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png', + password: '$2a$10$.jPCYnepe4Nwb5rv.kddHO1LkIw.q8cgd6DHk5SV8d60QHyOu5ylm', + }, + { + firstName: 'Ulrick', + lastName: 'Blasing', + email: 'ublasingo@yahoo.com', + profilePic: + 'https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png', + password: '$2a$10$TtW5XG3xux16EANFLnYjqO5WxkKUPKVTVBW/cq1DWXsYLieazZkfm', + }, + { + firstName: 'Cheri', + lastName: 'Danielsson', + email: 'cdanielssonp@example.com', + profilePic: + 'https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827', + password: '$2a$10$DI4MwyXAT3TIwQBbDUO3SenUmXSjF.WZFrNih6eMpzY6eg2uX9HQu', + }, + { + firstName: 'Durand', + lastName: 'Joron', + email: 'djoronq@google.cn', + profilePic: 'https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png', + password: '$2a$10$JnNpCVE0Nb46kM4Qtkbha.qQeYfK1HUFfWrSo1SGv758RvktY/8qO', + }, + { + firstName: 'Kristien', + lastName: 'Burgett', + email: 'kburgettr@kickstarter.com', + profilePic: 'https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg', + password: '$2a$10$d1/XXb1OflCvAnGE2Cd/gOB9G/EhjVjwPm89O5rTYa.m7jumCqteq', + }, + { + firstName: 'Kaia', + lastName: 'Fassmann', + email: 'kfassmanns@ted.com', + profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', + password: '$2a$10$yStUrrgR9Q2yg8TAv.IFTepba9OVQjnCCpYklDXNOPKvWQzm/f71W', + }, + { + firstName: 'Lockwood', + lastName: 'Moxham', + email: 'lmoxhamt@wikia.com', + profilePic: + 'https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png', + password: '$2a$10$SunYJs.bPKUUtL1qGP0EOOaljWJA5rkwSV2eheBj4qAi8S2IsY.36', + }, + { + firstName: 'Tessie', + lastName: 'Sugden', + email: 'tsugdenu@npr.org', + profilePic: + 'https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg', + password: '$2a$10$hKCgoJybjluN7YTcW3fDtuHGw9XZExEzP.SM9dS0/39mFi8AS4xvG', + }, + { + firstName: 'Rea', + lastName: 'Jeremiah', + email: 'rjeremiahv@wikispaces.com', + profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', + password: '$2a$10$wX974k1kacRzEfdHxGJd/.IIMrQnt/ZLeMfE/zHaexPQrweS4fNOm', + }, + { + firstName: 'Cassie', + lastName: 'Meadows', + email: 'cmeadowsw@smugmug.com', + profilePic: + 'https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827', + password: '$2a$10$G.JEfN.EgUQv2lxHhuyP5.Fgz5yNuA.lGIocNiCqHqePbmyGq8mbq', + }, + { + firstName: 'Kelci', + lastName: 'Bastide', + email: 'kbastidex@latimes.com', + profilePic: + 'https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720', + password: '$2a$10$tGExVET9Zoo.CiNeh9M6k.ulg8WoyFw26xlz0cZq2e5ZNbgfTE.Bu', + }, + { + firstName: 'Thurston', + lastName: 'Speechly', + email: 'tspeechlyy@plala.or.jp', + profilePic: + 'https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg', + password: '$2a$10$PecBrxyFG0Ul/EqlBUKq7.lixy5WoSLvT6wMUUDY2WzTMwvFPvhyq', + }, + { + firstName: 'Silas', + lastName: 'Reyes', + email: 'sreyesz@google.co.jp', + profilePic: 'https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg', + password: '$2a$10$YjNYJGOUfv.Np8pkgjDyA.2XJ1YUDtux4H708Ia7ZYL9Mv5GHMUs2', + }, + { + firstName: 'Marley', + lastName: 'Boshard', + email: 'mboshard10@tiny.cc', + profilePic: + 'https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png', + password: '$2a$10$s34llzRxpdigLFo0dO3Zp.JM9X3Bm2U.H1R3tNXNrieNoIfwWeHcy', + }, + { + firstName: 'Eb', + lastName: 'Dargie', + email: 'edargie11@artisteer.com', + profilePic: + 'https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4', + password: '$2a$10$YKro.0iuOHI9KyY4.IQv9eSWtgeP/KQ9h3tKxPFxPBaaCzlj9gcba', + }, + { + firstName: 'Porter', + lastName: 'Paladini', + email: 'ppaladini12@deliciousdays.com', + profilePic: + 'https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg', + password: '$2a$10$aKFXB4ZQTOX1nJUdjnFGmO/6eU/z3QCaKtvp51sQSpHdHDIsnoHqq', + }, + { + firstName: 'Dian', + lastName: 'Dackombe', + email: 'ddackombe13@ihg.com', + profilePic: + 'https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png', + password: '$2a$10$m16Q41BtIR7PsL.cEp1qJ.2b4zCFRYcWR//CLZ70.BGeHb5BazpHe', + }, + { + firstName: 'Freedman', + lastName: 'Scrafton', + email: 'fscrafton14@posterous.com', + profilePic: + 'https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg', + password: '$2a$10$UseDUfEbBuBVQosgK9hLyOzBIwiFGmhRiaRaBfmKF2oHyR/ptXL9S', + }, + { + firstName: 'Tabbitha', + lastName: 'Jolliffe', + email: 'tjolliffe15@bbb.org', + profilePic: 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', + password: '$2a$10$/BRp.zCmtbUqrBpdfDjxH.fzzqooeJsgMSJj9tRLQV9jrG785mI3q', + }, + { + firstName: 'Jordon', + lastName: 'Ganley', + email: 'jganley16@geocities.jp', + profilePic: 'https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png', + password: '$2a$10$SpNKlyf82tnRWgiMVFGHnur2fyfeVIAfHG2BIsed/Hu5lvRYd6zaq', + }, + { + firstName: 'Annora', + lastName: 'Brigge', + email: 'abrigge17@joomla.org', + profilePic: + 'https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4', + password: '$2a$10$fNPrRI/UzhvFJ1eOZKQNOe2SriLmDSoibNWPqKozgjnT13q3NQ5/O', + }, + { + firstName: 'Bethanne', + lastName: 'Osband', + email: 'bosband18@blinklist.com', + profilePic: 'https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png', + password: '$2a$10$db2.QwkRMc2UqnW.wbRv6uT2ZzGKGMruV/rZeVv/.ELxk0wSkGRa6', + }, + { + firstName: 'Hedda', + lastName: 'Tallquist', + email: 'htallquist19@cisco.com', + profilePic: 'https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png', + password: '$2a$10$e7REOMvBqIjEC1fDI0uLNOMkCJRZvhO4KdOYvtsoTmN/A0zC5ZoGq', + }, + { + firstName: 'Lynelle', + lastName: 'Grosvener', + email: 'lgrosvener1a@google.cn', + profilePic: 'https://www.codesmith.io/hubfs/Gabriela%20%20Small.png', + password: '$2a$10$bQgNEej3PToxLUTbeTEsuODYNcwlxAnks0PLKJa/AT4y1ounPuq2O', + }, + { + firstName: 'Lenee', + lastName: 'Pethybridge', + email: 'lpethybridge1b@chron.com', + profilePic: 'https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png', + password: '$2a$10$eCwUl.lf05F/Bop6vUElveEyM8pjYRg82Dq4DdUiVzqAcv5FHaRCG', + }, + { + firstName: 'Ninnette', + lastName: 'Maden', + email: 'nmaden1c@sciencedirect.com', + profilePic: 'https://www.codesmith.io/hubfs/Gabriela%20%20Small.png', + password: '$2a$10$ijlhLATjvzWv2ovikfDH/ufuoEFwqK9QNiryzymkB6LWAig2p8K3m', + }, + { + firstName: 'Jolynn', + lastName: 'Catenot', + email: 'jcatenot1d@oakley.com', + profilePic: + 'https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720', + password: '$2a$10$aSzNb6A.kYflbnn/xwJoqOzCX9sIDCkNeMPw7zjVgEGJnht8/qX1i', + }, + { + firstName: 'Marabel', + lastName: 'Puleston', + email: 'mpuleston1e@utexas.edu', + profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', + password: '$2a$10$kDdrnGvJhkScD8smnhXGV.RNBbvMAaIcl2bGLg4VmIekVcReNtz7.', + }, + { + firstName: 'Bryn', + lastName: 'Arias', + email: 'barias1f@flavors.me', + profilePic: + 'https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg', + password: '$2a$10$ZajYO4RNsq8/qA9Jg1vNJ.lADYiuFDx3BB8rldJ32GOXqROluDfbi', + }, + { + firstName: 'Arni', + lastName: 'Jertz', + email: 'ajertz1g@tuttocitta.it', + profilePic: + 'https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827', + password: '$2a$10$YLt1lVwcCc/3PiHd6UOsXevxvEiNbEjUq1eIfYxeJ8ngcRFCpX5hi', + }, + { + firstName: 'Maegan', + lastName: 'Mulhall', + email: 'mmulhall1h@wikipedia.org', + profilePic: + 'https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg', + password: '$2a$10$Aif6H2Z.giCkMXGBxJX3TutzAvAuAJLijp6r.G4wQYzi/WW60sLaa', + }, + { + firstName: 'Nicolai', + lastName: 'Brugsma', + email: 'nbrugsma1i@4shared.com', + profilePic: 'https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg', + password: '$2a$10$GQIoJKuUvoZfHY.Z2YfRouNTnzI1GfJwperv6inTblhhLAShaViOu', + }, + { + firstName: 'Bryan', + lastName: 'Heffy', + email: 'bheffy1j@cbsnews.com', + profilePic: + 'https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png', + password: '$2a$10$QlE4KlmsB3rlD4XZKABi0.BafpsCBdHddFtlZ2nYJyyj9tpF2jw5i', + }, + { + firstName: 'Donavon', + lastName: 'Osichev', + email: 'dosichev1k@pinterest.com', + profilePic: 'https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png', + password: '$2a$10$9JghLaPXIX4RoBxUq6umY.itdAgsBWFito4xcu2XdC5XTTn/ikKRq', + }, + { + firstName: 'Kennan', + lastName: 'Dugget', + email: 'kdugget1l@opensource.org', + profilePic: + 'https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg', + password: '$2a$10$3DuJ6wsSdMsZk.7DcoTDU.cOMrl7cJ3T.xw.Qhu98KkOeZyJnAPn2', + }, + { + firstName: 'Paton', + lastName: 'Climance', + email: 'pclimance1m@webnode.com', + profilePic: 'https://www.codesmith.io/hubfs/Gabriela%20%20Small.png', + password: '$2a$10$GsRvHQHiFgafXSxx0lV9a.COTn6y7ccTXjtqaQrpGlObrUtv5pxHm', + }, + { + firstName: 'Caitrin', + lastName: 'McAllister', + email: 'cmcallister1n@ft.com', + profilePic: + 'https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4', + password: '$2a$10$oemDl2Fl9xkIlQK4roEkvuPV8YlXJuR/QSLO2CuYixpspPn58c3IK', + }, + { + firstName: 'Sephira', + lastName: 'Kaming', + email: 'skaming1o@about.me', + profilePic: 'https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png', + password: '$2a$10$D9vgbSRRKKL9VF1h3yaAnuzXsi7C2A43Djd8G/FKJFK.coCXx4WTW', + }, + { + firstName: 'Fraser', + lastName: 'Londsdale', + email: 'flondsdale1p@freewebs.com', + profilePic: + 'https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg', + password: '$2a$10$f6XFReXajluyek3Jzd.dL.uMeoEOZQUmeGzcdboxW203TMo7QYXne', + }, + { + firstName: 'Alyssa', + lastName: 'Bangham', + email: 'abangham1q@usgs.gov', + profilePic: + 'https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720', + password: '$2a$10$0mqFf987WSqD2Dt6k9bvCucM2UrbCCYIfs0xl9LeCbV4s5bwhXGgC', + }, + { + firstName: 'Clarette', + lastName: 'Alcock', + email: 'calcock1r@amazonaws.com', + profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', + password: '$2a$10$QGDxhItZ39N0pDJNB/IOuu/EweEPoT9KlodGaJxhLMZIEhc0xmMqW', + }, + { + firstName: 'Lizbeth', + lastName: 'France', + email: 'lfrance1s@yahoo.com', + profilePic: 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', + password: '$2a$10$LunBNZ8SvmtISZ92eEu.Xek8.vDQZQnDV0QZ7Eo20LxZuRzNquOlm', + }, + { + firstName: 'Abramo', + lastName: 'Sparkwell', + email: 'asparkwell1t@berkeley.edu', + profilePic: 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', + password: '$2a$10$QYm1ge0tj0gSdDL7IRWEzeqqaenO6Zas9RhHKFYhnj8VStVeVW6gq', + }, + { + firstName: 'Darb', + lastName: 'Coen', + email: 'dcoen1u@prlog.org', + profilePic: + 'https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720', + password: '$2a$10$1bhpvbesE0IVgwJnM4lqc.GfjG5FK0omsaaueVs/c08OIs3ebSxX.', + }, + { + firstName: 'Gusty', + lastName: 'Besnardeau', + email: 'gbesnardeau1v@themeforest.net', + profilePic: 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', + password: '$2a$10$6vCDDrNMFOZl5K5CM9KxROmEumfcGXqYU7tkg65yCAccqF7b9H1km', + }, + { + firstName: 'Randy', + lastName: 'Verriour', + email: 'rverriour1w@ebay.co.uk', + profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', + password: '$2a$10$ND9dRuKq/p0TyIXDyCXUhetI35HULYyCLtfvfba.wYHO9VlDCKq/e', + }, + { + firstName: 'Israel', + lastName: 'Canti', + email: 'icanti1x@businesswire.com', + profilePic: + 'https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827', + password: '$2a$10$NHNl9.KpZB60jKCrqD2MG.y5y87LmabkqK.lrsFcmRCFOBYSLUjqG', + }, + { + firstName: 'Micky', + lastName: 'Dunseath', + email: 'mdunseath1y@miibeian.gov.cn', + profilePic: + 'https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4', + password: '$2a$10$6uRJm/WXtPkWGA4W62HFU.RmEzyUu5siHS.ZsXiI.OXTZOCN.Rjzy', + }, + { + firstName: 'Gabi', + lastName: 'Hardcastle', + email: 'ghardcastle1z@weebly.com', + profilePic: + 'https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4', + password: '$2a$10$cdZeQHxIqJCzkwQzUJpg9egznL4FVgm.n6exQ7VT4PfGrpzeNBAUO', + }, + { + firstName: 'Rakel', + lastName: 'Scothron', + email: 'rscothron20@yellowbook.com', + profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', + password: '$2a$10$rc.SQHRUkMcnmeutSbPEeeK8k6DVtEL6lW58Pc/ljrIC5/iYs5Dk.', + }, + { + firstName: 'Gretel', + lastName: 'Sitford', + email: 'gsitford21@tinyurl.com', + profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', + password: '$2a$10$vgwSM.REDV6QIt0rNo9K5.riA7jke0nZC5Rc09Kaf0PgFYQkRhBli', + }, + { + firstName: 'Rosalinda', + lastName: 'Naisby', + email: 'rnaisby22@nationalgeographic.com', + profilePic: + 'https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png', + password: '$2a$10$riw7asjBJdH3HFI/fNOHre05RD8Tn9ewNoVJBxYA.L3FB58aYdfE.', + }, + { + firstName: 'Thaddus', + lastName: 'Waddell', + email: 'twaddell23@nymag.com', + profilePic: 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', + password: '$2a$10$hahavWujiKjjPBYImkUA9e73YcfKBZeNVP4I.ezip6sEyQPVc8.cW', + }, + { + firstName: 'Nadia', + lastName: 'Zeale', + email: 'nzeale24@google.ru', + profilePic: 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', + password: '$2a$10$N01TsCv2u6LBGhpHK8z8VOCRD2vG1sxRIuZYYlyX/4iEtA7mom9wW', + }, + { + firstName: 'Emmett', + lastName: 'Buckell', + email: 'ebuckell25@reddit.com', + profilePic: 'https://www.codesmith.io/hubfs/Gabriela%20%20Small.png', + password: '$2a$10$U16tvQU51kBO8HfIdCrGx.on4MEFOnt0a2.m51C7rOBIS0rzOf9eO', + }, + { + firstName: 'Lavinia', + lastName: 'Baume', + email: 'lbaume26@tinyurl.com', + profilePic: + 'https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720', + password: '$2a$10$2So/b3QTY/PNvNWervUONeEETF2rviHpXrUrxnAnnnH2QZvTIh5gW', + }, + { + firstName: 'Janine', + lastName: 'Kitt', + email: 'jkitt27@wsj.com', + profilePic: + 'https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4', + password: '$2a$10$QB9d3PmZ4mNopfy3RzOdC.O2OFnR8JEPsl2JQllkcnCyKfjFzMRvO', + }, + { + firstName: 'Beatrix', + lastName: 'Healey', + email: 'bhealey28@amazon.co.jp', + profilePic: 'https://www.codesmith.io/hubfs/Gabriela%20%20Small.png', + password: '$2a$10$r3VCaLaRVQx.CMUBVwBeo.QVhGKc8Z7TztHXIKPLZNuC9mL8ayxpu', + }, + { + firstName: 'Simone', + lastName: 'Buske', + email: 'sbuske29@soundcloud.com', + profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', + password: '$2a$10$sVfBQmixhBsO2UweyDGB.urBXwcbCs4/X8ed2UKbYlmnb6iagTcbC', + }, + { + firstName: 'Cristine', + lastName: 'Gaddesby', + email: 'cgaddesby2a@senate.gov', + profilePic: + 'https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827', + password: '$2a$10$iLTB1MM2I1xWA3VL7kTe.OHv.IzSntFeoc.FDn8pWnOJgw3P00roO', + }, + { + firstName: 'Marta', + lastName: 'Daveren', + email: 'mdaveren2b@odnoklassniki.ru', + profilePic: 'https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png', + password: '$2a$10$TBTRKpaEEJyTh9FTw2h73uGeHyj7ZGazo7xi.cA48R69jbjbLY4di', + }, + { + firstName: 'Nanon', + lastName: 'Gligoraci', + email: 'ngligoraci2c@addthis.com', + profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', + password: '$2a$10$u/nIHSMhz9vSiWWzISARc.pAAtSUEPvSWY1pZHO4DG5Epc7t/DDsy', + }, + { + firstName: 'Donall', + lastName: 'Frapwell', + email: 'dfrapwell2d@hostgator.com', + profilePic: 'https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg', + password: '$2a$10$iHKNdye22EulFKSVN5.tNOcTpJlqu0O6acKJPwCCyOil1zF3FkdIy', + }, + { + firstName: 'Beverlee', + lastName: 'Bangham', + email: 'bbangham2e@tamu.edu', + profilePic: + 'https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827', + password: '$2a$10$wXNZnEE9TL8tgeKuWKyKRubR/IgUjCmKZWTd9wc8sUjA8QZ93vthq', + }, + { + firstName: 'Englebert', + lastName: 'Bancroft', + email: 'ebancroft2f@ow.ly', + profilePic: 'https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg', + password: '$2a$10$EcjGdJhrox/tXFARNuuMmeBQubqJjgoXLq7eZYWo/er3C6gppLfby', + }, + { + firstName: 'Siegfried', + lastName: 'Castillou', + email: 'scastillou2g@reddit.com', + profilePic: + 'https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png', + password: '$2a$10$DrOmLH.JF0oi6FR9IXr8VOmSHP0C/I9WZnuStZgrOUUi1dK/wlf0i', + }, + { + firstName: 'Marvin', + lastName: 'Cranke', + email: 'mcranke2h@marketwatch.com', + profilePic: + 'https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg', + password: '$2a$10$.Wg0UV/Dmd/zViYP/OnvJ.X09ZBZY7BKMSiV9h7aq0DD9lRUreND6', + }, + { + firstName: 'Arne', + lastName: 'Rummin', + email: 'arummin2i@is.gd', + profilePic: 'https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg', + password: '$2a$10$AjZSO39N.UP3GjEXbSuU8.d5d9V1Y/8qK6mt1.QYgwgpKR07cyeIG', + }, + { + firstName: 'Seumas', + lastName: 'Feldberger', + email: 'sfeldberger2j@ning.com', + profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', + password: '$2a$10$2883OY2HM07TY6fqkKCI9OWKZEo6ZeE/RJpa3g3KzG6YnvQlGLljC', + }, + { + firstName: 'Hilda', + lastName: 'Worham', + email: 'hworham2k@mail.ru', + profilePic: 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', + password: '$2a$10$kOlY/HxnObnwym4y0pIgoOFPKa9a8RL6XA3pDj.iFlIG44F3NXNgm', + }, + { + firstName: 'Winny', + lastName: "O'Glessane", + email: 'woglessane2l@deviantart.com', + profilePic: 'https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg', + password: '$2a$10$IjXeIf6njEA1Kq/.zd0IFOzWWeBmKPfg1EQsMutjP08Yjdabx/PZe', + }, + { + firstName: 'Gwenora', + lastName: 'Agge', + email: 'gagge2m@unesco.org', + profilePic: + 'https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720', + password: '$2a$10$vJ5BSyLvZliREEMdxLrPe.qHrV6XnUPRWZL25tp1J22604Wn5uCP.', + }, + { + firstName: 'Piggy', + lastName: 'Torrisi', + email: 'ptorrisi2n@goodreads.com', + profilePic: + 'https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827', + password: '$2a$10$E/yrtzHHJpaYFjb00b8sMO2IgW9H7vNUV9/C7V/VOZwAqquEX/q1m', + }, + { + firstName: 'Niki', + lastName: 'Glaysher', + email: 'nglaysher2o@kickstarter.com', + profilePic: 'https://www.codesmith.io/hubfs/Gabriela%20%20Small.png', + password: '$2a$10$3IuzlNTRGZcFzLhHhA7.TujKVstdPVzFPA/IUQxBUcZFCmWeb4rn.', + }, + { + firstName: 'Pail', + lastName: 'Vasechkin', + email: 'pvasechkin2p@vk.com', + profilePic: + 'https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720', + password: '$2a$10$nl9fW9EQWV37BP0MFeY5HuS1xZ64Lq.n4mPr5x0IML8JIuM5RRB46', + }, + { + firstName: 'Gav', + lastName: 'Renneke', + email: 'grenneke2q@hp.com', + profilePic: + 'https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720', + password: '$2a$10$NzSQF086.xq.2E2jFkpY5O.qNJyVq2Fkd6iwAHKrFDuIx2G705cPO', + }, + { + firstName: 'Perle', + lastName: 'Rizziello', + email: 'prizziello2r@mashable.com', + profilePic: + 'https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg', + password: '$2a$10$mYw63dkZFGwy4N8d5.8S2utcYeiiNwRRbUL9KyChIYpYudxekQ7KG', + }, +]; + +const mockForums = [ + { + title: 'Code Crunch & Job Hunt: Battle Logs', + description: + 'Share your epic (or tragic) tales from the job search battlefield. Did you bravely conquer the coding test, or did it conquer you?', + }, + { + title: 'Debugging My Resume', + description: + 'Need help squashing those pesky resume bugs? Post your CV here and let the community help you refactor it into a job offer magnet.', + }, + { + title: 'Interview Nightmares & Dream Jobs', + description: + 'Spill the beans on your worst interview disasters and celebrate those rare moments when it actually went well. Misery loves company, and so do success stories!', + }, + { + title: 'HR: Humans or Robots?', + description: + 'Ever wonder if that HR person was a cleverly disguised bot? Share your weirdest and most robotic interactions with hiring departments.', + }, + { + title: 'Salary Negotiation: The Boss Fight', + description: + 'Tips, tricks, and epic fails from the final boss battle of job hunting: salary negotiations. Did you get the loot or just a consolation prize?', + }, + { + title: 'Coding Challenge Gauntlet', + description: + 'Post and discuss the coding challenges that made you cry, laugh, or question your career choices. Help others survive the gauntlet!', + }, + { + title: 'Office Buzzwords & Bingo', + description: + 'Share and decipher the latest buzzwords and jargon from job postings and interviews. Bonus points for the most absurd phrases.', + }, + { + title: 'Side Projects & Procrastination', + description: + 'Brag about your side projects or confess how theyโ€™re really just elaborate ways to procrastinate. Either way, weโ€™re impressed!', + }, + { + title: 'LinkedIn Lamentations', + description: + "Rant and rave about the peculiarities of LinkedIn. Endorsements, random connection requests, and the mysterious 'we found your profile' emails.", + }, + { + title: 'Rejected & Dejected: Therapy Sessions', + description: + 'A safe space to vent about job rejections and support each other through the emotional rollercoaster of the job hunt. Cookies and virtual hugs provided.', + }, +]; + +console.log('๐ŸŒฑ Seeding Alumni Collection...'); +db.alumnis.insertMany(mockAlumnis); +console.log('๐Ÿ Seeding Alumni Collection Successful!'); + +console.log('๐ŸŒฑ Seeding GraduateInvitations Collection...'); +db.graduateinvitations.insertMany(mockGraduteInvitions); +console.log('๐Ÿ Seeding GraduateInvitations Collection Successful!'); + +console.log('๐ŸŒฑ Seeding Users Collection...'); +db.users.insertMany(mockUsers); +console.log('๐Ÿ Seeding Users Collection Successful!'); + +console.log('๐ŸŒฑ Seeding Forums Collection...'); +db.forums.insertMany(mockForums); +console.log('๐Ÿ Seeding Forums Collection Successful!'); diff --git a/scripts/db/mongoInit/seed-reference-collections.js b/scripts/db/mongoInit/seed-reference-collections.js new file mode 100644 index 00000000..7bf1bdfa --- /dev/null +++ b/scripts/db/mongoInit/seed-reference-collections.js @@ -0,0 +1,1350 @@ +console.log('๐ŸŒฑ Seeding Profiles Collection...'); + +const users = db.users.find().toArray(); +const forums = db.forums.find().toArray(); + +const cohorts = ['LA', 'NYC', 'ECRI', 'PTRI', 'WCRI', 'FTRI', 'CTRI']; + +const cohortNumRange = 100; + +const professionalSummaryOptions = [ + 'Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.', + 'Backend engineer specializing in designing and optimizing database architectures for high-performance applications.', + 'Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.', + 'DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.', + 'Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.', + 'Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.', + 'AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.', + 'Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.', + 'Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.', + 'Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.', +]; + +const skillOptions = [ + 'JavaScript', + 'Python', + 'Java', + 'C++', + 'C#', + 'Ruby', + 'HTML', + 'CSS', + 'SQL', + 'NoSQL', + 'Git', + 'Agile Development', + 'Scrum', + 'RESTful APIs', + 'GraphQL', + 'Docker', + 'Kubernetes', + 'CI/CD', + 'AWS', + 'Azure', + 'Google Cloud Platform', + 'Machine Learning', + 'Deep Learning', + 'Data Science', + 'Big Data', + 'Microservices', + 'Serverless Architecture', + 'Mobile Development', + 'iOS Development', + 'Android Development', + 'React', + 'Angular', + 'Vue.js', + 'Node.js', + 'Django', + 'Flask', + 'Spring Boot', + 'Laravel', + 'ASP.NET', + 'Blockchain', + 'Cybersecurity', + 'Unit Testing', + 'Integration Testing', + 'System Design', + 'Database Design', + 'Software Architecture', + 'Performance Optimization', + 'DevOps', + 'Continuous Deployment', + 'TDD (Test-Driven Development)', + 'BDD (Behavior-Driven Development)', + 'Graph Databases', + 'WebSockets', + 'Event-Driven Architecture', + 'Functional Programming', + 'Object-Oriented Programming', + 'SaaS (Software as a Service)', + 'PaaS (Platform as a Service)', + 'FaaS (Function as a Service)', + 'User Experience (UX) Design', + 'User Interface (UI) Design', + 'Version Control', + 'Automated Testing', + 'Code Review', + 'Pair Programming', + 'Cloud Computing', + 'Containerization', + 'Infrastructure as Code', + 'API Development', + 'API Integration', + 'ETL (Extract, Transform, Load)', + 'Data Warehousing', + 'Data Visualization', + 'Natural Language Processing', + 'Robotic Process Automation', + 'Edge Computing', + 'IoT (Internet of Things)', + 'AR/VR (Augmented/Virtual Reality)', + 'Quantum Computing', + 'Reactive Programming', + 'Concurrency', + 'Parallel Computing', + 'Graph Theory', + 'Algorithm Design', + 'Design Patterns', + 'Refactoring', + 'Legacy Code Management', + 'Technical Writing', + 'Project Management', + 'Communication Skills', + 'Problem-Solving', + 'Critical Thinking', + 'Time Management', + 'Collaboration', + 'Leadership', +]; + +const jobTitleOptions = [ + 'Software Engineer', + 'Senior Software Engineer', + 'Lead Software Engineer', + 'Principal Software Engineer', + 'Junior Software Engineer', + 'Software Developer', + 'Backend Developer', + 'Frontend Developer', + 'Full Stack Developer', + 'DevOps Engineer', + 'Site Reliability Engineer', + 'Mobile Developer', + 'iOS Developer', + 'Android Developer', + 'Web Developer', + 'Embedded Systems Engineer', + 'Data Engineer', + 'Machine Learning Engineer', + 'AI Engineer', + 'Data Scientist', + 'Cloud Engineer', + 'Security Engineer', + 'QA Engineer', + 'Automation Engineer', + 'Test Engineer', + 'Software Architect', + 'Technical Lead', + 'Engineering Manager', + 'Technical Program Manager', + 'Product Manager', +]; + +const companyOptions = [ + 'Google', + 'Apple', + 'Microsoft', + 'Amazon', + 'Facebook', + 'Twitter', + 'Tesla', + 'Netflix', + 'Adobe', + 'Intel', + 'NVIDIA', + 'Oracle', + 'IBM', + 'Salesforce', + 'Cisco', + 'Uber', + 'Airbnb', + 'Lyft', + 'Spotify', + 'Snapchat', + 'Dropbox', + 'PayPal', + 'Square', + 'Shopify', + 'Zoom', + 'Slack', + 'Red Hat', + 'Atlassian', + 'GitHub', + 'LinkedIn', + 'Pinterest', + 'Stripe', + 'Twilio', + 'Asana', + 'Qualcomm', + 'VMware', + 'Palantir', + 'Coinbase', + 'Robinhood', + 'Snowflake', + 'ServiceNow', + 'Workday', + 'DocuSign', + 'Okta', + 'Datadog', + 'HubSpot', + 'DoorDash', + 'Epic Games', + 'EA (Electronic Arts)', + 'Activision Blizzard', +]; + +const collegeOptions = [ + 'Harvard University', + 'Stanford University', + 'Massachusetts Institute of Technology (MIT)', + 'California Institute of Technology (Caltech)', + 'University of California, Berkeley', + 'University of Oxford', + 'University of Cambridge', + 'Princeton University', + 'Columbia University', + 'University of Chicago', + 'Yale University', + 'University of Pennsylvania', + 'University of California, Los Angeles (UCLA)', + 'Johns Hopkins University', + 'University of Southern California', + 'Duke University', + 'Cornell University', + 'Northwestern University', + 'University of Michigan', + 'New York University (NYU)', + 'Carnegie Mellon University', + 'University of Toronto', + 'University of Washington', + 'University College London (UCL)', + 'Imperial College London', + 'London School of Economics and Political Science (LSE)', + 'University of Edinburgh', + 'University of British Columbia', + 'University of Texas at Austin', + 'Georgia Institute of Technology', + 'University of Melbourne', + 'University of Sydney', + 'Australian National University', + 'University of Queensland', + 'University of New South Wales (UNSW Sydney)', + 'McGill University', + 'University of Montreal', + 'University of Alberta', + 'ETH Zurich - Swiss Federal Institute of Technology', + 'EPFL - ร‰cole Polytechnique Fรฉdรฉrale de Lausanne', + 'University of Tokyo', + 'Kyoto University', + 'Seoul National University', + 'National University of Singapore (NUS)', + 'Nanyang Technological University (NTU)', + 'Peking University', + 'Tsinghua University', + 'Fudan University', + 'Shanghai Jiao Tong University', + 'Hong Kong University of Science and Technology (HKUST)', + 'University of Hong Kong (HKU)', + 'Chinese University of Hong Kong (CUHK)', + 'University of California, San Diego (UCSD)', + 'University of California, Santa Barbara (UCSB)', + 'University of Illinois at Urbana-Champaign', + 'University of Wisconsin-Madison', + 'University of Minnesota', + 'University of Florida', + 'University of Maryland, College Park', + 'Ohio State University', + 'Pennsylvania State University', + 'University of North Carolina at Chapel Hill', + 'Purdue University', + 'University of Virginia', + 'Vanderbilt University', + 'Rice University', + 'Emory University', + 'Washington University in St. Louis', + 'Brown University', + 'University of Notre Dame', + 'Georgetown University', + 'Boston University', + 'University of Miami', + 'University of Rochester', + 'Case Western Reserve University', + 'University of Colorado Boulder', + 'University of Utah', + 'University of Arizona', + 'University of Iowa', + 'Indiana University Bloomington', + 'Michigan State University', + 'Rutgers University', + 'University of Pittsburgh', + 'University of Delaware', + 'University of Connecticut', + 'University of Kansas', + 'University of Oregon', + 'University of Tennessee', + 'University of South Carolina', + 'Clemson University', + 'University of Oklahoma', + 'University of Kentucky', + 'University of Nebraska-Lincoln', + 'University of Houston', + 'University of Georgia', + 'University of Missouri', + 'University of Massachusetts Amherst', + 'University of Vermont', + 'Syracuse University', + 'Brigham Young University', +]; + +const degreeOptions = [ + 'High School Diploma', + 'Associate Degree', + "Bachelor's Degree", + 'Bachelor of Arts (BA)', + 'Bachelor of Science (BS)', + 'Bachelor of Fine Arts (BFA)', + 'Bachelor of Business Administration (BBA)', + 'Bachelor of Engineering (BE)', + 'Bachelor of Technology (BTech)', + "Master's Degree", + 'Master of Arts (MA)', + 'Master of Science (MS)', + 'Master of Business Administration (MBA)', + 'Master of Fine Arts (MFA)', + 'Master of Engineering (ME)', + 'Master of Technology (MTech)', + 'Master of Public Administration (MPA)', + 'Master of Public Health (MPH)', + 'Master of Social Work (MSW)', + 'Master of Education (MEd)', + 'Doctoral Degree', + 'Doctor of Philosophy (PhD)', + 'Doctor of Education (EdD)', + 'Doctor of Business Administration (DBA)', + 'Doctor of Medicine (MD)', + 'Doctor of Dental Surgery (DDS)', + 'Doctor of Dental Medicine (DMD)', + 'Doctor of Veterinary Medicine (DVM)', + 'Juris Doctor (JD)', + 'Doctor of Pharmacy (PharmD)', + 'Professional Degree', + 'Postdoctoral Research', + 'Certificate Program', + 'Diploma Program', + 'Trade School Certification', + 'Technical School Certification', + 'Continuing Education', + 'Professional Development', + 'Executive Education', +]; + +const fieldOfStudyOptions = [ + 'Computer Science', + 'Electrical Engineering', + 'Mechanical Engineering', + 'Civil Engineering', + 'Chemical Engineering', + 'Biomedical Engineering', + 'Aerospace Engineering', + 'Environmental Engineering', + 'Information Technology', + 'Data Science', + 'Physics', + 'Mathematics', + 'Statistics', + 'Chemistry', + 'Biology', + 'Biochemistry', + 'Psychology', + 'Sociology', + 'Anthropology', + 'Political Science', + 'Economics', + 'Finance', + 'Business Administration', + 'Marketing', + 'Accounting', + 'Management', + 'International Relations', + 'History', + 'Philosophy', + 'English Literature', + 'Linguistics', + 'Journalism', + 'Communication Studies', + 'Education', + 'Law', + 'Public Health', + 'Nursing', + 'Medicine', + 'Dentistry', + 'Pharmacy', + 'Veterinary Medicine', + 'Architecture', + 'Urban Planning', + 'Fine Arts', + 'Music', + 'Theater', + 'Film Studies', + 'Graphic Design', + 'Interior Design', +]; + +const projectOptions = [ + { + name: 'CodeBot', + description: 'Automated code generation tool using AI for faster development cycles.', + link: 'https://github.com/username/codebot', + }, + { + name: 'DataCrunch', + description: 'Real-time data analytics platform for extracting insights from big data.', + link: 'https://github.com/username/datacrunch', + }, + { + name: 'CloudGuard', + description: 'Advanced cloud security suite ensuring data protection and compliance.', + link: 'https://github.com/username/cloudguard', + }, + { + name: 'RoboVision', + description: 'AI-powered computer vision system for object detection and recognition.', + link: 'https://github.com/username/robovision', + }, + { + name: 'CryptoTrack', + description: 'Blockchain-based cryptocurrency portfolio tracker for investors.', + link: 'https://github.com/username/cryptotrack', + }, + { + name: 'SmartHomeHub', + description: 'Centralized home automation system integrating IoT devices for smart living.', + link: 'https://github.com/username/smarthomehub', + }, + { + name: 'HealthLink', + description: 'Telemedicine platform connecting patients with healthcare providers remotely.', + link: 'https://github.com/username/healthlink', + }, + { + name: 'AugmentWorks', + description: 'Augmented reality application for enhancing workplace productivity and training.', + link: 'https://github.com/username/augmentworks', + }, + { + name: 'GenomeQuest', + description: 'Genomic data analysis tool for researchers and bioinformaticians.', + link: 'https://github.com/username/genomequest', + }, + { + name: 'NetPlanner', + description: + 'Network infrastructure planning software for optimizing bandwidth and efficiency.', + link: 'https://github.com/username/netplanner', + }, + { + name: 'VoiceAssistant', + description: 'Voice-controlled personal assistant using natural language processing.', + link: 'https://github.com/username/voiceassistant', + }, + { + name: 'EcoTech', + description: 'Environmental monitoring and conservation app with real-time data visualization.', + link: 'https://github.com/username/ecotech', + }, + { + name: 'SecureChat', + description: 'End-to-end encrypted messaging app ensuring user privacy and security.', + link: 'https://github.com/username/securechat', + }, + { + name: 'VirtualTour', + description: 'Virtual reality tour application for immersive travel experiences.', + link: 'https://github.com/username/virtualtour', + }, + { + name: 'CodeAnalyzer', + description: 'Static code analysis tool for detecting bugs and code quality improvements.', + link: 'https://github.com/username/codeanalyzer', + }, + { + name: 'SmartInventory', + description: 'Inventory management system with RFID and IoT integration for tracking assets.', + link: 'https://github.com/username/smartinventory', + }, + { + name: 'LearnHub', + description: + 'Online learning platform offering courses on various subjects with interactive content.', + link: 'https://github.com/username/learnhub', + }, + { + name: 'HealthMonitor', + description: + 'Personal health monitoring app with AI-driven analytics and wearable device integration.', + link: 'https://github.com/username/healthmonitor', + }, + { + name: 'JobFinder', + description: + 'Job search and application management platform with personalized recommendations.', + link: 'https://github.com/username/jobfinder', + }, + { + name: 'SmartGrid', + description: 'Smart grid technology for efficient energy distribution and consumption.', + link: 'https://github.com/username/smartgrid', + }, + { + name: 'RoboTrader', + description: 'Algorithmic trading platform for automated stock market analysis and trading.', + link: 'https://github.com/username/robotrader', + }, + { + name: 'SocialConnect', + description: 'Social media integration platform for managing multiple social accounts.', + link: 'https://github.com/username/socialconnect', + }, + { + name: 'TourismApp', + description: + 'Mobile application for tourists providing travel guides and local recommendations.', + link: 'https://github.com/username/tourismapp', + }, + { + name: 'SmartMirror', + description: + 'Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.', + link: 'https://github.com/username/smartmirror', + }, + { + name: 'VirtualMarket', + description: + 'Virtual reality shopping experience allowing users to browse and buy products online.', + link: 'https://github.com/username/virtualmarket', + }, + { + name: 'CodeReview', + description: 'Collaborative code review platform with annotations and feedback features.', + link: 'https://github.com/username/codereview', + }, + { + name: 'AIAssistant', + description: 'Artificial intelligence assistant for managing tasks, scheduling, and reminders.', + link: 'https://github.com/username/aiassistant', + }, + { + name: 'SecureBackup', + description: 'Encrypted cloud backup solution ensuring secure storage and data protection.', + link: 'https://github.com/username/securebackup', + }, + { + name: 'SmartCarPark', + description: + 'Smart parking management system using IoT sensors for efficient parking space utilization.', + link: 'https://github.com/username/smartcarpark', + }, + { + name: 'HomeSecurity', + description: + 'Home security system with video surveillance, motion detection, and alarm integration.', + link: 'https://github.com/username/homesecurity', + }, + { + name: 'EduTech', + description: + 'Educational technology platform offering virtual classrooms and interactive learning tools.', + link: 'https://github.com/username/edutech', + }, + { + name: 'EventPlanner', + description: 'Event management and planning software for organizing and coordinating events.', + link: 'https://github.com/username/eventplanner', + }, + { + name: 'SmartFarm', + description: + 'Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.', + link: 'https://github.com/username/smartfarm', + }, + { + name: 'MediCare', + description: + 'Medical appointment scheduling and patient management system for healthcare providers.', + link: 'https://github.com/username/medicare', + }, + { + name: 'FoodDelivery', + description: + 'Online food delivery platform connecting restaurants with customers for food ordering.', + link: 'https://github.com/username/fooddelivery', + }, + { + name: 'AIChatbot', + description: 'AI-powered chatbot for customer support and interactive communication.', + link: 'https://github.com/username/aichatbot', + }, + { + name: 'SmartCity', + description: + 'Integrated urban management system using IoT and data analytics for smart city initiatives.', + link: 'https://github.com/username/smartcity', + }, + { + name: 'VirtualAssistant', + description: + 'Virtual assistant software for voice command-based tasks and personal assistance.', + link: 'https://github.com/username/virtualassistant', + }, + { + name: 'SmartLearning', + description: 'AI-driven personalized learning platform with adaptive learning algorithms.', + link: 'https://github.com/username/smartlearning', + }, + { + name: 'RecruitmentAI', + description: 'AI-powered recruitment platform for matching candidates with job opportunities.', + link: 'https://github.com/username/recruitmentai', + }, + { + name: 'CloudStorage', + description: 'Cloud storage service with file synchronization and sharing capabilities.', + link: 'https://github.com/username/cloudstorage', + }, + { + name: 'TravelGuide', + description: + 'Interactive travel guide application providing travel tips and destination insights.', + link: 'https://github.com/username/travelguide', + }, + { + name: 'SmartWatch', + description: + 'Smart wearable device with health monitoring, fitness tracking, and notification features.', + link: 'https://github.com/username/smartwatch', + }, + { + name: 'ARNavigation', + description: + 'Augmented reality navigation app for real-time directions and location-based information.', + link: 'https://github.com/username/arnavigation', + }, + { + name: 'CryptoWallet', + description: + 'Cryptocurrency wallet application for securely storing and managing digital assets.', + link: 'https://github.com/username/cryptowallet', + }, + { + name: 'CodeOptimizer', + description: + 'AI-driven code optimization tool for improving software performance and efficiency.', + link: 'https://github.com/username/codeoptimizer', + }, +]; + +const testimonialOptions = [ + { + from: 'Alice Johnson', + relation: 'Manager at TechSolutions Inc.', + text: "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + }, + { + from: 'David Smith', + relation: 'Colleague at InnovateTech Ltd.', + text: 'Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.', + }, + { + from: 'Emily Brown', + relation: 'Client at GlobalSoft Solutions', + text: "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + }, + { + from: 'Daniel Lee', + relation: 'Project Manager at Digital Dynamics', + text: "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + }, + { + from: 'Olivia White', + relation: 'Tech Lead at Cloud Innovations', + text: "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + }, + { + from: 'Sophia Martinez', + relation: 'Director of Engineering at FutureTech', + text: "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + }, + { + from: 'Ethan Taylor', + relation: 'Co-founder at StartupX', + text: "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", + }, + { + from: 'Isabella Clark', + relation: 'HR Manager at TechFusion', + text: "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + }, + { + from: 'Noah Rodriguez', + relation: 'Product Owner at AgileSoft', + text: "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + }, + { + from: 'Aiden Walker', + relation: 'CTO at Innovate Solutions', + text: "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", + }, + { + from: 'Liam Harris', + relation: 'Lead Developer at CloudTech', + text: "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + }, + { + from: 'Emma Thompson', + relation: 'Manager at DataTech Solutions', + text: "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + }, + { + from: 'Lucas Miller', + relation: 'CTO at InnovateTech Ltd.', + text: "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", + }, + { + from: 'Sophie Turner', + relation: 'Project Manager at Digital Dynamics', + text: "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + }, + { + from: 'Emma Watson', + relation: 'Director of Engineering at FutureTech', + text: "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + }, + { + from: 'Oliver Jackson', + relation: 'HR Manager at TechFusion', + text: "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + }, + { + from: 'Sophia Brown', + relation: 'Product Owner at AgileSoft', + text: "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + }, + { + from: 'Ethan Green', + relation: 'CTO at Innovate Solutions', + text: "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + }, + { + from: 'Mia Davis', + relation: 'Lead Developer at CloudTech', + text: "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + }, + { + from: 'Noah Wilson', + relation: 'Manager at DataTech Solutions', + text: "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + }, + { + from: 'Ava Miller', + relation: 'CTO at InnovateTech Ltd.', + text: "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + }, + { + from: 'Sophia Turner', + relation: 'Project Manager at Digital Dynamics', + text: "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + }, + { + from: 'Ella Watson', + relation: 'Director of Engineering at FutureTech', + text: "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + }, + { + from: 'Oliver Jackson', + relation: 'HR Manager at TechFusion', + text: "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + }, + { + from: 'Sophia Brown', + relation: 'Product Owner at AgileSoft', + text: "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + }, + { + from: 'Ethan Green', + relation: 'CTO at Innovate Solutions', + text: "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + }, + { + from: 'Mia Davis', + relation: 'Lead Developer at CloudTech', + text: "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + }, + { + from: 'Noah Wilson', + relation: 'Manager at DataTech Solutions', + text: "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + }, + { + from: 'Ava Miller', + relation: 'CTO at InnovateTech Ltd.', + text: "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + }, + { + from: 'Sophia Turner', + relation: 'Project Manager at Digital Dynamics', + text: "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + }, + { + from: 'Ella Watson', + relation: 'Director of Engineering at FutureTech', + text: "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + }, + { + from: 'Oliver Jackson', + relation: 'HR Manager at TechFusion', + text: "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + }, + { + from: 'Sophia Brown', + relation: 'Product Owner at AgileSoft', + text: "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + }, + { + from: 'Ethan Green', + relation: 'CTO at Innovate Solutions', + text: "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + }, + { + from: 'Mia Davis', + relation: 'Lead Developer at CloudTech', + text: "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + }, +]; + +const bootcampOptions = [ + 'Codesmith', + 'Le Wagon', + 'App Academy', + 'General Assembly', + 'Flatiron School', + 'Fullstack Academy', + 'Hack Reactor', + 'Coding Dojo', + 'Ironhack', + 'Thinkful', + 'BrainStation', + 'Lambda School', + 'The Tech Academy', + 'CareerFoundry', + 'Makers Academy', + 'Tech Elevator', + 'DevMountain', + 'Galvanize', + 'Nucamp', + 'Springboard', + 'Kenzie Academy', +]; + +const personBioOptions = [ + 'Passionate software engineer with a love for solving complex problems and building scalable applications.', + 'Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.', + 'Experienced in both frontend and backend development, with a focus on creating elegant and efficient solutions.', + 'Enthusiastic about open-source contributions and collaborating with diverse teams to deliver impactful projects.', + 'Driven by a curiosity for innovation and a commitment to delivering high-quality software solutions.', + 'Detail-oriented developer with a strong foundation in algorithms and data structures.', + 'Committed to writing clean, maintainable code that meets rigorous performance standards.', + 'Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.', + 'Adaptable problem solver who thrives in dynamic, fast-paced environments.', + "Passionate about building inclusive and accessible software that improves people's lives.", + 'Experienced in Agile methodologies, with a track record of delivering projects on time and within budget.', + 'Devoted to fostering a collaborative team environment and mentoring junior developers.', + 'Strong analytical thinker with a knack for troubleshooting and resolving complex technical issues.', + 'Proactive learner constantly exploring emerging technologies and trends in the software industry.', + 'Focused on creating seamless user experiences through intuitive interface design and interaction.', + 'Experienced in deploying and maintaining applications on cloud platforms like AWS and Azure.', + 'Passionate about leveraging data-driven insights to optimize software performance and user engagement.', + 'Dedicated to upholding best practices in software engineering, including testing, code reviews, and version control.', + 'Skilled in working with cross-functional teams to deliver innovative software solutions that exceed expectations.', + 'Experienced in building scalable microservices architectures and integrating third-party APIs.', + 'Adept at optimizing SQL and NoSQL databases for performance and scalability.', + 'Committed to ensuring software security and compliance with industry standards and regulations.', + 'Passionate about improving codebase efficiency through refactoring and performance tuning.', + 'Enthusiastic about exploring the intersection of technology and social impact.', + 'Skilled in UX/UI design principles, with a focus on creating intuitive and visually appealing interfaces.', + 'Proven ability to lead technical projects from inception to successful deployment and maintenance.', + 'Innovative thinker with a track record of proposing and implementing creative solutions to technical challenges.', + 'Advocate for diversity and inclusion in the tech industry, fostering a welcoming and supportive workplace culture.', + 'Experienced in international collaboration and remote work, with a strong appreciation for cultural diversity.', + 'Driven by a passion for problem-solving and a commitment to continuous professional development.', + 'Committed to ethical software development practices and promoting transparency in technology.', + 'Skilled in conducting technical workshops and seminars to share knowledge and mentor aspiring developers.', + 'Passionate about contributing to the tech community through open-source projects and knowledge sharing.', + 'Experienced in rapid prototyping and iterative development methodologies.', + 'Focused on delivering user-centric solutions that address real-world needs and challenges.', +]; + +const randomIndex = (arr) => Math.floor(Math.random() * arr.length); + +const createRandomCohort = () => { + return `${cohorts[randomIndex(cohorts)]} ${Math.floor(Math.random() * cohortNumRange)}`; +}; + +const createRandomDates = () => { + const rawDate = Date.now() - Math.floor(Math.random()) * 1000 * 60 * 60 * 24 * 365 * 10; + return [ + new Date(rawDate), + new Date(rawDate + Math.floor(Math.random() * 1000 * 60 * 60 * 24 * 365 * 4)), + ]; +}; + +const createRandomSkillArray = () => { + const randomSkills = []; + const randoNum = Math.floor(Math.random() * 20); + if (randoNum === 0) return randomSkills; + + for (let i = 0; i < randoNum; i++) { + const randoIndex = randomIndex(skillOptions); + + if (randomSkills.includes(skillOptions[randoIndex])) continue; + else randomSkills.push(skillOptions[randoIndex]); + } + + return randomSkills; +}; + +const createRandomPosition = () => { + return { + title: jobTitleOptions[randomIndex(jobTitleOptions)], + company: companyOptions[randomIndex(companyOptions)], + }; +}; + +const createPastPositions = () => { + const pastPositions = []; + const randoNum = Math.floor(Math.random() * 5); + if (randoNum === 0) return pastPositions; + for (let i = 0; i <= randoNum; i++) { + const dates = createRandomDates(); + pastPositions.push({ + ...createRandomPosition(), + startDate: dates[0], + endDate: dates[1], + }); + } + return pastPositions; +}; + +const createRandomEducation = () => { + const education = []; + const num = Math.floor(Math.random() * 4) + 1; + for (let i = 0; i < num; i++) { + const dates = createRandomDates(); + education.push({ + institution: collegeOptions[randomIndex(collegeOptions)], + degree: degreeOptions[randomIndex(degreeOptions)], + fieldOfStudy: fieldOfStudyOptions[randomIndex(fieldOfStudyOptions)], + startDate: dates[0], + endDate: dates[1], + }); + } + return education; +}; + +const createRandomProjects = () => { + const projects = []; + let numProjects = Math.floor(Math.random() * 5); + if (numProjects === 0) return projects; + for (let i = 0; i <= numProjects; i++) { + projects.push(projectOptions[randomIndex(projectOptions)]); + } + return projects; +}; + +const createTestimonials = () => { + const testimonials = []; + const numTestimonials = Math.floor(Math.random() * 5); + if (numTestimonials === 0) return testimonials; + for (let i = 0; i <= numTestimonials; i++) { + testimonials.push(testimonialOptions[randomIndex(testimonialOptions)]); + } + return testimonials; +}; + +const generateProfile = (userDoc) => { + return { + user: userDoc._id, + firstName: userDoc.firstName, + lastName: userDoc.lastName, + profilePhoto: userDoc.profilePic, + cohort: createRandomCohort(), + graduationYear: createRandomDates()[0].getUTCFullYear(), + email: userDoc.email, + linkedInProfile: `https://www.linkedin.com/in/${userDoc.firstName + '-' + userDoc.lastName + '-fake'}`, + professionalSummary: professionalSummaryOptions[randomIndex(professionalSummaryOptions)], + skills: createRandomSkillArray(), + specializations: createRandomSkillArray(), + careerInformation: { + currentPosition: createRandomPosition(), + pastPositions: createPastPositions(), + }, + education: createRandomEducation(), + projects: createRandomProjects(), + personalBio: personBioOptions[randomIndex(personBioOptions)], + testimonials: createTestimonials(), + socialMediaLinks: { + twitter: + Math.random() > 0.5 + ? `https://x.com/${userDoc.firstName + '-' + userDoc.lastName}-fake` + : undefined, + blog: + Math.random() > 0.5 + ? `https://www.${userDoc.firstName + '-' + userDoc.lastName}-fake-blog.com` + : undefined, + other: + Math.random() > 0.5 + ? [`https://www.instagram.com/${userDoc.firstName + '-' + userDoc.lastName}-fake`] + : undefined, + }, + availabilityForNetworking: Math.random() > 0.4 ? true : false, + bootcampExperience: bootcampOptions[randomIndex(bootcampOptions)], + }; +}; + +const profiles = users.map((u) => generateProfile(u)); + +db.profiles.insertMany(profiles); + +console.log('๐Ÿ Seeding Profiles Collection Successful!'); + +console.log('๐ŸŒฑ Seeding Threads Collection...'); + +const threadOptions = [ + { + title: 'Best IDEs for Web Development?', + content: + "I'm exploring different IDE options for web development. What are your recommendations and why? Looking for suggestions on both free and paid IDEs.", + }, + { + title: 'How to Improve Code Review Process?', + content: + "Seeking advice on optimizing our team's code review process. What tools and practices do you use to ensure effective code reviews and maintain code quality?", + }, + { + title: 'Career Advice: Frontend vs Backend?', + content: + 'Considering specializing in either frontend or backend development. What are the pros and cons of each? Which path offers better career opportunities?', + }, + { + title: 'Introduction to Docker Containers', + content: + "New to Docker and containers? Let's discuss the basics, benefits, and practical applications of Docker in software development and deployment.", + }, + { + title: 'JavaScript Frameworks Comparison', + content: + 'Comparing popular JavaScript frameworks like React, Angular, and Vue.js. Share your experiences, strengths, and weaknesses of each framework.', + }, + { + title: 'Tips for Effective Debugging', + content: + 'Share your best practices and tools for debugging complex issues in software development. How do you approach troubleshooting and resolving bugs?', + }, + { + title: 'Remote Work: Challenges and Solutions', + content: + 'Discussing the challenges faced while working remotely and sharing strategies to stay productive, maintain communication, and foster team collaboration.', + }, + { + title: 'Machine Learning for Beginners', + content: + "New to machine learning? Let's explore foundational concepts, resources, and hands-on tutorials to get started with machine learning projects.", + }, + { + title: 'Continuous Integration and Deployment (CI/CD)', + content: + 'Exploring CI/CD pipelines, best practices, and tools for automating software delivery processes. Share your experiences and tips for implementing CI/CD.', + }, + { + title: 'Interview Preparation Tips', + content: + 'Preparing for software engineering interviews? Discussing strategies, common interview questions, and resources to ace technical interviews.', + }, + { + title: 'Frontend Performance Optimization Techniques', + content: + 'Exploring strategies and tools to optimize frontend performance. Share tips on reducing page load times, improving rendering efficiency, and optimizing assets.', + }, + { + title: 'Backend Architecture Best Practices', + content: + 'Discussing best practices for designing scalable and resilient backend architectures. How do you ensure high availability and fault tolerance?', + }, + { + title: 'Version Control: Git Tips and Tricks', + content: + 'Share your favorite Git commands, workflows, and best practices for version control. How do you handle branching, merging, and code collaboration?', + }, + { + title: 'Agile Development: Scrum vs Kanban', + content: + 'Comparing Scrum and Kanban methodologies for Agile software development. Which approach works better for your team and why?', + }, + { + title: 'Python vs Java: Which is Better for Backend Development?', + content: + 'Debating the pros and cons of Python and Java for backend development. Share your experiences and preferences in choosing a backend programming language.', + }, + { + title: 'Tips for Building Scalable Microservices', + content: + 'Discussing architectural patterns, communication protocols, and deployment strategies for building scalable microservices architectures.', + }, + { + title: 'Data Structures and Algorithms: Best Resources', + content: + 'Sharing recommended resources, books, and online courses for learning data structures and algorithms. What are your favorite learning materials?', + }, + { + title: 'Web Security: Best Practices and Tools', + content: + 'Discussing security vulnerabilities, best practices, and tools for securing web applications. How do you protect against common web attacks?', + }, + { + title: 'UX/UI Design Principles for Developers', + content: + 'Exploring UX/UI design principles and best practices for developers. How can developers contribute to creating user-friendly and visually appealing interfaces?', + }, + { + title: 'Cloud Computing: AWS vs Azure', + content: + 'Comparing Amazon Web Services (AWS) and Microsoft Azure cloud platforms. Which platform do you prefer for hosting and deploying your applications?', + }, + { + title: 'Blockchain Technology: Applications and Use Cases', + content: + 'Exploring real-world applications and use cases of blockchain technology beyond cryptocurrencies. How is blockchain transforming industries?', + }, + { + title: 'Artificial Intelligence: Ethics and Implications', + content: + 'Discussing ethical considerations and societal implications of AI technologies. How can we ensure responsible AI development and deployment?', + }, + { + title: 'Mobile App Development Trends for 2024', + content: + 'Predicting and discussing emerging trends and technologies in mobile app development for the upcoming year. What trends are shaping the mobile app landscape?', + }, + { + title: 'Open Source Contributions: Getting Started', + content: + 'Tips and advice for beginners on how to get started with contributing to open-source projects. What are the benefits of open-source contributions?', + }, + { + title: 'Big Data Analytics: Tools and Techniques', + content: + 'Exploring tools, frameworks, and techniques for analyzing and deriving insights from large datasets. How do you handle big data challenges?', + }, + { + title: 'Tech Career Transition: Tips and Success Stories', + content: + 'Sharing success stories, tips, and advice for transitioning into a tech career from a non-technical background. How did you make the leap?', + }, + { + title: 'Cybersecurity Threats: Prevention and Response', + content: + 'Discussing common cybersecurity threats and strategies for prevention and incident response. How do you secure your applications and data?', + }, + { + title: 'Cloud Native Applications: Architecture and Benefits', + content: + 'Exploring the architecture and benefits of cloud-native applications. How do you design and deploy applications for cloud environments?', + }, + { + title: 'AR/VR Development: Tools and Platforms', + content: + 'Discussing tools, platforms, and development techniques for creating augmented reality (AR) and virtual reality (VR) applications.', + }, + { + title: 'Data Privacy Regulations: Compliance Challenges', + content: + 'Navigating data privacy regulations and compliance challenges in software development. How do you ensure GDPR and CCPA compliance?', + }, + { + title: 'Full Stack Development: Best Practices', + content: + 'Best practices, tools, and frameworks for mastering full-stack development. How do you balance frontend and backend development responsibilities?', + }, + { + title: 'Serverless Computing: Benefits and Use Cases', + content: + 'Exploring the benefits, use cases, and challenges of serverless computing architectures. How do you leverage serverless for scalable applications?', + }, + { + title: 'Tech Startups: Lessons Learned and Tips', + content: + 'Sharing lessons learned, success stories, and practical tips for launching and scaling tech startups. What challenges did you face?', + }, + { + title: 'Open Source Projects: Contributions and Impact', + content: + 'Discussing the impact of open-source projects on the tech industry and society. How can open-source initiatives drive innovation and collaboration?', + }, + { + title: 'Software Testing: Strategies and Automation', + content: + 'Strategies, tools, and best practices for software testing and test automation. How do you ensure comprehensive test coverage and quality?', + }, + { + title: 'API Design: Best Practices and Guidelines', + content: + 'Exploring best practices, design patterns, and guidelines for designing robust and developer-friendly APIs. What makes a good API?', + }, + { + title: 'Tech Conferences: Recommendations and Reviews', + content: + 'Discussing upcoming tech conferences, workshops, and events. Share your recommendations and reviews of past conferences.', + }, + { + title: 'Software Development Methodologies: Agile vs Waterfall', + content: + 'Comparing Agile and Waterfall methodologies for software development. Which approach suits your project and team dynamics?', + }, + { + title: 'AI in Healthcare: Applications and Innovations', + content: + 'Exploring AI applications and innovations in the healthcare industry. How is AI transforming patient care and medical research?', + }, + { + title: 'Code Quality Metrics and Tools', + content: + 'Measuring code quality and implementing metrics. Discussing tools and practices for maintaining high-quality codebases.', + }, + { + title: 'Blockchain Development Platforms: Ethereum vs Hyperledger', + content: + 'Comparing Ethereum and Hyperledger as blockchain development platforms. Which platform is suitable for different use cases?', + }, + { + title: 'Tech Diversity and Inclusion: Initiatives and Impact', + content: + 'Discussing initiatives and strategies for promoting diversity and inclusion in the tech industry. How can we create more inclusive workplaces?', + }, + { + title: 'AI Ethics: Bias, Accountability, and Transparency', + content: + 'Exploring ethical considerations in AI development, including bias mitigation, accountability frameworks, and transparency practices.', + }, + { + title: 'Game Development: Engines, Tools, and Challenges', + content: + 'Discussing game development engines, tools, and challenges. Share your experiences in creating interactive and immersive gaming experiences.', + }, +]; + +const createThreads = (users, forums, numThreads) => { + const threads = []; + for (let i = 0; i <= numThreads; i++) { + const dates = Math.random() > 0.3 ? createRandomDates() : [undefined, undefined]; + threads.push({ + ...threadOptions[randomIndex(threadOptions)], + user: users[randomIndex(users)]._id, + forum: forums[randomIndex(forums)]._id, + createdAt: dates[0], + updatedAt: dates[1], + }); + } + return threads; +}; + +const mockThreads = createThreads(users, forums, 30); + +db.threads.insertMany(mockThreads); + +console.log('๐Ÿ Seeding Threads Collection Successful!'); + +console.log('๐ŸŒฑ Seeding Posts Collection...'); + +const postContentOptions = [ + "I'm new to web development. Can anyone recommend a good beginner-friendly JavaScript framework?", + 'What are your favorite VS Code extensions for productivity? Looking to optimize my workflow.', + 'Discussing the pros and cons of using NoSQL databases like MongoDB versus traditional SQL databases.', + 'How do you handle software architecture design in agile development? Share your strategies and experiences.', + 'Exploring the role of microservices in modern software architectures. What are the benefits and challenges?', + 'Share your experiences with continuous integration and deployment tools like Jenkins and GitLab CI/CD.', + 'Tips for optimizing frontend performance in large-scale web applications? What techniques do you use?', + 'How important is unit testing in your development workflow? Discussing the impact on code quality.', + 'Seeking advice on transitioning from frontend to full-stack development. What skills should I focus on?', + 'Comparing popular cloud providers for hosting web applications: AWS, Azure, and Google Cloud Platform.', + 'Discussing the best practices for securing RESTful APIs. How do you protect against common vulnerabilities?', + 'Share your insights on DevOps culture and its impact on software development teams.', + 'What are the essential skills for a successful software engineering career in the next decade?', + 'Debating the future of AI and its potential impact on industries like healthcare and finance.', + 'Exploring the benefits of using TypeScript in large-scale JavaScript applications. Is it worth the learning curve?', + 'How do you approach code reviews in your team? Share your process for constructive feedback and improvement.', + 'Discussing the adoption of serverless architecture in enterprise applications. What are the use cases?', + 'Seeking recommendations for online platforms or courses to learn data science and machine learning.', + 'What are your favorite design patterns for building scalable backend systems? Discussing architecture.', + 'Tips for building responsive and accessible user interfaces in web development. Best practices?', + 'Exploring the challenges of scaling applications globally. How do you design for international users?', + 'How can blockchain technology revolutionize industries beyond finance? Discussing real-world applications.', + 'Share your experiences with remote team collaboration tools like Slack, Zoom, and Microsoft Teams.', + 'What are the key factors to consider when choosing a tech stack for a new startup project?', + 'Discussing the evolution of programming languages and their impact on software development practices.', + 'Tips for managing technical debt in software projects. How do you prioritize and refactor?', + 'Seeking advice on transitioning from academia to industry as a software engineer. What are the challenges?', + 'Exploring the role of AI in enhancing cybersecurity measures. How can AI algorithms detect threats?', + 'How do you approach refactoring legacy codebases? Share your strategies for modernization.', + 'Discussing the benefits of adopting agile methodologies in non-software development teams.', + 'Share your favorite resources for staying updated with the latest tech trends and industry news.', + 'How can developers contribute to open-source projects? Discussing the impact of community contributions.', + 'Tips for effective project management in software development teams. How do you ensure deadlines are met?', + 'Seeking advice on preparing for technical interviews at top tech companies. What are common interview questions?', + 'Discussing the ethics of AI in decision-making processes. How can we ensure fairness and accountability?', + 'What are the emerging trends in mobile app development? Discussing technologies like Flutter and React Native.', + 'How do you balance feature development with technical debt reduction in agile development?', + 'Exploring the challenges of implementing AI-driven chatbots in customer service applications.', + 'What are your strategies for improving team productivity and motivation in remote work environments?', + 'Tips for building scalable and maintainable frontend architectures. How do you structure your codebase?', + 'Seeking advice on building a personal brand as a software engineer. How can networking help career growth?', + 'Discussing the impact of IoT on everyday life and its implications for software developers.', + 'How can AI and machine learning be leveraged to enhance personalized user experiences in applications?', + 'Exploring the benefits of adopting a microservices architecture over monolithic applications.', + 'What are your thoughts on the future of cybersecurity in the era of AI and automation?', + 'Tips for optimizing database performance in high-traffic web applications. Best practices?', + 'Discussing the challenges and benefits of implementing blockchain technology in supply chain management.', + 'How do you approach designing intuitive user interfaces? Share your UX/UI design principles.', +]; + +const createPosts = (users, threads, numPosts) => { + const posts = []; + for (let i = 0; i <= numPosts; i++) { + const dates = Math.random() > 0.6 ? createRandomDates() : [undefined, undefined]; + posts.push({ + thread: threads[randomIndex(threads)]._id, + user: users[randomIndex(users)]._id, + content: postContentOptions[randomIndex(postContentOptions)], + createdAt: dates[0], + updatedAt: dates[1], + }); + } + return posts; +}; + +const threads = db.threads.find().toArray(); + +const mockPosts = createPosts(users, threads, 50); + +db.posts.insertMany(mockPosts); + +console.log('๐Ÿ Seeding Posts Collection Successful!'); diff --git a/scripts/db/seed.sh b/scripts/db/seed.sh new file mode 100644 index 00000000..de47bf46 --- /dev/null +++ b/scripts/db/seed.sh @@ -0,0 +1,86 @@ +#!/usr/bin/bash + +# Color variables +RED="\033[1;3;31m" +ORANGE="\033[1;3;38;5;208m" +GREEN="\033[1;3;32m" +CORNBLUE="\033[1;3;38;5;69m" +NC='\033[0m' # No color + +echo -e "\n${GREEN}Seeding MongoDB with Dev Data${NC}" + +MONGO_USER=root +MONGO_PWD=testpass +MONGO_HOST=ch-mongo-dev +MONGO_DB="ch-testdb" +MONGO_URI="mongodb://${MONGO_HOST}:27017" +IMPORT_STATUS=0 + +# echo -e "\n${CORNBLUE}Seeding Alumni Collection...${NC}\n" +# # mongoimport --username root --password testpass --uri ${MONGO_URI} --collection Alumni --type json --file ./usr/src/data/MOCK_ALUMNI.json +# mongoimport --drop --collection=Alumni ${MONGO_URI} /tmp/data/MOCK_ALUMNI.json +# IMPORT_STATUS=$? + +# if [[ $IMPORT_STATUS != 0 ]]; then +# echo -e "\n${RED}Alumni seeding failed!${NC}\n" +# exit 1 +# fi + +# echo -e "\n${CORNBLUE}Seeding GraduationInvitations Collection...${NC}\n" +# mongoimport --username $MONGO_USER --password $MONGO_PWD --uri $MONGO_URI --collection GraduationInvitations --type json --file ./usr/src/data/MOCK_GRADUATION_INVITATIONS.json +# IMPORT_STATUS=$? +# if [[ $IMPORT_STATUS != 0 ]]; then +# echo -e "\n${RED}GraduationInvitations seeding failed!${NC}\n" +# exit 1 +# fi +echo -e "\n${CORNBLUE}JSON Directory: ${PWD}tmp/data/MOCK_USERS.json${NC}\n" + +echo -e "\n${CORNBLUE}Seeding Users Collection...${NC}\n" +# mongoimport --username $MONGO_USER --password $MONGO_PWD --uri $MONGO_URI --collection Users --type json --file ./usr/src/data/MOCK_USERS.json +mongoimport --username "${MONGO_USER}" --password "${MONGO_PWD}" --uri "${MONGO_URI}" --authenticationDatabase "${MONGO_DB}" --db "${MONGO_DB}" --drop --collection Users --type json --file /tmp/data/MOCK_USERS.json +IMPORT_STATUS=$? + +echo -e "\n${RED} Users: IMPORT_STATUS = ${IMPORT_STATUS}${NC}\n" + +if [[ $IMPORT_STATUS != 0 ]]; then + echo -e "\n${RED}Users seeding failed!${NC}\n" + exit 1 +fi + +# echo -e "\n${CORNBLUE}Seeding Profiles Collection...${NC}\n" +# mongoimport --username $MONGO_USER --password $MONGO_PWD --uri $MONGO_URI --collection Profiles --type json --file ./usr/src/data/MOCK_PROFILES.json +# IMPORT_STATUS=$? +# if [[ $IMPORT_STATUS != 0 ]]; then +# echo -e "\n${RED}Profiles seeding failed!${NC}\n" +# exit 1 +# fi + +# echo -e "\n${CORNBLUE}Seeding Forums Collection...${NC}\n" +# mongoimport --username $MONGO_USER --password $MONGO_PWD --uri $MONGO_URI --collection Forums --type json --file ./usr/src/data/MOCK_FORUMS.json +# IMPORT_STATUS=$? +# if [[ $IMPORT_STATUS != 0 ]]; then +# echo -e "\n${RED}Forums seeding failed!${NC}\n" +# exit 1 +# fi + +# echo -e "\n${CORNBLUE}Seeding Threads Collection...${NC}\n" +# mongoimport --username $MONGO_USER --password $MONGO_PWD --uri $MONGO_URI --collection Threads --type json --file ./usr/src/data/MOCK_THREADS.json +# IMPORT_STATUS=$? +# if [[ $IMPORT_STATUS != 0 ]]; then +# echo -e "\n${RED}Threads seeding failed!${NC}\n" +# exit 1 +# fi + +# echo -e "\n${CORNBLUE}Seeding Posts Collection...${NC}\n" +# mongoimport --username $MONGO_USER --password $MONGO_PWD --uri $MONGO_URI --collection Posts --type json --file ./usr/src/data/MOCK_POSTS.json +# IMPORT_STATUS=$? +# if [[ $IMPORT_STATUS != 0 ]]; then +# echo -e "\n${RED}Posts seeding failed!${NC}\n" +# exit 1 +# fi + +echo -e "\n${ORANGE}Muting logs for ch-mongo-dev...${NC}\n" +mongod --quiet --logpath /dev/null + +echo -e "\n${GREEN}Seeding Complete! Have fun!${NC}\n" +exit 0 \ No newline at end of file From 56c01cc2caae66bc3e66e499ffe5e47a2bd79e52 Mon Sep 17 00:00:00 2001 From: seantokuzo Date: Fri, 14 Jun 2024 17:32:20 -0700 Subject: [PATCH 03/25] delete all temp data generation files --- .../db/generateMockData/generateMockData.ts | 95 - .../generateMockData/generateMockData_OLD.ts | 290 - scripts/db/generateMockData/mockAlumni.ts | 17749 -------------- scripts/db/generateMockData/mockForums.ts | 52 - .../mockGraduateInvitation.ts | 902 - scripts/db/generateMockData/mockUsers.ts | 710 - scripts/db/generateMockData/options.ts | 1285 - scripts/db/mockData/MOCK_ALUMNI.json | 1 - scripts/db/mockData/MOCK_FORUMS.json | 1 - .../mockData/MOCK_GRADUATE_INVITATIONS.json | 1 - scripts/db/mockData/MOCK_USERS.json | 709 - scripts/db/mongoInit/mongo-init.js | 22 - scripts/db/mongoInit/seed-base-collections.js | 19580 ---------------- .../mongoInit/seed-reference-collections.js | 1350 -- scripts/db/seed.sh | 86 - 15 files changed, 42833 deletions(-) delete mode 100644 scripts/db/generateMockData/generateMockData.ts delete mode 100644 scripts/db/generateMockData/generateMockData_OLD.ts delete mode 100644 scripts/db/generateMockData/mockAlumni.ts delete mode 100644 scripts/db/generateMockData/mockForums.ts delete mode 100644 scripts/db/generateMockData/mockGraduateInvitation.ts delete mode 100644 scripts/db/generateMockData/mockUsers.ts delete mode 100644 scripts/db/generateMockData/options.ts delete mode 100644 scripts/db/mockData/MOCK_ALUMNI.json delete mode 100644 scripts/db/mockData/MOCK_FORUMS.json delete mode 100644 scripts/db/mockData/MOCK_GRADUATE_INVITATIONS.json delete mode 100644 scripts/db/mockData/MOCK_USERS.json delete mode 100644 scripts/db/mongoInit/mongo-init.js delete mode 100644 scripts/db/mongoInit/seed-base-collections.js delete mode 100644 scripts/db/mongoInit/seed-reference-collections.js delete mode 100644 scripts/db/seed.sh diff --git a/scripts/db/generateMockData/generateMockData.ts b/scripts/db/generateMockData/generateMockData.ts deleted file mode 100644 index f99d245f..00000000 --- a/scripts/db/generateMockData/generateMockData.ts +++ /dev/null @@ -1,95 +0,0 @@ -import fs from 'fs'; -import path from 'path'; -import bcrypt from 'bcryptjs'; -import { mockUsers } from './mockUsers'; -import { mockAlumni } from './mockAlumni'; -import { mockForums } from './mockForums'; -import { mockGradInvites } from './mockGraduateInvitation'; -import { cohorts, cohortNumRange, cityOptions, profilePicOptions } from './options'; - -const randomIndex = (arr: any[]): number => Math.floor(Math.random() * arr.length); - -const createRandomCohort = () => { - return `${cohorts[randomIndex(cohorts)]} ${Math.floor(Math.random() * cohortNumRange)}`; -}; - -const mockGraduateInvitations = mockGradInvites.map((doc) => ({ - ...doc, - cohort: createRandomCohort(), -})); - -const getRandomCities = (num: number) => { - let cities: string[] = []; - for (let i = 0; i <= num; i++) { - const randoIndex = randomIndex(cityOptions); - if (cities.includes(cityOptions[randoIndex])) continue; - cities.push(cityOptions[randoIndex]); - } - return cities; -}; - -const mockAlumniWithCities = mockAlumni.map((alum) => { - return { - ...alum, - cities: getRandomCities(Math.floor(Math.random() * 4)), - }; -}); - -const createDocs = async (name: string, mockData: any) => { - const label = name[0] + name.slice(1).toLowerCase(); - try { - console.log(`โœ๏ธ Writing ${label} mock data to JSON...`); - await fs.promises.writeFile( - path.join(__dirname, `../mockData/MOCK_${name}.json`), - JSON.stringify(mockData), - 'utf8', - ); - console.log(`๐Ÿš€ MOCK_${name}.json written`); - } catch (error) { - console.log(error); - process.exit(1); - } -}; - -interface User { - firstName: string; - lastName: string; - email: string; - profilePic: string; - password: string; -} - -const mockUsersHashedPassword = mockUsers.map((user) => { - const salt = bcrypt.genSaltSync(10); - const hashedPass = bcrypt.hashSync(user.password, salt); - return { - ...user, - password: hashedPass, - }; -}); - -const finalMockUsers = mockUsersHashedPassword.map((user) => { - if (user.email === 'tester@codehammers.com') return user; - return { - ...user, - profilePic: profilePicOptions[randomIndex(profilePicOptions)], - }; -}); - -const generateData = async () => { - try { - console.log('โšก๏ธ Generating JSON data โšก๏ธ'); - await createDocs('ALUMNI', mockAlumniWithCities); - await createDocs('GRADUATE_INVITATIONS', mockGraduateInvitations); - await createDocs('USERS', finalMockUsers); - await createDocs('FORUMS', mockForums); - console.log('๐Ÿ† Mock data written to JSON'); - } catch (err) { - console.log(err); - process.exit(1); - } - - process.exit(0); -}; - -generateData(); diff --git a/scripts/db/generateMockData/generateMockData_OLD.ts b/scripts/db/generateMockData/generateMockData_OLD.ts deleted file mode 100644 index f27567ec..00000000 --- a/scripts/db/generateMockData/generateMockData_OLD.ts +++ /dev/null @@ -1,290 +0,0 @@ -import fs from 'fs'; -import path from 'path'; -import mongoose, { Model, mongo } from 'mongoose'; -import User from '../../../server/models/userModel'; -import Alumni from '../../../server/models/alumniModel'; -import Forum from '../../../server/models/forumModel'; -import GraduateInvitation from '../../../server/models/graduateInvitationModel'; -import Profile from '../../../server/models/profileModel'; -import Thread from '../../../server/models/threadModel'; -import Post from '../../../server/models/postModel'; -import { mockUsers } from './mockUsers'; -import { mockAlumni } from './mockAlumni'; -import { mockForums } from './mockForums'; -import { mockGradInvites } from './mockGraduateInvitation'; -import { - cohorts, - cohortNumRange, - skillOptions, - jobTitleOptions, - companyOptions, - collegeOptions, - degreeOptions, - fieldOfStudyOptions, - projectOptions, - testimonialOptions, - bootcampOptions, - professionalSummaryOptions, - personBioOptions, - threadOptions, - postContentOptions, -} from './options'; - -const randomIndex = (arr: any[]): number => Math.floor(Math.random() * arr.length); - -const createRandomCohort = () => { - return `${cohorts[randomIndex(cohorts)]} ${Math.floor(Math.random() * cohortNumRange)}`; -}; - -const mockGraduationInvitations = mockGradInvites.map((doc) => ({ - ...doc, - cohort: createRandomCohort(), -})); - -const createRandomSkillArray = (): string[] => { - const randomSkills: string[] = []; - const randoNum = Math.floor(Math.random() * 20); - if (randoNum === 0) return randomSkills; - - for (let i = 0; i < randoNum; i++) { - const randoIndex = randomIndex(skillOptions); - - if (randomSkills.includes(skillOptions[randoIndex])) continue; - else randomSkills.push(skillOptions[randoIndex]); - } - - return randomSkills; -}; - -const createRandomPosition = (): { title: string; company: string } => { - return { - title: jobTitleOptions[randomIndex(jobTitleOptions)], - company: companyOptions[randomIndex(companyOptions)], - }; -}; - -const createRandomDates = (): [Date, Date] => { - const rawDate = Date.now() - Math.floor(Math.random()) * 1000 * 60 * 60 * 24 * 365 * 10; - return [ - new Date(rawDate), - new Date(rawDate + Math.floor(Math.random() * 1000 * 60 * 60 * 24 * 365 * 4)), - ]; -}; - -const createPastPositions = () => { - const pastPositions: { title: string; company: string; startDate: Date; endDate: Date }[] = []; - const randoNum = Math.floor(Math.random() * 5); - if (randoNum === 0) return pastPositions; - for (let i = 0; i <= randoNum; i++) { - const dates = createRandomDates(); - pastPositions.push({ - ...createRandomPosition(), - startDate: dates[0], - endDate: dates[1], - }); - } - return pastPositions; -}; - -const createRandomEducation = () => { - const education: { - institution: string; - degree: string; - fieldOfStudy: string; - startDate: Date; - endDate: Date; - }[] = []; - const num = Math.floor(Math.random() * 4) + 1; - for (let i = 0; i < num; i++) { - const dates = createRandomDates(); - education.push({ - institution: collegeOptions[randomIndex(collegeOptions)], - degree: degreeOptions[randomIndex(degreeOptions)], - fieldOfStudy: fieldOfStudyOptions[randomIndex(fieldOfStudyOptions)], - startDate: dates[0], - endDate: dates[1], - }); - } - return education; -}; - -const createRandomProjects = () => { - const projects: { name: string; description: string; link: string }[] = []; - let numProjects = Math.floor(Math.random() * 5); - if (numProjects === 0) return projects; - for (let i = 0; i <= numProjects; i++) { - projects.push(projectOptions[randomIndex(projectOptions)]); - } - return projects; -}; - -const createTestimonials = () => { - const testimonials: { - from: String; - relation: String; - text: String; - }[] = []; - const numTestimonials = Math.floor(Math.random() * 5); - if (numTestimonials === 0) return testimonials; - for (let i = 0; i <= numTestimonials; i++) { - testimonials.push(testimonialOptions[randomIndex(testimonialOptions)]); - } - return testimonials; -}; - -const generateProfile = (userDoc: any) => { - return { - user: userDoc._id, - firstName: userDoc.firstName, - lastName: userDoc.lastName, - profilePhoto: userDoc.profilePic, - cohort: createRandomCohort(), - graduationYear: createRandomDates()[0].getUTCFullYear(), - email: userDoc.email, - linkedInProfile: `https://www.linkedin.com/in/${userDoc.firstName + '-' + userDoc.lastName + '-fake'}`, - professionalSummary: professionalSummaryOptions[randomIndex(professionalSummaryOptions)], - skills: createRandomSkillArray(), - specializations: createRandomSkillArray(), - careerInformation: { - currentPosition: createRandomPosition(), - pastPositions: createPastPositions(), - }, - education: createRandomEducation(), - projects: createRandomProjects(), - personalBio: personBioOptions[randomIndex(personBioOptions)], - testimonials: createTestimonials(), - socialMediaLinks: { - twitter: - Math.random() > 0.5 - ? `https://x.com/${userDoc.firstName + '-' + userDoc.lastName}-fake` - : undefined, - blog: - Math.random() > 0.5 - ? `https://www.${userDoc.firstName + '-' + userDoc.lastName}-fake-blog.com` - : undefined, - other: - Math.random() > 0.5 - ? [`https://www.instagram.com/${userDoc.firstName + '-' + userDoc.lastName}-fake`] - : undefined, - }, - availabilityForNetworking: Math.random() > 0.4 ? true : false, - bootcampExperience: bootcampOptions[randomIndex(bootcampOptions)], - }; -}; - -const createThreads = ( - users: mongoose.Document[], - forums: mongoose.Document[], - numThreads: number, -) => { - const threads: { - user: string; - forum: string; - title: string; - content: string; - createdAt: Date | undefined; - updatedAt: Date | undefined; - }[] = []; - for (let i = 0; i <= numThreads; i++) { - const dates = Math.random() > 0.6 ? createRandomDates() : [undefined, undefined]; - threads.push({ - ...threadOptions[randomIndex(threadOptions)], - user: users[randomIndex(users)]._id as string, - forum: forums[randomIndex(forums)]._id as string, - createdAt: dates[0], - updatedAt: dates[1], - }); - } - return threads; -}; - -const createPosts = ( - users: mongoose.Document[], - threads: mongoose.Document[], - numPosts: number, -) => { - const posts: { - thread: string; - user: string; - content: string; - createdAt: Date | undefined; - updatedAt: Date | undefined; - }[] = []; - for (let i = 0; i <= numPosts; i++) { - const dates = Math.random() > 0.6 ? createRandomDates() : [undefined, undefined]; - posts.push({ - thread: threads[randomIndex(threads)]._id as string, - user: users[randomIndex(users)]._id as string, - content: postContentOptions[randomIndex(postContentOptions)] as string, - createdAt: dates[0], - updatedAt: dates[1], - }); - } - return posts; -}; - -const createDocs = async (name: string, Model: typeof mongoose.Model, mockData: any) => { - const label = name[0] + name.slice(1).toLowerCase(); - try { - console.log(`Creating ${label}...`); - const docs = await Model.create(mockData); - console.log(`๐Ÿ’ฅ ${label} documents created`); - - console.log(`โœ๏ธ Writing ${label} Documents to JSON...`); - await fs.promises.writeFile( - path.join(__dirname, `/data/MOCK_${name}.json`), - JSON.stringify(docs), - 'utf8', - ); - console.log(`๐Ÿš€ MOCK_${name}.json written`); - - return docs; - } catch (error) { - console.log(error); - process.exit(1); - } -}; - -const generateData = async () => { - try { - console.log('Connecting to mongo container...'); - await mongoose.connect('mongodb://ch-mongo-dev:27017/ch-testdb'); - console.log('๐Ÿƒ Connected to MongoDB container'); - - console.log('Clearing out DB...'); - const collections = await mongoose.connection.db.collections(); - for (let collection of collections) { - await collection.deleteMany({}); - } - console.log('DB starting fresh ๐ŸŒง๏ธ'); - - await createDocs('ALUMNI', Alumni, mockAlumni); - await createDocs('GRADUATION_INVITATIONS', GraduateInvitation, mockGraduationInvitations); - const users = (await createDocs('USERS', User, mockUsers)) as mongoose.Document[]; - const forums = (await createDocs('FORUMS', Forum, mockForums)) as mongoose.Document[]; - - console.log('๐Ÿ› ๏ธ Generating profiles tied to users'); - const mockProfiles = users.map((user) => generateProfile(user)); - await createDocs('PROFILES', Profile, mockProfiles); - - console.log('๐Ÿ› ๏ธ Generating threads tied to user and forum'); - const mockThreads = createThreads(users, forums, 30); - const threads = await createDocs('THREADS', Thread, mockThreads); - - console.log('๐Ÿ› ๏ธ Generating posts tied to user and thread'); - const mockPosts = createPosts(users, threads, 50); - await createDocs('POSTS', Post, mockPosts); - - console.log('๐Ÿ† Mock data seeded in DB'); - console.log('Closing connection'); - mongoose.connection.close(); - } catch (err) { - console.log(err); - mongoose.connection.close(); - process.exit(1); - } - - process.exit(0); -}; - -generateData(); diff --git a/scripts/db/generateMockData/mockAlumni.ts b/scripts/db/generateMockData/mockAlumni.ts deleted file mode 100644 index de1074cd..00000000 --- a/scripts/db/generateMockData/mockAlumni.ts +++ /dev/null @@ -1,17749 +0,0 @@ -export const mockAlumni = [ - { - company: '1-800 Flowers', - name: 'Daniel Reilley', - email: 'dannyreilley@gmail.com', - linkedIn: 'https://www.linkedin.com/in/daniel-reilley/', - campus: 'LA', - cohort: '45', - jobTitle: 'Full-Stack Application Developer', - industry: 'Retail', - cities: [], - }, - { - company: '1Password', - name: 'William Quan Nguyen', - email: 'william.nguyen202103@gmail.com', - linkedIn: 'https://www.linkedin.com/in/william-nguyen202103/', - campus: 'PTRI', - cohort: '10', - jobTitle: 'Software Engineer intern', - industry: 'Security/Data Privacy', - cities: [], - }, - { - company: '1StopBedrooms', - name: 'David Yedid', - email: 'diyedid@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yedid/', - campus: 'NYC', - cohort: '15', - jobTitle: 'VP, Projects (working under CTO); and General Counsel', - industry: 'E-Commerce', - cities: [], - }, - { - company: '1upHealth', - name: 'Robleh Farah', - email: 'farahrobleh1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/farahrobleh', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer', - industry: 'Health Tech', - cities: [], - }, - { - company: '23andMe', - name: 'Jiwon Chung', - email: 'jiwon.chung07@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jchung07/', - campus: 'LA', - cohort: '48', - jobTitle: 'Software Engineer', - industry: 'Biotech', - cities: [], - }, - { - company: '2U', - name: 'Rebecca Shesser', - email: 'rebeccashesser@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rebeccashesser/', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: '98point6', - name: 'Avi Kerson', - email: 'avitacos@gmail.com', - linkedIn: 'https://www.linkedin.com/in/avi-kerson/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'AAA (Club Labs)', - name: 'Michael Chan', - email: 'mckchan13@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael-ck-chan/', - campus: 'PTRI', - cohort: '5', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: [], - }, - { - company: 'Aavia', - name: 'Wayland SIngh', - email: 'wmsingh@ucdavis.edu', - linkedIn: 'https://www.linkedin.com/in/wayland-singh/', - campus: 'NYOI', - cohort: '4', - jobTitle: 'Backend Engineer', - industry: 'Healthtech/Healthcare', - cities: [], - }, - { - company: 'Abstract', - name: 'Tyler Kneidl', - email: 'tskneidl@gmail.com', - linkedIn: 'https://www.LinkedIn.com/in/tylerkneidl', - campus: 'NYC', - cohort: '25', - jobTitle: 'Full Stack Engineer', - industry: 'Software Development', - cities: [], - }, - { - company: 'Accenture', - name: 'Adrian Reczek', - email: 'adrianwreczek@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adrian-reczek/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Full Stack Software Engineer, Senior Analyst', - industry: 'Consulting', - cities: [], - }, - { - company: 'Accenture', - name: 'Colin Roemer', - email: 'colin.roemer@gmail.com', - linkedIn: 'https://www.linkedin.com/in/colinroemer/', - campus: 'LA', - cohort: '23', - jobTitle: 'Node Microservices Engineer', - industry: '', - cities: [], - }, - { - company: 'Accenture', - name: 'Shamilah Faria', - email: 'shamilahfaria@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shamilah-faria/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Software Artisan', - industry: 'Technology', - cities: [], - }, - { - company: 'Accrete AI', - name: 'Andrew Moy', - email: 'ajmoy35@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andrewmoy/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Full Stack Engineer', - industry: 'Artificial Intelligence', - cities: [], - }, - { - company: 'Acorns', - name: 'Zahaan Jasani', - email: 'zahaanjasani@gmail.com', - linkedIn: 'https://www.linkedin.com/in/zahaan-jasani-183913126/', - campus: 'LA', - cohort: '26', - jobTitle: 'Software Engineer II - Backend', - industry: 'Finance', - cities: [], - }, - { - company: 'Acronis', - name: 'Paul Kim', - email: 'Khyunwoo1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/paulyjkim', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: '"Data Protection/ Cyber Security"', - cities: [], - }, - { - company: 'ActiveCampaign', - name: 'Jacob Gillan', - email: 'jacobgillan9@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jacob-gillan/', - campus: 'FTRI / CTRI', - cohort: '15', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Actuate', - name: 'Braddon Murphy', - email: 'braddonmurphy@gmail.com', - linkedIn: 'https://www.linkedin.com/in/braddonlee/', - campus: 'FTRI', - cohort: '6', - jobTitle: 'Software Engineer', - industry: 'Security', - cities: [], - }, - { - company: 'Acuity Brands', - name: 'Logan Coale', - email: 'lcoale@gmail.com', - linkedIn: 'https://www.linkedin.com/in/logancoale/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Senior Software Engineer', - industry: 'Industrial Lighting/IoT', - cities: [], - }, - { - company: 'Adaptive Biotechnologies', - name: 'Conor Chinitz', - email: 'conorchinitz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/conorchinitz', - campus: 'FTRI', - cohort: '7', - jobTitle: 'Software Engineer III', - industry: 'Biotech', - cities: [], - }, - { - company: 'Adobe - Frame.io', - name: 'Anna Brakowska', - email: 'anna.brakowska91@gmail.com', - linkedIn: 'https://www.linkedin.com/in/anna-brakowska/', - campus: 'NYC', - cohort: '7', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Affirm', - name: 'Oscar Chan', - email: 'chanoscar0@gmail.com', - linkedIn: 'https://www.linkedin.com/in/occhan/', - campus: 'LA', - cohort: '26', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Age of Learning', - name: 'Brian Kwok', - email: 'brian.kwok15@gmail.com', - linkedIn: 'https://www.linkedin.com/in/briankwok15/', - campus: 'LA', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Education', - cities: [], - }, - { - company: 'Age of Learning', - name: 'Tre Hultzen', - email: 'hultzentre@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tre-hultzen/', - campus: 'LA', - cohort: '45', - jobTitle: 'Web Services Engineer', - industry: 'Education', - cities: [], - }, - { - company: 'Agua Caliente Casinos', - name: 'Mark Alexander', - email: 'markalexander72@gmail.com', - linkedIn: 'https://www.linkedin.com/in/marka772', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Web Developer', - industry: 'Gaming/eSports', - cities: [], - }, - { - company: 'AI Insurance', - name: 'James Edwards III', - email: 'j.olden.edwards@gmail.com', - linkedIn: 'https://www.linkedin.com/in/james-edwards-547307242/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Air Labs, Inc.', - name: 'Madison Brown', - email: 'mbrown3391@gmail.com', - linkedIn: 'https://www.linkedin.com/in/madisondbrown/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Sr. Software Engineer', - industry: 'Digital Asset Management', - cities: [], - }, - { - company: 'Airtable', - name: 'Clara Kim', - email: 'clarayhkim96@gmail.com', - linkedIn: 'https://www.linkedin.com/in/clarakm/', - campus: 'LA', - cohort: '34', - jobTitle: 'Full-stack Engineer', - industry: 'SaaS', - cities: [], - }, - { - company: 'Ajmadison', - name: 'Shlomo porges', - email: 'porges.s@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shlomoporges/', - campus: 'NYC', - cohort: '10', - jobTitle: 'DB architect', - industry: 'Appliances', - cities: [], - }, - { - company: 'Albert', - name: 'Will Bladon', - email: 'whbladon@gmail.com', - linkedIn: 'https://www.linkedin.com/in/will-bladon/', - campus: 'LA', - cohort: '40', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Alchemy', - name: 'Mathias Perfumo', - email: 'mathias.perfumo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mathiasperfumo', - campus: 'FTRI / CTRI', - cohort: '7', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Aledade', - name: 'Etana Kopin', - email: 'claws.33@gmail.com', - linkedIn: 'https://www.linkedin.com/in/egkopin/', - campus: 'PTRI', - cohort: '8', - jobTitle: 'Senior Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Alethix', - name: 'Mark Dolan', - email: 'mark.dolan3@gmail.com', - linkedIn: 'https://www.linkedin.com/in/markdolan30/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Frontend Software Engineer', - industry: 'Government services', - cities: [], - }, - { - company: 'Algolia', - name: 'Jacob Cole', - email: 'jacob.cole@gmail.com', - linkedIn: 'jacobcole34', - campus: 'PTRI', - cohort: '8', - jobTitle: 'Solutions Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Allen Institute', - name: 'Joseph Heffernan', - email: 'Interim17@gmail.com', - linkedIn: 'LinkedIn.com/in/Joseph-heffernan', - campus: 'LA / WCRI', - cohort: '53', - jobTitle: 'Software Engineer Front End', - industry: 'Biotech', - cities: [], - }, - { - company: 'Alleo.ai', - name: 'Rawan Al Bairouti', - email: 'rawan.bairouti@gmail.com', - linkedIn: 'linkedin.com/in/rawanbairouti', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Lead Developer ', - industry: 'Software Solutions/Developer Tools', - cities: [], - }, - { - company: 'Alloy', - name: 'Jacqueline Chang', - email: 'jqw.chang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jqw-chang/', - campus: 'NYC', - cohort: '7', - jobTitle: 'Software Engineer II', - industry: '', - cities: [], - }, - { - company: 'Alloy', - name: 'Sophie Nye', - email: 'sophie.nye@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gsophienye/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Software Engineer II', - industry: 'Fintech', - cities: [], - }, - { - company: 'Allure Bridal', - name: 'Patrick Reid', - email: 'patrickjreid@gmail.com', - linkedIn: 'https://www.linkedin.com/in/patrickjreid/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Senior Solutions Engineer', - industry: 'Retail', - cities: [], - }, - { - company: 'Ally', - name: 'Oleksii Hordiienko', - email: 'alex.hord@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/oleksii-hordiienko/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Sr. Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Ally', - name: 'Allison Jacobs', - email: 'allison-jacobs@outlook.com', - linkedIn: 'https://www.linkedin.com/in/allison-j', - campus: 'NYC', - cohort: '25', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Ally', - name: 'Connor Tracy', - email: 'Connortracy15@gmail.com', - linkedIn: 'https://www.linkedin.com/in/connortracy19', - campus: 'NYC', - cohort: '28', - jobTitle: 'Frontend Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Ally', - name: 'Damien Evans', - email: 'damiensevans@gmail.com', - linkedIn: 'https://www.linkedin.com/in/damien-s-evans/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Principal Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Ally', - name: 'Mercedes Kalaizic', - email: 'Kalaizicmercedes@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mkalaizic/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Principal Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Ally', - name: 'Richard Zhang', - email: 'rchzhng@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dickzhang/', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Ally', - name: 'Garrett Weaver', - email: 'Uncommonweaver@gmail.com', - linkedIn: 'https://www.linkedin.com/in/g-weaver/', - campus: 'NYC', - cohort: '23', - jobTitle: 'API Developer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Alo Yoga', - name: 'Angie Chang', - email: 'angiechangpagne@gmail.com', - linkedIn: 'https://www.linkedin.com/in/angelsofwar', - campus: 'LA', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'E-Commerce/Fashion/Wellness/Mindfulness', - cities: [], - }, - { - company: 'AlphaSense', - name: 'Joe Pavlisko', - email: 'jpavlisko@protonmail.com', - linkedIn: 'https://www.linkedin.com/in/joe-pavlisko-11b74930/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Software Engineer', - industry: 'FinTech', - cities: [], - }, - { - company: 'ALTEN GmbH', - name: 'Jay Wall', - email: 'walljayw@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hanswand/', - campus: 'LA', - cohort: '47', - jobTitle: 'Senior Consultant', - industry: 'Consultancy - Fintech, Manufacturing, Healthcare', - cities: [], - }, - { - company: 'Alteryx', - name: 'Miriam Feder', - email: 'mirfeder@gmail.com', - linkedIn: 'https://www.linkedin.com/in/miriam-feder', - campus: 'NYC', - cohort: '32', - jobTitle: 'Senior Software Engineer', - industry: 'Data Analytics', - cities: [], - }, - { - company: 'Altice USA', - name: 'Ola Adedoyin', - email: 'ola_adedoyin@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/oadedoyin/', - campus: 'NYC', - cohort: '15', - jobTitle: 'DevOps Engineering Manager', - industry: 'Communication and Media', - cities: [], - }, - { - company: 'Amazon', - name: 'Amy Liang', - email: 'amyliangny@gmail.com', - linkedIn: 'https://www.linkedin.com/in/amyliang18/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Software Development Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Amazon', - name: 'Anna Falvello', - email: 'anna.falvello@gmail.com', - linkedIn: 'https://www.linkedin.com/in/afalvello/', - campus: 'NYC', - cohort: '29', - jobTitle: 'SDEII', - industry: 'Ecommerce', - cities: [], - }, - { - company: 'Amazon', - name: 'Anthony Valdez', - email: 'avaldez520@gmail.com', - linkedIn: 'https://www.linkedin.com/in/va1dez/', - campus: 'NYC', - cohort: '32', - jobTitle: 'SDE II (Full Stack)', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Amazon', - name: 'Christopher LeBrett', - email: 'clebrett@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chris-lebrett/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Development Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Amazon', - name: 'Christopher Wong', - email: 'cwong8257@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chriswong2/', - campus: 'NYC', - cohort: '7', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Amazon', - name: 'David Anderson', - email: 'dlande000@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dlande000/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Front-End Engineer', - industry: 'AWS / internet infrastructure', - cities: [], - }, - { - company: 'Amazon', - name: 'Dillon Schriver', - email: 'dschriver9@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dillon-schriver/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Software Development Engineer II', - industry: 'Ecommerce', - cities: [], - }, - { - company: 'Amazon', - name: 'Eelan Tung', - email: 'eelantung@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eelantung', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Development Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Amazon', - name: 'Jason Huang', - email: 'huang.jason999@gmail.com', - linkedIn: 'https://www.linkedin.com/in/huang-jason999/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Software Development Engineer II', - industry: 'Technology', - cities: [], - }, - { - company: 'Amazon', - name: 'Idan Michael', - email: 'idan.michael3@gmail.com', - linkedIn: 'https://www.linkedin.com/in/idanmichael/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Software Develpment Engineer', - industry: 'Cloud', - cities: [], - }, - { - company: 'Amazon', - name: 'Jacqueline Douglass', - email: 'jackie.douglass@icloud.com', - linkedIn: 'https://www.linkedin.com/in/jacqueline-douglass/', - campus: 'FTRI', - cohort: '2', - jobTitle: 'Front-End Engineer', - industry: 'e-commerce, cloud computing, digital streaming, and artificial intelligence.', - cities: [], - }, - { - company: 'Amazon', - name: 'James Kim', - email: 'james.minjae.97@gmail.com', - linkedIn: 'https://linkedin.com/in/jamesmjkim', - campus: 'PTRI', - cohort: '5', - jobTitle: 'Software Development Engineer 1', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Amazon', - name: 'Luke Michals', - email: 'luke.michals@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '14', - jobTitle: 'Frontend Engineer II', - industry: 'Retail', - cities: [], - }, - { - company: 'Amazon', - name: 'Jennifer Song', - email: 'lumie.song@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lu0713/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Development Engineer II', - industry: 'Tech', - cities: [], - }, - { - company: 'Amazon', - name: 'Megan Nadkarni', - email: 'megan.nadkarni@gmail.com', - linkedIn: 'https://www.linkedin.com/in/megannadkarni/', - campus: 'LA', - cohort: '48', - jobTitle: 'Front End Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Amazon', - name: 'Mark Washkewicz', - email: 'mwashkewicz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mark-washkewicz/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Development Engineer 1', - industry: 'Retail', - cities: [], - }, - { - company: 'Amazon', - name: 'Stephan Halarewicz', - email: 'shalarewicz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stephanhalarewicz/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Software Development Engineer, People Engine', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Amazon', - name: 'Tanner Peterson', - email: 'tanpeterson@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tanner-peterson/', - campus: 'LA', - cohort: '46', - jobTitle: 'Front End Engineer', - industry: 'Cloud Services', - cities: [], - }, - { - company: 'Amazon', - name: 'Timothy Mai', - email: 'timothy.mai13@gmail.com', - linkedIn: 'https://www.linkedin.com/in/timothy-mai-459085b3/', - campus: 'LA', - cohort: '31', - jobTitle: 'Software Development Engineer I', - industry: 'Advertising', - cities: [], - }, - { - company: 'Amazon', - name: 'Yogi Paturu', - email: 'ypaturu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yogi-paturu/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Software Development Engineer', - industry: 'Cloud', - cities: [], - }, - { - company: 'Amazon', - name: 'Yale Yng-Wong', - email: 'yyngwong@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ywyw/', - campus: 'NYC', - cohort: '32', - jobTitle: 'SDE1', - industry: 'Advertising', - cities: [], - }, - { - company: 'Amazon (AWS)', - name: 'Michael Weber', - email: 'michael.weber.jr@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael-weber-jr/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Software Development Engineer', - industry: 'Cloud Services', - cities: [], - }, - { - company: 'Amazon Prime Video', - name: 'Faraz Moallemi', - email: 'moallemifaraz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/farazmoallemi/', - campus: 'LA', - cohort: '44', - jobTitle: 'Software Development Engineer I', - industry: 'Big Tech', - cities: [], - }, - { - company: 'Amazon Web Services', - name: 'Daniel Forrester', - email: 'danielf216@gmail.com', - linkedIn: 'https://www.linkedin.com/in/danielforrester/', - campus: 'PTRI', - cohort: '5', - jobTitle: 'Cloud Application Architect', - industry: 'Cloud Services', - cities: [], - }, - { - company: 'Amazon Web Services', - name: 'Lumie (Jen) Song', - email: 'lumie.song@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lu0713/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Development Engineer II', - industry: 'Software', - cities: [], - }, - { - company: 'Amazon Web Services', - name: 'Matthew Lee', - email: 'matthewcml6022@gmail.com', - linkedIn: 'https://www.linkedin.com/in/matthewcmlee/', - campus: 'LA', - cohort: '45', - jobTitle: 'Software Development Engineer', - industry: 'Web Services / Cloud Computing', - cities: [], - }, - { - company: 'Amazon Web Services', - name: 'Taylor Rodrigues', - email: 'taylor.d.rod33@gmail.com', - linkedIn: 'https://www.linkedin.com/in/taylorrodrigues/', - campus: 'LA', - cohort: '33', - jobTitle: 'Software Development Engineer I (L4)', - industry: 'Cloud Computing', - cities: [], - }, - { - company: 'Amazon Web Services (AWS)', - name: 'Raphael Bargues', - email: 'rbargues@gmail.com', - linkedIn: 'https://www.linkedin.com/in/raphael-bargues/', - campus: 'NYC', - cohort: '17', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Amazon, AWS', - name: 'Jimmy Ngo', - email: 'jimmycngo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jimmycngo/', - campus: 'FTRI', - cohort: '2', - jobTitle: 'Software Development Engineer 1', - industry: 'cloud computing', - cities: [], - }, - { - company: 'AMC Networks', - name: 'Wade Armstrong', - email: 'wade@wadearmstrong.com', - linkedIn: 'https://www.linkedin.com/in/wadearmstrong/', - campus: 'LA', - cohort: '5', - jobTitle: 'Director, Front-End Development', - industry: 'Entertainment', - cities: [], - }, - { - company: 'American Airlines(Contracted via BrookSource)', - name: 'Mariah Talicuran', - email: 'talicuran.mariah@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mariahtalicuran/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Associate React Developer', - industry: 'Other', - cities: [], - }, - { - company: 'American Dawn', - name: 'Charlie Huang', - email: 'charliehuang913@gmail.com', - linkedIn: 'https://www.linkedin.com/in/huangcharlie', - campus: 'LA / WCRI', - cohort: '48', - jobTitle: 'Junior Software Engineer', - industry: 'Retail', - cities: [], - }, - { - company: 'American Express', - name: 'Dominic DiSalvo', - email: 'Dominicd17@gmail.com', - linkedIn: 'https://www.linkedin.com/mwlite/in/dominicdisalvo', - campus: 'FTRI', - cohort: '3', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'American Express', - name: 'Jake Diorio', - email: 'jdiorio2393@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jake-diorio/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: 'Banking', - cities: [], - }, - { - company: 'American Express', - name: 'Kelvin Shamy', - email: 'kelvinshamy@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kelvinshamy/', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'American Express', - name: 'Rebecca Turk', - email: 'rebecca.e.turk@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rebeccaturk/', - campus: 'NYC', - cohort: '5', - jobTitle: 'Engineer I', - industry: '', - cities: [], - }, - { - company: 'American Express', - name: 'Victor He', - email: 'victorhe33@gmail.com', - linkedIn: 'www.linkedin.com/in/victorhe33', - campus: 'PTRI', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'AmeriSave', - name: 'Andrew Pomatti', - email: 'ampomatti@gmail.com', - linkedIn: 'https://www.linkedin.com/in/drewpomatti/', - campus: 'LA', - cohort: '47', - jobTitle: 'Systems Engineer I', - industry: 'Real Estate', - cities: [], - }, - { - company: 'AmeriSave', - name: 'Jacob C Viesselman', - email: 'jacob.viesselman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jacobviesselman/', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Amerisave', - name: 'Norman Liu', - email: 'Normanliu91@gmail.com', - linkedIn: 'https://www.linkedin.com/in/norm-liu', - campus: 'PTRI', - cohort: '5', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'AmeriSave Mortgage Corporation', - name: 'Jason Chan', - email: 'Jason.chann91@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jason-chan1765/', - campus: 'FTRI', - cohort: '7', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'AmeriSave Mortgage Corporation', - name: 'Michael Prince', - email: 'mgp2454@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael-prince', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Ample, LLC', - name: 'Rudo Hengst', - email: 'rudohengst@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rhengst/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Lead Developer', - industry: 'Digital Marketing', - cities: [], - }, - { - company: 'Amplify', - name: 'Ekaterina Vasileva', - email: 'ekaterinavasileva768@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ekaterina-vasileva238/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Education', - cities: [], - }, - { - company: 'Amplify', - name: 'Biet Van Nguyen', - email: 'vanbietnguyen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/van-biet-nguyen-6879434a/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Software Engineer', - industry: 'Edtech', - cities: [], - }, - { - company: 'Anaconda', - name: 'Rosio Reyes', - email: 'rosio_reyes@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/rosio-reyes-09b9a256/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Software Engineer', - industry: 'Computer Software', - cities: [], - }, - { - company: 'Ancestry', - name: 'Miguel Garibay', - email: 'miguelgaribay93@gmail.com', - linkedIn: 'https://www.linkedin.com/in/miguel-garibay-mag/', - campus: 'LA', - cohort: '43', - jobTitle: 'Full Stack Software Engineer', - industry: 'Genealogy', - cities: [], - }, - { - company: 'Ancestry', - name: 'Schno Mozingo', - email: 'schno.mozingo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/schno-mozingo/', - campus: 'LA', - cohort: '12', - jobTitle: 'Senior Software Engineer', - industry: 'Geneology', - cities: [], - }, - { - company: 'Ancilia', - name: 'Clark Pang', - email: 'clarkcpang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/clarkpang/', - campus: 'LA / WCRI', - cohort: '56', - jobTitle: 'Software Engineer', - industry: 'Security', - cities: [], - }, - { - company: 'Anheuser-Busch', - name: 'Brandon Bowers', - email: 'brandonbowers1234@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brandon-michael-bowers/', - campus: 'FTRI', - cohort: '3', - jobTitle: 'Senior Front-end React Developer', - industry: 'Beverages', - cities: [], - }, - { - company: 'Annalect', - name: 'Carlos Peรฑa', - email: 'carlos.pena91@gmail.com', - linkedIn: 'https://www.linkedin.com/in/carlospena91', - campus: 'LA', - cohort: '39', - jobTitle: 'Front End Engineer', - industry: 'Advertisement and Media', - cities: [], - }, - { - company: 'Annalect', - name: 'Trent Currie', - email: 'trentdcurrie@gmail.com', - linkedIn: 'https://www.linkedin.com/in/trentdcurrie/', - campus: 'LA', - cohort: '39', - jobTitle: 'Front-End Engineer', - industry: 'Marketing', - cities: [], - }, - { - company: 'Apex Fintech Solutions', - name: 'Kevin Le', - email: 'lekevin2013@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kevinvu-le/', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Apex Systems', - name: 'Anthony Martinez', - email: 'anthony@amartinez.cc', - linkedIn: 'https://www.linkedin.com/in/tony-mtz/', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer', - industry: 'Bank', - cities: [], - }, - { - company: 'Apollo GraphQL', - name: 'Joel Burton', - email: 'joeltburton@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joeltburton', - campus: 'LA', - cohort: '26', - jobTitle: 'Software Engineer', - industry: 'Technology', - cities: [], - }, - { - company: 'Appfolio', - name: 'Erik Fisher', - email: 'efishr4@gmail.com', - linkedIn: 'https://www.linkedin.com/in/erik-fisher-53b9b6b3/', - campus: 'LA', - cohort: '24', - jobTitle: 'Software Engineer II', - industry: 'Aviation & Aerospace', - cities: [], - }, - { - company: 'Appfolio', - name: 'Michelle Holland', - email: 'michellebholland@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michellebholland/', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'AppFolio', - name: 'Timothy Barry', - email: 'tim.barry12@gmail.com', - linkedIn: 'https://www.linkedin.com/in/timothy-barry-se', - campus: 'FTRI', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Apple', - name: 'Alexander Zhang', - email: 'azalexanderzhang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/zhang-alexander/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Software Engineer', - industry: 'Tech', - cities: [], - }, - { - company: 'Apple (via Ryzen)', - name: 'Dieu Huynh', - email: 'dieuhhuynh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dieu-huynh/', - campus: 'LA', - cohort: '42', - jobTitle: 'Frontend Engineer', - industry: 'Technology', - cities: [], - }, - { - company: 'Applied Minds', - name: 'Michael Chiang', - email: 'michael.chiang.dev5@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael-chiang-dev5/', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'software engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'AppOmni', - name: 'Ousman Diallo', - email: 'ordiallo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ousman-diallo/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Front End Engineer', - industry: 'Security', - cities: [], - }, - { - company: "Arc'teryx", - name: 'Simon Grigenas', - email: 'grigenas@outlook.com', - linkedIn: 'https://www.linkedin.com/in/simon-grigenas/', - campus: 'NYC / ECRI', - cohort: '1', - jobTitle: 'Intermediate Web Applications Developer', - industry: 'Retail', - cities: [], - }, - { - company: 'Arcadia', - name: 'Adda Kridler', - email: 'addakridler@gmail.com', - linkedIn: 'https://www.linkedin.com/in/addakridler/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Software Engineer 1', - industry: 'Energy Tech', - cities: [], - }, - { - company: 'Arcadia', - name: 'Cameron Baumgartner', - email: 'cameron.h.baumgartner@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cameronbaumgartner/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: 'Renewable Energy', - cities: [], - }, - { - company: 'Arcadia', - name: 'Jehovany A Cruz', - email: 'howaboutjeho@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jehovany-cruz/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer', - industry: 'Energy - Renewable Energy', - cities: [], - }, - { - company: 'Arcadia', - name: 'Jason Liggayu', - email: 'jligg224@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jasonliggayu/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Full Stack Engineer', - industry: 'Renewable Energy', - cities: [], - }, - { - company: 'Arcadia', - name: 'Kristen Althoff', - email: 'kristenwalthoff@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kristen-althoff-3a4765b9/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Full-Stack Software Engineer I', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Arcules', - name: 'Nico Flores', - email: 'floresni1996@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nicolasaflores/', - campus: 'LA', - cohort: '48', - jobTitle: 'Software Engineer', - industry: 'Cloud Services', - cities: [], - }, - { - company: 'Arcules', - name: 'Patrick Allen', - email: 'patrick@ohana-app.io', - linkedIn: 'https://linkedin.com/in/patrickallendfs', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer', - industry: 'Cloud Video', - cities: [], - }, - { - company: 'Armoire', - name: 'Katie Sandfort', - email: 'katie.sandfort@gmail.com', - linkedIn: 'https://www.linkedin.com/in/katie-sandfort/', - campus: 'LA / WCRI', - cohort: '55', - jobTitle: 'Software Engineer', - industry: 'Retail', - cities: [], - }, - { - company: 'Artsy', - name: 'Matt Jones', - email: 'matt.chris.jones@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mc-jones/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Senior Engineer 1 (Fullstack)', - industry: 'Art', - cities: [], - }, - { - company: 'Artyc', - name: 'Daniel Geiger', - email: 'daniel.w.geiger@gmail.com', - linkedIn: 'https://www.linkedin.com/in/danielwgeiger/', - campus: 'FTRI / CTRI', - cohort: '4', - jobTitle: 'Fullstack Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Arvest Bank', - name: 'Leilani Hernandez', - email: 'leilani.digame@gmail.com', - linkedIn: 'www.linkedin.com/in/lherna05', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Front End Developer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Ash Wellness', - name: 'Andrew Rehrig', - email: 'arehrig@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andrew-rehrig/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Full Stack Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Asics', - name: 'Alexa Roberts', - email: 'alexarobertss@protonmail.com', - linkedIn: 'https://www.linkedin.com/in/alexarobertss', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Frontend Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Aspiration', - name: 'Charles Gyer', - email: 'charlesgyer@gmail.com', - linkedIn: 'https://www.linkedin.com/in/charles-gyer/', - campus: 'PTRI', - cohort: '4', - jobTitle: 'Software Engineer, Backend', - industry: 'Green Fintech', - cities: [], - }, - { - company: 'Astra', - name: 'Jae Ryu', - email: 'rj.jaeryu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jaeryu/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Senior Software Engineer', - industry: 'Space-tech', - cities: [], - }, - { - company: 'Asurion', - name: 'Jinseon Shin', - email: 'jinseonshin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jinseonshin/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Tech Insurance', - cities: [], - }, - { - company: 'Asurion', - name: 'Shah Chaudri', - email: 'shah.pro.se@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shah-chaudri/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer 3', - industry: 'Tech Insurance', - cities: [], - }, - { - company: 'Asurion', - name: 'Travis Woolston', - email: 'travis.ww@hotmail.com', - linkedIn: 'https://www.linkedin.com/in/traviswoolston/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: [], - }, - { - company: 'AT&T', - name: 'Alexander Kim', - email: 'akim3235@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexanderkim1/', - campus: 'LA', - cohort: '38', - jobTitle: 'Backend Software Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'AT&T', - name: 'Marc Doran', - email: 'doramm4408@gmail.com', - linkedIn: 'https://www.linkedin.com/in/marc-doran', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Database Developer', - industry: 'Telecommunications', - cities: [], - }, - { - company: 'AT&T', - name: 'Alina Grafkina', - email: 'grafkina.production@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alinakyaw/', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Athena Health', - name: 'Zach Pestaina', - email: 'zpestaina@gmail.com', - linkedIn: 'linkedin.com/zachpestaina/', - campus: 'NYC / ECRI', - cohort: '38', - jobTitle: 'Analytics Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Atlassian', - name: 'Giao Tran', - email: 'contactgiaotran@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gd-tran/', - campus: 'LA', - cohort: '40', - jobTitle: 'Software Engineer P3', - industry: 'Project management?', - cities: [], - }, - { - company: 'Atlassian', - name: 'Dan Snyder', - email: 'dasnyder3@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dasnyder3/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: 'Tech', - cities: [], - }, - { - company: 'Atlassian/ Trello', - name: 'Elizabeth Lotto', - email: 'fakeEmail1@fakeEmail.com', - linkedIn: 'https://www.linkedin.com/in/elizabethlotto/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer', - industry: 'Computer Software', - cities: [], - }, - { - company: 'Atos Syntel (at Disney)', - name: 'Dakota Gilbreath', - email: 'dgilbrea92@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dakota-gilbreath/', - campus: 'LA', - cohort: '34', - jobTitle: 'Full Stack Developer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Attentive', - name: 'Sam Goldberg', - email: 'sgoldber61@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sgoldber61/', - campus: 'LA', - cohort: '27', - jobTitle: 'Software Engineer, Frontend - L4', - industry: 'E-commerce', - cities: [], - }, - { - company: 'Attentive ', - name: 'Pravek Karwe', - email: 'pkarwe62@gmail.com', - linkedIn: - 'https://www.linkedin.com/in/pravek-karwe?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app', - campus: 'NYOI', - cohort: '7', - jobTitle: 'Senior Product Manager ', - industry: 'Marketing/Advertising', - cities: [], - }, - { - company: 'Audacy', - name: 'John Roman', - email: 'johnmroman33@gmail.com', - linkedIn: 'https://www.linkedin.com/in/john-m-roman/', - campus: 'NYC / ECRI', - cohort: '38', - jobTitle: 'Associate Software Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'AuditBoard', - name: 'Alex Yu', - email: 'alexjihunyu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexjihunyu/', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer', - industry: 'FinTech', - cities: [], - }, - { - company: 'Autodesk', - name: 'Javan Ang', - email: 'javanamt@gmail.com', - linkedIn: 'https://www.linkedin.com/in/javanang/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Software Engineer', - industry: 'Software/Tech', - cities: [], - }, - { - company: 'AutoFi', - name: 'Rocky Lin', - email: 'liangwen511@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rocky-lin/', - campus: 'NYC', - cohort: '14', - jobTitle: 'Senior Software Engineer', - industry: 'FinTech', - cities: [], - }, - { - company: 'Ava', - name: 'Eden Shirin', - email: 'edenshirin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eden-shirin/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Software Engineer', - industry: 'Artificial Intelligence', - cities: [], - }, - { - company: 'Avant', - name: 'David Riley Burns', - email: 'drileyburns@gmail.com', - linkedIn: 'https://www.linkedin.com/in/drileyburns/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Software Engineer', - industry: 'Loans', - cities: [], - }, - { - company: 'Avirtek', - name: 'Eliot L Nguyen', - email: 'eliotlefrin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ibeeliot', - campus: 'LA', - cohort: '34', - jobTitle: 'Front End Lead Developer', - industry: 'Cybersecurity', - cities: [], - }, - { - company: 'Avise', - name: 'Frank Norton', - email: 'jfnorton@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jfnorton32/', - campus: 'LA', - cohort: '37', - jobTitle: 'Full Stack Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Avoma', - name: 'Kevin Chung', - email: 'kevin.c@me.com', - linkedIn: 'https://www.linkedin.com/in/kevc/', - campus: 'LA / WCRI', - cohort: '47', - jobTitle: 'Software Engineer - Frontend', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'AVOXI', - name: 'Shirley Luu', - email: 'sh.rleyluu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/luu-shirley', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Full Stack Software Engineer', - industry: 'Business Tech/Enterprise Tech', - cities: [], - }, - { - company: 'Avvir', - name: 'Sharon Zhu', - email: 'sharonzhu.15@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sharonzhu/', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer II', - industry: 'Construction Tech', - cities: [], - }, - { - company: 'AWS', - name: 'Blake Myrick', - email: 'blake.myrick@gmail.com', - linkedIn: 'https://www.linkedin.com/in/blake-myrick', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Software Development Engineer', - industry: 'Tech', - cities: [], - }, - { - company: 'AWS', - name: 'George Jeng', - email: 'gjenga@icloud.com', - linkedIn: 'https://www.linkedin.com/in/gjenga', - campus: 'LA', - cohort: '49', - jobTitle: 'SDE1', - industry: 'Cloud Services', - cities: [], - }, - { - company: 'AWS', - name: 'Marc Burnie', - email: 'MarcABurnie@gmail.com', - linkedIn: 'https://www.linkedin.com/in/marcburnie', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Development Engineer II', - industry: 'Tech', - cities: [], - }, - { - company: 'AWS', - name: 'Patty Qian', - email: 'patty.qian@gmail.com', - linkedIn: 'https://www.linkedin.com/in/patty-qian/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Development Engineer', - industry: 'Tech', - cities: [], - }, - { - company: 'Axim Geospatial', - name: 'Kevin Le', - email: 'kevinle1003@gmail.com', - linkedIn: 'https://www.linkedin.com/in/xkevinle/', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Software Developer', - industry: 'IT Services', - cities: [], - }, - { - company: 'Axle Health', - name: 'Alexandra Ashcraft', - email: 'lash211@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexandra-ashcraft1/', - campus: 'FTRI / CTRI', - cohort: '17', - jobTitle: 'Software Engineer', - industry: 'Healthtech/Healthcare', - cities: [], - }, - { - company: 'Axon', - name: 'Meng Ting Chiang', - email: 'a123deandean@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mengting-chiang/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer', - industry: 'Public Safety', - cities: [], - }, - { - company: 'B-stock solutions', - name: 'Michael Feldman', - email: 'michaelfeldma1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael-feldman15/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Nodejs / microservices software engineer', - industry: 'E-commerce', - cities: [], - }, - { - company: 'Bach', - name: 'Abbey Campbell', - email: 'campbellabbeya@gmail.com', - linkedIn: 'https://www.linkedin.com/in/campbellabbeya/', - campus: 'LA', - cohort: '31', - jobTitle: 'Frontend Developer', - industry: "Entertainment? Wed-tech? lol idk it's pretty niche", - cities: [], - }, - { - company: 'BallerTV', - name: 'Jenessa Chapalamadugu', - email: 'jenessachap@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jenessachap/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Full Stack Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Bank of America', - name: 'Ranisha Rafeeque Soopi Kalphantakath', - email: 'ranisharafeeque@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ranisha-rafeeque-s-k/', - campus: 'NYC', - cohort: '26', - jobTitle: 'AVP, Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Barstool Sports', - name: 'Daniel Nagano-Gerace', - email: 'dnaganog@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dnaganog/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Senior Backend Engineer', - industry: 'Media', - cities: [], - }, - { - company: 'Bayer Crop Science (Neteffects)', - name: 'Jason Fricano', - email: 'jason.fricano@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jasonfricano/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Node / React Developer', - industry: 'Agricultural Science', - cities: [], - }, - { - company: 'Bayer Crop Sciences', - name: 'Stephen Budarz', - email: 'sbudarz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/steve-budarz/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Full Stack Engineer', - industry: 'Agriculture', - cities: [], - }, - { - company: 'BD', - name: 'Annabelle Ni', - email: 'ann.j.ni@gmail.com', - linkedIn: 'https://www.linkedin.com/in/annabelleni/', - campus: 'FTRI / CTRI', - cohort: '17', - jobTitle: 'Software Engineer', - industry: 'Healthtech/Healthcare', - cities: [], - }, - { - company: 'Beacon Hill Staffing (Charter Communications)', - name: 'David Russo', - email: 'dr2378@gmail.com', - linkedIn: 'https://www.linkedin.com/in/russo-david', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Telecommunications', - cities: [], - }, - { - company: 'Beacon Hill Staffing (working for Charter Communications)', - name: 'Jessica Balding', - email: 'jessica.r.balding@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jessica-balding/', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Full Stack Developer', - industry: 'Telecommunications', - cities: [], - }, - { - company: 'Beautycounter', - name: 'Mario Granberri', - email: 'mgranberri@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mgranberri/', - campus: 'LA', - cohort: '25', - jobTitle: 'Full stack software engineer', - industry: 'Compliance', - cities: [], - }, - { - company: 'Behavior Frontiers', - name: 'Chance Hernandez', - email: 'chance.hernandez24@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chance-hernandez/', - campus: 'LA', - cohort: '40', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Bentobox', - name: 'Corey Van Splinter', - email: 'cvanspl1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/corey-van-splinter/', - campus: 'LA', - cohort: '39', - jobTitle: 'Senior Software Engineer', - industry: 'Hospitality', - cities: [], - }, - { - company: 'Bentobox', - name: 'Greg Dixon', - email: 'gdixon529@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gdixon529/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Engineer', - industry: 'Software', - cities: [], - }, - { - company: 'BentoBox', - name: 'Brian Liang', - email: 'liangbrian94@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brian-z-liang/', - campus: 'LA', - cohort: '43', - jobTitle: 'Product Support Engineer', - industry: 'Not sure', - cities: [], - }, - { - company: 'Berkadia', - name: 'Isaac Kittila', - email: 'isaac.kittila@gmail.com', - linkedIn: 'https://www.linkedin.com/in/isaac-kittila/', - campus: 'LA', - cohort: '39', - jobTitle: 'Associate Software Engineer', - industry: 'Commercial Real Estate', - cities: [], - }, - { - company: 'Best Buy', - name: 'Alexander Hager', - email: 'alexhager19@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hager-alexander/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Front end Engineer', - industry: 'Data analytics', - cities: [], - }, - { - company: 'Better.com', - name: 'Stefan Armijo', - email: 'stefan.armijo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stefanarmijo/', - campus: 'LA', - cohort: '21', - jobTitle: 'Sr. Software Engineer', - industry: '', - cities: [], - }, - { - company: 'BidWrangler', - name: 'Kylene Hohman', - email: 'kylenehohman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kylene-hohman', - campus: 'PTRI', - cohort: '5', - jobTitle: 'Full-Stack Developer', - industry: 'Auction Services', - cities: [], - }, - { - company: 'Bigeye', - name: 'Dasha Kondratenko', - email: 'dashakondrattenko@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dasha-k/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer 1', - industry: 'Data quality', - cities: [], - }, - { - company: 'BigID', - name: 'Helen Regula', - email: 'hregula03@gmail.com', - linkedIn: 'https://www.linkedin.com/in/helenregula/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Senior Full Stack Software Engineer', - industry: 'Cyber Security', - cities: [], - }, - { - company: 'Bill.com', - name: 'Gordon Hui', - email: 'Maddogg612@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gordon-hui', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Software engineer 2 - Frontend', - industry: 'Fintech', - cities: [], - }, - { - company: 'Bio-Rad Laboratories', - name: 'Tiffany Yang', - email: 'teefyang7857@gmail.com', - linkedIn: 'https://www.linkedin.com/in/teayang/', - campus: 'LA', - cohort: '21', - jobTitle: 'Software Engineer', - industry: 'Biotech', - cities: [], - }, - { - company: 'BitGo', - name: 'Joe Kinney', - email: 'josephrkinney@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joekinney17/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Bitovi', - name: 'Edward Park', - email: 'edwardpark123@gmail.com', - linkedIn: 'https://www.linkedin.com/in/edwardparkwork/', - campus: 'LA', - cohort: '41', - jobTitle: 'Junior Developer and Consultant', - industry: 'Computer Software', - cities: [], - }, - { - company: 'BitPay', - name: 'Taven Shumaker', - email: 'tavensshumaker@gmail.com', - linkedIn: 'https://www.linkedin.com/in/taven-shumaker/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Black Cape', - name: 'kyle saunders', - email: 'kylersaunders@gmail.com', - linkedIn: '/kylersaunders', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Blackrock', - name: 'Jiaxin Li', - email: 'jiaxin.li.gogo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lijiaxingogo/', - campus: 'NYC', - cohort: '22', - jobTitle: 'DevOps Engineer', - industry: '', - cities: [], - }, - { - company: 'Blackthorn Software', - name: 'Aalok Shah', - email: 'aalok.tsh@gmail.com', - linkedIn: '/kolashah', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Full Stack Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Blackthorn.io', - name: 'Tristan Onfroy', - email: 'tonfroy90@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tristan-onfroy/', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Support Software Engineer', - industry: 'Software Solutions/Developer Tools', - cities: [], - }, - { - company: 'Blend', - name: 'Peter Makhnatch', - email: 'p.makhnatch@gmail.com', - linkedIn: 'https://www.linkedin.com/in/petermakhnatch/', - campus: 'PTRI', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Blink Health', - name: 'Matthew Digel', - email: 'Digel.matt@gmail.com', - linkedIn: 'https://www.linkedin.com/in/matt-digel', - campus: 'PTRI', - cohort: 'Beta', - jobTitle: 'Sr. Product Manager', - industry: 'Health Care Tech', - cities: [], - }, - { - company: 'Blizzard', - name: 'Christopher Washburn', - email: 'chris132128@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christopherwashburn/', - campus: 'LA', - cohort: '24', - jobTitle: 'Software Development Engineer', - industry: 'Insurance', - cities: [], - }, - { - company: 'BlockFi', - name: 'Mohtasim Chowdhury', - email: 'mohtasim.hc@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mohtasimc/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Frontend Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'BLOCKS', - name: 'Christopher C Carney', - email: 'ccarney51@gmail.com', - linkedIn: 'https://www.linkedin.com/mwlite/in/christopher-c-carney', - campus: 'NYC', - cohort: '24', - jobTitle: 'Senior Backend Engineer', - industry: 'Technology', - cities: [], - }, - { - company: 'Bloom Medicinals', - name: 'Candie Hill', - email: 'can330330@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/candie-hill/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Jr Software Developer', - industry: 'Other', - cities: [], - }, - { - company: 'Bloomberg', - name: 'John Haberstroh', - email: 'haberstroh.john@gmail.com', - linkedIn: 'https://www.linkedin.com/in/johnhaberstroh/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Senior Fullstack Engineer', - industry: 'Financial,Software,Media,Data', - cities: [], - }, - { - company: 'Bloomberg', - name: 'James Maguire', - email: 'Jmaguire655@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Bloomberg', - name: 'Cedric Lee', - email: 'leeced@umich.edu', - linkedIn: 'https://www.linkedin.com/in/leeced/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Bloomberg', - name: 'Duke Lee', - email: 'leeduke90@gmail.com', - linkedIn: 'https://www.linkedin.com/in/duke-lee/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Software Engineer', - industry: 'Fin-Tech', - cities: [], - }, - { - company: 'Bloomberg', - name: 'Michael Chin', - email: 'mikechin37@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael-9-chin/', - campus: 'NYC / ECRI', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Bloomberg Industry Group', - name: 'Neel Lakshman', - email: 'neelanjan.lakshman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/neel-lakshman/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Web Application Architect I', - industry: 'Other', - cities: [], - }, - { - company: 'Bloomberg L.P.', - name: 'Ariel Hyman', - email: 'a.o.hyman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ahyman0712/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Bloomberg LP', - name: 'Jinhee Choi', - email: 'jinhee.k.choi@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jinheekchoi/', - campus: 'LA', - cohort: '44', - jobTitle: 'Senior Software Engineer (Consultant)', - industry: 'Fintech', - cities: [], - }, - { - company: 'Bloomboard', - name: 'Junie Hou', - email: 'selilac9@gmail.com', - linkedIn: 'https://www.linkedin.com/in/juniehou/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Blue Cross Blue Sheild of Florida', - name: 'Adam Rodriguez', - email: 'adamxrodriguez@gmail.com', - linkedIn: 'https://linkedin.com/in/adamrodriguez/', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Senior React Node Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Blue Origin', - name: 'Sam VanTassel', - email: 'vantassel.sam@gmail.com', - linkedIn: 'https://www.linkedin.com/in/samvantassel/', - campus: 'LA', - cohort: '47', - jobTitle: 'Software Engineer I', - industry: 'Aerospace', - cities: [], - }, - { - company: 'Blueberry Pediatrics', - name: 'Lina Lee', - email: 'woorin.lee1524@gmail.com', - linkedIn: 'www.linkedin.com/in/lee-lina', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Full-Stack Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'BlueStream Health', - name: 'Wei Huang', - email: 'wei.waye.huang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/wei-waye-huang/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Senior Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'BlueVoyant', - name: 'Mahfuz Kabir', - email: 'mahfuzk@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mahfuzkabir/', - campus: 'NYC', - cohort: '4', - jobTitle: 'Software Engineer (Managed Security Services)', - industry: '', - cities: [], - }, - { - company: 'BNY Mellon', - name: 'Ahsan Ali', - email: 'ali.ahsan95@gmail.com', - linkedIn: 'https://www.linkedin.com/in/greyali', - campus: 'FTRI / CTRI', - cohort: '12', - jobTitle: 'Senior Full Stack Developer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Bolt', - name: 'Chelsey Fewer', - email: 'chelsey.fewer@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chelsey-fewer/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Support Engineer', - industry: 'Ecommerce', - cities: [], - }, - { - company: 'Booster', - name: 'Evelin Goldin', - email: 'evelinsaba1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/evelin-goldin/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Fullstack Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Booz Allen Hamilton', - name: 'Sang Rea Han', - email: 'sxhanx@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sangreahan/', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Sr. Consultant', - industry: 'Consulting', - cities: [], - }, - { - company: 'Boulevard', - name: 'Ashley Austin', - email: 'aaustin86@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mraustin2u', - campus: 'LA', - cohort: '34', - jobTitle: 'Senior Associate Software Engineer', - industry: 'Business Management Tool', - cities: [], - }, - { - company: 'Boxed', - name: 'Adam Goodman', - email: 'adamrgoodman1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adam-goodman1/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Backend Engineer I', - industry: 'e-commerce', - cities: [], - }, - { - company: 'BP3', - name: 'Brian Jungk', - email: 'brian.jungk@outlook.com', - linkedIn: 'https://www.linkedin.com/in/brian-jungk/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Software Engineer', - industry: 'Consulting', - cities: [], - }, - { - company: 'Brady Corporation', - name: 'Sean Flynn', - email: 'seanflynn5000@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sean-g-flynn', - campus: 'NYC / ECRI', - cohort: '38', - jobTitle: 'Web Developer', - industry: 'Business Tech/Enterprise Tech', - cities: [], - }, - { - company: 'Branding Brand', - name: 'Andy Heng', - email: 'andyheng1095@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andy-heng/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Engineer', - industry: 'E-Commerce', - cities: [], - }, - { - company: 'Branding Brand', - name: 'Christian Wong', - email: 'ctcwong73@gmail.com', - linkedIn: 'https://www.linkedin.com/in/wong-christian/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Branding Brand', - name: 'Nobuhide Ajito', - email: 'Nobuhide95@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nobuhide-ajito/', - campus: 'LA', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Technology', - cities: [], - }, - { - company: 'Bread Financial', - name: 'Cho Yee Win Aung', - email: 'choyeewinag@gmail.com', - linkedIn: 'https://www.linkedin.com/in/choyeewinaung/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer 1', - industry: 'Fintech', - cities: [], - }, - { - company: 'Brighter', - name: 'Elliot Kim', - email: 'elliot.kim@gmail.com', - linkedIn: 'https://www.linkedin.com/in/elliotjykim/', - campus: 'LA', - cohort: '24', - jobTitle: 'Full Stack Engineer', - industry: 'Gaming & Entertainment', - cities: [], - }, - { - company: 'Brighter (Cigna)', - name: 'David Marquess', - email: 'dave.marquess@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dave-marquess/', - campus: 'LA', - cohort: '25', - jobTitle: 'Senior Software Engineer', - industry: 'Cybersecurity', - cities: [], - }, - { - company: 'Brightflow AI', - name: 'Erika Jung', - email: 'erika.h.jung@gmail.com', - linkedIn: 'https://www.linkedin.com/in/erikahjung/', - campus: 'LA / WCRI', - cohort: '56', - jobTitle: 'Software Engineer', - industry: 'IT Services', - cities: [], - }, - { - company: 'Brillio', - name: 'Alexander Smith', - email: 'ajsmith925@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ajsmith925/', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer', - industry: 'Software Consulting', - cities: [], - }, - { - company: 'Brooksource, contracted to Northwestern Mutual', - name: 'Jessica Louie Lee', - email: 'jlouielee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jessllee/', - campus: 'LA', - cohort: '48', - jobTitle: - 'Backend Node Engineer with Brooksource, Full stack Engineer with Northwestern Mutual', - industry: 'Fintech', - cities: [], - }, - { - company: 'BuildOps', - name: 'Muhammad Trad', - email: 'Muhammad.trad@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/muhammadtrad/', - campus: 'LA', - cohort: '37', - jobTitle: 'Senior Software Engineer', - industry: 'Commercial Real Estate', - cities: [], - }, - { - company: 'Business Alliance Financial Services (BAFS)', - name: 'Justin McKay', - email: 'justinmckay99@gmail.com', - linkedIn: 'https://www.linkedin.com/in/justinwmckay/', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Business Alliance Financial Services, LLC', - name: 'Joe Bigelow', - email: 'joebigelow@protonmail.com', - linkedIn: 'https://www.linkedin.com/in/joe-bigelow', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer', - industry: 'Finance (Credit union service organization)', - cities: [], - }, - { - company: 'ButcherBox', - name: 'Maxwell Shick', - email: 'maxwellshick@gmail.com', - linkedIn: 'https://www.linkedin.com/in/maxwell-shick/', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Restaurant, Food, and Beverage', - cities: [], - }, - { - company: 'Butterfly Network', - name: 'Akiko Hagio Dulaney', - email: 'akikoinhd@gmail.com', - linkedIn: 'https://www.linkedin.com/in/akiko-hagio-dulaney/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Web/API QA Automation Engineer', - industry: 'Healthtech', - cities: [], - }, - { - company: 'Butterfly Network', - name: 'Crystal (Crys) Lim', - email: 'crystal.joy.lim@gmail.com', - linkedIn: 'https://www.linkedin.com/in/crystallim/', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer II - Cloud Backend', - industry: 'Medical Equipment Manufacturing', - cities: [], - }, - { - company: 'C3 AI', - name: 'Shelby Cotton', - email: 'hello@shelbycotton.com', - linkedIn: 'https://linkedin.com/in/shelbycotton', - campus: 'NYC', - cohort: '23', - jobTitle: 'Forward Deployed Engineer', - industry: 'Artificial intelligence', - cities: [], - }, - { - company: 'C3.AI', - name: 'Dominic Genuario', - email: 'dominicgenuario@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dominic-genuario/', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Forward Deployed Engineer', - industry: 'Artificial Intelligence', - cities: [], - }, - { - company: 'Cadent', - name: 'William Yoon', - email: 'williamdyoon@gmail.com', - linkedIn: 'https://www.linkedin.com/in/williamdyoon/', - campus: 'LA', - cohort: '42', - jobTitle: 'Front End Engineer', - industry: 'TV Advertising', - cities: [], - }, - { - company: 'CafeMedia', - name: 'Jasper Narvil', - email: 'jaspernarvil@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jaspernarvil/', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Software Eng II', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'CAIS Group', - name: 'Anson Avellar', - email: 'anson@ansonavellar.com', - linkedIn: 'https://www.linkedin.com/in/ansonavellar/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Front End Developer (internally Associate)', - industry: 'Fintech', - cities: [], - }, - { - company: 'Canadian Tire Corporation', - name: 'Ansel Andro Santos', - email: 'anselandrosantos@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ansel-santos', - campus: 'NYOI', - cohort: '3', - jobTitle: 'Manager, Advanced Measurement & Analytics', - industry: 'Data/Analytics/Cloud', - cities: [], - }, - { - company: 'Canary Connect', - name: 'Dillon Garrett', - email: 'dillon.garrett.dev@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dillon-garrett/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Front End Engineer', - industry: 'Home Security', - cities: [], - }, - { - company: 'Capital Connect by JP Morgan', - name: 'Peter Baniuszewicz', - email: 'Baniuszewicz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/peter-ba/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Adrian Inza-Cruz', - email: 'ainzacruz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adrian-inza-cruz/', - campus: 'LA', - cohort: '41', - jobTitle: 'Senior Associate Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Alexander Gurfinkel', - email: 'alexgurfinkel@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexandergurfinkel/', - campus: 'PTRI', - cohort: '5', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Jung Ho Lee', - email: 'alexxleee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jungholee27/', - campus: 'FTRI', - cohort: '1', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Allan MacLean', - email: 'allanpmaclean@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Alvin Ma', - email: 'alvin.ma95@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alvinrayma/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Capital One', - name: 'Alvin Cheng', - email: 'alvincheng505@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alvin-cheng/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: 'Banking', - cities: [], - }, - { - company: 'Capital One', - name: 'Allana Ordonez', - email: 'ayaordonez@gmail.com', - linkedIn: 'https://www.linkedin.com/in/allana-ordonez/', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer, Frontend', - industry: 'Banking/Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Brandon Miller', - email: 'bmiller1881@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brandon-j-miller', - campus: 'FTRI / CTRI', - cohort: '12', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Carson Chen', - email: 'carson.cy.chen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/carsoncychen/', - campus: 'NYC', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'IT', - cities: [], - }, - { - company: 'Capital One', - name: 'Carlos Botero-Vargas', - email: 'cbotero-vargas@outlook.com', - linkedIn: 'https://www.linkedin.com/in/carlosb-v/', - campus: 'FTRI', - cohort: '1', - jobTitle: 'Senior Software Engineer', - industry: 'Finance', - cities: [], - }, - { - company: 'Capital One', - name: 'Jason Clark', - email: 'clarkjasonee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/clarkjasonee/', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Sina Kahrobaei', - email: 'cna.kahrobaei@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sinakahrobaei/', - campus: 'FTRI', - cohort: '6', - jobTitle: 'Senior Software Engineer (Full Stack)', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Christopher cheng', - email: 'Ctpcheng@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ctpcheng/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Senior Software Engineer, Front End', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Darren Chan', - email: 'darrenc3195@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dbchan/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Full Stack Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'David Zhang', - email: 'davidnyc@umich.edu', - linkedIn: 'https://www.linkedin.com/in/davidnyc/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Fullstack Software Engineer', - industry: 'Finance', - cities: [], - }, - { - company: 'Capital One', - name: 'Dani Almaraz', - email: 'dtalmaraz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dani-almaraz/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Eugene Lee', - email: 'eugleenyc@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Nel Malikova', - email: 'gunelmalikova@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gmalikova/', - campus: 'NYC', - cohort: '10', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Hemwatie Persaud', - email: 'hemwatiecodes@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hemwatie/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'Banking', - cities: [], - }, - { - company: 'Capital One', - name: 'Ian Madden', - email: 'ianfmadden@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ian-madden/', - campus: 'FTRI / CTRI', - cohort: '7', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Jae Hyun Ha', - email: 'jaehyunha96@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jae-hyun-ha/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Software Engineer - backend', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'James Ma', - email: 'jamesma991@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jamesma1199/', - campus: 'FTRI', - cohort: '7', - jobTitle: 'Senior Associate Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Jennifer Chau', - email: 'jenniferchau512@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jenniferchau512/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Jin Oh', - email: 'jintoh613@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jintoh613/', - campus: 'LA', - cohort: '42', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'John Li', - email: 'jli159@binghamton.edu', - linkedIn: 'https://www.linkedin.com/in/john-li7/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Fullstack Engineer', - industry: 'Banking', - cities: [], - }, - { - company: 'Capital One', - name: 'Joseph Amos', - email: 'joeamos17@gmail.com', - linkedIn: 'linkedin.com/in/joe-amos', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Senior Associate Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Capital One', - name: 'Johnny Chen', - email: 'johncschen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/johnnycschen/', - campus: 'LA', - cohort: '45', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Jonathan Chen', - email: 'jonathanchen832@gmail.com', - linkedIn: 'Https://linkedin.com/in/jonathan-hp-chen', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Full Stack Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'June Culp', - email: 'juneculp1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/juneculp/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Senior Front End Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Kristine Aguda', - email: 'kaguda03@gmail.com', - linkedIn: 'https://www.linkedin.com/kristine-aguda', - campus: 'LA', - cohort: '45', - jobTitle: 'Software Engineer, Full Stack', - industry: 'Fin tech', - cities: [], - }, - { - company: 'Capital One', - name: 'Kasthuri Menon', - email: 'kasthuri.menon1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kasthurimenon/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Senior Software Engineer', - industry: 'Banking/ Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Ken Litton', - email: 'kennethclitton@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ken-litton/', - campus: 'LA', - cohort: '43', - jobTitle: 'Backend Engineer, Senior Associate', - industry: 'Finance/Banking', - cities: [], - }, - { - company: 'Capital One', - name: 'Kevin Park-Lee', - email: 'kevin38424@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kevin38424/', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Kellen Levy', - email: 'Kmalcolmlevy@gmail.com', - linkedIn: 'https://www.linked.com/in/kellenmlevy', - campus: 'FTRI', - cohort: '1', - jobTitle: 'Senior Associate Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Jason Lin', - email: 'lin.jasonp@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jplin/', - campus: 'FTRI', - cohort: '7', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Luke Cho', - email: 'luke.h.cho@gmail.com', - linkedIn: 'https://www.linkedin.com/in/luke-h-cho/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'Banking', - cities: [], - }, - { - company: 'Capital One', - name: 'Philip Kang', - email: 'm.philipkang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/pkmi/', - campus: 'NYC / ECRI', - cohort: '27', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Capital One', - name: 'Matthew Femia', - email: 'mattfemia1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mattfemia/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'May Li', - email: 'mayleeli1234@gmail.com', - linkedIn: 'https://www.linkedin.com/in/maysli', - campus: 'LA', - cohort: '44', - jobTitle: 'Fullstack Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Matt von der Lippe', - email: 'mvdlippe@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mvdlippe/', - campus: 'FTRI', - cohort: '3', - jobTitle: 'Senior Associate Software Engineer - Backend', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Nathanael Tracy', - email: 'n.tracy@outlook.com', - linkedIn: 'https://www.linkedin.com/in/nathanael-tracy/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Senior Associate Software Engineer', - industry: 'Finance', - cities: [], - }, - { - company: 'Capital One', - name: 'Nathan Yang', - email: 'nathan.yang16@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nathanmyang/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Sr. Associate Software Engineer (Full-Stack)', - industry: 'Business', - cities: [], - }, - { - company: 'Capital One', - name: 'Nicholas A Gonzalez', - email: 'nicholas.a.gonz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nicholasagonzalez/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Fullstack Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Patrick Slagle', - email: 'patrickryanslagle@gmail.com', - linkedIn: 'https://www.linkedin.com/in/patrickslagle/', - campus: 'LA', - cohort: '23', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Capital One', - name: 'Peter Van', - email: 'peterrvan@gmail.com', - linkedIn: 'https://www.linkedin.com/in/peter-van/', - campus: 'LA', - cohort: '43', - jobTitle: 'Front End Software Engineer', - industry: 'Financial Services', - cities: [], - }, - { - company: 'Capital One', - name: 'Rachel Patterson', - email: 'racheljpatterson@gmail.com', - linkedIn: 'https://www.linkedin.com/in/racheljpatterson/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Software Engineer, Full Stack', - industry: 'Banking/Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Quentin Rousset', - email: 'roussetquent1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/qrousset/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Sr Software Engineer Back-end', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Ahad Rajput', - email: 'sachem2015@gmail.com', - linkedIn: 'https://www.linkedin.com/in/arajput96/', - campus: 'FTRI', - cohort: '3', - jobTitle: 'Senior Software Engineer', - industry: 'Finance/Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Sam Portelance', - email: 'sportelance1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sportelance/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Senior Associate Fullstack Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Stephen Kim', - email: 'stephenkim612@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stephenkim612/', - campus: 'LA', - cohort: '47', - jobTitle: 'Software Engineer, Fullstack', - industry: 'Finance', - cities: [], - }, - { - company: 'Capital One', - name: 'Andrew Talle', - email: 'talle.andrew@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andrewtalle/', - campus: 'FTRI', - cohort: '6', - jobTitle: 'Backend Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Terrence Granger', - email: 'Terrence.granger@gmail.com', - linkedIn: 'https://www.linkedin.com/in/terrence-granger/', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Thomas Reeder', - email: 'thomaseugenereeder@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thomas-reeder/', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer, Full Stack', - industry: 'Banking', - cities: [], - }, - { - company: 'Capital One', - name: 'Trevor Leung', - email: 'trevorleeeung@gmail.com', - linkedIn: 'https://www.linkedin.com/in/trevleung/', - campus: 'LA', - cohort: '47', - jobTitle: 'Software Engineer, Full Stack', - industry: 'Finance/Banking', - cities: [], - }, - { - company: 'Capital One', - name: 'Vivian Wu', - email: 'Vivian.wu.here@gmail.com', - linkedIn: 'https://www.linkedin.com/in/viv-wu', - campus: 'LA', - cohort: '44', - jobTitle: 'Solutions Engineer', - industry: 'Healthcare fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Vicki Yang', - email: 'vwyangdev@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vwyang/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Senior Software Engineer', - industry: 'Financial Services', - cities: [], - }, - { - company: 'Capital One', - name: 'Walker Marsh', - email: 'walkermarsh9@gmail.com', - linkedIn: 'https://www.linkedin.com/in/WalkerVEMarsh/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Software Engineer, Full Stack', - industry: 'Fintech/ Banking', - cities: [], - }, - { - company: 'Capital One', - name: 'Kevin Richardson', - email: 'kevin@karcodes.com', - linkedIn: 'https://www.linkedin.com/in/kevinalexrichardson/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Senior Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Capital One', - name: 'Michael Benliyan', - email: 'michaelbenliyan@gmail.com', - linkedIn: 'michaelbenliyan', - campus: 'LA / WCRI', - cohort: '55', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Nathan Cho', - email: 'nathan.y.cho@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nathanycho', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Martin Ng', - email: 'kamartinng@gmail.com', - linkedIn: 'https://www.linkedin.com/in/martinngsf/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Senior Full Stack Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One', - name: 'Honghao sun', - email: 'sunhonghaoshh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/honghaosunmichael/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Senior Fullstack Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Capital One Bank', - name: 'Donald Cross', - email: 'derekcrosslu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/crossderek/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Front End Engineer', - industry: 'Finance', - cities: [], - }, - { - company: 'Capital Rx', - name: 'Htin Linn Aung', - email: 'htinlinnag1993@gmail.com', - linkedIn: 'https://www.linkedin.com/in/htinlinnaung/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Senior Fullstack Software Engineer', - industry: 'Healthcare Tech', - cities: [], - }, - { - company: 'Capital Rx', - name: 'Jin Qin', - email: 'jxq32@case.edu', - linkedIn: 'https://www.linkedin.com/in/jcqin/', - campus: 'FTRI', - cohort: '1', - jobTitle: 'Senior Fullstack Developer', - industry: 'Health Care', - cities: [], - }, - { - company: 'Caraway Health', - name: 'Gwendolyn (Gwen) Phillips', - email: 'gwen.phil@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gwen-phillips/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Full Stack Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Carbon Mapper', - name: 'Zach Franz', - email: 'zachafranz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/zacharyfranz/', - campus: 'NYC', - cohort: '4', - jobTitle: 'Software Engineer', - industry: 'Research', - cities: [], - }, - { - company: 'Care/of', - name: 'Jake Pino', - email: 'Jakepino@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/jake-pino', - campus: 'NYC', - cohort: '30', - jobTitle: 'Senior Software Engineer', - industry: 'Wellness', - cities: [], - }, - { - company: 'Care/of', - name: 'Malika Butler', - email: 'missemmbutler@gmail.com', - linkedIn: 'https://www.linkedin.com/in/malikabutler', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Health tech', - cities: [], - }, - { - company: 'CareDox', - name: 'Christine Choi', - email: 'christine.yj.choi@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christineyjchoi/', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Retail', - cities: [], - }, - { - company: 'Carrot Fertility', - name: 'Heather Barney', - email: 'heather.barney@gmail.com', - linkedIn: 'https://www.linkedin.com/in/heather-barney1/', - campus: 'PTRI', - cohort: '4', - jobTitle: 'Associate Software Engineer', - industry: 'Insurance', - cities: [], - }, - { - company: 'Cassian Solutions, Inc.', - name: 'Darin Ngau', - email: 'darin.ngau@gmail.com', - linkedIn: 'https://www.linkedin.com/in/darin-ngau/', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Cast & Crew', - name: 'Tianhao Yao', - email: 'mapleseventh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tianhao-yao-2021826a/', - campus: 'LA', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'cast and crew', - name: 'Sam Selfridge', - email: 'sirclesam@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/sam-selfridge/', - campus: 'LA', - cohort: '28', - jobTitle: 'software engineer', - industry: 'fintech/entertainment', - cities: [], - }, - { - company: 'Cast.app', - name: 'Robert Maeda', - email: 'rob.maeda3@gmail.com', - linkedIn: 'https://www.linkedin.com/in/robert-maeda/', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Catchpoint', - name: 'Neyser Zana', - email: 'neyserj.zana@gmail.com', - linkedIn: 'https://www.linkedin.com/in/neyser-zana-860018152/', - campus: 'NYC', - cohort: '7', - jobTitle: 'Software Engineer II', - industry: 'Advertising', - cities: [], - }, - { - company: 'Causebox', - name: 'Grace Kim', - email: 'gracekiim@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gracekiim/', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Engineer', - industry: 'Consumer products', - cities: [], - }, - { - company: 'CB Insights', - name: 'Hazel Na', - email: 'hazel.na3@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hyeseon-na', - campus: 'NYC', - cohort: '27', - jobTitle: 'Software Engineer III - Frontend', - industry: 'business analytics platform', - cities: [], - }, - { - company: 'CBTS - CVS', - name: 'Chang Shuen Lee', - email: 'changshuen.lee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/daveelee/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Frontend Software Engineer', - industry: 'Health', - cities: [], - }, - { - company: 'Cecelia Health', - name: 'Kwadwo Asamoah', - email: 'addoasa94@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kwadwoasamoah', - campus: 'NYC', - cohort: '12', - jobTitle: 'Front End Engineer', - industry: 'Health', - cities: [], - }, - { - company: 'Cedars-Sinai Cancer', - name: 'William Chu', - email: 'Williamchu9@gmail.com', - linkedIn: 'https://www.linkedin.com/in/williamchu9/', - campus: 'LA', - cohort: '49', - jobTitle: 'Software Engineer/Programming Analyst', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Cenith Innovations', - name: 'Serena Amos', - email: 'amos.serena17@gmail.com', - linkedIn: 'https://www.linkedin.com/in/serena-amos/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Software Engineer', - industry: 'Aerospace', - cities: [], - }, - { - company: 'Centene', - name: 'Serena Romano', - email: 'serenahromano2000@gmail.com', - linkedIn: 'https://www.linkedin.com/in/srom1/', - campus: 'NYC / ECRI', - cohort: '41', - jobTitle: 'Full Stack Developer', - industry: 'Healthtech/Healthcare', - cities: [], - }, - { - company: 'Cequint', - name: 'Carol Xia', - email: 'c.xia.98@gmail.com', - linkedIn: 'linkedin.com/in/carolxia2', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Software Development Engineer', - industry: 'Telecommunications', - cities: [], - }, - { - company: 'Cerebral', - name: 'Irine Kang', - email: 'irine.kang@codesmith.io', - linkedIn: 'https://www.linkedin.com/in/irinekang/', - campus: 'FTRI', - cohort: '6', - jobTitle: 'Full Stack Engineer II', - industry: 'Medicine', - cities: [], - }, - { - company: 'CH Robinson', - name: 'Joseph Cheng', - email: 'josephcheng.y@gmail.com', - linkedIn: 'https://www.linkedin.com/in/josephcheng-y/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Engineer', - industry: 'Logistic', - cities: [], - }, - { - company: 'Chainalysis', - name: 'Natalia Vargas-Caba', - email: 'nvargas@gm.slc.edu', - linkedIn: 'https://www.linkedin.com/in/nataliavargascaba', - campus: 'NYC', - cohort: '17', - jobTitle: 'Technical Writer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Chainguard', - name: 'Felipe Ocampo', - email: 'felipe.aocampo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ocampofelipe/', - campus: 'LA / WCRI', - cohort: '56', - jobTitle: 'Web Developer', - industry: 'Marketing/Advertising', - cities: [], - }, - { - company: 'Chainlink', - name: 'Finley Decker', - email: 'finleydecker@gmail.com', - linkedIn: 'https://www.linkedin.com/in/finleydecker/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Software Engineer', - industry: 'Blockchain/Web3', - cities: [], - }, - { - company: 'Change Healthcare', - name: 'Bruce Wong', - email: 'dbrucewong@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dawong/', - campus: 'LA', - cohort: '29', - jobTitle: 'Senior Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Change Healthcare', - name: 'Billy K Lee', - email: 'ucanfindbillie@gmail.com', - linkedIn: 'https://www.linkedin.com/in/billy-k-lee/', - campus: 'LA', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Change Healthcare.', - name: 'Noah Lee', - email: 'no@hlee.me', - linkedIn: 'https://www.linkedin.com/in/justnoah/', - campus: 'LA', - cohort: '27', - jobTitle: 'Software Engineer.', - industry: 'Healthcare.', - cities: [], - }, - { - company: 'Chargebacks911', - name: 'Chandni Patel', - email: 'chandnip6@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chandnip6/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Chargebee Retention', - name: 'Abhi Krishnan', - email: 'krabhishaken@gmail.com', - linkedIn: 'https://www.linkedin.com/in/krabhishaken/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Senior Software Engineer', - industry: 'Subscription Tech', - cities: [], - }, - { - company: 'Chariot', - name: 'Weilan Cui', - email: 'weilanc@gmail.com', - linkedIn: 'https://www.linkedin.com/in/weilan-cui', - campus: 'NYC', - cohort: '24', - jobTitle: 'Founding engineer', - industry: 'Software as a service', - cities: [], - }, - { - company: 'Charles River', - name: 'Josh Howard', - email: 'JoshHoward.Dev@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joshhowarddev/', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Full Stack Developer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Charles Schwab', - name: 'Troy Witonsky', - email: 'troywitonsky@gmail.com', - linkedIn: 'https://www.linkedin.com/in/troy-witonsky', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Enterprise Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Chattanooga Shooting Supplies', - name: 'Zach Hall', - email: 'zachh85@gmail.com', - linkedIn: 'linkedin.com/in/z-r-hall', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Senior Application Developer', - industry: 'Retail', - cities: [], - }, - { - company: 'Cheddar Media', - name: 'David Neuhaus', - email: 'david@neuha.us', - linkedIn: 'https://www.linkedin.com/in/dneuhaus/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Sr Software Engineer', - industry: 'Media / News', - cities: [], - }, - { - company: 'Chegg, Inc', - name: 'Kate Matthews', - email: 'katesmatthews@gmail.com', - linkedIn: 'https://www.linkedin.com/in/katesmatthews/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Software Engineer', - industry: 'EdTech', - cities: [], - }, - { - company: 'Chewy', - name: 'Lucy Chi', - email: 'lucycchi@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chilucy/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Tech Consulting, Client is in HealthTech', - cities: [], - }, - { - company: 'Chewy', - name: 'Joseph Nagy', - email: 'nagyjoseph29@gmail.com', - linkedIn: 'https://www.linkedin.com/in/josephmnagy/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'E-commerce', - cities: [], - }, - { - company: 'Chief', - name: 'Tim Ruszala', - email: 'truszala@gmail.com', - linkedIn: 'https://www.linkedin.com/in/timruszala/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Fullstack Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Chipper Cash', - name: 'Sean Lee', - email: 'lee.sw.sean@gmail.com', - linkedIn: 'https://www.linkedin.com/in/seanleesw', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Choose Ketamine', - name: 'Eric Komatsu', - email: 'eric@cpgexperience.com', - linkedIn: 'https://www.linkedin.com/in/eric-komatsu/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Lead Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Chopra Global', - name: 'Jonathon Gonzalez', - email: 'gonzalezjonathon55@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonathon-gonzalez/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Backend Engineer', - industry: 'Health & Wellness', - cities: [], - }, - { - company: 'Chopra Global', - name: 'Josh Naso', - email: 'jnaso29@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joshnaso/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Web Developer', - industry: 'Meditation/self-care', - cities: [], - }, - { - company: 'ChromaCode', - name: 'Edwin Menendez', - email: 'edwinjmenendez@gmail.com', - linkedIn: 'https://www.linkedin.com/in/edwinmenendez/', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Bio-Tech', - cities: [], - }, - { - company: 'Chubb insurance', - name: 'Robert Hernandez', - email: 'Rob23Hernandez@gmail.com', - linkedIn: 'https://www.linkedin.com/in/robhernandeznyc/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: [], - }, - { - company: 'Cigna', - name: 'JC Fernandez', - email: 'jorgecarlosfern@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jorge-carlos-fernandez/', - campus: 'LA', - cohort: '42', - jobTitle: 'Full Stack Engineer', - industry: 'Health Care', - cities: [], - }, - { - company: 'CIMx', - name: 'Christian Springer', - email: 'christian@christianspringer.com', - linkedIn: 'https://www.linkedin.com/in/christian-springer0/', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'CircleCI', - name: 'Ai Mi Bui', - email: 'Aimibui22@gmail.com', - linkedIn: 'https://www.linkedin.com/in/aimibui/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Software Engineer', - industry: 'Software', - cities: [], - }, - { - company: 'CircleCI', - name: 'Jeff Chen', - email: 'contact.jeffchen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jalexchen/', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Development Engineer', - industry: 'Tech', - cities: [], - }, - { - company: 'CircleCI', - name: 'Tony Shen', - email: 'tshen815@live.com', - linkedIn: 'https://www.linkedin.com/in/tonyShen815/', - campus: 'LA', - cohort: '35', - jobTitle: 'Software Engineer', - industry: 'Computer Software/Tech', - cities: [], - }, - { - company: 'CircleCI', - name: 'Tyler Sullberg', - email: 'tysullberg@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tyler-sullberg/', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Dev Ops', - cities: [], - }, - { - company: 'Cisco', - name: 'Laura Llano', - email: 'ldllano@gmail.com', - linkedIn: 'https://www.linkedin.com/in/laura-llano', - campus: 'NYC', - cohort: '26', - jobTitle: 'Software Engineering', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Cisco Systems, Inc.', - name: 'Egon Levy', - email: 'egonlevy@gmail.com', - linkedIn: 'https://www.linkedin.com/in/egon-levy-8b62aa1b0/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Senior Software Engineer', - industry: 'Computer Engineering', - cities: [], - }, - { - company: 'Citi', - name: 'Max Heubel', - email: 'maxhuebel@gmail.com', - linkedIn: 'https://www.linkedin.com/in/max-heubel/', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Sr. Programmer Analyst', - industry: 'Fintech', - cities: [], - }, - { - company: 'Citi (Citicorp Credit Services, Inc.)', - name: 'Reland Boyle', - email: 'reland.boyle@gmail.com', - linkedIn: 'https://www.linkedin.com/in/relandboyle/', - campus: 'FTRI', - cohort: '4', - jobTitle: - 'Digital Software Engineer / Senior Analyst - C12, Assistant Vice President of Matrix Reportingโ€‹', - industry: 'Fintech', - cities: [], - }, - { - company: 'Cityblock', - name: 'Oluwajomiloju Olaode', - email: 'jojuolaode@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jojuolaode/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Senior Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Civera', - name: 'Hank McGill', - email: 'henrymcgill@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hank-mcgill/', - campus: 'NYOI', - cohort: '4', - jobTitle: 'Data Engineering Fellow', - industry: 'Government', - cities: [], - }, - { - company: 'CivilGrid', - name: 'Jack Moorman', - email: 'johnmoormaniii@gmail.com', - linkedIn: 'www.linkedin.com/in/jack-moorman', - campus: 'FTRI / CTRI', - cohort: '14', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Classy', - name: 'Kim Spicer', - email: 'Kspicerny@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kimberleyspicer/', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer', - industry: 'Software', - cities: [], - }, - { - company: 'Clear', - name: 'Nate Adams', - email: 'NathanielBAdams@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adamsnathaniel/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Software Engineer', - industry: 'Biometrics / Security services', - cities: [], - }, - { - company: 'Clear Capital', - name: 'Sean Haverstock', - email: 'seanhaverstock@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sean-haverstock/', - campus: 'LA', - cohort: '37', - jobTitle: 'Associate Software Engineer', - industry: 'Fintech, Real Estate', - cities: [], - }, - { - company: 'Clevyr', - name: 'Michael Watson', - email: 'mdwatson988@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mdwatson988/', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Jr. Software Developer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Clicktripz', - name: 'Bryan Bart', - email: 'bart.bryan.e@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bryan-bart/', - campus: 'LA', - cohort: '48', - jobTitle: 'Software Engineer', - industry: 'Travel Technology', - cities: [], - }, - { - company: 'Clover', - name: 'Michael Trapani', - email: 'mtrapani27@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael-a-trapani/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Web Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'ClubLabs', - name: 'Natlyn Phomsavanh', - email: 'natlynp@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'Insurance/Travel', - cities: [], - }, - { - company: 'ClubLabs', - name: 'Talya Sasek', - email: 'talyaercag@gmail.com', - linkedIn: 'https://www.linkedin.com/in/talyasasek/', - campus: 'LA', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: [], - }, - { - company: 'CoachEm', - name: 'Matthew Garza', - email: 'mattg614@gmail.com', - linkedIn: 'https://www.linkedin.com/in/garzamatte/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Full Stack Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Coates Group', - name: 'Paul Kim', - email: 'paulkim0209@gmail.com', - linkedIn: 'https://www.linkedin.com/in/paul-kim-37735b217', - campus: 'NYC / ECRI', - cohort: '41', - jobTitle: 'Backend Engineer', - industry: 'Business Tech/Enterprise Tech', - cities: [], - }, - { - company: 'Cobalt.io', - name: 'Karl Richards', - email: 'krichards175@gmail.com', - linkedIn: 'https://www.linkedin.com/in/krichards175/', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Data Engineer', - industry: 'Security', - cities: [], - }, - { - company: 'Cobble', - name: 'Matt Peters', - email: 'matt@mpeters.io', - linkedIn: 'https://www.linkedin.com/in/mattgpeters', - campus: 'NYC', - cohort: '16', - jobTitle: 'Frontend Engineer', - industry: 'Leisure, Travel & Tourism', - cities: [], - }, - { - company: 'Code Climate', - name: 'Margaret Ma', - email: 'margaretma00@gmail.com', - linkedIn: 'https://www.linkedin.com/in/margaret-ma/', - campus: 'NYC', - cohort: '3', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Coder', - name: 'Michael Smith', - email: 'throwawayclover@gmail.com', - linkedIn: 'www.linkedin.com/in/michael-eric-smith', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Software Engineer', - industry: 'Software Solutions/Developer Tools', - cities: [], - }, - { - company: 'Codesmith', - name: 'Terry L. Tilley', - email: 'terryltilley@gmail.com', - linkedIn: 'https://www.linkedin.com/in/t-l-tilley/', - campus: 'LA', - cohort: '44', - jobTitle: 'Instruction Training Manager', - industry: 'Software/Tech', - cities: [], - }, - { - company: 'Cofebe', - name: 'Seong Choi', - email: 'choies921003@gmail.com', - linkedIn: 'https://www.linkedin.com/in/seongchoi/', - campus: 'LA', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Computer Software', - cities: [], - }, - { - company: 'Cognizant', - name: 'Scott Burman', - email: 'Scottburs@gmail.com', - linkedIn: 'https://www.linkedin.com/in/scottburman847/', - campus: 'LA', - cohort: '39', - jobTitle: 'Senior Developer', - industry: 'Technology', - cities: [], - }, - { - company: 'Cohere AI', - name: 'Zahara Aviv ', - email: 'zahara.aviv@gmail.com', - linkedIn: 'https://linkedIn.com/in/zahara-aviv', - campus: 'NYC / ECRI', - cohort: '38', - jobTitle: 'Senior Full Stack Engineer ', - industry: 'Artificial Intelligence', - cities: [], - }, - { - company: 'CoinCircle', - name: 'Andrew Fuselier', - email: 'theandewlarry@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andrewfuselier/', - campus: 'LA', - cohort: '19', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Collective Health', - name: 'Daryl Foster', - email: 'dmafoster@gmail.com', - linkedIn: 'https://www.linkedin.com/in/darylfosterma/', - campus: 'LA', - cohort: '42', - jobTitle: 'Senior Frontend Engineer', - industry: 'Health Tech (Healthplan Administration for 1000 plus employee companies)', - cities: [], - }, - { - company: 'Colliers - Contract position through Hays', - name: 'Pauline Nguyen', - email: 'Paulinekpn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/paulineknguyen/', - campus: 'LA / WCRI', - cohort: '55', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Comcast', - name: 'Brian Chiang', - email: 'brianchiang2008@gmail.com', - linkedIn: 'linkedin.com/in/brian-chiang4', - campus: 'LA / WCRI', - cohort: '48', - jobTitle: 'Software Engineer', - industry: 'Media', - cities: [], - }, - { - company: 'Comcast', - name: 'Darwin Sinchi', - email: 'dsinchi19@gmail.com', - linkedIn: 'https://www.linkedin.com/in/darwin-m-sinchi/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer', - industry: 'TeleCom', - cities: [], - }, - { - company: 'Comcast', - name: 'Matthew Francis', - email: 'mbfrancis7@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mbfrancis7/', - campus: 'NYC', - cohort: '7', - jobTitle: 'Software Developer', - industry: '', - cities: [], - }, - { - company: 'Comcast', - name: 'Yong-Nicholas Alexander Kim', - email: 'yongnicholaskim@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yongnicholaskim/', - campus: 'NYC', - cohort: '7', - jobTitle: 'Node.js Engineer', - industry: 'Commercial Services', - cities: [], - }, - { - company: 'CommonBond', - name: 'Nathan Bargers', - email: 'nbargers@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nathan-bargers/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Finance', - cities: [], - }, - { - company: 'Community Attributes Inc', - name: 'Carter Long', - email: 'crlong7@gmail.com', - linkedIn: 'https://www.linkedin.com/in/carterrobertlong/', - campus: 'FTRI / CTRI', - cohort: '15', - jobTitle: 'Full Stack Developer', - industry: 'Consulting', - cities: [], - }, - { - company: 'Compass', - name: 'Casey Walker', - email: 'casey.e.walker@gmail.com', - linkedIn: 'https://www.linkedin.com/in/caseyewalker', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer II', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Compass', - name: 'Liam McBride', - email: 'liameno16@gmail.com', - linkedIn: 'https://www.linkedin.com/in/liamemcbride/', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Compass', - name: 'Sierra Swaby', - email: 'Sierra.swaby@gmail.com', - linkedIn: 'https://www.linkedin.com/in/Sierra-swaby', - campus: 'NYC', - cohort: '12', - jobTitle: 'Creative Developer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Compliancy Group', - name: 'Bruno Albero', - email: 'alberobruno@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alberobruno/', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Conagra Brands', - name: 'Scott Hallock', - email: 'scott.hallock@gmail.com', - linkedIn: 'https://www.linkedin.com/in/scottjhallock', - campus: 'FTRI / CTRI', - cohort: '16', - jobTitle: 'Senior Software Engineer', - industry: 'Food/Beverage/Restaurant', - cities: [], - }, - { - company: 'Concert Health', - name: 'Raubern Totanes', - email: 'rstotanes@g.ucla.edu', - linkedIn: 'https://www.linkedin.com/in/rauberntotanes/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Software Development Engineer', - industry: 'Health Tech', - cities: [], - }, - { - company: 'Contracting for Perspecta Labs via Roc Search via Precision Global Consulting', - name: 'Ben Mizel', - email: 'ben.mizel@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ben-mizel/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Back End Software Engineer', - industry: 'Defense', - cities: [], - }, - { - company: 'Core Business Technology', - name: 'Jason Hwang', - email: 'hwangja1019@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jason-jh-hwang/', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Associate Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Core Digital Media', - name: 'Edward Greenberg', - email: 'ed.w.greenberg@gmail.com', - linkedIn: 'https://www.linkedin.com/in/edwgreenberg/', - campus: 'NYC', - cohort: '14', - jobTitle: 'Senior Web Developer', - industry: 'Software', - cities: [], - }, - { - company: 'Cosm', - name: 'Shana Hoehn', - email: 'Shanahoehn@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer', - industry: 'Entertainment technology', - cities: [], - }, - { - company: 'Costa Farms LLC', - name: 'Ernesto Gonzalez', - email: 'egonzalez442@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ernesto-gonzalez123', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'Agriculture Science', - cities: [], - }, - { - company: 'CoStar', - name: 'Prasad Pulaguntla', - email: 'prasad.pul@gmail.com', - linkedIn: 'https://www.linkedin.com/in/prasad-pulaguntla/', - campus: 'FTRI', - cohort: '2', - jobTitle: 'Lead Software Engineer', - industry: 'Commercial Real Estate', - cities: [], - }, - { - company: 'CoStar Group', - name: 'Alan Richardson', - email: 'alanrichardson723@gmail.com', - linkedIn: '', - campus: 'NYC / ECRI', - cohort: '29', - jobTitle: 'Associate Software Engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'CoStar Group', - name: 'Julian Kang', - email: 'julianswkang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/julianswkang', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Software Engineer II', - industry: 'Real Estate', - cities: [], - }, - { - company: 'CoStar Group', - name: 'Kevin Berlanga', - email: 'kvnberlanga@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kevinberlanga/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Software Engineer II', - industry: 'Real Estate', - cities: [], - }, - { - company: 'CoStar Group', - name: 'Ruzeb Chowdhury', - email: 'ruzeb1996@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ruzebchowdhury/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Frontend Engineer', - industry: 'Commercial Real Estate', - cities: [], - }, - { - company: 'Coursetune', - name: 'John Maltese', - email: 'john.maltese@gmail.com', - linkedIn: 'https://www.linkedin.com/in/john-maltese/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Senior Software Engineer/Web App Architect', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Courted', - name: 'Sett Hein', - email: 'settnaing199@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sett-hein/', - campus: 'FTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Cox Automotive', - name: 'Tarik Mokhtech', - email: 'tarik.mokhtech@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tarik-mokhtech/', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Software Engineer II', - industry: 'Automotive', - cities: [], - }, - { - company: 'Cox Automotive', - name: 'Tarik Mokhtech', - email: 'tarik.mokhtech@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tarik-mokhtech/', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Software Engineer II', - industry: 'Automotive', - cities: [], - }, - { - company: 'Credera', - name: 'Nisa Lintakoon', - email: 'nisa.lintakoon@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nisalintakoon', - campus: 'FTRI', - cohort: '1', - jobTitle: 'Technology Solutions Consultant', - industry: 'Consulting', - cities: [], - }, - { - company: 'Crescita', - name: 'Gordon Campbell', - email: 'gordonspencer.c@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '14', - jobTitle: 'Software Engineer', - industry: 'VC', - cities: [], - }, - { - company: 'Cricket Health', - name: 'Lina Shin', - email: 'rxlina01@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rxlina/', - campus: 'LA', - cohort: '45', - jobTitle: 'Fullstack Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Crisis Text Line', - name: 'Chan Choi', - email: 'chanychoi93@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chan-choi/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Software Engineer', - industry: 'Mental Health Services', - cities: [], - }, - { - company: 'Crocs', - name: 'Mark Charles Smith', - email: 'markcharlessmith@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mark-charles-smith/', - campus: 'NYC / ECRI', - cohort: '31', - jobTitle: 'Senior React Developer', - industry: 'Consumer Goods: Fashion', - cities: [], - }, - { - company: 'Crossbeam', - name: 'Harrison Cramer', - email: 'Harrisoncramer@gmail.com', - linkedIn: 'https://www.linkedin.com/in/harrison-cramer', - campus: 'NYC', - cohort: '27', - jobTitle: 'Software engineer', - industry: 'SaaS', - cities: [], - }, - { - company: 'Crossbeam', - name: 'Aryeh Kobrinsky', - email: 'shmaryeh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/aryehkobrinsky/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer', - industry: 'Data Analytics', - cities: [], - }, - { - company: 'Crossover Health', - name: 'Heather Friedman', - email: 'hfried25@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hgfriedman/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Senior Software Engineer', - industry: 'Health', - cities: [], - }, - { - company: 'Crossover Health', - name: 'Taylor Riley Du', - email: 'taylor.r.du@gmail.com', - linkedIn: 'https://www.linkedin.com/in/taylordu/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Crowdstrike', - name: 'yi bo (eddie) wang', - email: 'eddiewang12345@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eddie-wang2/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Software Developer', - industry: 'Cybersecurity', - cities: [], - }, - { - company: 'Crowley', - name: 'Alina Gasperino', - email: 'alina.gasperino@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alinagasperino/', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Software Engineer III', - industry: 'Other', - cities: [], - }, - { - company: 'Crown Sterling', - name: 'Shirin Davis', - email: 'Shirinlittle94@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '39', - jobTitle: 'Software engineer', - industry: 'Cryptography', - cities: [], - }, - { - company: 'CrunchyBananas', - name: 'Corey Morrison', - email: 'corey.neil.morrison@gmail.com', - linkedIn: 'https://www.linkedin.com/in/corey-morrison', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Consulting', - cities: [], - }, - { - company: 'Crunchyroll', - name: 'Brit Lim', - email: 'britsta92@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brit-lim/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Full Stack Software Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'CSI Interfusion', - name: 'Snow Bai', - email: 'xueapp@gmail.com', - linkedIn: 'https://www.linkedin.com/in/xuebaiprofile/', - campus: 'LA / WCRI', - cohort: '55', - jobTitle: 'Fullstack Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Culture Biosciences', - name: 'Savitri Beaver', - email: 'savitribeaver@gmail.com', - linkedIn: 'https://www.linkedin.com/in/savitribeaver', - campus: 'FTRI', - cohort: '3', - jobTitle: 'Software Engineer I', - industry: 'Biotech', - cities: [], - }, - { - company: 'Curia.ai', - name: 'Young Min Lee', - email: 'youngmineeh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/youngminlee-/', - campus: 'LA', - cohort: '48', - jobTitle: 'Senior Software Engineer', - industry: 'Healthcare, AI', - cities: [], - }, - { - company: 'Currency', - name: 'Jason Wong', - email: 'jwaosnogn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jwong1995/', - campus: 'LA', - cohort: '25', - jobTitle: 'Full Stack Developer', - industry: '', - cities: [], - }, - { - company: 'Cutover', - name: 'Paul Rhee', - email: 'youjun27@gmail.com', - linkedIn: 'https://www.linkedin.com/in/prheee', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'CVS', - name: 'Mario Eldin', - email: 'marioeldin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/marioeldin/', - campus: 'LA', - cohort: '40', - jobTitle: 'Software Engineer', - industry: 'Health/Insurance', - cities: [], - }, - { - company: 'CVS', - name: 'Vinh Chau', - email: 'vchau511@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vinh-chau/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Software Engineer', - industry: 'Pharmacy', - cities: [], - }, - { - company: 'CVS Health', - name: 'Connor Bovino', - email: 'connor.bovino@gmail.com', - linkedIn: 'https://www.linkedin.com/in/connor-bovino/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Fullstack Node.js Developer (Software Engineer)', - industry: 'Health', - cities: [], - }, - { - company: 'CVS Health', - name: 'Satyam sheth', - email: 'Snsheth55@gmail.com', - linkedIn: 'https://www.linkedin.com/in/satyamsheth55/', - campus: 'NYC', - cohort: '5', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'CVS Health', - name: 'Windu Sayles', - email: 'Windu.Sayles@gmail.com', - linkedIn: 'https://www.linkedin.com/in/windusayles/', - campus: 'LA', - cohort: '40', - jobTitle: 'Full Stack Node Developer', - industry: 'Health', - cities: [], - }, - { - company: 'CVS Health/ Aetna', - name: 'Miklos Kertesz', - email: 'mikloslkertesz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mikl%C3%B3s-kert%C3%A9sz/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Data Engineer - Web UI Engineer', - industry: 'health', - cities: [], - }, - { - company: 'Cyber Popup', - name: 'Stephen Fitzsimmons', - email: 'smf0211@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stephenfitzsimmons', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Lead Full Stack Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Cybereason', - name: 'Phoebe Ermert', - email: 'phoebeermert@gmail.com', - linkedIn: 'https://www.linkedin.com/in/phoebe-ermert/', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Full Stack Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Cyborg, Inc', - name: 'Jim Armbruster', - email: 'JMArmbruster@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jim-armbruster/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Full-Stack Engineer', - industry: 'Computer Software', - cities: [], - }, - { - company: 'Cyderes', - name: 'Giovanni Flores-Lovo', - email: 'giovanniflores.l@gmail.com', - linkedIn: 'https://www.linkedin.com/in/giovanni-flores-lovo-11a288232/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Engineer', - industry: 'Security', - cities: [], - }, - { - company: 'Dandy', - name: 'Aram Krakirian', - email: 'aramkrakirian@gmail.com', - linkedIn: 'https://www.linkedin.com/in/aram-krakirian/', - campus: 'LA', - cohort: '47', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Data Intelligence', - name: 'Jimmy Mei', - email: 'Jimmy27mei@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jimmymei/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Full Stack Engineer', - industry: 'Tech consultant', - cities: [], - }, - { - company: 'Data Surge LLC', - name: 'Hang Xu', - email: 'hxu009@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hangxu09/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Data Engineer', - industry: 'Data solutions', - cities: [], - }, - { - company: 'Databook', - name: 'Julie Wu', - email: 'scorp_only@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/yu-ting-w/', - campus: 'LA', - cohort: '40', - jobTitle: 'Sr Software Engineer', - industry: 'Sales', - cities: [], - }, - { - company: 'Datacoral', - name: 'Jae Park', - email: 'woojae.jay.park@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Fashion/E-Commerce', - cities: [], - }, - { - company: 'Datametrics', - name: 'Luis Navarro', - email: 'pozhiin@hotmail.com', - linkedIn: 'https://www.linkedin.com/in/luis-e-navarro/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Frontend Developer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'DAZN', - name: 'Leonoor Rinke de Wit', - email: 'lrinkedewit@gmail.com', - linkedIn: 'https://www.linkedin.com/in/leonoorrinkedewit/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Backend Software Engineer', - industry: 'Media', - cities: [], - }, - { - company: 'DealPath', - name: 'Huy Bui', - email: 'huybui.sj@gmail.com', - linkedIn: 'https://www.linkedin.com/in/huyqbui/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Decent Labs', - name: 'Julia Collins', - email: 'Julia.col@protonmail.com', - linkedIn: 'https://www.linkedin.com/in/julia-col', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Full Stack Web3 Engineer', - industry: 'Crypto', - cities: [], - }, - { - company: 'Deloitte', - name: 'Justin Buckner', - email: 'jwbprofessional@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jbuild/', - campus: 'FTRI', - cohort: '3', - jobTitle: 'Consultant - front end developer', - industry: 'Consulting', - cities: [], - }, - { - company: 'Delta Air Lines', - name: 'Joal Kim', - email: 'joalkims@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joal-kim', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Airline', - cities: [], - }, - { - company: 'DeltaMath', - name: 'Hannah McDowell', - email: 'hannah.mcdowell1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hannah-lisbeth-mcdowell/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'DeMark Analytics LLC', - name: 'SEUNGHO BAEK', - email: 'shbaek115@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Engineer', - industry: 'Software & Tech services', - cities: [], - }, - { - company: 'Dematic', - name: 'Liang Wen (Rocky) Lin', - email: 'liangwen511@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rocky-lin/', - campus: 'NYC', - cohort: '14', - jobTitle: 'Senior Software Engineer', - industry: 'Manufacturing and Distribution', - cities: [], - }, - { - company: 'Dendi Software', - name: 'Ozair Ghulam', - email: 'Ozairghulam4@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ozair-ghulam', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Forward deployed software engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Denizen', - name: 'Greg Domingue', - email: 'Greg.domingue1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/greg-domingue', - campus: 'LA', - cohort: '23', - jobTitle: 'Full Stack Software Engineer', - industry: 'International Banking', - cities: [], - }, - { - company: 'Density', - name: 'Timothy Weidinger', - email: 'timothy.weidinger@gmail.com', - linkedIn: 'https://www.linkedin.com/in/timweidinger/', - campus: 'NYC / ECRI', - cohort: '41', - jobTitle: 'Senior Full Stack Software Engineer', - industry: 'Data/Analytics/Cloud', - cities: [], - }, - { - company: 'Derivco Sports', - name: 'Denny Temple', - email: 'denny.temple@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dentemple/', - campus: 'NYC', - cohort: '6', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Destination Pet', - name: 'Nicholas Jordan Brush', - email: 'njbrush@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nicholas-j-brush?trk=people-guest_people_search-card', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer', - industry: 'Pet healthcare', - cities: [], - }, - { - company: 'DexCare', - name: 'Nhan Ly', - email: 'nhansense1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nhanly/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Healthtech', - cities: [], - }, - { - company: 'Diamond Web Services', - name: 'Ben Gummelt', - email: 'Camaromelt@gmail.com', - linkedIn: 'https://www.linkedin.com/in/benjamingummelt', - campus: 'LA', - cohort: '20', - jobTitle: 'Full stack software engineer', - industry: '', - cities: [], - }, - { - company: 'Diamond Web Services', - name: 'Gregory Palasciano', - email: 'greg.palasciano@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gregory-palasciano/', - campus: 'LA', - cohort: '36', - jobTitle: 'Fullstack Engineer', - industry: 'Entertainment/Consulting', - cities: [], - }, - { - company: 'Diamond Web Services', - name: 'Jonathan Perera', - email: 'Jon.p@codesmith.io', - linkedIn: 'https://www.linkedin.com/in/japerera/', - campus: 'LA', - cohort: '22', - jobTitle: 'Developer', - industry: '', - cities: [], - }, - { - company: 'Diana Health', - name: 'Jackson Dahl', - email: 'jacksondahl27@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jackson-dahl/', - campus: 'NYOI', - cohort: '4', - jobTitle: 'Full Stack Software Engineer', - industry: 'Healthtech/Healthcare', - cities: [], - }, - { - company: "Dick's Sporting Goods", - name: 'Brian Hon', - email: 'brianwhon@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brianwhon/', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Retail', - cities: [], - }, - { - company: 'DigiCert', - name: 'James M Espy II', - email: 'jespy2@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jamesespy/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'digital certificates / security', - cities: [], - }, - { - company: 'Digilock', - name: 'Aaron Yang', - email: 'aaronyang024@gmail.com', - linkedIn: 'https://www.linkedin.com/in/aaronyang24/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Electronic Manufacturing', - cities: [], - }, - { - company: 'Digital Position', - name: 'Joe Beger', - email: 'jtbeger@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jtbeger/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Developer', - industry: 'SEO', - cities: [], - }, - { - company: 'DigitalOcean', - name: 'Natalia Vargas-Caba', - email: 'nvargascaba@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nataliavargascaba', - campus: 'NYC', - cohort: '17', - jobTitle: 'Technical Editor', - industry: 'Cloud service', - cities: [], - }, - { - company: 'Discord', - name: 'Jacob Richards', - email: 'jacob.richards33@gmail.com', - linkedIn: 'https://www.linkedin.com/in/palgorhythm/', - campus: 'LA', - cohort: '29', - jobTitle: 'Senior Software Engineer', - industry: 'Tech', - cities: [], - }, - { - company: 'Discovery', - name: 'adele calvo', - email: 'adelecalvo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adelecalvo/', - campus: 'NYC', - cohort: '9', - jobTitle: 'Software Engineer I, UI,', - industry: 'Blockchain', - cities: [], - }, - { - company: 'Discovery', - name: 'Sarah t Renshaw', - email: 'strenshaw@gmail.com', - linkedIn: 'https://linkedin.com/in/strenshaw/', - campus: 'NYC', - cohort: '2', - jobTitle: 'Software Engineer I', - industry: 'Music', - cities: [], - }, - { - company: 'Disney Streaming', - name: 'Daniel Palumbo', - email: 'Drpalumbo17@gmail.com', - linkedIn: 'https://www.linkedin.com/in/daniel-palumbo-735715137', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Disney Streaming', - name: 'Nat Heller', - email: 'nat.w.heller@gmail.com', - linkedIn: 'https://www.linkedin.com/in/natwheller/', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Disney Streaming', - name: 'Frank Ma', - email: 'yurenfrankma@gmail.com', - linkedIn: 'https://www.linkedin.com/in/frankma2', - campus: 'LA', - cohort: '25', - jobTitle: 'Sr Frontend and Fullstack Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Disney Streaming Services', - name: 'Casey Escovedo', - email: 'caseyjescovedo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/caseyescovedo/', - campus: 'LA', - cohort: '38', - jobTitle: 'Associate Software Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Disney Streaming Services', - name: 'Mark Marcelo', - email: 'markmarcelo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/markmarcelo/', - campus: 'LA', - cohort: '12', - jobTitle: 'Lead Software Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Disney Streaming Services', - name: 'Rachel Farley', - email: 'rachyl.farley@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rachel-farley/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Associate Software Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Dispense', - name: 'Kerrianne Crawford', - email: 'kerriannercrawford@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kerriannercrawford/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Senior Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Distributed Machines, Inc.', - name: 'William LeGate', - email: 'codesmith@legate.me', - linkedIn: 'https://www.linkedin.com/in/william-legate/', - campus: 'LA', - cohort: '21', - jobTitle: 'CEO, Prediqt', - industry: 'Medical', - cities: [], - }, - { - company: 'DistroKid', - name: 'Jackson Tong', - email: 'jacksonktong@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jacksonktong/', - campus: 'LA', - cohort: '48', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'DMC Inc', - name: 'Shane Yao', - email: 'Shanexinyao@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shanexinyao/', - campus: 'NYC', - cohort: '3', - jobTitle: 'Senior Robotics Engineer', - industry: 'Crypto Fintech', - cities: [], - }, - { - company: 'Dollar Shave Club', - name: 'Vincent Nguyen', - email: 'gvincemail@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vnguyenucla/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer(Contract)', - industry: 'Products', - cities: [], - }, - { - company: 'Dollar Shave Club', - name: 'Ryan Trontz', - email: 'rtrontz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/trontz/', - campus: 'LA', - cohort: '22', - jobTitle: 'Software Engineer, Backend', - industry: '', - cities: [], - }, - { - company: 'Domio', - name: 'Neftali Dominguez', - email: 'n.l.dominguez23@gmail.com', - linkedIn: 'https://www.linkedin.com/in/neftalildominguez/', - campus: 'LA', - cohort: '30', - jobTitle: 'Back end engineer', - industry: 'apartment hotels', - cities: [], - }, - { - company: 'Doorcast', - name: 'James Bui', - email: 'Jamesmdang.bui@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jamesminhbui/', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Senior Fullstack Engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Doorkee', - name: 'Jarred Jack-Harewood', - email: 'jackhajb@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jarred-jack-harewood/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Dottid', - name: 'Brian Grosso', - email: 'bgro63@gmail.com', - linkedIn: 'https://www.linkedin.com/in/newarkBG/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech - Real Estate', - cities: [], - }, - { - company: 'Dr Squatch', - name: 'Ben Cauffman', - email: 'Benjamincauffman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/benjamin-cauffman', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Full Stack Engineer', - industry: 'Retail', - cities: [], - }, - { - company: 'DraftKings', - name: 'Jonnie Oak', - email: 'jonathan.oak28@gmail.com', - linkedIn: 'https://www.linkedin.com/in/oakj28/', - campus: 'LA', - cohort: '45', - jobTitle: 'Software Engineer', - industry: 'Fantasy Sports', - cities: [], - }, - { - company: 'Dray Alliance', - name: 'Hayden Fithyan', - email: 'hayden@fithyan.com', - linkedIn: 'https://www.linkedin.com/in/fithyan/', - campus: 'LA', - cohort: '23', - jobTitle: 'Software Developer II', - industry: '', - cities: [], - }, - { - company: 'Dray Alliance', - name: 'Joshua Wright', - email: 'jwrightbluj@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joshua-w-86758a121/', - campus: 'LA', - cohort: '23', - jobTitle: 'Software Engineer II', - industry: '', - cities: [], - }, - { - company: 'Dreambox Learning', - name: 'Pei-Yun Chu', - email: 'pchu2018@gmail.com', - linkedIn: 'https://www.linkedin.com/in/pei-yun-chu/', - campus: 'PTRI', - cohort: '8', - jobTitle: 'Software Development Engineer - Frontend', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Driven Deliveries', - name: 'Adam Stover', - email: 'adam.jacob.stover@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '31', - jobTitle: 'Software Engineer', - industry: 'Supply Chain & Logistics', - cities: [], - }, - { - company: 'Drizly', - name: 'Diego Vazquez', - email: 'diegovazquezny@gmail.com', - linkedIn: 'https://www.linkedin.com/in/diegovazquezny/', - campus: 'LA', - cohort: '21', - jobTitle: 'Jr. Software Engineer', - industry: 'Food & Beverages', - cities: [], - }, - { - company: 'Dropbox', - name: 'Benjamin Kwak', - email: 'benjamin.h.kwak@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ben-kwak/', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Engineer, Product', - industry: 'Techonology Services', - cities: [], - }, - { - company: 'Dropbox', - name: 'Myounghan Chae', - email: 'chaekmh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chaekmh/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Software Engineer', - industry: 'Cloudtech', - cities: [], - }, - { - company: 'Dropbox', - name: 'Miguel Michel', - email: 'migmic93@gmail.com', - linkedIn: 'https://www.linkedin.com/in/miguel-michel/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Cloud Storage', - cities: [], - }, - { - company: 'Dropps', - name: 'Sonny Nguyen', - email: 'sonnynguyen163@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sn163/', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Developer', - industry: 'Sustainable E-Commerce', - cities: [], - }, - { - company: 'Dstillery', - name: 'Chai Lee', - email: 'imchai@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chai-lee-5a064649/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Software Engineer', - industry: 'Adtech', - cities: [], - }, - { - company: 'Dun & Bradstreet', - name: 'Jack Hall', - email: 'jackvincenthall@gmail.com', - linkedIn: 'https://linkedin.com/in/jackvhall', - campus: 'PTRI', - cohort: '4', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech, Data Analytics', - cities: [], - }, - { - company: 'Dun & Bradstreet', - name: 'Scott Rosen', - email: 'scott.rosen14@gmail.com', - linkedIn: 'https://www.linkedin.com/in/scott-rosen/', - campus: 'LA', - cohort: '17', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'dv01', - name: 'Michelle Herrera', - email: 'mesherrera@aol.com', - linkedIn: 'https://www.linkedin.com/in/mherreradev/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Senior Fullstack Engineer I', - industry: 'Fintech', - cities: [], - }, - { - company: 'Dynamic benchmarking', - name: 'andres jaramillo', - email: 'andresj89@live.com', - linkedIn: 'https://www.linkedin.com/in/andresjaramillo210/', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Software engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Earnest', - name: 'Kai Rilliet', - email: 'kairilliet@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kairilliet/', - campus: 'LA / WCRI', - cohort: '45', - jobTitle: 'Full Stack Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'eBay', - name: 'Ryan Kim', - email: 'ryansukwookim@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tkdryan/', - campus: 'LA', - cohort: '33', - jobTitle: 'Software Engineer', - industry: 'ECcmmerce', - cities: [], - }, - { - company: 'EBSCO', - name: 'Sankari Ayyaluru', - email: 'sankariayyaluru@gmail', - linkedIn: 'https://www.linkedin.com/in/sankari-ayyaluru/', - campus: 'LA / WCRI', - cohort: '48', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Econify', - name: 'Jordan Kelly', - email: 'Jordan.w.kelly@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jordan-k-340257140/', - campus: 'NYC', - cohort: '17', - jobTitle: 'Software Engineer', - industry: 'Consulting', - cities: [], - }, - { - company: 'Econify', - name: 'Jovan Kelly', - email: 'fakeEmail2@fakeEmail.com', - linkedIn: 'https://www.linkedin.com/in/jovankelly', - campus: 'NYC', - cohort: '10', - jobTitle: 'Software developer', - industry: 'Media Consulting', - cities: [], - }, - { - company: 'Edify Labs', - name: 'Scott McInnis', - email: 'scottalyst@gmail.com', - linkedIn: 'https://www.linkedin.com/in/scott-mcinnis/', - campus: 'LA', - cohort: '32', - jobTitle: 'Nodejs Developer', - industry: 'Customer Service', - cities: [], - }, - { - company: 'Edify Labs', - name: 'Tony Lei', - email: 'tony.lei003@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tony-lei/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'NodeJS Developer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'EDUrain', - name: 'Jacob Jurado', - email: 'jakejurado@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jakejurado', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'chief technology officer', - industry: 'Education/Edtech', - cities: [], - }, - { - company: 'Egen', - name: 'Jonathan Escamilla', - email: 'jonathanescamilla1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jon-escamilla/', - campus: 'LA', - cohort: '36', - jobTitle: 'Associate Software Engineer', - industry: 'Tech (Builds solutions for companies - Typically Web Dev)', - cities: [], - }, - { - company: 'Elder Research', - name: 'Ben Huang', - email: 'Byhuang4100@gmail.com', - linkedIn: 'byhuang4100', - campus: 'FTRI / CTRI', - cohort: '14', - jobTitle: 'Data Engineer', - industry: 'Artificial Intelligence', - cities: [], - }, - { - company: 'Elder Research Inc', - name: 'Nick Reardon', - email: 'nickjreardon@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nickjreardon/', - campus: 'PTRI', - cohort: '4', - jobTitle: 'Software Engineer', - industry: 'Consulting', - cities: [], - }, - { - company: 'Elder Tree', - name: 'Stormi Hashimoto', - email: 'stormikhashimoto@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stormikph/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Software Engineer', - industry: 'NA', - cities: [], - }, - { - company: 'eLink Design', - name: 'Tristan Krause', - email: 'yukiokrause@gmail.com', - linkedIn: 'https://www.linkedin.com/in/krausetristan/', - campus: 'FTRI / CTRI', - cohort: '17', - jobTitle: 'Web / Mobile Developer', - industry: 'Design', - cities: [], - }, - { - company: 'Elk Capital Markets', - name: 'Manuel Castro', - email: 'manuel.a.castro1992@gmail.com', - linkedIn: 'https://www.linkedin.com/in/manuel-castro-42466273', - campus: 'NYC', - cohort: '5', - jobTitle: 'Software Engineer', - industry: 'Finance', - cities: [], - }, - { - company: 'Ellie Mae', - name: 'Karen Pinilla', - email: 'pinillakaren11@gmail.com', - linkedIn: 'https://www.linkedin.com/in/karen-pinilla/', - campus: 'LA', - cohort: '28', - jobTitle: 'Software Engineer I', - industry: 'Computer Software', - cities: [], - }, - { - company: 'eMoney', - name: 'Kenneth Hui', - email: 'kennethhui121@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kenneth-hui/', - campus: 'LA', - cohort: '45', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Empire Flippers', - name: 'Rob Wise', - email: 'robertwise1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/robertwise/', - campus: 'PTRI', - cohort: 'Beta', - jobTitle: 'Frontend Engineer', - industry: 'eCommerce', - cities: [], - }, - { - company: 'Empowered Buildings', - name: 'Kevin Dooley', - email: 'kjdooley1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kjdooley1/', - campus: 'NYOI', - cohort: '1', - jobTitle: 'Full-Stack Software Developer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Enlighten', - name: 'Jonathon Garber', - email: 'jgarber2675@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jgarber2675/', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Front End Software Engineer', - industry: 'Security', - cities: [], - }, - { - company: 'Envoy', - name: 'Graham Pierce', - email: 'grahampiercenyc@gmail.com', - linkedIn: 'https://www.linkedin.com/in/graham-a-pierce/', - campus: 'FTRI', - cohort: '3', - jobTitle: 'Software Engineer', - industry: 'Workplace tech', - cities: [], - }, - { - company: 'Enzo Digital', - name: 'Johnny Bryan', - email: 'johnnybryan21@gmail.com', - linkedIn: 'https://www.linkedin.com/in/johnnybryan/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Backend/API Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'EolianVR', - name: 'Henry Halse', - email: 'henryhalse@gmail.com', - linkedIn: 'https://www.linkedin.com/in/henryhalse/', - campus: 'PTRI', - cohort: '8', - jobTitle: 'Backend Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Epic Games', - name: 'Nahuel Arjona Tennerini', - email: 'nahuel.arjona.93@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nahuelarjonadev/', - campus: 'LA', - cohort: '29', - jobTitle: 'Game Systems Programmer', - industry: 'Video Games', - cities: [], - }, - { - company: 'Epic Games (Fortnite)', - name: 'Taylor T Morgan', - email: 'TaylorMorganTTM@gmail.com', - linkedIn: 'https://www.linkedin.com/in/taylormor77la/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Developer', - industry: 'Gaming', - cities: [], - }, - { - company: 'Eqengineered', - name: 'William Ramirez', - email: 'willramirez630@gmail.com', - linkedIn: 'https://www.linkedin.com/in/willramirez528/', - campus: 'LA', - cohort: '43', - jobTitle: 'Senior Technical Consultant', - industry: 'Software Consulting Firm', - cities: [], - }, - { - company: 'Erdos Miller', - name: 'Michael Collier Grant', - email: 'DragonZSG@aol.com', - linkedIn: 'https://www.linkedin.com/in/michaelcolliergrant/', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Firmware Developer', - industry: 'Other', - cities: [], - }, - { - company: 'Ernst & Young', - name: 'Eduardo Maรญllo Conesa', - email: 'eduardomaillo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eduardomaillo/', - campus: 'NYC', - cohort: '2', - jobTitle: 'Senior Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Esri', - name: 'Gilbert Ramirez', - email: 'contemporarygil@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gillramirez/', - campus: 'LA', - cohort: '29', - jobTitle: 'Software Development Engineer', - industry: 'GIS', - cities: [], - }, - { - company: 'ESRI', - name: 'Evan Hilton', - email: 'ehilton1537@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ehilton1537/', - campus: 'LA', - cohort: '33', - jobTitle: 'Software Development Engineer', - industry: 'Geographic Information System', - cities: [], - }, - { - company: 'Esri', - name: 'Elena Conn', - email: 'elenakconn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/elena-conn/', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineering Intern (end date 10/29/21)', - industry: 'Geospatial Engineering (GIS)', - cities: [], - }, - { - company: 'Ethic', - name: 'Andrea Li', - email: 'andrea.li8341@hotmail.com', - linkedIn: 'https://www.linkedin.com/in/andrea-gli/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Frontend Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Ethos Life', - name: 'Alan Lee', - email: 'lee.alan.c12@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alanlee12/', - campus: 'LA', - cohort: '35', - jobTitle: 'Software Engineer, Test', - industry: 'Insurance', - cities: [], - }, - { - company: 'etsy', - name: 'alfonso zamarripa', - email: 'alfonsozam93@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alfonsozamarripa/', - campus: 'NYC', - cohort: '31', - jobTitle: 'software engineer', - industry: 'Retail', - cities: [], - }, - { - company: 'Even', - name: 'Claudio Santos', - email: 'claudiohbsantos@gmail.com', - linkedIn: 'https://www.linkedin.com/in/claudio-santos-5b8134207/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer I', - industry: 'Fintech', - cities: [], - }, - { - company: 'Even Financial', - name: 'Andy Wong', - email: 'andywong.ny@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andywongdev', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Eventbrite', - name: 'Ashley Pean', - email: 'pean.ashley@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ashley-pean/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Software Engineer II', - industry: 'Entertainment', - cities: [], - }, - { - company: 'EventHound', - name: 'Greg Shamalta', - email: 'gregshamalta@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/gregory-shamalta/', - campus: 'LA', - cohort: '23', - jobTitle: 'Founder', - industry: '', - cities: [], - }, - { - company: 'everest', - name: 'Will Hack', - email: 'will.j.hack@gmail.com', - linkedIn: 'https://www.linkedin.com/in/willhack/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Full-Stack Engineer (Sr)', - industry: 'UX Design', - cities: [], - }, - { - company: 'Everest, AI', - name: 'Jordan Long', - email: 'jlong4159@gmail.com', - linkedIn: 'www.linkedin.com/jlongtlw', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Everfi', - name: 'Jacob Ory', - email: 'jacobtory@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/jacobory/', - campus: 'LA', - cohort: '30', - jobTitle: 'Frontend Engineer', - industry: 'Ed Tech', - cities: [], - }, - { - company: 'Exabeam', - name: 'Lisa Tian', - email: 'lisatian8@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lisatian-/', - campus: 'LA / WCRI', - cohort: '53', - jobTitle: 'Software Engineer - UI', - industry: 'Security', - cities: [], - }, - { - company: 'Exodus Movement Inc', - name: 'Lanre Makinde', - email: 'lanre.developer@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lanre-mark/', - campus: 'PTRI', - cohort: 'Beta', - jobTitle: 'Sr. Software Engineer', - industry: 'blockchain/cryptocurrency', - cities: [], - }, - { - company: 'Expedia Group', - name: 'Tang', - email: 'eytang8@gmail.com', - linkedIn: 'https://www.linkedin.com/mwlite/in/ttaanngg', - campus: 'LA', - cohort: '27', - jobTitle: 'Software Development Engineer II', - industry: 'Travel', - cities: [], - }, - { - company: 'Extend', - name: 'Diane Wu', - email: 'dianewudw@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '14', - jobTitle: 'Backend Software Engineer', - industry: 'Insurance', - cities: [], - }, - { - company: 'Extensis', - name: 'Daniel Chang', - email: 'dkchang213@gmail.com', - linkedIn: 'https://www.linkedin.com/in/daniel-k-chang/', - campus: 'LA / WCRI', - cohort: '56', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Facebook', - name: 'Ben Ray', - email: 'benray887@gmail.com', - linkedIn: 'https://www.linkedin.com/in/benray-/', - campus: 'NYC', - cohort: '14', - jobTitle: 'Rotational Engineer', - industry: 'Tech', - cities: [], - }, - { - company: 'Facebook', - name: 'Jason Lee', - email: 'jason.dongyul.lee@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '42', - jobTitle: 'Full-Stack Engineer', - industry: 'Social Media/Networking', - cities: [], - }, - { - company: 'Facebook', - name: 'Jonathan Calvo Ramirez', - email: 'jono.calvo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonathan-calvo', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer', - industry: 'Social Media', - cities: [], - }, - { - company: 'Facebook', - name: 'Rajeeb Banstola', - email: 'rajeebanstola@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rajeebbanstola/', - campus: 'NYC', - cohort: '14', - jobTitle: 'Fullstack Developer - Contract', - industry: 'Internet', - cities: [], - }, - { - company: 'Facebook', - name: 'Ricardo Cortez', - email: 'ricardodgers12@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rcortez88/', - campus: 'LA', - cohort: '44', - jobTitle: 'Full Stack Software Engineer', - industry: 'Social Media', - cities: [], - }, - { - company: 'Facebook', - name: 'Sean Grace', - email: 'seanmgrace@gmail.com', - linkedIn: 'https://www.linkedin.com/in/seanmgrace/', - campus: 'LA', - cohort: '44', - jobTitle: 'Full Stack Software Engineer', - industry: 'Tech', - cities: [], - }, - { - company: 'Facebook', - name: 'Shreshth Srivastava', - email: 'shreshthsrivastava2@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shreshth-srivastava/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Software Engineer', - industry: 'Social Media', - cities: [], - }, - { - company: 'Facebook (Meta)', - name: 'Eric Wilding', - email: 'eric.d.wilding@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eric-wilding/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Full Stack Software Engineer', - industry: 'Social Media', - cities: [], - }, - { - company: 'Facebook (via K2Partners)', - name: 'Thanh Doan', - email: 'tdoan35@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ty-thanh-doan/', - campus: 'LA', - cohort: '42', - jobTitle: 'Full-Stack Engineer', - industry: 'Social Media', - cities: [], - }, - { - company: 'Facebook via TEK System', - name: 'Yoko Kawamoto', - email: 'yokokawamoto@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yokokawamoto/', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer', - industry: 'Social Media', - cities: [], - }, - { - company: 'Facebook/K2', - name: 'Charles Gutwirth', - email: 'charlesgutwirth@gmail.com', - linkedIn: 'https://www.linkedin.com/in/charles-gutwirth/', - campus: 'LA', - cohort: '45', - jobTitle: 'Full Stack Engineer', - industry: 'Social media', - cities: [], - }, - { - company: 'FactSet', - name: 'Ethan Sclarsky', - email: 'esclarsky@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ethan-sclarsky/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Fanatics, Inc', - name: 'Jonah Eidman', - email: 'jonah.eidman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonah-eidman/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Software Engineer II', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Fandango', - name: 'Ha-Rry Kim', - email: 'hari9497@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hkim9497/', - campus: 'LA', - cohort: '24', - jobTitle: 'Software Engineer I', - industry: '', - cities: [], - }, - { - company: 'Fandango', - name: 'Ken Lam', - email: 'heiyeunl@gmail.com', - linkedIn: 'https://www.linkedin.com/in/heiyeunl/', - campus: 'LA', - cohort: '27', - jobTitle: 'Front end software engineer', - industry: 'Entertainment?', - cities: [], - }, - { - company: 'FanDuel', - name: 'Alex Haile', - email: 'ahaile923@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ahaile923/', - campus: 'FTRI', - cohort: '7', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Fanfix', - name: 'Dylan Hensel', - email: 'dylan@hensel.com', - linkedIn: 'https://www.linkedin.com/in/dylanhensel/', - campus: 'LA', - cohort: '38', - jobTitle: 'Senior Software Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Fanfix', - name: 'Jonathan Mavandi', - email: 'jonathan.mavandi@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jon-mavandi/', - campus: 'LA', - cohort: '26', - jobTitle: 'Software Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Fannie Mae', - name: 'Abhi Gullapalli', - email: 'aubertlone@gmail.com', - linkedIn: 'https://www.linkedin.com/in/viswagullapalli/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Cloud Engineer', - industry: 'Cloud Services', - cities: [], - }, - { - company: 'Fantoons', - name: 'Hank McGill', - email: 'henrymcgill@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hank-mcgill/', - campus: 'NYOI', - cohort: '4', - jobTitle: 'Founding Full-Stack Software Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Farm to People', - name: 'Katharine Angelopoulos', - email: 'katharine.angelopoulos@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kangelopoulos/', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Full Stack Developer', - industry: 'Restaurant, Food, and Beverage', - cities: [], - }, - { - company: 'Fashionphile', - name: 'Amy Yee', - email: 'amyyee1998@gmail.com', - linkedIn: 'https://www.linkedin.com/in/amyyee98/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'E-commerce', - cities: [], - }, - { - company: 'Fashionphile', - name: 'Gabriela Jardim Aquino', - email: 'gjardimaquino@gmail.com', - linkedIn: 'https://www.linkedin.com/in/aquinojardim/', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Fashion', - cities: [], - }, - { - company: 'Fastly', - name: 'Angelo Chengcuenca', - email: 'amchengcuenca@gmail.com', - linkedIn: 'https://www.linkedin.com/in/angelotmchengcuenca/', - campus: 'FTRI / CTRI', - cohort: '14', - jobTitle: 'Software Development Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Fearless (fearless.tech)', - name: 'Faraz Akhtar', - email: 'fa8338@gmail.com', - linkedIn: 'https://www.linkedin.com/in/faraz22/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer II', - industry: 'Government Consulting', - cities: [], - }, - { - company: 'Feather', - name: 'Bryan Fong', - email: 'bryanfong.dev@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bryanfong-dev/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Software Engineer', - industry: 'Furniture Subscription', - cities: [], - }, - { - company: 'FeatureBase', - name: 'David Kagan', - email: 'David.kagan07@gmail.com', - linkedIn: 'David-kagan07', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Jr Software Engineer, Cloud', - industry: 'Cloud Services', - cities: [], - }, - { - company: 'Federal Reserve Bank', - name: 'Robert McHalffey', - email: 'R.mchalffey@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '26', - jobTitle: 'Software Engineer 4', - industry: 'Government/Banking', - cities: [], - }, - { - company: 'Federal Reserve Bank of NY', - name: 'Anthony Lee', - email: 'anthonylee2797@gmail.com', - linkedIn: 'https://www.linkedin.com/in/anthony-lee27/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Frontend Developer', - industry: 'Finance', - cities: [], - }, - { - company: 'Ferguson', - name: 'Eric Hagen', - email: 'ericjameshagen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hagenforhire/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Ferguson Enterprises', - name: 'James Ferrell', - email: 'James David.ferrell@ferguson.com', - linkedIn: 'https://www.linkedin.com/in/james-d-ferrell/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'E-commerce', - cities: [], - }, - { - company: 'Fictiv', - name: 'Cherie Zhong', - email: 'cheriemzhong@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cheriezhong/', - campus: 'LA', - cohort: '35', - jobTitle: 'Software Engineer', - industry: 'Manufacturing', - cities: [], - }, - { - company: 'Fidelity Investments', - name: 'Eli Muir', - email: 'eli.t.muir@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eli-muir/', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Full Stack Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Fidelity Investments', - name: 'Christopher Jamali', - email: 'jamalichristopher@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chrisjamali/', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Senior Mobile Developer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Fin', - name: 'Matt Jiang', - email: 'mattljiang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mattljiang/', - campus: 'LA', - cohort: '40', - jobTitle: 'Product Engineer', - industry: 'SaaS', - cities: [], - }, - { - company: 'Find my past', - name: 'Mitesh patel', - email: 'mit06@hotmail.com', - linkedIn: 'https://www.linkedin.com/in/miteshvjpatel', - campus: 'NYC', - cohort: '21', - jobTitle: 'Mid software engineer', - industry: 'genealogy', - cities: [], - }, - { - company: 'FinDox Inc.', - name: 'Jhonatan Passalacqua', - email: 'jpascas@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jpassalacqua', - campus: 'PTRI', - cohort: 'Beta', - jobTitle: 'Senior Software Architect', - industry: 'Fintech', - cities: [], - }, - { - company: 'Finra', - name: 'Yankun Song', - email: 'yankun.L.song@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yankunsong/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Data engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'First American ', - name: 'Jen Lee', - email: 'jenleesj@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jenleesj', - campus: 'FTRI / CTRI', - cohort: '14', - jobTitle: 'Front End Software Engineer', - industry: 'Insurance', - cities: [], - }, - { - company: 'First Help Financial', - name: 'Juliana Morrelli', - email: 'julianamorrelli28@gmail.com', - linkedIn: 'https://www.linkedin.com/in/julianamorrelli/', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Frontend Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'First Republic Bank', - name: 'Nikhil Massand', - email: 'nikhil.massand@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nikhil-massand/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Banking', - cities: [], - }, - { - company: 'First Resonance', - name: 'Maxwell Reed', - email: 'mxjreed@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mxjrd/', - campus: 'LA', - cohort: '41', - jobTitle: 'Frontend Engineer', - industry: 'Manufacturing', - cities: [], - }, - { - company: 'Fiserv', - name: 'Ozi Oztourk', - email: 'oztrkgzhn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ozi-oztourk', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Fiserv.', - name: 'eddy zapata', - email: 'ecz001@live.com', - linkedIn: 'https://www.linkedin.com/in/eddy-zapata/', - campus: 'FTRI', - cohort: '2', - jobTitle: 'Software Development Engineer IV', - industry: 'Fintech', - cities: [], - }, - { - company: 'Fitch Solutions', - name: 'Duane McFarlane', - email: 'Duanemcfarlane@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/duanemcfarlane/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Flash Scientific Technology', - name: 'William Howard', - email: 'willh91@msn.com', - linkedIn: 'https://www.linkedin.com/in/wph91/', - campus: 'LA', - cohort: '21', - jobTitle: 'Lead Software Engineer', - industry: 'Meteorology/Environmental Science', - cities: [], - }, - { - company: 'Flashpoint', - name: 'Robbie Gottlieb', - email: 'robbiegottlieb.dev@gmail.com', - linkedIn: 'https://www.linkedin.com/in/robbie-gottlieb/', - campus: 'NYC / ECRI', - cohort: '1', - jobTitle: 'Security', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Flexion', - name: 'Cameron Walls', - email: 'cwalls45@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cameron-walls45/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Full Stack Software Developer', - industry: 'Consulting, the project I am working on is in the Education industry', - cities: [], - }, - { - company: 'FlightAware', - name: 'Robert Yang', - email: 'rob.yang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/robwyang/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Senior Software Engineer', - industry: 'Aviation', - cities: [], - }, - { - company: 'Flock Safety', - name: 'Rocio Infante', - email: 'Rocio.infante417@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Public Safety', - cities: [], - }, - { - company: 'Flock Safety', - name: 'Hunter Shaw', - email: 'hu.shaw215@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hshaw215/', - campus: 'NYC / ECRI', - cohort: '40', - jobTitle: 'Software Engineer II', - industry: 'Other', - cities: [], - }, - { - company: 'FloQast', - name: 'Stephanie Chiu', - email: 'stephaniekchiu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stephanie-chiu-/', - campus: 'LA', - cohort: '32', - jobTitle: 'Software Engineer I', - industry: 'Fintech', - cities: [], - }, - { - company: 'FloQast', - name: 'Khaile Tran', - email: 'khailetran94@gmail.com', - linkedIn: 'linkedin.com/in/khailetran', - campus: 'FTRI / CTRI', - cohort: '16', - jobTitle: 'Software Engineer I', - industry: 'Other', - cities: [], - }, - { - company: 'Florence Healthcare', - name: 'Bill Greco', - email: 'wgreco13@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bill-greco/', - campus: 'NYC', - cohort: '32', - jobTitle: 'Senior Full Stack Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'FNS, Inc.', - name: 'Shinhae Na', - email: 'shinhaena@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shinhaena-stella/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Software Engineer', - industry: 'Retail', - cities: [], - }, - { - company: 'Foodpanda', - name: 'Josh Kim', - email: 'joshua940308@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sungtae/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Frontend software engineer', - industry: 'Food tech', - cities: [], - }, - { - company: 'Forma', - name: 'Jay Lim', - email: 'jaymlim93@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jaylim218/', - campus: 'LA', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'Human Resources', - cities: [], - }, - { - company: 'Formation', - name: 'Stella Liao', - email: 'stellaliao.01@gmail.com', - linkedIn: 'https://www.linkedin.com/feed/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Engineer', - industry: 'Education', - cities: [], - }, - { - company: 'Formidable', - name: 'Juan Hart', - email: 'juanhart1@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '12', - jobTitle: 'Software Engineer III', - industry: 'Consultancy', - cities: [], - }, - { - company: 'Fortress Information Security', - name: 'Keith Lisiak', - email: 'bball.coach@icloud.com', - linkedIn: 'https://www.linkedin.com/in/keithlisiak/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: 'Security', - cities: [], - }, - { - company: 'Forward Financing', - name: 'Shanon Lee', - email: 'shanonlee541@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shanonlee541/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Associate Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Forward Slope Inc.', - name: 'Ilija Bibic', - email: 'ibibic2@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ilija-bibic', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Forward Slope, Inc.', - name: 'Thang Thai', - email: 'thaithangt@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thang-thai/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'FourKites', - name: 'Anthony Stanislaus', - email: 'anthonystanislaus1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/anthonystanislaus/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Fox Corporation', - name: 'James Edwards', - email: 'digitalmediapro7@gmail.com', - linkedIn: 'https://www.linkedin.com/in/digital9/', - campus: 'LA', - cohort: '19', - jobTitle: 'Senior Full Stack Software Engineer (Frontend)', - industry: '', - cities: [], - }, - { - company: 'Freewheel', - name: 'Hubert Lin', - email: 'huberthflin@gmail.com', - linkedIn: 'https://www.linkedin.com/feed/', - campus: 'NYC', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'IT', - cities: [], - }, - { - company: 'Frontier Communications', - name: 'Josh Cretella', - email: 'jcrtll@protonmail.com', - linkedIn: 'https://www.linkedin.com/in/josh-cretella', - campus: 'LA', - cohort: '45', - jobTitle: 'Backend Developer', - industry: 'Telecoms', - cities: [], - }, - { - company: 'Frozen Dessert Supplies', - name: 'Ethan McRae', - email: 'ethanmcrae0@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ethanmcrae/', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Senior Developer', - industry: 'Consumer Goods: Retail (general)', - cities: [], - }, - { - company: 'Fulcrum', - name: 'Valerie Huang', - email: 'valeriewhuang@gmail.com', - linkedIn: 'https://www.linkedin.com/mwlite/in/valeriewhuang', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Software Engineer', - industry: 'Manufacturing', - cities: [], - }, - { - company: 'fulcrumpro', - name: 'Nicole Du', - email: 'Nicoleduu@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Developer', - industry: 'Manufacturing', - cities: [], - }, - { - company: 'Full In Partners', - name: 'Kevin HoEun Lee', - email: 'kevin.hoeun.lee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kevinhoeunlee/', - campus: 'LA', - cohort: '50', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Funimation', - name: 'Justin Joseph', - email: 'jrayjoseph@gmail.com', - linkedIn: 'https://www.linkedin.com/mwlite/in/jrayjoseph', - campus: 'LA', - cohort: '32', - jobTitle: 'Backend Software Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Fusion Medical Staffing', - name: 'Kelsey Graner', - email: 'Kels.graner@gmail.com', - linkedIn: 'LinkedIn.com/Kelsey-graner', - campus: 'LA / WCRI', - cohort: '54', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Fusion Medical Staffing', - name: 'Krisette Odegard', - email: 'kmodeg@gmail.com', - linkedIn: 'https://linkedin.com/in/krisette', - campus: 'LA / WCRI', - cohort: '53', - jobTitle: 'Software Developer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Futuralis', - name: 'Rex Osariemen', - email: 'rexosariemen@gmail.com', - linkedIn: 'https://linkedin/in/rexosariemen', - campus: 'NYC', - cohort: '15', - jobTitle: 'Software Engineer', - industry: 'IT', - cities: [], - }, - { - company: 'G-Research', - name: 'Sigele Nickerson-Adams', - email: 'sigeleakosua@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sigelenickersonadams', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Software Engineer', - industry: 'Research', - cities: [], - }, - { - company: 'Gaia Platform', - name: 'Jorge Fernandez', - email: 'jcferna1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jorge-carlos-fernandez', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Developer', - industry: 'Automation', - cities: [], - }, - { - company: 'Gallery Media Group', - name: 'Kristiina Eelnurme', - email: 'kristiina.eelnurme@gmail.com', - linkedIn: 'https://www.linkedin.com/in/Kristiina-eelnurme/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Frontend Engineer', - industry: 'Media', - cities: [], - }, - { - company: 'GameOn Technology', - name: 'Jeffrey Kim', - email: 'kimjeffrey96@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jeffrey-kim-79810112a/', - campus: 'NYC', - cohort: '6', - jobTitle: 'Frontend, Software Engineer', - industry: 'Tech', - cities: [], - }, - { - company: 'GAN Integrity', - name: 'Erik Larsen', - email: 'erik.w.larsen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/erik-w-larsen', - campus: 'NYC', - cohort: '3', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Gap', - name: 'Khayal Alasgarov', - email: 'alaskarov.khayal@gmail.com', - linkedIn: 'https://www.linkedin.com/in/khayal-alasgaroff', - campus: 'LA', - cohort: '44', - jobTitle: 'React/JavaScript Developer', - industry: 'Clothing', - cities: [], - }, - { - company: 'Gap', - name: 'Wesley Appleget', - email: 'wesget182@gmail.com', - linkedIn: 'https://www.linkedin.com/in/wesley-appleget/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Full Stack Engineer', - industry: 'Retail', - cities: [], - }, - { - company: 'Gap Inc.', - name: 'Cole Redfearn', - email: 'coleredfearn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/coleredfearn/', - campus: 'LA', - cohort: '41', - jobTitle: 'UI Developer', - industry: 'Clothing/E-Commerce', - cities: [], - }, - { - company: 'Gap inc.', - name: 'Nayan Parmar', - email: 'nparmar84@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nparmar1', - campus: 'LA', - cohort: '44', - jobTitle: 'Software Engineer', - industry: 'eCommerce', - cities: [], - }, - { - company: 'Gartner-L2', - name: 'Jonathan P Schwartz', - email: 'jonathanschwartz30@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonathanpschwartz/', - campus: 'NYC', - cohort: '7', - jobTitle: 'Front-End Lead', - industry: '', - cities: [], - }, - { - company: 'Gatheround', - name: 'Andrew Widjaja', - email: 'andrewdwidjaja@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andrew-widjaja/', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'GE Aviation', - name: 'Nathan Richardson', - email: 'nathan.richardson94@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nathan-p-richardson/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Fullstack Developer', - industry: 'Aerospace', - cities: [], - }, - { - company: 'Geneoscopy', - name: 'Steve Schlepphorst', - email: 'steve.schlepphorst@gmail.com', - linkedIn: 'https://www.linkedin.com/in/schlepphorst/', - campus: 'FTRI / CTRI', - cohort: '17', - jobTitle: 'Senior Software Engineer I', - industry: 'Healthtech/Healthcare', - cities: [], - }, - { - company: 'Genomic Prediction', - name: 'Rebecca Miller', - email: 'beemills@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rebeccamiller19/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Frontend Engineer', - industry: 'Biotech', - cities: [], - }, - { - company: 'Ghostery', - name: 'Leury Rodriguez', - email: 'leuryr07@gmail.com', - linkedIn: 'https://www.linkedin.com/in/leury-rodriguez/', - campus: 'NYC', - cohort: '8', - jobTitle: 'Jr. Software Engineer', - industry: 'Internet', - cities: [], - }, - { - company: 'Giglabs, Inc.', - name: 'Tyler Pohn', - email: 'tylerpohn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tylerpohn/', - campus: 'FTRI / CTRI', - cohort: '5', - jobTitle: 'Software Engineer', - industry: 'Blockchain/Web3', - cities: [], - }, - { - company: 'Giglabs.io', - name: 'Daniel Nguyen', - email: 'dannguyen1191@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/danlord-nguyen/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Software Engineer (Node)', - industry: 'Blockchain, Media and Entertainment', - cities: [], - }, - { - company: 'Github', - name: 'Sabrina Goldfarb', - email: 's.goldfarb2@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sabrinagoldfarb/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Software Engineer II', - industry: 'Tech', - cities: [], - }, - { - company: 'glimpse.ai', - name: 'Ryan Lim', - email: 'ryanlim301@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ryanlim3/', - campus: 'LA', - cohort: '46', - jobTitle: 'Full Stack Engineer', - industry: 'Information Technology', - cities: [], - }, - { - company: 'Gluware', - name: 'Abid Ramay', - email: 'abidramay@gmail.com', - linkedIn: 'https://www.linkedin.com/in/aramay/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'GOAT Group', - name: 'Jordan Deleon', - email: 'jordanscottdeleon@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jordan-deleon/', - campus: 'LA', - cohort: '35', - jobTitle: 'Software Engineer II', - industry: 'E-commerce', - cities: [], - }, - { - company: 'GoBolt', - name: 'Kyo Ku', - email: 'kyosan.ku34@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kyosan-ku/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Software Developer II', - industry: 'Logistics Technology', - cities: [], - }, - { - company: 'GoDaddy', - name: 'Joyce Lo', - email: 'joycemanning@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joycelo/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer', - industry: 'Internet', - cities: [], - }, - { - company: 'GoDaddy', - name: 'Kristina Wallen', - email: 'KristinaKWallen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kristina-wallen/', - campus: 'LA', - cohort: '46', - jobTitle: 'Senior Software Development Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'GoFundMe', - name: 'Colin McCarthy', - email: 'colinhmccarthy@gmail.com', - linkedIn: 'https://www.linkedin.com/in/colinhmccarthy/', - campus: 'LA', - cohort: '21', - jobTitle: 'Software Engineer', - industry: 'Crowdfunding/fundraising', - cities: [], - }, - { - company: 'Golden Hippo', - name: 'Mauricio Castro', - email: 'mauricio.a.castro7@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mauricioacastro/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Senior Full Stack Developer', - industry: 'Advertising', - cities: [], - }, - { - company: 'Goldman Sachs', - name: 'Alfredo Alpizar', - email: 'fredo.alpizar@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alfredoalpizar/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Associate Software Engineer', - industry: 'Finance / Banking', - cities: [], - }, - { - company: 'Goldman Sachs', - name: 'Peyton Pedersen', - email: 'pedersen0819@gmail.com', - linkedIn: 'https://www.linkedin.com/in/peyton-pedersen/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Analyst', - industry: 'Fintech', - cities: [], - }, - { - company: 'Goldman Sachs', - name: 'Stephen Budarz', - email: 'sbudarz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/steve-budarz/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Vice President', - industry: 'Finance', - cities: [], - }, - { - company: 'Goldschmitt & Associates', - name: 'Kirk Shin', - email: 'shin.kirk@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kirkshin/', - campus: 'LA', - cohort: '31', - jobTitle: 'Frontend Developer', - industry: 'Government contractor', - cities: [], - }, - { - company: 'GoodPup', - name: 'Eric Wells', - email: 'epiqu1n@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ewells2275/', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'GoodRX', - name: 'Byron Jay Inocencio', - email: 'jay.byron@gmail.com', - linkedIn: 'https://www.linkedin.com/in/binocencio/', - campus: 'LA', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'Healthcare, Med-tech, Telemedecine', - cities: [], - }, - { - company: 'GoodRx', - name: 'Mike Richards', - email: 'mike@madebymtr.com', - linkedIn: 'https://www.linkedin.com/in/madebymtr/', - campus: 'LA', - cohort: '11', - jobTitle: 'Senior Frontend Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Google', - name: 'Andie Ritter', - email: 'A.k.rittr@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andieritter/', - campus: 'LA', - cohort: '34', - jobTitle: 'Software Engineer', - industry: 'Business Intelligence', - cities: [], - }, - { - company: 'Google', - name: 'Ben Hawley', - email: 'benhawley0@gmail.com', - linkedIn: 'https://www.linkedin.com/in/benchawley/', - campus: 'NYC', - cohort: '4', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Google', - name: 'Brett Beekley', - email: 'brettbeekley@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brettbeekley/', - campus: 'LA', - cohort: '15', - jobTitle: 'Senior Software Engineer, Site Reliability Engineering', - industry: 'Technology', - cities: [], - }, - { - company: 'Google', - name: 'Cameron Greer', - email: 'camgreer01@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cameron-greer/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer - Level 3', - industry: 'Technology', - cities: [], - }, - { - company: 'Google', - name: 'Christian Padilla', - email: 'christianepadilla@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christianedwardpadilla/', - campus: 'NYC', - cohort: '10', - jobTitle: 'Software Engineer (L3)', - industry: 'Frontend Mobile Development', - cities: [], - }, - { - company: 'Google', - name: 'Crystal Pederson', - email: 'crystalpederson88@gmail.com', - linkedIn: 'https://www.linkedin.com/in/crystalpederson/', - campus: 'PTRI', - cohort: '5', - jobTitle: 'Software Engineer (Frontend III)', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Google', - name: 'Edwin Lee', - email: 'edjl1289@gmail.com', - linkedIn: 'https://www.linkedin.com/in/edwinlee89/', - campus: 'LA', - cohort: '45', - jobTitle: 'Software Engineer', - industry: 'Cloud Service', - cities: [], - }, - { - company: 'Google', - name: 'Ian Geckeler', - email: 'ikcgeckeler@gmail.com', - linkedIn: 'https://www.linkedin.com/in/iangeckeler/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Software Engineer', - industry: 'Adtech', - cities: [], - }, - { - company: 'Google', - name: 'Jeff Kang', - email: 'jeffreyrkang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jeffreyrkang/', - campus: 'LA', - cohort: '21', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Google', - name: 'Jenae Pennie', - email: 'jenaepen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jenae-pennie/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Software Engineer', - industry: 'Tech', - cities: [], - }, - { - company: 'Google', - name: 'Jonathan Tam', - email: 'jktam336@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jktam/', - campus: 'LA', - cohort: '47', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Google', - name: 'Miguel Gonzalez', - email: 'MiguelGonzalez@alumni.upenn.edu', - linkedIn: 'https://www.linkedin.com/in/miguel-gonzalez96/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Software Engineer - Search Engine Privacy', - industry: 'Tech', - cities: [], - }, - { - company: 'Google', - name: 'Nak Young Kim', - email: 'nydkim@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nak-young-kim/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer', - industry: 'Social Media', - cities: [], - }, - { - company: 'Google', - name: 'Patrick Liu', - email: 'patrickliu.hhs@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ptrkl/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Software Engineer', - industry: 'Tech', - cities: [], - }, - { - company: 'Google', - name: 'Swetha Kunda', - email: 'swethakunda@gmail.com', - linkedIn: 'https://www.linkedin.com/in/swethakunda/', - campus: 'FTRI', - cohort: '6', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Google', - name: 'Cecilia Yena Choi', - email: 'yenachoi95@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ceciliayenachoi/', - campus: 'LA', - cohort: '34', - jobTitle: 'Software Engineer', - industry: 'Tech', - cities: [], - }, - { - company: 'Google Cloud', - name: 'Sarah Heacock', - email: 'sarahheacock03@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sarah-heacock/', - campus: 'NYC', - cohort: '2', - jobTitle: 'Software Engineer', - industry: 'Tech', - cities: [], - }, - { - company: 'GoSite', - name: 'Alexander Young', - email: 'youngalexj00@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexander-young-7aabb7122/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Full Stack Engineer', - industry: 'Digital Services', - cities: [], - }, - { - company: 'Govini', - name: 'Aaron Bumanglag', - email: 'aaron.k.bumanglag@gmail.com', - linkedIn: 'https://linkedin.com/akbuma', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Decision Science', - cities: [], - }, - { - company: 'Grailed', - name: 'Eugene Chen', - email: 'chen.eugene19@gmail.com', - linkedIn: 'https://www.linkedin.com/in/canopeia', - campus: 'NYC', - cohort: '8', - jobTitle: 'Junior Software Engineer', - industry: 'HR tech', - cities: [], - }, - { - company: 'Grailed', - name: 'Danni Ballena', - email: 'danni.ballena@gmail.com', - linkedIn: 'https://www.linkedin.com/in/danni-ballena/', - campus: 'LA', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Granular', - name: 'Charles Ryu', - email: 'charles.ryu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/charcharryu', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer', - industry: 'Agriculture Tech', - cities: [], - }, - { - company: 'Graphika', - name: 'Sam Carlile', - email: 'sam@samkc.me', - linkedIn: 'https://LinkedIn.com/in/samkcarlile', - campus: 'NYC', - cohort: '21', - jobTitle: 'Full Stack Engineer', - industry: 'Research & Analytics', - cities: [], - }, - { - company: 'Green Street Advisors', - name: 'Joshua Nordstrom', - email: 'joshua@jdnordstrom.com', - linkedIn: 'https://www.linkedin.com/in/jdnordy/', - campus: 'LA', - cohort: '34', - jobTitle: 'Technology Associate', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Greenphire', - name: 'Nicholas Krug', - email: 'n.e.krug@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nicholas-e-krug', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Application Developer III', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Greentech Financial Solutions', - name: 'Justin Hicks', - email: 'justinhickswork@gmail.com', - linkedIn: 'https://www.linkedin.com/in/justinlhicks/', - campus: 'LA / WCRI', - cohort: '48', - jobTitle: 'Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Grid Networks', - name: 'Trine Medina', - email: 'trinemedina@gmail.com', - linkedIn: 'www.linkedin.com/in/trinemedina', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Gro Intelligence', - name: 'Damian Lim', - email: 'limd96@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lim-damian/', - campus: 'FTRI', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Agriculture Science', - cities: [], - }, - { - company: 'Gro-Intelligence', - name: 'David Bernstein', - email: 'dxbernstein@gmail.com', - linkedIn: 'https://www.linkedin.com/in/davidsamuelbernstein/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Software Engineer (API/Data Visualization Team)', - industry: 'Agricultural Analytics', - cities: [], - }, - { - company: 'Groove Jones', - name: 'Kristopher Sorensen', - email: 'Krismsorensen@gmail.com', - linkedIn: 'Linkedin/in/kris-sorensen', - campus: 'FTRI / CTRI', - cohort: '7', - jobTitle: 'Senior WebXR Developer', - industry: 'Other', - cities: [], - }, - { - company: 'GuideMe Solutions', - name: 'David Nadler', - email: 'Davidnadler9637@gmail.com', - linkedIn: 'https://www.linkedin.com/in/davenads/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Technical Consultant', - industry: 'Digital Adoption Software', - cities: [], - }, - { - company: 'Gulfstream', - name: 'Chris Hicks', - email: 'chrishicks430@gmail.com', - linkedIn: 'Www.LinkedIn.com/in/chrishicks430', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Application Developer', - industry: 'Aerospace', - cities: [], - }, - { - company: 'Guy Carpenter', - name: 'Dennis Palomo', - email: 'dennispalomo@icloud.com', - linkedIn: 'https://linkedin.com/in/dennispalomo', - campus: 'NYC', - cohort: '27', - jobTitle: 'Developer', - industry: 'Insurance', - cities: [], - }, - { - company: 'HackerOne', - name: 'Catherine Chiu', - email: 'catherinechiuu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cchiu2/', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Engineer II', - industry: 'Cybersecurity', - cities: [], - }, - { - company: 'HackerOne', - name: 'Serena Kuo', - email: 'hello@serenakuo.com', - linkedIn: 'https://www.linkedin.com/in/serenakuo/', - campus: 'LA', - cohort: '37', - jobTitle: 'Senior Software Engineer', - industry: 'Computer Safety', - cities: [], - }, - { - company: 'HackerOne', - name: 'Haejin Jo', - email: 'swe.haejin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/haejinjo', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Engineer', - industry: 'Cybersecurity', - cities: [], - }, - { - company: 'Halo Investing', - name: 'Gareth Leake', - email: 'gfleake@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gareth-leake/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'Finance', - cities: [], - }, - { - company: 'Handshake', - name: 'Annie Shin', - email: 'annieshin51@gmail.com', - linkedIn: 'https://www.linkedin.com/in/annieshinn/', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer, Platform Services Team', - industry: 'Recruiting', - cities: [], - }, - { - company: 'Handshake', - name: 'Chase Benjamin', - email: 'chasebenjamin6@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chase-benjamin300/', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Growth Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Handshake', - name: 'Jeffrey Lu', - email: 'hi@jeffreyclu.com', - linkedIn: 'https://www.linkedin.com/in/jeffreyclu/', - campus: 'PTRI', - cohort: 'Beta', - jobTitle: 'Software Engineer', - industry: 'Education', - cities: [], - }, - { - company: 'Handshake', - name: 'Joel Pratt', - email: 'pratt.joel@gmail.com', - linkedIn: 'https://www.linkedin.com/in/pratt-joel/', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Harbor.ai', - name: 'Rodolfo Guzman', - email: 'Rodolfoguzman147@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rodolfo-guzman-59249594/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Full Stack Developer', - industry: 'Insurance Tech', - cities: [], - }, - { - company: 'Harness Inc.', - name: 'Tran McFarland Nguyen', - email: 'tranviolin@me.com', - linkedIn: 'https://www.linkedin.com/in/tranmcfarlandnguyen/', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Senior UX Designer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Harver', - name: 'Will Robinson', - email: 'wrobinson91@gmail.com', - linkedIn: 'https://www.linkedin.com/in/wrobinson91', - campus: 'NYC', - cohort: '12', - jobTitle: 'Fullstack Engineer', - industry: 'Applicant Tracking Software', - cities: [], - }, - { - company: 'Health Note', - name: 'Jeffrey Sul', - email: 'jeffsul97@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jsul/', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer', - industry: 'Medical CRM', - cities: [], - }, - { - company: 'Healthcare.com', - name: 'Stephen Jue', - email: 'steve.h.jue@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stephen-jue09/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Software Engineer - Front End', - industry: 'Other', - cities: [], - }, - { - company: 'Healthgrades', - name: 'Joel K. Perkins', - email: 'Joel.climbs@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joelkperkins/', - campus: 'LA', - cohort: '24', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Hearst', - name: 'Josh Roberts', - email: 'josh@quantumspot.io', - linkedIn: 'https://www.linkedin.com/in/joshrobertsv2/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Lead Frontend Engineer', - industry: 'Media', - cities: [], - }, - { - company: 'Hearst', - name: 'Rob Nobile', - email: 'robert.nobile@gmail.com', - linkedIn: 'https://www.linkedin.com/in/robnobile/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer', - industry: 'Media', - cities: [], - }, - { - company: 'Hearst Newspaper', - name: 'Kevin Sarchi', - email: 'kevinsarchi@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/kevin-sarchi/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Associate Software Engineer', - industry: 'Media', - cities: [], - }, - { - company: 'Hearth', - name: 'Vince Ho', - email: 'vinceho022@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vinceho022/', - campus: 'LA', - cohort: '40', - jobTitle: 'Backend Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Heartland ', - name: 'Lloyd Bistany', - email: 'lloydbistany@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lloyd-bistany', - campus: 'NYOI', - cohort: '3', - jobTitle: 'Software Developer ', - industry: 'Business Tech/Enterprise Tech', - cities: [], - }, - { - company: 'Helix', - name: 'Robert Crocker', - email: 'robert@vizsimply.com', - linkedIn: 'https://www.linkedin.com/in/robertcrocker/', - campus: 'PTRI', - cohort: '4', - jobTitle: 'Data Visualization Engineer', - industry: 'Bio Tech', - cities: [], - }, - { - company: 'Hertz', - name: 'Michael Costello', - email: 'mcostello91@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mcostello-swe/', - campus: 'FTRI / CTRI', - cohort: '12', - jobTitle: 'Software Engineer', - industry: 'Automotive', - cities: [], - }, - { - company: 'Highnote', - name: 'Trevor Carr', - email: 'trevor.a.carr@gmail.com', - linkedIn: 'https://www.linkedin.com/in/carr-trevor/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Software', - cities: [], - }, - { - company: 'Hilton', - name: 'Andrei Cabrera', - email: 'andrei.cabrera@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andrei-cabrera/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Backend Software Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Hilton', - name: 'Nick Andreala', - email: 'nandreala@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nickandreala/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Front-End Software Engineer', - industry: 'Hospitality', - cities: [], - }, - { - company: 'Hilton', - name: 'Conor Sexton', - email: 'sextonc@me.com', - linkedIn: 'https://www.linkedin.com/in/sextonc/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Render Tier Engineer', - industry: 'Hospitality', - cities: [], - }, - { - company: 'Hinge Health', - name: 'Ahsan Rao', - email: 'ahsan.ijaz.rao@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ahsan-rao/', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Software Engineer - Full-Stack', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Hinge Health', - name: 'Evan King', - email: 'evanking112@gmail.com', - linkedIn: 'https://www.linkedin.com/in/evanking11/', - campus: 'LA', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Healthcare Technology', - cities: [], - }, - { - company: 'Hinge Health', - name: 'Vanessa Lutz', - email: 'vanessayplutz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vanessa-lutz', - campus: 'FTRI', - cohort: '2', - jobTitle: 'Software Engineer', - industry: 'Health', - cities: [], - }, - { - company: 'Hireology', - name: 'Stella Baek', - email: 'seungyeon1008@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stellabaek/', - campus: 'LA / WCRI', - cohort: '54', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'HiTactics/ ZH Solutions Inc.', - name: 'Sidhi Gosain', - email: 'sidhigosain@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sidhi-gosain/', - campus: 'LA', - cohort: '22', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'HiThrive', - name: 'Zack Daniels', - email: 'Zackdanielsnyc@gmail.com', - linkedIn: 'https://www.linkedin.com/in/zackdanielsnyc/', - campus: 'LA', - cohort: '49', - jobTitle: 'Full stack software engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Hive', - name: 'Max Latoche', - email: 'max.latoche@gmail.com', - linkedIn: 'https://www.linkedin.com/in/maxlatoche/', - campus: 'NYC', - cohort: '2', - jobTitle: 'Senior Software Engineer', - industry: 'Tech', - cities: [], - }, - { - company: 'Hive Technologies Inc', - name: 'Lilah August', - email: 'lilahraeaugust@gmail.com', - linkedIn: 'https://www.linkedin.com/lilahaugust', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Software Engineer', - industry: 'Automotive', - cities: [], - }, - { - company: 'HOF Capital', - name: 'Frank Hu', - email: 'frank.junhu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/frankjunhu/', - campus: 'NYC', - cohort: '2', - jobTitle: 'Venture Analyst', - industry: '', - cities: [], - }, - { - company: 'Home Depot', - name: 'Hannah Santoyo', - email: 'hannah.santoyo7@gmail.com', - linkedIn: 'linkedin.com/in/hannah-santoyo', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Fullstack Software Engineer', - industry: 'Retail', - cities: [], - }, - { - company: 'Honey (PayPal)', - name: 'Jenny Hai', - email: 'jenny.hai420@gmail.com', - linkedIn: 'https://www.linkedin.com/in/Jenny-hai/', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer II', - industry: 'Fintech / Ecommerce', - cities: [], - }, - { - company: 'Hooray Agency', - name: 'Aris Razuri', - email: 'arazuli4@gmail.com', - linkedIn: 'https://www.linkedin.com/in/aris-razuri/', - campus: 'LA', - cohort: '34', - jobTitle: 'Junior Frontend Developer', - industry: 'Marketing & Advertising', - cities: [], - }, - { - company: 'Hopin', - name: 'Linda Wishingrad', - email: 'linda.wishingrad@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lindawishingrad/', - campus: 'LA', - cohort: '33', - jobTitle: 'Front End Engineer', - industry: 'Tech', - cities: [], - }, - { - company: 'Hopin', - name: 'Rachel Yoo', - email: 'yoo.rache@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rachel-yoo/', - campus: 'LA', - cohort: '33', - jobTitle: 'Frontend Engineer', - industry: 'Online Events Platform', - cities: [], - }, - { - company: 'Hopkins', - name: 'Nicole Abramowski', - email: 'nabramow@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nicoleabramowski/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Senior Full Stack Engineer', - industry: 'Law', - cities: [], - }, - { - company: 'HotPyp', - name: 'Kendall Lu', - email: 'kendall.luu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kendall-lu/', - campus: 'LA', - cohort: '31', - jobTitle: 'Front End Software Engineer', - industry: 'Cyber Security', - cities: [], - }, - { - company: 'Howl', - name: 'Adam Allison', - email: 'allisonadam81@gmail.com', - linkedIn: 'https://www.linkedin.com/in/allisonadam81/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Full Stack Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Howl', - name: 'Ryan Wallace', - email: 'ryanwallace1396@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rwallie/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Software Engineer', - industry: 'Media', - cities: [], - }, - { - company: 'Hoylu', - name: 'Judy Song', - email: 'judysongg@gmail.com', - linkedIn: 'https://www.linkedin.com/in/judysongg/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'HqO', - name: 'Shadman Khan', - email: 'shadmankhan.825@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shadmanmkhan/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Senior Software Engineer', - industry: 'Tenant Experience Platform/Commercial Real Estate', - cities: [], - }, - { - company: 'HubSpot', - name: 'Michael Caballero', - email: 'caballeromichaelus@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael-caballero-a48b0b211/', - campus: 'LA', - cohort: '42', - jobTitle: 'Senior Software Engineer I', - industry: 'Software', - cities: [], - }, - { - company: 'Human Interest', - name: 'Paulo Choi', - email: 'Paulinho@hey.com', - linkedIn: 'https://www.linkedin.com/in/paulochoi', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Humana', - name: 'Jeffery Richardson', - email: 'Jeffery.erichardson03@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jefferyrichardsonii', - campus: 'FTRI / CTRI', - cohort: '12', - jobTitle: 'Senior Software Engineer', - industry: 'Insurance', - cities: [], - }, - { - company: 'HumanQ', - name: 'Aya Moosa', - email: 'ayamoosa1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ayamoosa/', - campus: 'LA / WCRI', - cohort: '55', - jobTitle: 'Full Stack Developer', - industry: 'Other', - cities: [], - }, - { - company: 'Hunter Strategy', - name: 'Rankin Draa', - email: 'rankindraa@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rankin-draa/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Application Developer', - industry: 'IT Services', - cities: [], - }, - { - company: 'Hy-Vee', - name: 'Daniel An', - email: 'da568@georgetown.edu', - linkedIn: 'https://www.linkedin.com/in/d-an96/', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Restaurant, Food, and Beverage', - cities: [], - }, - { - company: 'Hy-Vee', - name: 'Paul Perez', - email: 'pau.per92@gmail.com', - linkedIn: 'https://www.linkedin.com/in/perezp92', - campus: 'NYC / ECRI', - cohort: '31', - jobTitle: 'Software Engineer II', - industry: 'Restaurant, Food, and Beverage', - cities: [], - }, - { - company: 'Hyliion', - name: 'Gordon Yu', - email: 'gordon@gordonyu.com', - linkedIn: 'https://www.linkedin.com/in/gordonu/', - campus: 'LA', - cohort: '16', - jobTitle: 'Senior Full Stack Engineer', - industry: 'Electric Vehicles', - cities: [], - }, - { - company: 'Hypergiant', - name: 'Abu Fofanah', - email: 'Bubakarrr@gmail.com', - linkedIn: 'https://www.linkedin.com/in/Abu-Fofanah/', - campus: 'LA', - cohort: '41', - jobTitle: 'Senior Frontend Developer', - industry: 'Technology', - cities: [], - }, - { - company: 'Hyperproof', - name: 'Tai Nguyen', - email: 'ndhuutai1@gmail.com', - linkedIn: '', - campus: 'PTRI', - cohort: 'Beta', - jobTitle: 'Software Engineer', - industry: 'Compliance Operations', - cities: [], - }, - { - company: 'Hyster-Yale Group', - name: 'Patrick Mojica', - email: 'patrickmojica@gmail.com', - linkedIn: 'https://www.linkedin.com/in/patrick-mojica/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Software Engineer II - Emerging Technology', - industry: 'Automotive', - cities: [], - }, - { - company: 'IAPP', - name: 'Wanlu Ding', - email: 'wanlu.ding@gmail.com', - linkedIn: 'https://www.linkedin.com/in/wanlu-ding/', - campus: 'NYC / ECRI', - cohort: '42', - jobTitle: 'Fullstack software engineer (Contractor)', - industry: 'Consulting', - cities: [], - }, - { - company: 'IBI Group', - name: 'wisdom liu', - email: 'wliu1290@gmail.com', - linkedIn: 'https://www.linkedin.com/in/wisdom-liu/', - campus: 'LA', - cohort: '27', - jobTitle: 'Software Developer', - industry: 'Architectural Services', - cities: [], - }, - { - company: 'IBM', - name: 'Annette Lin', - email: 'al261310@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alin10/', - campus: 'NYC', - cohort: '9', - jobTitle: 'Software engineer, backend', - industry: 'IT', - cities: [], - }, - { - company: 'IBM', - name: 'Jimmy Deng', - email: 'Jdeng619@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/zhijimmydeng/', - campus: 'LA', - cohort: '30', - jobTitle: 'Software Developer - Cloud Software Developer', - industry: 'Sales? Tbh idk', - cities: [], - }, - { - company: 'IBM', - name: 'Kyle Jurassic', - email: 'kjurassic@protonmail.com', - linkedIn: 'https://www.linkedin.com/in/kylejurassic/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Cloud Engineer', - industry: 'Technology', - cities: [], - }, - { - company: 'IBM', - name: 'Nader Almogazy', - email: 'nader73107@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nader-almogazy-97603080/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Tech', - cities: [], - }, - { - company: 'IBM', - name: 'Brian Bui', - email: 'umius.brian@gmail.com', - linkedIn: 'https://www.linkedin.com/in/umius-brian/', - campus: 'LA', - cohort: '35', - jobTitle: 'Cloud Engineer', - industry: 'Information Technology & Services', - cities: [], - }, - { - company: 'IBM', - name: 'Vessy Shestorkina', - email: 'v.shestorkina@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shestorkina/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Full Stack Developer', - industry: 'Technology & Consulting', - cities: [], - }, - { - company: 'Icetec Energy Services', - name: 'Nicholas Ly', - email: 'lynick14@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nicholasly/', - campus: 'FTRI / CTRI', - cohort: '15', - jobTitle: 'Senior Applications Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'ICF', - name: 'David Cheng', - email: 'davidzcheng@protonmail.com', - linkedIn: 'https://www.linkedin.com/in/davidzcheng/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Software Engineer', - industry: 'Consulting', - cities: [], - }, - { - company: 'ICF', - name: 'Gwen Phillips', - email: 'gwen.phil@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gwen-phillips/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Frontend Developer', - industry: 'Consulting', - cities: [], - }, - { - company: 'IDEMIA', - name: 'David Conrad Friesen', - email: 'conrad.friesen@pm.me', - linkedIn: 'https://www.linkedin.com/in/conrad-friesen/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Software Engineer I', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Idemia', - name: 'Tommy Edmunds', - email: 'tommyedmunds5@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tommy-edmunds-a91aa41a9/', - campus: 'FTRI', - cohort: '2', - jobTitle: 'Software Engineer', - industry: 'Security', - cities: [], - }, - { - company: 'iHeartMedia', - name: 'Genevieve Annable', - email: 'genevieveannable@gmail.com', - linkedIn: 'https://www.linkedin.com/in/genevieveannable/', - campus: 'LA', - cohort: '47', - jobTitle: 'Full-Stack Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'iHeartMedia', - name: 'Alexa Nunes', - email: 'alexaraenunes@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexanunes/', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Software Engineer', - industry: 'News/Entertainment/Streaming Platforms', - cities: [], - }, - { - company: 'iHeartRadio', - name: 'Serhii Kaistrenko', - email: 'skaistrenko@gmail.com', - linkedIn: 'https://www.linkedin.com/in/skaistrenko/', - campus: 'NYC', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Hospitality', - cities: [], - }, - { - company: 'Impending Bloom', - name: 'William Magee', - email: 'wmagee03@gmail.com', - linkedIn: 'https://www.linkedin.com/in/william-magee-22a677181/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Data Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Inari', - name: 'Kelly Dekitani', - email: 'kellydekitani@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kelly-dekitani/', - campus: 'LA', - cohort: '33', - jobTitle: 'Full Stack Engineer', - industry: 'Biotech/Agriculture', - cities: [], - }, - { - company: 'Inbrace', - name: 'Jim Yoon', - email: 'jimyoon90@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jimkyoon', - campus: 'LA', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Health', - cities: [], - }, - { - company: 'Industrious', - name: 'Bryan Li', - email: 'Bryan.li@foxmail.com', - linkedIn: 'https://www.linkedin.com/in/bbbryan14/', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Infinite Computer Solutions', - name: 'Brianna Sookhoo', - email: 'brianna.sookhoo24@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brianna-sookhoo/', - campus: 'LA', - cohort: '35', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Influent', - name: 'Adam Berri', - email: 'adamberri123@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adamberri/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Software Engineer 1', - industry: 'Social Media', - cities: [], - }, - { - company: 'Influx Data', - name: 'Grace Spletzer', - email: 'gracespletzer05@gmail.com', - linkedIn: 'https://www.linkedin.com/in/grace-spletzer/', - campus: 'LA', - cohort: '36', - jobTitle: 'Engineer I', - industry: 'Database service', - cities: [], - }, - { - company: 'InfluxData', - name: 'Bill OConnell', - email: 'wdoconnell@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bill-oconnell/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'SaaS', - cities: [], - }, - { - company: 'Infor', - name: 'Olga Naumova', - email: 'leliknaum@gmail.com', - linkedIn: 'https://www.linkedin.com/in/onaumova/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'software', - cities: [], - }, - { - company: 'Infosys', - name: 'Honghao Sun', - email: 'ilovepuffseven@gmail.com', - linkedIn: 'https://www.linkedin.com/in/honghaosunmichael/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Technical lead', - industry: 'IT Services', - cities: [], - }, - { - company: 'Infosys', - name: 'Reuben Kirsh', - email: 'reubenakirsh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/reubenkirsh/', - campus: 'LA', - cohort: '41', - jobTitle: 'Technology Analyst', - industry: 'Tech', - cities: [], - }, - { - company: 'Infosys', - name: 'Samuel Ratemo', - email: 'Sratemo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/samuelratemo/', - campus: 'LA', - cohort: '24', - jobTitle: 'Technology lead -US', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Inhance Digital', - name: 'Brian Chiang', - email: 'chiangbri@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ch-brian/', - campus: 'LA', - cohort: '34', - jobTitle: 'Software Engineer', - industry: 'Marketing', - cities: [], - }, - { - company: 'Initiative', - name: 'Brian Cheng', - email: 'Chengbrian24@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brian-cheng24/', - campus: 'LA', - cohort: '45', - jobTitle: 'Full Stack Developer', - industry: 'Media Agency', - cities: [], - }, - { - company: 'INLT', - name: 'Andrew Wong', - email: 'andwong91@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andwong91/', - campus: 'LA', - cohort: '23', - jobTitle: 'Full Stack Developer', - industry: '', - cities: [], - }, - { - company: 'Inman', - name: 'David Kim', - email: 'scriptura7773@gmail.com', - linkedIn: 'https://www.linkedin.com/in/davidkim7773/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Developer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Innovative Defense Technologies', - name: 'Daniel Pietsch', - email: 'drpietsch14@gmail.com', - linkedIn: 'https://www.linkedin.com/in/danielpietsch14/', - campus: 'NYOI', - cohort: '1', - jobTitle: 'Associate Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'InRhythm', - name: 'Altai Chiang', - email: 'altai.chiang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/altaic/', - campus: 'NYC', - cohort: '8', - jobTitle: 'Senior Software Engineer', - industry: 'Consulting', - cities: [], - }, - { - company: 'InRhythm', - name: 'Eric Marcatoma', - email: 'ericmarc159@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ericmarc159/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Software Engineer', - industry: 'Information Technology & Services', - cities: [], - }, - { - company: 'InRhythm', - name: 'Benjamin Johnson', - email: 'johnsben002@gmail.com', - linkedIn: 'https://www.linkedin.com/in/johnsben002/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Software Engineer: Web Accessibility', - industry: 'Consulting', - cities: [], - }, - { - company: 'InRhythm', - name: 'Johnson Che', - email: 'Johnson.Che01@gmail.com', - linkedIn: 'https://www.linkedin.com/in/johnsonche/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Consulting', - cities: [], - }, - { - company: 'InRhythm', - name: 'Wai Fai Lau', - email: 'wlau8088@gmail.com', - linkedIn: 'https://www.linkedin.com/in/wai-fai-lau/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Software Engineer', - industry: 'Software Consulting', - cities: [], - }, - { - company: 'Insider, Inc.', - name: 'Michael Lauri', - email: 'michael.lauri@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mlauri/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer II', - industry: 'Online Media', - cities: [], - }, - { - company: 'Insider, Inc.', - name: 'Mitchel Severe', - email: 'mitchelsevere@gmail.com', - linkedIn: 'https://www.linkedin.com/in/misevere/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Software Engineer III', - industry: 'Digital Media', - cities: [], - }, - { - company: 'Insight Global', - name: 'Lucas Mobley', - email: 'Lucas.W.Mobley@Gmail.com', - linkedIn: 'https://www.linkedin.com/in/lucasmobley/', - campus: 'LA', - cohort: '41', - jobTitle: 'Front End Developer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Insight Global (contract for Nike)', - name: 'Dave Franz', - email: 'davefranz@me.com', - linkedIn: 'https://www.linkedin.com/in/dave-franz/', - campus: 'LA', - cohort: '33', - jobTitle: 'Senior Full-Stack Automation Developer', - industry: 'athletic footwear and apparel', - cities: [], - }, - { - company: 'Insight Global Consulting', - name: 'Andrew Kessinger', - email: 'andrew.kessinger@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '27', - jobTitle: 'React developer', - industry: 'Consulting', - cities: [], - }, - { - company: 'Instride', - name: 'Jayvee Aspa', - email: 'jayvee.aspa@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jayveeaspa/', - campus: 'LA', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Education', - cities: [], - }, - { - company: 'Integral', - name: 'Anna Larouche', - email: 'alarouche@gmail.com', - linkedIn: 'https://www.linkedin.com/in/anna-larouche/', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Full-stack Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Intelepeer', - name: 'Colton Robbins', - email: 'coltondr@gmail.com', - linkedIn: 'https://www.linkedin.com/in/c-robbins/', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Developer', - industry: 'Other', - cities: [], - }, - { - company: 'Intellective', - name: 'Dennis Lopez', - email: 'dnnis.lpz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dennis-lopezsb/', - campus: 'LA', - cohort: '40', - jobTitle: 'Full-Stack Developer', - industry: 'Internet', - cities: [], - }, - { - company: 'Intent Media', - name: 'Denali DeMots', - email: 'denali.demots@gmail.com', - linkedIn: 'https://www.linkedin.com/in/denali-demots/', - campus: 'NYC', - cohort: '3', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Interactive Brokers', - name: 'Luke McInerney', - email: 'mciluke@gmail.com', - linkedIn: 'https://www.linkedin.com/in/luke-mcinerney/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Intercom', - name: 'Michael Colley', - email: 'michael.e.colley@googlemail.com', - linkedIn: 'https://www.linkedin.com/in/michaelecolley/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Product Engineer', - industry: 'SaaS, business creation services', - cities: [], - }, - { - company: 'International association of the better business bureau', - name: 'Giovanni Rodriguez', - email: 'Gjrod16@gmail.com', - linkedIn: - 'https://www.linkedin.com/in/giovanni-rodriguez2?trk=public_profile_browsemap&challengeId=AQFtoT_NoFD3KAAAAYkntGZKTiNfC60o4v2Z4zYAnz_4_KDTQUBD7ql40SFHKBenfzE9c6FBwiMar6V09FHeEqmjVS1EAfJ7Ag&submissionId=3cc6cd5a-1812-6f17-7ceb-2e5c0f6f3658&challengeSource=AgFf2bVUVWWRnwAAAYkntJ9Q3ysytHHh91YXaw8gQiFJEKewOYeYX6rLjYNFhlQ&challegeType=AgGCPMxM5AqqqwAAAYkntJ9TeXuuC8zmVgvrjuLxi773fqd8_2_50rU&memberId=AgFbJ9qnK0duCgAAAYkntJ9WYBoUAlgShMkO190TrWZI9XA&recognizeDevice=AgGnKEfL32RWyAAAAYkntJ9aHRqgkhTAzFQoMuIEWQbDY5Tac0sU', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Full Stack Developer', - industry: 'Other', - cities: [], - }, - { - company: 'International Business Machines', - name: 'Michael Evans', - email: 'amike.evans@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael-evans-8278b865/', - campus: 'NYC', - cohort: '14', - jobTitle: 'Lead Full Stack Developer', - industry: 'Computer Software', - cities: [], - }, - { - company: 'Intrinsic Enterprises', - name: 'Jasmine A Gonzalez', - email: 'jasminezalez@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jasminezalez/', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Intuit', - name: 'Daria Bondarenko', - email: 'dan4ik18@gmail.com', - linkedIn: 'https://www.linkedin.com/in/daria-b/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer', - industry: 'Enterprise Software', - cities: [], - }, - { - company: 'Intuit', - name: 'Davide Molino', - email: 'davidemmolino@gmail.com', - linkedIn: 'https://www.linkedin.com/in/davide-molino/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer III', - industry: 'Technology', - cities: [], - }, - { - company: 'Intuit', - name: 'Manjeet Kaur', - email: 'manjeet175@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kaurmanjeet/', - campus: 'NYC', - cohort: '5', - jobTitle: 'Senior Frontend Engineer', - industry: '', - cities: [], - }, - { - company: 'Intuit', - name: 'Matthew Marchand', - email: 'matthew.marchand.93@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mnmarchand/', - campus: 'LA', - cohort: '40', - jobTitle: 'Software Engineer II', - industry: 'Fintech', - cities: [], - }, - { - company: 'intuit', - name: 'Yevgeniy Skroznikov', - email: 'yevskro@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yevgeniyskroznikov/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Software Engineer II', - industry: 'Enterprise software', - cities: [], - }, - { - company: 'InvestCloud', - name: 'Curtis Lovrak', - email: 'curtislovrak@gmail.com', - linkedIn: 'https://www.linkedin.com/in/curtislovrak/', - campus: 'NYOI', - cohort: '4', - jobTitle: 'UI Developer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Invisory', - name: 'Thomas Kady', - email: 'thomas.kady@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thomas-kady/', - campus: 'FTRI / CTRI', - cohort: '14', - jobTitle: 'Software Developer', - industry: 'Cloud Services', - cities: [], - }, - { - company: 'IP.com', - name: 'Matthew Miller', - email: 'matthewjohnmiller2020@gmail.com', - linkedIn: 'https://www.linkedin.com/in/matthew-miller2020/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Iridium Satellite LLC', - name: 'Lyam Hunt', - email: 'lyamnhunt@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lyamhunt/', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Software Developer II', - industry: 'Telecommunications', - cities: [], - }, - { - company: 'IronNet Cybersecurity', - name: 'Daniel Stein', - email: 'danlikesbikes@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dangineer/', - campus: 'LA', - cohort: '33', - jobTitle: 'Senior UI/UX Developer', - industry: 'Computer and Network Security', - cities: [], - }, - { - company: 'ISAT Total Support', - name: 'Anthony Le', - email: 'anthonyle910@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/anthonyle910/', - campus: 'LA / WCRI', - cohort: '58', - jobTitle: 'Full Stack Developer', - industry: 'Other', - cities: [], - }, - { - company: 'Isobar', - name: 'Anthony Torrero', - email: 'Anthonyduarteee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/anthony-duarte-4b8798159/', - campus: 'LA', - cohort: '41', - jobTitle: 'Frontend Developer', - industry: 'Creative Agency', - cities: [], - }, - { - company: 'Isobar', - name: 'James Gary', - email: 'jim@jamesgary.com', - linkedIn: 'https://www.linkedin.com/in/james-gary/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Senior Front End Developer', - industry: 'Media', - cities: [], - }, - { - company: 'iStrategyLabs', - name: 'Brittany Miltenberger', - email: 'brittany.miltenberger@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brittanywm/', - campus: 'LA', - cohort: '23', - jobTitle: 'Senior Web Developer', - industry: '', - cities: [], - }, - { - company: 'Itential', - name: 'Chao Zhong Yu', - email: 'ChaoY91@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/czyu/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Ivy Energy', - name: 'Gavin Crews', - email: 'Gcrews1894@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gavincrews/', - campus: 'LA', - cohort: '39', - jobTitle: 'Frontend Engineer', - industry: 'Solar', - cities: [], - }, - { - company: 'Ivy Energy', - name: 'Nicolas Pita', - email: 'pitanicolase@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nicolaspita/', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Developer', - industry: 'Clean Energy', - cities: [], - }, - { - company: 'Jam City', - name: 'Tony Ito-Cole', - email: 'tonyitocole@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tony-ito-cole/', - campus: 'LA', - cohort: '34', - jobTitle: 'Platform Engineer', - industry: 'Mobile Gaming', - cities: [], - }, - { - company: 'Janus Health', - name: 'Benjamin Michareune', - email: 'ben.michareune@Gmail.com', - linkedIn: 'https://www.linkedin.com/in/benmichareune', - campus: 'FTRI / CTRI', - cohort: '7', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Janus Healthcare', - name: 'Simon Lee', - email: 'simonlee1125@gmail.com', - linkedIn: 'https://www.linkedin.com/in/simonhlee/', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Software Engineer II', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Jasper (AI)', - name: 'Marcellies Pettiford', - email: 'marcellies@pettifords.xyz', - linkedIn: 'https://www.linkedin.com/in/marcellies-pettiford/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Software Engineer II', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Jogg', - name: 'Alex Kolb', - email: 'akolb981@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexanderjkolb/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'JP Morgan', - name: 'jonathan k coe', - email: 'jon.coe@codesmith.io', - linkedIn: 'https://www.linkedin.com/in/jonathan-k-coe/', - campus: 'NYC', - cohort: '4', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'JP Morgan', - name: 'Jimmy Tran', - email: 'jvtran48@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jimmytran48/', - campus: 'NYC / ECRI', - cohort: '40', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'JP Morgan / Chase', - name: 'Wayne Wilcox', - email: 'wilcox_wayne@hotmail.com', - linkedIn: 'https://www.linkedin.com/in/wayne-wilcox/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Junior Developer Associate', - industry: 'Fintech', - cities: [], - }, - { - company: 'JP Morgan Chase', - name: 'David Behmoaras', - email: 'dbehmoaras@gmail.com', - linkedIn: 'https://www.linkedin.com/in/david-behmoaras/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'JP Morgan Chase', - name: 'Howard Na', - email: 'howardna317@gmail.com', - linkedIn: 'https://www.linkedin.com/in/howard-na-jr/', - campus: 'LA', - cohort: '26', - jobTitle: 'Software Engineer', - industry: 'Media', - cities: [], - }, - { - company: 'JP Morgan Chase', - name: 'Stewart Elmore', - email: 'stewart.elmore@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stewart-elmore/', - campus: 'NYC / ECRI', - cohort: '31', - jobTitle: 'Associate Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'JP Morgan Chase & Co', - name: 'Parker Steinberg', - email: 'parker.s52@gmail.com', - linkedIn: 'https://www.linkedin.com/in/parker-steinberg/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'JP Morgan Chase & Co.', - name: 'Jimmy Chen', - email: 'jimmychen12249@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jimchn/', - campus: 'NYC', - cohort: '17', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'JP Morgan Chase & Co.', - name: 'Mike Oโ€™Donnell', - email: 'michaelodonnell18@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michaelodonnell18', - campus: 'NYC', - cohort: '28', - jobTitle: 'Full Stack Developer', - industry: 'Banking', - cities: [], - }, - { - company: 'JPMChase', - name: 'Adam Wilson', - email: 'aswilson87@gmail.com', - linkedIn: 'https://www.linkedin.com/in/aswilson87/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Associate Engineer', - industry: 'Finance', - cities: [], - }, - { - company: 'JPMorgan', - name: 'Winford Lin', - email: 'linwinford@gmail.com', - linkedIn: 'https://www.linkedin.com/in/winfordlin/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer II', - industry: 'Fintech', - cities: [], - }, - { - company: 'JPMorgan Chase', - name: 'Adam White', - email: 'adamkarnwhite@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adam-karn-white', - campus: 'NYC / ECRI', - cohort: '31', - jobTitle: 'Senior Associate Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'JPMorgan Chase', - name: 'Adrian Uesugui', - email: 'auesugui@gmail.com', - linkedIn: 'https://www.linkedin.com/in/auesugui/', - campus: 'LA', - cohort: '46', - jobTitle: 'Associate Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'JPMorgan Chase', - name: 'John Donovan ', - email: 'jodonovan845@gmail.com', - linkedIn: 'https://www.linkedin.com/in/john-d-donovan', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Software Engineer - Associate II', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'JPMorgan Chase & Co', - name: 'Jo Huang', - email: 'johuangx@gmail.com', - linkedIn: 'https://www.linkedin.com/in/johuangx/', - campus: 'NYOI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'JPMorgan Chase & Co.', - name: 'Stanley Huang', - email: 'iamstanleyhuang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stanleyhuang16/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'JPMorgan Chase & Co.', - name: 'Terence Petersen', - email: 'robo.terence@gmail.com', - linkedIn: 'https://www.linkedin.com/in/terence-petersen/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Associate Software Engineer', - industry: 'Merchant Services', - cities: [], - }, - { - company: 'Juniper Behavioral Health', - name: 'Kelvin Cuesta', - email: 'kelvinscuesta@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kelvinscuesta/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Justworks', - name: 'Shelby Neuman', - email: 'shelbydneuman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shelbyneuman/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'JustWorks Labs', - name: 'Sophia Huttner', - email: 'sophjean@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sophia-huttner/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Frontend Software Engineer', - industry: 'HR Suite', - cities: [], - }, - { - company: 'Karr Barth Administrators', - name: 'Loralyn Milcarek', - email: 'loralyn.milcarek@gmail.com', - linkedIn: 'https://www.linkedin.com/in/loralyn-milcarek/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Developer', - industry: 'Other', - cities: [], - }, - { - company: 'Keller Williams Realty, Inc', - name: 'Brent Speight', - email: 'brentjosephspeight@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brent-speight/', - campus: 'LA', - cohort: '44', - jobTitle: 'Software Engineer', - industry: 'Realty', - cities: [], - }, - { - company: 'Kelley Blue Book (Cox Automotive)', - name: 'Ryan Bender', - email: 'rdbender@me.com', - linkedIn: 'https://www.linkedin.com/in/rdbender', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer I', - industry: 'Automotive', - cities: [], - }, - { - company: 'Kevel', - name: 'Adam Joesten', - email: 'adamjoesten@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adamjoesten/', - campus: 'LA', - cohort: '40', - jobTitle: 'Senior Software Engineer (SDE II)', - industry: 'Adtech', - cities: [], - }, - { - company: 'Key Bank (Laurel Road)', - name: 'Eric Pham', - email: 'ericpham36@gmail.com', - linkedIn: 'https://www.linkedin.com/in/epstylesoflife/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Senior Full Stack Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Kibanx', - name: 'Celeste Knopf', - email: 'celesteknopf@gmail.com', - linkedIn: 'https://www.linkedin.com/in/celesteknopf/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Front End Engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Kin + Carta', - name: 'Eric Olaya', - email: 'ericolaya@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eric-olaya/', - campus: 'FTRI', - cohort: '3', - jobTitle: 'Software Engineer', - industry: 'Tech Consulting', - cities: [], - }, - { - company: 'Kindo', - name: 'Hannah Bernstein', - email: 'hbern00@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bernstein-hannah/', - campus: 'LA / WCRI', - cohort: '53', - jobTitle: 'Software Engineer', - industry: 'Artificial Intelligence', - cities: [], - }, - { - company: 'Kitman Labs', - name: 'Gregory Levine-Rozenvayn', - email: 'Grisha617@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gregory-levine-rozenvayn', - campus: 'NYC', - cohort: '24', - jobTitle: 'Senior Software Engineer, Frontend', - industry: 'Sports data science', - cities: [], - }, - { - company: 'Klarna', - name: 'Natalie Vick', - email: 'vicknatalie@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vicknatalie/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Senior Frontend Engineer', - industry: 'Ecommerce', - cities: [], - }, - { - company: 'Klaviyo', - name: 'Amy Chen', - email: 'aechen46@gmail.com', - linkedIn: 'https://www.linkedin.com/in/amyechen/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Marketing Technology', - cities: [], - }, - { - company: 'Klaviyo', - name: 'Elinor Weissberg', - email: 'elinorthw@gmail.com', - linkedIn: 'https://www.linkedin.com/in/elinorweissberg/', - campus: 'NYOI', - cohort: '5', - jobTitle: 'Software Engineer II', - industry: 'Marketing/Advertising', - cities: [], - }, - { - company: 'Knotel', - name: 'Rocky Liao', - email: 'rliao3613@gmail.com', - linkedIn: 'https://linkedin.com/in/seemsrocky', - campus: 'NYC', - cohort: '12', - jobTitle: 'Software engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Knowable', - name: 'Alex Sanhueza', - email: 'alexrsanhueza@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alex-sanhueza/', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Development Engineer II (Front end)', - industry: 'Legal Services', - cities: [], - }, - { - company: 'Komodo Health', - name: 'Ju Kim', - email: 'juhyuns98@gmail.com', - linkedIn: '', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Engineer, Applications', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Konami Gaming', - name: 'Aidan Noble-Goodman', - email: 'anoblegoodman@gmail.com', - linkedIn: 'www.linkedin.com/anoblegoodman', - campus: 'LA', - cohort: '28', - jobTitle: 'Software Engineer II', - industry: 'Gaming/casino management software', - cities: [], - }, - { - company: 'Kroger', - name: 'John Wong', - email: 'johnwong4150@gmail.com', - linkedIn: 'https://www.linkedin.com/in/john-wong-fongching/', - campus: 'LA / WCRI', - cohort: '43', - jobTitle: 'Web Platform Engineer', - industry: 'Retail', - cities: [], - }, - { - company: 'Kroger', - name: 'Jason Seidler', - email: 'jsonseidler@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jason-seidler/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Senior Front End Developer', - industry: 'Retail', - cities: [], - }, - { - company: 'Kroger', - name: 'Kevin MacCoy', - email: 'kmaccoy@fau.edu', - linkedIn: 'https://www.linkedin.com/in/kevin-maccoy/', - campus: 'FTRI', - cohort: '1', - jobTitle: 'Backend Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Kroger', - name: 'Elise McConnell', - email: 'elisemcconnell11@gmail.com', - linkedIn: 'www.linkedin.com/in/elisemcconnell', - campus: 'FTRI / CTRI', - cohort: '12', - jobTitle: 'Software Engineer', - industry: 'Retail', - cities: [], - }, - { - company: 'Kryptowire', - name: 'Michael Ross', - email: 'michaelalross@gmail.com', - linkedIn: 'https://linkedin.com/in/michaelalross', - campus: 'LA', - cohort: '45', - jobTitle: 'Software Engineer II', - industry: 'DevSecOps', - cities: [], - }, - { - company: 'KyckGlobal', - name: 'Joseph Lee', - email: 'josephemlee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/josephjslee/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Kyte Dynamics, Inc.', - name: 'Lawrence Yeh', - email: 'lawyeh391@gmail.com', - linkedIn: 'linkedin.com/in/lawyeh', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'LA County', - name: 'Vu Duong', - email: 'vthanhd@gmail.com', - linkedIn: 'www.linkedin.com/in/vu-duong', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Application Developer II', - industry: 'Government', - cities: [], - }, - { - company: 'LaaSie.ai', - name: 'Tyler Sayles', - email: 'saylestyler@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tylersayles/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Full stack Engineer', - industry: 'Marketing', - cities: [], - }, - { - company: 'Lab49', - name: 'Eric Tacher', - email: 'erictacher@gmail.com', - linkedIn: 'https://www.linkedin.com/in/erictacher/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Web UI Engineer', - industry: 'Fintech Consulting', - cities: [], - }, - { - company: 'Lasso Marketing', - name: 'Andy Tsou', - email: 'tsou.andy@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andy-tsou/', - campus: 'LA', - cohort: '45', - jobTitle: 'Integration Engineer', - industry: 'Health Care Marketing', - cities: [], - }, - { - company: 'LastPass', - name: 'E Kathuria', - email: 'e@kathuria.dev', - linkedIn: 'https://www.linkedin.com/in/ekathuria', - campus: 'NYC', - cohort: '32', - jobTitle: 'Front End Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Lattitude', - name: 'Carolyn Zheng', - email: 'ruxinzheng01@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ruxinzhengswe/', - campus: 'LA / WCRI', - cohort: '57', - jobTitle: 'Software Engineer', - industry: 'Marketing/Advertising', - cities: [], - }, - { - company: 'Launch Darkly', - name: 'Samuel Kim', - email: 'samuyyy@gmail.com', - linkedIn: 'https://www.linkedin.com/in/samuy/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Software Engineer (Backend)', - industry: 'Developer Tools', - cities: [], - }, - { - company: 'Lawmatics', - name: 'Omar Rana', - email: 'omar_rana93@hotmail.com', - linkedIn: 'https://www.linkedin.com/in/orana1/', - campus: 'LA', - cohort: '45', - jobTitle: 'Full Stack Engineer', - industry: 'CRM for law firms', - cities: [], - }, - { - company: 'Leadpages', - name: 'Evan McNeely', - email: 'evanmcneely@me.com', - linkedIn: 'https://www.linkedin.com/in/evanmcneely/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Software Engineer II', - industry: 'Marketing', - cities: [], - }, - { - company: 'Leaf Group (Society6)', - name: 'Oliver Roldan', - email: 'oproldan01@gmail.com', - linkedIn: '', - campus: 'LA / WCRI', - cohort: '40', - jobTitle: 'Frontend Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'LeaseLock', - name: 'Kara Chisholm', - email: 'kkchisholm@gmail.com', - linkedIn: 'https://www.linkedin.com/in/karachisholm/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'LedgerX', - name: 'Abaas Khorrami', - email: 'abaas.khorrami@gmail.com', - linkedIn: 'https://www.linkedin.com/in/abaas-khorrami/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Senior Frontend Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'LegacyScape', - name: 'Cassidy Johnson', - email: 'cassidyrose56@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cassidy-r-johnson/', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'LegalZoom', - name: 'Henry Park', - email: 'codedenma@gmail.com', - linkedIn: 'https://www.linkedin.com/in/henrytpark/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Software Engineer II, Product Experiences', - industry: 'Other', - cities: [], - }, - { - company: 'Lendbuzz Inc.', - name: 'Quoc Do', - email: 'dlaquoc1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dlaquoc/', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Full Stack Engineer Co-op (Internship)', - industry: 'Automotive', - cities: [], - }, - { - company: 'Lessen Inc', - name: 'Davette Bryan', - email: 'davettejones11@gmail.com', - linkedIn: 'https://www.linkedin.com/in/davette-bryan/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Jr. Software Engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Lever', - name: 'Aiden Blinn', - email: 'apblinn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/aidenblinn/', - campus: 'FTRI', - cohort: '7', - jobTitle: 'Integrations Engineer', - industry: 'IT Services', - cities: [], - }, - { - company: 'Lever', - name: 'Jae Lee', - email: 'jaelee213@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jaelee213/', - campus: 'LA', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Recruiting', - cities: [], - }, - { - company: 'Lever', - name: 'Sophia Sam', - email: 'sophia.sam96@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sophia-sam', - campus: 'FTRI', - cohort: '7', - jobTitle: 'Software Engineer II', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Lexis Nexis', - name: 'Danny Martinez', - email: 'codesmith@jdanielmartinez.com', - linkedIn: 'https://www.linkedin.com/in/jdanielmartinez/', - campus: 'LA', - cohort: '42', - jobTitle: 'GraphQL Full Stack Developer', - industry: 'Paralegal', - cities: [], - }, - { - company: 'LexisNexis', - name: 'Graham Albachten', - email: 'albachteng@gmail.com', - linkedIn: 'https://www.linkedin.com/in/graham-albachten-00162a52/', - campus: 'FTRI', - cohort: '1', - jobTitle: 'GraphQL Full Stack Developer', - industry: 'Legal', - cities: [], - }, - { - company: 'Lexmark', - name: 'Luke Roberts', - email: 'luke.roberts089@gmail.com', - linkedIn: 'https://www.linkedin.com/in/luke-roberts0/', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Liberty Maritime', - name: 'Garrett Layden', - email: 'garlayden@gmail.com', - linkedIn: 'https://linkedin.com/in/garrett-layden', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Full Stack Developer', - industry: 'Other', - cities: [], - }, - { - company: 'Liberty Mutual', - name: 'Bryan Kim', - email: 'bkim0826@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bkimmm/', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: [], - }, - { - company: 'Liberty Mutual', - name: 'Cristian De Los Rios', - email: 'Cris2595@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cristian-dlr/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: [], - }, - { - company: 'Liberty Mutual', - name: 'Patrick Sullivan', - email: 'patrick@jsullivan.org', - linkedIn: 'https://www.linkedin.com/in/patrick-j-m-sullivan/', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: [], - }, - { - company: 'Liberty Mutual', - name: 'Robert Tipton', - email: 'robbytiptontol@gmail.com', - linkedIn: 'https://www.linkedin.com/in/robert-tipton/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: [], - }, - { - company: 'Liberty Mutual', - name: 'Tyler Jameson Martinez', - email: 'tm6002005@gmail.com', - linkedIn: 'https://www.linkedin.com/mwlite/in/tylerjamesonmartinez', - campus: 'LA', - cohort: '43', - jobTitle: 'Software engineer', - industry: 'Insurance', - cities: [], - }, - { - company: 'LifeOmic', - name: 'Chloe Courtois', - email: 'crc.courtois@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chloe-courtois-3337a210b/', - campus: 'FTRI', - cohort: '7', - jobTitle: 'Associate Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Limble CMMS', - name: 'Josh Merrell', - email: 'joshmerrell.us@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joshmerrell/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Software Developer III', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Linguabee', - name: 'Connor Gillis', - email: 'connoregillis@gmail.com', - linkedIn: 'https://www.linkedin.com/in/connor-gillis/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Front End Software Engineer', - industry: 'Interpreting', - cities: [], - }, - { - company: 'LinkedIn', - name: 'Ethan Yeh', - email: 'Ethanhwyeh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ethanhwyeh/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Full Stack Software Engineer', - industry: 'Professional Networking', - cities: [], - }, - { - company: 'LinkedIn', - name: 'Douglas Yao', - email: 'doug.yao@gmail.com', - linkedIn: 'https://www.linkedin.com/in/douglas-yao/', - campus: 'FTRI / CTRI', - cohort: '16', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Linus Health', - name: 'Tommy Song', - email: 'Tommysong123@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Health tech', - cities: [], - }, - { - company: 'LiquidPixels', - name: 'Christian Looff', - email: 'ctnguy10@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christian-looff/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Literably', - name: 'Tiffany Wong', - email: 'Wongt1227@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tiffanywong149', - campus: 'NYC / ECRI', - cohort: '42', - jobTitle: 'Junior Software Engineer', - industry: 'Education/Edtech', - cities: [], - }, - { - company: 'Little Cinema', - name: 'Kenny Ma', - email: 'Kennyjjma@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '15', - jobTitle: 'Front End Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Littlebits', - name: 'Jinsung Park', - email: 'js.lia.park@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jsliapark/', - campus: 'NYC', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Beauty/Cosmetic', - cities: [], - }, - { - company: 'Live Nation', - name: 'Colin Gibson', - email: 'colingibs@gmail.com', - linkedIn: 'https://www.linkedin.com/in/colin--gibson/', - campus: 'LA', - cohort: '44', - jobTitle: 'Software Development Engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Lively Video', - name: 'Mark Miller', - email: 'markmmiller825@gmail.com', - linkedIn: 'https://www.linkedin.com/in/markmanuelmiller/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Senior Software Engineer', - industry: 'Entertainment/education', - cities: [], - }, - { - company: 'LivePerson', - name: 'Geoffrey Lin', - email: 'geoffrey.s.lin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/geoff-lin/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'Computer Software', - cities: [], - }, - { - company: 'LivePerson', - name: 'Taihyun (Ray) Lee', - email: 'taihyun.ray.lee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/taihyun-ray-lee/', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software Development Engineer', - industry: 'Software (SAAS)', - cities: [], - }, - { - company: 'LivePerson', - name: 'Taihyun Lee', - email: 'th9061@gmail.com', - linkedIn: 'https://www.linkedin.com/in/taihyun-ray-lee', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software Development Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'LogicMonitor', - name: 'Jessica Vaughan', - email: 'jessicavaughan820@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jessicavaughan820/', - campus: 'LA', - cohort: '30', - jobTitle: 'frontend developer', - industry: 'SaaS', - cities: [], - }, - { - company: 'Lokavant', - name: 'Eric Peng', - email: 'tzerpeng@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eric-peng-jojo/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: 'Information Technology & Services', - cities: [], - }, - { - company: 'Lonesdale Invest', - name: 'Coral Fussman', - email: 'coralfussman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/coral-fussman-21721538/', - campus: 'FTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Longtail Studios', - name: 'Daniel Steinbrook', - email: 'steinbrookdaniel@gmail.com', - linkedIn: 'https://www.linkedin.com/in/daniel-steinbrook/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Developer - AI Models Integration', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Loop', - name: 'Olivia Hodel', - email: 'ohodel16@gmail.com', - linkedIn: 'https://www.linkedin.com/in/olivia-hodel/', - campus: 'NYC / ECRI', - cohort: '39', - jobTitle: 'Associate Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Lord, Abbett & Co. LLC', - name: 'Vince Chin', - email: 'vincech@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vincech/', - campus: 'PTRI', - cohort: '5', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Los Alamos National Laboratory', - name: 'James Howat', - email: 'james@howat.dev', - linkedIn: 'LinkedIn.com/in/jamesbhowat', - campus: 'FTRI / CTRI', - cohort: '12', - jobTitle: 'Software Developer 2', - industry: 'Security', - cities: [], - }, - { - company: 'Lotic AI', - name: 'Adam Blackwell', - email: 'blackwell.ada@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adam-blackwell-85918595/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Software Engineer', - industry: 'Mental Health', - cities: [], - }, - { - company: 'Low Associates', - name: 'William Robson', - email: 'will.robson19@gmail.com', - linkedIn: 'https://www.linkedin.com/in/william-k-robson/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Full Stack Developer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Lowes', - name: 'Joshuah Edwards', - email: 'joshuah.edwards@proton.me', - linkedIn: 'linkedin.com/in/joshuah-edwards/', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'Retail', - cities: [], - }, - { - company: 'Lumi AI', - name: 'Ryan Hastings', - email: 'rhaasti@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rhaasti/', - campus: 'NYOI', - cohort: '4', - jobTitle: 'Front-End Engineer (six month contract-to-hire)', - industry: 'Artificial Intelligence/Machine Learning', - cities: [], - }, - { - company: 'Lumifi', - name: 'Ryan Gause', - email: 'Ryan.g.gause.3@gmail.com', - linkedIn: 'LinkedIn.com/in/ryangause', - campus: 'PTRI', - cohort: '9', - jobTitle: 'Software Developer II', - industry: 'Security', - cities: [], - }, - { - company: 'Lunchbox', - name: 'Judy Tan', - email: 'judytan86@gmail.com', - linkedIn: 'https://www.linkedin.com/in/judy-tan93/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Frontend Engineer', - industry: 'Food Industry', - cities: [], - }, - { - company: 'LVRG', - name: 'Gary Slootskiy', - email: 'garyslootskiy@gmail.com', - linkedIn: 'https://linkedin.com/in/garyslootskiy', - campus: 'NYC', - cohort: '21', - jobTitle: 'Senior Software Engineer', - industry: 'Supply Chain Management', - cities: [], - }, - { - company: 'Lytx', - name: 'Miller Johnston', - email: 'miller.johnston17@gmail.com', - linkedIn: 'linkedin.com/in/miller-johnston', - campus: 'FTRI / CTRI', - cohort: '6', - jobTitle: 'Software Engineer II', - industry: 'Automotive', - cities: [], - }, - { - company: 'M Science', - name: 'Celena Chan', - email: 'celenachan@gmail.com', - linkedIn: 'https://www.linkedin.com/in/celenachan', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Madison Logic', - name: 'Richie Edwards', - email: 'richie00edwards@gmail.com', - linkedIn: 'https://www.linkedin.com/in/richieedwards/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Full Stack Engineer', - industry: 'Marketing', - cities: [], - }, - { - company: 'Maestro', - name: 'Jacob Banks', - email: 'jacobjeffreybanks@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jacobjbanks/', - campus: 'LA', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Media/Entertainment', - cities: [], - }, - { - company: 'Magic Leap', - name: 'Randy Reyes', - email: 'rqreyes@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rqreyes/', - campus: 'LA', - cohort: '31', - jobTitle: 'Front-End Software Engineer', - industry: 'Augmented Reality', - cities: [], - }, - { - company: 'MagMutual', - name: 'Mark Yencheske', - email: 'markyencheske@gmail.com', - linkedIn: 'https://www.linkedin.com/in/markyencheske/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: [], - }, - { - company: 'Magnite', - name: 'John Madrigal', - email: 'johnmadrigal17@gmail.com', - linkedIn: 'https://www.linkedin.com/in/john-r-madrigal/', - campus: 'LA', - cohort: '37', - jobTitle: 'Front End Software Development Engineer', - industry: 'Adtech', - cities: [], - }, - { - company: 'Mailchimp/Intuit', - name: 'Albert Han', - email: 'albert.h1231@gmail.com', - linkedIn: 'https://www.linkedin.com/in/albert-han1', - campus: 'LA', - cohort: '47', - jobTitle: 'SWE II', - industry: 'Marketing/financial management', - cities: [], - }, - { - company: 'Mailchimp/Intuit', - name: 'Gerry Bong', - email: 'ggbong734@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gerry-bong/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Maisonette', - name: 'Heidi Kim', - email: 'heidiyoora@gmail.com', - linkedIn: 'https://www.linkedin.com/in/heidiykim/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: 'E-commerce', - cities: [], - }, - { - company: 'Major League Baseball', - name: 'Steven Rosas', - email: 'srosas20@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rosassteven/', - campus: 'NYC', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Sports', - cities: [], - }, - { - company: 'MakerBot', - name: 'Anthony R Toreson', - email: 'anthony.toreson@gmail.com', - linkedIn: 'https://www.linkedin.com/in/atoreson/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Senior Software Engineer', - industry: 'Hardware manufacturer (3d printers)', - cities: [], - }, - { - company: 'ManageGo', - name: 'Bo Peng', - email: 'bopeng95@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bopeng95/', - campus: 'NYC', - cohort: '10', - jobTitle: 'Software Developer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Manatee', - name: 'Raivyno Sutrisno', - email: 'yessysutter@gmail.com', - linkedIn: 'https://www.linkedin.com/in/raivyno-sutrisno/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Mantium', - name: 'Steve Hong', - email: 'swe.stevehong@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stevehong-swe/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Artificial Intelligence', - cities: [], - }, - { - company: 'MANTL', - name: 'Lourent Flores', - email: 'lourent.flores@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lourent-flores/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Full stack Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'MANTL', - name: 'TJ Wetmore', - email: 'Thomas.j.wetmore@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tjwetmore/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Mantra Health', - name: 'Konrad Kopko', - email: 'konradkopko1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/konradkopko/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'HealthTech', - cities: [], - }, - { - company: 'Maple.Finance', - name: 'Thomas Harper', - email: 'tommyrharper@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thomas-robert-harper/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Senior Software Engineer', - industry: 'Blockchain/Web3', - cities: [], - }, - { - company: 'Mariana Tek', - name: 'Owen Eldridge', - email: 'oweneldridge7@gmail.com', - linkedIn: 'https://www.LinkedIn.com/in/owen-eldridge', - campus: 'NYC', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Fitness Center Saas', - cities: [], - }, - { - company: 'MarineSitu', - name: 'Emily Paine', - email: 'erpaine@gmail.com', - linkedIn: 'https://www.linkedin.com/in/emily-paine1/', - campus: 'FTRI / CTRI', - cohort: '12', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Mark43', - name: 'Kadir Gundogdu', - email: 'kadirgund@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kadirgund/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer', - industry: 'Law Enforcement', - cities: [], - }, - { - company: 'Mark43', - name: 'Sophie Nye', - email: 'sophie.nye@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '12', - jobTitle: 'Software engineer', - industry: 'Itโ€™s software for first responders, not sure what industry that is', - cities: [], - }, - { - company: 'Marsh Mclennan', - name: 'Mina Koo', - email: 'minalunakoo@gmail.com', - linkedIn: 'linkedin.com/in/minakoo', - campus: 'NYC / ECRI', - cohort: '30', - jobTitle: 'Developer', - industry: 'Insurance', - cities: [], - }, - { - company: 'MAS Medical Staffing', - name: 'Jeffrey Schrock', - email: 'rhythmmagi@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jmschrock/', - campus: 'NYC', - cohort: '4', - jobTitle: 'React Software Engineer', - industry: 'FinTech', - cities: [], - }, - { - company: 'MassMutual', - name: 'Ausar English', - email: 'ausareenglish@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ausarenglish/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Fullstack Developer', - industry: 'Financial Services/Insurance', - cities: [], - }, - { - company: 'MassMutual', - name: 'Bryanna DeJesus', - email: 'bryanna.dejesus@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bryannadejesus/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Full Stack Developer', - industry: 'Insurance', - cities: [], - }, - { - company: 'MasterCard', - name: 'Abigail Gerig', - email: 'abigail.gerig@gmail.com', - linkedIn: 'https://www.linkedin.com/in/abigail-gerig/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Mastercard', - name: 'Edwin Lin', - email: 'Edwinlim@gmail.com', - linkedIn: 'https://www.linkedin.com/in/edwinlin/', - campus: 'NYC', - cohort: '14', - jobTitle: 'JavaScript Engineer', - industry: 'Payment card', - cities: [], - }, - { - company: 'Mavis', - name: 'Aalayah-Lynn Olaes', - email: 'olaesaalayah@gmail.com', - linkedIn: 'linkedin.com/in/aalayaholaes', - campus: 'NYC / ECRI', - cohort: '40', - jobTitle: 'Software Engineer', - industry: 'Automotive', - cities: [], - }, - { - company: 'Mavis Tire', - name: 'Peter Kennedy', - email: 'Ptkennedy9@gmail.com', - linkedIn: 'https://www.linkedin.com/peter-kennedy', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Full Stack Software Engineer ', - industry: 'Automotive', - cities: [], - }, - { - company: 'Mavis Tires', - name: 'Jessica Davila', - email: 'jdav92@gmail.com', - linkedIn: 'https://www.linkedin.com/feed/', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Senior Full Stack Engineer', - industry: 'Automotive', - cities: [], - }, - { - company: 'Maya Health', - name: 'Danny Byrne', - email: 'danny.byrne.dev@gmail.com', - linkedIn: 'https://www.linkedin.com/in/danny-byrne-la/', - campus: 'LA', - cohort: '30', - jobTitle: 'Front End Engineer', - industry: 'Psychedelic Health', - cities: [], - }, - { - company: 'Maze', - name: 'Henry Black', - email: 'blackhaj@gmail.com', - linkedIn: 'https://www.linkedin.com/in/henryblack1/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Full Stack Engineer', - industry: 'Design', - cities: [], - }, - { - company: 'McGraw Hill', - name: 'Kristin Green', - email: 'kngreen@umich.edu', - linkedIn: 'https://www.linkedin.com/in/kristin-green-101902a4/', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Mcgraw Hill', - name: 'Richard Guo', - email: 'richardguo11@gmail.com', - linkedIn: 'https://www.linkedin.com/in/richardyguo/', - campus: 'LA / WCRI', - cohort: '46', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'McGraw-Hill Education', - name: 'Victor Wang', - email: 'vwang4536@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vwang4536', - campus: 'LA', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Consulting and technology services', - cities: [], - }, - { - company: 'McKinsey & Company', - name: 'Em Podhorcer', - email: 'epithe@gmail.com', - linkedIn: 'https://www.linkedin.com/feed/', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Engineer I', - industry: 'Consulting', - cities: [], - }, - { - company: 'McKinsey & Company', - name: 'Matthew Yeon', - email: 'yeon34387@gmail.com', - linkedIn: 'https://www.linkedin.com/in/matthew-yeon/', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Software Engineer', - industry: 'Consulting', - cities: [], - }, - { - company: 'MDCalc', - name: 'Jonah Wilkof', - email: 'wilkof.jonah@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonahwilkof/', - campus: 'NYC', - cohort: '7', - jobTitle: 'Software Engineer', - industry: 'Fintech, Payment Processing', - cities: [], - }, - { - company: 'Medal.tv', - name: 'Joseph Heinz', - email: 'joeheinz99@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joseph-heinz1/', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Full Stack Engineer', - industry: 'Gaming', - cities: [], - }, - { - company: 'MediaMonks NYC', - name: 'Case Simmons', - email: 'casesimmons@pm.me', - linkedIn: 'https://www.linkedin.com/mwlite/in/case-simmons', - campus: 'LA', - cohort: '38', - jobTitle: 'Creative Technologist', - industry: 'Digital Production', - cities: [], - }, - { - company: 'Mediaocean', - name: 'Parker Keller', - email: 'parkerkeller@gmail.com', - linkedIn: 'https://www.linkedin.com/in/parkerkeller/', - campus: 'LA', - cohort: '28', - jobTitle: 'Senior Software Engineer', - industry: 'Advertising & Marketing', - cities: [], - }, - { - company: 'Medical Informatics Engineering', - name: 'Keifer Alan Beck', - email: 'keiferbeck@gmail.com', - linkedIn: 'https://www.linkedin.com/in/k-alan-beck', - campus: 'FTRI / CTRI', - cohort: '16', - jobTitle: 'Fullstack Developer', - industry: 'Healthtech/Healthcare', - cities: [], - }, - { - company: 'Medidata', - name: 'Wontae Han', - email: 'wontaeh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/wontaeh/', - campus: 'NYC', - cohort: '4', - jobTitle: 'Frontend Engineer', - industry: '', - cities: [], - }, - { - company: 'Medium', - name: 'Keiran Carpen', - email: 'keirancarpen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/keirancarpen/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Senior Full Stack Engineer, Trust & Safety', - industry: 'Online publishing platform', - cities: [], - }, - { - company: 'Medly Pharmacy', - name: 'Austin Ruby', - email: 'austinjruby@gmail.com', - linkedIn: 'https://www.linkedin.com/in/austinjruby/', - campus: 'NYC', - cohort: '14', - jobTitle: 'Software Engineer I', - industry: 'Healthcare', - cities: [], - }, - { - company: 'MedMen', - name: 'Brendan Morrell', - email: 'brendanmorrell@gmail.com', - linkedIn: 'https://linkedin.com/in/brendanmorrell', - campus: 'LA', - cohort: '22', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Meltwater', - name: 'Richard Lam', - email: 'rlam108994@gmail.com', - linkedIn: 'https://www.linkedin.com/in/richardlam108/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: 'Digital Media Intelligence', - cities: [], - }, - { - company: 'MeltWater', - name: 'Sebastian Damazo', - email: 'sebastiandamazo1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ernesto-sebastian-damazo', - campus: 'LA', - cohort: '42', - jobTitle: 'Backend software engineer level 2', - industry: 'Software as a Service', - cities: [], - }, - { - company: 'Memorial Sloan Kettering', - name: 'David Zhang', - email: 'davidzhang8828@gmail.com', - linkedIn: 'https://www.linkedin.com/in/davdjz/', - campus: 'NYC', - cohort: '17', - jobTitle: 'Advanced Software Developer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Memorial Sloan Kettering', - name: 'Phillip Yoo', - email: 'phillipyoo.218@gmail.com', - linkedIn: 'https://www.linkedin.com/in/phillipyoo218/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Bioinformatics Software Engineer I', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Memorial Sloan Kettering Cancer Center', - name: 'Raymond Kwan', - email: 'kwanvm@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rkwn/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Frontend Software Engineer', - industry: 'Health', - cities: [], - }, - { - company: 'Memorial Sloan Kettering Cancer Center', - name: 'Natsuki Wada', - email: 'wachka06@gmail.com', - linkedIn: 'https://www.linkedin.com/in/natsukiwada/', - campus: 'FTRI', - cohort: '3', - jobTitle: 'Software Engineer II', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Mento', - name: 'James Highsmith', - email: 'me@jameshighsmith.com', - linkedIn: 'https://www.linkedin.com/in/jameshighsmith/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Lead Fullstack Engineer', - industry: 'HR', - cities: [], - }, - { - company: 'Mentorcam', - name: 'Stephen Rivas', - email: 'Stephen.Anthony.rivas@gmail.com', - linkedIn: 'https://linkedin.com/in/stephenscript', - campus: 'NYOI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Mentra', - name: 'Mathew Hultquist', - email: 'mathew.j.hultquist@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mjhult/', - campus: 'PTRI', - cohort: '9', - jobTitle: 'Senior Full Stack Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Merck', - name: 'Jin Yoo', - email: 'iyoojin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/iyoojin/', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Meredith', - name: 'Kai Evans', - email: 'kaijosefevans@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonathan-jim-ramirez/', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer', - industry: 'Media Agency', - cities: [], - }, - { - company: 'Mess', - name: 'Anne-lise Emig', - email: 'anneliseemig@gmail.com', - linkedIn: 'linkedin.com/in/anneliseemig', - campus: 'FTRI / CTRI', - cohort: '15', - jobTitle: 'Junior Web Developer', - industry: 'Marketing', - cities: [], - }, - { - company: 'Meta', - name: 'Carlos Lovera', - email: 'Calovera@bu.edu', - linkedIn: '', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Partner Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Meta', - name: 'Jonathan Jim Ramirez', - email: 'jramirezor.91@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonathan-jim-ramirez/', - campus: 'PTRI', - cohort: '0', - jobTitle: 'Data Engineer', - industry: 'Social Media + VR', - cities: [], - }, - { - company: 'Meta', - name: 'Karandeep Ahluwalia', - email: 'karandeepahluwalia@gmail.com', - linkedIn: 'https://www.linkedin.com/in/karandeepahluwalia97/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Software Engineer', - industry: 'Technology', - cities: [], - }, - { - company: 'Meta', - name: 'Tom Herrmann', - email: 'Tomherrmannd@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thomasherrmann1/', - campus: 'NYC', - cohort: '14', - jobTitle: 'Software engineer - E4', - industry: '', - cities: [], - }, - { - company: 'Metecs', - name: 'Justin Lee Kirk', - email: 'justinleekirk@gmail.com', - linkedIn: 'https://www.linkedin.com/in/justinleekirk/', - campus: 'LA', - cohort: '48', - jobTitle: 'Software Engineer', - industry: 'Research', - cities: [], - }, - { - company: 'Metric5', - name: 'Alex Kang', - email: 'akang0408@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alex-kang/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Software Engineer', - industry: 'Information Technology & Services', - cities: [], - }, - { - company: 'Metrolina Greenhouses', - name: 'Stefan Jordan', - email: 'sjordan2010@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stefan-w-jordan', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Frontend Software Engineer', - industry: 'Agriculture Science', - cities: [], - }, - { - company: 'Microsoft', - name: 'Alonso Garza', - email: 'alonsogarza6@gmail.com', - linkedIn: 'https://www.linkedin.com/in/e-alonso-garza/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer II', - industry: 'Software', - cities: [], - }, - { - company: 'Microsoft', - name: 'Bernie Green', - email: 'bgreen280@gmail.com', - linkedIn: 'https://www.linkedin.com/in/berniegreen/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Microsoft', - name: 'Brad Morgan', - email: 'bkmorgan3@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bkmorgan3/', - campus: 'LA', - cohort: '31', - jobTitle: 'UI Engineer', - industry: 'Tech', - cities: [], - }, - { - company: 'Microsoft', - name: 'Brandi Richardson', - email: 'brandi.jrichardson@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brandi-richardson-28295158/', - campus: 'LA', - cohort: '40', - jobTitle: 'Software Engineer ll', - industry: 'Computer Software', - cities: [], - }, - { - company: 'Microsoft', - name: 'Brian Hong', - email: 'brianhhong96@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brianhhong', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer', - industry: 'Cloud', - cities: [], - }, - { - company: 'Microsoft', - name: 'Georgina Carr', - email: 'carre.georgina@gmail.com', - linkedIn: 'https://www.linkedin.com/in/georginacarr/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Software Engineer, Contract', - industry: 'tech', - cities: [], - }, - { - company: 'Microsoft', - name: 'Andrew Dunne', - email: 'Drewdunne88@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andrew-dunne-7620bb84', - campus: 'LA / WCRI', - cohort: '53', - jobTitle: 'Senior Automation Engineer', - industry: 'Gaming', - cities: [], - }, - { - company: 'Microsoft', - name: 'Griffin Roger Mccartney Silver', - email: 'griffinrogersilver@gmail.com', - linkedIn: 'https://www.linkedin.com/in/griffin-silver/', - campus: 'LA / WCRI', - cohort: '43', - jobTitle: 'Cloud Support Engineer', - industry: 'IT Services', - cities: [], - }, - { - company: 'Microsoft', - name: 'Rella Cruz', - email: 'rellas.email@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rella/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Software Engineer Apprentice (LEAP Program)', - industry: 'Computer Technology', - cities: [], - }, - { - company: 'Microsoft', - name: 'Silvia Kemp Miranda', - email: 'silvia.kemp@gmail.com', - linkedIn: 'https://www.linkedin.com/in/silviakmiranda/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Technical Program Manager', - industry: 'Technology', - cities: [], - }, - { - company: 'Microsoft', - name: 'Timothy Jung', - email: 'timjj92@gmail.com', - linkedIn: 'www.linkedin.com/in/timjj92', - campus: 'LA', - cohort: '32', - jobTitle: 'Software Development Engineer', - industry: 'Cloud computing', - cities: [], - }, - { - company: 'Microsoft', - name: 'Tjolanda "Sully" Sullivan', - email: 'tjolanda.sullivan@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tjolanda-sullivan/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer', - industry: 'Cloud Storage', - cities: [], - }, - { - company: 'Microsoft', - name: 'William kencel', - email: 'Wkencel1@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '40', - jobTitle: 'React/react native/full stack engineer', - industry: 'Device payment system', - cities: [], - }, - { - company: 'Microsoft Leap Apprenticeship Program (via Aerotek)', - name: 'Roseanne Damasco', - email: 'rosedamasco@gmail.com', - linkedIn: 'https://www.linkedin.com/in/roseannedamasco/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer', - industry: 'Computer Software', - cities: [], - }, - { - company: 'Mighty', - name: 'Jakob Kousholt', - email: 'jakobjk@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jakobjk/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Software Engineer', - industry: 'Consumer Services', - cities: [], - }, - { - company: 'MightyHive', - name: 'Alyso Swerdloff', - email: 'alysonswerdloff@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alyson-swerdloff/', - campus: 'NYC', - cohort: '8', - jobTitle: 'Technical Solutions Engineer', - industry: 'Insurance/ cybersecurity', - cities: [], - }, - { - company: 'Mimecast', - name: 'Tim Ruszala', - email: 'truszala@gmail.com', - linkedIn: 'https://www.linkedin.com/in/timruszala/', - campus: 'NYC', - cohort: '32', - jobTitle: 'Senior Software Engineer', - industry: 'Security', - cities: [], - }, - { - company: 'MindBody', - name: 'Charlie Malave', - email: 'malavecharles@gmail.com', - linkedIn: 'https://www.linkedin.com/in/charlesmalave/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Software Engineer', - industry: 'Fitness Tech', - cities: [], - }, - { - company: 'Mindbody ClassPass', - name: 'Christina Son', - email: 'christinason17@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christinason17/', - campus: 'FTRI / CTRI', - cohort: '7', - jobTitle: 'Software Engineer I', - industry: 'Fitness/Wellness', - cities: [], - }, - { - company: 'MindCloud', - name: 'Emily Chu', - email: 'lin.emily.chu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lin-chu/', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Junior Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Mindstrong', - name: 'Chon Hou Ho', - email: 'chonhouh@gmail.com', - linkedIn: 'https://www.linkedin.com/mwlite/in/chon-hou-ho', - campus: 'FTRI', - cohort: '6', - jobTitle: 'Software Engineer I, Full Stack', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Mirror.xyz', - name: 'Nathaniel Grossman', - email: 'nathanielbensongrossman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nathanielgrossman/', - campus: 'LA', - cohort: '22', - jobTitle: 'Software Engineer', - industry: 'Education', - cities: [], - }, - { - company: 'Mission Lane', - name: 'Ali Elhawary', - email: 'Alielhawary123@gmail.com', - linkedIn: '', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Mission Lane', - name: 'Esther Cho', - email: 'xesthercho@gmail.com', - linkedIn: 'https://www.linkedin.com/in/esther-cho/', - campus: 'LA', - cohort: '49', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Mitchell Martin', - name: 'Jonathan Barenboim', - email: 'Jonathan.Barenboim@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonathan-barenboim/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'MJH Life Sciences', - name: 'Arthur Sato', - email: 'swatto12@gmail.com', - linkedIn: 'https://www.linkedin.com/in/arthursato', - campus: 'NYC', - cohort: '25', - jobTitle: 'React Developer', - industry: 'Health Care Media', - cities: [], - }, - { - company: 'MKTG', - name: 'Garrett Lee', - email: 'geewai.lee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/geewailee/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Senior Software Developer', - industry: 'Marketing', - cities: [], - }, - { - company: 'MNTN', - name: 'Chris Franz', - email: 'chrisfranz@mac.com', - linkedIn: 'https://www.linkedin.com/in/chris--franz/', - campus: 'LA', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Advertising', - cities: [], - }, - { - company: 'MNTN', - name: 'Timothy Kachler', - email: 'kachler@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tkachler', - campus: 'LA', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Advertising', - cities: [], - }, - { - company: 'MNTN', - name: 'Bryan Trang', - email: 'bryanltrang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bryanltrang/', - campus: 'LA / WCRI', - cohort: '58', - jobTitle: 'Fullstack Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Moment House', - name: 'Hoon Choi', - email: 'vhchoi@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '10', - jobTitle: 'Sr. Software eng', - industry: 'Entertainment', - cities: [], - }, - { - company: 'MongoDB', - name: 'Cris Newsome', - email: 'crisnewsome@outlook.com', - linkedIn: 'https://linkedin.com/in/crisnewsome', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer II', - industry: 'Tech?', - cities: [], - }, - { - company: 'Monument', - name: 'Midori Yang', - email: 'midoki.yang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/midori-yang/', - campus: 'NYC', - cohort: '19', - jobTitle: '', - industry: 'Healthcare', - cities: [], - }, - { - company: "Moody's Analytics", - name: 'Alan Ye', - email: 'alye13@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alan-ye-008/', - campus: 'PTRI', - cohort: '4', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: "Moody's Analytics", - name: 'Cara Dibdin', - email: 'cdibdin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cara-dibdin/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Senior Software Engineer', - industry: 'Finance', - cities: [], - }, - { - company: 'Morgan Stanley', - name: 'Jackie Lin', - email: 'jackie.lin128@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jackielin12/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Developer', - industry: 'Finance', - cities: [], - }, - { - company: 'Morning Consult', - name: 'Lucas Lima Taffo', - email: 'lucas.taffo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lucastaffo/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Software Engineer II', - industry: 'Decision Intelligence', - cities: [], - }, - { - company: 'Mothership', - name: 'Carlos Perez', - email: 'crperez@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cpereztoro/', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Freight', - cities: [], - }, - { - company: 'Motion Intelligence', - name: 'Russell F Hayward', - email: 'russdawg44@gmail.com', - linkedIn: 'https://www.linkedin.com/in/russell-hayward/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Cloud Developer', - industry: 'Automotive', - cities: [], - }, - { - company: 'mPulse Mobile', - name: 'Devon Vaccarino', - email: 'devonev92@gmail.com', - linkedIn: 'https://www.linkedin.com/in/devon-vaccarino/', - campus: 'LA', - cohort: '30', - jobTitle: 'Mid Software Engineer', - industry: 'Health Communications', - cities: [], - }, - { - company: 'MRI-Simmons', - name: 'Dan Lin', - email: 'dannlin91@gmail.com', - linkedIn: 'https://www.linkedin.com/in/danlin91/', - campus: 'NYC', - cohort: '20', - jobTitle: 'UI Developer', - industry: 'Data Consumer', - cities: [], - }, - { - company: 'MUFG', - name: 'Parker Hutcheson', - email: 'pdhutcheson@gmail.com', - linkedIn: 'https://www.linkedin.com/in/parkerhutcheson/', - campus: 'FTRI / CTRI', - cohort: '4', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Mulberry Technology', - name: 'Mia Kang', - email: 'fakeEmail3@fakeEmail.com', - linkedIn: 'https://www.linkedin.com/in/mia-kang/', - campus: 'PTRI', - cohort: '5', - jobTitle: 'Associate Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Multi Media, LLC', - name: 'Cameron Fitz', - email: 'hellocameronfitz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cameron-lee-fitz/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Product Manager, Growth', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Munera', - name: 'Yuehao Wong', - email: 'yuehaowong@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yuehaowong/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Full Stack Developer', - industry: 'Other', - cities: [], - }, - { - company: 'Musee Archives', - name: 'Walter David DeVault', - email: 'wdd4services@outlook.com', - linkedIn: 'https://www.linkedin.com/in/walter-devault', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Full-Stack Software Engineer', - industry: 'Media', - cities: [], - }, - { - company: 'MX', - name: 'Harlan Evans', - email: 'harlanevans5@gmail.com', - linkedIn: 'https://www.linkedin.com/mwlite/in/harlan-evans', - campus: 'LA', - cohort: '40', - jobTitle: 'Front end Software engineer (mid-sr)', - industry: 'Fintech', - cities: [], - }, - { - company: 'MX', - name: 'Mike Coker', - email: 'mbcoker100@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mike-coker/', - campus: 'LA', - cohort: '35', - jobTitle: 'Backend JavaScript Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Naked Development', - name: 'Cayla Co', - email: 'caylasco@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cayla-co/', - campus: 'FTRI', - cohort: '6', - jobTitle: 'Senior Full Stack Developer', - industry: 'Digital Advertising', - cities: [], - }, - { - company: 'Namely', - name: 'Yujin kang', - email: 'ykang7858@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'SaaS / HR startup', - cities: [], - }, - { - company: 'Narmi', - name: 'Derek Lam', - email: 'derekquoc@gmail.com', - linkedIn: 'https://www.linkedin.com/in/derekqlam/', - campus: 'LA', - cohort: '40', - jobTitle: 'Solutions Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Narrativ', - name: 'Lisa Han', - email: 'jjlisahan@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lisajjhan/', - campus: 'NYC', - cohort: '17', - jobTitle: 'Software Engineer', - industry: 'E-commerce', - cities: [], - }, - { - company: 'National Grid', - name: 'Edward Deng', - email: 'edeng4237@gmail.com', - linkedIn: 'https://www.linkedin.com/in/edwarddeng-/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: 'Utilities', - cities: [], - }, - { - company: 'Navitus', - name: 'Young Kim', - email: 'young.kim770@gmail.com', - linkedIn: 'https://www.linkedin.com/in/young-j-kim', - campus: 'FTRI / CTRI', - cohort: '12', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'NBA', - name: 'Cecily Jansen', - email: 'cecilyjansen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cecily-j/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Associate Front-End Engineer', - industry: 'Sports & Entertainment Media', - cities: [], - }, - { - company: 'NBCUniversal', - name: 'Sam Arnold', - email: 'sam.arnold72@gmail.com', - linkedIn: 'https://www.linkedin.com/in/samarnold723/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Software Engineer II', - industry: 'Entertainment', - cities: [], - }, - { - company: 'NBCUniversal Media', - name: 'Jimmy Phong', - email: 'jayacados@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jphongmph/', - campus: 'LA', - cohort: '35', - jobTitle: 'Senior Software Engineer', - industry: 'Media and Entertainment', - cities: [], - }, - { - company: 'NCR', - name: 'Bryan Chau', - email: 'chaubryan@hotmail.com', - linkedIn: 'https://www.linkedin.com/in/chaubryan1', - campus: 'LA / WCRI', - cohort: '47', - jobTitle: 'SW Engineer III', - industry: 'IT Services', - cities: [], - }, - { - company: 'NEC', - name: 'Stacey Lee', - email: 'staceyjlee18@gmail.com', - linkedIn: 'https://www.linkedin.com/in/staceyjhlee/', - campus: 'FTRI / CTRI', - cohort: '16', - jobTitle: 'Full Stack Engineer', - industry: 'Business Tech/Enterprise Tech', - cities: [], - }, - { - company: 'Neiro AI', - name: 'Daria Mordvinov', - email: 'daria.mordvinov@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dariamordvinov/', - campus: 'NYOI', - cohort: '1', - jobTitle: 'Frontend Engineer', - industry: 'Artificial Intelligence', - cities: [], - }, - { - company: 'Nelnet', - name: 'Zach Brucker', - email: 'zach.brucker@gmail.com', - linkedIn: 'https://www.linkedin.com/in/zachbrucker/', - campus: 'LA', - cohort: '41', - jobTitle: 'Full-Stack Developer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Neo.Tax', - name: 'Lindsay Baird', - email: 'lindsay.a.baird@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lindsaybaird/', - campus: 'LA', - cohort: '45', - jobTitle: 'Full-Stack Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Neo.tax', - name: 'Miguel Hernandez', - email: 'miguelh72@outlook.com', - linkedIn: 'https://www.linkedin.com/in/miguelh72/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Senior Full-Stack Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Nespresso', - name: 'Raymond Huang', - email: 'raymond.huang1011@gmail.com', - linkedIn: 'https://www.linkedin.com/in/raymondhuang95/', - campus: 'NYC / ECRI', - cohort: '31', - jobTitle: 'Associate Front-End Developer', - industry: 'Other', - cities: [], - }, - { - company: 'Netflix', - name: 'Josie Glore', - email: 'Josieglore@gmail.com', - linkedIn: 'https://www.linkedin.com/in/josie-glore/', - campus: 'LA', - cohort: '25', - jobTitle: 'Technologist', - industry: 'Fashion', - cities: [], - }, - { - company: 'Netflix', - name: 'Sagar Velagala', - email: 'sagar.velagala@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sagarvelagala/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Sr. Analytics Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Netflix', - name: 'Victoria Adnet', - email: 'victoria.adnet@gmail.com', - linkedIn: 'https://www.linkedin.com/in/victoria-lellis/', - campus: 'LA', - cohort: '29', - jobTitle: 'Technologist', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Netskope', - name: 'Mariya Eyges', - email: 'mariya.sf@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mariya-eyges-8511131/', - campus: 'PTRI', - cohort: 'Beta', - jobTitle: 'Software Engineer', - industry: 'Security Cloud', - cities: [], - }, - { - company: 'Neulion', - name: 'Myles Green', - email: 'mylescorygreen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/myles-c-green/', - campus: 'NYC', - cohort: '4', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'New York Institute of Technology College of Osteopathic Medicine', - name: 'Justin Ribarich', - email: 'jribarich98@gmail.com', - linkedIn: 'https://www.linkedin.com/in/justin-ribarich', - campus: 'NYOI', - cohort: '2', - jobTitle: 'Full Stack Developer', - industry: 'Education/Edtech', - cities: [], - }, - { - company: 'Newsela', - name: 'Anthony Terruso', - email: 'aterruso@gmail.com', - linkedIn: 'https://www.linkedin.com/in/anthony-w-terruso/', - campus: 'NYC', - cohort: '7', - jobTitle: 'Senior Web Application Developer', - industry: '', - cities: [], - }, - { - company: 'Nexient', - name: 'James Kolotouros', - email: 'dkolotouros1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jameskolotouros', - campus: 'NYC', - cohort: '22', - jobTitle: 'Software Developer II', - industry: 'Tech', - cities: [], - }, - { - company: 'Nexient', - name: 'Gaber Mowiena', - email: 'gaber.abouelsoud@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gabermowiena/', - campus: 'NYC', - cohort: '9', - jobTitle: 'Frontend Developer', - industry: 'Tech products', - cities: [], - }, - { - company: 'Nexstar Media Group', - name: 'Beckett Hanan', - email: 'beckett.hanan@gmail.com', - linkedIn: 'https://www.linkedin.com/in/becketthanan/', - campus: 'PTRI', - cohort: 'Beta', - jobTitle: 'Front End Software Engineer', - industry: 'Media', - cities: [], - }, - { - company: 'NextGen Healthcare', - name: 'Samuel Tran', - email: 'samwell.tran@gmail.com', - linkedIn: 'https://www.linkedin.com/in/samuel-tran-836448231/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Software Engineer II', - industry: 'Healthcare', - cities: [], - }, - { - company: 'NextME', - name: 'Linh Tran', - email: 'linhtanl51@gmail.com', - linkedIn: 'https://www.linkedin.com/in/linhatran', - campus: 'LA', - cohort: '40', - jobTitle: 'Senior Software Engineer', - industry: 'Management', - cities: [], - }, - { - company: 'NFL', - name: 'Michael Blanchard', - email: 'michael.james.blanchard@gmail.com', - linkedIn: 'https://www.linkedin.com/in/miblanchard12/', - campus: 'LA', - cohort: '7', - jobTitle: 'Director of Engineering - Platform', - industry: 'Media / Sports', - cities: [], - }, - { - company: 'Niantic', - name: 'Oliver Zhang', - email: 'zezang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/oliver-zhang91', - campus: 'PTRI', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Nielsen', - name: 'Alexander Tu', - email: 'alexandertu95@gmail.com', - linkedIn: 'https://www.linkedin.com/in/atu816', - campus: 'FTRI / CTRI', - cohort: '12', - jobTitle: 'Senior Software Engineer', - industry: 'Business Analytics', - cities: [], - }, - { - company: 'Nielsen', - name: 'Diana Kim', - email: 'ruslanovna.kim@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ruslanovna/', - campus: 'NYC / ECRI', - cohort: '31', - jobTitle: 'Software Engineer II', - industry: 'Business Analytics', - cities: [], - }, - { - company: 'Nielsen Sports', - name: 'Karina Illesova', - email: 'karin.illesova@gmail.com', - linkedIn: 'https://www.linkedin.com/in/karin-illesova/', - campus: 'LA', - cohort: '41', - jobTitle: 'Sr Software Engineer', - industry: 'Information Technology & Services', - cities: [], - }, - { - company: 'Nike', - name: 'adrian Sun', - email: 'Adriansun2@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adrian-sun', - campus: 'LA', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Travel', - cities: [], - }, - { - company: 'Nimble', - name: 'Zachary Daniels', - email: 'Zackdanielsnyc@gmail.com', - linkedIn: 'LinkedIn.com/in/zackdanielsnyc', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Nobel.AI', - name: 'Kate Chanthakaew', - email: 'kubkate@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kate-chanthakaew/', - campus: 'LA', - cohort: '36', - jobTitle: 'Full Stack Engineer', - industry: 'Scientist R&D', - cities: [], - }, - { - company: 'Noblr Insurance', - name: 'Brian Taylor', - email: 'brian.taylor818@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brianwtaylor/', - campus: 'LA', - cohort: '22', - jobTitle: 'Software Engineer', - industry: 'Health', - cities: [], - }, - { - company: 'Nomad Health', - name: 'Julia Bakerink', - email: 'juliabakerink@gmail.com', - linkedIn: 'https://www.linkedin.com/in/juliabakerink/', - campus: 'LA', - cohort: '48', - jobTitle: 'Fullstack Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Nomad Health', - name: 'Neftali Dominguez', - email: 'n.l.dominguez23@gmail.com', - linkedIn: 'https://www.linkedin.com/in/neftalildominguez/', - campus: 'LA', - cohort: '30', - jobTitle: 'Senior Software Engineer', - industry: 'Health', - cities: [], - }, - { - company: 'Nordstrom', - name: 'Vicki Lee', - email: 'leevicki01@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vlee022/', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer', - industry: 'E-Commerce / Fashion', - cities: [], - }, - { - company: 'Nordstrom', - name: 'Sohee Lee', - email: 'soheelee1985@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sohee419/', - campus: 'LA', - cohort: '46', - jobTitle: 'Engineer 2', - industry: 'Fintech', - cities: [], - }, - { - company: 'Nordstrom Rack | HauteLook', - name: 'Robb Eastman', - email: 'ereastman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/robbeastman/', - campus: 'LA', - cohort: '31', - jobTitle: 'Software Engineer I, Web', - industry: 'Fashion', - cities: [], - }, - { - company: 'Noria Water Technologies', - name: 'Umair Shafiq', - email: 'umairshafiqprof@gmail.com', - linkedIn: 'https://www.linkedin.com/in/umair-w-shafiq/', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Associate Developer', - industry: 'Other', - cities: [], - }, - { - company: 'North American Bancard', - name: 'Edward Chow', - email: 'Pdphybrid@gmail.com', - linkedIn: 'https://www.linkedin.com/in/edkchow/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Full Stack Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Northflank', - name: 'Emma Genesen', - email: 'genesen.emma@gmail.com', - linkedIn: 'https://www.linkedin.com/in/emma-genesen/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Head of Developer Marketing', - industry: 'Cloud Services', - cities: [], - }, - { - company: 'Northrop Grumman', - name: 'David Lopez', - email: 'd7lopez@gmail.com', - linkedIn: 'https://www.linkedin.com/in/david-michael-lopez/', - campus: 'NYC / ECRI', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Aerospace', - cities: [], - }, - { - company: 'Northrop Grumman', - name: 'Michael Way', - email: 'mjway01@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michaeljway/', - campus: 'PTRI', - cohort: '10', - jobTitle: 'Cognitive Software Engineer', - industry: 'Aerospace', - cities: [], - }, - { - company: 'Northspyre', - name: 'Vaughn Sulit', - email: 'bvaughnsulit@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bvaughnsulit/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Full Stack Engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Northwestern Mutual', - name: 'Hussein Hamade', - email: 'hamade.hussein00@gmail.com', - linkedIn: 'https://www.linkedin.com/in/husseinhamade1/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Software Engineer (P2 - Midlevel)', - industry: 'Fintech', - cities: [], - }, - { - company: 'Northwestern Mutual', - name: 'Jake Policano', - email: 'jdpolicano@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jacob-policano/', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: [], - }, - { - company: 'Northwestern Mutual', - name: 'Max Lee', - email: 'maxolee23@gmail.com', - linkedIn: 'https://www.linkedin.com/in/max-lee1', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Full Stack Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Northwestern Mutual', - name: 'Vince Nguyen', - email: 'vince.g.nguyen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vince-nguyen/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Full Stack Software Engineer', - industry: 'Fintech/Insurance', - cities: [], - }, - { - company: 'Northwestern Mutual', - name: 'Warren Harrison Tait', - email: 'warrenhtait@gmail.com', - linkedIn: 'https://www.linkedin.com/in/warrenhtait/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Full Stack Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Not currently employed in tech/as a dev', - name: 'Evan Deam', - email: 'ebdeam@gmail.com', - linkedIn: 'https://www.linkedin.com/in/evandeam/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Registered Nurse', - industry: 'Healthtech/Healthcare', - cities: [], - }, - { - company: 'Notion', - name: 'Marissa Lafontant', - email: 'marissa.lafontant@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mlafontant/', - campus: 'NYC', - cohort: '2', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Nousot', - name: 'Winslow Taylor', - email: 'winslow.benjamin.taylor@gmail.com', - linkedIn: 'https://www.linkedin.com/in/winslow-taylor/', - campus: 'FTRI', - cohort: '6', - jobTitle: 'Advance Associate', - industry: 'IT, SaaS', - cities: [], - }, - { - company: 'Noyo', - name: 'Jonathan Mendoza', - email: 'j.d.mendoza415@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonathan-mendoza1', - campus: 'LA', - cohort: '41', - jobTitle: 'L1 Engineer', - industry: 'Heath care', - cities: [], - }, - { - company: 'NPR', - name: 'Alex Mannix', - email: 'alexleemannix@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alex-mannix-53015668/', - campus: 'NYC', - cohort: '5', - jobTitle: 'Junior Software Engineer', - industry: '', - cities: [], - }, - { - company: 'NPR', - name: 'Jordan Grubb', - email: 'imjordangrubb@gmail.com', - linkedIn: 'https://www.linkedin.com/in/j-grubb/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Software Engineer', - industry: 'Subscriptions', - cities: [], - }, - { - company: 'NPR', - name: 'Samantha Wessel', - email: 'samantha.n.wessel@gmail.com', - linkedIn: 'https://www.linkedin.com/in/samantha-wessel/', - campus: 'LA', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'News Media', - cities: [], - }, - { - company: 'NU Borders', - name: 'Ryan Tumel', - email: 'rtumel123@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ryan-tumel/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Information Technology & Services', - cities: [], - }, - { - company: 'NWEA', - name: 'Celene Chang', - email: 'Celene Chang', - linkedIn: 'https://www.linkedin.com/in/celenecchang/', - campus: 'LA', - cohort: '48', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'NYU Langone Health', - name: 'Alexander Lin', - email: 'alexanderlin164@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexander-lin-8aab79167/', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Developer 1', - industry: 'Healthtech/Healthcare', - cities: [], - }, - { - company: 'O POSITIV', - name: 'Jonah Lin', - email: 'jjonah.lin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/linjonah/', - campus: 'LA', - cohort: '33', - jobTitle: 'Software Engineer (eCommerce)', - industry: 'E-commerce', - cities: [], - }, - { - company: 'ObvioHealth', - name: 'Joshua Jordan', - email: 'josh.r.jordan@gmail.com', - linkedIn: 'https://www.linkedin.com/in/josh-r-jordan/', - campus: 'NYC / ECRI', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Biotech', - cities: [], - }, - { - company: 'OceanX', - name: 'Jun Lee', - email: 'jushuworld@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jushuworld/', - campus: 'LA', - cohort: '29', - jobTitle: 'Full Stack Developer', - industry: 'E-commerce', - cities: [], - }, - { - company: 'Ocrolus', - name: 'Daniel Shu', - email: 'shudaniel95@gmail.com', - linkedIn: 'https://www.linkedin.com/in/danielshu/', - campus: 'NYC', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Blockchain', - cities: [], - }, - { - company: 'Octane Lending', - name: 'Christian Paul Ejercito', - email: 'chris.paul.ejercito@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christian-paul-ejercito/', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer II', - industry: 'Fintech', - cities: [], - }, - { - company: 'Odie Pet Insurance', - name: 'Nicholas Echols', - email: 'nechols87@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nickechols87/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Senior Software Engineer', - industry: '', - cities: [], - }, - { - company: 'ODME Solutions', - name: 'Jackqueline Nguyen', - email: 'jackquelineanguyen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jackquelinenguyen/', - campus: 'LA / WCRI', - cohort: '54', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Okta', - name: 'Sterling Deng', - email: 'sterlingdeng@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sterling-deng/', - campus: 'LA', - cohort: '27', - jobTitle: 'Software Engineer', - industry: 'SaaS - Security', - cities: [], - }, - { - company: 'Olive AI', - name: 'Saejin Kang', - email: 'saejin.kang1004@gmail.com', - linkedIn: 'https://www.linkedin.com/in/saejinkang1004/', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Olivine Inc', - name: 'Yirou Chen', - email: 'yirou.zm@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yirouchen/', - campus: 'PTRI', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Ollie', - name: 'Brynn Sakell', - email: 'brynnsakell@gmail.com', - linkedIn: 'www.linkedin.com/in/brynnsakell', - campus: 'NYOI', - cohort: '1', - jobTitle: 'Software Engineer, Front End', - industry: 'Other', - cities: [], - }, - { - company: 'Omaze', - name: 'Rachel Kim', - email: 'rayykim323@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rayykim/', - campus: 'LA', - cohort: '31', - jobTitle: 'Software Engineer', - industry: 'Fundraising', - cities: [], - }, - { - company: 'OneSignal', - name: 'Dean Ohashi', - email: 'd.n.ohashi@gmail.com', - linkedIn: 'https://www.linkedin.com/in/deanohashi/', - campus: 'LA', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'MarTech', - cities: [], - }, - { - company: 'OneTrack.AI', - name: 'Alexander Martinez', - email: 'alexmartinez7184@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexander-martinez415/', - campus: 'LA / WCRI', - cohort: '53', - jobTitle: 'Implementation Support Engineer', - industry: 'Artificial Intelligence', - cities: [], - }, - { - company: 'OneView', - name: 'Sean Yoo', - email: 'yooys87@gmail.com', - linkedIn: 'https://www.linkedin.com/in/seanyyoo/', - campus: 'LA', - cohort: '43', - jobTitle: 'Full Stack Developer', - industry: 'ECommerce', - cities: [], - }, - { - company: 'Onyx Team at JP Morgan Chase', - name: 'Dwayne Richards', - email: 'dwaynerichards@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dnkrichards', - campus: 'NYC / ECRI', - cohort: '24', - jobTitle: 'Senior Blockchain Engineer', - industry: 'Blockchain/Web3', - cities: [], - }, - { - company: 'Oomph', - name: 'Rob Mosher', - email: 'rob@robmosher.com', - linkedIn: 'https://www.linkedin.com/in/rob-mosher-it/', - campus: 'NYOI', - cohort: '1', - jobTitle: 'Senior Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'OpenFin', - name: 'Elliott Burr', - email: 'elliottnburr@gmail.com', - linkedIn: 'https://www.linkedin.com/in/elliott-burr/', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Openfin', - name: 'Hina Khalid', - email: 'k.hinaa87@gmail.com', - linkedIn: '', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Software engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Opentrons', - name: 'Geovanni Alarcon', - email: 'geovannialarcon92@gmail.com', - linkedIn: 'https://www.linkedin.com/in/geo-alarcon/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Biotech, Robotics', - cities: [], - }, - { - company: 'Opentrons', - name: 'Jamey Huffnagle', - email: 'mjhuffnagle@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jamey-huffnagle/', - campus: 'NYOI', - cohort: '3', - jobTitle: 'Senior Software Engineer', - industry: 'Biotech', - cities: [], - }, - { - company: 'Optimize Health', - name: 'Kim Mai Nguyen', - email: 'kim.mai.e.nguyen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nkmai/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Optum', - name: 'Austin Johnson', - email: 'austinlovesworking@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lovesworking/', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Full stack dev', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Oscar Health', - name: 'Brian Kang', - email: 'brkang1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thebriankang/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Software Engineer (E2)', - industry: 'Health', - cities: [], - }, - { - company: 'Oscar Health', - name: 'Brian Kang', - email: 'brkang1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thebriankang/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Software Engineer (E2)', - industry: 'Health', - cities: [], - }, - { - company: 'Oscar Health', - name: 'Sergey Zeygerman', - email: 'sergey@zeygerman.com', - linkedIn: 'https://www.linkedin.com/in/sergey-zeygerman/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Software Engineer, Web & Mobile', - industry: 'Insurance', - cities: [], - }, - { - company: 'OTG Experience', - name: 'Chang Cai', - email: 'Chang.Cai@pm.me', - linkedIn: 'https://www.linkedin.com/in/chang-c-cai/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Typescript NodeJS Senior Engineer', - industry: 'Hospitality', - cities: [], - }, - { - company: 'Other World Computing', - name: 'Miles Wright', - email: 'mileswright818@gmail.com', - linkedIn: 'https://www.linkedin.com/in/miles-m-wright/', - campus: 'LA / WCRI', - cohort: '45', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Ouraring', - name: 'Jenna Hamza', - email: 'jennashamza@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jennahamza', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Full Stack Developer', - industry: 'Other', - cities: [], - }, - { - company: 'Outside Analytics', - name: 'Timeo Williams', - email: 'timeo.j.williams@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '24', - jobTitle: 'FullStack Software Engineer', - industry: 'Analytics, Defense', - cities: [], - }, - { - company: 'Ovis Technologies', - name: 'Andrew Lovato', - email: 'andrew.lovato@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andrew-lovato/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Senior Full Stack Developer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Ovis Technologies', - name: 'David Soerensen', - email: 'Dsoerensen28@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '18', - jobTitle: 'Senior Fullstack Developer', - industry: 'Fintech', - cities: [], - }, - { - company: 'OwnerIQ Inc.', - name: 'Alejandro Romero', - email: 'alexrom789@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alejandromromero/', - campus: 'NYC', - cohort: '4', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Ownet', - name: 'Ari bengiyat', - email: 'ari@aribengiyat.com', - linkedIn: 'https://www.linkedin.com/in/ari-bengiyat', - campus: 'NYOI', - cohort: '2', - jobTitle: 'Senior Software Engineer', - industry: 'Media', - cities: [], - }, - { - company: 'Palmetto', - name: 'Fan Shao', - email: 'fanny.shao18@gmail.com', - linkedIn: 'https://www.linkedin.com/in/fan-shao/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Software Engineer', - industry: 'Renewable Energy', - cities: [], - }, - { - company: 'Panda Express', - name: 'Krystal Chen', - email: 'Kcrystalchen@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '31', - jobTitle: 'Software developer', - industry: 'Restaurant', - cities: [], - }, - { - company: 'Paperless Parts', - name: 'Scott Campbell', - email: 'thisisscottcampbell@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thisisscottcampbell/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Contract Manufacturing', - cities: [], - }, - { - company: 'Paragon Application Systems', - name: 'Autumn Wallen', - email: 'mymail1269@gmail.com', - linkedIn: 'https://www.linkedin.com/in/autumn-wallen/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Software Engineer II', - industry: 'Fintech', - cities: [], - }, - { - company: 'Paramount+', - name: 'Todd Alexander', - email: 'todd.alexander@me.com', - linkedIn: 'https://www.linkedin.com/in/toddalex/', - campus: 'LA', - cohort: '35', - jobTitle: 'Senior SWE', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Paramount++', - name: 'Evan Emenegger', - email: 'evanemenegger@gmail.com', - linkedIn: 'https://www.linkedin.com/in/evan-emenegger/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Software Engineer, Frontend', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Parative', - name: 'Mariko Iwata', - email: 'mariko.iwata@gmail.com', - linkedIn: 'https://www.linkedin.com/in/marikoiwata/', - campus: 'PTRI', - cohort: '9', - jobTitle: 'Senior Front End Engineer', - industry: 'Sales', - cities: [], - }, - { - company: 'Passage.io', - name: 'Yusuf Nevruz Olmez', - email: 'nvrz@windowslive.com', - linkedIn: 'https://www.linkedin.com/in/nevruzolmez', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Full Stack Developer', - industry: 'Blockchain/Web3', - cities: [], - }, - { - company: 'PassiveLogic', - name: 'Tanner Hesterman', - email: 'tannerhesterman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tannerhesterman/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Junior Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'PavCon', - name: 'Bradley Woolf', - email: 'bradleymwoolf@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bradley-woolf/', - campus: 'LA', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Federal Defense', - cities: [], - }, - { - company: 'Pavemint', - name: 'Vivian Cermeno', - email: 'vcermeno6@gmail.com', - linkedIn: 'https://www.linkedin.com/in/viviancermeno/', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Parking', - cities: [], - }, - { - company: 'Pax8', - name: 'Steve Frend', - email: 'stevefrend1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stevefrend/', - campus: 'LA', - cohort: '35', - jobTitle: 'Software Engineer II', - industry: 'Cloud services', - cities: [], - }, - { - company: 'Paypal', - name: 'Cynthia Franqui', - email: 'cynthiafranqui@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cynthiafranqui/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer II', - industry: 'Fintech', - cities: [], - }, - { - company: 'Paypal', - name: 'Stanley Huang', - email: 'Huang.stan@icloud.com', - linkedIn: '', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer II (T23)', - industry: 'electronic Payment/ financial services', - cities: [], - }, - { - company: 'PayPal', - name: 'Jason Yu', - email: 'jasonyu@hotmail.com', - linkedIn: 'https://www.linkedin.com/in/json-yu/', - campus: 'LA', - cohort: '32', - jobTitle: 'Software Engineer 2', - industry: 'Fintech', - cities: [], - }, - { - company: 'PayPal', - name: 'Jorge Espinoza', - email: 'jorge.e.espinoza.57@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jorge-e-espinoza1/', - campus: 'FTRI', - cohort: '3', - jobTitle: 'Software Engineer I', - industry: 'Fintech', - cities: [], - }, - { - company: 'PayPal', - name: 'Qwen Ballard', - email: 'qwen.ballard@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mqballard/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Full Stack Developer', - industry: 'Fintech', - cities: [], - }, - { - company: 'PayPal (Happy Returns)', - name: 'Lawrence Han', - email: 'lawrencehan3@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lawrence-han/', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer', - industry: 'Logistics', - cities: [], - }, - { - company: 'PayPal Inc.', - name: 'Darryl Amour', - email: 'darryl.amour@gmail.com', - linkedIn: 'https://www.linkedin.com/in/darryl-amour/', - campus: 'LA', - cohort: '25', - jobTitle: 'Engineering Manager, Software Development 2', - industry: 'Fintech', - cities: [], - }, - { - company: 'Payscale', - name: 'Truett Davis', - email: 'truett.davis@gmail.com', - linkedIn: 'https://www.linkedin.com/in/truett-davis', - campus: 'NYOI', - cohort: '3', - jobTitle: 'Software Engineer II', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Peacock', - name: 'Eli Gallipoli', - email: 'eligallipoli317@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eli-gallipoli/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Fullstack Developer - Video Software Engineering', - industry: 'Video Streaming', - cities: [], - }, - { - company: 'Peatix', - name: 'Yula Ko', - email: 'larkspury.k@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yulako/', - campus: 'NYC', - cohort: '17', - jobTitle: 'Software Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Peloton', - name: 'Lorenzo Guevara', - email: 'joselorenzo.guevara@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lorenzoguevara/', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer', - industry: 'Tech/Health & Wellness', - cities: [], - }, - { - company: 'Penny Mac', - name: 'Edward Roh', - email: 'eroh@rubiconproject.com', - linkedIn: 'https://www.linkedin.com/in/edwardroh/', - campus: 'LA', - cohort: '24', - jobTitle: 'Front End Lead Engineer', - industry: 'Sports?', - cities: [], - }, - { - company: 'PennyMac', - name: 'Cornelius Phanthanh', - email: 'corneliusphanthanh@gmail.com', - linkedIn: 'www.linkedin.com/in/corneliusphanthanh', - campus: 'LA', - cohort: '33', - jobTitle: 'Full Stack (UI/UX) Senior Application Developer', - industry: 'Loan/Mortgage', - cities: [], - }, - { - company: 'Penumbra', - name: 'Abigail Gjurich', - email: 'amgjurich@gmail.com', - linkedIn: 'https://www.linkedin.com/in/abigail-gjurich/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Front End Engineer', - industry: 'Medical', - cities: [], - }, - { - company: 'Penumbra, Inc.', - name: 'Junaid Ahmed', - email: 'junaid7ahmed96@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ahmedjnd/', - campus: 'NYOI', - cohort: '3', - jobTitle: 'Full Stack Engineer', - industry: 'Healthtech/Healthcare', - cities: [], - }, - { - company: 'Peraton', - name: 'Andrew Jung', - email: 'andrewjung89@icloud.com', - linkedIn: 'https://www.linkedin.com/in/sjung80/', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Cyber Software Engineer', - industry: 'Public Safety', - cities: [], - }, - { - company: 'PGA Tour', - name: 'Rami Abdelghafar', - email: 'ramabdel12@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ramiabdelghafar/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Software Engineer', - industry: 'Digital', - cities: [], - }, - { - company: 'PGi', - name: 'Zi Hao He', - email: 'germanychinaaustralia@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/zi-hao-he/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer I', - industry: 'Video', - cities: [], - }, - { - company: 'PGS', - name: 'Yi Sun', - email: 'timyisun@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yi-sun-swe/', - campus: 'PTRI', - cohort: '10', - jobTitle: 'Senior Software Engineer', - industry: 'Energy/Cleantech/Greentech', - cities: [], - }, - { - company: 'PhotoShelter', - name: 'Julia Ieshtokina', - email: 'julia.ieshtokina@gmail.com', - linkedIn: 'https://www.linkedin.com/in/julia-ieshtokina/', - campus: 'NYC', - cohort: '5', - jobTitle: 'Software Automation Engineer', - industry: '', - cities: [], - }, - { - company: 'Picarro', - name: 'Sรฉbastien Fauque', - email: 'Sbfauque@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sebastienfauque', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Software engineer', - industry: 'Green tech', - cities: [], - }, - { - company: 'Pie Insurance', - name: 'Alex Wolinsky', - email: 'alexwolinsky1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alex-wolinsky/', - campus: 'LA', - cohort: '40', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: [], - }, - { - company: 'Pima County', - name: 'Jake Kazi', - email: 'kazijake@gmail.com', - linkedIn: 'linkedin.com/in/jakekazi', - campus: 'PTRI', - cohort: '7', - jobTitle: 'IT Applications Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Pinterest', - name: 'Edar Liu', - email: 'liuedar@gmail.com', - linkedIn: 'https://www.linkedin.com/in/liuedar/', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer L4', - industry: 'Social Media', - cities: [], - }, - { - company: 'Pitzer College', - name: 'Kurt Crandall', - email: 'kcrandall67@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kurtcrandall', - campus: 'LA / WCRI', - cohort: '47', - jobTitle: 'Web Developer', - industry: 'Other', - cities: [], - }, - { - company: 'Place Exchange', - name: 'Wesley Jia', - email: 'wesleyjia34@gmail.com', - linkedIn: 'https://www.linkedin.com/in/wesleyjia/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Advertising', - cities: [], - }, - { - company: 'Plaid', - name: 'Nicolas Ferretti', - email: 'nf96@cornell.edu', - linkedIn: 'https://www.linkedin.com/in/nicolas-ferretti/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Platform Science', - name: 'Daniel Aurand', - email: 'Daurand303@gmail.com', - linkedIn: 'https://www.linkedin.com/in/daniel-aurand/', - campus: 'PTRI', - cohort: '7', - jobTitle: 'software development engineer - FMS', - industry: 'Automotive', - cities: [], - }, - { - company: 'Playstation', - name: 'Bryan Santos', - email: 'brymsantos@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bryan-santos/', - campus: 'LA', - cohort: '49', - jobTitle: 'Software Engineer II', - industry: 'Gaming', - cities: [], - }, - { - company: 'PlayStation', - name: 'Jackqueline Nguyen', - email: 'jackquelineanguyen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jackquelinenguyen/', - campus: 'LA / WCRI', - cohort: '54', - jobTitle: 'Senior Software Engineer', - industry: 'Gaming', - cities: [], - }, - { - company: 'PlayVs', - name: 'Alyvia Moss', - email: 'alyvialmoss@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alyviam/', - campus: 'LA', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'E-Sports', - cities: [], - }, - { - company: 'Plum', - name: 'Nattie Chan', - email: 'nattie.chan@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nattiechan/', - campus: 'LA / WCRI', - cohort: '56', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Pluralsight', - name: 'Ronak Hirpara', - email: 'ronakh130@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ronak-hirpara/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Education', - cities: [], - }, - { - company: 'Pluralsight', - name: 'Stephanie Wood', - email: 'wood.steph@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stephaniewood22/', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'EdTech', - cities: [], - }, - { - company: 'Plutoshift', - name: 'Alex Bednarek', - email: 'alexbednarek4@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alex-bednarek/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Backend Engineer', - industry: 'Internet/AI/Energy', - cities: [], - }, - { - company: 'Podsights', - name: 'Emily Krebs', - email: 'erkrebs@gmail.com', - linkedIn: 'https://www.linkedin.com/in/emilyrkrebs/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: 'Podcast Analytics', - cities: [], - }, - { - company: 'PointsBet', - name: 'Joseph Eisele', - email: 'eisele.joseph1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joseph-eisele/', - campus: 'LA', - cohort: '29', - jobTitle: 'Front-end Engineering Consultant', - industry: 'Sports Betting', - cities: [], - }, - { - company: 'PokerAtlas', - name: 'Patrick S. Young', - email: 'patrick.shaffer.young@gmail.com', - linkedIn: 'https://www.linkedin.com/in/patrick-s-young/', - campus: 'LA', - cohort: '31', - jobTitle: 'Frontend Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Policygenius', - name: 'Christopher Bosserman', - email: 'christopherpbosserman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christopherpbosserman/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: [], - }, - { - company: 'Policygenius', - name: 'Kelly Porter', - email: 'kporter101@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kporter101/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: [], - }, - { - company: 'Poll Everywhere', - name: 'Samuel Filip', - email: 'samjfilip@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sam-filip/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Full Stack Integrations Engineer', - industry: 'IT Services', - cities: [], - }, - { - company: 'Poloniex', - name: 'Sunit Bhalotia', - email: 'sunit.bh@gmail.com', - linkedIn: 'linkedin.com/in/sunitb/', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Senior Software Engineer, Web', - industry: 'Blockchain/Web3', - cities: [], - }, - { - company: 'Polyture', - name: 'Dieu Huynh', - email: 'dieu@dieuhuynh.com', - linkedIn: 'https://www.linkedin.com/in/dieu-huynh', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer', - industry: 'Data Analytics', - cities: [], - }, - { - company: 'Polyture', - name: 'Evan Grobar', - email: 'egrobar@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '33', - jobTitle: 'Software Engineer', - industry: 'Data Analysis', - cities: [], - }, - { - company: 'Pondurance', - name: 'Nancy Dao', - email: 'nancyddao@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '33', - jobTitle: 'Front End Software Engineer', - industry: 'Security', - cities: [], - }, - { - company: 'Postman', - name: 'Jonathan Haviv', - email: 'jonathandhaviv@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonathanhaviv/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Potato', - name: 'Kiril Christov', - email: 'kiril.christov@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kchristov/', - campus: 'LA', - cohort: '32', - jobTitle: 'Full stack engineer', - industry: 'Technology', - cities: [], - }, - { - company: 'Power Digital', - name: 'Feiyi Wu', - email: 'freyawu10@gmail.com', - linkedIn: 'https://www.linkedin.com/in/freya-wu/', - campus: 'LA', - cohort: '45', - jobTitle: 'Jr. Software Engineer', - industry: 'Marketing', - cities: [], - }, - { - company: 'Prescriptive Data', - name: 'Nathan Le Master', - email: 'nlemaster47@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nathan-le-master/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Frontend Developer', - industry: 'Building Management', - cities: [], - }, - { - company: 'Priceline', - name: 'Tommy Liang', - email: 'tommyliangsays@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mrtommyliang/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer - Frontend', - industry: 'Travel', - cities: [], - }, - { - company: 'PRIME', - name: 'Andrew Park', - email: 'andrewchanwonpark@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andrew-c-park/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Shopify Developer', - industry: 'Restaurant, Food, and Beverage', - cities: [], - }, - { - company: 'Prime Therapeutics', - name: 'Dennis Cheung', - email: 'dennis.kh.cheung@gmail.com', - linkedIn: 'https://www.linkedin.com/in/denniskhcheung/', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Senior Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Principal Financial Group', - name: 'Stephen Lee', - email: 'stphn.l.nyc@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stphnl/', - campus: 'NYOI', - cohort: '2', - jobTitle: 'Software Engineer II', - industry: 'Insurance', - cities: [], - }, - { - company: 'ProdataKey', - name: 'William Murphy', - email: 'w.williamjmurphy@gmail.com', - linkedIn: 'https://www.linkedin.com/in/w-william-j-murphy/', - campus: 'FTRI / CTRI', - cohort: '15', - jobTitle: 'Software Engineer', - industry: 'Business Tech/Enterprise Tech', - cities: [], - }, - { - company: 'Proov (MFB Fertility)', - name: 'Brian Pham', - email: 'br.pham13@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brpham13/', - campus: 'LA / WCRI', - cohort: '53', - jobTitle: 'Frontend Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Prosper Marketplace', - name: 'David Levien', - email: 'david.levien1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dlev01/', - campus: 'LA', - cohort: '28', - jobTitle: 'Senior Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Providence Health & Services', - name: 'Jared Weiss', - email: 'weissjmw@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jaredmweiss/', - campus: 'NYC', - cohort: '2', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Prudential Financial', - name: 'Michael Lam', - email: 'mlamchamkee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mlamchamkee/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Director, Tech Lead', - industry: 'Insurance', - cities: [], - }, - { - company: 'Prudential Financial', - name: 'Perla Royer', - email: 'perlaroyerc@gmail.com', - linkedIn: 'https://www.linkedin.com/in/perlaroyerc/', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Purpose Investments', - name: 'Anika Mustafiz', - email: 'munikamustafiz89@gmail.com', - linkedIn: 'https://www.linkedin.com/in/anikamustafiz-lillies/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Full Stack Developer', - industry: 'Fintech/Insurance software', - cities: [], - }, - { - company: 'Q2', - name: 'Justin Poirier', - email: 'poirierj94@gmail.com', - linkedIn: 'https://www.linkedin.com/in/justincpoirier', - campus: 'NYC / ECRI', - cohort: '40', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'QLogic LLC.', - name: 'Joe Cervino', - email: 'jciv.public@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '6', - jobTitle: 'Senior Associate - Node Engineer', - industry: '', - cities: [], - }, - { - company: 'Qrypt', - name: 'Vinit Patel', - email: 'za.vinit@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vinit-za/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Cryptography', - cities: [], - }, - { - company: 'Qualleta Inc / StartPlaying.Games', - name: 'Brian Hayashi', - email: 'BrianMHayashi@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brianmakiohayashi/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Quantgene', - name: 'Peter Fasula', - email: 'peter.fasula@gmail.com', - linkedIn: 'https://www.linkedin.com/in/petefasula/', - campus: 'NYC', - cohort: '3', - jobTitle: 'Sr. Full Stack Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Quantiphi, Inc', - name: 'Alura Chung-Mehdi', - email: 'aluracm@gmail.com', - linkedIn: 'linkedin.com/alura-chungmehdi', - campus: 'FTRI', - cohort: '1', - jobTitle: 'Software Developer', - industry: 'Conversational AI', - cities: [], - }, - { - company: 'Quantum Metric', - name: 'Justin Blalock', - email: 'justin.m.blalock@gmail.com', - linkedIn: 'https://www.linkedin.com/in/justinmblalock/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Customer Success Engineer', - industry: 'Technology', - cities: [], - }, - { - company: 'Railbird', - name: 'Justin Paige', - email: 'justinpaige3@gmail.com', - linkedIn: 'https://www.linkedin.com/in/justin-paige/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Rainmaker Games', - name: 'Julia Collins', - email: 'Julia.col@protonmail.com', - linkedIn: '', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Lead Frontend Engineer (Web3)', - industry: 'Blockchain baby', - cities: [], - }, - { - company: 'Rally Health', - name: 'Stefan Pougatchev', - email: 'Stefan.Pougatchev@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stefanpougatchev/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer II', - industry: 'Health/Insurance', - cities: [], - }, - { - company: 'Raytheon Technologies', - name: 'Troy Prejusa', - email: 'prejusa.troy@gmail.com', - linkedIn: 'https://www.linkedin.com/in/troyprejusa/', - campus: 'LA / WCRI', - cohort: '54', - jobTitle: 'Software Engineer II', - industry: 'Aerospace', - cities: [], - }, - { - company: 'Ready Responders', - name: 'Joel Rivera', - email: 'realjoelrivera@gmail.com', - linkedIn: 'https://www.linkedin.com/in/RealJoelRivera', - campus: 'NYC', - cohort: '11', - jobTitle: 'React Developer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Record360', - name: 'Abby Chao', - email: 'abigail.chao@gmail.com', - linkedIn: 'https://www.linkedin.com/in/abbychao/', - campus: 'NYC', - cohort: '12', - jobTitle: 'CEO', - industry: 'Rental Inspection', - cities: [], - }, - { - company: 'Recurate', - name: 'PJ Bannon', - email: 'bannon.pj@gmail.com', - linkedIn: 'https://www.linkedin.com/in/paulbannon/', - campus: 'NYOI', - cohort: '3', - jobTitle: 'Frontend Engineer', - industry: 'Retail', - cities: [], - }, - { - company: 'Recurate', - name: 'Andrew Altman', - email: 'andrewaltman@outlook.com', - linkedIn: 'https://www.linkedin.com/in/andrewaltman1/', - campus: 'NYOI', - cohort: '3', - jobTitle: 'Lead Frontend Engineer', - industry: 'Business Tech/Enterprise Tech', - cities: [], - }, - { - company: 'Red Bull North America', - name: 'Catherine Larcheveque', - email: 'clarcheveque14@gmail.com', - linkedIn: 'https://www.linkedin.com/in/clarcheveque', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Automation Engineer', - industry: 'Restaurant, Food, and Beverage', - cities: [], - }, - { - company: 'Reddit', - name: 'Jessikeรฉ Campbell-Walker', - email: 'jessikeecw@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jessikeecampbellwalker/', - campus: 'LA', - cohort: '34', - jobTitle: 'Junior Front End Engineer', - industry: 'Internet Media', - cities: [], - }, - { - company: 'Redox', - name: 'Jacquelyn Whitworth', - email: 'jackie.whitworth@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jackiewhitworth/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Full Stack Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Redwood Coding Academy', - name: 'Alexander Landeros', - email: 'Alexander.Landeros1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexander-landeros/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Dev Instructor', - industry: 'Edtech', - cities: [], - }, - { - company: 'REEF', - name: 'Linda Everswick', - email: 'lindaeverswick@gmail.com', - linkedIn: 'https://www.linkedin.com/linda-everswick/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Front end engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Remine', - name: 'JJ Friedman', - email: 'friedmanjarred@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jj-friedman/', - campus: 'LA', - cohort: '33', - jobTitle: 'Software Engineer II - Web/Mobile', - industry: 'PropTech', - cities: [], - }, - { - company: 'Remote', - name: 'Bianca Picasso', - email: 'bianca.picasso@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bianca-picasso/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Engineer I', - industry: 'Research', - cities: [], - }, - { - company: 'Rent the Runway', - name: 'Rebecca Schell', - email: 'Rebeccaschell503@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rschelly/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Senior Front End Engineer', - industry: 'Fashion', - cities: [], - }, - { - company: 'Republic Services', - name: 'Lauren Acrich', - email: 'acrich.lauren@gmail.com', - linkedIn: 'https://www.linkedin.com/in/laurenacrich/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Full Stack Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Republic Services', - name: 'Nicholas Smith', - email: 'nicktsmith7@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nicholastaylorsmith/', - campus: 'LA', - cohort: '23', - jobTitle: 'Senior Front End Developer', - industry: '', - cities: [], - }, - { - company: 'Rescale', - name: 'Kushal Talele', - email: 'kushal.talele@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kushaltalele/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Software Engineer', - industry: 'Cloud computing', - cities: [], - }, - { - company: 'Research Corporation of the University of Hawaii', - name: 'Chris Fryer', - email: 'chris@hifryer.com', - linkedIn: 'linkedin.com/in/cjfryer', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Software Engineer Apprentice', - industry: 'Other', - cities: [], - }, - { - company: 'ResMed', - name: 'Jackie He', - email: 'jackie.he98@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jackie-he/', - campus: 'LA / WCRI', - cohort: '53', - jobTitle: 'Fullstack App SWE', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Restaurant Brand International (RBI)', - name: 'Christian Niedermayer', - email: 'sdchrisn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christian-niedermayer/', - campus: 'LA', - cohort: '27', - jobTitle: 'Full Stack Software Engineer', - industry: 'Food', - cities: [], - }, - { - company: 'Resy (AMEX)', - name: 'Jonathan Cespedes', - email: 'jmilescespedes@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonathancespedes/', - campus: 'NYC', - cohort: '7', - jobTitle: 'Senior Front-End Engineer', - industry: 'Restaurant, Food, Beverage', - cities: [], - }, - { - company: 'Reveel Group', - name: 'Jin Soo (John) Lim', - email: 'jinsoolim1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jinsoolim', - campus: 'NYC', - cohort: '21', - jobTitle: 'Frontend Developer', - industry: 'Logistics & Supply Chain', - cities: [], - }, - { - company: 'Revel', - name: 'Kayliegh Hill', - email: 'kayliegh.hill@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kayliegh-hill/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Full Stack Engineer', - industry: 'Renewables & Environment', - cities: [], - }, - { - company: 'Reverb', - name: 'Grace Park', - email: 'gracepark01@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '20', - jobTitle: 'software engineer', - industry: 'ecommerce', - cities: [], - }, - { - company: 'Revolution Prep', - name: 'Max Weisenberger', - email: 'germanbluemax@gmail.com', - linkedIn: 'https://www.linkedin.com/in/maxweisen/', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer', - industry: 'Education', - cities: [], - }, - { - company: 'RF-Smart', - name: 'Michael Snyder', - email: 'msnyder1992@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michaelcharlessnyder/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'JavaScript Applications Developer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Rice University', - name: 'Thasanee Puttamadilok', - email: 'meow3525@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thasanee-p-686125243/', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Front End Software Engineer', - industry: 'Research', - cities: [], - }, - { - company: 'Rightway', - name: 'Dylan Feldman', - email: 'dfeldman24@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dylan-feldman/', - campus: 'LA', - cohort: '45', - jobTitle: 'Software engineer', - industry: 'Healthcare navigation', - cities: [], - }, - { - company: 'Riot Games', - name: 'Pauline Chang', - email: 'paulseonchang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/pskchang/', - campus: 'LA', - cohort: '22', - jobTitle: 'Associate Software Engineer', - industry: '', - cities: [], - }, - { - company: 'RIPL', - name: 'Jared Veltsos', - email: 'Veltsos.jared@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jaredveltsos/', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Rivian', - name: 'Luis Lo', - email: 'kwun.man.lo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/luis-lo/', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Engineer', - industry: 'Electric Vehicle', - cities: [], - }, - { - company: 'Rivian', - name: 'Matthew Salvador', - email: 'matthew.jsalvador@gmail.com', - linkedIn: 'https://www.linkedin.com/in/matthewsalvador/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Full Stack Software Engineer II', - industry: 'Automotive', - cities: [], - }, - { - company: 'Rivian', - name: 'Stacy Learn', - email: 'sslearn07@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stacy-learn/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Software Engineer II', - industry: 'Automotive', - cities: [], - }, - { - company: 'Rivian', - name: 'Thomas Lutz', - email: 'tlutz65@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thomas-j-lutz/', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Automotive', - cities: [], - }, - { - company: 'Rocket Auto', - name: 'Tommy Han', - email: 'tommy.han.cs@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tommy-han-cs/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Senior Javascript Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Rocksbox', - name: 'Ece Isenbike Ozalp', - email: 'eceiozalp@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eceiozalp', - campus: 'PTRI', - cohort: '4', - jobTitle: 'Software Engineer', - industry: 'Jewelry Ecommerce', - cities: [], - }, - { - company: 'RockStep Solutions', - name: 'Matthew McGowan', - email: 'matthew.c.mcgowan@gmail.com', - linkedIn: 'https://www.linkedin.com/in/matthewcharlesmcgowan/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Software Release Manager', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Rohirrim', - name: 'Alex Corlin', - email: 'alex.corlin6@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alex-corlin/', - campus: 'FTRI / CTRI', - cohort: '7', - jobTitle: 'Full Stack Engineer', - industry: 'Artificial Intelligence', - cities: [], - }, - { - company: 'Rohirrim', - name: 'Simon Chen', - email: 'simonchn160@gmail.com', - linkedIn: 'https://www.linkedin.com/in/simonchen7/', - campus: 'FTRI / CTRI', - cohort: '7', - jobTitle: 'Full Stack Engineer', - industry: 'Artificial Intelligence', - cities: [], - }, - { - company: 'Roivant', - name: 'Jamie Schiff', - email: 'jamie.abrams.schiff@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jamie-schiff/', - campus: 'NYC / ECRI', - cohort: '1', - jobTitle: 'Technology Analyst', - industry: 'Biotech', - cities: [], - }, - { - company: 'Rokt', - name: 'Michael Hoang', - email: 'michaelhoang781@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michaelhoang1/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Frontend Software Engineer', - industry: 'Digital Advertising/E-commerce', - cities: [], - }, - { - company: 'Roll', - name: 'Eric Choy', - email: 'echoy20@gmail.com', - linkedIn: 'https://www.linkedin.com/in/silly-turtle/', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Roll', - name: 'Marlon Wiprud', - email: 'Marlonwiprud1@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Roll', - name: 'Marlon Wiprud', - email: 'Marlonwiprud1@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Search and ads', - cities: [], - }, - { - company: 'Rose Digital', - name: 'Chet (ChetBABY!) Hay', - email: 'chet.hay@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chethay/', - campus: 'LA', - cohort: '28', - jobTitle: 'Jr. Frontend Engineer', - industry: 'Digital Agency/Client Services', - cities: [], - }, - { - company: 'Rose Digital', - name: 'Linda Harrison', - email: 'lindafaithharrison@gmail.com', - linkedIn: 'https://linkedin.com/in/lindafharrison/', - campus: 'NYC', - cohort: '3', - jobTitle: 'Junior Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Ruggable', - name: 'Benjamin Lee Morrison', - email: 'newben.hd@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hdlmorrison/', - campus: 'LA', - cohort: '31', - jobTitle: 'Sr. Software Engineer', - industry: 'Commerce', - cities: [], - }, - { - company: 'Ruggable', - name: 'Andrew Nguyen', - email: 'nguyen.andrewkh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andrew-knguyen/', - campus: 'LA', - cohort: '29', - jobTitle: 'Sr. Front-End Engineer', - industry: 'E-Commerce', - cities: [], - }, - { - company: 'Ruggable', - name: 'Steven Jung', - email: 'stehyjung@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stehyjung/', - campus: 'LA', - cohort: '28', - jobTitle: 'Front End Engineer', - industry: 'E-Commerce', - cities: [], - }, - { - company: 'Rush Enterprises', - name: 'Eric Saldivar', - email: 'esaldivar1214@gmail.com', - linkedIn: 'https://www.linkedin.com/in/esaldivar1214/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Software Engineer', - industry: 'Automative', - cities: [], - }, - { - company: 'S&P Global', - name: 'Samantha Warrick', - email: 'samanthawarrick@gmail.com', - linkedIn: 'www.linkedin.com/samantha-warrick', - campus: 'LA / WCRI', - cohort: '54', - jobTitle: 'Front End Software Engineer', - industry: 'Marketing', - cities: [], - }, - { - company: 'Saggezza', - name: 'Albert Chen', - email: 'albert.chen@nyu.edu', - linkedIn: 'https://www.linkedin.com/in/albert-m-chen/', - campus: 'NYC', - cohort: '2', - jobTitle: 'Full-stack Analytics Engineer', - industry: 'Big Data, Analytics', - cities: [], - }, - { - company: 'Salesforce', - name: 'Jennifer Courtner', - email: 'jmichele.courtner@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jcourtner/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Full Stack Engineer', - industry: 'B2B', - cities: [], - }, - { - company: 'San Francisco State University', - name: 'Paul Valderama', - email: 'pvalderama@gmail.com', - linkedIn: 'https://www.linkedin.com/in/paulvalderama/', - campus: 'LA / WCRI', - cohort: '22', - jobTitle: 'Senior Web and Mobile Developer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'SAP', - name: 'Charlie Maloney', - email: 'charliemaloney200@gmail.com', - linkedIn: 'https://www.linkedin.com/in/charlie-maloney/', - campus: 'LA', - cohort: '35', - jobTitle: 'Front End Developer', - industry: 'Enterprise Software', - cities: [], - }, - { - company: 'SAP', - name: 'Sylvia Liu', - email: 'sylvs.liu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/liusylvia949/', - campus: 'LA', - cohort: '46', - jobTitle: 'Frontend Software Engineer', - industry: 'Business Software', - cities: [], - }, - { - company: 'Sayari', - name: 'SEAN YALDA', - email: 'seanyalda@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sean-yalda/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Senior Full Stack Developer', - industry: 'Data Intelligence', - cities: [], - }, - { - company: 'Sayari Labs', - name: 'Michael Gower', - email: 'GowerMikey@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mikeygower/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Senior Full Stack Engineer', - industry: 'Financial Data', - cities: [], - }, - { - company: 'Scale Computing', - name: 'Jason Charles de vera', - email: 'jasoncdevera@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jason-charles-de-vera/', - campus: 'FTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Cloud Technology', - cities: [], - }, - { - company: 'Scale Computing', - name: 'Connor Dillon', - email: 'connordillon06@gmail.com', - linkedIn: 'https://www.linkedin.com/in/connor-dillon/', - campus: 'FTRI / CTRI', - cohort: '16', - jobTitle: 'Software Development Engineer', - industry: 'Business Tech/Enterprise Tech', - cities: [], - }, - { - company: 'Science', - name: 'Michelle Leong', - email: 'leong.michellew@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michelle-w-leong/', - campus: 'LA / WCRI', - cohort: '56', - jobTitle: 'Software Engineer', - industry: 'Biotech', - cities: [], - }, - { - company: 'Science 37', - name: 'Tristan Schoenfeld', - email: 'tristans7@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tristan-schoenfeld/', - campus: 'LA', - cohort: '26', - jobTitle: 'Sr. Frontend Engineer', - industry: 'Research', - cities: [], - }, - { - company: 'ScienceLogic', - name: 'Nick Kruckenberg', - email: 'nkruckenberg@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nicholaskruckenberg/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Engineer', - industry: 'AIOps, IT monitoring and automation', - cities: [], - }, - { - company: 'SciTec', - name: 'Forest Everest Leigh', - email: 'theforestleigh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/forestleigh/', - campus: 'LA / WCRI', - cohort: '53', - jobTitle: 'Senior Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'SDL', - name: 'Jamar Dawson', - email: 'Dawsonjamar@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '30', - jobTitle: 'Front End Engineer (Mid Level)', - industry: 'Translation', - cities: [], - }, - { - company: 'SEAT:CODE', - name: 'Andrรฉs Gutiรฉrrez Ramรญrez', - email: 'agfeynman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andresgutierrezramirez/', - campus: 'PTRI', - cohort: '5', - jobTitle: 'Senior Fullstack Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Second Wave Technologies', - name: 'Nicholas Suzuki', - email: 'nicholassuzuki@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/nicholas-j-suzuki/', - campus: 'FTRI / CTRI', - cohort: '5', - jobTitle: 'Software Engineer', - industry: 'Consulting', - cities: [], - }, - { - company: 'SecureSeniorConnections', - name: 'Timothy', - email: 'tim.atapagra@gmail.com', - linkedIn: 'https://www.linkedin.com/in/timpagra/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Software Developer', - industry: 'Hospitals', - cities: [], - }, - { - company: 'Seed Health', - name: 'John SaeHwan Lee', - email: 'john.saehwan.lee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/john-saehwan-lee/', - campus: 'NYC / ECRI', - cohort: '39', - jobTitle: 'Fullstack Software Engineer I', - industry: 'Fitness/Wellness', - cities: [], - }, - { - company: 'SeedFi', - name: 'Peter Millspaugh', - email: 'peterdgmillspaugh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/peter-millspaugh/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Seedfi', - name: 'Stephen Grable', - email: 'stephengrable@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stephen-grable/', - campus: 'NYC', - cohort: '3', - jobTitle: 'Senior Software Engineer', - industry: 'Finance', - cities: [], - }, - { - company: 'SEL', - name: 'Jace Crowe', - email: 'jace.crowe@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jacecrowe/', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Software Engineer - Front End', - industry: 'Energy/Cleantech/Greentech', - cities: [], - }, - { - company: 'Send Out Carda', - name: 'Chris romano', - email: 'Chrispaulromano@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '15', - jobTitle: 'Front end engineer', - industry: 'Not sure: itโ€™s a subscription service for designing hallmark style cards', - cities: [], - }, - { - company: 'SENSE Chat', - name: 'Donte Nall', - email: 'donte.nall@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '25', - jobTitle: 'Senior Mobile Developer', - industry: 'Consulting', - cities: [], - }, - { - company: 'Sensei', - name: 'Kevin Fey', - email: 'kevinfey@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kevin-fey/', - campus: 'LA', - cohort: '37', - jobTitle: 'Senior Frontend Engineer', - industry: 'Wellness', - cities: [], - }, - { - company: 'SequinAR', - name: 'Wyatt Bell', - email: 'wcbell51@gmail.com', - linkedIn: 'https://www.linkedin.com/in/wyatt-bell1/', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Engineer', - industry: 'Augmented Reality, Entertainment', - cities: [], - }, - { - company: 'ServiceTrade', - name: 'Robert Beier', - email: 'robert.f.beier@gmail.com', - linkedIn: 'https://www.linkedin.com/in/robert-f-beier/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Software Engineer II', - industry: 'Contractor Software', - cities: [], - }, - { - company: 'Setsail Marketing', - name: 'Kirsten Milic', - email: 'kirsten.milic@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kirsten-milic/', - campus: 'LA / WCRI', - cohort: '57', - jobTitle: 'Software Engineer', - industry: 'Marketing/Advertising', - cities: [], - }, - { - company: 'Sev1Tech', - name: 'Adam Vanek', - email: 'atvanek@gmail.com', - linkedIn: 'https://www.linkedin.com/in/atvanek/', - campus: 'FTRI / CTRI', - cohort: '15', - jobTitle: 'Full Stack Developer', - industry: 'Government', - cities: [], - }, - { - company: 'Shadow Health', - name: 'Khandker Islam', - email: 'khandker.islam46@gmail.com', - linkedIn: 'https://www.linkedin.com/in/khandkerislam/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Software Engineer II', - industry: 'Virtual Reality Education', - cities: [], - }, - { - company: 'SharpenCX', - name: 'Anu Sharma', - email: 'anu.le.pau@gmail.com', - linkedIn: 'https://www.linkedin.com/in/anulepau', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Senior Full Stack Developer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Sherwin Williams', - name: 'Seamus Ryan', - email: 'd.seamus.ryan@outlook.com', - linkedIn: 'https://www.linkedin.com/in/dseamusryan/', - campus: 'LA', - cohort: '39', - jobTitle: 'React Developer', - industry: 'Consumer', - cities: [], - }, - { - company: 'Shift', - name: 'Ralph Salazar', - email: 'ralph.slzr@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ralph-salazar', - campus: 'NYC', - cohort: '2', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Showtime', - name: 'Dan Teng', - email: 'danwteng@gmail.com', - linkedIn: 'https://www.linkedin.com/feed/', - campus: 'NYC', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Shut Up & Write!', - name: 'Anthony Al-Rifai', - email: 'anthonyalrifai@gmail.com', - linkedIn: 'https://www.linkedin.com/in/anthony-al-rifai/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Full Stack Developer', - industry: 'Events', - cities: [], - }, - { - company: 'Shutterstock', - name: 'Ari Shoham', - email: 'arishoham@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ari-shoham/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Software Engineer III', - industry: 'Photography', - cities: [], - }, - { - company: 'Shutterstock', - name: 'Eli Davis', - email: 'eli.davis42@gmail.com', - linkedIn: 'https://www.linkedin.com/in/elidavis42/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Shutterstock', - name: 'Michael Pay', - email: 'michael.edward.pay@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael-edward-pay/', - campus: 'LA', - cohort: '46', - jobTitle: 'SDET III', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Shutterstock, Inc.', - name: 'Jake B Douglas', - email: 'jbrandondouglas@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '11', - jobTitle: 'Software Engineer, Projects', - industry: 'Tech? stock photography?', - cities: [], - }, - { - company: 'Sidecar Health', - name: 'Sumin Kim', - email: 'ppsm920@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ppsm920/', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer', - industry: 'Healthcare / insurance', - cities: [], - }, - { - company: 'Sierra Nevada Corporation', - name: 'Matthew Xing', - email: 'matthew.xing@gmail.com', - linkedIn: 'https://www.linkedin.com/in/matthew-xing/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Software Engineer II - Space Systems', - industry: 'Other', - cities: [], - }, - { - company: 'Signos', - name: 'Rebecca Anderson', - email: 'randersonviolin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rebecca--anderson/', - campus: 'NYC / ECRI', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'SigTech', - name: 'Robert Howton', - email: 'robert.f.howton@gmail.com', - linkedIn: 'https://www.linkedin.com/in/roberthowton/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Fullstack Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'SimpliSafe', - name: 'Cindy Chau', - email: 'cindychau38@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cindychau38/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer II', - industry: 'Security', - cities: [], - }, - { - company: 'Simplr', - name: 'Grigor Minasyan', - email: 'grigorminasyan1998@gmail.com', - linkedIn: 'https://www.linkedin.com/in/grigor-minasyan', - campus: 'FTRI', - cohort: '1', - jobTitle: 'Front end engineer', - industry: 'Customer service software', - cities: [], - }, - { - company: 'SimplyWise', - name: 'Justin Jaeger', - email: 'jjustinjaeger@gmail.com', - linkedIn: 'https://www.linkedin.com/in/justin-jaeger/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer', - industry: 'Cloud storage', - cities: [], - }, - { - company: 'Sinclair Broadcast Group', - name: 'Michael Filoramo', - email: 'mlfiloramo@gmail.com', - linkedIn: 'linkedin.com/in/michael-filoramo/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Full Stack Software Engineer III', - industry: 'Media', - cities: [], - }, - { - company: 'Sinclair Broadcast Group', - name: 'David Beame', - email: 'dbeame291@gmail.com', - linkedIn: 'https://www.linkedin.com/in/david-beame/', - campus: 'LA / WCRI', - cohort: '55', - jobTitle: 'Associate Software Developer', - industry: 'Media', - cities: [], - }, - { - company: 'Sinclair Broadcasting', - name: 'Joshua Reed', - email: 'joshreed104@gmail.com', - linkedIn: 'https://www.linkedin.com/in/josh-a-reed/', - campus: 'LA / WCRI', - cohort: '54', - jobTitle: 'Associate Development Engineer', - industry: 'Telecommunications', - cities: [], - }, - { - company: 'Singa', - name: 'Paul Kassar', - email: 'p.kassar@hotmail.com', - linkedIn: 'https://www.linkedin.com/in/paulkassar/', - campus: 'NYC', - cohort: '3', - jobTitle: 'Engineer', - industry: 'Outdoor Recreation', - cities: [], - }, - { - company: 'SiriusXM', - name: 'Ben Brower', - email: 'Bbrower1293@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ben-brower-80660073', - campus: 'NYC', - cohort: '21', - jobTitle: 'Software Engineer III', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Skechers', - name: 'Christopher Saavedra', - email: 'cssaavedra56@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chrisssaavedra/', - campus: 'LA', - cohort: '22', - jobTitle: 'Front end engineer', - industry: 'Retail/Manufacturing', - cities: [], - }, - { - company: 'Skematic', - name: 'Christina Or', - email: 'OR.CHRISTINA27@GMAIL.COM', - linkedIn: 'https://www.linkedin.com/in/christina-or', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Sketch and Etch', - name: 'Kenny Lee', - email: 'kenkiblee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kennethkiboklee/', - campus: 'LA / WCRI', - cohort: '46', - jobTitle: 'Founding Engineer', - industry: 'Retail', - cities: [], - }, - { - company: 'SKF USA', - name: 'Steve Canavan', - email: 'stevenrosscanavan@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stevencanavan/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Front End Developer', - industry: 'Manufacturing', - cities: [], - }, - { - company: 'Skillshare Inc.', - name: 'Chris Lung', - email: 'c.lung95@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chris-lung-5b69b2ba/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Edtech', - cities: [], - }, - { - company: 'Skillstorm, contracting at Bank of America', - name: 'Adam Singer', - email: 'Spincycle01@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/adsing/', - campus: 'NYC', - cohort: '10', - jobTitle: 'Application Programmer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Skout Cybersecurity', - name: 'Garrett James', - email: 'garrettjames55@gmail.com', - linkedIn: 'https://www.linkedin.com/in/garrett-lamar-james/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Senior Software Engineer', - industry: 'Cybersecurity', - cities: [], - }, - { - company: 'Sky Betting and Gaming / Flutter Entertainment', - name: 'Robert Drake', - email: 'rmdrake8@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rmdrake8/', - campus: 'NYC / ECRI', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Sports/Sports betting', - cities: [], - }, - { - company: 'Skylark Travel', - name: 'Giuseppe Valentino', - email: 'zepvalue@gmail.com', - linkedIn: 'https://www.linkedin.com/in/zepvalue/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Senior Full Stack Developer', - industry: 'Travel', - cities: [], - }, - { - company: 'Skylight', - name: 'Michael Lu', - email: 'michaellu213@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael-lu/', - campus: 'LA', - cohort: '27', - jobTitle: 'Full Stack Engineer', - industry: 'Consumer Goods', - cities: [], - }, - { - company: 'Slalom', - name: 'Angela Franco', - email: 'angelajfranco18@gmail.com', - linkedIn: 'https://www.linkedin.com/in/angela-j-franco', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer (Consultant)', - industry: 'Consulting', - cities: [], - }, - { - company: 'slalom', - name: 'Sara Kivikas', - email: 'sarakivikas@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sara-kivikas/', - campus: 'LA', - cohort: '49', - jobTitle: 'Software Engineer', - industry: 'Consulting', - cities: [], - }, - { - company: 'Slang.ai', - name: 'Kevin Luo', - email: 'luokev1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kevinluo117/', - campus: 'NYC', - cohort: '17', - jobTitle: 'Software Engineer', - industry: 'Customer Service', - cities: [], - }, - { - company: 'SlyEco', - name: 'Nicolas Jackson', - email: 'nicolasljax@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nicjax/', - campus: 'NYOI', - cohort: '2', - jobTitle: 'Lead Software Engineer', - industry: 'Energy/Cleantech/Greentech', - cities: [], - }, - { - company: 'Smarkets', - name: 'Nicholas Healy', - email: 'nickrhealy@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nick-r-healy', - campus: 'LA', - cohort: '36', - jobTitle: 'Frontend Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Smartbiz', - name: 'Dennis Lopez', - email: 'dnnis.lpz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dennis-lopezsb/', - campus: 'LA', - cohort: '40', - jobTitle: 'Frontend Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Smartrr', - name: 'Jeffrey Zheng', - email: 'zhengj98@outlook.com', - linkedIn: 'https://www.linkedin.com/in/jefzheng/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Software Developer', - industry: 'SaaS', - cities: [], - }, - { - company: 'SmartSheet', - name: 'Isaiah Delgado', - email: 'Isaiah.del621@gmail.com', - linkedIn: 'https://www.linkedin.com/in/isaiahdel/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Software Engineer I', - industry: 'Computer Hardware & Software', - cities: [], - }, - { - company: 'SmartThings', - name: 'Samuel Carrasco', - email: 'Samhcarrasco@gmail.com', - linkedIn: 'https://www.linkedin.com/in/samuelhcarrasco', - campus: 'NYC', - cohort: '31', - jobTitle: 'Associate Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Snag Films', - name: 'Muhammad Sheikh', - email: 'muhammad.sheikh93@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/mhsheikh/', - campus: 'NYC', - cohort: '3', - jobTitle: 'Software Developer', - industry: '', - cities: [], - }, - { - company: 'Snap eHealth', - name: 'Jordan Hisel', - email: 'hiseljm@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jordan-h-3b7686121/', - campus: 'LA', - cohort: '45', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Snap Inc', - name: 'Christopher Guizzetti', - email: 'guizzettic@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christopherguizzetti', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Snap Inc', - name: 'Madeline Doctor', - email: 'madelinemdoctor@gmail.com', - linkedIn: 'https://www.linkedin.com/in/madeline-doctor/', - campus: 'NYOI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Snap Inc.', - name: 'Kirsten Yoon', - email: 'kirstenyoon@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kirstenyoon', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer', - industry: 'camera, social media', - cities: [], - }, - { - company: 'Socialive', - name: 'Alexander Infante', - email: 'alexinfante17@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexander-infante/', - campus: 'LA', - cohort: '35', - jobTitle: 'Platform Engineer', - industry: 'Video Streaming', - cities: [], - }, - { - company: 'SoftWriters', - name: 'Jane You', - email: 'janeyou94@gmail.com', - linkedIn: 'linkedin.com/in/janeyou94', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Sojo', - name: 'Irina Khafizova', - email: 'irinakhafi@gmail.com', - linkedIn: 'https://www.linkedin.com/in/irina-khafizova/', - campus: 'NYC / ECRI', - cohort: '38', - jobTitle: 'Frontend software engineer', - industry: 'Hospitality', - cities: [], - }, - { - company: 'Solera Health', - name: 'Joel Park', - email: 'Joelpark97@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joelprkk/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Solid State Scientific Corporation', - name: 'Tadd LeRocque', - email: 't.lerocque@gmail.com', - linkedIn: 'https://www.linkedin.com/in/taddlerocque/', - campus: 'NYC / ECRI', - cohort: '40', - jobTitle: 'DevOps Software Developer', - industry: 'Data/Analytics/Cloud', - cities: [], - }, - { - company: 'Solo', - name: 'Carly Yarnell', - email: 'carly.yarnell21@gmail.com', - linkedIn: 'https://www.linkedin.com/in/carly-yarnell/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Solvent', - name: 'Adam Seery', - email: 'acseery@gmail.com', - linkedIn: 'www.linkedin.com/in/adam-seery', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'SOMA Global', - name: 'Adam Moore', - email: 'moore76sc@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adam-moore-se/', - campus: 'FTRI', - cohort: '6', - jobTitle: 'Platform Engineer', - industry: 'Public Safety', - cities: [], - }, - { - company: 'Sonos', - name: 'Austin Andrews', - email: 'austinandrews@berkeley.edu', - linkedIn: 'https://www.linkedin.com/in/austinandrews17', - campus: 'FTRI', - cohort: '7', - jobTitle: 'Release Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Sonos', - name: 'Alexander Nance', - email: 'balexn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/balexandernance', - campus: 'NYC', - cohort: '23', - jobTitle: 'Senior Software Engineer', - industry: 'Consumer Electronics', - cities: [], - }, - { - company: 'Sonr', - name: 'Ian Judd', - email: 'Iankimjudd@gmail.com', - linkedIn: 'https://www.linkedin.com/in/iankjudd/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Full Stack Developer', - industry: 'Web3', - cities: [], - }, - { - company: 'Sourcepoint Technologies', - name: 'Adam straus', - email: 'a.straus1@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '18', - jobTitle: 'Software Engineer', - industry: 'SaaS', - cities: [], - }, - { - company: 'Southern California Edison (via Sharp Decisions)', - name: 'Jie Yun (Catherine) Cheng', - email: 'chengjieyun59@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cat-cheng/', - campus: 'LA', - cohort: '33', - jobTitle: 'Sr. Full Stack Developer', - industry: 'Energy', - cities: [], - }, - { - company: 'SparkCognition', - name: 'Harvey Nguyen', - email: 'harveynwynn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/harveynwynn/', - campus: 'LA', - cohort: '47', - jobTitle: 'Software Engineer II', - industry: 'Artificial intelligence', - cities: [], - }, - { - company: 'SparrowFi', - name: 'Alex Barbazan', - email: 'Agbarbazan@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Spatial Data Logic', - name: 'Thomas Lukasiewicz', - email: 'tlukasiewicz89@gmail.com', - linkedIn: 'https://www.linkedin.com/feed/', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Spearmint', - name: 'Chloe Aribo', - email: 'chloearibo92@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chloe-aribo/', - campus: 'LA', - cohort: '33', - jobTitle: 'Senior Software Engineer', - industry: 'Security', - cities: [], - }, - { - company: 'SpecTrust', - name: 'Tehya Rassman', - email: 'tehyaarassman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tehya-rassman/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Software Engineer', - industry: 'Cybercrime', - cities: [], - }, - { - company: 'Specturm', - name: 'Sanjay Lavingia', - email: 'SanjayLavingia@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sanjay-lavingia/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Telecom', - cities: [], - }, - { - company: 'Spirent Communications', - name: 'Dylan Bury', - email: 'dylanbury@protonmail.com', - linkedIn: 'https://www.linkedin.com/in/dylanbury/', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer', - industry: 'Telecommunications', - cities: [], - }, - { - company: 'Splash Financial', - name: 'Bahram Bagherzadeh', - email: 'bjbagher@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bbagher/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Senior Software Engineer', - industry: 'Finance', - cities: [], - }, - { - company: 'Splunk', - name: 'Caroline Kimball', - email: 'kimballcaroline@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kimballcaroline/', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Software Engineer', - industry: 'Security/Data Privacy', - cities: [], - }, - { - company: 'Spotify', - name: 'Aaron Bart-Addison', - email: 'abaddison16@gmail.com', - linkedIn: 'https://www.linkedin.com/in/abaddison16/', - campus: 'NYC', - cohort: '6', - jobTitle: 'Web Engineer II', - industry: '', - cities: [], - }, - { - company: 'Spotify', - name: 'Amanda Flink', - email: 'avflinkette@gmail.com', - linkedIn: 'https://www.linkedin.com/in/amandaflink/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Senior Web Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Spotify', - name: 'Chris Kopcow', - email: 'ckopcow@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christopherkopcow/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Technical Writer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Spotify', - name: 'Trevor Gray', - email: 'trevor.m.gray@outlook.com', - linkedIn: 'https://www.linkedin.com/mwlite/in/trev-gray', - campus: 'FTRI', - cohort: '7', - jobTitle: 'Frontend Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Spring Health', - name: 'Kassandra Meyer', - email: 'kassandram022@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kassandram/', - campus: 'LA', - cohort: '31', - jobTitle: 'Frontend Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'SpringHealth', - name: 'Matthew Huang', - email: 'matthewhuang24@gmail.com', - linkedIn: 'https://www.linkedin.com/in/matthew-huang/', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Spruce', - name: 'Edward Ryan', - email: '15ryane@gmail.com', - linkedIn: 'https://www.linkedin.com/in/edward-ryan/', - campus: 'LA', - cohort: '27', - jobTitle: 'Software Engineer', - industry: 'Hospitality Services', - cities: [], - }, - { - company: 'SPS Health', - name: 'Mark Teets', - email: 'markteets@gmail.com', - linkedIn: 'https://www.linkedin.com/in/markteets/', - campus: 'FTRI / CTRI', - cohort: '15', - jobTitle: 'Application Developer', - industry: 'Healthtech/Healthcare', - cities: [], - }, - { - company: 'Spur Reply', - name: 'Jeffrey Pettis', - email: 'jeffrey.pettis@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jeffreypettis/', - campus: 'PTRI', - cohort: '9', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Square', - name: 'Christopher Akinrinade', - email: 'chris.akinrinade@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christopher-akinrinade/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Square', - name: 'Juan Espinoza', - email: 'espinozajuan562@gmail.com', - linkedIn: 'https://www.linkedin.com/in/espinoza-juan/', - campus: 'LA', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Square Root, Inc.', - name: 'Angel Vega', - email: 'angelvega85@gmail.com', - linkedIn: 'https://www.linkedin.com/in/angel-e-vega', - campus: 'LA', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Information Technology', - cities: [], - }, - { - company: 'STA Group', - name: 'Gabriel Machado', - email: 'bielchristo@hotmail.com', - linkedIn: '', - campus: 'LA', - cohort: '42', - jobTitle: 'UI Engineer', - industry: 'Consulting', - cities: [], - }, - { - company: 'Stacked Invest', - name: 'Ross Lamerson', - email: 'ross.lamerson@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lamerson28/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Software Engineer - Front End', - industry: 'Cryptocurrency / Fintech', - cities: [], - }, - { - company: 'Standard Bots', - name: 'Arshia Masih', - email: 'arshia.masih@gmail.com', - linkedIn: 'https://www.linkedin.com/in/arshiamasih/', - campus: 'LA', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Robotics / Industrial Automation', - cities: [], - }, - { - company: 'Starbucks', - name: 'Sam Carter', - email: 'sammahcarter@gmail.com', - linkedIn: 'https://linkedin.com/in/cartersamj', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Engineer', - industry: 'Restaurant, Food, and Beverage', - cities: [], - }, - { - company: 'Stardust', - name: 'James Tu', - email: 'tu.james@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jamestu2000/', - campus: 'LA', - cohort: '21', - jobTitle: 'Full Stack Engineer', - industry: '', - cities: [], - }, - { - company: 'State Farm', - name: 'James Manahan', - email: 'manahanjames@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/jamesmanahan/', - campus: 'LA', - cohort: '34', - jobTitle: 'Software Developer', - industry: 'Insurance', - cities: [], - }, - { - company: 'Steel Perlot', - name: 'Morris Kolman', - email: 'morristskolman@gmail.com', - linkedIn: 'linkedin.com/in/morrykolman', - campus: 'NYOI', - cohort: '2', - jobTitle: 'Initiative Lead: Social Media', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'SteelHouse', - name: 'Jordan Betzer', - email: 'jordanbetzer@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jordanbetzer/', - campus: 'LA', - cohort: '26', - jobTitle: 'Software Engineer - Backend', - industry: 'Healthcare', - cities: [], - }, - { - company: 'SteelHouse', - name: 'Taylor Burrington', - email: 'taylor.burrington@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Ad Tech', - cities: [], - }, - { - company: 'Stem Disintermedia Inc.', - name: 'Mia Huynh', - email: 'mia@stem.is', - linkedIn: 'https://www.linkedin.com/in/miamyhuynh/', - campus: 'LA', - cohort: '22', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Storyblocks', - name: 'Eric Gomez', - email: 'Ergomez0201@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eric-gomez', - campus: 'LA / WCRI', - cohort: '48', - jobTitle: 'Senior Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Streamlit', - name: 'Sam Haar', - email: 'samhaar@gmail.com', - linkedIn: 'https://www.linkedin.com/in/samhaar/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Software Engineer', - industry: 'ML / Data / Open Source', - cities: [], - }, - { - company: 'Stride', - name: 'Kaitlin Zhang', - email: 'Kaitlin.Zhang@owasp.org', - linkedIn: 'https://www.linkedin.com/in/kaizengrowth/', - campus: 'FTRI', - cohort: '9', - jobTitle: 'Software Engineer, Writer/Instructor', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Stride Health, Inc.', - name: 'Ben Kwak', - email: 'benjamin.h.kwak@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ben-kwak/', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Engineer, Full Stack', - industry: 'Insurance', - cities: [], - }, - { - company: 'Strider Technologies ', - name: 'Timothy Chang ', - email: 'timchang87@gmail.com', - linkedIn: 'https://www.linkedin.com/in/timchang87', - campus: 'PTRI', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Stroz Friedberg', - name: 'Madalyn Baehre', - email: 'mmbaehre@gmail.com', - linkedIn: 'https://www.linkedin.com/in/madalynbaehre/', - campus: 'LA', - cohort: '20', - jobTitle: 'Full-Stack Software Developer', - industry: '', - cities: [], - }, - { - company: 'Stuff', - name: 'Joseph Toledano', - email: 'joseph.a.toledano@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joetoledano/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Developer', - industry: 'On-Demand Work', - cities: [], - }, - { - company: 'Stuller, Inc.', - name: 'Sarah Moosa', - email: '14sbethm@gmail.com', - linkedIn: 'https://linkedin.com/in/sarah-e-moosa', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Full Stack Developer', - industry: 'Retail', - cities: [], - }, - { - company: 'Stylitics', - name: 'Tania Lind', - email: 'tania.o.lind@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lind-tania/', - campus: 'LA', - cohort: '39', - jobTitle: 'Senior Frontend Engineer', - industry: 'Fashion', - cities: [], - }, - { - company: 'Suki AI', - name: 'Edward Shei', - email: 'edwardshei@gmail.com', - linkedIn: 'https://www.linkedin.com/in/edwardshei/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Engineer', - industry: 'Medical Transcription', - cities: [], - }, - { - company: 'Surfside', - name: 'Alec Below', - email: 'alecbelow@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '17', - jobTitle: 'Software Engineer - Platform Integration', - industry: 'Advertising', - cities: [], - }, - { - company: 'Suuchi.com', - name: 'David Kim', - email: 'davidkim024@gmail.com', - linkedIn: 'https://www.linkedin.com/in/davidkim024/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Senior Full Stack Engineer', - industry: 'Manufacturing', - cities: [], - }, - { - company: 'Sweetgreen', - name: 'Emilia Brizuela-Nothaft', - email: 'emiliacarmel@gmail.com', - linkedIn: 'https://www.linkedin.com/in/emilia-brizuela-nothaft/', - campus: 'LA', - cohort: '26', - jobTitle: 'Software Engineer', - industry: 'Food', - cities: [], - }, - { - company: 'Sweetgreen', - name: 'Melody Chai', - email: 'melodychai2@gmail.com', - linkedIn: 'https://www.linkedin.com/in/melodychai/', - campus: 'LA', - cohort: '26', - jobTitle: 'Engineer I', - industry: 'Fast Casual Dining', - cities: [], - }, - { - company: 'Swisher International, Inc', - name: 'John Howell', - email: 'tsjohnnyh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/johnny-r-howell/', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'eCommerce Development Supervisor', - industry: 'Other', - cities: [], - }, - { - company: 'Swoon', - name: 'Tyler Wilson', - email: 'wilsontyler95@gmail.com', - linkedIn: 'https://www.linkedin.com/in/twilsontech', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Synapse FI', - name: 'Mike Huynh', - email: 'mhuynh517@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mikehuynh28/', - campus: 'LA', - cohort: '28', - jobTitle: 'Front-End Engineer II', - industry: 'Fintech', - cities: [], - }, - { - company: 'T-Mobile', - name: 'Khang Sabre-Nguyen', - email: 'Klsabren.7@gmail.com', - linkedIn: 'https://www.linkedin.com/in/khang-sabre-nguyen/', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Software Engineer', - industry: 'Telecommunications', - cities: [], - }, - { - company: 'T-mobile', - name: 'Miaowen Zeng', - email: 'zmw0525@gmail.com', - linkedIn: 'www.linkedin.com/in/miaowen-zeng', - campus: 'FTRI / CTRI', - cohort: '7', - jobTitle: 'Associate Software Engineer', - industry: 'Telecommunications', - cities: [], - }, - { - company: 'T. Rowe Price', - name: 'Liam Fontes', - email: 'liamfontes1244@gmail.com', - linkedIn: 'https://www.linkedin.com/in/liam-fontes/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Associate Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'T. Rowe Price', - name: 'Robert Du', - email: 'robert.c.du@gmail.com', - linkedIn: 'https://www.linkedin.com/in/robert-du/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Mid-Level Software Engineer (contract-to-hire)', - industry: 'Fintech', - cities: [], - }, - { - company: 'Tailored Brands', - name: 'Viet Nguyen', - email: 'n.vietqb@gmail.com', - linkedIn: 'https://www.linkedin.com/in/viet-nguyen-2280491b2/', - campus: 'LA', - cohort: '45', - jobTitle: 'UI Engineer', - industry: 'Retail', - cities: [], - }, - { - company: 'Take Command Health', - name: 'Katie Janzen', - email: 'katiekennerjanzen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/katie-janzen/', - campus: 'NYC', - cohort: '32', - jobTitle: 'Front End Developer', - industry: 'Insurance', - cities: [], - }, - { - company: 'Talage', - name: 'Parker Hutcheson', - email: 'pdhutcheson@gmail.com', - linkedIn: 'https://www.linkedin.com/in/parkerhutcheson/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Senior Software Engineer', - industry: 'Insurtech', - cities: [], - }, - { - company: 'Tallied', - name: 'Abeer Faizan', - email: 'abeerfaizan@gmail.com', - linkedIn: 'https://www.linkedin.com/in/abeerfaizan/', - campus: 'LA', - cohort: '47', - jobTitle: 'Software Engineer 2', - industry: 'Financial Services & Digital Payments', - cities: [], - }, - { - company: 'Tandem Chat (Tandem Communications Inc.)', - name: 'John Jongsun Suh', - email: 'john.jongsun.suh@pm.me', - linkedIn: 'https://linkedin.com/in/john-jongsun-suh', - campus: 'LA', - cohort: '44', - jobTitle: 'Software Engineer', - industry: 'Communication/Productivity Software', - cities: [], - }, - { - company: 'Tapestry', - name: 'Natalie Umanzor', - email: 'umanzor2949@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nmczormick/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'E-Commerce', - cities: [], - }, - { - company: 'Target', - name: 'Courtney Doss', - email: '777.catalyst@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '40', - jobTitle: 'Software Engineer', - industry: 'Retail', - cities: [], - }, - { - company: 'Tatari', - name: 'Natalie Klein', - email: 'natklein3@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nataliesklein/', - campus: 'LA', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'TV ads', - cities: [], - }, - { - company: 'TaxNow', - name: 'Tanner Lyon', - email: 'Tannerhlyon@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tannerhlyon', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Software Engineer', - industry: 'Business Tech/Enterprise Tech', - cities: [], - }, - { - company: 'TaxSlayer', - name: 'Katherine Marrow', - email: 'kmcromer1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/katherine-marrow/', - campus: 'PTRI', - cohort: '9', - jobTitle: 'Full Stack Developer', - industry: 'Other', - cities: [], - }, - { - company: 'Teachers Pay Teachers', - name: 'Courtney Kwong', - email: 'cwkwong95@gmail.com', - linkedIn: 'https://www.linkedin.com/in/courtneywkwong/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Full Stack Engineer', - industry: 'Media', - cities: [], - }, - { - company: 'Tech Holding', - name: 'Pablo Lee', - email: 'lee.pablo.e@gmail.com', - linkedIn: 'https://linkedin.com/in/pablo-lee/', - campus: 'LA', - cohort: '24', - jobTitle: 'Software Engineer', - industry: 'Media & Advertisement', - cities: [], - }, - { - company: 'TechEmpower', - name: 'Nick Stillman', - email: 'nick.edward.stillman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nick-e-stillman/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Programmer I', - industry: 'Software Development/Consulting', - cities: [], - }, - { - company: 'Technergetics', - name: 'Cody Schexnider', - email: 'codydschexnider@gmail.com', - linkedIn: 'https://www.linkedin.com/in/schexnider/', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Junior Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Technergetics', - name: 'Angel Giron', - email: 'angel.c.giron1@gmail.con', - linkedIn: 'https://www.linkedin.com/in/acgiron/', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'TEKsystems for AMEX', - name: 'Connor Rose Delisle', - email: 'connorrose.delisle@gmail.com', - linkedIn: 'https://www.linkedin.com/in/connorrosedelisle/', - campus: 'LA', - cohort: '37', - jobTitle: 'Developer', - industry: 'Banking', - cities: [], - }, - { - company: 'Teleport', - name: 'Cole Styron', - email: 'colestyron@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cole-styron/', - campus: 'LA', - cohort: '40', - jobTitle: 'Software Engineer II', - industry: 'Tech', - cities: [], - }, - { - company: 'Tempus', - name: 'Eterna tsai', - email: 'One.eternity@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eterna/', - campus: 'NYC', - cohort: '7', - jobTitle: 'Software engineer', - industry: '', - cities: [], - }, - { - company: 'Tend', - name: 'Christopher Johnson', - email: 'cjbeats@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thecjjohnson/', - campus: 'LA', - cohort: '39', - jobTitle: 'Junior Software Developer', - industry: 'Dentistry', - cities: [], - }, - { - company: 'Terminus', - name: 'Jonathan Ascencio', - email: 'Jonascencio1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonascencio/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Engineer', - industry: 'Marketing Tevh', - cities: [], - }, - { - company: 'The Action Network', - name: 'Diana Li', - email: 'dianalicarrasco@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dianalicarrasco/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Software Engineer II', - industry: 'Entertainment', - cities: [], - }, - { - company: 'The Action Network', - name: 'Mahmoud Hmaidi', - email: 'mhmaidi789@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mahmoud-hmaidi-mo/', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer II', - industry: 'Entertainment', - cities: [], - }, - { - company: 'The Charles Stark Draper Laboratory, Inc.', - name: 'Kelsey Flynn', - email: 'flynn.kelseyelizabeth@gmail.com', - linkedIn: 'www.linkedin.com/in/kelseyeflynn/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Member of Technical Staff in Fullstack Web Group', - industry: 'Research', - cities: [], - }, - { - company: 'The Coates Group', - name: 'Brandon Tran', - email: 'btran140@gmail.com', - linkedIn: 'https://www.linkedin.com/in/btran140', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Typescript Full Stack Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'The Cru', - name: 'Brooke Luro', - email: 'lurob@me.com', - linkedIn: 'https://www.linkedin.com/in/brooke-luro-4413046a/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Software Engineer', - industry: 'Professional Training & Coaching', - cities: [], - }, - { - company: 'The Edge Treatment Center', - name: 'Joey Ma', - email: 'joeyma@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joeyma/', - campus: 'LA / WCRI', - cohort: '47', - jobTitle: 'Web Developer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'The Farm Project', - name: 'Quoc Bui', - email: 'quocbui@gmail.com', - linkedIn: 'https://www.linkedin.com/in/buiquoc/', - campus: 'LA', - cohort: '26', - jobTitle: 'Lead Web UI Engineer?', - industry: 'Telecommunications', - cities: [], - }, - { - company: 'The Farmerโ€™s Dog', - name: 'Willem Rosenthal', - email: 'willemrosenthal@gmail.com', - linkedIn: 'https://www.linkedin.com/in/willem-rosenthal', - campus: 'NYOI', - cohort: '1', - jobTitle: 'Software Engineer III', - industry: 'Other', - cities: [], - }, - { - company: 'the guarantors', - name: 'Dmitriy Levy', - email: 'dmitriylevy01@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dmitriy-levy/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'The Home Depot', - name: 'Eric Han', - email: 'eric.j.h92@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eric-j-han/', - campus: 'LA / WCRI', - cohort: '48', - jobTitle: 'Front-End Developer', - industry: 'Retail', - cities: [], - }, - { - company: 'The Home Depot', - name: 'Max Nikitin', - email: 'teachandtravelcn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/maxnikitin23/', - campus: 'LA', - cohort: '40', - jobTitle: 'Full Stack Software Engineer', - industry: 'Construction/retail', - cities: [], - }, - { - company: 'The New York Times', - name: 'Karl Eden', - email: 'karl94e@gmail.com', - linkedIn: 'www.linkedin.com/in/karleden', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Software Engineer', - industry: 'News/Entertainment/Streaming Platforms', - cities: [], - }, - { - company: 'The New Yorker', - name: 'Julien Devlin', - email: 'juliendevlin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/juliendevlin/', - campus: 'NYC / ECRI', - cohort: '38', - jobTitle: 'Software Developer', - industry: 'News/Entertainment/Streaming Platforms', - cities: [], - }, - { - company: 'The Perlman Clinic', - name: 'Louis Sheid', - email: 'louisxsheid@gmail.com', - linkedIn: 'https://www.linkedin.com/in/louisxsheid/', - campus: 'LA', - cohort: '36', - jobTitle: 'Full Stack Developer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'The Prospector Theater', - name: 'Kelly Cuevas', - email: 'cuev73@live.com', - linkedIn: 'https://www.linkedin.com/in/kelly-cuevas/', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Lead Frontend Engineer', - industry: 'Social Impact/Nonprofit', - cities: [], - }, - { - company: 'The Trevor Project / Tecnolochicas Pro', - name: 'Miranda Jaramillo Morales', - email: 'mirandajaramillomorales@gmail.com', - linkedIn: 'https://www.linkedin.com/in/miranda-jaramillo/', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Software Engineer II / Software Engineering Mentor', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'The Walt Disney Company', - name: 'Gabriel Machado', - email: 'bielchristo@hotmail.com', - linkedIn: 'https://www.linkedin.com/in/bielchristo/', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'The Walt Disney Company', - name: 'Ryan London', - email: 'ryel590@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ryanlondon/', - campus: 'LA', - cohort: '18', - jobTitle: 'Senior Software Engineer', - industry: 'IT', - cities: [], - }, - { - company: 'The Walt Disney Company', - name: 'Shane Taylor', - email: 'shaneallantaylor@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shane-allan-taylor/', - campus: 'LA', - cohort: '27', - jobTitle: 'Software Engineer', - industry: 'Entertainment/Media', - cities: [], - }, - { - company: 'The Walt Disney Company', - name: 'Yurii Shchyrba', - email: 'yurashchyrba@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yuriishchyrba/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Software Engineer II', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'The Washington Post', - name: 'Christelle Desire', - email: 'Cdesire20@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christelle-desire/', - campus: 'LA', - cohort: '39', - jobTitle: 'Full stack engineer', - industry: 'Newsroom', - cities: [], - }, - { - company: 'The Wing', - name: 'Xaria Kirtikar', - email: 'xariak91@gmail.com', - linkedIn: 'https://www.linkedin.com/in/xaria/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'Co-working spaces', - cities: [], - }, - { - company: 'The X Company', - name: 'Roy Quintana', - email: 'rolandquintana1991@gmail.com', - linkedIn: 'https://www.linkedin.com/in/royquintana/', - campus: 'LA', - cohort: '28', - jobTitle: 'Senior Software Engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'TheMuse', - name: 'Franklin pinnock', - email: 'pinnockf@gmail.com', - linkedIn: 'https://www.linkedin.com/in/pinnockf/', - campus: 'NYC', - cohort: '9', - jobTitle: 'Full-Stack Engineer', - industry: 'Robotics', - cities: [], - }, - { - company: 'Thomson Reuters', - name: 'Li Cheng', - email: 'lilybearcheng@gmail.com', - linkedIn: 'https://www.linkedin.com/in/li-cheng-76890540/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Integration Engineer', - industry: 'IT Services', - cities: [], - }, - { - company: 'ThreeKit', - name: 'Alison Fay', - email: 'aliglass13@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alison-fay/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Thriveworks', - name: 'Alma Eyre', - email: 'aselunar@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alma-eyre/', - campus: 'NYC / ECRI', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Thriveworks', - name: 'Charissa Ramirez', - email: 'chawissa@gmail.com', - linkedIn: 'https://linkedin.com/in/chawissa', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Ticket Bridge', - name: 'Travis Frank', - email: 'travis@travismfrank.com', - linkedIn: 'https://www.linkedin.com/in/travis-m-frank/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Founder', - industry: 'Live Events', - cities: [], - }, - { - company: 'TikTok', - name: 'James Cross', - email: 'jamespvcross@gmail.com', - linkedIn: 'https://www.linkedin.com/in/james-p-cross1/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'Social Media', - cities: [], - }, - { - company: 'TikTok', - name: 'Jason Speare', - email: 'jcspeare@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jason-speare', - campus: 'LA', - cohort: '41', - jobTitle: 'Site Reliability Engineer', - industry: 'Video Social Networking', - cities: [], - }, - { - company: 'Tinder', - name: 'Harrison Nam', - email: 'harrison.j.nam@gmail.com', - linkedIn: 'https://www.linkedin.com/in/harrison-nam/', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer', - industry: 'Social', - cities: [], - }, - { - company: 'Tinder', - name: 'Harrison Nam', - email: 'harrison.j.nam@gmail.com', - linkedIn: 'https://www.linkedin.com/in/harrison-nam/', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer II, Web Development', - industry: 'Dating', - cities: [], - }, - { - company: 'Tinder', - name: 'Serge Vartanov', - email: 'vartanov.s@gmail.com', - linkedIn: 'https://www.linkedin.com/in/svartanov/', - campus: 'LA', - cohort: '24', - jobTitle: 'Senior Backend Engineer', - industry: '', - cities: [], - }, - { - company: 'Tixologi', - name: 'Mark Nichting', - email: 'mtnichting@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mark-nichting/', - campus: 'LA / WCRI', - cohort: '53', - jobTitle: 'Frontend Engineer', - industry: 'Blockchain/Web3', - cities: [], - }, - { - company: 'Toast Inc', - name: 'Denys Dekhtiarenko', - email: 'dekhtiarenko.d@gmail.com', - linkedIn: 'https://www.linkedin.com/in/denysdekhtiarenko/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Software Engineer II', - industry: 'Restaurant software', - cities: [], - }, - { - company: 'TodayTix Group', - name: 'Xiao Li', - email: 'lixtong@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lixiaotong/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Associate Software Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'TomoCredit', - name: 'Ramtin Khoee', - email: 'Ramtin.khoee@gmail.com', - linkedIn: 'https://www.linkedin.com/mwlite/in/ramtinkhoee', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Topologe (working with the Air Force)', - name: 'Joseph Michael Corrado', - email: 'joeyycorrss@gmail.com', - linkedIn: 'https://www.linkedin.com/in/josephmichaelcorrado/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Senior Software Engineer', - industry: 'Web Dev for Air Force', - cities: [], - }, - { - company: 'Tortus', - name: 'Victor To', - email: 'victorto123@gmail.com', - linkedIn: 'https://www.linkedin.com/in/victorto1/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer', - industry: 'Real Estate Tech', - cities: [], - }, - { - company: 'Toucan', - name: 'Isaac Durand', - email: 'isaac.durand@gmail.com', - linkedIn: 'https://www.linkedin.com/in/isaacdurand', - campus: 'LA', - cohort: '5', - jobTitle: 'Senior Engineer II', - industry: '', - cities: [], - }, - { - company: 'Toucan', - name: 'Jane Kim', - email: 'jane.minhyung.kim@gmail.com', - linkedIn: 'https://www.linkedin.com/in/janeminhyungkim/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Software Engineer', - industry: 'Education tools', - cities: [], - }, - { - company: 'Toyota', - name: 'Melanie Forbes', - email: 'mforbes12@gmail.com', - linkedIn: 'https://www.linkedin.com/in/melanie-forbes-/', - campus: 'FTRI / CTRI', - cohort: '12', - jobTitle: 'Software Engineer', - industry: 'Automotive', - cities: [], - }, - { - company: 'Toyota', - name: 'Emily Hoang', - email: 'ethlin4@gmail.com', - linkedIn: 'https://www.linkedin.com/in/emilyhoang', - campus: 'FTRI / CTRI', - cohort: '14', - jobTitle: 'Software Engineer', - industry: 'Automotive', - cities: [], - }, - { - company: 'TradeAlly', - name: 'Adepeju Orefejo', - email: 'adepeju.kayode@gmail.com', - linkedIn: 'https://www.linkedin.com/adepeju-orefejo', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Backend Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Travelers Companies Inc.', - name: 'Dylan Li', - email: 'dyli797@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dli107/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: [], - }, - { - company: 'Trend micro', - name: 'Daniel Balistocky', - email: 'thestinx@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dannyb1983', - campus: 'LA', - cohort: '41', - jobTitle: 'Software engineer', - industry: 'Web security', - cities: [], - }, - { - company: 'TreviPay', - name: 'Utkarsh Uppal', - email: 'utkarshuppal@gmial.com', - linkedIn: 'https://www.linkedin.com/in/utkarshuppal/', - campus: 'LA / WCRI', - cohort: '55', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Tribe Labs Inc.', - name: 'Alexander Landeros', - email: 'alexander.landeros1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexander-landeros/', - campus: 'LA', - cohort: '38', - jobTitle: 'Frontend Software Engineer', - industry: 'Communication Tech', - cities: [], - }, - { - company: 'Trineo', - name: 'Rebecca Viner', - email: 'rtviner@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rtviner/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Engineer II', - industry: 'Software Consultancy', - cities: [], - }, - { - company: 'Tripadvisor', - name: 'Jake Bradbeer', - email: 'jakebradbeer@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jacobbradbeer/', - campus: 'LA', - cohort: '49', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'TripleLift', - name: 'Arron Nestor', - email: 'arronnestor@gmail.com', - linkedIn: 'https://www.linkedin.com/in/arron-nestor/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Cloud Infrastructure Engineer', - industry: 'Ad-Tech', - cities: [], - }, - { - company: 'Triplelift', - name: 'Kia Colbert', - email: 'colber16@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kiacolbert/', - campus: 'NYC', - cohort: '9', - jobTitle: 'Engineer I', - industry: 'Social Impact', - cities: [], - }, - { - company: 'True Tickets', - name: 'Alesi-Andreya Ladas', - email: 'alesiladas@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alesiladas/', - campus: 'NYC', - cohort: '3', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'TrueCar', - name: 'Calvin Cao', - email: 'jtcao430@gmail.com', - linkedIn: 'https://www.linkedin.com/in/calvincao9/', - campus: 'LA', - cohort: '48', - jobTitle: 'Software Engineer II', - industry: 'Marketing', - cities: [], - }, - { - company: 'TrueCar', - name: 'Zac Haluza', - email: 'zac.haluza@gmail.com', - linkedIn: 'https://www.linkedin.com/in/zhaluza/', - campus: 'NYC', - cohort: '17', - jobTitle: 'Software Engineer', - industry: 'Automotive', - cities: [], - }, - { - company: 'trueface.ai', - name: 'Sam Siye Yu', - email: 'yudataguy@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yusiye/', - campus: 'LA', - cohort: '27', - jobTitle: 'full stack developer', - industry: 'computer vision', - cities: [], - }, - { - company: 'Truepill', - name: 'Justin Baik', - email: 'bij3377@gmail.com', - linkedIn: 'https://www.linkedin.com/in/justin-baik/', - campus: 'LA', - cohort: '42', - jobTitle: 'Associate Software Engineer', - industry: 'Health Tech', - cities: [], - }, - { - company: 'Truepill', - name: 'Jonah Stewart', - email: 'jonahlstewart@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonahlstewart/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Associate Software Engineer - Backend', - industry: 'Healthtech', - cities: [], - }, - { - company: 'Turbonomic', - name: 'Tyler Hurtt', - email: 'TylerAdamHurtt@gmail.com', - linkedIn: 'https://www.linkedin.com/in/TylerHurtt/', - campus: 'LA', - cohort: '34', - jobTitle: 'Senior Software Engineer', - industry: 'Cloud & Network Monitoring', - cities: [], - }, - { - company: 'Twilio', - name: 'Christopher Docuyanan', - email: 'Christophejd@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cjdocuyanan/', - campus: 'LA', - cohort: '40', - jobTitle: 'Software Engineer (Personas R&D)', - industry: 'Communications', - cities: [], - }, - { - company: 'Twitch', - name: 'Alice Wong', - email: 'alice.sky.wong@gmail.com', - linkedIn: 'https://www.linkedin.com/in/wong-alice/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Frontend Engineer', - industry: 'IoT', - cities: [], - }, - { - company: 'Two Barrels LLC', - name: 'Ryan Rambaran', - email: 'ryanrambaran.fl@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ryan-rambaran/', - campus: 'PTRI', - cohort: '4', - jobTitle: 'Front End Developer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Two Six Labs', - name: 'Kevin Nam', - email: 'Kevinjnam@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '31', - jobTitle: 'Software Engineer - Front End', - industry: 'Cybersecurity', - cities: [], - }, - { - company: 'TwoSix Labs', - name: 'Darren Napier', - email: 'darren.napier5@gmail.com', - linkedIn: 'https://www.linkedin.com/in/darrencnapier/', - campus: 'LA', - cohort: '31', - jobTitle: 'Jr. Frontend Developer', - industry: 'Government', - cities: [], - }, - { - company: 'TwoThirtySix Labs', - name: 'Tayvon Wright', - email: 'tayvonwright@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tayvon-wright/', - campus: 'NYC', - cohort: '10', - jobTitle: 'Backend Engineer', - industry: 'Crypto', - cities: [], - }, - { - company: 'Uber', - name: 'Michael Noah', - email: 'mnoah1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mnoah/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Software Engineer II', - industry: 'Transportation', - cities: [], - }, - { - company: 'UiPath', - name: 'Eric Rodgers', - email: 'ericerodgers@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/erodgers/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Software Engineer (SE1)', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Umbra', - name: 'Joey Friedman', - email: 'friedman.joey@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joseph-friedman-803803149/', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Software Engineer', - industry: 'Aerospace', - cities: [], - }, - { - company: 'Uncommon Schools', - name: 'Taryn A Cunha', - email: 'taryn.cunha@gmail.com', - linkedIn: 'LinkedIn.com/in/taryncunha', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Integrationโ€™s Developer', - industry: 'Other', - cities: [], - }, - { - company: 'Unify Consulting', - name: 'Gibran Haq', - email: 'gibran.haq57@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gibran-haq/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Senior Consultant', - industry: 'Consulting', - cities: [], - }, - { - company: 'Uniphore', - name: 'Vince Vu', - email: 'vince.hvu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vin-vu/', - campus: 'LA', - cohort: '42', - jobTitle: 'Full Stack Developer', - industry: 'Conversational Service Automation', - cities: [], - }, - { - company: 'Unit21', - name: 'Nicole Ip', - email: 'nicole@unit21.ai', - linkedIn: '', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer', - industry: 'AI / ML', - cities: [], - }, - { - company: 'United Airlines', - name: 'Jordan Jeter', - email: 'jeter.education@gmail.com', - linkedIn: 'linkedin.com/in/jordanrjeter', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Developer - IT', - industry: 'Aerospace', - cities: [], - }, - { - company: 'United Power', - name: 'Clifford Harvey', - email: 'cliffharvey06@gmail.com', - linkedIn: 'https://www.linkedin.com/in/clifford-harvey/', - campus: 'LA', - cohort: '16', - jobTitle: 'Sr Fullstack Developer', - industry: '', - cities: [], - }, - { - company: 'United States Cold Storage Inc', - name: 'Glen Kasoff', - email: 'glen.kasoff@gmail.com', - linkedIn: 'https://www.linkedin.com/in/glen-kasoff', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Software Developer ERP', - industry: 'Other', - cities: [], - }, - { - company: 'University of California', - name: 'Justin Wouters', - email: 'justinwouters@gmail.com', - linkedIn: 'Https://www.linkedin.com/in/justinwouters', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Junior application developer', - industry: 'Other', - cities: [], - }, - { - company: 'University of Chicago, Center for the Art of East Asia', - name: 'Greg Panciera', - email: 'gregpanciera@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gregpanciera', - campus: 'LA', - cohort: '36', - jobTitle: 'Web Developer', - industry: 'Art', - cities: [], - }, - { - company: 'Unqork', - name: 'Donald Blanc', - email: 'Donaldblanc1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/donald-b/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Senior Software Engineer', - industry: 'Tech', - cities: [], - }, - { - company: 'Unum ID', - name: 'Allison Roderiques', - email: 'aeroderiques@gmail.com', - linkedIn: 'https://www.linkedin.com/in/allison-roderiques/', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Full Stack Developer', - industry: 'Other', - cities: [], - }, - { - company: 'Uphold', - name: 'Chelsea Harris', - email: 'chelseaharris137@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chelseaharris23/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Frontend Engineer', - industry: 'Crypto', - cities: [], - }, - { - company: 'Upkeep', - name: 'Elie Baik', - email: 'semsemm810@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sae-min-baik', - campus: 'LA', - cohort: '34', - jobTitle: 'Software Engineer', - industry: 'CRM', - cities: [], - }, - { - company: 'UST', - name: 'Dhruv Thota', - email: 'dthota8@gmail.com', - linkedIn: 'https://linkedin.com/in/dhruv-thota', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Software Solutions/Developer Tools', - cities: [], - }, - { - company: 'VacationRenter', - name: 'Michele Moody', - email: 'moody.lillian@gmail.com', - linkedIn: 'https://www.linkedin.com/in/milmoody/', - campus: 'LA', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Travel', - cities: [], - }, - { - company: 'Valor Performance', - name: 'Marco Tulio Gonzalez', - email: 'marco.t.gonzalez15@gmail.com', - linkedIn: 'https://www.linkedin.com/in/marcogonzalez2015/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Senior Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'VanGo', - name: 'Nicolas Venegas', - email: 'nicolasvenegasparker@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nicolas-venegas-parker/', - campus: 'LA', - cohort: '30', - jobTitle: 'Mobile Software Engineer', - industry: 'Consumer / Transportation', - cities: [], - }, - { - company: 'Vanguard', - name: 'Ian Kila', - email: 'ian.nie.kila@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ian-kila', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Application Developer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Vanguard', - name: 'Carolina Bonitatis', - email: 'carolina@bonitat.is', - linkedIn: 'https://www.linkedin.com/in/carolina-bonitatis/', - campus: 'NYC / ECRI', - cohort: '42', - jobTitle: 'Application Developer', - industry: 'Other', - cities: [], - }, - { - company: 'Vantage Point Consulting, Inc.', - name: 'Constance Cho', - email: 'chcho87@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chcho2/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Full Stack Engineer', - industry: 'Consulting', - cities: [], - }, - { - company: 'Vaulted Oak', - name: 'Alfred Sta. Iglesia', - email: 'a.sta.iglesia@gmail.com', - linkedIn: 'https://www.linkedin.com/in/astaiglesia/', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer + Solutions Architect', - industry: 'E-Commerce', - cities: [], - }, - { - company: 'VedaPointe', - name: 'Michelle Chang', - email: 'michelle.kelly.chang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michellekchang/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Software Developer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Vercel', - name: 'Jueun Grace Yun', - email: 'graceyunn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gracejueunyun/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Gaming hardware', - cities: [], - }, - { - company: 'Verily Life Sciences', - name: 'Michael Geismar', - email: 'mikelafobe@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/michael-geismar/', - campus: 'FTRI', - cohort: '2', - jobTitle: 'Software Engineer', - industry: 'Life Sciences', - cities: [], - }, - { - company: 'Veritext', - name: 'Shawn Convery', - email: 'shawnmconvery@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shawnconvery1/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Software Engineer', - industry: 'Law', - cities: [], - }, - { - company: 'Veritext', - name: 'Storm Ross', - email: 'stormaross@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stormaross/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Backend Developer', - industry: 'Legal', - cities: [], - }, - { - company: 'Verizon Media Platform', - name: 'Leonard Kee', - email: 'leonardwkee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thiskeeword/', - campus: 'LA', - cohort: '4', - jobTitle: 'Software Development Engineer II', - industry: 'Media', - cities: [], - }, - { - company: 'Vertalo', - name: 'Phillip Bannister', - email: 'phillip.kbannister@Gmail.com', - linkedIn: 'https://www.linkedin.com/in/phillipkekoabannister/', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Verys', - name: 'Ray Yao', - email: 'rocaray51@gmail.com', - linkedIn: 'https://www.linkedin.com/in/raymondyao51/', - campus: 'LA', - cohort: '27', - jobTitle: 'Software Developer', - industry: 'Consulting/Contracting Agency', - cities: [], - }, - { - company: 'Verys', - name: 'Ted Min', - email: 'tedtaemin@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '41', - jobTitle: 'Senior Software Engineer', - industry: 'Consulting', - cities: [], - }, - { - company: 'View, Inc.', - name: 'Eric Lee', - email: 'emlee54@gmail.com', - linkedIn: 'https://www.linkedin.com/in/errc-lee/', - campus: 'LA', - cohort: '45', - jobTitle: 'Software Engineer, Front-End', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Violet', - name: 'Johanna Merluza', - email: 'johanna.merluza@gmail.com', - linkedIn: 'https://www.linkedin.com/in/johannamerluza/', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Senior Full Stack Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Virga Labs', - name: 'Vance McGrady', - email: 'vancemcgrady@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vancemcgrady/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Application Developer', - industry: 'Data Analytics', - cities: [], - }, - { - company: 'Virgin Hyperloop One', - name: 'Justin Fung', - email: 'justincaseyfung@gmail.com', - linkedIn: 'https://www.linkedin.com/in/citrusvanilla/', - campus: 'LA', - cohort: '30', - jobTitle: 'Front-End Developer', - industry: 'Transportation', - cities: [], - }, - { - company: 'Virgin Orbit', - name: 'Arkadiy Nigay', - email: 'ark234@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ark234', - campus: 'LA', - cohort: '23', - jobTitle: 'Full Stack Developer', - industry: 'Aerospace', - cities: [], - }, - { - company: 'Virgin Orbit', - name: 'Eric McCorkle', - email: 'ericm.mccorkle@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eric-mccorkle/', - campus: 'LA', - cohort: '48', - jobTitle: 'Full Stack Developer', - industry: 'Aerospace', - cities: [], - }, - { - company: 'Virtru', - name: 'Jake Van Vorhis', - email: 'vanvorhisjake@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jakedoublev/', - campus: 'PTRI', - cohort: '5', - jobTitle: 'Senior Full Stack Engineer', - industry: 'Security', - cities: [], - }, - { - company: 'Visa', - name: 'Bryan Mooyeong Lee', - email: 'mylee1995@gmail.com', - linkedIn: 'https://www.linkedin.com/bryanm-lee', - campus: 'NYC', - cohort: '12', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'VMware', - name: 'Maureen Onchiri', - email: 'onchirimaureen1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/maureenonchiri/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Software Engineer', - industry: 'Tech', - cities: [], - }, - { - company: 'Volta Charging', - name: 'Maximilian Gonzalez', - email: 'thamaxlg@gmail.com', - linkedIn: 'https://www.linkedin.com/in/maximiliangonzalez/', - campus: 'LA', - cohort: '29', - jobTitle: 'Full Stack Software Engineer, Cloud Platform', - industry: 'Transportation', - cities: [], - }, - { - company: 'VS Media Inc', - name: 'Patrick Hu', - email: 'patrickhu91@gmail.com', - linkedIn: 'https://www.LinkedIn.com/in/patrickhu91', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'JavaScript Developer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'VTS', - name: 'Andy Koh', - email: 'yk567@cornell.edu', - linkedIn: 'https://www.linkedin.com/in/andersonkoh/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Engineer, Platform', - industry: 'Commercial Real Estate', - cities: [], - }, - { - company: 'W.L. Gore & Associates', - name: 'Amir Marcel', - email: 'amirmarcel@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/amir-marcel', - campus: 'LA', - cohort: '39', - jobTitle: 'Backend Developer', - industry: 'Manufacturing', - cities: [], - }, - { - company: 'Wag Labs Inc', - name: 'William Adamowicz', - email: 'william.adamowicz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/williamadamowicz/', - campus: 'LA', - cohort: '24', - jobTitle: 'Software Engineer', - industry: 'Pet Care', - cities: [], - }, - { - company: 'Walgreens', - name: 'Ed Cho', - email: 'edcho720@gmail.com', - linkedIn: 'https://www.linkedin.com/in/edcho720/', - campus: 'FTRI / CTRI', - cohort: '12', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Walmart', - name: 'ChunHao Zheng', - email: 'chz062009@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chunhz/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Software Engineer II', - industry: 'Marketing', - cities: [], - }, - { - company: 'Walmart', - name: 'Eddy Kwon', - email: 'eddykwon0@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eddykwon/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Retail', - cities: [], - }, - { - company: 'Walmart - Store No. 8', - name: 'Starvon Washington', - email: 'staronejazz@yahoo.com', - linkedIn: '', - campus: 'LA', - cohort: '19', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Walmart Global Tech', - name: 'Tao Chen', - email: 'xtc2008@gmail.com', - linkedIn: 'https://www.linkedin.com/in/xtc2008', - campus: 'NYC', - cohort: '31', - jobTitle: 'Senior Software Engineer', - industry: 'Health and Wellness', - cities: [], - }, - { - company: 'Walmart Labs', - name: 'Brian Barr', - email: 'Brian.Barr23@gmail.com', - linkedIn: 'https://www.linkedin.com/in/barrbrian/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Senior Backend Engineer (Node)', - industry: 'FinTech (?)', - cities: [], - }, - { - company: 'Walmart Labs', - name: 'Stephanie Fong', - email: 'stfongg@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stephaniefong08/', - campus: 'LA', - cohort: '24', - jobTitle: 'Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Warby Parker', - name: 'Sanaya Mirpuri', - email: 'ssmirpuri@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sanayamirpuri/', - campus: 'NYC', - cohort: '22', - jobTitle: 'BackendSoftware Engineer II', - industry: 'Retail', - cities: [], - }, - { - company: 'Warner Bros Discovery', - name: 'Mark Shin (Shino)', - email: 'pe.markshin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/markshins/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Development Engineer II', - industry: 'Entertainment', - cities: [], - }, - { - company: 'WASH', - name: 'Kevin Park', - email: 'xkevinpark@gmail.com', - linkedIn: 'https://www.linkedin.com/in/xkevinpark/', - campus: 'LA', - cohort: '42', - jobTitle: 'Software UI Engineer', - industry: 'Electronics', - cities: [], - }, - { - company: 'Wash Laundry Systems', - name: 'Harmon Huynh', - email: 'harmon.huynh@outlook.com', - linkedIn: 'https://www.linkedin.com/in/harmon-huynh/', - campus: 'LA', - cohort: '26', - jobTitle: 'Senior Software Engineer', - industry: 'Consumer Services', - cities: [], - }, - { - company: 'Watsco', - name: 'Romelo Gilbert', - email: 'romelogilbert@gmail.com', - linkedIn: 'https://www.linkedin.com/in/romelo-gilbert', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'HVAC distributor', - cities: [], - }, - { - company: 'Wayfair', - name: 'Dylan Bergstrom', - email: 'contact.dylanbergstrom@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dylan-bergstrom', - campus: 'LA', - cohort: '23', - jobTitle: 'Software Engineer L1', - industry: 'E-Commerce', - cities: [], - }, - { - company: 'Wayfair', - name: 'Jay Cogen', - email: 'jaycog44@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jaycogen/', - campus: 'LA', - cohort: '26', - jobTitle: 'Software Engineer II', - industry: 'Fintech', - cities: [], - }, - { - company: 'Wayfair', - name: 'Bryan Lee', - email: 'mylee1995@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bryanm-lee/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Software Engineer Intern', - industry: 'E-Commerce', - cities: [], - }, - { - company: 'WayScript', - name: 'Bren Yamaguchi', - email: 'Yamaguchibren@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brenyamaguchi/', - campus: 'LA', - cohort: '36', - jobTitle: 'Front End Software Engineer', - industry: 'Developer Tools', - cities: [], - }, - { - company: 'WayUp', - name: 'Angela Scerbo', - email: 'amscerbo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/angelascerbo/', - campus: 'NYC', - cohort: '2', - jobTitle: 'Frontend Software Engineer', - industry: '', - cities: [], - }, - { - company: 'Weill Cornell Medicine', - name: 'Zoew McGrath', - email: 'Zoewmcgrath@outlook.com', - linkedIn: '', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Web Developer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'WELL Health', - name: 'Elise Bare', - email: 'elisebare@gmail.com', - linkedIn: 'https://www.linkedin.com/in/elisebare/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Engineer, Front End', - industry: 'Healtchare', - cities: [], - }, - { - company: 'Well Health', - name: 'Janis Hernandez', - email: 'Janis11546@gmail.com', - linkedIn: 'https://www.linkedin.com/in/janis-h/', - campus: 'LA', - cohort: '39', - jobTitle: 'Mid-level Frontend Engineer', - industry: 'Health', - cities: [], - }, - { - company: 'Well Health', - name: 'Jesus Vargas', - email: 'jmodestov@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jesusmvargas/', - campus: 'LA', - cohort: '38', - jobTitle: 'Frontend Software Engineer', - industry: 'Health Tech', - cities: [], - }, - { - company: 'Well Health', - name: 'Michael Wang', - email: 'michaelwawang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael--wang/', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer (Backend)', - industry: 'Health Tech', - cities: [], - }, - { - company: 'Well Health', - name: 'Eric Stallings', - email: 'stallings.eric@gmail.com', - linkedIn: 'https://www.linkedin.com/in/EricStallings/', - campus: 'LA', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: [], - }, - { - company: 'Wellio', - name: 'Rachel Park', - email: 'rachelpark.dev@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rachelparkdev/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Senior Software Engineer', - industry: 'Foodtech', - cities: [], - }, - { - company: 'Wells Fargo', - name: 'Taylor Davis', - email: 'Taylor.davis7@live.com', - linkedIn: 'https://www.linkedin.com/in/taylordavis7', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Western Psychological Services (WPS)', - name: 'Justin Stoddard', - email: 'jgstoddard@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jgstoddard/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Microservices Engineer', - industry: 'Health Tech', - cities: [], - }, - { - company: 'WeWork', - name: 'Maung Maung Lay (Raphael Ram)', - email: 'ramraphael@gmail.com', - linkedIn: 'https://www.linkedin.com/in/raphaelram/', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Real Estate / Hospitality', - cities: [], - }, - { - company: 'Whisper', - name: 'Kevin Mui', - email: 'kmui.work@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kevin-mui1/', - campus: 'LA', - cohort: '24', - jobTitle: 'Server Developer', - industry: '', - cities: [], - }, - { - company: 'William Hill', - name: 'Chris Flannery', - email: 'chriswillsflannery@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chriswillsflannery/', - campus: 'NYC', - cohort: '14', - jobTitle: 'Frontend Software Engineer', - industry: 'Sports/Entertainment', - cities: [], - }, - { - company: 'William Hill', - name: 'Matt Greenberg', - email: 'mattagreenberg1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mattagreenberg/', - campus: 'NYC', - cohort: '24', - jobTitle: 'front end software engineer', - industry: 'casino', - cities: [], - }, - { - company: 'Willow Servicing', - name: 'Ian Grepo', - email: 'iangrapeo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ian-grepo/', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Windfall Data', - name: 'Bruno Portela', - email: 'bportela@pm.me', - linkedIn: 'https://www.linkedin.com/in/bgp/', - campus: 'LA', - cohort: '42', - jobTitle: 'Senior Full Stack Engineer', - industry: 'Fintech, ML, AI', - cities: [], - }, - { - company: 'Windhover Labs', - name: 'Alex McPhail', - email: 'mcphail.alex@gmail.com', - linkedIn: 'www.linkedin.com/in/mcphail-alex', - campus: 'LA / WCRI', - cohort: '53', - jobTitle: 'Software Engineer', - industry: 'Aerospace', - cities: [], - }, - { - company: 'Wiselayer', - name: 'Eric Lemay', - email: 'ericrogerlemay@gmail.com', - linkedIn: '', - campus: 'NYC / ECRI', - cohort: '31', - jobTitle: 'Software Engineer', - industry: 'Business Analytics', - cities: [], - }, - { - company: 'Wiser Solutions', - name: 'Alex Hersler', - email: 'alex@alexhersler.com', - linkedIn: 'https://www.linkedin.com/in/alex-hersler/', - campus: 'LA / WCRI', - cohort: '48', - jobTitle: 'Software Engineer II', - industry: 'Data Analytics', - cities: [], - }, - { - company: 'Wix.com', - name: 'Kenny shen', - email: 'kenny.shen313@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '27', - jobTitle: 'Solutions Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Wizely Finance', - name: 'Erik Cox', - email: 'erikbcox@gmail.com', - linkedIn: 'https://www.linkedin.com/in/erikbcox/', - campus: 'LA', - cohort: '22', - jobTitle: 'Senior Full Stack Developer', - industry: '', - cities: [], - }, - { - company: 'WorkDay', - name: 'Tu Pham', - email: 'toopham@gmail.com', - linkedIn: 'https://www.linkedin.com/in/toopham/', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Development Engineer', - industry: 'FinTech, HR', - cities: [], - }, - { - company: 'WorkFusion', - name: 'Matt Meigs', - email: 'mattmeigs@gmail.com', - linkedIn: 'https://www.linkedin.com/in/matt-meigs/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Front-End Developer', - industry: 'Intelligent Automation', - cities: [], - }, - { - company: 'WorkRamp', - name: 'Lex Choi', - email: 'lexchoi3@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lexchoi3/', - campus: 'LA', - cohort: '40', - jobTitle: 'Internal Tools/Customer Support Engineer', - industry: 'SaaS', - cities: [], - }, - { - company: 'World Wide Technology', - name: 'Christopher Davis', - email: 'chdavis0917@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chris-davis0917', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'JavaScript Developer - Material Planning', - industry: 'IT Services', - cities: [], - }, - { - company: 'World Wide Technology', - name: 'Crystal Agoncillo', - email: 'crystal.agoncillo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/agoncillo/', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Full Stack Developer', - industry: 'IT Services', - cities: [], - }, - { - company: 'World Wide Technology', - name: 'Stephanie Page', - email: 'stephanieelainepage@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stephanie-page-atx/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Associate Developer', - industry: 'Consulting', - cities: [], - }, - { - company: 'World Wide Technology', - name: 'Brett Guidry', - email: 'guidry.brett@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brett-guidry504/', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Software Engineer', - industry: 'IT Services', - cities: [], - }, - { - company: 'WPROMOTE', - name: 'Nay Linn', - email: 'naylinn.pkv@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nay-linn/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer', - industry: 'Digital Marketing', - cities: [], - }, - { - company: 'WQA', - name: 'Victor Martins', - email: 'martinsvictor287@gmail.com', - linkedIn: 'https://www.linkedin.com/in/victormartinsfemi', - campus: 'LA / WCRI', - cohort: '59', - jobTitle: 'Software Develooper', - industry: 'Consulting', - cities: [], - }, - { - company: 'WW(formally Weight Watchers)', - name: 'Mika Todd', - email: 'mikataressatodd@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mika-todd', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer', - industry: 'Health and Wellness', - cities: [], - }, - { - company: 'Wyze', - name: 'Jason Victor', - email: 'jason.victor26@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '38', - jobTitle: 'Jr. Front End Engineer', - industry: 'IoT', - cities: [], - }, - { - company: 'Xandr', - name: 'Billy Hepfinger', - email: 'bhepfing@gmail.com', - linkedIn: 'https://www.linkedin.com/in/billy-hepfinger', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer II', - industry: 'Advertising / Telecom', - cities: [], - }, - { - company: 'Xandr', - name: 'Whit Rooke', - email: 'whit.rooke@gmail.com', - linkedIn: 'https://www.linkedin.com/in/whit-rooke/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Adtech', - cities: [], - }, - { - company: 'Xinova', - name: 'Clariz Mariano', - email: 'clariz.mariano@gmail.com', - linkedIn: 'https://www.linkedin.com/in/clarmariano/', - campus: 'LA', - cohort: '22', - jobTitle: 'Software Engineer 2', - industry: '', - cities: [], - }, - { - company: 'Xtivia', - name: 'Anthony Lo', - email: '87.anthonylo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/anthonyelo/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Jr. UI Developer', - industry: 'IT Services', - cities: [], - }, - { - company: 'Yahoo', - name: 'DeriAnte Sinclair', - email: 'deriante.sinclair@gmail.com', - linkedIn: 'https://www.linkedin.com/in/deriante-sinclair/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Software Apps Engineer I', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'Yahoo', - name: 'Tom Curtin', - email: 'thisistomcurtin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tfcurtin/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Yale New Haven Health', - name: 'Aileen Chan Miranda', - email: 'aileenchany@gmail.com', - linkedIn: 'https://www.linkedin.com/in/aileen-chanmiranda/', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Web Developer', - industry: 'Healthtech/Healthcare', - cities: [], - }, - { - company: 'Yext', - name: 'Allen Xie', - email: 'axie0320@gmail.com', - linkedIn: 'https://www.linkedin.com/in/axie0320/', - campus: 'PTRI', - cohort: '4', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: [], - }, - { - company: 'YMCA Retirement Fund', - name: 'Anna Konstantinovich', - email: 'anna@anreko.design', - linkedIn: 'https://www.linkedin.com/in/anna-konstantinovich/', - campus: 'NYC', - cohort: '15', - jobTitle: "UX Designer & Developer (It's complicated - let me know if you want more details)", - industry: 'Financial Services', - cities: [], - }, - { - company: 'Zeal', - name: 'Jason Lee', - email: 'jasonmlee1020@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jasonjml/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer II', - industry: 'Fintech', - cities: [], - }, - { - company: 'Zealthy', - name: 'Kennan Budnik', - email: 'kobudnik@gmail.com', - linkedIn: 'https://linkedin.com/in/kobudnik', - campus: 'NYOI', - cohort: '2', - jobTitle: 'Software Engineer II', - industry: 'Healthtech/Healthcare', - cities: [], - }, - { - company: 'ZenBusiness', - name: 'Adam Sheff', - email: 'adamisheff@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adam-sheff/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Software Engineer', - industry: 'Entrepreneurship', - cities: [], - }, - { - company: 'ZenBusiness', - name: 'Christie Herring', - email: 'clherring@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christie-herring/', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer II', - industry: 'SaaS, business creation services', - cities: [], - }, - { - company: 'Zenefits', - name: 'Tobey Forsman', - email: 'tobeyforsman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tobeyforsman/', - campus: 'LA', - cohort: '42', - jobTitle: 'Senior Software Engineer', - industry: 'Software/Tech', - cities: [], - }, - { - company: 'zephyrx', - name: 'Brian Haller', - email: 'brian@brianhaller.com', - linkedIn: 'https://www.linkedin.com/in/brianjhaller/', - campus: 'NYC', - cohort: '14', - jobTitle: 'Software Engineer', - industry: 'med tech', - cities: [], - }, - { - company: 'ZeroPW', - name: 'Tammy Tan', - email: 'tammytan1912@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tammytan1/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Frontend Engineer', - industry: 'Computer & Network Security', - cities: [], - }, - { - company: 'Zest AI', - name: 'Ronelle Caguioa', - email: 'ronelle.caguioa@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ronellecaguioa/', - campus: 'LA', - cohort: '36', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: [], - }, - { - company: 'Zeta Global', - name: 'Chris Tang', - email: 'chrisjtang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chrisjtang', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer', - industry: 'Data', - cities: [], - }, - { - company: 'Zillow', - name: 'Cary L Chan', - email: 'caryLchan@gmail.com', - linkedIn: 'https://www.linkedin.com/in/carylchan/', - campus: 'LA', - cohort: '35', - jobTitle: 'Full Stack Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Zillow', - name: 'Hien Nguyen', - email: 'hien.qqnguyen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hienqn/', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Engineer', - industry: 'Entertainment', - cities: [], - }, - { - company: 'Zillow Group', - name: 'Logan Thies', - email: 'logan.thies@icloud.com', - linkedIn: 'https://www.linkedin.com/in/loganthies137/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Development Engineer', - industry: 'Real Estate', - cities: [], - }, - { - company: 'Zip', - name: 'Chase Walters', - email: 'cwwalters@fastmail.com', - linkedIn: 'https://www.linkedin.com/in/charleswwalters/', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Founding Software Engineer', - industry: 'Security', - cities: [], - }, - { - company: 'Zipcar', - name: 'Sean Smith', - email: 'smith.seanm17@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sean-smith17/', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer (Front End)', - industry: 'Transportation', - cities: [], - }, - { - company: 'Zipdrug', - name: 'Tolga Mizrakci', - email: 'tolgamizrakci@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tolga-mizrakci/', - campus: 'NYC', - cohort: '10', - jobTitle: 'Senior Software Engineer', - industry: 'Health Care', - cities: [], - }, - { - company: 'ZipRecruiter', - name: 'Ryan Lee', - email: 'rynklee@gmail.com', - linkedIn: 'https://linkedin.com/in/rynklee', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer III', - industry: 'Other', - cities: [], - }, - { - company: 'Zoetis', - name: 'Eileen Cho', - email: 'eileenaracho@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eileenaracho/', - campus: 'LA / WCRI', - cohort: '56', - jobTitle: 'Data Systems Engineer', - industry: 'Other', - cities: [], - }, - { - company: 'Zogo Finance', - name: 'Derek Miller', - email: 'dsymiller@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dsymiller/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Full Stack Engineer', - industry: 'education, financial services, banking', - cities: [], - }, - { - company: 'Zoom Video Communications', - name: 'Jason Jones', - email: 'Jasonroyjones@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jasonroyjones', - campus: 'LA', - cohort: '33', - jobTitle: 'Software Development Engineer', - industry: 'Telecommunications', - cities: [], - }, - { - company: 'Zywave', - name: 'Jacob Davis', - email: 'jacob.drew.davis@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jacob-drew-davis/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Senior DevSecOps Engineer', - industry: 'Software / Tech', - cities: [], - }, -]; diff --git a/scripts/db/generateMockData/mockForums.ts b/scripts/db/generateMockData/mockForums.ts deleted file mode 100644 index 89d6e82c..00000000 --- a/scripts/db/generateMockData/mockForums.ts +++ /dev/null @@ -1,52 +0,0 @@ -export const mockForums = [ - { - title: 'Code Crunch & Job Hunt: Battle Logs', - description: - 'Share your epic (or tragic) tales from the job search battlefield. Did you bravely conquer the coding test, or did it conquer you?', - }, - { - title: 'Debugging My Resume', - description: - 'Need help squashing those pesky resume bugs? Post your CV here and let the community help you refactor it into a job offer magnet.', - }, - { - title: 'Interview Nightmares & Dream Jobs', - description: - 'Spill the beans on your worst interview disasters and celebrate those rare moments when it actually went well. Misery loves company, and so do success stories!', - }, - { - title: 'HR: Humans or Robots?', - description: - 'Ever wonder if that HR person was a cleverly disguised bot? Share your weirdest and most robotic interactions with hiring departments.', - }, - { - title: 'Salary Negotiation: The Boss Fight', - description: - 'Tips, tricks, and epic fails from the final boss battle of job hunting: salary negotiations. Did you get the loot or just a consolation prize?', - }, - { - title: 'Coding Challenge Gauntlet', - description: - 'Post and discuss the coding challenges that made you cry, laugh, or question your career choices. Help others survive the gauntlet!', - }, - { - title: 'Office Buzzwords & Bingo', - description: - 'Share and decipher the latest buzzwords and jargon from job postings and interviews. Bonus points for the most absurd phrases.', - }, - { - title: 'Side Projects & Procrastination', - description: - 'Brag about your side projects or confess how theyโ€™re really just elaborate ways to procrastinate. Either way, weโ€™re impressed!', - }, - { - title: 'LinkedIn Lamentations', - description: - "Rant and rave about the peculiarities of LinkedIn. Endorsements, random connection requests, and the mysterious 'we found your profile' emails.", - }, - { - title: 'Rejected & Dejected: Therapy Sessions', - description: - 'A safe space to vent about job rejections and support each other through the emotional rollercoaster of the job hunt. Cookies and virtual hugs provided.', - }, -]; diff --git a/scripts/db/generateMockData/mockGraduateInvitation.ts b/scripts/db/generateMockData/mockGraduateInvitation.ts deleted file mode 100644 index f18771ac..00000000 --- a/scripts/db/generateMockData/mockGraduateInvitation.ts +++ /dev/null @@ -1,902 +0,0 @@ -export const mockGradInvites = [ - { - email: 'acarradice0@gravatar.com', - token: '541658530c351ab19011dc5a1cc7f796eb9fd388', - tokenExpiry: '1714386955', - isRegistered: true, - firstName: 'Alonso', - lastName: 'Carradice', - registeredAt: '1677124950', - }, - { - email: 'wbleaden1@usgs.gov', - token: '8ce87b99dc305ef8272b2261a73539156a2a4b11', - tokenExpiry: '1703047259', - isRegistered: false, - firstName: 'Wilton', - lastName: 'Bleaden', - registeredAt: '1710588748', - }, - { - email: 'ghalso2@jalbum.net', - token: '19e7fd479b1310e00940ac610b6d3731699224b3', - tokenExpiry: '1708125337', - isRegistered: true, - firstName: 'Gannon', - lastName: 'Halso', - registeredAt: '1685884782', - }, - { - email: 'dgrinter3@amazon.com', - token: '15639748a71a12b6c5b2a9e715aca9ff092877ae', - tokenExpiry: '1719655502', - isRegistered: false, - firstName: 'Doralynn', - lastName: 'Grinter', - registeredAt: '1693987127', - }, - { - email: 'wweatherley4@phoca.cz', - token: 'bc2b71d4fbd3ed3de0a0022aa21bbed4f851c755', - tokenExpiry: '1699687351', - isRegistered: true, - firstName: 'Winn', - lastName: 'Weatherley', - registeredAt: '1710066414', - }, - { - email: 'hregis5@dailymail.co.uk', - token: '01aa9782932b7772770b0c4eae54787dea5f9638', - tokenExpiry: '1719748549', - isRegistered: true, - firstName: 'Hermon', - lastName: 'Regis', - registeredAt: '1694142909', - }, - { - email: 'crousby6@apache.org', - token: '22ce1f16d86aa9b601a6bd044d3bbc455b4f36e2', - tokenExpiry: '1721465604', - isRegistered: false, - firstName: 'Cordie', - lastName: 'Rousby', - registeredAt: '1682025913', - }, - { - email: 'mriseborough7@clickbank.net', - token: '3fad65274e7439c2c0a35200295c46977020885f', - tokenExpiry: '1706069183', - isRegistered: false, - firstName: 'Maureene', - lastName: 'Riseborough', - registeredAt: '1686092791', - }, - { - email: 'olawson8@washington.edu', - token: '39b226afbd4282124dd31b9dd3243cb7e0b1f596', - tokenExpiry: '1704307416', - isRegistered: false, - firstName: 'Orelle', - lastName: 'Lawson', - registeredAt: '1689333880', - }, - { - email: 'jemer9@constantcontact.com', - token: 'dbc7e41297546ad0d7a437abc4573ad5ac36dd2c', - tokenExpiry: '1710382524', - isRegistered: false, - firstName: 'Jess', - lastName: 'Emer', - registeredAt: '1688557374', - }, - { - email: 'mtubblesa@nifty.com', - token: 'a664d8ee7cd56a9ce2963eae874da9c65fcd2361', - tokenExpiry: '1719286527', - isRegistered: true, - firstName: 'Mariel', - lastName: 'Tubbles', - registeredAt: '1679623674', - }, - { - email: 'pkeightleyb@webnode.com', - token: '3c78dccda8c878bb7dea64431e5811b2a75af184', - tokenExpiry: '1714278643', - isRegistered: true, - firstName: 'Perice', - lastName: 'Keightley', - registeredAt: '1690276231', - }, - { - email: 'efalcusc@mapy.cz', - token: '184efd9e68dbe020111734f78303742a65c1fd15', - tokenExpiry: '1718471384', - isRegistered: false, - firstName: 'Eula', - lastName: 'Falcus', - registeredAt: '1708142836', - }, - { - email: 'jbaldinid@simplemachines.org', - token: '26f1e984850651b64779d36d31af27602c8e714b', - tokenExpiry: '1704480185', - isRegistered: true, - firstName: 'Jacqui', - lastName: 'Baldini', - registeredAt: '1692681038', - }, - { - email: 'snorthridgee@macromedia.com', - token: '801d95108e35ccce2fe3b290803de8637d65959e', - tokenExpiry: '1715200469', - isRegistered: true, - firstName: 'Scottie', - lastName: 'Northridge', - registeredAt: '1691263603', - }, - { - email: 'dhedgerf@shareasale.com', - token: 'd681aa42bf9f2371c60c05754a93fd1dc860fec8', - tokenExpiry: '1727580488', - isRegistered: false, - firstName: 'Dorie', - lastName: 'Hedger', - registeredAt: '1687226473', - }, - { - email: 'nskeeng@yellowbook.com', - token: 'fadb33e7532fdce703106043931f2a6f15f88bc3', - tokenExpiry: '1721509297', - isRegistered: false, - firstName: 'Nadia', - lastName: 'Skeen', - registeredAt: '1695484577', - }, - { - email: 'mgroomh@samsung.com', - token: '8df1430be1cc296c94155b06a79a1e24d12b16ad', - tokenExpiry: '1698531018', - isRegistered: true, - firstName: 'Mickie', - lastName: 'Groom', - registeredAt: '1691239049', - }, - { - email: 'lkupiszi@liveinternet.ru', - token: '1740f0be8a449176d15c33a65a5c3bc011cc0f07', - tokenExpiry: '1707223534', - isRegistered: true, - firstName: 'Leticia', - lastName: 'Kupisz', - registeredAt: '1683211294', - }, - { - email: 'bdeanj@mlb.com', - token: '7f27fa69908e6aa17e28f425de5fcc57f0eeedc0', - tokenExpiry: '1717798784', - isRegistered: false, - firstName: 'Babb', - lastName: 'Dean', - registeredAt: '1686342997', - }, - { - email: 'blilleyk@blogs.com', - token: '7fb8c075412d11bebc0ba1aeca86bb08393f136b', - tokenExpiry: '1721551606', - isRegistered: false, - firstName: 'Burtie', - lastName: 'Lilley', - registeredAt: '1679902087', - }, - { - email: 'dwoodlandl@dailymotion.com', - token: '774c9ed5bf04f259139e1c14b9446c818f83ec2a', - tokenExpiry: '1721916987', - isRegistered: true, - firstName: 'Dorelle', - lastName: 'Woodland', - registeredAt: '1717510004', - }, - { - email: 'bdunlapm@dropbox.com', - token: '0ddfcd5aee883c68ff7a7a704a406998d3b95a64', - tokenExpiry: '1697506453', - isRegistered: false, - firstName: 'Burk', - lastName: 'Dunlap', - registeredAt: '1680396642', - }, - { - email: 'cdarreln@newyorker.com', - token: '53488dd01c43dfa1d596c7964a4d2f534dc8ead5', - tokenExpiry: '1724607931', - isRegistered: false, - firstName: 'Cecilius', - lastName: 'Darrel', - registeredAt: '1706643899', - }, - { - email: 'bbudcocko@va.gov', - token: 'efb168a15a3096e53d12ae9f80569d8d557c4493', - tokenExpiry: '1701718041', - isRegistered: true, - firstName: 'Brod', - lastName: 'Budcock', - registeredAt: '1676443900', - }, - { - email: 'bthickinp@ibm.com', - token: '8e4af5f631de12544c44ed442d50aafb83204a44', - tokenExpiry: '1711888928', - isRegistered: false, - firstName: 'Bayard', - lastName: 'Thickin', - registeredAt: '1695590750', - }, - { - email: 'llarringtonq@sakura.ne.jp', - token: '9951ab34e301c226be2b63b1e3f6b61e7ca6f178', - tokenExpiry: '1706943537', - isRegistered: true, - firstName: 'Lorenza', - lastName: 'Larrington', - registeredAt: '1683278978', - }, - { - email: 'rstantonr@mashable.com', - token: 'e5cd7ddfdfb812f47184272328b5510c9d8887b9', - tokenExpiry: '1707981578', - isRegistered: true, - firstName: 'Ranna', - lastName: 'Stanton', - registeredAt: '1694102332', - }, - { - email: 'scowdroys@umich.edu', - token: '43315d4d9b75715104ee90104db03bf430b78fb1', - tokenExpiry: '1705880075', - isRegistered: false, - firstName: 'Silvan', - lastName: 'Cowdroy', - registeredAt: '1698398807', - }, - { - email: 'pskirlingt@4shared.com', - token: '85d7af1fdd70f8fd165a014e08b7a4b3963ac044', - tokenExpiry: '1716827794', - isRegistered: false, - firstName: 'Pepita', - lastName: 'Skirling', - registeredAt: '1703077019', - }, - { - email: 'bspensleyu@indiatimes.com', - token: '597d4be98c6ed3ab97f2301c6da3ee55d69033ed', - tokenExpiry: '1715899465', - isRegistered: true, - firstName: 'Brinna', - lastName: 'Spensley', - registeredAt: '1690415190', - }, - { - email: 'lblaisv@networksolutions.com', - token: 'b7502e54d2a16983c2ffab259798841eec4e8272', - tokenExpiry: '1705285133', - isRegistered: true, - firstName: 'Leta', - lastName: 'Blais', - registeredAt: '1704030885', - }, - { - email: 'olehuquetw@privacy.gov.au', - token: 'd368e4882e0e66e2c93020c54534bb56ff2d9d52', - tokenExpiry: '1721342625', - isRegistered: true, - firstName: 'Onfre', - lastName: 'Le Huquet', - registeredAt: '1700655434', - }, - { - email: 'cedworthiex@yelp.com', - token: '8cb9209121c6007c214e4d7bc010190ee2bdd22a', - tokenExpiry: '1701803096', - isRegistered: false, - firstName: 'Cairistiona', - lastName: 'Edworthie', - registeredAt: '1695427010', - }, - { - email: 'jchongy@cpanel.net', - token: '239edcea2ff7a2c73af428692f85be9b2ffab43f', - tokenExpiry: '1725107146', - isRegistered: true, - firstName: 'Jonas', - lastName: 'Chong', - registeredAt: '1700604074', - }, - { - email: 'emintoz@statcounter.com', - token: '4fdd3aae97ec4a7d44202cbfe5034517d0f00ebc', - tokenExpiry: '1720135279', - isRegistered: true, - firstName: 'Ezra', - lastName: 'Minto', - registeredAt: '1701904952', - }, - { - email: 'vlicari10@businessweek.com', - token: '752025d65cc509ae58038fa039654c7c5ccff278', - tokenExpiry: '1718335874', - isRegistered: false, - firstName: 'Virgina', - lastName: 'Licari', - registeredAt: '1708284774', - }, - { - email: 'rlambrick11@netscape.com', - token: '38e604f9dd47c6468ab3d4104d8dbc9f6968bfd8', - tokenExpiry: '1714756935', - isRegistered: true, - firstName: 'Rickert', - lastName: 'Lambrick', - registeredAt: '1678948854', - }, - { - email: 'jmadner12@boston.com', - token: '6f81c343c0ee4efec0c7d3359ec562dfdd26bdfd', - tokenExpiry: '1715296843', - isRegistered: true, - firstName: 'Jesselyn', - lastName: 'Madner', - registeredAt: '1685889400', - }, - { - email: 'ptest13@ovh.net', - token: '81d623ebdd75de31900eaeefd2f8f6d82e5de0f8', - tokenExpiry: '1708108205', - isRegistered: false, - firstName: 'Peirce', - lastName: 'Test', - registeredAt: '1678201051', - }, - { - email: 'swalcher14@hc360.com', - token: '824b906fd32c063d19ac0413a25ed88b366b400c', - tokenExpiry: '1706535307', - isRegistered: true, - firstName: 'Saraann', - lastName: 'Walcher', - registeredAt: '1710539027', - }, - { - email: 'gbank15@live.com', - token: '0e265dea03b6dd81279caee70688ffc3e4aac84d', - tokenExpiry: '1709350549', - isRegistered: true, - firstName: 'Giff', - lastName: 'Bank', - registeredAt: '1685242746', - }, - { - email: 'rallmen16@ask.com', - token: 'ed6593ece367f7a7dc24f97bd2f6f0842f14c0c4', - tokenExpiry: '1718707719', - isRegistered: false, - firstName: 'Ronny', - lastName: 'Allmen', - registeredAt: '1687899673', - }, - { - email: 'kyarrow17@fastcompany.com', - token: 'd7cf565a92803a64d2cee30653696e1d1a6378b9', - tokenExpiry: '1701602996', - isRegistered: true, - firstName: 'Kimmi', - lastName: 'Yarrow', - registeredAt: '1691124672', - }, - { - email: 'pshepard18@fc2.com', - token: '9210e18a7553812264f0de3dc1dfdfd149a98b78', - tokenExpiry: '1721087332', - isRegistered: false, - firstName: 'Portia', - lastName: 'Shepard', - registeredAt: '1672585642', - }, - { - email: 'egook19@yale.edu', - token: 'bb6e13b3f037f856d1bb9608fd0c621d6a2a91de', - tokenExpiry: '1720577150', - isRegistered: false, - firstName: 'Emlen', - lastName: 'Gook', - registeredAt: '1683775506', - }, - { - email: 'drocks1a@yandex.ru', - token: 'e8a818868eba93a6c8ec66475111de0443dc1bb9', - tokenExpiry: '1703012938', - isRegistered: false, - firstName: 'Debee', - lastName: 'Rocks', - registeredAt: '1706023454', - }, - { - email: 'vdhennin1b@webmd.com', - token: 'a38dcb44964ee25e8a6dec9154038d5d9938a87a', - tokenExpiry: '1699587212', - isRegistered: false, - firstName: 'Valina', - lastName: 'Dhennin', - registeredAt: '1681065096', - }, - { - email: 'dcheasman1c@123-reg.co.uk', - token: '94b64ff354e2f9fa7c8a037923bfa8b2dd866eeb', - tokenExpiry: '1697933422', - isRegistered: false, - firstName: 'Dwayne', - lastName: 'Cheasman', - registeredAt: '1683418150', - }, - { - email: 'ngladhill1d@bravesites.com', - token: 'd1e4e372f411f9b7078f2a40a97c922e29cc77d7', - tokenExpiry: '1718918519', - isRegistered: false, - firstName: 'Nellie', - lastName: 'Gladhill', - registeredAt: '1688963480', - }, - { - email: 'elivzey1e@yandex.ru', - token: '2b1e273101fd6f2762a922de2b5da38bcc106e0a', - tokenExpiry: '1709220017', - isRegistered: true, - firstName: 'Eziechiele', - lastName: 'Livzey', - registeredAt: '1681975403', - }, - { - email: 'smingasson1f@geocities.jp', - token: '11b06aee7ad84b24658444456a578d207869e512', - tokenExpiry: '1728292948', - isRegistered: true, - firstName: 'Sallyanne', - lastName: 'Mingasson', - registeredAt: '1683913073', - }, - { - email: 'hpattullo1g@cocolog-nifty.com', - token: 'f2006654fe52c91bb6953933346a297da119c8c5', - tokenExpiry: '1724940391', - isRegistered: true, - firstName: 'Heall', - lastName: 'Pattullo', - registeredAt: '1679673540', - }, - { - email: 'ascarlan1h@businessinsider.com', - token: '9cff46cacb3a30c7b3b3b54f277e0aab630d45c4', - tokenExpiry: '1721464700', - isRegistered: true, - firstName: 'Amaleta', - lastName: 'Scarlan', - registeredAt: '1712701940', - }, - { - email: 'zlawlance1i@gmpg.org', - token: 'bcb5ce7157e175a16358d596e508c2db76cfc1bc', - tokenExpiry: '1722208526', - isRegistered: true, - firstName: 'Zonda', - lastName: 'Lawlance', - registeredAt: '1701924480', - }, - { - email: 'lromney1j@independent.co.uk', - token: 'b85fe93921acfd5cf8d12b574dd3b47e4018e436', - tokenExpiry: '1713504543', - isRegistered: false, - firstName: 'Livvy', - lastName: 'Romney', - registeredAt: '1704174160', - }, - { - email: 'ballardyce1k@dell.com', - token: '0f8a9aac15a71fa742c39d3096542281589366b8', - tokenExpiry: '1718762499', - isRegistered: true, - firstName: 'Brockie', - lastName: 'Allardyce', - registeredAt: '1679041128', - }, - { - email: 'jatthowe1l@omniture.com', - token: 'aca52ba0413382dde47301aeadf43a363e9997ba', - tokenExpiry: '1698166033', - isRegistered: false, - firstName: 'Jaquelyn', - lastName: 'Atthowe', - registeredAt: '1707608705', - }, - { - email: 'bguerre1m@ftc.gov', - token: '7b1dd8462dbfad6cea9dad31f7261fef4ec8be95', - tokenExpiry: '1718130214', - isRegistered: true, - firstName: 'Barn', - lastName: 'Guerre', - registeredAt: '1716202221', - }, - { - email: 'cmillions1n@domainmarket.com', - token: '5f6819ad846a8ea3e0880dd7fd17c7e1e2b55d90', - tokenExpiry: '1706426083', - isRegistered: false, - firstName: 'Carina', - lastName: 'Millions', - registeredAt: '1698636752', - }, - { - email: 'mgrigorini1o@pinterest.com', - token: '355d05a947933941c88073a12e6787e4e3199b2d', - tokenExpiry: '1719008606', - isRegistered: true, - firstName: 'Micaela', - lastName: 'Grigorini', - registeredAt: '1674400482', - }, - { - email: 'fredwin1p@lulu.com', - token: 'dd3f9f8550968f560e0beddeeb22e6ed345b66f3', - tokenExpiry: '1720847163', - isRegistered: false, - firstName: 'Fran', - lastName: 'Redwin', - registeredAt: '1690182467', - }, - { - email: 'kfirmager1q@vistaprint.com', - token: 'dc439fab416b534d3f1691e2b5afa1cb67879d76', - tokenExpiry: '1709501604', - isRegistered: true, - firstName: 'Kalina', - lastName: 'Firmager', - registeredAt: '1696473707', - }, - { - email: 'lblyth1r@dion.ne.jp', - token: 'a10da796c88d8b7cf9fb78132bf8ec674f2ccf6e', - tokenExpiry: '1702709120', - isRegistered: true, - firstName: 'Lurline', - lastName: 'Blyth', - registeredAt: '1693114651', - }, - { - email: 'jstowte1s@pbs.org', - token: 'f1f937e0689f1bc5c2c2c586282f591e7f65d53b', - tokenExpiry: '1724992951', - isRegistered: true, - firstName: 'Julianne', - lastName: 'Stowte', - registeredAt: '1680965284', - }, - { - email: 'tpatrie1t@economist.com', - token: '650aaa0e6787da810abff83ac7745809a1cda53f', - tokenExpiry: '1718005232', - isRegistered: true, - firstName: 'Tierney', - lastName: 'Patrie', - registeredAt: '1702385719', - }, - { - email: 'gsherborne1u@ustream.tv', - token: '37cfac40e6796b28a9f5887a0f7ce0bfc8ac4ecb', - tokenExpiry: '1713943470', - isRegistered: false, - firstName: 'Gerladina', - lastName: 'Sherborne', - registeredAt: '1711728496', - }, - { - email: 'pfarress1v@amazonaws.com', - token: 'bf080b5bb70d6c0a44ce68a8ab8a88e042b19cc1', - tokenExpiry: '1711916219', - isRegistered: true, - firstName: 'Phil', - lastName: 'Farress', - registeredAt: '1693852128', - }, - { - email: 'eallsop1w@deviantart.com', - token: '1a5bea6e3a65ac46f6e21680ca0ba34f5e2122f2', - tokenExpiry: '1701094713', - isRegistered: false, - firstName: 'Elisha', - lastName: 'Allsop', - registeredAt: '1713801737', - }, - { - email: 'cskipton1x@4shared.com', - token: '45278d736abab31f911da7c843e62b524b65c4f4', - tokenExpiry: '1722876760', - isRegistered: false, - firstName: 'Carline', - lastName: 'Skipton', - registeredAt: '1702155150', - }, - { - email: 'mnorthridge1y@google.com.au', - token: '62f61c162c2ccffc5edcbdfdd02ec45cf1c39376', - tokenExpiry: '1706595173', - isRegistered: false, - firstName: 'Mia', - lastName: 'Northridge', - registeredAt: '1681630387', - }, - { - email: 'ifriedenbach1z@last.fm', - token: 'bd680ad939d973c3e0010ec7a2a2f1921fecc19d', - tokenExpiry: '1718623836', - isRegistered: true, - firstName: 'Isaiah', - lastName: 'Friedenbach', - registeredAt: '1702230245', - }, - { - email: 'tdulton20@sitemeter.com', - token: 'f2f3b6b7c83a606cf8cbef085140c25683e80a46', - tokenExpiry: '1725180112', - isRegistered: true, - firstName: 'Tallulah', - lastName: 'Dulton', - registeredAt: '1689429264', - }, - { - email: 'besherwood21@amazon.com', - token: 'c3beb14a7cd4e9fd4834cdf6594413ed971c01f3', - tokenExpiry: '1706079008', - isRegistered: false, - firstName: 'Bel', - lastName: 'Esherwood', - registeredAt: '1712417366', - }, - { - email: 'akiley22@cpanel.net', - token: 'd2b06ea8d9e4a572cee6d4e2681f67f00894ad56', - tokenExpiry: '1724941587', - isRegistered: true, - firstName: 'Anatol', - lastName: 'Kiley', - registeredAt: '1714539754', - }, - { - email: 'cmeth23@zimbio.com', - token: '8c4a90e9eb572a8dcfb306cc5c26d30387590e28', - tokenExpiry: '1727396000', - isRegistered: true, - firstName: 'Corabel', - lastName: 'Meth', - registeredAt: '1682784205', - }, - { - email: 'sterrill24@behance.net', - token: '03eddbc6485cdd42c8f5cac45e249f6cdb7400eb', - tokenExpiry: '1723586241', - isRegistered: false, - firstName: 'Shae', - lastName: 'Terrill', - registeredAt: '1687562944', - }, - { - email: 'dmahedy25@wix.com', - token: 'ce05349faa503dc55d9038773796038a7c8df560', - tokenExpiry: '1717922995', - isRegistered: false, - firstName: 'Dotty', - lastName: 'Mahedy', - registeredAt: '1703040599', - }, - { - email: 'sattiwill26@wsj.com', - token: 'a09c0f90af57af5b39b94cd83d208ffb25111ccb', - tokenExpiry: '1723749405', - isRegistered: false, - firstName: 'Salaidh', - lastName: 'Attiwill', - registeredAt: '1710531917', - }, - { - email: 'bbomb27@cmu.edu', - token: 'a196221355ed403ad250ccebf4b4019028b1de19', - tokenExpiry: '1716626869', - isRegistered: true, - firstName: 'Billi', - lastName: 'Bomb', - registeredAt: '1703618131', - }, - { - email: 'bbedells28@lycos.com', - token: '31d50e34784504d1ed2ba0fe979c98c64beaf408', - tokenExpiry: '1721657038', - isRegistered: true, - firstName: 'Burty', - lastName: 'Bedells', - registeredAt: '1703325382', - }, - { - email: 'dlemin29@nhs.uk', - token: 'b3f374ec819cae31abc03d8d4fd606182994b61c', - tokenExpiry: '1726394947', - isRegistered: false, - firstName: 'De', - lastName: 'Lemin', - registeredAt: '1712314981', - }, - { - email: 'mdraco2a@shinystat.com', - token: '106220c3f67863ec7b60efa5d818a9615f1f6ae8', - tokenExpiry: '1709423735', - isRegistered: true, - firstName: 'Morgen', - lastName: 'Draco', - registeredAt: '1683637999', - }, - { - email: 'ugrassin2b@ucoz.com', - token: '0bfe9f83752600b459f9299ef15aeff6e2403feb', - tokenExpiry: '1707725381', - isRegistered: true, - firstName: 'Urban', - lastName: 'Grassin', - registeredAt: '1710071474', - }, - { - email: 'aatto2c@va.gov', - token: 'd918b6a21507a3b203a595b174084d1bcbfd8643', - tokenExpiry: '1714845693', - isRegistered: false, - firstName: 'Archy', - lastName: 'Atto', - registeredAt: '1712043526', - }, - { - email: 'lmurfill2d@earthlink.net', - token: '1cfa1580520273a41a6101c1c40d9387a8240e15', - tokenExpiry: '1724471765', - isRegistered: true, - firstName: 'Lothaire', - lastName: 'Murfill', - registeredAt: '1704133684', - }, - { - email: 'aocrigan2e@ezinearticles.com', - token: '7c84c138aaea08c8478456fe062b6026922c6bb0', - tokenExpiry: '1723900980', - isRegistered: true, - firstName: 'Anne', - lastName: "O'Crigan", - registeredAt: '1676208159', - }, - { - email: 'nmeacher2f@barnesandnoble.com', - token: 'fe1032812102bf0930a52971a39da65b9d92be03', - tokenExpiry: '1711033160', - isRegistered: true, - firstName: 'Nisse', - lastName: 'Meacher', - registeredAt: '1681639572', - }, - { - email: 'dtraill2g@tamu.edu', - token: '356be8cf14a78b06cb741c6c1082a5b2639dc100', - tokenExpiry: '1722195575', - isRegistered: false, - firstName: 'Dix', - lastName: 'Traill', - registeredAt: '1688441678', - }, - { - email: 'vproske2h@newsvine.com', - token: '674dfc2ddb23a74b43373f5d42b23d29016408c2', - tokenExpiry: '1713842238', - isRegistered: false, - firstName: 'Verla', - lastName: 'Proske', - registeredAt: '1688943295', - }, - { - email: 'pdahmke2i@diigo.com', - token: 'd165ca490f364a0c81f1c3cf44f7bc5bd314c483', - tokenExpiry: '1712885460', - isRegistered: false, - firstName: 'Pennie', - lastName: 'Dahmke', - registeredAt: '1705568448', - }, - { - email: 'akilroy2j@elpais.com', - token: '651b1e2b34363ee9eaeb35d884cacce571bb20d3', - tokenExpiry: '1710647532', - isRegistered: true, - firstName: 'Anestassia', - lastName: 'Kilroy', - registeredAt: '1707162650', - }, - { - email: 'rvanelli2k@xing.com', - token: '362b7aeeb1b86eeeeb751f0feb30446f38b3551a', - tokenExpiry: '1700611810', - isRegistered: true, - firstName: 'Remus', - lastName: 'Vanelli', - registeredAt: '1688468428', - }, - { - email: 'gtarbert2l@discovery.com', - token: '47b989b8ef9a9640e1301246469e90468b0409b4', - tokenExpiry: '1728367924', - isRegistered: true, - firstName: 'Gil', - lastName: 'Tarbert', - registeredAt: '1685191965', - }, - { - email: 'ysmelley2m@twitpic.com', - token: 'd9a8b41e99f1fc724641283b275b61141086ecef', - tokenExpiry: '1712733227', - isRegistered: true, - firstName: 'Yulma', - lastName: 'Smelley', - registeredAt: '1715333795', - }, - { - email: 'tlongworth2n@engadget.com', - token: '5261c5b65c8539a3affa90614190fcedb77f1fac', - tokenExpiry: '1728250140', - isRegistered: false, - firstName: 'Timmy', - lastName: 'Longworth', - registeredAt: '1709278351', - }, - { - email: 'amollatt2o@printfriendly.com', - token: '4019b03e69e2362fbd1a10fce561eb60bdc16b99', - tokenExpiry: '1724376365', - isRegistered: true, - firstName: 'Arthur', - lastName: 'Mollatt', - registeredAt: '1708084127', - }, - { - email: 'gtaylor2p@nps.gov', - token: '16ce55d2ccf612dc3285cfdee894fb8064453a4b', - tokenExpiry: '1727617372', - isRegistered: false, - firstName: 'Griffin', - lastName: 'Taylor', - registeredAt: '1707031385', - }, - { - email: 'ostudholme2q@pcworld.com', - token: '9d62938833da712a578ade3e54cb627996a5464e', - tokenExpiry: '1702451012', - isRegistered: true, - firstName: 'Odelinda', - lastName: 'Studholme', - registeredAt: '1674695487', - }, - { - email: 'aduffill2r@nbcnews.com', - token: '8ccc9ddb9f92b0ee6848dd20ca7f3fab1d98fbb0', - tokenExpiry: '1707417687', - isRegistered: true, - firstName: 'Ardith', - lastName: 'Duffill', - registeredAt: '1693295088', - }, -]; diff --git a/scripts/db/generateMockData/mockUsers.ts b/scripts/db/generateMockData/mockUsers.ts deleted file mode 100644 index 062fbe23..00000000 --- a/scripts/db/generateMockData/mockUsers.ts +++ /dev/null @@ -1,710 +0,0 @@ -export const mockUsers = [ - { - firstName: 'Testy', - lastName: 'McTesterson', - email: 'tester@codehammers.com', - profilePic: - 'https://www.codesmith.io/hubfs/Screen%20Shot%202024-06-10%20at%2010.46.24%20AM.png', - password: 'ilovetesting', - }, - { - firstName: 'Corine', - lastName: 'Tugwell', - email: 'ctugwell0@ovh.net', - profilePic: 'http://dummyimage.com/81x80.png/ff4444/ffffff', - password: 'hS7)l<78y=<', - }, - { - firstName: 'Brody', - lastName: 'Cumpton', - email: 'bcumpton1@bluehost.com', - profilePic: 'http://dummyimage.com/65x89.png/cc0000/ffffff', - password: 'kK5n&Q+&kVAokJ|', - }, - { - firstName: 'Moselle', - lastName: 'Duro', - email: 'mduro2@technorati.com', - profilePic: 'http://dummyimage.com/56x64.png/dddddd/000000', - password: 'gT3zO>4OY/}xEx', - }, - { - firstName: 'Winifred', - lastName: 'Carnelley', - email: 'wcarnelley3@ucsd.edu', - profilePic: 'http://dummyimage.com/86x59.png/dddddd/000000', - password: 'lV3hO#UYz', - }, - { - firstName: 'Marchelle', - lastName: 'Truin', - email: 'mtruin4@stumbleupon.com', - profilePic: 'http://dummyimage.com/98x94.png/ff4444/ffffff', - password: 'iQ8WJ&8w', - }, - { - firstName: 'Cally', - lastName: 'Gisbey', - email: 'cgisbey5@squarespace.com', - profilePic: 'http://dummyimage.com/89x59.png/5fa2dd/ffffff', - password: 'lL1,t.S0?', - }, - { - firstName: 'Arlina', - lastName: 'Moodie', - email: 'amoodie6@twitpic.com', - profilePic: 'http://dummyimage.com/94x54.png/ff4444/ffffff', - password: 'vW1Pt3%mMJvF=N', - }, - { - firstName: 'Phineas', - lastName: 'Coon', - email: 'pcoon7@hc360.com', - profilePic: 'http://dummyimage.com/50x66.png/5fa2dd/ffffff', - password: 'uS5ak4~w+C|SwK', - }, - { - firstName: 'Shurlock', - lastName: 'Tytcomb', - email: 'stytcomb8@google.it', - profilePic: 'http://dummyimage.com/59x58.png/ff4444/ffffff', - password: 'rD89zUqWNy&$', - }, - { - firstName: 'Ermina', - lastName: 'Guyton', - email: 'eguyton9@blog.com', - profilePic: 'http://dummyimage.com/99x82.png/dddddd/000000', - password: 'lG6jF(1gALq>', - }, - { - firstName: 'Shelton', - lastName: 'Halwood', - email: 'shalwooda@sciencedirect.com', - profilePic: 'http://dummyimage.com/88x81.png/5fa2dd/ffffff', - password: "sR7)j9f9Gm'1", - }, - { - firstName: 'Nigel', - lastName: 'Clemenzo', - email: 'nclemenzob@fotki.com', - profilePic: 'http://dummyimage.com/83x88.png/ff4444/ffffff', - password: 'iN3a\\n@kHj', - }, - { - firstName: 'Colver', - lastName: 'Oswell', - email: 'coswellc@wsj.com', - profilePic: 'http://dummyimage.com/82x97.png/5fa2dd/ffffff', - password: 'tE7ZIe&c', - }, - { - firstName: 'Saundra', - lastName: 'Normabell', - email: 'snormabelld@businessinsider.com', - profilePic: 'http://dummyimage.com/53x70.png/dddddd/000000', - password: 'jI1$R?hjsaRrv', - }, - { - firstName: 'Grant', - lastName: 'Chasney', - email: 'gchasneye@mediafire.com', - profilePic: 'http://dummyimage.com/64x59.png/cc0000/ffffff', - password: 'iQ2)`lDH', - }, - { - firstName: 'Franni', - lastName: 'Chance', - email: 'fchancef@ted.com', - profilePic: 'http://dummyimage.com/90x79.png/5fa2dd/ffffff', - password: 'oC8g"0HA2I', - }, - { - firstName: 'Clarance', - lastName: 'Meecher', - email: 'cmeecherg@addthis.com', - profilePic: 'http://dummyimage.com/63x77.png/5fa2dd/ffffff', - password: 'kN1`Mpv*v/n', - }, - { - firstName: 'Katharine', - lastName: 'Lancett', - email: 'klancetth@sfgate.com', - profilePic: 'http://dummyimage.com/68x50.png/5fa2dd/ffffff', - password: 'kF2QZ&rxzu6x', - }, - { - firstName: 'Margaret', - lastName: 'Dubber', - email: 'mdubberi@dropbox.com', - profilePic: 'http://dummyimage.com/61x89.png/5fa2dd/ffffff', - password: 'mZ0A9Odl', - }, - { - firstName: 'Addy', - lastName: 'Fass', - email: 'afassj@vistaprint.com', - profilePic: 'http://dummyimage.com/97x55.png/cc0000/ffffff', - password: "rR7bD_E@'~'h(", - }, - { - firstName: 'Sollie', - lastName: 'Puckinghorne', - email: 'spuckinghornek@topsy.com', - profilePic: 'http://dummyimage.com/51x86.png/dddddd/000000', - password: 'iT2}TEh\\dfk?9r', - }, - { - firstName: 'Xena', - lastName: 'Tomczynski', - email: 'xtomczynskil@ted.com', - profilePic: 'http://dummyimage.com/67x71.png/dddddd/000000', - password: 'eR9=AQYI{T5h3F', - }, - { - firstName: 'Harmonie', - lastName: 'Karpinski', - email: 'hkarpinskim@g.co', - profilePic: 'http://dummyimage.com/91x80.png/dddddd/000000', - password: 'hG2"3rbpGY', - }, - { - firstName: 'Ulrick', - lastName: 'Blasing', - email: 'ublasingo@yahoo.com', - profilePic: 'http://dummyimage.com/74x73.png/cc0000/ffffff', - password: 'uV5HkA7nnpU/e', - }, - { - firstName: 'Cheri', - lastName: 'Danielsson', - email: 'cdanielssonp@example.com', - profilePic: 'http://dummyimage.com/84x95.png/5fa2dd/ffffff', - password: 'yZ8JP!Z|FI>CbV6o', - }, - { - firstName: 'Durand', - lastName: 'Joron', - email: 'djoronq@google.cn', - profilePic: 'http://dummyimage.com/70x59.png/dddddd/000000', - password: 'lJ9gDD.Q', - }, - { - firstName: 'Kristien', - lastName: 'Burgett', - email: 'kburgettr@kickstarter.com', - profilePic: 'http://dummyimage.com/79x50.png/cc0000/ffffff', - password: 'oX8Ie%HM>!', - }, - { - firstName: 'Kaia', - lastName: 'Fassmann', - email: 'kfassmanns@ted.com', - profilePic: 'http://dummyimage.com/61x77.png/ff4444/ffffff', - password: 'aQ6.2Kb1rhlFZ\\<1', - }, - { - firstName: 'Lockwood', - lastName: 'Moxham', - email: 'lmoxhamt@wikia.com', - profilePic: 'http://dummyimage.com/74x61.png/5fa2dd/ffffff', - password: 'aF0p=No%7AnwW,', - }, - { - firstName: 'Tessie', - lastName: 'Sugden', - email: 'tsugdenu@npr.org', - profilePic: 'http://dummyimage.com/88x52.png/5fa2dd/ffffff', - password: "kG7N$5'GNCnz@m", - }, - { - firstName: 'Rea', - lastName: 'Jeremiah', - email: 'rjeremiahv@wikispaces.com', - profilePic: 'http://dummyimage.com/74x59.png/dddddd/000000', - password: 'mF3l#F1fnm6', - }, - { - firstName: 'Cassie', - lastName: 'Meadows', - email: 'cmeadowsw@smugmug.com', - profilePic: 'http://dummyimage.com/79x100.png/dddddd/000000', - password: 'pJ3j_!cp9J+"7yS', - }, - { - firstName: 'Kelci', - lastName: 'Bastide', - email: 'kbastidex@latimes.com', - profilePic: 'http://dummyimage.com/68x97.png/dddddd/000000', - password: 'oH8.>l@JyRXgk', - }, - { - firstName: 'Eb', - lastName: 'Dargie', - email: 'edargie11@artisteer.com', - profilePic: 'http://dummyimage.com/54x99.png/cc0000/ffffff', - password: 'uI6v#OPe*&l?', - }, - { - firstName: 'Porter', - lastName: 'Paladini', - email: 'ppaladini12@deliciousdays.com', - profilePic: 'http://dummyimage.com/84x69.png/cc0000/ffffff', - password: "fR0'Op(Tizc4t,Y", - }, - { - firstName: 'Dian', - lastName: 'Dackombe', - email: 'ddackombe13@ihg.com', - profilePic: 'http://dummyimage.com/78x92.png/dddddd/000000', - password: 'iH8I.hC2=/', - }, - { - firstName: 'Freedman', - lastName: 'Scrafton', - email: 'fscrafton14@posterous.com', - profilePic: 'http://dummyimage.com/75x96.png/5fa2dd/ffffff', - password: 'cU0QGkw,=zbtR6', - }, - { - firstName: 'Tabbitha', - lastName: 'Jolliffe', - email: 'tjolliffe15@bbb.org', - profilePic: 'http://dummyimage.com/92x95.png/cc0000/ffffff', - password: 'lZ6K{2G7N3MbQG>6', - }, - { - firstName: 'Maegan', - lastName: 'Mulhall', - email: 'mmulhall1h@wikipedia.org', - profilePic: 'http://dummyimage.com/71x69.png/ff4444/ffffff', - password: 'bS3XK@RoF', - }, - { - firstName: 'Nicolai', - lastName: 'Brugsma', - email: 'nbrugsma1i@4shared.com', - profilePic: 'http://dummyimage.com/64x73.png/ff4444/ffffff', - password: 'gM7Kyoc3Kr$)u', - }, - { - firstName: 'Bryan', - lastName: 'Heffy', - email: 'bheffy1j@cbsnews.com', - profilePic: 'http://dummyimage.com/56x86.png/dddddd/000000', - password: 'jN2nvH7E', - }, - { - firstName: 'Donavon', - lastName: 'Osichev', - email: 'dosichev1k@pinterest.com', - profilePic: 'http://dummyimage.com/98x87.png/dddddd/000000', - password: 'xP5,Ej)=W', - }, - { - firstName: 'Kennan', - lastName: 'Dugget', - email: 'kdugget1l@opensource.org', - profilePic: 'http://dummyimage.com/53x69.png/5fa2dd/ffffff', - password: "oX6'}CX7M(ru", - }, - { - firstName: 'Paton', - lastName: 'Climance', - email: 'pclimance1m@webnode.com', - profilePic: 'http://dummyimage.com/90x80.png/5fa2dd/ffffff', - password: 'dX4c77r*lWEdiOe"', - }, - { - firstName: 'Caitrin', - lastName: 'McAllister', - email: 'cmcallister1n@ft.com', - profilePic: 'http://dummyimage.com/96x52.png/dddddd/000000', - password: 'yV9uq&NEg}2qy', - }, - { - firstName: 'Sephira', - lastName: 'Kaming', - email: 'skaming1o@about.me', - profilePic: 'http://dummyimage.com/59x77.png/dddddd/000000', - password: 'nF5VA!S1pfb', - }, - { - firstName: 'Fraser', - lastName: 'Londsdale', - email: 'flondsdale1p@freewebs.com', - profilePic: 'http://dummyimage.com/52x60.png/5fa2dd/ffffff', - password: 'mW5v9$F~rg', - }, - { - firstName: 'Alyssa', - lastName: 'Bangham', - email: 'abangham1q@usgs.gov', - profilePic: 'http://dummyimage.com/65x88.png/ff4444/ffffff', - password: 'qG2ImKA6ErG?yZu', - }, - { - firstName: 'Clarette', - lastName: 'Alcock', - email: 'calcock1r@amazonaws.com', - profilePic: 'http://dummyimage.com/60x70.png/ff4444/ffffff', - password: 'kZ3)0SB$7E"fbU', - }, - { - firstName: 'Lizbeth', - lastName: 'France', - email: 'lfrance1s@yahoo.com', - profilePic: 'http://dummyimage.com/100x97.png/dddddd/000000', - password: 'oG215|(L_eX9', - }, - { - firstName: 'Abramo', - lastName: 'Sparkwell', - email: 'asparkwell1t@berkeley.edu', - profilePic: 'http://dummyimage.com/60x53.png/5fa2dd/ffffff', - password: 'eJ9??*5OBunZ', - }, - { - firstName: 'Darb', - lastName: 'Coen', - email: 'dcoen1u@prlog.org', - profilePic: 'http://dummyimage.com/75x57.png/ff4444/ffffff', - password: 'rK6)~Nb0Oe|)I', - }, - { - firstName: 'Gusty', - lastName: 'Besnardeau', - email: 'gbesnardeau1v@themeforest.net', - profilePic: 'http://dummyimage.com/56x89.png/cc0000/ffffff', - password: 'pJ9NPG3,3', - }, - { - firstName: 'Randy', - lastName: 'Verriour', - email: 'rverriour1w@ebay.co.uk', - profilePic: 'http://dummyimage.com/59x94.png/cc0000/ffffff', - password: 'oX9BbBqib/(F5JU', - }, - { - firstName: 'Israel', - lastName: 'Canti', - email: 'icanti1x@businesswire.com', - profilePic: 'http://dummyimage.com/92x98.png/cc0000/ffffff', - password: 'xS5vY5w1dh?', - }, - { - firstName: 'Micky', - lastName: 'Dunseath', - email: 'mdunseath1y@miibeian.gov.cn', - profilePic: 'http://dummyimage.com/60x55.png/cc0000/ffffff', - password: 'dO5Wj', - }, - { - firstName: 'Englebert', - lastName: 'Bancroft', - email: 'ebancroft2f@ow.ly', - profilePic: 'http://dummyimage.com/98x64.png/ff4444/ffffff', - password: 'gM7PXInh', - }, - { - firstName: 'Siegfried', - lastName: 'Castillou', - email: 'scastillou2g@reddit.com', - profilePic: 'http://dummyimage.com/67x80.png/dddddd/000000', - password: 'mH8c?!MFz?RdD', - }, - { - firstName: 'Marvin', - lastName: 'Cranke', - email: 'mcranke2h@marketwatch.com', - profilePic: 'http://dummyimage.com/85x78.png/cc0000/ffffff', - password: 'fJ7+Isb+zX', - }, - { - firstName: 'Arne', - lastName: 'Rummin', - email: 'arummin2i@is.gd', - profilePic: 'http://dummyimage.com/61x99.png/cc0000/ffffff', - password: "rB8C0.h'E982*/yJ", - }, - { - firstName: 'Seumas', - lastName: 'Feldberger', - email: 'sfeldberger2j@ning.com', - profilePic: 'http://dummyimage.com/99x53.png/cc0000/ffffff', - password: 'nI8#fF1Mm', - }, - { - firstName: 'Hilda', - lastName: 'Worham', - email: 'hworham2k@mail.ru', - profilePic: 'http://dummyimage.com/94x81.png/cc0000/ffffff', - password: 'sV8IcZGzjjUSVBg3', - }, - { - firstName: 'Winny', - lastName: "O'Glessane", - email: 'woglessane2l@deviantart.com', - profilePic: 'http://dummyimage.com/95x87.png/5fa2dd/ffffff', - password: 'eJ5ii6IW', - }, - { - firstName: 'Gwenora', - lastName: 'Agge', - email: 'gagge2m@unesco.org', - profilePic: 'http://dummyimage.com/92x65.png/ff4444/ffffff', - password: 'zI9%g#hWe\\J$9', - }, - { - firstName: 'Piggy', - lastName: 'Torrisi', - email: 'ptorrisi2n@goodreads.com', - profilePic: 'http://dummyimage.com/100x59.png/cc0000/ffffff', - password: 'pZ3P88!wL>"@_(sW', - }, - { - firstName: 'Niki', - lastName: 'Glaysher', - email: 'nglaysher2o@kickstarter.com', - profilePic: 'http://dummyimage.com/86x55.png/dddddd/000000', - password: 'mW8v_YH{/5', - }, - { - firstName: 'Pail', - lastName: 'Vasechkin', - email: 'pvasechkin2p@vk.com', - profilePic: 'http://dummyimage.com/87x64.png/dddddd/000000', - password: 'sS1wV#HRAIcm}', - }, - { - firstName: 'Gav', - lastName: 'Renneke', - email: 'grenneke2q@hp.com', - profilePic: 'http://dummyimage.com/80x79.png/cc0000/ffffff', - password: 'oZ8Q$*gQuM.Fi\\l@', - }, - { - firstName: 'Perle', - lastName: 'Rizziello', - email: 'prizziello2r@mashable.com', - profilePic: 'http://dummyimage.com/50x68.png/dddddd/000000', - password: 'gD99+!Oo>T\\VA', - }, -]; diff --git a/scripts/db/generateMockData/options.ts b/scripts/db/generateMockData/options.ts deleted file mode 100644 index 7830a33e..00000000 --- a/scripts/db/generateMockData/options.ts +++ /dev/null @@ -1,1285 +0,0 @@ -export const profilePicOptions = [ - 'https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg', - 'https://www.codesmith.io/hubfs/Gabriela%20%20Small.png', - 'https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png', - 'https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827', - 'https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720', - 'https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg', - 'https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4', - 'https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png', - 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', - 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', - 'https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg', -]; - -export const cohorts = ['LA', 'NYC', 'ECRI', 'PTRI', 'WCRI', 'FTRI', 'CTRI']; - -export const cohortNumRange = 100; - -export const jobTitleOptions = [ - 'Software Engineer', - 'Senior Software Engineer', - 'Lead Software Engineer', - 'Principal Software Engineer', - 'Junior Software Engineer', - 'Software Developer', - 'Backend Developer', - 'Frontend Developer', - 'Full Stack Developer', - 'DevOps Engineer', - 'Site Reliability Engineer', - 'Mobile Developer', - 'iOS Developer', - 'Android Developer', - 'Web Developer', - 'Embedded Systems Engineer', - 'Data Engineer', - 'Machine Learning Engineer', - 'AI Engineer', - 'Data Scientist', - 'Cloud Engineer', - 'Security Engineer', - 'QA Engineer', - 'Automation Engineer', - 'Test Engineer', - 'Software Architect', - 'Technical Lead', - 'Engineering Manager', - 'Technical Program Manager', - 'Product Manager', -]; - -export const companyOptions = [ - 'Google', - 'Apple', - 'Microsoft', - 'Amazon', - 'Facebook', - 'Twitter', - 'Tesla', - 'Netflix', - 'Adobe', - 'Intel', - 'NVIDIA', - 'Oracle', - 'IBM', - 'Salesforce', - 'Cisco', - 'Uber', - 'Airbnb', - 'Lyft', - 'Spotify', - 'Snapchat', - 'Dropbox', - 'PayPal', - 'Square', - 'Shopify', - 'Zoom', - 'Slack', - 'Red Hat', - 'Atlassian', - 'GitHub', - 'LinkedIn', - 'Pinterest', - 'Stripe', - 'Twilio', - 'Asana', - 'Qualcomm', - 'VMware', - 'Palantir', - 'Coinbase', - 'Robinhood', - 'Snowflake', - 'ServiceNow', - 'Workday', - 'DocuSign', - 'Okta', - 'Datadog', - 'HubSpot', - 'DoorDash', - 'Epic Games', - 'EA (Electronic Arts)', - 'Activision Blizzard', -]; - -export const skillOptions = [ - 'JavaScript', - 'Python', - 'Java', - 'C++', - 'C#', - 'Ruby', - 'HTML', - 'CSS', - 'SQL', - 'NoSQL', - 'Git', - 'Agile Development', - 'Scrum', - 'RESTful APIs', - 'GraphQL', - 'Docker', - 'Kubernetes', - 'CI/CD', - 'AWS', - 'Azure', - 'Google Cloud Platform', - 'Machine Learning', - 'Deep Learning', - 'Data Science', - 'Big Data', - 'Microservices', - 'Serverless Architecture', - 'Mobile Development', - 'iOS Development', - 'Android Development', - 'React', - 'Angular', - 'Vue.js', - 'Node.js', - 'Django', - 'Flask', - 'Spring Boot', - 'Laravel', - 'ASP.NET', - 'Blockchain', - 'Cybersecurity', - 'Unit Testing', - 'Integration Testing', - 'System Design', - 'Database Design', - 'Software Architecture', - 'Performance Optimization', - 'DevOps', - 'Continuous Deployment', - 'TDD (Test-Driven Development)', - 'BDD (Behavior-Driven Development)', - 'Graph Databases', - 'WebSockets', - 'Event-Driven Architecture', - 'Functional Programming', - 'Object-Oriented Programming', - 'SaaS (Software as a Service)', - 'PaaS (Platform as a Service)', - 'FaaS (Function as a Service)', - 'User Experience (UX) Design', - 'User Interface (UI) Design', - 'Version Control', - 'Automated Testing', - 'Code Review', - 'Pair Programming', - 'Cloud Computing', - 'Containerization', - 'Infrastructure as Code', - 'API Development', - 'API Integration', - 'ETL (Extract, Transform, Load)', - 'Data Warehousing', - 'Data Visualization', - 'Natural Language Processing', - 'Robotic Process Automation', - 'Edge Computing', - 'IoT (Internet of Things)', - 'AR/VR (Augmented/Virtual Reality)', - 'Quantum Computing', - 'Reactive Programming', - 'Concurrency', - 'Parallel Computing', - 'Graph Theory', - 'Algorithm Design', - 'Design Patterns', - 'Refactoring', - 'Legacy Code Management', - 'Technical Writing', - 'Project Management', - 'Communication Skills', - 'Problem-Solving', - 'Critical Thinking', - 'Time Management', - 'Collaboration', - 'Leadership', -]; - -export const collegeOptions = [ - 'Harvard University', - 'Stanford University', - 'Massachusetts Institute of Technology (MIT)', - 'California Institute of Technology (Caltech)', - 'University of California, Berkeley', - 'University of Oxford', - 'University of Cambridge', - 'Princeton University', - 'Columbia University', - 'University of Chicago', - 'Yale University', - 'University of Pennsylvania', - 'University of California, Los Angeles (UCLA)', - 'Johns Hopkins University', - 'University of Southern California', - 'Duke University', - 'Cornell University', - 'Northwestern University', - 'University of Michigan', - 'New York University (NYU)', - 'Carnegie Mellon University', - 'University of Toronto', - 'University of Washington', - 'University College London (UCL)', - 'Imperial College London', - 'London School of Economics and Political Science (LSE)', - 'University of Edinburgh', - 'University of British Columbia', - 'University of Texas at Austin', - 'Georgia Institute of Technology', - 'University of Melbourne', - 'University of Sydney', - 'Australian National University', - 'University of Queensland', - 'University of New South Wales (UNSW Sydney)', - 'McGill University', - 'University of Montreal', - 'University of Alberta', - 'ETH Zurich - Swiss Federal Institute of Technology', - 'EPFL - ร‰cole Polytechnique Fรฉdรฉrale de Lausanne', - 'University of Tokyo', - 'Kyoto University', - 'Seoul National University', - 'National University of Singapore (NUS)', - 'Nanyang Technological University (NTU)', - 'Peking University', - 'Tsinghua University', - 'Fudan University', - 'Shanghai Jiao Tong University', - 'Hong Kong University of Science and Technology (HKUST)', - 'University of Hong Kong (HKU)', - 'Chinese University of Hong Kong (CUHK)', - 'University of California, San Diego (UCSD)', - 'University of California, Santa Barbara (UCSB)', - 'University of Illinois at Urbana-Champaign', - 'University of Wisconsin-Madison', - 'University of Minnesota', - 'University of Florida', - 'University of Maryland, College Park', - 'Ohio State University', - 'Pennsylvania State University', - 'University of North Carolina at Chapel Hill', - 'Purdue University', - 'University of Virginia', - 'Vanderbilt University', - 'Rice University', - 'Emory University', - 'Washington University in St. Louis', - 'Brown University', - 'University of Notre Dame', - 'Georgetown University', - 'Boston University', - 'University of Miami', - 'University of Rochester', - 'Case Western Reserve University', - 'University of Colorado Boulder', - 'University of Utah', - 'University of Arizona', - 'University of Iowa', - 'Indiana University Bloomington', - 'Michigan State University', - 'Rutgers University', - 'University of Pittsburgh', - 'University of Delaware', - 'University of Connecticut', - 'University of Kansas', - 'University of Oregon', - 'University of Tennessee', - 'University of South Carolina', - 'Clemson University', - 'University of Oklahoma', - 'University of Kentucky', - 'University of Nebraska-Lincoln', - 'University of Houston', - 'University of Georgia', - 'University of Missouri', - 'University of Massachusetts Amherst', - 'University of Vermont', - 'Syracuse University', - 'Brigham Young University', -]; - -export const degreeOptions = [ - 'High School Diploma', - 'Associate Degree', - "Bachelor's Degree", - 'Bachelor of Arts (BA)', - 'Bachelor of Science (BS)', - 'Bachelor of Fine Arts (BFA)', - 'Bachelor of Business Administration (BBA)', - 'Bachelor of Engineering (BE)', - 'Bachelor of Technology (BTech)', - "Master's Degree", - 'Master of Arts (MA)', - 'Master of Science (MS)', - 'Master of Business Administration (MBA)', - 'Master of Fine Arts (MFA)', - 'Master of Engineering (ME)', - 'Master of Technology (MTech)', - 'Master of Public Administration (MPA)', - 'Master of Public Health (MPH)', - 'Master of Social Work (MSW)', - 'Master of Education (MEd)', - 'Doctoral Degree', - 'Doctor of Philosophy (PhD)', - 'Doctor of Education (EdD)', - 'Doctor of Business Administration (DBA)', - 'Doctor of Medicine (MD)', - 'Doctor of Dental Surgery (DDS)', - 'Doctor of Dental Medicine (DMD)', - 'Doctor of Veterinary Medicine (DVM)', - 'Juris Doctor (JD)', - 'Doctor of Pharmacy (PharmD)', - 'Professional Degree', - 'Postdoctoral Research', - 'Certificate Program', - 'Diploma Program', - 'Trade School Certification', - 'Technical School Certification', - 'Continuing Education', - 'Professional Development', - 'Executive Education', -]; - -export const fieldOfStudyOptions = [ - 'Computer Science', - 'Electrical Engineering', - 'Mechanical Engineering', - 'Civil Engineering', - 'Chemical Engineering', - 'Biomedical Engineering', - 'Aerospace Engineering', - 'Environmental Engineering', - 'Information Technology', - 'Data Science', - 'Physics', - 'Mathematics', - 'Statistics', - 'Chemistry', - 'Biology', - 'Biochemistry', - 'Psychology', - 'Sociology', - 'Anthropology', - 'Political Science', - 'Economics', - 'Finance', - 'Business Administration', - 'Marketing', - 'Accounting', - 'Management', - 'International Relations', - 'History', - 'Philosophy', - 'English Literature', - 'Linguistics', - 'Journalism', - 'Communication Studies', - 'Education', - 'Law', - 'Public Health', - 'Nursing', - 'Medicine', - 'Dentistry', - 'Pharmacy', - 'Veterinary Medicine', - 'Architecture', - 'Urban Planning', - 'Fine Arts', - 'Music', - 'Theater', - 'Film Studies', - 'Graphic Design', - 'Interior Design', -]; - -export const projectOptions = [ - { - name: 'CodeBot', - description: 'Automated code generation tool using AI for faster development cycles.', - link: 'https://github.com/username/codebot', - }, - { - name: 'DataCrunch', - description: 'Real-time data analytics platform for extracting insights from big data.', - link: 'https://github.com/username/datacrunch', - }, - { - name: 'CloudGuard', - description: 'Advanced cloud security suite ensuring data protection and compliance.', - link: 'https://github.com/username/cloudguard', - }, - { - name: 'RoboVision', - description: 'AI-powered computer vision system for object detection and recognition.', - link: 'https://github.com/username/robovision', - }, - { - name: 'CryptoTrack', - description: 'Blockchain-based cryptocurrency portfolio tracker for investors.', - link: 'https://github.com/username/cryptotrack', - }, - { - name: 'SmartHomeHub', - description: 'Centralized home automation system integrating IoT devices for smart living.', - link: 'https://github.com/username/smarthomehub', - }, - { - name: 'HealthLink', - description: 'Telemedicine platform connecting patients with healthcare providers remotely.', - link: 'https://github.com/username/healthlink', - }, - { - name: 'AugmentWorks', - description: 'Augmented reality application for enhancing workplace productivity and training.', - link: 'https://github.com/username/augmentworks', - }, - { - name: 'GenomeQuest', - description: 'Genomic data analysis tool for researchers and bioinformaticians.', - link: 'https://github.com/username/genomequest', - }, - { - name: 'NetPlanner', - description: - 'Network infrastructure planning software for optimizing bandwidth and efficiency.', - link: 'https://github.com/username/netplanner', - }, - { - name: 'VoiceAssistant', - description: 'Voice-controlled personal assistant using natural language processing.', - link: 'https://github.com/username/voiceassistant', - }, - { - name: 'EcoTech', - description: 'Environmental monitoring and conservation app with real-time data visualization.', - link: 'https://github.com/username/ecotech', - }, - { - name: 'SecureChat', - description: 'End-to-end encrypted messaging app ensuring user privacy and security.', - link: 'https://github.com/username/securechat', - }, - { - name: 'VirtualTour', - description: 'Virtual reality tour application for immersive travel experiences.', - link: 'https://github.com/username/virtualtour', - }, - { - name: 'CodeAnalyzer', - description: 'Static code analysis tool for detecting bugs and code quality improvements.', - link: 'https://github.com/username/codeanalyzer', - }, - { - name: 'SmartInventory', - description: 'Inventory management system with RFID and IoT integration for tracking assets.', - link: 'https://github.com/username/smartinventory', - }, - { - name: 'LearnHub', - description: - 'Online learning platform offering courses on various subjects with interactive content.', - link: 'https://github.com/username/learnhub', - }, - { - name: 'HealthMonitor', - description: - 'Personal health monitoring app with AI-driven analytics and wearable device integration.', - link: 'https://github.com/username/healthmonitor', - }, - { - name: 'JobFinder', - description: - 'Job search and application management platform with personalized recommendations.', - link: 'https://github.com/username/jobfinder', - }, - { - name: 'SmartGrid', - description: 'Smart grid technology for efficient energy distribution and consumption.', - link: 'https://github.com/username/smartgrid', - }, - { - name: 'RoboTrader', - description: 'Algorithmic trading platform for automated stock market analysis and trading.', - link: 'https://github.com/username/robotrader', - }, - { - name: 'SocialConnect', - description: 'Social media integration platform for managing multiple social accounts.', - link: 'https://github.com/username/socialconnect', - }, - { - name: 'TourismApp', - description: - 'Mobile application for tourists providing travel guides and local recommendations.', - link: 'https://github.com/username/tourismapp', - }, - { - name: 'SmartMirror', - description: - 'Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.', - link: 'https://github.com/username/smartmirror', - }, - { - name: 'VirtualMarket', - description: - 'Virtual reality shopping experience allowing users to browse and buy products online.', - link: 'https://github.com/username/virtualmarket', - }, - { - name: 'CodeReview', - description: 'Collaborative code review platform with annotations and feedback features.', - link: 'https://github.com/username/codereview', - }, - { - name: 'AIAssistant', - description: 'Artificial intelligence assistant for managing tasks, scheduling, and reminders.', - link: 'https://github.com/username/aiassistant', - }, - { - name: 'SecureBackup', - description: 'Encrypted cloud backup solution ensuring secure storage and data protection.', - link: 'https://github.com/username/securebackup', - }, - { - name: 'SmartCarPark', - description: - 'Smart parking management system using IoT sensors for efficient parking space utilization.', - link: 'https://github.com/username/smartcarpark', - }, - { - name: 'HomeSecurity', - description: - 'Home security system with video surveillance, motion detection, and alarm integration.', - link: 'https://github.com/username/homesecurity', - }, - { - name: 'EduTech', - description: - 'Educational technology platform offering virtual classrooms and interactive learning tools.', - link: 'https://github.com/username/edutech', - }, - { - name: 'EventPlanner', - description: 'Event management and planning software for organizing and coordinating events.', - link: 'https://github.com/username/eventplanner', - }, - { - name: 'SmartFarm', - description: - 'Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.', - link: 'https://github.com/username/smartfarm', - }, - { - name: 'MediCare', - description: - 'Medical appointment scheduling and patient management system for healthcare providers.', - link: 'https://github.com/username/medicare', - }, - { - name: 'FoodDelivery', - description: - 'Online food delivery platform connecting restaurants with customers for food ordering.', - link: 'https://github.com/username/fooddelivery', - }, - { - name: 'AIChatbot', - description: 'AI-powered chatbot for customer support and interactive communication.', - link: 'https://github.com/username/aichatbot', - }, - { - name: 'SmartCity', - description: - 'Integrated urban management system using IoT and data analytics for smart city initiatives.', - link: 'https://github.com/username/smartcity', - }, - { - name: 'VirtualAssistant', - description: - 'Virtual assistant software for voice command-based tasks and personal assistance.', - link: 'https://github.com/username/virtualassistant', - }, - { - name: 'SmartLearning', - description: 'AI-driven personalized learning platform with adaptive learning algorithms.', - link: 'https://github.com/username/smartlearning', - }, - { - name: 'RecruitmentAI', - description: 'AI-powered recruitment platform for matching candidates with job opportunities.', - link: 'https://github.com/username/recruitmentai', - }, - { - name: 'CloudStorage', - description: 'Cloud storage service with file synchronization and sharing capabilities.', - link: 'https://github.com/username/cloudstorage', - }, - { - name: 'TravelGuide', - description: - 'Interactive travel guide application providing travel tips and destination insights.', - link: 'https://github.com/username/travelguide', - }, - { - name: 'SmartWatch', - description: - 'Smart wearable device with health monitoring, fitness tracking, and notification features.', - link: 'https://github.com/username/smartwatch', - }, - { - name: 'ARNavigation', - description: - 'Augmented reality navigation app for real-time directions and location-based information.', - link: 'https://github.com/username/arnavigation', - }, - { - name: 'CryptoWallet', - description: - 'Cryptocurrency wallet application for securely storing and managing digital assets.', - link: 'https://github.com/username/cryptowallet', - }, - { - name: 'CodeOptimizer', - description: - 'AI-driven code optimization tool for improving software performance and efficiency.', - link: 'https://github.com/username/codeoptimizer', - }, -]; - -export const testimonialOptions = [ - { - from: 'Alice Johnson', - relation: 'Manager at TechSolutions Inc.', - text: "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", - }, - { - from: 'David Smith', - relation: 'Colleague at InnovateTech Ltd.', - text: 'Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.', - }, - { - from: 'Emily Brown', - relation: 'Client at GlobalSoft Solutions', - text: "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", - }, - { - from: 'Daniel Lee', - relation: 'Project Manager at Digital Dynamics', - text: "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", - }, - { - from: 'Olivia White', - relation: 'Tech Lead at Cloud Innovations', - text: "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", - }, - { - from: 'Sophia Martinez', - relation: 'Director of Engineering at FutureTech', - text: "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", - }, - { - from: 'Ethan Taylor', - relation: 'Co-founder at StartupX', - text: "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", - }, - { - from: 'Isabella Clark', - relation: 'HR Manager at TechFusion', - text: "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", - }, - { - from: 'Noah Rodriguez', - relation: 'Product Owner at AgileSoft', - text: "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", - }, - { - from: 'Aiden Walker', - relation: 'CTO at Innovate Solutions', - text: "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", - }, - { - from: 'Liam Harris', - relation: 'Lead Developer at CloudTech', - text: "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - }, - { - from: 'Emma Thompson', - relation: 'Manager at DataTech Solutions', - text: "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", - }, - { - from: 'Lucas Miller', - relation: 'CTO at InnovateTech Ltd.', - text: "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", - }, - { - from: 'Sophie Turner', - relation: 'Project Manager at Digital Dynamics', - text: "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - }, - { - from: 'Emma Watson', - relation: 'Director of Engineering at FutureTech', - text: "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - }, - { - from: 'Oliver Jackson', - relation: 'HR Manager at TechFusion', - text: "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - }, - { - from: 'Sophia Brown', - relation: 'Product Owner at AgileSoft', - text: "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - }, - { - from: 'Ethan Green', - relation: 'CTO at Innovate Solutions', - text: "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - }, - { - from: 'Mia Davis', - relation: 'Lead Developer at CloudTech', - text: "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", - }, - { - from: 'Noah Wilson', - relation: 'Manager at DataTech Solutions', - text: "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - }, - { - from: 'Ava Miller', - relation: 'CTO at InnovateTech Ltd.', - text: "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", - }, - { - from: 'Sophia Turner', - relation: 'Project Manager at Digital Dynamics', - text: "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - }, - { - from: 'Ella Watson', - relation: 'Director of Engineering at FutureTech', - text: "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - }, - { - from: 'Oliver Jackson', - relation: 'HR Manager at TechFusion', - text: "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - }, - { - from: 'Sophia Brown', - relation: 'Product Owner at AgileSoft', - text: "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - }, - { - from: 'Ethan Green', - relation: 'CTO at Innovate Solutions', - text: "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - }, - { - from: 'Mia Davis', - relation: 'Lead Developer at CloudTech', - text: "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", - }, - { - from: 'Noah Wilson', - relation: 'Manager at DataTech Solutions', - text: "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - }, - { - from: 'Ava Miller', - relation: 'CTO at InnovateTech Ltd.', - text: "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", - }, - { - from: 'Sophia Turner', - relation: 'Project Manager at Digital Dynamics', - text: "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - }, - { - from: 'Ella Watson', - relation: 'Director of Engineering at FutureTech', - text: "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - }, - { - from: 'Oliver Jackson', - relation: 'HR Manager at TechFusion', - text: "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - }, - { - from: 'Sophia Brown', - relation: 'Product Owner at AgileSoft', - text: "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - }, - { - from: 'Ethan Green', - relation: 'CTO at Innovate Solutions', - text: "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - }, - { - from: 'Mia Davis', - relation: 'Lead Developer at CloudTech', - text: "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", - }, -]; - -export const bootcampOptions = [ - 'Codesmith', - 'Le Wagon', - 'App Academy', - 'General Assembly', - 'Flatiron School', - 'Fullstack Academy', - 'Hack Reactor', - 'Coding Dojo', - 'Ironhack', - 'Thinkful', - 'BrainStation', - 'Lambda School', - 'The Tech Academy', - 'CareerFoundry', - 'Makers Academy', - 'Tech Elevator', - 'DevMountain', - 'Galvanize', - 'Nucamp', - 'Springboard', - 'Kenzie Academy', -]; - -export const professionalSummaryOptions = [ - 'Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.', - 'Backend engineer specializing in designing and optimizing database architectures for high-performance applications.', - 'Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.', - 'DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.', - 'Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.', - 'Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.', - 'AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.', - 'Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.', - 'Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.', - 'Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.', -]; - -export const personBioOptions = [ - 'Passionate software engineer with a love for solving complex problems and building scalable applications.', - 'Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.', - 'Experienced in both frontend and backend development, with a focus on creating elegant and efficient solutions.', - 'Enthusiastic about open-source contributions and collaborating with diverse teams to deliver impactful projects.', - 'Driven by a curiosity for innovation and a commitment to delivering high-quality software solutions.', - 'Detail-oriented developer with a strong foundation in algorithms and data structures.', - 'Committed to writing clean, maintainable code that meets rigorous performance standards.', - 'Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.', - 'Adaptable problem solver who thrives in dynamic, fast-paced environments.', - "Passionate about building inclusive and accessible software that improves people's lives.", - 'Experienced in Agile methodologies, with a track record of delivering projects on time and within budget.', - 'Devoted to fostering a collaborative team environment and mentoring junior developers.', - 'Strong analytical thinker with a knack for troubleshooting and resolving complex technical issues.', - 'Proactive learner constantly exploring emerging technologies and trends in the software industry.', - 'Focused on creating seamless user experiences through intuitive interface design and interaction.', - 'Experienced in deploying and maintaining applications on cloud platforms like AWS and Azure.', - 'Passionate about leveraging data-driven insights to optimize software performance and user engagement.', - 'Dedicated to upholding best practices in software engineering, including testing, code reviews, and version control.', - 'Skilled in working with cross-functional teams to deliver innovative software solutions that exceed expectations.', - 'Experienced in building scalable microservices architectures and integrating third-party APIs.', - 'Adept at optimizing SQL and NoSQL databases for performance and scalability.', - 'Committed to ensuring software security and compliance with industry standards and regulations.', - 'Passionate about improving codebase efficiency through refactoring and performance tuning.', - 'Enthusiastic about exploring the intersection of technology and social impact.', - 'Skilled in UX/UI design principles, with a focus on creating intuitive and visually appealing interfaces.', - 'Proven ability to lead technical projects from inception to successful deployment and maintenance.', - 'Innovative thinker with a track record of proposing and implementing creative solutions to technical challenges.', - 'Advocate for diversity and inclusion in the tech industry, fostering a welcoming and supportive workplace culture.', - 'Experienced in international collaboration and remote work, with a strong appreciation for cultural diversity.', - 'Driven by a passion for problem-solving and a commitment to continuous professional development.', - 'Committed to ethical software development practices and promoting transparency in technology.', - 'Skilled in conducting technical workshops and seminars to share knowledge and mentor aspiring developers.', - 'Passionate about contributing to the tech community through open-source projects and knowledge sharing.', - 'Experienced in rapid prototyping and iterative development methodologies.', - 'Focused on delivering user-centric solutions that address real-world needs and challenges.', -]; - -export const threadOptions = [ - { - title: 'Best IDEs for Web Development?', - content: - "I'm exploring different IDE options for web development. What are your recommendations and why? Looking for suggestions on both free and paid IDEs.", - }, - { - title: 'How to Improve Code Review Process?', - content: - "Seeking advice on optimizing our team's code review process. What tools and practices do you use to ensure effective code reviews and maintain code quality?", - }, - { - title: 'Career Advice: Frontend vs Backend?', - content: - 'Considering specializing in either frontend or backend development. What are the pros and cons of each? Which path offers better career opportunities?', - }, - { - title: 'Introduction to Docker Containers', - content: - "New to Docker and containers? Let's discuss the basics, benefits, and practical applications of Docker in software development and deployment.", - }, - { - title: 'JavaScript Frameworks Comparison', - content: - 'Comparing popular JavaScript frameworks like React, Angular, and Vue.js. Share your experiences, strengths, and weaknesses of each framework.', - }, - { - title: 'Tips for Effective Debugging', - content: - 'Share your best practices and tools for debugging complex issues in software development. How do you approach troubleshooting and resolving bugs?', - }, - { - title: 'Remote Work: Challenges and Solutions', - content: - 'Discussing the challenges faced while working remotely and sharing strategies to stay productive, maintain communication, and foster team collaboration.', - }, - { - title: 'Machine Learning for Beginners', - content: - "New to machine learning? Let's explore foundational concepts, resources, and hands-on tutorials to get started with machine learning projects.", - }, - { - title: 'Continuous Integration and Deployment (CI/CD)', - content: - 'Exploring CI/CD pipelines, best practices, and tools for automating software delivery processes. Share your experiences and tips for implementing CI/CD.', - }, - { - title: 'Interview Preparation Tips', - content: - 'Preparing for software engineering interviews? Discussing strategies, common interview questions, and resources to ace technical interviews.', - }, - { - title: 'Frontend Performance Optimization Techniques', - content: - 'Exploring strategies and tools to optimize frontend performance. Share tips on reducing page load times, improving rendering efficiency, and optimizing assets.', - }, - { - title: 'Backend Architecture Best Practices', - content: - 'Discussing best practices for designing scalable and resilient backend architectures. How do you ensure high availability and fault tolerance?', - }, - { - title: 'Version Control: Git Tips and Tricks', - content: - 'Share your favorite Git commands, workflows, and best practices for version control. How do you handle branching, merging, and code collaboration?', - }, - { - title: 'Agile Development: Scrum vs Kanban', - content: - 'Comparing Scrum and Kanban methodologies for Agile software development. Which approach works better for your team and why?', - }, - { - title: 'Python vs Java: Which is Better for Backend Development?', - content: - 'Debating the pros and cons of Python and Java for backend development. Share your experiences and preferences in choosing a backend programming language.', - }, - { - title: 'Tips for Building Scalable Microservices', - content: - 'Discussing architectural patterns, communication protocols, and deployment strategies for building scalable microservices architectures.', - }, - { - title: 'Data Structures and Algorithms: Best Resources', - content: - 'Sharing recommended resources, books, and online courses for learning data structures and algorithms. What are your favorite learning materials?', - }, - { - title: 'Web Security: Best Practices and Tools', - content: - 'Discussing security vulnerabilities, best practices, and tools for securing web applications. How do you protect against common web attacks?', - }, - { - title: 'UX/UI Design Principles for Developers', - content: - 'Exploring UX/UI design principles and best practices for developers. How can developers contribute to creating user-friendly and visually appealing interfaces?', - }, - { - title: 'Cloud Computing: AWS vs Azure', - content: - 'Comparing Amazon Web Services (AWS) and Microsoft Azure cloud platforms. Which platform do you prefer for hosting and deploying your applications?', - }, - { - title: 'Blockchain Technology: Applications and Use Cases', - content: - 'Exploring real-world applications and use cases of blockchain technology beyond cryptocurrencies. How is blockchain transforming industries?', - }, - { - title: 'Artificial Intelligence: Ethics and Implications', - content: - 'Discussing ethical considerations and societal implications of AI technologies. How can we ensure responsible AI development and deployment?', - }, - { - title: 'Mobile App Development Trends for 2024', - content: - 'Predicting and discussing emerging trends and technologies in mobile app development for the upcoming year. What trends are shaping the mobile app landscape?', - }, - { - title: 'Open Source Contributions: Getting Started', - content: - 'Tips and advice for beginners on how to get started with contributing to open-source projects. What are the benefits of open-source contributions?', - }, - { - title: 'Big Data Analytics: Tools and Techniques', - content: - 'Exploring tools, frameworks, and techniques for analyzing and deriving insights from large datasets. How do you handle big data challenges?', - }, - { - title: 'Tech Career Transition: Tips and Success Stories', - content: - 'Sharing success stories, tips, and advice for transitioning into a tech career from a non-technical background. How did you make the leap?', - }, - { - title: 'Cybersecurity Threats: Prevention and Response', - content: - 'Discussing common cybersecurity threats and strategies for prevention and incident response. How do you secure your applications and data?', - }, - { - title: 'Cloud Native Applications: Architecture and Benefits', - content: - 'Exploring the architecture and benefits of cloud-native applications. How do you design and deploy applications for cloud environments?', - }, - { - title: 'AR/VR Development: Tools and Platforms', - content: - 'Discussing tools, platforms, and development techniques for creating augmented reality (AR) and virtual reality (VR) applications.', - }, - { - title: 'Data Privacy Regulations: Compliance Challenges', - content: - 'Navigating data privacy regulations and compliance challenges in software development. How do you ensure GDPR and CCPA compliance?', - }, - { - title: 'Full Stack Development: Best Practices', - content: - 'Best practices, tools, and frameworks for mastering full-stack development. How do you balance frontend and backend development responsibilities?', - }, - { - title: 'Serverless Computing: Benefits and Use Cases', - content: - 'Exploring the benefits, use cases, and challenges of serverless computing architectures. How do you leverage serverless for scalable applications?', - }, - { - title: 'Tech Startups: Lessons Learned and Tips', - content: - 'Sharing lessons learned, success stories, and practical tips for launching and scaling tech startups. What challenges did you face?', - }, - { - title: 'Open Source Projects: Contributions and Impact', - content: - 'Discussing the impact of open-source projects on the tech industry and society. How can open-source initiatives drive innovation and collaboration?', - }, - { - title: 'Software Testing: Strategies and Automation', - content: - 'Strategies, tools, and best practices for software testing and test automation. How do you ensure comprehensive test coverage and quality?', - }, - { - title: 'API Design: Best Practices and Guidelines', - content: - 'Exploring best practices, design patterns, and guidelines for designing robust and developer-friendly APIs. What makes a good API?', - }, - { - title: 'Tech Conferences: Recommendations and Reviews', - content: - 'Discussing upcoming tech conferences, workshops, and events. Share your recommendations and reviews of past conferences.', - }, - { - title: 'Software Development Methodologies: Agile vs Waterfall', - content: - 'Comparing Agile and Waterfall methodologies for software development. Which approach suits your project and team dynamics?', - }, - { - title: 'AI in Healthcare: Applications and Innovations', - content: - 'Exploring AI applications and innovations in the healthcare industry. How is AI transforming patient care and medical research?', - }, - { - title: 'Code Quality Metrics and Tools', - content: - 'Measuring code quality and implementing metrics. Discussing tools and practices for maintaining high-quality codebases.', - }, - { - title: 'Blockchain Development Platforms: Ethereum vs Hyperledger', - content: - 'Comparing Ethereum and Hyperledger as blockchain development platforms. Which platform is suitable for different use cases?', - }, - { - title: 'Tech Diversity and Inclusion: Initiatives and Impact', - content: - 'Discussing initiatives and strategies for promoting diversity and inclusion in the tech industry. How can we create more inclusive workplaces?', - }, - { - title: 'AI Ethics: Bias, Accountability, and Transparency', - content: - 'Exploring ethical considerations in AI development, including bias mitigation, accountability frameworks, and transparency practices.', - }, - { - title: 'Game Development: Engines, Tools, and Challenges', - content: - 'Discussing game development engines, tools, and challenges. Share your experiences in creating interactive and immersive gaming experiences.', - }, -]; - -export const postContentOptions = [ - "I'm new to web development. Can anyone recommend a good beginner-friendly JavaScript framework?", - 'What are your favorite VS Code extensions for productivity? Looking to optimize my workflow.', - 'Discussing the pros and cons of using NoSQL databases like MongoDB versus traditional SQL databases.', - 'How do you handle software architecture design in agile development? Share your strategies and experiences.', - 'Exploring the role of microservices in modern software architectures. What are the benefits and challenges?', - 'Share your experiences with continuous integration and deployment tools like Jenkins and GitLab CI/CD.', - 'Tips for optimizing frontend performance in large-scale web applications? What techniques do you use?', - 'How important is unit testing in your development workflow? Discussing the impact on code quality.', - 'Seeking advice on transitioning from frontend to full-stack development. What skills should I focus on?', - 'Comparing popular cloud providers for hosting web applications: AWS, Azure, and Google Cloud Platform.', - 'Discussing the best practices for securing RESTful APIs. How do you protect against common vulnerabilities?', - 'Share your insights on DevOps culture and its impact on software development teams.', - 'What are the essential skills for a successful software engineering career in the next decade?', - 'Debating the future of AI and its potential impact on industries like healthcare and finance.', - 'Exploring the benefits of using TypeScript in large-scale JavaScript applications. Is it worth the learning curve?', - 'How do you approach code reviews in your team? Share your process for constructive feedback and improvement.', - 'Discussing the adoption of serverless architecture in enterprise applications. What are the use cases?', - 'Seeking recommendations for online platforms or courses to learn data science and machine learning.', - 'What are your favorite design patterns for building scalable backend systems? Discussing architecture.', - 'Tips for building responsive and accessible user interfaces in web development. Best practices?', - 'Exploring the challenges of scaling applications globally. How do you design for international users?', - 'How can blockchain technology revolutionize industries beyond finance? Discussing real-world applications.', - 'Share your experiences with remote team collaboration tools like Slack, Zoom, and Microsoft Teams.', - 'What are the key factors to consider when choosing a tech stack for a new startup project?', - 'Discussing the evolution of programming languages and their impact on software development practices.', - 'Tips for managing technical debt in software projects. How do you prioritize and refactor?', - 'Seeking advice on transitioning from academia to industry as a software engineer. What are the challenges?', - 'Exploring the role of AI in enhancing cybersecurity measures. How can AI algorithms detect threats?', - 'How do you approach refactoring legacy codebases? Share your strategies for modernization.', - 'Discussing the benefits of adopting agile methodologies in non-software development teams.', - 'Share your favorite resources for staying updated with the latest tech trends and industry news.', - 'How can developers contribute to open-source projects? Discussing the impact of community contributions.', - 'Tips for effective project management in software development teams. How do you ensure deadlines are met?', - 'Seeking advice on preparing for technical interviews at top tech companies. What are common interview questions?', - 'Discussing the ethics of AI in decision-making processes. How can we ensure fairness and accountability?', - 'What are the emerging trends in mobile app development? Discussing technologies like Flutter and React Native.', - 'How do you balance feature development with technical debt reduction in agile development?', - 'Exploring the challenges of implementing AI-driven chatbots in customer service applications.', - 'What are your strategies for improving team productivity and motivation in remote work environments?', - 'Tips for building scalable and maintainable frontend architectures. How do you structure your codebase?', - 'Seeking advice on building a personal brand as a software engineer. How can networking help career growth?', - 'Discussing the impact of IoT on everyday life and its implications for software developers.', - 'How can AI and machine learning be leveraged to enhance personalized user experiences in applications?', - 'Exploring the benefits of adopting a microservices architecture over monolithic applications.', - 'What are your thoughts on the future of cybersecurity in the era of AI and automation?', - 'Tips for optimizing database performance in high-traffic web applications. Best practices?', - 'Discussing the challenges and benefits of implementing blockchain technology in supply chain management.', - 'How do you approach designing intuitive user interfaces? Share your UX/UI design principles.', -]; - -export const cityOptions = [ - 'New York', - 'Los Angeles', - 'Chicago', - 'Houston', - 'Phoenix', - 'Philadelphia', - 'San Antonio', - 'San Diego', - 'Dallas', - 'San Jose', - 'Austin', - 'Jacksonville', - 'Fort Worth', - 'Columbus', - 'San Francisco', - 'Charlotte', - 'Indianapolis', - 'Seattle', - 'Denver', - 'Washington', - 'Boston', - 'El Paso', - 'Nashville', - 'Detroit', - 'Oklahoma City', - 'Portland', - 'Las Vegas', - 'Memphis', - 'Louisville', - 'Baltimore', - 'Milwaukee', - 'Albuquerque', - 'Tucson', - 'Fresno', - 'Sacramento', - 'Kansas City', - 'Mesa', - 'Atlanta', - 'Omaha', - 'Colorado Springs', - 'Raleigh', - 'Miami', - 'Long Beach', - 'Virginia Beach', - 'Oakland', - 'Minneapolis', - 'Tulsa', - 'Arlington', - 'New Orleans', - 'Wichita', - 'Cleveland', - 'Tampa', - 'Bakersfield', - 'Aurora', - 'Anaheim', - 'Honolulu', - 'Santa Ana', - 'Riverside', - 'Corpus Christi', - 'Lexington', - 'Stockton', - 'Henderson', - 'Saint Paul', - 'St. Louis', - 'Cincinnati', - 'Pittsburgh', - 'Greensboro', - 'Anchorage', - 'Plano', - 'Lincoln', - 'Orlando', - 'Irvine', - 'Newark', - 'Toledo', - 'Durham', - 'Chula Vista', - 'Fort Wayne', - 'Jersey City', - 'St. Petersburg', - 'Laredo', - 'Madison', - 'Chandler', - 'Buffalo', - 'Lubbock', - 'Scottsdale', - 'Reno', - 'Glendale', - 'Gilbert', - 'Winston-Salem', - 'North Las Vegas', - 'Norfolk', - 'Chesapeake', - 'Garland', - 'Irving', - 'Toronto', - 'London', - 'Paris', - 'Sydney', - 'Tokyo', - 'Berlin', - 'Mexico City', - 'Mumbai', - 'Beijing', - 'Sรฃo Paulo', -]; diff --git a/scripts/db/mockData/MOCK_ALUMNI.json b/scripts/db/mockData/MOCK_ALUMNI.json deleted file mode 100644 index 08fd2fa3..00000000 --- a/scripts/db/mockData/MOCK_ALUMNI.json +++ /dev/null @@ -1 +0,0 @@ -[{"company":"1-800 Flowers","name":"Daniel Reilley","email":"dannyreilley@gmail.com","linkedIn":"https://www.linkedin.com/in/daniel-reilley/","campus":"LA","cohort":"45","jobTitle":"Full-Stack Application Developer","industry":"Retail","cities":["Sรฃo Paulo","Plano"]},{"company":"1Password","name":"William Quan Nguyen","email":"william.nguyen202103@gmail.com","linkedIn":"https://www.linkedin.com/in/william-nguyen202103/","campus":"PTRI","cohort":"10","jobTitle":"Software Engineer intern","industry":"Security/Data Privacy","cities":["Cleveland","Irvine","Henderson"]},{"company":"1StopBedrooms","name":"David Yedid","email":"diyedid@gmail.com","linkedIn":"https://www.linkedin.com/in/yedid/","campus":"NYC","cohort":"15","jobTitle":"VP, Projects (working under CTO); and General Counsel","industry":"E-Commerce","cities":["Buffalo"]},{"company":"1upHealth","name":"Robleh Farah","email":"farahrobleh1@gmail.com","linkedIn":"https://www.linkedin.com/in/farahrobleh","campus":"LA","cohort":"43","jobTitle":"Software Engineer","industry":"Health Tech","cities":["St. Louis","Jacksonville"]},{"company":"23andMe","name":"Jiwon Chung","email":"jiwon.chung07@gmail.com","linkedIn":"https://www.linkedin.com/in/jchung07/","campus":"LA","cohort":"48","jobTitle":"Software Engineer","industry":"Biotech","cities":["Corpus Christi","Fresno"]},{"company":"2U","name":"Rebecca Shesser","email":"rebeccashesser@gmail.com","linkedIn":"https://www.linkedin.com/in/rebeccashesser/","campus":"NYC / ECRI","cohort":"36","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Boston","Gilbert","Sรฃo Paulo"]},{"company":"98point6","name":"Avi Kerson","email":"avitacos@gmail.com","linkedIn":"https://www.linkedin.com/in/avi-kerson/","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Engineer","industry":"Healthcare","cities":["New Orleans","Minneapolis"]},{"company":"AAA (Club Labs)","name":"Michael Chan","email":"mckchan13@gmail.com","linkedIn":"https://www.linkedin.com/in/michael-ck-chan/","campus":"PTRI","cohort":"5","jobTitle":"Software Engineer","industry":"Insurance","cities":["Chandler"]},{"company":"Aavia","name":"Wayland SIngh","email":"wmsingh@ucdavis.edu","linkedIn":"https://www.linkedin.com/in/wayland-singh/","campus":"NYOI","cohort":"4","jobTitle":"Backend Engineer","industry":"Healthtech/Healthcare","cities":["Chula Vista","Oklahoma City","Jacksonville","Sacramento"]},{"company":"Abstract","name":"Tyler Kneidl","email":"tskneidl@gmail.com","linkedIn":"https://www.LinkedIn.com/in/tylerkneidl","campus":"NYC","cohort":"25","jobTitle":"Full Stack Engineer","industry":"Software Development","cities":["Lubbock","Winston-Salem"]},{"company":"Accenture","name":"Adrian Reczek","email":"adrianwreczek@gmail.com","linkedIn":"https://www.linkedin.com/in/adrian-reczek/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Full Stack Software Engineer, Senior Analyst","industry":"Consulting","cities":["Boston","Minneapolis"]},{"company":"Accenture","name":"Colin Roemer","email":"colin.roemer@gmail.com","linkedIn":"https://www.linkedin.com/in/colinroemer/","campus":"LA","cohort":"23","jobTitle":"Node Microservices Engineer","industry":"","cities":["Tucson","San Diego","Garland"]},{"company":"Accenture","name":"Shamilah Faria","email":"shamilahfaria@gmail.com","linkedIn":"https://www.linkedin.com/in/shamilah-faria/","campus":"NYC","cohort":"28","jobTitle":"Software Artisan","industry":"Technology","cities":["Louisville","Raleigh"]},{"company":"Accrete AI","name":"Andrew Moy","email":"ajmoy35@gmail.com","linkedIn":"https://www.linkedin.com/in/andrewmoy/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Full Stack Engineer","industry":"Artificial Intelligence","cities":["Sรฃo Paulo"]},{"company":"Acorns","name":"Zahaan Jasani","email":"zahaanjasani@gmail.com","linkedIn":"https://www.linkedin.com/in/zahaan-jasani-183913126/","campus":"LA","cohort":"26","jobTitle":"Software Engineer II - Backend","industry":"Finance","cities":["Anchorage","Garland","Jersey City"]},{"company":"Acronis","name":"Paul Kim","email":"Khyunwoo1@gmail.com","linkedIn":"https://www.linkedin.com/in/paulyjkim","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"\"Data Protection/ Cyber Security\"","cities":["Gilbert","Paris"]},{"company":"ActiveCampaign","name":"Jacob Gillan","email":"jacobgillan9@gmail.com","linkedIn":"https://www.linkedin.com/in/jacob-gillan/","campus":"FTRI / CTRI","cohort":"15","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Nashville"]},{"company":"Actuate","name":"Braddon Murphy","email":"braddonmurphy@gmail.com","linkedIn":"https://www.linkedin.com/in/braddonlee/","campus":"FTRI","cohort":"6","jobTitle":"Software Engineer","industry":"Security","cities":["Oklahoma City","Austin","Louisville","Scottsdale"]},{"company":"Acuity Brands","name":"Logan Coale","email":"lcoale@gmail.com","linkedIn":"https://www.linkedin.com/in/logancoale/","campus":"NYC","cohort":"25","jobTitle":"Senior Software Engineer","industry":"Industrial Lighting/IoT","cities":["El Paso"]},{"company":"Adaptive Biotechnologies","name":"Conor Chinitz","email":"conorchinitz@gmail.com","linkedIn":"https://www.linkedin.com/in/conorchinitz","campus":"FTRI","cohort":"7","jobTitle":"Software Engineer III","industry":"Biotech","cities":["Toledo","Chandler"]},{"company":"Adobe - Frame.io","name":"Anna Brakowska","email":"anna.brakowska91@gmail.com","linkedIn":"https://www.linkedin.com/in/anna-brakowska/","campus":"NYC","cohort":"7","jobTitle":"Software Engineer","industry":"","cities":["Anaheim"]},{"company":"Affirm","name":"Oscar Chan","email":"chanoscar0@gmail.com","linkedIn":"https://www.linkedin.com/in/occhan/","campus":"LA","cohort":"26","jobTitle":"Software Engineer","industry":"Fintech","cities":["Aurora","Lexington","Toronto","Norfolk"]},{"company":"Age of Learning","name":"Brian Kwok","email":"brian.kwok15@gmail.com","linkedIn":"https://www.linkedin.com/in/briankwok15/","campus":"LA","cohort":"29","jobTitle":"Software Engineer","industry":"Education","cities":["Norfolk","Irvine","Tucson","New York"]},{"company":"Age of Learning","name":"Tre Hultzen","email":"hultzentre@gmail.com","linkedIn":"https://www.linkedin.com/in/tre-hultzen/","campus":"LA","cohort":"45","jobTitle":"Web Services Engineer","industry":"Education","cities":["Buffalo","Santa Ana"]},{"company":"Agua Caliente Casinos","name":"Mark Alexander","email":"markalexander72@gmail.com","linkedIn":"https://www.linkedin.com/in/marka772","campus":"PTRI","cohort":"7","jobTitle":"Web Developer","industry":"Gaming/eSports","cities":["Garland"]},{"company":"AI Insurance","name":"James Edwards III","email":"j.olden.edwards@gmail.com","linkedIn":"https://www.linkedin.com/in/james-edwards-547307242/","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Buffalo","Denver"]},{"company":"Air Labs, Inc.","name":"Madison Brown","email":"mbrown3391@gmail.com","linkedIn":"https://www.linkedin.com/in/madisondbrown/","campus":"NYC","cohort":"18","jobTitle":"Sr. Software Engineer","industry":"Digital Asset Management","cities":["Cleveland"]},{"company":"Airtable","name":"Clara Kim","email":"clarayhkim96@gmail.com","linkedIn":"https://www.linkedin.com/in/clarakm/","campus":"LA","cohort":"34","jobTitle":"Full-stack Engineer","industry":"SaaS","cities":["Raleigh","Greensboro"]},{"company":"Ajmadison","name":"Shlomo porges","email":"porges.s@gmail.com","linkedIn":"https://www.linkedin.com/in/shlomoporges/","campus":"NYC","cohort":"10","jobTitle":"DB architect","industry":"Appliances","cities":["Oakland","Laredo","Minneapolis","Sydney"]},{"company":"Albert","name":"Will Bladon","email":"whbladon@gmail.com","linkedIn":"https://www.linkedin.com/in/will-bladon/","campus":"LA","cohort":"40","jobTitle":"Software Engineer","industry":"Fintech","cities":["Kansas City"]},{"company":"Alchemy","name":"Mathias Perfumo","email":"mathias.perfumo@gmail.com","linkedIn":"https://www.linkedin.com/in/mathiasperfumo","campus":"FTRI / CTRI","cohort":"7","jobTitle":"Software Engineer","industry":"Other","cities":["Buffalo","Columbus","Laredo","Dallas"]},{"company":"Aledade","name":"Etana Kopin","email":"claws.33@gmail.com","linkedIn":"https://www.linkedin.com/in/egkopin/","campus":"PTRI","cohort":"8","jobTitle":"Senior Software Engineer","industry":"Healthcare","cities":["Toronto","Portland","Miami","Irvine"]},{"company":"Alethix","name":"Mark Dolan","email":"mark.dolan3@gmail.com","linkedIn":"https://www.linkedin.com/in/markdolan30/","campus":"NYC","cohort":"29","jobTitle":"Frontend Software Engineer","industry":"Government services","cities":["Wichita"]},{"company":"Algolia","name":"Jacob Cole","email":"jacob.cole@gmail.com","linkedIn":"jacobcole34","campus":"PTRI","cohort":"8","jobTitle":"Solutions Engineer","industry":"Software / Tech","cities":["Norfolk","Irvine","Toronto","Phoenix"]},{"company":"Allen Institute","name":"Joseph Heffernan","email":"Interim17@gmail.com","linkedIn":"LinkedIn.com/in/Joseph-heffernan","campus":"LA / WCRI","cohort":"53","jobTitle":"Software Engineer Front End","industry":"Biotech","cities":["Los Angeles","Aurora","Detroit"]},{"company":"Alleo.ai","name":"Rawan Al Bairouti","email":"rawan.bairouti@gmail.com","linkedIn":"linkedin.com/in/rawanbairouti","campus":"PTRI","cohort":"7","jobTitle":"Lead Developer ","industry":"Software Solutions/Developer Tools","cities":["Riverside"]},{"company":"Alloy","name":"Jacqueline Chang","email":"jqw.chang@gmail.com","linkedIn":"https://www.linkedin.com/in/jqw-chang/","campus":"NYC","cohort":"7","jobTitle":"Software Engineer II","industry":"","cities":["Glendale","Newark","Buffalo","Minneapolis"]},{"company":"Alloy","name":"Sophie Nye","email":"sophie.nye@gmail.com","linkedIn":"https://www.linkedin.com/in/gsophienye/","campus":"NYC","cohort":"12","jobTitle":"Software Engineer II","industry":"Fintech","cities":["Austin","Chesapeake","Orlando"]},{"company":"Allure Bridal","name":"Patrick Reid","email":"patrickjreid@gmail.com","linkedIn":"https://www.linkedin.com/in/patrickjreid/","campus":"PTRI","cohort":"6","jobTitle":"Senior Solutions Engineer","industry":"Retail","cities":["Stockton","Lincoln","Louisville"]},{"company":"Ally","name":"Oleksii Hordiienko","email":"alex.hord@yahoo.com","linkedIn":"https://www.linkedin.com/in/oleksii-hordiienko/","campus":"NYC","cohort":"27","jobTitle":"Sr. Software Engineer","industry":"Fintech","cities":["North Las Vegas","Berlin","Tulsa"]},{"company":"Ally","name":"Allison Jacobs","email":"allison-jacobs@outlook.com","linkedIn":"https://www.linkedin.com/in/allison-j","campus":"NYC","cohort":"25","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["North Las Vegas","Los Angeles","Buffalo"]},{"company":"Ally","name":"Connor Tracy","email":"Connortracy15@gmail.com","linkedIn":"https://www.linkedin.com/in/connortracy19","campus":"NYC","cohort":"28","jobTitle":"Frontend Software Engineer","industry":"Fintech","cities":["Santa Ana"]},{"company":"Ally","name":"Damien Evans","email":"damiensevans@gmail.com","linkedIn":"https://www.linkedin.com/in/damien-s-evans/","campus":"NYC","cohort":"27","jobTitle":"Principal Software Engineer","industry":"Fintech","cities":["Charlotte"]},{"company":"Ally","name":"Mercedes Kalaizic","email":"Kalaizicmercedes@gmail.com","linkedIn":"https://www.linkedin.com/in/mkalaizic/","campus":"NYC","cohort":"28","jobTitle":"Principal Software Engineer","industry":"Fintech","cities":["Plano","Stockton","Honolulu"]},{"company":"Ally","name":"Richard Zhang","email":"rchzhng@gmail.com","linkedIn":"https://www.linkedin.com/in/dickzhang/","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Software Engineer","industry":"Fintech","cities":["Honolulu"]},{"company":"Ally","name":"Garrett Weaver","email":"Uncommonweaver@gmail.com","linkedIn":"https://www.linkedin.com/in/g-weaver/","campus":"NYC","cohort":"23","jobTitle":"API Developer","industry":"Fintech","cities":["Jacksonville","Scottsdale","Columbus"]},{"company":"Alo Yoga","name":"Angie Chang","email":"angiechangpagne@gmail.com","linkedIn":"https://www.linkedin.com/in/angelsofwar","campus":"LA","cohort":"32","jobTitle":"Software Engineer","industry":"E-Commerce/Fashion/Wellness/Mindfulness","cities":["Chesapeake","Orlando"]},{"company":"AlphaSense","name":"Joe Pavlisko","email":"jpavlisko@protonmail.com","linkedIn":"https://www.linkedin.com/in/joe-pavlisko-11b74930/","campus":"NYC","cohort":"11","jobTitle":"Software Engineer","industry":"FinTech","cities":["Madison","Chandler","Cincinnati"]},{"company":"ALTEN GmbH","name":"Jay Wall","email":"walljayw@gmail.com","linkedIn":"https://www.linkedin.com/in/hanswand/","campus":"LA","cohort":"47","jobTitle":"Senior Consultant","industry":"Consultancy - Fintech, Manufacturing, Healthcare","cities":["Chesapeake"]},{"company":"Alteryx","name":"Miriam Feder","email":"mirfeder@gmail.com","linkedIn":"https://www.linkedin.com/in/miriam-feder","campus":"NYC","cohort":"32","jobTitle":"Senior Software Engineer","industry":"Data Analytics","cities":["Albuquerque"]},{"company":"Altice USA","name":"Ola Adedoyin","email":"ola_adedoyin@yahoo.com","linkedIn":"https://www.linkedin.com/in/oadedoyin/","campus":"NYC","cohort":"15","jobTitle":"DevOps Engineering Manager","industry":"Communication and Media","cities":["Detroit","Mesa","Sacramento"]},{"company":"Amazon","name":"Amy Liang","email":"amyliangny@gmail.com","linkedIn":"https://www.linkedin.com/in/amyliang18/","campus":"NYC","cohort":"30","jobTitle":"Software Development Engineer","industry":"Software / Tech","cities":["Orlando","Memphis"]},{"company":"Amazon","name":"Anna Falvello","email":"anna.falvello@gmail.com","linkedIn":"https://www.linkedin.com/in/afalvello/","campus":"NYC","cohort":"29","jobTitle":"SDEII","industry":"Ecommerce","cities":["Tucson","Garland"]},{"company":"Amazon","name":"Anthony Valdez","email":"avaldez520@gmail.com","linkedIn":"https://www.linkedin.com/in/va1dez/","campus":"NYC","cohort":"32","jobTitle":"SDE II (Full Stack)","industry":"Software / Tech","cities":["Glendale"]},{"company":"Amazon","name":"Christopher LeBrett","email":"clebrett@gmail.com","linkedIn":"https://www.linkedin.com/in/chris-lebrett/","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Development Engineer","industry":"Software / Tech","cities":["Boston","Irvine"]},{"company":"Amazon","name":"Christopher Wong","email":"cwong8257@gmail.com","linkedIn":"https://www.linkedin.com/in/chriswong2/","campus":"NYC","cohort":"7","jobTitle":"Software Engineer","industry":"","cities":["Norfolk"]},{"company":"Amazon","name":"David Anderson","email":"dlande000@gmail.com","linkedIn":"https://www.linkedin.com/in/dlande000/","campus":"NYC","cohort":"26","jobTitle":"Front-End Engineer","industry":"AWS / internet infrastructure","cities":["Greensboro","Lexington"]},{"company":"Amazon","name":"Dillon Schriver","email":"dschriver9@gmail.com","linkedIn":"https://www.linkedin.com/in/dillon-schriver/","campus":"NYC","cohort":"27","jobTitle":"Software Development Engineer II","industry":"Ecommerce","cities":["Arlington","Stockton","Norfolk"]},{"company":"Amazon","name":"Eelan Tung","email":"eelantung@gmail.com","linkedIn":"https://www.linkedin.com/in/eelantung","campus":"NYC","cohort":"19","jobTitle":"Software Development Engineer","industry":"Software / Tech","cities":["Tokyo","Tulsa","Boston"]},{"company":"Amazon","name":"Jason Huang","email":"huang.jason999@gmail.com","linkedIn":"https://www.linkedin.com/in/huang-jason999/","campus":"NYC","cohort":"16","jobTitle":"Software Development Engineer II","industry":"Technology","cities":["Albuquerque","Tokyo","Mumbai","Mesa"]},{"company":"Amazon","name":"Idan Michael","email":"idan.michael3@gmail.com","linkedIn":"https://www.linkedin.com/in/idanmichael/","campus":"NYC","cohort":"30","jobTitle":"Software Develpment Engineer","industry":"Cloud","cities":["Wichita"]},{"company":"Amazon","name":"Jacqueline Douglass","email":"jackie.douglass@icloud.com","linkedIn":"https://www.linkedin.com/in/jacqueline-douglass/","campus":"FTRI","cohort":"2","jobTitle":"Front-End Engineer","industry":"e-commerce, cloud computing, digital streaming, and artificial intelligence.","cities":["Phoenix","New Orleans","Winston-Salem"]},{"company":"Amazon","name":"James Kim","email":"james.minjae.97@gmail.com","linkedIn":"https://linkedin.com/in/jamesmjkim","campus":"PTRI","cohort":"5","jobTitle":"Software Development Engineer 1","industry":"Software / Tech","cities":["Oakland","San Francisco"]},{"company":"Amazon","name":"Luke Michals","email":"luke.michals@gmail.com","linkedIn":"","campus":"LA","cohort":"14","jobTitle":"Frontend Engineer II","industry":"Retail","cities":["Lubbock","Oklahoma City"]},{"company":"Amazon","name":"Jennifer Song","email":"lumie.song@gmail.com","linkedIn":"https://www.linkedin.com/in/lu0713/","campus":"NYC","cohort":"20","jobTitle":"Software Development Engineer II","industry":"Tech","cities":["Omaha","Sydney","Jacksonville"]},{"company":"Amazon","name":"Megan Nadkarni","email":"megan.nadkarni@gmail.com","linkedIn":"https://www.linkedin.com/in/megannadkarni/","campus":"LA","cohort":"48","jobTitle":"Front End Engineer","industry":"Software / Tech","cities":["New York","Tampa","Paris"]},{"company":"Amazon","name":"Mark Washkewicz","email":"mwashkewicz@gmail.com","linkedIn":"https://www.linkedin.com/in/mark-washkewicz/","campus":"LA","cohort":"39","jobTitle":"Software Development Engineer 1","industry":"Retail","cities":["Sydney"]},{"company":"Amazon","name":"Stephan Halarewicz","email":"shalarewicz@gmail.com","linkedIn":"https://www.linkedin.com/in/stephanhalarewicz/","campus":"PTRI","cohort":"6","jobTitle":"Software Development Engineer, People Engine","industry":"Software / Tech","cities":["Chesapeake","Memphis","Jacksonville","New Orleans"]},{"company":"Amazon","name":"Tanner Peterson","email":"tanpeterson@gmail.com","linkedIn":"https://www.linkedin.com/in/tanner-peterson/","campus":"LA","cohort":"46","jobTitle":"Front End Engineer","industry":"Cloud Services","cities":["Norfolk","Toronto","Garland","Durham"]},{"company":"Amazon","name":"Timothy Mai","email":"timothy.mai13@gmail.com","linkedIn":"https://www.linkedin.com/in/timothy-mai-459085b3/","campus":"LA","cohort":"31","jobTitle":"Software Development Engineer I","industry":"Advertising","cities":["Riverside"]},{"company":"Amazon","name":"Yogi Paturu","email":"ypaturu@gmail.com","linkedIn":"https://www.linkedin.com/in/yogi-paturu/","campus":"NYC","cohort":"29","jobTitle":"Software Development Engineer","industry":"Cloud","cities":["Las Vegas","Charlotte"]},{"company":"Amazon","name":"Yale Yng-Wong","email":"yyngwong@gmail.com","linkedIn":"https://www.linkedin.com/in/ywyw/","campus":"NYC","cohort":"32","jobTitle":"SDE1","industry":"Advertising","cities":["Riverside","Cincinnati","Tulsa"]},{"company":"Amazon (AWS)","name":"Michael Weber","email":"michael.weber.jr@gmail.com","linkedIn":"https://www.linkedin.com/in/michael-weber-jr/","campus":"NYC","cohort":"26","jobTitle":"Software Development Engineer","industry":"Cloud Services","cities":["Baltimore","Virginia Beach","Glendale","Atlanta"]},{"company":"Amazon Prime Video","name":"Faraz Moallemi","email":"moallemifaraz@gmail.com","linkedIn":"https://www.linkedin.com/in/farazmoallemi/","campus":"LA","cohort":"44","jobTitle":"Software Development Engineer I","industry":"Big Tech","cities":["Dallas","Pittsburgh","Anchorage"]},{"company":"Amazon Web Services","name":"Daniel Forrester","email":"danielf216@gmail.com","linkedIn":"https://www.linkedin.com/in/danielforrester/","campus":"PTRI","cohort":"5","jobTitle":"Cloud Application Architect","industry":"Cloud Services","cities":["Chandler","Saint Paul","Memphis","Omaha"]},{"company":"Amazon Web Services","name":"Lumie (Jen) Song","email":"lumie.song@gmail.com","linkedIn":"https://www.linkedin.com/in/lu0713/","campus":"NYC","cohort":"20","jobTitle":"Software Development Engineer II","industry":"Software","cities":["Henderson","Detroit","Chesapeake","Cincinnati"]},{"company":"Amazon Web Services","name":"Matthew Lee","email":"matthewcml6022@gmail.com","linkedIn":"https://www.linkedin.com/in/matthewcmlee/","campus":"LA","cohort":"45","jobTitle":"Software Development Engineer","industry":"Web Services / Cloud Computing","cities":["Indianapolis","Atlanta","Durham","Chicago"]},{"company":"Amazon Web Services","name":"Taylor Rodrigues","email":"taylor.d.rod33@gmail.com","linkedIn":"https://www.linkedin.com/in/taylorrodrigues/","campus":"LA","cohort":"33","jobTitle":"Software Development Engineer I (L4)","industry":"Cloud Computing","cities":["Irvine","Durham","Toronto","Tokyo"]},{"company":"Amazon Web Services (AWS)","name":"Raphael Bargues","email":"rbargues@gmail.com","linkedIn":"https://www.linkedin.com/in/raphael-bargues/","campus":"NYC","cohort":"17","jobTitle":"Software Engineer","industry":"","cities":["Omaha","Boston","Toronto"]},{"company":"Amazon, AWS","name":"Jimmy Ngo","email":"jimmycngo@gmail.com","linkedIn":"https://www.linkedin.com/in/jimmycngo/","campus":"FTRI","cohort":"2","jobTitle":"Software Development Engineer 1","industry":"cloud computing","cities":["Phoenix","Lubbock"]},{"company":"AMC Networks","name":"Wade Armstrong","email":"wade@wadearmstrong.com","linkedIn":"https://www.linkedin.com/in/wadearmstrong/","campus":"LA","cohort":"5","jobTitle":"Director, Front-End Development","industry":"Entertainment","cities":["Tucson","Anchorage","Jersey City"]},{"company":"American Airlines(Contracted via BrookSource)","name":"Mariah Talicuran","email":"talicuran.mariah@gmail.com","linkedIn":"https://www.linkedin.com/in/mariahtalicuran/","campus":"PTRI","cohort":"6","jobTitle":"Associate React Developer","industry":"Other","cities":["Irvine","Albuquerque"]},{"company":"American Dawn","name":"Charlie Huang","email":"charliehuang913@gmail.com","linkedIn":"https://www.linkedin.com/in/huangcharlie","campus":"LA / WCRI","cohort":"48","jobTitle":"Junior Software Engineer","industry":"Retail","cities":["Lubbock","Phoenix","Tulsa","Fort Wayne"]},{"company":"American Express","name":"Dominic DiSalvo","email":"Dominicd17@gmail.com","linkedIn":"https://www.linkedin.com/mwlite/in/dominicdisalvo","campus":"FTRI","cohort":"3","jobTitle":"Software Engineer","industry":"Fintech","cities":["Miami","Tucson","Fort Wayne","Berlin"]},{"company":"American Express","name":"Jake Diorio","email":"jdiorio2393@gmail.com","linkedIn":"https://www.linkedin.com/in/jake-diorio/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"Banking","cities":["Norfolk","Anaheim"]},{"company":"American Express","name":"Kelvin Shamy","email":"kelvinshamy@gmail.com","linkedIn":"https://www.linkedin.com/in/kelvinshamy/","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Software Engineer","industry":"Fintech","cities":["Sรฃo Paulo"]},{"company":"American Express","name":"Rebecca Turk","email":"rebecca.e.turk@gmail.com","linkedIn":"https://www.linkedin.com/in/rebeccaturk/","campus":"NYC","cohort":"5","jobTitle":"Engineer I","industry":"","cities":["Durham","Plano","Sydney","Raleigh"]},{"company":"American Express","name":"Victor He","email":"victorhe33@gmail.com","linkedIn":"www.linkedin.com/in/victorhe33","campus":"PTRI","cohort":"8","jobTitle":"Software Engineer","industry":"Fintech","cities":["St. Petersburg"]},{"company":"AmeriSave","name":"Andrew Pomatti","email":"ampomatti@gmail.com","linkedIn":"https://www.linkedin.com/in/drewpomatti/","campus":"LA","cohort":"47","jobTitle":"Systems Engineer I","industry":"Real Estate","cities":["Denver","Henderson","North Las Vegas","Plano"]},{"company":"AmeriSave","name":"Jacob C Viesselman","email":"jacob.viesselman@gmail.com","linkedIn":"https://www.linkedin.com/in/jacobviesselman/","campus":"LA","cohort":"46","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Wichita"]},{"company":"Amerisave","name":"Norman Liu","email":"Normanliu91@gmail.com","linkedIn":"https://www.linkedin.com/in/norm-liu","campus":"PTRI","cohort":"5","jobTitle":"Software Engineer","industry":"Fintech","cities":["London","Glendale"]},{"company":"AmeriSave Mortgage Corporation","name":"Jason Chan","email":"Jason.chann91@gmail.com","linkedIn":"https://www.linkedin.com/in/jason-chan1765/","campus":"FTRI","cohort":"7","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Albuquerque","Scottsdale"]},{"company":"AmeriSave Mortgage Corporation","name":"Michael Prince","email":"mgp2454@gmail.com","linkedIn":"https://www.linkedin.com/in/michael-prince","campus":"LA","cohort":"46","jobTitle":"Software Engineer","industry":"Fintech","cities":["Stockton"]},{"company":"Ample, LLC","name":"Rudo Hengst","email":"rudohengst@gmail.com","linkedIn":"https://www.linkedin.com/in/rhengst/","campus":"NYC","cohort":"18","jobTitle":"Lead Developer","industry":"Digital Marketing","cities":["Arlington","Plano"]},{"company":"Amplify","name":"Ekaterina Vasileva","email":"ekaterinavasileva768@gmail.com","linkedIn":"https://www.linkedin.com/in/ekaterina-vasileva238/","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"Education","cities":["Cincinnati","Nashville"]},{"company":"Amplify","name":"Biet Van Nguyen","email":"vanbietnguyen@gmail.com","linkedIn":"https://www.linkedin.com/in/van-biet-nguyen-6879434a/","campus":"NYC","cohort":"27","jobTitle":"Software Engineer","industry":"Edtech","cities":["Mexico City","Nashville","New Orleans","Albuquerque"]},{"company":"Anaconda","name":"Rosio Reyes","email":"rosio_reyes@yahoo.com","linkedIn":"https://www.linkedin.com/in/rosio-reyes-09b9a256/","campus":"PTRI","cohort":"3","jobTitle":"Software Engineer","industry":"Computer Software","cities":["Chula Vista","Plano"]},{"company":"Ancestry","name":"Miguel Garibay","email":"miguelgaribay93@gmail.com","linkedIn":"https://www.linkedin.com/in/miguel-garibay-mag/","campus":"LA","cohort":"43","jobTitle":"Full Stack Software Engineer","industry":"Genealogy","cities":["Las Vegas","San Antonio"]},{"company":"Ancestry","name":"Schno Mozingo","email":"schno.mozingo@gmail.com","linkedIn":"https://www.linkedin.com/in/schno-mozingo/","campus":"LA","cohort":"12","jobTitle":"Senior Software Engineer","industry":"Geneology","cities":["Atlanta","North Las Vegas","St. Louis","Cincinnati"]},{"company":"Ancilia","name":"Clark Pang","email":"clarkcpang@gmail.com","linkedIn":"https://www.linkedin.com/in/clarkpang/","campus":"LA / WCRI","cohort":"56","jobTitle":"Software Engineer","industry":"Security","cities":["San Francisco","Jacksonville"]},{"company":"Anheuser-Busch","name":"Brandon Bowers","email":"brandonbowers1234@gmail.com","linkedIn":"https://www.linkedin.com/in/brandon-michael-bowers/","campus":"FTRI","cohort":"3","jobTitle":"Senior Front-end React Developer","industry":"Beverages","cities":["Greensboro"]},{"company":"Annalect","name":"Carlos Peรฑa","email":"carlos.pena91@gmail.com","linkedIn":"https://www.linkedin.com/in/carlospena91","campus":"LA","cohort":"39","jobTitle":"Front End Engineer","industry":"Advertisement and Media","cities":["Colorado Springs"]},{"company":"Annalect","name":"Trent Currie","email":"trentdcurrie@gmail.com","linkedIn":"https://www.linkedin.com/in/trentdcurrie/","campus":"LA","cohort":"39","jobTitle":"Front-End Engineer","industry":"Marketing","cities":["Jacksonville"]},{"company":"Apex Fintech Solutions","name":"Kevin Le","email":"lekevin2013@gmail.com","linkedIn":"https://www.linkedin.com/in/kevinvu-le/","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Software Engineer","industry":"Fintech","cities":["Paris","Colorado Springs","Chesapeake","Fort Worth"]},{"company":"Apex Systems","name":"Anthony Martinez","email":"anthony@amartinez.cc","linkedIn":"https://www.linkedin.com/in/tony-mtz/","campus":"LA","cohort":"41","jobTitle":"Software Engineer","industry":"Bank","cities":["San Jose","Scottsdale","Bakersfield","Tokyo"]},{"company":"Apollo GraphQL","name":"Joel Burton","email":"joeltburton@gmail.com","linkedIn":"https://www.linkedin.com/in/joeltburton","campus":"LA","cohort":"26","jobTitle":"Software Engineer","industry":"Technology","cities":["Washington","Baltimore","Saint Paul","Anaheim"]},{"company":"Appfolio","name":"Erik Fisher","email":"efishr4@gmail.com","linkedIn":"https://www.linkedin.com/in/erik-fisher-53b9b6b3/","campus":"LA","cohort":"24","jobTitle":"Software Engineer II","industry":"Aviation & Aerospace","cities":["Garland","Phoenix"]},{"company":"Appfolio","name":"Michelle Holland","email":"michellebholland@gmail.com","linkedIn":"https://www.linkedin.com/in/michellebholland/","campus":"LA","cohort":"37","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Oakland"]},{"company":"AppFolio","name":"Timothy Barry","email":"tim.barry12@gmail.com","linkedIn":"https://www.linkedin.com/in/timothy-barry-se","campus":"FTRI","cohort":"8","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Albuquerque","Saint Paul","Long Beach"]},{"company":"Apple","name":"Alexander Zhang","email":"azalexanderzhang@gmail.com","linkedIn":"https://www.linkedin.com/in/zhang-alexander/","campus":"NYC","cohort":"26","jobTitle":"Software Engineer","industry":"Tech","cities":["New York","Miami","El Paso"]},{"company":"Apple (via Ryzen)","name":"Dieu Huynh","email":"dieuhhuynh@gmail.com","linkedIn":"https://www.linkedin.com/in/dieu-huynh/","campus":"LA","cohort":"42","jobTitle":"Frontend Engineer","industry":"Technology","cities":["Winston-Salem","Honolulu","Fort Wayne","Oklahoma City"]},{"company":"Applied Minds","name":"Michael Chiang","email":"michael.chiang.dev5@gmail.com","linkedIn":"https://www.linkedin.com/in/michael-chiang-dev5/","campus":"FTRI / CTRI","cohort":"13","jobTitle":"software engineer","industry":"Software / Tech","cities":["Durham","Corpus Christi","Philadelphia"]},{"company":"AppOmni","name":"Ousman Diallo","email":"ordiallo@gmail.com","linkedIn":"https://www.linkedin.com/in/ousman-diallo/","campus":"NYC","cohort":"15","jobTitle":"Front End Engineer","industry":"Security","cities":["Albuquerque","Mexico City","Berlin"]},{"company":"Arc'teryx","name":"Simon Grigenas","email":"grigenas@outlook.com","linkedIn":"https://www.linkedin.com/in/simon-grigenas/","campus":"NYC / ECRI","cohort":"1","jobTitle":"Intermediate Web Applications Developer","industry":"Retail","cities":["Paris"]},{"company":"Arcadia","name":"Adda Kridler","email":"addakridler@gmail.com","linkedIn":"https://www.linkedin.com/in/addakridler/","campus":"NYC","cohort":"27","jobTitle":"Software Engineer 1","industry":"Energy Tech","cities":["Mesa","Berlin","Atlanta","Santa Ana"]},{"company":"Arcadia","name":"Cameron Baumgartner","email":"cameron.h.baumgartner@gmail.com","linkedIn":"https://www.linkedin.com/in/cameronbaumgartner/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"Renewable Energy","cities":["Norfolk"]},{"company":"Arcadia","name":"Jehovany A Cruz","email":"howaboutjeho@gmail.com","linkedIn":"https://www.linkedin.com/in/jehovany-cruz/","campus":"NYC","cohort":"19","jobTitle":"Software Engineer","industry":"Energy - Renewable Energy","cities":["Anaheim","Portland"]},{"company":"Arcadia","name":"Jason Liggayu","email":"jligg224@gmail.com","linkedIn":"https://www.linkedin.com/in/jasonliggayu/","campus":"NYC","cohort":"22","jobTitle":"Full Stack Engineer","industry":"Renewable Energy","cities":["San Antonio","Wichita","Mumbai","Philadelphia"]},{"company":"Arcadia","name":"Kristen Althoff","email":"kristenwalthoff@gmail.com","linkedIn":"https://www.linkedin.com/in/kristen-althoff-3a4765b9/","campus":"NYC","cohort":"31","jobTitle":"Full-Stack Software Engineer I","industry":"Software / Tech","cities":["Madison","North Las Vegas","Washington","Jersey City"]},{"company":"Arcules","name":"Nico Flores","email":"floresni1996@gmail.com","linkedIn":"https://www.linkedin.com/in/nicolasaflores/","campus":"LA","cohort":"48","jobTitle":"Software Engineer","industry":"Cloud Services","cities":["Omaha"]},{"company":"Arcules","name":"Patrick Allen","email":"patrick@ohana-app.io","linkedIn":"https://linkedin.com/in/patrickallendfs","campus":"LA","cohort":"43","jobTitle":"Software Engineer","industry":"Cloud Video","cities":["Pittsburgh","Washington","North Las Vegas","Toronto"]},{"company":"Armoire","name":"Katie Sandfort","email":"katie.sandfort@gmail.com","linkedIn":"https://www.linkedin.com/in/katie-sandfort/","campus":"LA / WCRI","cohort":"55","jobTitle":"Software Engineer","industry":"Retail","cities":["Baltimore","Jacksonville","Arlington"]},{"company":"Artsy","name":"Matt Jones","email":"matt.chris.jones@gmail.com","linkedIn":"https://www.linkedin.com/in/mc-jones/","campus":"NYC","cohort":"21","jobTitle":"Senior Engineer 1 (Fullstack)","industry":"Art","cities":["Chicago","Lexington","Atlanta"]},{"company":"Artyc","name":"Daniel Geiger","email":"daniel.w.geiger@gmail.com","linkedIn":"https://www.linkedin.com/in/danielwgeiger/","campus":"FTRI / CTRI","cohort":"4","jobTitle":"Fullstack Engineer","industry":"Other","cities":["Orlando","Berlin","Paris"]},{"company":"Arvest Bank","name":"Leilani Hernandez","email":"leilani.digame@gmail.com","linkedIn":"www.linkedin.com/in/lherna05","campus":"LA / WCRI","cohort":"52","jobTitle":"Front End Developer","industry":"Fintech","cities":["Portland","Virginia Beach"]},{"company":"Ash Wellness","name":"Andrew Rehrig","email":"arehrig@gmail.com","linkedIn":"https://www.linkedin.com/in/andrew-rehrig/","campus":"NYC","cohort":"22","jobTitle":"Full Stack Engineer","industry":"Healthcare","cities":["San Francisco"]},{"company":"Asics","name":"Alexa Roberts","email":"alexarobertss@protonmail.com","linkedIn":"https://www.linkedin.com/in/alexarobertss","campus":"LA / WCRI","cohort":"51","jobTitle":"Frontend Software Engineer","industry":"Software / Tech","cities":["Buffalo"]},{"company":"Aspiration","name":"Charles Gyer","email":"charlesgyer@gmail.com","linkedIn":"https://www.linkedin.com/in/charles-gyer/","campus":"PTRI","cohort":"4","jobTitle":"Software Engineer, Backend","industry":"Green Fintech","cities":["Tampa"]},{"company":"Astra","name":"Jae Ryu","email":"rj.jaeryu@gmail.com","linkedIn":"https://www.linkedin.com/in/jaeryu/","campus":"NYC","cohort":"27","jobTitle":"Senior Software Engineer","industry":"Space-tech","cities":["Boston","Oklahoma City"]},{"company":"Asurion","name":"Jinseon Shin","email":"jinseonshin@gmail.com","linkedIn":"https://www.linkedin.com/in/jinseonshin/","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Tech Insurance","cities":["Winston-Salem","Mumbai","Irvine","Atlanta"]},{"company":"Asurion","name":"Shah Chaudri","email":"shah.pro.se@gmail.com","linkedIn":"https://www.linkedin.com/in/shah-chaudri/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer 3","industry":"Tech Insurance","cities":["Phoenix"]},{"company":"Asurion","name":"Travis Woolston","email":"travis.ww@hotmail.com","linkedIn":"https://www.linkedin.com/in/traviswoolston/","campus":"PTRI","cohort":"3","jobTitle":"Software Engineer","industry":"Insurance","cities":["Oklahoma City","St. Petersburg","London"]},{"company":"AT&T","name":"Alexander Kim","email":"akim3235@gmail.com","linkedIn":"https://www.linkedin.com/in/alexanderkim1/","campus":"LA","cohort":"38","jobTitle":"Backend Software Engineer","industry":"Entertainment","cities":["London","Berlin","Albuquerque","San Antonio"]},{"company":"AT&T","name":"Marc Doran","email":"doramm4408@gmail.com","linkedIn":"https://www.linkedin.com/in/marc-doran","campus":"NYC / ECRI","cohort":"33","jobTitle":"Database Developer","industry":"Telecommunications","cities":["Jacksonville","Beijing","Chula Vista"]},{"company":"AT&T","name":"Alina Grafkina","email":"grafkina.production@gmail.com","linkedIn":"https://www.linkedin.com/in/alinakyaw/","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Tucson","Mumbai","Santa Ana"]},{"company":"Athena Health","name":"Zach Pestaina","email":"zpestaina@gmail.com","linkedIn":"linkedin.com/zachpestaina/","campus":"NYC / ECRI","cohort":"38","jobTitle":"Analytics Engineer","industry":"Healthcare","cities":["Anchorage","New Orleans","Lubbock","Seattle"]},{"company":"Atlassian","name":"Giao Tran","email":"contactgiaotran@gmail.com","linkedIn":"https://www.linkedin.com/in/gd-tran/","campus":"LA","cohort":"40","jobTitle":"Software Engineer P3","industry":"Project management?","cities":["Memphis"]},{"company":"Atlassian","name":"Dan Snyder","email":"dasnyder3@gmail.com","linkedIn":"https://www.linkedin.com/in/dasnyder3/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"Tech","cities":["Indianapolis","Memphis","Scottsdale"]},{"company":"Atlassian/ Trello","name":"Elizabeth Lotto","email":"fakeEmail1@fakeEmail.com","linkedIn":"https://www.linkedin.com/in/elizabethlotto/","campus":"NYC","cohort":"20","jobTitle":"Software Engineer","industry":"Computer Software","cities":["Fort Worth","Mexico City","Oakland","Louisville"]},{"company":"Atos Syntel (at Disney)","name":"Dakota Gilbreath","email":"dgilbrea92@gmail.com","linkedIn":"https://www.linkedin.com/in/dakota-gilbreath/","campus":"LA","cohort":"34","jobTitle":"Full Stack Developer","industry":"Entertainment","cities":["Lubbock"]},{"company":"Attentive","name":"Sam Goldberg","email":"sgoldber61@gmail.com","linkedIn":"https://www.linkedin.com/in/sgoldber61/","campus":"LA","cohort":"27","jobTitle":"Software Engineer, Frontend - L4","industry":"E-commerce","cities":["San Jose"]},{"company":"Attentive ","name":"Pravek Karwe","email":"pkarwe62@gmail.com","linkedIn":"https://www.linkedin.com/in/pravek-karwe?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app","campus":"NYOI","cohort":"7","jobTitle":"Senior Product Manager ","industry":"Marketing/Advertising","cities":["Wichita","Indianapolis"]},{"company":"Audacy","name":"John Roman","email":"johnmroman33@gmail.com","linkedIn":"https://www.linkedin.com/in/john-m-roman/","campus":"NYC / ECRI","cohort":"38","jobTitle":"Associate Software Engineer","industry":"Entertainment","cities":["Nashville","Reno","Louisville"]},{"company":"AuditBoard","name":"Alex Yu","email":"alexjihunyu@gmail.com","linkedIn":"https://www.linkedin.com/in/alexjihunyu/","campus":"LA","cohort":"42","jobTitle":"Software Engineer","industry":"FinTech","cities":["Oklahoma City","Scottsdale","San Antonio"]},{"company":"Autodesk","name":"Javan Ang","email":"javanamt@gmail.com","linkedIn":"https://www.linkedin.com/in/javanang/","campus":"PTRI","cohort":"6","jobTitle":"Software Engineer","industry":"Software/Tech","cities":["Anaheim","Santa Ana","Omaha"]},{"company":"AutoFi","name":"Rocky Lin","email":"liangwen511@gmail.com","linkedIn":"https://www.linkedin.com/in/rocky-lin/","campus":"NYC","cohort":"14","jobTitle":"Senior Software Engineer","industry":"FinTech","cities":["Chula Vista","Jersey City","Toledo","Miami"]},{"company":"Ava","name":"Eden Shirin","email":"edenshirin@gmail.com","linkedIn":"https://www.linkedin.com/in/eden-shirin/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Software Engineer","industry":"Artificial Intelligence","cities":["Detroit","Fresno","New York","San Francisco"]},{"company":"Avant","name":"David Riley Burns","email":"drileyburns@gmail.com","linkedIn":"https://www.linkedin.com/in/drileyburns/","campus":"NYC","cohort":"15","jobTitle":"Software Engineer","industry":"Loans","cities":["Greensboro"]},{"company":"Avirtek","name":"Eliot L Nguyen","email":"eliotlefrin@gmail.com","linkedIn":"https://www.linkedin.com/in/ibeeliot","campus":"LA","cohort":"34","jobTitle":"Front End Lead Developer","industry":"Cybersecurity","cities":["Paris","Toronto"]},{"company":"Avise","name":"Frank Norton","email":"jfnorton@gmail.com","linkedIn":"https://www.linkedin.com/in/jfnorton32/","campus":"LA","cohort":"37","jobTitle":"Full Stack Software Engineer","industry":"Fintech","cities":["Tokyo","Omaha","Portland"]},{"company":"Avoma","name":"Kevin Chung","email":"kevin.c@me.com","linkedIn":"https://www.linkedin.com/in/kevc/","campus":"LA / WCRI","cohort":"47","jobTitle":"Software Engineer - Frontend","industry":"Software / Tech","cities":["Arlington","Saint Paul","Houston"]},{"company":"AVOXI","name":"Shirley Luu","email":"sh.rleyluu@gmail.com","linkedIn":"https://www.linkedin.com/in/luu-shirley","campus":"NYC / ECRI","cohort":"35","jobTitle":"Full Stack Software Engineer","industry":"Business Tech/Enterprise Tech","cities":["Boston","Anchorage","Garland"]},{"company":"Avvir","name":"Sharon Zhu","email":"sharonzhu.15@gmail.com","linkedIn":"https://www.linkedin.com/in/sharonzhu/","campus":"LA","cohort":"41","jobTitle":"Software Engineer II","industry":"Construction Tech","cities":["Fort Wayne","Albuquerque","Tampa"]},{"company":"AWS","name":"Blake Myrick","email":"blake.myrick@gmail.com","linkedIn":"https://www.linkedin.com/in/blake-myrick","campus":"PTRI","cohort":"3","jobTitle":"Software Development Engineer","industry":"Tech","cities":["Omaha","Aurora","Sydney","Mexico City"]},{"company":"AWS","name":"George Jeng","email":"gjenga@icloud.com","linkedIn":"https://www.linkedin.com/in/gjenga","campus":"LA","cohort":"49","jobTitle":"SDE1","industry":"Cloud Services","cities":["Virginia Beach"]},{"company":"AWS","name":"Marc Burnie","email":"MarcABurnie@gmail.com","linkedIn":"https://www.linkedin.com/in/marcburnie","campus":"NYC","cohort":"20","jobTitle":"Software Development Engineer II","industry":"Tech","cities":["Toledo","Oklahoma City"]},{"company":"AWS","name":"Patty Qian","email":"patty.qian@gmail.com","linkedIn":"https://www.linkedin.com/in/patty-qian/","campus":"NYC","cohort":"20","jobTitle":"Software Development Engineer","industry":"Tech","cities":["Gilbert","Newark","Reno","Durham"]},{"company":"Axim Geospatial","name":"Kevin Le","email":"kevinle1003@gmail.com","linkedIn":"https://www.linkedin.com/in/xkevinle/","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Software Developer","industry":"IT Services","cities":["Garland","Jersey City"]},{"company":"Axle Health","name":"Alexandra Ashcraft","email":"lash211@gmail.com","linkedIn":"https://www.linkedin.com/in/alexandra-ashcraft1/","campus":"FTRI / CTRI","cohort":"17","jobTitle":"Software Engineer","industry":"Healthtech/Healthcare","cities":["Lincoln","Anaheim","Cincinnati"]},{"company":"Axon","name":"Meng Ting Chiang","email":"a123deandean@gmail.com","linkedIn":"https://www.linkedin.com/in/mengting-chiang/","campus":"NYC","cohort":"20","jobTitle":"Software Engineer","industry":"Public Safety","cities":["Beijing"]},{"company":"B-stock solutions","name":"Michael Feldman","email":"michaelfeldma1@gmail.com","linkedIn":"https://www.linkedin.com/in/michael-feldman15/","campus":"NYC","cohort":"25","jobTitle":"Nodejs / microservices software engineer","industry":"E-commerce","cities":["Laredo","Virginia Beach","Mesa","Austin"]},{"company":"Bach","name":"Abbey Campbell","email":"campbellabbeya@gmail.com","linkedIn":"https://www.linkedin.com/in/campbellabbeya/","campus":"LA","cohort":"31","jobTitle":"Frontend Developer","industry":"Entertainment? Wed-tech? lol idk it's pretty niche","cities":["Corpus Christi","San Francisco","St. Louis"]},{"company":"BallerTV","name":"Jenessa Chapalamadugu","email":"jenessachap@gmail.com","linkedIn":"https://www.linkedin.com/in/jenessachap/","campus":"NYC","cohort":"25","jobTitle":"Full Stack Engineer","industry":"Entertainment","cities":["Chandler","North Las Vegas"]},{"company":"Bank of America","name":"Ranisha Rafeeque Soopi Kalphantakath","email":"ranisharafeeque@gmail.com","linkedIn":"https://www.linkedin.com/in/ranisha-rafeeque-s-k/","campus":"NYC","cohort":"26","jobTitle":"AVP, Software Engineer","industry":"Fintech","cities":["Las Vegas"]},{"company":"Barstool Sports","name":"Daniel Nagano-Gerace","email":"dnaganog@gmail.com","linkedIn":"https://www.linkedin.com/in/dnaganog/","campus":"NYC","cohort":"12","jobTitle":"Senior Backend Engineer","industry":"Media","cities":["Plano"]},{"company":"Bayer Crop Science (Neteffects)","name":"Jason Fricano","email":"jason.fricano@gmail.com","linkedIn":"https://www.linkedin.com/in/jasonfricano/","campus":"NYC","cohort":"25","jobTitle":"Node / React Developer","industry":"Agricultural Science","cities":["Arlington","Garland"]},{"company":"Bayer Crop Sciences","name":"Stephen Budarz","email":"sbudarz@gmail.com","linkedIn":"https://www.linkedin.com/in/steve-budarz/","campus":"NYC","cohort":"19","jobTitle":"Full Stack Engineer","industry":"Agriculture","cities":["Virginia Beach","Arlington"]},{"company":"BD","name":"Annabelle Ni","email":"ann.j.ni@gmail.com","linkedIn":"https://www.linkedin.com/in/annabelleni/","campus":"FTRI / CTRI","cohort":"17","jobTitle":"Software Engineer","industry":"Healthtech/Healthcare","cities":["Oklahoma City","Raleigh"]},{"company":"Beacon Hill Staffing (Charter Communications)","name":"David Russo","email":"dr2378@gmail.com","linkedIn":"https://www.linkedin.com/in/russo-david","campus":"NYC / ECRI","cohort":"36","jobTitle":"Software Engineer","industry":"Telecommunications","cities":["Mexico City","Seattle","Madison"]},{"company":"Beacon Hill Staffing (working for Charter Communications)","name":"Jessica Balding","email":"jessica.r.balding@gmail.com","linkedIn":"https://www.linkedin.com/in/jessica-balding/","campus":"PTRI","cohort":"7","jobTitle":"Full Stack Developer","industry":"Telecommunications","cities":["Orlando"]},{"company":"Beautycounter","name":"Mario Granberri","email":"mgranberri@gmail.com","linkedIn":"https://www.linkedin.com/in/mgranberri/","campus":"LA","cohort":"25","jobTitle":"Full stack software engineer","industry":"Compliance","cities":["Detroit","Los Angeles","Jersey City","London"]},{"company":"Behavior Frontiers","name":"Chance Hernandez","email":"chance.hernandez24@gmail.com","linkedIn":"https://www.linkedin.com/in/chance-hernandez/","campus":"LA","cohort":"40","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Buffalo","Aurora","Atlanta"]},{"company":"Bentobox","name":"Corey Van Splinter","email":"cvanspl1@gmail.com","linkedIn":"https://www.linkedin.com/in/corey-van-splinter/","campus":"LA","cohort":"39","jobTitle":"Senior Software Engineer","industry":"Hospitality","cities":["New Orleans"]},{"company":"Bentobox","name":"Greg Dixon","email":"gdixon529@gmail.com","linkedIn":"https://www.linkedin.com/in/gdixon529/","campus":"LA","cohort":"39","jobTitle":"Software Engineer","industry":"Software","cities":["Mexico City","Paris","Glendale","Minneapolis"]},{"company":"BentoBox","name":"Brian Liang","email":"liangbrian94@gmail.com","linkedIn":"https://www.linkedin.com/in/brian-z-liang/","campus":"LA","cohort":"43","jobTitle":"Product Support Engineer","industry":"Not sure","cities":["Fort Wayne","Fresno"]},{"company":"Berkadia","name":"Isaac Kittila","email":"isaac.kittila@gmail.com","linkedIn":"https://www.linkedin.com/in/isaac-kittila/","campus":"LA","cohort":"39","jobTitle":"Associate Software Engineer","industry":"Commercial Real Estate","cities":["Tulsa"]},{"company":"Best Buy","name":"Alexander Hager","email":"alexhager19@gmail.com","linkedIn":"https://www.linkedin.com/in/hager-alexander/","campus":"NYC","cohort":"29","jobTitle":"Front end Engineer","industry":"Data analytics","cities":["New York","Buffalo","Los Angeles"]},{"company":"Better.com","name":"Stefan Armijo","email":"stefan.armijo@gmail.com","linkedIn":"https://www.linkedin.com/in/stefanarmijo/","campus":"LA","cohort":"21","jobTitle":"Sr. Software Engineer","industry":"","cities":["Sรฃo Paulo"]},{"company":"BidWrangler","name":"Kylene Hohman","email":"kylenehohman@gmail.com","linkedIn":"https://www.linkedin.com/in/kylene-hohman","campus":"PTRI","cohort":"5","jobTitle":"Full-Stack Developer","industry":"Auction Services","cities":["San Jose","Cincinnati"]},{"company":"Bigeye","name":"Dasha Kondratenko","email":"dashakondrattenko@gmail.com","linkedIn":"https://www.linkedin.com/in/dasha-k/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer 1","industry":"Data quality","cities":["Chula Vista"]},{"company":"BigID","name":"Helen Regula","email":"hregula03@gmail.com","linkedIn":"https://www.linkedin.com/in/helenregula/","campus":"NYC","cohort":"25","jobTitle":"Senior Full Stack Software Engineer","industry":"Cyber Security","cities":["Omaha","Los Angeles"]},{"company":"Bill.com","name":"Gordon Hui","email":"Maddogg612@gmail.com","linkedIn":"https://www.linkedin.com/in/gordon-hui","campus":"PTRI","cohort":"3","jobTitle":"Software engineer 2 - Frontend","industry":"Fintech","cities":["Sydney","Oakland","Long Beach"]},{"company":"Bio-Rad Laboratories","name":"Tiffany Yang","email":"teefyang7857@gmail.com","linkedIn":"https://www.linkedin.com/in/teayang/","campus":"LA","cohort":"21","jobTitle":"Software Engineer","industry":"Biotech","cities":["Washington","Seattle","Greensboro"]},{"company":"BitGo","name":"Joe Kinney","email":"josephrkinney@gmail.com","linkedIn":"https://www.linkedin.com/in/joekinney17/","campus":"NYC","cohort":"22","jobTitle":"Software Engineer","industry":"Fintech","cities":["Indianapolis"]},{"company":"Bitovi","name":"Edward Park","email":"edwardpark123@gmail.com","linkedIn":"https://www.linkedin.com/in/edwardparkwork/","campus":"LA","cohort":"41","jobTitle":"Junior Developer and Consultant","industry":"Computer Software","cities":["San Diego"]},{"company":"BitPay","name":"Taven Shumaker","email":"tavensshumaker@gmail.com","linkedIn":"https://www.linkedin.com/in/taven-shumaker/","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Fintech","cities":["Dallas"]},{"company":"Black Cape","name":"kyle saunders","email":"kylersaunders@gmail.com","linkedIn":"/kylersaunders","campus":"NYC / ECRI","cohort":"37","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Fort Wayne","Las Vegas"]},{"company":"Blackrock","name":"Jiaxin Li","email":"jiaxin.li.gogo@gmail.com","linkedIn":"https://www.linkedin.com/in/lijiaxingogo/","campus":"NYC","cohort":"22","jobTitle":"DevOps Engineer","industry":"","cities":["Orlando","Winston-Salem"]},{"company":"Blackthorn Software","name":"Aalok Shah","email":"aalok.tsh@gmail.com","linkedIn":"/kolashah","campus":"NYC / ECRI","cohort":"37","jobTitle":"Full Stack Software Engineer","industry":"Other","cities":["Mesa","London","Scottsdale"]},{"company":"Blackthorn.io","name":"Tristan Onfroy","email":"tonfroy90@gmail.com","linkedIn":"https://www.linkedin.com/in/tristan-onfroy/","campus":"PTRI","cohort":"7","jobTitle":"Support Software Engineer","industry":"Software Solutions/Developer Tools","cities":["Albuquerque","Irving","Newark"]},{"company":"Blend","name":"Peter Makhnatch","email":"p.makhnatch@gmail.com","linkedIn":"https://www.linkedin.com/in/petermakhnatch/","campus":"PTRI","cohort":"8","jobTitle":"Software Engineer","industry":"Fintech","cities":["Mumbai"]},{"company":"Blink Health","name":"Matthew Digel","email":"Digel.matt@gmail.com","linkedIn":"https://www.linkedin.com/in/matt-digel","campus":"PTRI","cohort":"Beta","jobTitle":"Sr. Product Manager","industry":"Health Care Tech","cities":["Irvine","Louisville","London"]},{"company":"Blizzard","name":"Christopher Washburn","email":"chris132128@gmail.com","linkedIn":"https://www.linkedin.com/in/christopherwashburn/","campus":"LA","cohort":"24","jobTitle":"Software Development Engineer","industry":"Insurance","cities":["Greensboro","Boston","Lubbock","Wichita"]},{"company":"BlockFi","name":"Mohtasim Chowdhury","email":"mohtasim.hc@gmail.com","linkedIn":"https://www.linkedin.com/in/mohtasimc/","campus":"NYC","cohort":"13","jobTitle":"Frontend Engineer","industry":"Fintech","cities":["Oklahoma City","Honolulu","Baltimore"]},{"company":"BLOCKS","name":"Christopher C Carney","email":"ccarney51@gmail.com","linkedIn":"https://www.linkedin.com/mwlite/in/christopher-c-carney","campus":"NYC","cohort":"24","jobTitle":"Senior Backend Engineer","industry":"Technology","cities":["Fresno"]},{"company":"Bloom Medicinals","name":"Candie Hill","email":"can330330@yahoo.com","linkedIn":"https://www.linkedin.com/in/candie-hill/","campus":"LA / WCRI","cohort":"49","jobTitle":"Jr Software Developer","industry":"Other","cities":["Minneapolis","Wichita","Irvine"]},{"company":"Bloomberg","name":"John Haberstroh","email":"haberstroh.john@gmail.com","linkedIn":"https://www.linkedin.com/in/johnhaberstroh/","campus":"NYC","cohort":"28","jobTitle":"Senior Fullstack Engineer","industry":"Financial,Software,Media,Data","cities":["Lexington","Saint Paul","Tokyo","Philadelphia"]},{"company":"Bloomberg","name":"James Maguire","email":"Jmaguire655@gmail.com","linkedIn":"","campus":"NYC","cohort":"29","jobTitle":"Software Engineer","industry":"Fintech","cities":["Paris"]},{"company":"Bloomberg","name":"Cedric Lee","email":"leeced@umich.edu","linkedIn":"https://www.linkedin.com/in/leeced/","campus":"NYC","cohort":"21","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["St. Louis"]},{"company":"Bloomberg","name":"Duke Lee","email":"leeduke90@gmail.com","linkedIn":"https://www.linkedin.com/in/duke-lee/","campus":"FTRI","cohort":"4","jobTitle":"Software Engineer","industry":"Fin-Tech","cities":["Minneapolis"]},{"company":"Bloomberg","name":"Michael Chin","email":"mikechin37@gmail.com","linkedIn":"https://www.linkedin.com/in/michael-9-chin/","campus":"NYC / ECRI","cohort":"29","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Louisville","Houston","Durham"]},{"company":"Bloomberg Industry Group","name":"Neel Lakshman","email":"neelanjan.lakshman@gmail.com","linkedIn":"https://www.linkedin.com/in/neel-lakshman/","campus":"NYC","cohort":"31","jobTitle":"Web Application Architect I","industry":"Other","cities":["London","Los Angeles"]},{"company":"Bloomberg L.P.","name":"Ariel Hyman","email":"a.o.hyman@gmail.com","linkedIn":"https://www.linkedin.com/in/ahyman0712/","campus":"NYC","cohort":"11","jobTitle":"Software Engineer","industry":"Fintech","cities":["Corpus Christi","Orlando"]},{"company":"Bloomberg LP","name":"Jinhee Choi","email":"jinhee.k.choi@gmail.com","linkedIn":"https://www.linkedin.com/in/jinheekchoi/","campus":"LA","cohort":"44","jobTitle":"Senior Software Engineer (Consultant)","industry":"Fintech","cities":["Las Vegas"]},{"company":"Bloomboard","name":"Junie Hou","email":"selilac9@gmail.com","linkedIn":"https://www.linkedin.com/in/juniehou/","campus":"NYC","cohort":"27","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Baltimore"]},{"company":"Blue Cross Blue Sheild of Florida","name":"Adam Rodriguez","email":"adamxrodriguez@gmail.com","linkedIn":"https://linkedin.com/in/adamrodriguez/","campus":"NYC / ECRI","cohort":"33","jobTitle":"Senior React Node Software Engineer","industry":"Healthcare","cities":["San Francisco","Fort Worth","Tulsa"]},{"company":"Blue Origin","name":"Sam VanTassel","email":"vantassel.sam@gmail.com","linkedIn":"https://www.linkedin.com/in/samvantassel/","campus":"LA","cohort":"47","jobTitle":"Software Engineer I","industry":"Aerospace","cities":["St. Louis","Atlanta","Glendale","Minneapolis"]},{"company":"Blueberry Pediatrics","name":"Lina Lee","email":"woorin.lee1524@gmail.com","linkedIn":"www.linkedin.com/in/lee-lina","campus":"LA / WCRI","cohort":"49","jobTitle":"Full-Stack Software Engineer","industry":"Healthcare","cities":["Paris","Anaheim"]},{"company":"BlueStream Health","name":"Wei Huang","email":"wei.waye.huang@gmail.com","linkedIn":"https://www.linkedin.com/in/wei-waye-huang/","campus":"NYC","cohort":"23","jobTitle":"Senior Software Engineer","industry":"Healthcare","cities":["Louisville","Lubbock","Las Vegas"]},{"company":"BlueVoyant","name":"Mahfuz Kabir","email":"mahfuzk@gmail.com","linkedIn":"https://www.linkedin.com/in/mahfuzkabir/","campus":"NYC","cohort":"4","jobTitle":"Software Engineer (Managed Security Services)","industry":"","cities":["Sacramento","Glendale"]},{"company":"BNY Mellon","name":"Ahsan Ali","email":"ali.ahsan95@gmail.com","linkedIn":"https://www.linkedin.com/in/greyali","campus":"FTRI / CTRI","cohort":"12","jobTitle":"Senior Full Stack Developer","industry":"Fintech","cities":["Milwaukee","St. Petersburg","San Antonio"]},{"company":"Bolt","name":"Chelsey Fewer","email":"chelsey.fewer@gmail.com","linkedIn":"https://www.linkedin.com/in/chelsey-fewer/","campus":"NYC","cohort":"16","jobTitle":"Support Engineer","industry":"Ecommerce","cities":["Riverside","Buffalo","Chandler"]},{"company":"Booster","name":"Evelin Goldin","email":"evelinsaba1@gmail.com","linkedIn":"https://www.linkedin.com/in/evelin-goldin/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Fullstack Software Engineer","industry":"Other","cities":["Irvine"]},{"company":"Booz Allen Hamilton","name":"Sang Rea Han","email":"sxhanx@gmail.com","linkedIn":"https://www.linkedin.com/in/sangreahan/","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Sr. Consultant","industry":"Consulting","cities":["Henderson","Sรฃo Paulo"]},{"company":"Boulevard","name":"Ashley Austin","email":"aaustin86@gmail.com","linkedIn":"https://www.linkedin.com/in/mraustin2u","campus":"LA","cohort":"34","jobTitle":"Senior Associate Software Engineer","industry":"Business Management Tool","cities":["Irvine","London","Austin","Greensboro"]},{"company":"Boxed","name":"Adam Goodman","email":"adamrgoodman1@gmail.com","linkedIn":"https://www.linkedin.com/in/adam-goodman1/","campus":"NYC","cohort":"27","jobTitle":"Backend Engineer I","industry":"e-commerce","cities":["Tucson"]},{"company":"BP3","name":"Brian Jungk","email":"brian.jungk@outlook.com","linkedIn":"https://www.linkedin.com/in/brian-jungk/","campus":"NYC","cohort":"24","jobTitle":"Software Engineer","industry":"Consulting","cities":["Portland","Aurora","Chula Vista","Saint Paul"]},{"company":"Brady Corporation","name":"Sean Flynn","email":"seanflynn5000@gmail.com","linkedIn":"https://www.linkedin.com/in/sean-g-flynn","campus":"NYC / ECRI","cohort":"38","jobTitle":"Web Developer","industry":"Business Tech/Enterprise Tech","cities":["New York","Bakersfield"]},{"company":"Branding Brand","name":"Andy Heng","email":"andyheng1095@gmail.com","linkedIn":"https://www.linkedin.com/in/andy-heng/","campus":"LA","cohort":"39","jobTitle":"Software Engineer","industry":"E-Commerce","cities":["Fresno","Scottsdale"]},{"company":"Branding Brand","name":"Christian Wong","email":"ctcwong73@gmail.com","linkedIn":"https://www.linkedin.com/in/wong-christian/","campus":"LA / WCRI","cohort":"52","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Nashville","London"]},{"company":"Branding Brand","name":"Nobuhide Ajito","email":"Nobuhide95@gmail.com","linkedIn":"https://www.linkedin.com/in/nobuhide-ajito/","campus":"LA","cohort":"32","jobTitle":"Software Engineer","industry":"Technology","cities":["Berlin","Chesapeake"]},{"company":"Bread Financial","name":"Cho Yee Win Aung","email":"choyeewinag@gmail.com","linkedIn":"https://www.linkedin.com/in/choyeewinaung/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer 1","industry":"Fintech","cities":["Scottsdale","Aurora","Albuquerque","San Diego"]},{"company":"Brighter","name":"Elliot Kim","email":"elliot.kim@gmail.com","linkedIn":"https://www.linkedin.com/in/elliotjykim/","campus":"LA","cohort":"24","jobTitle":"Full Stack Engineer","industry":"Gaming & Entertainment","cities":["Sydney"]},{"company":"Brighter (Cigna)","name":"David Marquess","email":"dave.marquess@gmail.com","linkedIn":"https://www.linkedin.com/in/dave-marquess/","campus":"LA","cohort":"25","jobTitle":"Senior Software Engineer","industry":"Cybersecurity","cities":["Henderson"]},{"company":"Brightflow AI","name":"Erika Jung","email":"erika.h.jung@gmail.com","linkedIn":"https://www.linkedin.com/in/erikahjung/","campus":"LA / WCRI","cohort":"56","jobTitle":"Software Engineer","industry":"IT Services","cities":["Philadelphia","Gilbert"]},{"company":"Brillio","name":"Alexander Smith","email":"ajsmith925@gmail.com","linkedIn":"https://www.linkedin.com/in/ajsmith925/","campus":"LA","cohort":"43","jobTitle":"Software Engineer","industry":"Software Consulting","cities":["New York","Atlanta"]},{"company":"Brooksource, contracted to Northwestern Mutual","name":"Jessica Louie Lee","email":"jlouielee@gmail.com","linkedIn":"https://www.linkedin.com/in/jessllee/","campus":"LA","cohort":"48","jobTitle":"Backend Node Engineer with Brooksource, Full stack Engineer with Northwestern Mutual","industry":"Fintech","cities":["Portland","Austin","Cleveland"]},{"company":"BuildOps","name":"Muhammad Trad","email":"Muhammad.trad@yahoo.com","linkedIn":"https://www.linkedin.com/in/muhammadtrad/","campus":"LA","cohort":"37","jobTitle":"Senior Software Engineer","industry":"Commercial Real Estate","cities":["Miami","El Paso","Laredo"]},{"company":"Business Alliance Financial Services (BAFS)","name":"Justin McKay","email":"justinmckay99@gmail.com","linkedIn":"https://www.linkedin.com/in/justinwmckay/","campus":"LA","cohort":"43","jobTitle":"Software Engineer","industry":"Fintech","cities":["Jacksonville","Washington","Plano","Memphis"]},{"company":"Business Alliance Financial Services, LLC","name":"Joe Bigelow","email":"joebigelow@protonmail.com","linkedIn":"https://www.linkedin.com/in/joe-bigelow","campus":"LA","cohort":"42","jobTitle":"Software Engineer","industry":"Finance (Credit union service organization)","cities":["Pittsburgh","Fort Wayne"]},{"company":"ButcherBox","name":"Maxwell Shick","email":"maxwellshick@gmail.com","linkedIn":"https://www.linkedin.com/in/maxwell-shick/","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Software Engineer","industry":"Restaurant, Food, and Beverage","cities":["Anchorage","Tokyo","Detroit","Riverside"]},{"company":"Butterfly Network","name":"Akiko Hagio Dulaney","email":"akikoinhd@gmail.com","linkedIn":"https://www.linkedin.com/in/akiko-hagio-dulaney/","campus":"NYC","cohort":"25","jobTitle":"Web/API QA Automation Engineer","industry":"Healthtech","cities":["Berlin","Newark"]},{"company":"Butterfly Network","name":"Crystal (Crys) Lim","email":"crystal.joy.lim@gmail.com","linkedIn":"https://www.linkedin.com/in/crystallim/","campus":"LA","cohort":"46","jobTitle":"Software Engineer II - Cloud Backend","industry":"Medical Equipment Manufacturing","cities":["Laredo"]},{"company":"C3 AI","name":"Shelby Cotton","email":"hello@shelbycotton.com","linkedIn":"https://linkedin.com/in/shelbycotton","campus":"NYC","cohort":"23","jobTitle":"Forward Deployed Engineer","industry":"Artificial intelligence","cities":["Oakland"]},{"company":"C3.AI","name":"Dominic Genuario","email":"dominicgenuario@gmail.com","linkedIn":"https://www.linkedin.com/in/dominic-genuario/","campus":"NYC / ECRI","cohort":"33","jobTitle":"Forward Deployed Engineer","industry":"Artificial Intelligence","cities":["Riverside","Toledo"]},{"company":"Cadent","name":"William Yoon","email":"williamdyoon@gmail.com","linkedIn":"https://www.linkedin.com/in/williamdyoon/","campus":"LA","cohort":"42","jobTitle":"Front End Engineer","industry":"TV Advertising","cities":["Henderson","Irvine"]},{"company":"CafeMedia","name":"Jasper Narvil","email":"jaspernarvil@gmail.com","linkedIn":"https://www.linkedin.com/in/jaspernarvil/","campus":"NYC / ECRI","cohort":"33","jobTitle":"Software Eng II","industry":"Software / Tech","cities":["Jacksonville"]},{"company":"CAIS Group","name":"Anson Avellar","email":"anson@ansonavellar.com","linkedIn":"https://www.linkedin.com/in/ansonavellar/","campus":"NYC","cohort":"23","jobTitle":"Front End Developer (internally Associate)","industry":"Fintech","cities":["Milwaukee","Plano","Albuquerque","Reno"]},{"company":"Canadian Tire Corporation","name":"Ansel Andro Santos","email":"anselandrosantos@gmail.com","linkedIn":"https://www.linkedin.com/in/ansel-santos","campus":"NYOI","cohort":"3","jobTitle":"Manager, Advanced Measurement & Analytics","industry":"Data/Analytics/Cloud","cities":["Austin","Oklahoma City","St. Louis","Gilbert"]},{"company":"Canary Connect","name":"Dillon Garrett","email":"dillon.garrett.dev@gmail.com","linkedIn":"https://www.linkedin.com/in/dillon-garrett/","campus":"NYC","cohort":"12","jobTitle":"Front End Engineer","industry":"Home Security","cities":["San Diego","Fort Wayne","Reno"]},{"company":"Capital Connect by JP Morgan","name":"Peter Baniuszewicz","email":"Baniuszewicz@gmail.com","linkedIn":"https://www.linkedin.com/in/peter-ba/","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"Fintech","cities":["Santa Ana","Reno"]},{"company":"Capital One","name":"Adrian Inza-Cruz","email":"ainzacruz@gmail.com","linkedIn":"https://www.linkedin.com/in/adrian-inza-cruz/","campus":"LA","cohort":"41","jobTitle":"Senior Associate Software Engineer","industry":"Fintech","cities":["Jersey City","Gilbert"]},{"company":"Capital One","name":"Alexander Gurfinkel","email":"alexgurfinkel@gmail.com","linkedIn":"https://www.linkedin.com/in/alexandergurfinkel/","campus":"PTRI","cohort":"5","jobTitle":"Software Engineer","industry":"Fintech","cities":["Sydney","Oklahoma City","Louisville"]},{"company":"Capital One","name":"Jung Ho Lee","email":"alexxleee@gmail.com","linkedIn":"https://www.linkedin.com/in/jungholee27/","campus":"FTRI","cohort":"1","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Gilbert","Omaha","Charlotte","Houston"]},{"company":"Capital One","name":"Allan MacLean","email":"allanpmaclean@gmail.com","linkedIn":"","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"Fintech","cities":["Washington","Los Angeles"]},{"company":"Capital One","name":"Alvin Ma","email":"alvin.ma95@gmail.com","linkedIn":"https://www.linkedin.com/in/alvinrayma/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Software Engineer","industry":"Other","cities":["Los Angeles","Reno"]},{"company":"Capital One","name":"Alvin Cheng","email":"alvincheng505@gmail.com","linkedIn":"https://www.linkedin.com/in/alvin-cheng/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"Banking","cities":["Norfolk"]},{"company":"Capital One","name":"Allana Ordonez","email":"ayaordonez@gmail.com","linkedIn":"https://www.linkedin.com/in/allana-ordonez/","campus":"LA","cohort":"43","jobTitle":"Software Engineer, Frontend","industry":"Banking/Fintech","cities":["Anchorage"]},{"company":"Capital One","name":"Brandon Miller","email":"bmiller1881@gmail.com","linkedIn":"https://www.linkedin.com/in/brandon-j-miller","campus":"FTRI / CTRI","cohort":"12","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["North Las Vegas","Indianapolis","Oklahoma City"]},{"company":"Capital One","name":"Carson Chen","email":"carson.cy.chen@gmail.com","linkedIn":"https://www.linkedin.com/in/carsoncychen/","campus":"NYC","cohort":"9","jobTitle":"Software Engineer","industry":"IT","cities":["Austin"]},{"company":"Capital One","name":"Carlos Botero-Vargas","email":"cbotero-vargas@outlook.com","linkedIn":"https://www.linkedin.com/in/carlosb-v/","campus":"FTRI","cohort":"1","jobTitle":"Senior Software Engineer","industry":"Finance","cities":["Berlin"]},{"company":"Capital One","name":"Jason Clark","email":"clarkjasonee@gmail.com","linkedIn":"https://www.linkedin.com/in/clarkjasonee/","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Irvine","Toledo"]},{"company":"Capital One","name":"Sina Kahrobaei","email":"cna.kahrobaei@gmail.com","linkedIn":"https://www.linkedin.com/in/sinakahrobaei/","campus":"FTRI","cohort":"6","jobTitle":"Senior Software Engineer (Full Stack)","industry":"Fintech","cities":["Tampa","Wichita","Indianapolis","Jersey City"]},{"company":"Capital One","name":"Christopher cheng","email":"Ctpcheng@gmail.com","linkedIn":"https://www.linkedin.com/in/ctpcheng/","campus":"LA / WCRI","cohort":"49","jobTitle":"Senior Software Engineer, Front End","industry":"Fintech","cities":["Jacksonville","Toronto"]},{"company":"Capital One","name":"Darren Chan","email":"darrenc3195@gmail.com","linkedIn":"https://www.linkedin.com/in/dbchan/","campus":"NYC","cohort":"28","jobTitle":"Full Stack Software Engineer","industry":"Fintech","cities":["Los Angeles","Philadelphia"]},{"company":"Capital One","name":"David Zhang","email":"davidnyc@umich.edu","linkedIn":"https://www.linkedin.com/in/davidnyc/","campus":"NYC","cohort":"26","jobTitle":"Fullstack Software Engineer","industry":"Finance","cities":["Baltimore","El Paso","San Francisco"]},{"company":"Capital One","name":"Dani Almaraz","email":"dtalmaraz@gmail.com","linkedIn":"https://www.linkedin.com/in/dani-almaraz/","campus":"LA / WCRI","cohort":"49","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Madison"]},{"company":"Capital One","name":"Eugene Lee","email":"eugleenyc@gmail.com","linkedIn":"","campus":"NYC","cohort":"30","jobTitle":"Software Engineer","industry":"Fintech","cities":["Jersey City","Stockton","Charlotte","Oklahoma City"]},{"company":"Capital One","name":"Nel Malikova","email":"gunelmalikova@gmail.com","linkedIn":"https://www.linkedin.com/in/gmalikova/","campus":"NYC","cohort":"10","jobTitle":"Software Engineer","industry":"Fintech","cities":["Lincoln","Cincinnati","Laredo","Los Angeles"]},{"company":"Capital One","name":"Hemwatie Persaud","email":"hemwatiecodes@gmail.com","linkedIn":"https://www.linkedin.com/in/hemwatie/","campus":"NYC","cohort":"28","jobTitle":"Software Engineer","industry":"Banking","cities":["Miami"]},{"company":"Capital One","name":"Ian Madden","email":"ianfmadden@gmail.com","linkedIn":"https://www.linkedin.com/in/ian-madden/","campus":"FTRI / CTRI","cohort":"7","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Miami","Riverside","San Antonio"]},{"company":"Capital One","name":"Jae Hyun Ha","email":"jaehyunha96@gmail.com","linkedIn":"https://www.linkedin.com/in/jae-hyun-ha/","campus":"NYC","cohort":"30","jobTitle":"Software Engineer - backend","industry":"Fintech","cities":["London","Toronto","Newark"]},{"company":"Capital One","name":"James Ma","email":"jamesma991@gmail.com","linkedIn":"https://www.linkedin.com/in/jamesma1199/","campus":"FTRI","cohort":"7","jobTitle":"Senior Associate Software Engineer","industry":"Fintech","cities":["San Francisco"]},{"company":"Capital One","name":"Jennifer Chau","email":"jenniferchau512@gmail.com","linkedIn":"https://www.linkedin.com/in/jenniferchau512/","campus":"NYC","cohort":"29","jobTitle":"Software Engineer","industry":"Fintech","cities":["El Paso","Dallas"]},{"company":"Capital One","name":"Jin Oh","email":"jintoh613@gmail.com","linkedIn":"https://www.linkedin.com/in/jintoh613/","campus":"LA","cohort":"42","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Chandler","Winston-Salem","Arlington","St. Louis"]},{"company":"Capital One","name":"John Li","email":"jli159@binghamton.edu","linkedIn":"https://www.linkedin.com/in/john-li7/","campus":"NYC","cohort":"24","jobTitle":"Fullstack Engineer","industry":"Banking","cities":["Fort Worth","Berlin","Charlotte","Laredo"]},{"company":"Capital One","name":"Joseph Amos","email":"joeamos17@gmail.com","linkedIn":"linkedin.com/in/joe-amos","campus":"LA / WCRI","cohort":"49","jobTitle":"Senior Associate Software Engineer","industry":"Software / Tech","cities":["Toledo","Dallas","Gilbert"]},{"company":"Capital One","name":"Johnny Chen","email":"johncschen@gmail.com","linkedIn":"https://www.linkedin.com/in/johnnycschen/","campus":"LA","cohort":"45","jobTitle":"Software Engineer","industry":"Fintech","cities":["Oklahoma City","Oakland","Durham"]},{"company":"Capital One","name":"Jonathan Chen","email":"jonathanchen832@gmail.com","linkedIn":"Https://linkedin.com/in/jonathan-hp-chen","campus":"LA / WCRI","cohort":"52","jobTitle":"Full Stack Engineer","industry":"Fintech","cities":["Omaha","Columbus","Scottsdale"]},{"company":"Capital One","name":"June Culp","email":"juneculp1@gmail.com","linkedIn":"https://www.linkedin.com/in/juneculp/","campus":"NYC","cohort":"28","jobTitle":"Senior Front End Engineer","industry":"Fintech","cities":["Reno","Omaha","Henderson","Kansas City"]},{"company":"Capital One","name":"Kristine Aguda","email":"kaguda03@gmail.com","linkedIn":"https://www.linkedin.com/kristine-aguda","campus":"LA","cohort":"45","jobTitle":"Software Engineer, Full Stack","industry":"Fin tech","cities":["Lexington","Seattle","Columbus"]},{"company":"Capital One","name":"Kasthuri Menon","email":"kasthuri.menon1@gmail.com","linkedIn":"https://www.linkedin.com/in/kasthurimenon/","campus":"NYC","cohort":"28","jobTitle":"Senior Software Engineer","industry":"Banking/ Fintech","cities":["Los Angeles","Sydney"]},{"company":"Capital One","name":"Ken Litton","email":"kennethclitton@gmail.com","linkedIn":"https://www.linkedin.com/in/ken-litton/","campus":"LA","cohort":"43","jobTitle":"Backend Engineer, Senior Associate","industry":"Finance/Banking","cities":["Cincinnati","Portland","Mumbai"]},{"company":"Capital One","name":"Kevin Park-Lee","email":"kevin38424@gmail.com","linkedIn":"https://www.linkedin.com/in/kevin38424/","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Oklahoma City","Toronto","Sacramento"]},{"company":"Capital One","name":"Kellen Levy","email":"Kmalcolmlevy@gmail.com","linkedIn":"https://www.linked.com/in/kellenmlevy","campus":"FTRI","cohort":"1","jobTitle":"Senior Associate Software Engineer","industry":"Fintech","cities":["Charlotte"]},{"company":"Capital One","name":"Jason Lin","email":"lin.jasonp@gmail.com","linkedIn":"https://www.linkedin.com/in/jplin/","campus":"FTRI","cohort":"7","jobTitle":"Software Engineer","industry":"Fintech","cities":["Buffalo","Seattle"]},{"company":"Capital One","name":"Luke Cho","email":"luke.h.cho@gmail.com","linkedIn":"https://www.linkedin.com/in/luke-h-cho/","campus":"NYC","cohort":"28","jobTitle":"Software Engineer","industry":"Banking","cities":["Cincinnati","Chesapeake","Phoenix"]},{"company":"Capital One","name":"Philip Kang","email":"m.philipkang@gmail.com","linkedIn":"https://www.linkedin.com/in/pkmi/","campus":"NYC / ECRI","cohort":"27","jobTitle":"Software Engineer","industry":"Other","cities":["Winston-Salem","Greensboro"]},{"company":"Capital One","name":"Matthew Femia","email":"mattfemia1@gmail.com","linkedIn":"https://www.linkedin.com/in/mattfemia/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Software Engineer","industry":"Fintech","cities":["Los Angeles","Santa Ana"]},{"company":"Capital One","name":"May Li","email":"mayleeli1234@gmail.com","linkedIn":"https://www.linkedin.com/in/maysli","campus":"LA","cohort":"44","jobTitle":"Fullstack Software Engineer","industry":"Fintech","cities":["Buffalo","Durham","Tokyo","Chandler"]},{"company":"Capital One","name":"Matt von der Lippe","email":"mvdlippe@gmail.com","linkedIn":"https://www.linkedin.com/in/mvdlippe/","campus":"FTRI","cohort":"3","jobTitle":"Senior Associate Software Engineer - Backend","industry":"Fintech","cities":["Raleigh","Seattle","North Las Vegas","Denver"]},{"company":"Capital One","name":"Nathanael Tracy","email":"n.tracy@outlook.com","linkedIn":"https://www.linkedin.com/in/nathanael-tracy/","campus":"NYC","cohort":"27","jobTitle":"Senior Associate Software Engineer","industry":"Finance","cities":["Aurora","Houston","Louisville","Seattle"]},{"company":"Capital One","name":"Nathan Yang","email":"nathan.yang16@gmail.com","linkedIn":"https://www.linkedin.com/in/nathanmyang/","campus":"NYC","cohort":"28","jobTitle":"Sr. Associate Software Engineer (Full-Stack)","industry":"Business","cities":["Denver"]},{"company":"Capital One","name":"Nicholas A Gonzalez","email":"nicholas.a.gonz@gmail.com","linkedIn":"https://www.linkedin.com/in/nicholasagonzalez/","campus":"NYC","cohort":"30","jobTitle":"Fullstack Engineer","industry":"Fintech","cities":["Glendale","Tucson"]},{"company":"Capital One","name":"Patrick Slagle","email":"patrickryanslagle@gmail.com","linkedIn":"https://www.linkedin.com/in/patrickslagle/","campus":"LA","cohort":"23","jobTitle":"Software Engineer","industry":"","cities":["Garland","Baltimore","Dallas"]},{"company":"Capital One","name":"Peter Van","email":"peterrvan@gmail.com","linkedIn":"https://www.linkedin.com/in/peter-van/","campus":"LA","cohort":"43","jobTitle":"Front End Software Engineer","industry":"Financial Services","cities":["Nashville"]},{"company":"Capital One","name":"Rachel Patterson","email":"racheljpatterson@gmail.com","linkedIn":"https://www.linkedin.com/in/racheljpatterson/","campus":"NYC","cohort":"27","jobTitle":"Software Engineer, Full Stack","industry":"Banking/Fintech","cities":["San Antonio","Raleigh","Berlin","Lubbock"]},{"company":"Capital One","name":"Quentin Rousset","email":"roussetquent1@gmail.com","linkedIn":"https://www.linkedin.com/in/qrousset/","campus":"NYC","cohort":"28","jobTitle":"Sr Software Engineer Back-end","industry":"Fintech","cities":["Philadelphia","Albuquerque","Toledo","Anchorage"]},{"company":"Capital One","name":"Ahad Rajput","email":"sachem2015@gmail.com","linkedIn":"https://www.linkedin.com/in/arajput96/","campus":"FTRI","cohort":"3","jobTitle":"Senior Software Engineer","industry":"Finance/Fintech","cities":["Louisville"]},{"company":"Capital One","name":"Sam Portelance","email":"sportelance1@gmail.com","linkedIn":"https://www.linkedin.com/in/sportelance/","campus":"NYC","cohort":"23","jobTitle":"Senior Associate Fullstack Engineer","industry":"Fintech","cities":["Kansas City","Newark","Lincoln"]},{"company":"Capital One","name":"Stephen Kim","email":"stephenkim612@gmail.com","linkedIn":"https://www.linkedin.com/in/stephenkim612/","campus":"LA","cohort":"47","jobTitle":"Software Engineer, Fullstack","industry":"Finance","cities":["Henderson","Greensboro","El Paso"]},{"company":"Capital One","name":"Andrew Talle","email":"talle.andrew@gmail.com","linkedIn":"https://www.linkedin.com/in/andrewtalle/","campus":"FTRI","cohort":"6","jobTitle":"Backend Software Engineer","industry":"Fintech","cities":["Fresno","Aurora"]},{"company":"Capital One","name":"Terrence Granger","email":"Terrence.granger@gmail.com","linkedIn":"https://www.linkedin.com/in/terrence-granger/","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Oklahoma City","Anaheim","Buffalo","Indianapolis"]},{"company":"Capital One","name":"Thomas Reeder","email":"thomaseugenereeder@gmail.com","linkedIn":"https://www.linkedin.com/in/thomas-reeder/","campus":"LA","cohort":"43","jobTitle":"Software Engineer, Full Stack","industry":"Banking","cities":["Reno","Wichita","London"]},{"company":"Capital One","name":"Trevor Leung","email":"trevorleeeung@gmail.com","linkedIn":"https://www.linkedin.com/in/trevleung/","campus":"LA","cohort":"47","jobTitle":"Software Engineer, Full Stack","industry":"Finance/Banking","cities":["Fresno","Mesa"]},{"company":"Capital One","name":"Vivian Wu","email":"Vivian.wu.here@gmail.com","linkedIn":"https://www.linkedin.com/in/viv-wu","campus":"LA","cohort":"44","jobTitle":"Solutions Engineer","industry":"Healthcare fintech","cities":["Minneapolis","Henderson","Oakland","Stockton"]},{"company":"Capital One","name":"Vicki Yang","email":"vwyangdev@gmail.com","linkedIn":"https://www.linkedin.com/in/vwyang/","campus":"NYC","cohort":"25","jobTitle":"Senior Software Engineer","industry":"Financial Services","cities":["Berlin","Chicago","Raleigh","Aurora"]},{"company":"Capital One","name":"Walker Marsh","email":"walkermarsh9@gmail.com","linkedIn":"https://www.linkedin.com/in/WalkerVEMarsh/","campus":"NYC","cohort":"26","jobTitle":"Software Engineer, Full Stack","industry":"Fintech/ Banking","cities":["Los Angeles","Austin"]},{"company":"Capital One","name":"Kevin Richardson","email":"kevin@karcodes.com","linkedIn":"https://www.linkedin.com/in/kevinalexrichardson/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Senior Software Engineer","industry":"Other","cities":["Tucson"]},{"company":"Capital One","name":"Michael Benliyan","email":"michaelbenliyan@gmail.com","linkedIn":"michaelbenliyan","campus":"LA / WCRI","cohort":"55","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Indianapolis","Memphis","Plano","Cincinnati"]},{"company":"Capital One","name":"Nathan Cho","email":"nathan.y.cho@gmail.com","linkedIn":"https://www.linkedin.com/in/nathanycho","campus":"NYC / ECRI","cohort":"37","jobTitle":"Software Engineer","industry":"Fintech","cities":["Columbus","Minneapolis","Albuquerque"]},{"company":"Capital One","name":"Martin Ng","email":"kamartinng@gmail.com","linkedIn":"https://www.linkedin.com/in/martinngsf/","campus":"LA / WCRI","cohort":"49","jobTitle":"Senior Full Stack Engineer","industry":"Fintech","cities":["Tucson","Aurora","Omaha"]},{"company":"Capital One","name":"Honghao sun","email":"sunhonghaoshh@gmail.com","linkedIn":"https://www.linkedin.com/in/honghaosunmichael/","campus":"LA / WCRI","cohort":"52","jobTitle":"Senior Fullstack Engineer","industry":"Fintech","cities":["New Orleans"]},{"company":"Capital One Bank","name":"Donald Cross","email":"derekcrosslu@gmail.com","linkedIn":"https://www.linkedin.com/in/crossderek/","campus":"NYC","cohort":"13","jobTitle":"Front End Engineer","industry":"Finance","cities":["Riverside","Oakland","Columbus","Newark"]},{"company":"Capital Rx","name":"Htin Linn Aung","email":"htinlinnag1993@gmail.com","linkedIn":"https://www.linkedin.com/in/htinlinnaung/","campus":"PTRI","cohort":"2","jobTitle":"Senior Fullstack Software Engineer","industry":"Healthcare Tech","cities":["Milwaukee","Miami"]},{"company":"Capital Rx","name":"Jin Qin","email":"jxq32@case.edu","linkedIn":"https://www.linkedin.com/in/jcqin/","campus":"FTRI","cohort":"1","jobTitle":"Senior Fullstack Developer","industry":"Health Care","cities":["Toledo","Nashville","Winston-Salem","Irving"]},{"company":"Caraway Health","name":"Gwendolyn (Gwen) Phillips","email":"gwen.phil@gmail.com","linkedIn":"https://www.linkedin.com/in/gwen-phillips/","campus":"PTRI","cohort":"6","jobTitle":"Full Stack Engineer","industry":"Healthcare","cities":["Anchorage"]},{"company":"Carbon Mapper","name":"Zach Franz","email":"zachafranz@gmail.com","linkedIn":"https://www.linkedin.com/in/zacharyfranz/","campus":"NYC","cohort":"4","jobTitle":"Software Engineer","industry":"Research","cities":["Honolulu","Reno","Santa Ana"]},{"company":"Care/of","name":"Jake Pino","email":"Jakepino@yahoo.com","linkedIn":"https://www.linkedin.com/in/jake-pino","campus":"NYC","cohort":"30","jobTitle":"Senior Software Engineer","industry":"Wellness","cities":["Memphis","San Diego"]},{"company":"Care/of","name":"Malika Butler","email":"missemmbutler@gmail.com","linkedIn":"https://www.linkedin.com/in/malikabutler","campus":"NYC","cohort":"8","jobTitle":"Software Engineer","industry":"Health tech","cities":["Omaha","Cincinnati"]},{"company":"CareDox","name":"Christine Choi","email":"christine.yj.choi@gmail.com","linkedIn":"https://www.linkedin.com/in/christineyjchoi/","campus":"NYC","cohort":"8","jobTitle":"Software Engineer","industry":"Retail","cities":["Corpus Christi"]},{"company":"Carrot Fertility","name":"Heather Barney","email":"heather.barney@gmail.com","linkedIn":"https://www.linkedin.com/in/heather-barney1/","campus":"PTRI","cohort":"4","jobTitle":"Associate Software Engineer","industry":"Insurance","cities":["Chicago","Boston","Paris"]},{"company":"Cassian Solutions, Inc.","name":"Darin Ngau","email":"darin.ngau@gmail.com","linkedIn":"https://www.linkedin.com/in/darin-ngau/","campus":"NYC / ECRI","cohort":"34","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Greensboro","San Francisco","Albuquerque"]},{"company":"Cast & Crew","name":"Tianhao Yao","email":"mapleseventh@gmail.com","linkedIn":"https://www.linkedin.com/in/tianhao-yao-2021826a/","campus":"LA","cohort":"28","jobTitle":"Software Engineer","industry":"Entertainment","cities":["Boston","Chicago","Chandler"]},{"company":"cast and crew","name":"Sam Selfridge","email":"sirclesam@yahoo.com","linkedIn":"https://www.linkedin.com/in/sam-selfridge/","campus":"LA","cohort":"28","jobTitle":"software engineer","industry":"fintech/entertainment","cities":["Reno","Jersey City","Winston-Salem"]},{"company":"Cast.app","name":"Robert Maeda","email":"rob.maeda3@gmail.com","linkedIn":"https://www.linkedin.com/in/robert-maeda/","campus":"LA","cohort":"46","jobTitle":"Software Engineer","industry":"Fintech","cities":["Oakland","Pittsburgh","Albuquerque"]},{"company":"Catchpoint","name":"Neyser Zana","email":"neyserj.zana@gmail.com","linkedIn":"https://www.linkedin.com/in/neyser-zana-860018152/","campus":"NYC","cohort":"7","jobTitle":"Software Engineer II","industry":"Advertising","cities":["Henderson"]},{"company":"Causebox","name":"Grace Kim","email":"gracekiim@gmail.com","linkedIn":"https://www.linkedin.com/in/gracekiim/","campus":"LA","cohort":"37","jobTitle":"Software Engineer","industry":"Consumer products","cities":["Sรฃo Paulo","San Antonio","New Orleans","North Las Vegas"]},{"company":"CB Insights","name":"Hazel Na","email":"hazel.na3@gmail.com","linkedIn":"https://www.linkedin.com/in/hyeseon-na","campus":"NYC","cohort":"27","jobTitle":"Software Engineer III - Frontend","industry":"business analytics platform","cities":["Portland","Garland"]},{"company":"CBTS - CVS","name":"Chang Shuen Lee","email":"changshuen.lee@gmail.com","linkedIn":"https://www.linkedin.com/in/daveelee/","campus":"NYC","cohort":"16","jobTitle":"Frontend Software Engineer","industry":"Health","cities":["Bakersfield","Beijing"]},{"company":"Cecelia Health","name":"Kwadwo Asamoah","email":"addoasa94@gmail.com","linkedIn":"https://www.linkedin.com/in/kwadwoasamoah","campus":"NYC","cohort":"12","jobTitle":"Front End Engineer","industry":"Health","cities":["Irving","Corpus Christi","Albuquerque"]},{"company":"Cedars-Sinai Cancer","name":"William Chu","email":"Williamchu9@gmail.com","linkedIn":"https://www.linkedin.com/in/williamchu9/","campus":"LA","cohort":"49","jobTitle":"Software Engineer/Programming Analyst","industry":"Healthcare","cities":["Garland"]},{"company":"Cenith Innovations","name":"Serena Amos","email":"amos.serena17@gmail.com","linkedIn":"https://www.linkedin.com/in/serena-amos/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Software Engineer","industry":"Aerospace","cities":["Albuquerque","Durham","New Orleans"]},{"company":"Centene","name":"Serena Romano","email":"serenahromano2000@gmail.com","linkedIn":"https://www.linkedin.com/in/srom1/","campus":"NYC / ECRI","cohort":"41","jobTitle":"Full Stack Developer","industry":"Healthtech/Healthcare","cities":["Kansas City"]},{"company":"Cequint","name":"Carol Xia","email":"c.xia.98@gmail.com","linkedIn":"linkedin.com/in/carolxia2","campus":"LA / WCRI","cohort":"51","jobTitle":"Software Development Engineer","industry":"Telecommunications","cities":["Irving","Memphis","Austin","Orlando"]},{"company":"Cerebral","name":"Irine Kang","email":"irine.kang@codesmith.io","linkedIn":"https://www.linkedin.com/in/irinekang/","campus":"FTRI","cohort":"6","jobTitle":"Full Stack Engineer II","industry":"Medicine","cities":["Buffalo"]},{"company":"CH Robinson","name":"Joseph Cheng","email":"josephcheng.y@gmail.com","linkedIn":"https://www.linkedin.com/in/josephcheng-y/","campus":"LA","cohort":"39","jobTitle":"Software Engineer","industry":"Logistic","cities":["New York","Las Vegas","San Jose","Scottsdale"]},{"company":"Chainalysis","name":"Natalia Vargas-Caba","email":"nvargas@gm.slc.edu","linkedIn":"https://www.linkedin.com/in/nataliavargascaba","campus":"NYC","cohort":"17","jobTitle":"Technical Writer","industry":"Fintech","cities":["Toronto","Sacramento","Albuquerque","Tokyo"]},{"company":"Chainguard","name":"Felipe Ocampo","email":"felipe.aocampo@gmail.com","linkedIn":"https://www.linkedin.com/in/ocampofelipe/","campus":"LA / WCRI","cohort":"56","jobTitle":"Web Developer","industry":"Marketing/Advertising","cities":["Boston","Nashville","Columbus","Sรฃo Paulo"]},{"company":"Chainlink","name":"Finley Decker","email":"finleydecker@gmail.com","linkedIn":"https://www.linkedin.com/in/finleydecker/","campus":"LA / WCRI","cohort":"52","jobTitle":"Software Engineer","industry":"Blockchain/Web3","cities":["Mumbai","Laredo"]},{"company":"Change Healthcare","name":"Bruce Wong","email":"dbrucewong@gmail.com","linkedIn":"https://www.linkedin.com/in/dawong/","campus":"LA","cohort":"29","jobTitle":"Senior Software Engineer","industry":"Healthcare","cities":["Baltimore","Fort Worth","London","Lexington"]},{"company":"Change Healthcare","name":"Billy K Lee","email":"ucanfindbillie@gmail.com","linkedIn":"https://www.linkedin.com/in/billy-k-lee/","campus":"LA","cohort":"30","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Garland"]},{"company":"Change Healthcare.","name":"Noah Lee","email":"no@hlee.me","linkedIn":"https://www.linkedin.com/in/justnoah/","campus":"LA","cohort":"27","jobTitle":"Software Engineer.","industry":"Healthcare.","cities":["Lubbock","Corpus Christi","Louisville","Oklahoma City"]},{"company":"Chargebacks911","name":"Chandni Patel","email":"chandnip6@gmail.com","linkedIn":"https://www.linkedin.com/in/chandnip6/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Fintech","cities":["Lubbock","Arlington","Atlanta"]},{"company":"Chargebee Retention","name":"Abhi Krishnan","email":"krabhishaken@gmail.com","linkedIn":"https://www.linkedin.com/in/krabhishaken/","campus":"NYC","cohort":"26","jobTitle":"Senior Software Engineer","industry":"Subscription Tech","cities":["St. Louis","Beijing","Chesapeake","Cincinnati"]},{"company":"Chariot","name":"Weilan Cui","email":"weilanc@gmail.com","linkedIn":"https://www.linkedin.com/in/weilan-cui","campus":"NYC","cohort":"24","jobTitle":"Founding engineer","industry":"Software as a service","cities":["Reno","Fort Wayne"]},{"company":"Charles River","name":"Josh Howard","email":"JoshHoward.Dev@gmail.com","linkedIn":"https://www.linkedin.com/in/joshhowarddev/","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Full Stack Developer","industry":"Software / Tech","cities":["Pittsburgh"]},{"company":"Charles Schwab","name":"Troy Witonsky","email":"troywitonsky@gmail.com","linkedIn":"https://www.linkedin.com/in/troy-witonsky","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Enterprise Engineer","industry":"Fintech","cities":["Cincinnati"]},{"company":"Chattanooga Shooting Supplies","name":"Zach Hall","email":"zachh85@gmail.com","linkedIn":"linkedin.com/in/z-r-hall","campus":"NYC / ECRI","cohort":"37","jobTitle":"Senior Application Developer","industry":"Retail","cities":["Beijing","Stockton","Paris","Raleigh"]},{"company":"Cheddar Media","name":"David Neuhaus","email":"david@neuha.us","linkedIn":"https://www.linkedin.com/in/dneuhaus/","campus":"NYC","cohort":"13","jobTitle":"Sr Software Engineer","industry":"Media / News","cities":["Cleveland"]},{"company":"Chegg, Inc","name":"Kate Matthews","email":"katesmatthews@gmail.com","linkedIn":"https://www.linkedin.com/in/katesmatthews/","campus":"NYC","cohort":"11","jobTitle":"Software Engineer","industry":"EdTech","cities":["El Paso","Stockton"]},{"company":"Chewy","name":"Lucy Chi","email":"lucycchi@gmail.com","linkedIn":"https://www.linkedin.com/in/chilucy/","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Tech Consulting, Client is in HealthTech","cities":["Mexico City","Sydney","Arlington","Plano"]},{"company":"Chewy","name":"Joseph Nagy","email":"nagyjoseph29@gmail.com","linkedIn":"https://www.linkedin.com/in/josephmnagy/","campus":"NYC","cohort":"29","jobTitle":"Software Engineer","industry":"E-commerce","cities":["Tulsa","Fresno","Lexington"]},{"company":"Chief","name":"Tim Ruszala","email":"truszala@gmail.com","linkedIn":"https://www.linkedin.com/in/timruszala/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Fullstack Software Engineer","industry":"Other","cities":["Plano","Corpus Christi","Denver","Kansas City"]},{"company":"Chipper Cash","name":"Sean Lee","email":"lee.sw.sean@gmail.com","linkedIn":"https://www.linkedin.com/in/seanleesw","campus":"LA","cohort":"46","jobTitle":"Software Engineer","industry":"Fintech","cities":["Philadelphia","Bakersfield","Lincoln"]},{"company":"Choose Ketamine","name":"Eric Komatsu","email":"eric@cpgexperience.com","linkedIn":"https://www.linkedin.com/in/eric-komatsu/","campus":"LA / WCRI","cohort":"50","jobTitle":"Lead Engineer","industry":"Healthcare","cities":["Plano","Sรฃo Paulo","Baltimore"]},{"company":"Chopra Global","name":"Jonathon Gonzalez","email":"gonzalezjonathon55@gmail.com","linkedIn":"https://www.linkedin.com/in/jonathon-gonzalez/","campus":"NYC","cohort":"16","jobTitle":"Backend Engineer","industry":"Health & Wellness","cities":["Denver","North Las Vegas","Riverside"]},{"company":"Chopra Global","name":"Josh Naso","email":"jnaso29@gmail.com","linkedIn":"https://www.linkedin.com/in/joshnaso/","campus":"NYC","cohort":"16","jobTitle":"Web Developer","industry":"Meditation/self-care","cities":["Louisville","Tampa","Chula Vista"]},{"company":"ChromaCode","name":"Edwin Menendez","email":"edwinjmenendez@gmail.com","linkedIn":"https://www.linkedin.com/in/edwinmenendez/","campus":"LA","cohort":"36","jobTitle":"Software Engineer","industry":"Bio-Tech","cities":["Virginia Beach"]},{"company":"Chubb insurance","name":"Robert Hernandez","email":"Rob23Hernandez@gmail.com","linkedIn":"https://www.linkedin.com/in/robhernandeznyc/","campus":"NYC","cohort":"26","jobTitle":"Software Engineer","industry":"Insurance","cities":["Anchorage"]},{"company":"Cigna","name":"JC Fernandez","email":"jorgecarlosfern@gmail.com","linkedIn":"https://www.linkedin.com/in/jorge-carlos-fernandez/","campus":"LA","cohort":"42","jobTitle":"Full Stack Engineer","industry":"Health Care","cities":["Buffalo","Winston-Salem","Anaheim","Colorado Springs"]},{"company":"CIMx","name":"Christian Springer","email":"christian@christianspringer.com","linkedIn":"https://www.linkedin.com/in/christian-springer0/","campus":"PTRI","cohort":"7","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["North Las Vegas","Lincoln","Pittsburgh"]},{"company":"CircleCI","name":"Ai Mi Bui","email":"Aimibui22@gmail.com","linkedIn":"https://www.linkedin.com/in/aimibui/","campus":"NYC","cohort":"22","jobTitle":"Software Engineer","industry":"Software","cities":["Arlington","Los Angeles","Gilbert"]},{"company":"CircleCI","name":"Jeff Chen","email":"contact.jeffchen@gmail.com","linkedIn":"https://www.linkedin.com/in/jalexchen/","campus":"LA","cohort":"43","jobTitle":"Software Development Engineer","industry":"Tech","cities":["Baltimore","Charlotte","Boston","Norfolk"]},{"company":"CircleCI","name":"Tony Shen","email":"tshen815@live.com","linkedIn":"https://www.linkedin.com/in/tonyShen815/","campus":"LA","cohort":"35","jobTitle":"Software Engineer","industry":"Computer Software/Tech","cities":["Las Vegas","Durham","Orlando"]},{"company":"CircleCI","name":"Tyler Sullberg","email":"tysullberg@gmail.com","linkedIn":"https://www.linkedin.com/in/tyler-sullberg/","campus":"LA","cohort":"36","jobTitle":"Software Engineer","industry":"Dev Ops","cities":["Long Beach","Fort Wayne","New Orleans","Charlotte"]},{"company":"Cisco","name":"Laura Llano","email":"ldllano@gmail.com","linkedIn":"https://www.linkedin.com/in/laura-llano","campus":"NYC","cohort":"26","jobTitle":"Software Engineering","industry":"Software / Tech","cities":["Tampa","Las Vegas"]},{"company":"Cisco Systems, Inc.","name":"Egon Levy","email":"egonlevy@gmail.com","linkedIn":"https://www.linkedin.com/in/egon-levy-8b62aa1b0/","campus":"NYC","cohort":"18","jobTitle":"Senior Software Engineer","industry":"Computer Engineering","cities":["San Francisco","Indianapolis","Colorado Springs","Seattle"]},{"company":"Citi","name":"Max Heubel","email":"maxhuebel@gmail.com","linkedIn":"https://www.linkedin.com/in/max-heubel/","campus":"NYC / ECRI","cohort":"37","jobTitle":"Sr. Programmer Analyst","industry":"Fintech","cities":["Boston","Lincoln","Honolulu"]},{"company":"Citi (Citicorp Credit Services, Inc.)","name":"Reland Boyle","email":"reland.boyle@gmail.com","linkedIn":"https://www.linkedin.com/in/relandboyle/","campus":"FTRI","cohort":"4","jobTitle":"Digital Software Engineer / Senior Analyst - C12, Assistant Vice President of Matrix Reportingโ€‹","industry":"Fintech","cities":["Long Beach","Berlin","Irvine"]},{"company":"Cityblock","name":"Oluwajomiloju Olaode","email":"jojuolaode@gmail.com","linkedIn":"https://www.linkedin.com/in/jojuolaode/","campus":"NYC","cohort":"18","jobTitle":"Senior Software Engineer","industry":"Healthcare","cities":["Glendale"]},{"company":"Civera","name":"Hank McGill","email":"henrymcgill@gmail.com","linkedIn":"https://www.linkedin.com/in/hank-mcgill/","campus":"NYOI","cohort":"4","jobTitle":"Data Engineering Fellow","industry":"Government","cities":["St. Petersburg","Memphis","Honolulu"]},{"company":"CivilGrid","name":"Jack Moorman","email":"johnmoormaniii@gmail.com","linkedIn":"www.linkedin.com/in/jack-moorman","campus":"FTRI / CTRI","cohort":"14","jobTitle":"Software Engineer","industry":"Other","cities":["Cincinnati","Pittsburgh","Honolulu","Norfolk"]},{"company":"Classy","name":"Kim Spicer","email":"Kspicerny@gmail.com","linkedIn":"https://www.linkedin.com/in/kimberleyspicer/","campus":"LA","cohort":"41","jobTitle":"Software Engineer","industry":"Software","cities":["Aurora","Winston-Salem","Berlin","Chicago"]},{"company":"Clear","name":"Nate Adams","email":"NathanielBAdams@gmail.com","linkedIn":"https://www.linkedin.com/in/adamsnathaniel/","campus":"NYC","cohort":"21","jobTitle":"Software Engineer","industry":"Biometrics / Security services","cities":["El Paso","Tokyo"]},{"company":"Clear Capital","name":"Sean Haverstock","email":"seanhaverstock@gmail.com","linkedIn":"https://www.linkedin.com/in/sean-haverstock/","campus":"LA","cohort":"37","jobTitle":"Associate Software Engineer","industry":"Fintech, Real Estate","cities":["Dallas","Berlin"]},{"company":"Clevyr","name":"Michael Watson","email":"mdwatson988@gmail.com","linkedIn":"https://www.linkedin.com/in/mdwatson988/","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Jr. Software Developer","industry":"Software / Tech","cities":["Long Beach"]},{"company":"Clicktripz","name":"Bryan Bart","email":"bart.bryan.e@gmail.com","linkedIn":"https://www.linkedin.com/in/bryan-bart/","campus":"LA","cohort":"48","jobTitle":"Software Engineer","industry":"Travel Technology","cities":["Anchorage"]},{"company":"Clover","name":"Michael Trapani","email":"mtrapani27@gmail.com","linkedIn":"https://www.linkedin.com/in/michael-a-trapani/","campus":"NYC","cohort":"31","jobTitle":"Web Software Engineer","industry":"Software / Tech","cities":["Chesapeake","Cincinnati"]},{"company":"ClubLabs","name":"Natlyn Phomsavanh","email":"natlynp@gmail.com","linkedIn":"","campus":"LA","cohort":"28","jobTitle":"Software Engineer","industry":"Insurance/Travel","cities":["Seattle"]},{"company":"ClubLabs","name":"Talya Sasek","email":"talyaercag@gmail.com","linkedIn":"https://www.linkedin.com/in/talyasasek/","campus":"LA","cohort":"32","jobTitle":"Software Engineer","industry":"Insurance","cities":["Philadelphia"]},{"company":"CoachEm","name":"Matthew Garza","email":"mattg614@gmail.com","linkedIn":"https://www.linkedin.com/in/garzamatte/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Full Stack Software Engineer","industry":"Software / Tech","cities":["Corpus Christi","Minneapolis","St. Louis"]},{"company":"Coates Group","name":"Paul Kim","email":"paulkim0209@gmail.com","linkedIn":"https://www.linkedin.com/in/paul-kim-37735b217","campus":"NYC / ECRI","cohort":"41","jobTitle":"Backend Engineer","industry":"Business Tech/Enterprise Tech","cities":["Paris","Winston-Salem","Toledo"]},{"company":"Cobalt.io","name":"Karl Richards","email":"krichards175@gmail.com","linkedIn":"https://www.linkedin.com/in/krichards175/","campus":"NYC / ECRI","cohort":"33","jobTitle":"Data Engineer","industry":"Security","cities":["Memphis","Cincinnati"]},{"company":"Cobble","name":"Matt Peters","email":"matt@mpeters.io","linkedIn":"https://www.linkedin.com/in/mattgpeters","campus":"NYC","cohort":"16","jobTitle":"Frontend Engineer","industry":"Leisure, Travel & Tourism","cities":["Chesapeake","Dallas"]},{"company":"Code Climate","name":"Margaret Ma","email":"margaretma00@gmail.com","linkedIn":"https://www.linkedin.com/in/margaret-ma/","campus":"NYC","cohort":"3","jobTitle":"Software Engineer","industry":"","cities":["San Francisco","Garland","Seattle"]},{"company":"Coder","name":"Michael Smith","email":"throwawayclover@gmail.com","linkedIn":"www.linkedin.com/in/michael-eric-smith","campus":"NYC / ECRI","cohort":"33","jobTitle":"Software Engineer","industry":"Software Solutions/Developer Tools","cities":["Buffalo","Miami","Memphis","Tampa"]},{"company":"Codesmith","name":"Terry L. Tilley","email":"terryltilley@gmail.com","linkedIn":"https://www.linkedin.com/in/t-l-tilley/","campus":"LA","cohort":"44","jobTitle":"Instruction Training Manager","industry":"Software/Tech","cities":["Tampa"]},{"company":"Cofebe","name":"Seong Choi","email":"choies921003@gmail.com","linkedIn":"https://www.linkedin.com/in/seongchoi/","campus":"LA","cohort":"32","jobTitle":"Software Engineer","industry":"Computer Software","cities":["Reno","Stockton","Madison","Portland"]},{"company":"Cognizant","name":"Scott Burman","email":"Scottburs@gmail.com","linkedIn":"https://www.linkedin.com/in/scottburman847/","campus":"LA","cohort":"39","jobTitle":"Senior Developer","industry":"Technology","cities":["Henderson","Greensboro"]},{"company":"Cohere AI","name":"Zahara Aviv ","email":"zahara.aviv@gmail.com","linkedIn":"https://linkedIn.com/in/zahara-aviv","campus":"NYC / ECRI","cohort":"38","jobTitle":"Senior Full Stack Engineer ","industry":"Artificial Intelligence","cities":["Houston","Tulsa","Colorado Springs","Winston-Salem"]},{"company":"CoinCircle","name":"Andrew Fuselier","email":"theandewlarry@gmail.com","linkedIn":"https://www.linkedin.com/in/andrewfuselier/","campus":"LA","cohort":"19","jobTitle":"Software Engineer","industry":"","cities":["Madison","Chesapeake","Houston"]},{"company":"Collective Health","name":"Daryl Foster","email":"dmafoster@gmail.com","linkedIn":"https://www.linkedin.com/in/darylfosterma/","campus":"LA","cohort":"42","jobTitle":"Senior Frontend Engineer","industry":"Health Tech (Healthplan Administration for 1000 plus employee companies)","cities":["Winston-Salem","Long Beach","Lexington"]},{"company":"Colliers - Contract position through Hays","name":"Pauline Nguyen","email":"Paulinekpn@gmail.com","linkedIn":"https://www.linkedin.com/in/paulineknguyen/","campus":"LA / WCRI","cohort":"55","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Fort Wayne","Kansas City","Las Vegas","Austin"]},{"company":"Comcast","name":"Brian Chiang","email":"brianchiang2008@gmail.com","linkedIn":"linkedin.com/in/brian-chiang4","campus":"LA / WCRI","cohort":"48","jobTitle":"Software Engineer","industry":"Media","cities":["Albuquerque","Portland"]},{"company":"Comcast","name":"Darwin Sinchi","email":"dsinchi19@gmail.com","linkedIn":"https://www.linkedin.com/in/darwin-m-sinchi/","campus":"NYC","cohort":"20","jobTitle":"Software Engineer","industry":"TeleCom","cities":["New York","Toronto","Washington","Gilbert"]},{"company":"Comcast","name":"Matthew Francis","email":"mbfrancis7@gmail.com","linkedIn":"https://www.linkedin.com/in/mbfrancis7/","campus":"NYC","cohort":"7","jobTitle":"Software Developer","industry":"","cities":["Mumbai"]},{"company":"Comcast","name":"Yong-Nicholas Alexander Kim","email":"yongnicholaskim@gmail.com","linkedIn":"https://www.linkedin.com/in/yongnicholaskim/","campus":"NYC","cohort":"7","jobTitle":"Node.js Engineer","industry":"Commercial Services","cities":["Paris","Stockton","Buffalo","Anaheim"]},{"company":"CommonBond","name":"Nathan Bargers","email":"nbargers@gmail.com","linkedIn":"https://www.linkedin.com/in/nathan-bargers/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Finance","cities":["Jacksonville","Mumbai"]},{"company":"Community Attributes Inc","name":"Carter Long","email":"crlong7@gmail.com","linkedIn":"https://www.linkedin.com/in/carterrobertlong/","campus":"FTRI / CTRI","cohort":"15","jobTitle":"Full Stack Developer","industry":"Consulting","cities":["Columbus","Garland","Anaheim","Chula Vista"]},{"company":"Compass","name":"Casey Walker","email":"casey.e.walker@gmail.com","linkedIn":"https://www.linkedin.com/in/caseyewalker","campus":"LA","cohort":"38","jobTitle":"Software Engineer II","industry":"Real Estate","cities":["Chicago","Houston","Indianapolis"]},{"company":"Compass","name":"Liam McBride","email":"liameno16@gmail.com","linkedIn":"https://www.linkedin.com/in/liamemcbride/","campus":"LA","cohort":"36","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Irvine"]},{"company":"Compass","name":"Sierra Swaby","email":"Sierra.swaby@gmail.com","linkedIn":"https://www.linkedin.com/in/Sierra-swaby","campus":"NYC","cohort":"12","jobTitle":"Creative Developer","industry":"Real Estate","cities":["Madison","New Orleans"]},{"company":"Compliancy Group","name":"Bruno Albero","email":"alberobruno@gmail.com","linkedIn":"https://www.linkedin.com/in/alberobruno/","campus":"NYC / ECRI","cohort":"34","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Mesa","Seattle","Greensboro","Wichita"]},{"company":"Conagra Brands","name":"Scott Hallock","email":"scott.hallock@gmail.com","linkedIn":"https://www.linkedin.com/in/scottjhallock","campus":"FTRI / CTRI","cohort":"16","jobTitle":"Senior Software Engineer","industry":"Food/Beverage/Restaurant","cities":["Berlin","Baltimore","San Jose"]},{"company":"Concert Health","name":"Raubern Totanes","email":"rstotanes@g.ucla.edu","linkedIn":"https://www.linkedin.com/in/rauberntotanes/","campus":"NYC","cohort":"26","jobTitle":"Software Development Engineer","industry":"Health Tech","cities":["Miami"]},{"company":"Contracting for Perspecta Labs via Roc Search via Precision Global Consulting","name":"Ben Mizel","email":"ben.mizel@gmail.com","linkedIn":"https://www.linkedin.com/in/ben-mizel/","campus":"NYC","cohort":"15","jobTitle":"Back End Software Engineer","industry":"Defense","cities":["Oklahoma City"]},{"company":"Core Business Technology","name":"Jason Hwang","email":"hwangja1019@gmail.com","linkedIn":"https://www.linkedin.com/in/jason-jh-hwang/","campus":"NYC / ECRI","cohort":"37","jobTitle":"Associate Engineer","industry":"Fintech","cities":["San Jose"]},{"company":"Core Digital Media","name":"Edward Greenberg","email":"ed.w.greenberg@gmail.com","linkedIn":"https://www.linkedin.com/in/edwgreenberg/","campus":"NYC","cohort":"14","jobTitle":"Senior Web Developer","industry":"Software","cities":["Jacksonville"]},{"company":"Cosm","name":"Shana Hoehn","email":"Shanahoehn@gmail.com","linkedIn":"","campus":"LA","cohort":"41","jobTitle":"Software Engineer","industry":"Entertainment technology","cities":["San Francisco","London"]},{"company":"Costa Farms LLC","name":"Ernesto Gonzalez","email":"egonzalez442@gmail.com","linkedIn":"https://www.linkedin.com/in/ernesto-gonzalez123","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Software Engineer","industry":"Agriculture Science","cities":["Austin","Tokyo","Mumbai"]},{"company":"CoStar","name":"Prasad Pulaguntla","email":"prasad.pul@gmail.com","linkedIn":"https://www.linkedin.com/in/prasad-pulaguntla/","campus":"FTRI","cohort":"2","jobTitle":"Lead Software Engineer","industry":"Commercial Real Estate","cities":["Kansas City"]},{"company":"CoStar Group","name":"Alan Richardson","email":"alanrichardson723@gmail.com","linkedIn":"","campus":"NYC / ECRI","cohort":"29","jobTitle":"Associate Software Engineer","industry":"Real Estate","cities":["Arlington","Beijing"]},{"company":"CoStar Group","name":"Julian Kang","email":"julianswkang@gmail.com","linkedIn":"https://www.linkedin.com/in/julianswkang","campus":"NYC / ECRI","cohort":"32","jobTitle":"Software Engineer II","industry":"Real Estate","cities":["Las Vegas","Albuquerque","Anaheim","St. Petersburg"]},{"company":"CoStar Group","name":"Kevin Berlanga","email":"kvnberlanga@gmail.com","linkedIn":"https://www.linkedin.com/in/kevinberlanga/","campus":"PTRI","cohort":"2","jobTitle":"Software Engineer II","industry":"Real Estate","cities":["Sydney","Aurora","Orlando"]},{"company":"CoStar Group","name":"Ruzeb Chowdhury","email":"ruzeb1996@gmail.com","linkedIn":"https://www.linkedin.com/in/ruzebchowdhury/","campus":"NYC","cohort":"30","jobTitle":"Frontend Engineer","industry":"Commercial Real Estate","cities":["Fort Worth","Fresno"]},{"company":"Coursetune","name":"John Maltese","email":"john.maltese@gmail.com","linkedIn":"https://www.linkedin.com/in/john-maltese/","campus":"NYC","cohort":"26","jobTitle":"Senior Software Engineer/Web App Architect","industry":"Software / Tech","cities":["Durham","Atlanta","Indianapolis","Jersey City"]},{"company":"Courted","name":"Sett Hein","email":"settnaing199@gmail.com","linkedIn":"https://www.linkedin.com/in/sett-hein/","campus":"FTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Minneapolis"]},{"company":"Cox Automotive","name":"Tarik Mokhtech","email":"tarik.mokhtech@gmail.com","linkedIn":"https://www.linkedin.com/in/tarik-mokhtech/","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Software Engineer II","industry":"Automotive","cities":["Louisville","Denver"]},{"company":"Cox Automotive","name":"Tarik Mokhtech","email":"tarik.mokhtech@gmail.com","linkedIn":"https://www.linkedin.com/in/tarik-mokhtech/","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Software Engineer II","industry":"Automotive","cities":["Columbus","Chicago","Cincinnati","St. Petersburg"]},{"company":"Credera","name":"Nisa Lintakoon","email":"nisa.lintakoon@gmail.com","linkedIn":"https://www.linkedin.com/in/nisalintakoon","campus":"FTRI","cohort":"1","jobTitle":"Technology Solutions Consultant","industry":"Consulting","cities":["Riverside","Portland"]},{"company":"Crescita","name":"Gordon Campbell","email":"gordonspencer.c@gmail.com","linkedIn":"","campus":"NYC","cohort":"14","jobTitle":"Software Engineer","industry":"VC","cities":["Jacksonville","Glendale","Columbus"]},{"company":"Cricket Health","name":"Lina Shin","email":"rxlina01@gmail.com","linkedIn":"https://www.linkedin.com/in/rxlina/","campus":"LA","cohort":"45","jobTitle":"Fullstack Software Engineer","industry":"Healthcare","cities":["North Las Vegas","Seattle","Los Angeles"]},{"company":"Crisis Text Line","name":"Chan Choi","email":"chanychoi93@gmail.com","linkedIn":"https://www.linkedin.com/in/chan-choi/","campus":"NYC","cohort":"21","jobTitle":"Software Engineer","industry":"Mental Health Services","cities":["Jacksonville"]},{"company":"Crocs","name":"Mark Charles Smith","email":"markcharlessmith@gmail.com","linkedIn":"https://www.linkedin.com/in/mark-charles-smith/","campus":"NYC / ECRI","cohort":"31","jobTitle":"Senior React Developer","industry":"Consumer Goods: Fashion","cities":["Paris","Tampa","Omaha","Fort Wayne"]},{"company":"Crossbeam","name":"Harrison Cramer","email":"Harrisoncramer@gmail.com","linkedIn":"https://www.linkedin.com/in/harrison-cramer","campus":"NYC","cohort":"27","jobTitle":"Software engineer","industry":"SaaS","cities":["Anchorage"]},{"company":"Crossbeam","name":"Aryeh Kobrinsky","email":"shmaryeh@gmail.com","linkedIn":"https://www.linkedin.com/in/aryehkobrinsky/","campus":"NYC","cohort":"20","jobTitle":"Software Engineer","industry":"Data Analytics","cities":["Aurora","Corpus Christi"]},{"company":"Crossover Health","name":"Heather Friedman","email":"hfried25@gmail.com","linkedIn":"https://www.linkedin.com/in/hgfriedman/","campus":"NYC","cohort":"20","jobTitle":"Senior Software Engineer","industry":"Health","cities":["Scottsdale","Raleigh"]},{"company":"Crossover Health","name":"Taylor Riley Du","email":"taylor.r.du@gmail.com","linkedIn":"https://www.linkedin.com/in/taylordu/","campus":"NYC","cohort":"20","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Seattle","Scottsdale","Stockton"]},{"company":"Crowdstrike","name":"yi bo (eddie) wang","email":"eddiewang12345@gmail.com","linkedIn":"https://www.linkedin.com/in/eddie-wang2/","campus":"NYC","cohort":"26","jobTitle":"Software Developer","industry":"Cybersecurity","cities":["Phoenix","El Paso","Detroit","Virginia Beach"]},{"company":"Crowley","name":"Alina Gasperino","email":"alina.gasperino@gmail.com","linkedIn":"https://www.linkedin.com/in/alinagasperino/","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Software Engineer III","industry":"Other","cities":["El Paso","Madison","Kansas City"]},{"company":"Crown Sterling","name":"Shirin Davis","email":"Shirinlittle94@gmail.com","linkedIn":"","campus":"LA","cohort":"39","jobTitle":"Software engineer","industry":"Cryptography","cities":["Las Vegas","Irving","Houston","San Antonio"]},{"company":"CrunchyBananas","name":"Corey Morrison","email":"corey.neil.morrison@gmail.com","linkedIn":"https://www.linkedin.com/in/corey-morrison","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Software Engineer","industry":"Consulting","cities":["Mesa","Virginia Beach","Wichita"]},{"company":"Crunchyroll","name":"Brit Lim","email":"britsta92@gmail.com","linkedIn":"https://www.linkedin.com/in/brit-lim/","campus":"FTRI","cohort":"5","jobTitle":"Full Stack Software Engineer","industry":"Entertainment","cities":["Philadelphia","Lubbock","Portland","Berlin"]},{"company":"CSI Interfusion","name":"Snow Bai","email":"xueapp@gmail.com","linkedIn":"https://www.linkedin.com/in/xuebaiprofile/","campus":"LA / WCRI","cohort":"55","jobTitle":"Fullstack Engineer","industry":"Software / Tech","cities":["Fresno","Stockton","Denver"]},{"company":"Culture Biosciences","name":"Savitri Beaver","email":"savitribeaver@gmail.com","linkedIn":"https://www.linkedin.com/in/savitribeaver","campus":"FTRI","cohort":"3","jobTitle":"Software Engineer I","industry":"Biotech","cities":["Berlin","Philadelphia"]},{"company":"Curia.ai","name":"Young Min Lee","email":"youngmineeh@gmail.com","linkedIn":"https://www.linkedin.com/in/youngminlee-/","campus":"LA","cohort":"48","jobTitle":"Senior Software Engineer","industry":"Healthcare, AI","cities":["Bakersfield","Saint Paul","Toronto","Jacksonville"]},{"company":"Currency","name":"Jason Wong","email":"jwaosnogn@gmail.com","linkedIn":"https://www.linkedin.com/in/jwong1995/","campus":"LA","cohort":"25","jobTitle":"Full Stack Developer","industry":"","cities":["Tokyo"]},{"company":"Cutover","name":"Paul Rhee","email":"youjun27@gmail.com","linkedIn":"https://www.linkedin.com/in/prheee","campus":"NYC","cohort":"13","jobTitle":"Software Engineer","industry":"Fintech","cities":["Plano","Denver","Chula Vista"]},{"company":"CVS","name":"Mario Eldin","email":"marioeldin@gmail.com","linkedIn":"https://www.linkedin.com/in/marioeldin/","campus":"LA","cohort":"40","jobTitle":"Software Engineer","industry":"Health/Insurance","cities":["Reno"]},{"company":"CVS","name":"Vinh Chau","email":"vchau511@gmail.com","linkedIn":"https://www.linkedin.com/in/vinh-chau/","campus":"NYC","cohort":"16","jobTitle":"Software Engineer","industry":"Pharmacy","cities":["El Paso","Lincoln"]},{"company":"CVS Health","name":"Connor Bovino","email":"connor.bovino@gmail.com","linkedIn":"https://www.linkedin.com/in/connor-bovino/","campus":"NYC","cohort":"16","jobTitle":"Fullstack Node.js Developer (Software Engineer)","industry":"Health","cities":["Beijing"]},{"company":"CVS Health","name":"Satyam sheth","email":"Snsheth55@gmail.com","linkedIn":"https://www.linkedin.com/in/satyamsheth55/","campus":"NYC","cohort":"5","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Minneapolis"]},{"company":"CVS Health","name":"Windu Sayles","email":"Windu.Sayles@gmail.com","linkedIn":"https://www.linkedin.com/in/windusayles/","campus":"LA","cohort":"40","jobTitle":"Full Stack Node Developer","industry":"Health","cities":["Toledo","Chandler","Cincinnati"]},{"company":"CVS Health/ Aetna","name":"Miklos Kertesz","email":"mikloslkertesz@gmail.com","linkedIn":"https://www.linkedin.com/in/mikl%C3%B3s-kert%C3%A9sz/","campus":"PTRI","cohort":"3","jobTitle":"Data Engineer - Web UI Engineer","industry":"health","cities":["North Las Vegas","Wichita"]},{"company":"Cyber Popup","name":"Stephen Fitzsimmons","email":"smf0211@gmail.com","linkedIn":"https://www.linkedin.com/in/stephenfitzsimmons","campus":"NYC / ECRI","cohort":"36","jobTitle":"Lead Full Stack Engineer","industry":"Software / Tech","cities":["Atlanta","Lincoln","San Francisco"]},{"company":"Cybereason","name":"Phoebe Ermert","email":"phoebeermert@gmail.com","linkedIn":"https://www.linkedin.com/in/phoebe-ermert/","campus":"NYC / ECRI","cohort":"36","jobTitle":"Full Stack Engineer","industry":"Other","cities":["Laredo","Riverside","Omaha"]},{"company":"Cyborg, Inc","name":"Jim Armbruster","email":"JMArmbruster@gmail.com","linkedIn":"https://www.linkedin.com/in/jim-armbruster/","campus":"NYC","cohort":"19","jobTitle":"Full-Stack Engineer","industry":"Computer Software","cities":["Dallas","Glendale","Chesapeake"]},{"company":"Cyderes","name":"Giovanni Flores-Lovo","email":"giovanniflores.l@gmail.com","linkedIn":"https://www.linkedin.com/in/giovanni-flores-lovo-11a288232/","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Engineer","industry":"Security","cities":["Colorado Springs","Orlando"]},{"company":"Dandy","name":"Aram Krakirian","email":"aramkrakirian@gmail.com","linkedIn":"https://www.linkedin.com/in/aram-krakirian/","campus":"LA","cohort":"47","jobTitle":"Software Engineer","industry":"Other","cities":["Austin","Raleigh","Glendale","New York"]},{"company":"Data Intelligence","name":"Jimmy Mei","email":"Jimmy27mei@gmail.com","linkedIn":"https://www.linkedin.com/in/jimmymei/","campus":"NYC","cohort":"16","jobTitle":"Full Stack Engineer","industry":"Tech consultant","cities":["Cleveland","London","St. Petersburg"]},{"company":"Data Surge LLC","name":"Hang Xu","email":"hxu009@gmail.com","linkedIn":"https://www.linkedin.com/in/hangxu09/","campus":"NYC","cohort":"18","jobTitle":"Data Engineer","industry":"Data solutions","cities":["Irving","Aurora","Toronto","Philadelphia"]},{"company":"Databook","name":"Julie Wu","email":"scorp_only@yahoo.com","linkedIn":"https://www.linkedin.com/in/yu-ting-w/","campus":"LA","cohort":"40","jobTitle":"Sr Software Engineer","industry":"Sales","cities":["Fort Worth","Lincoln","Beijing"]},{"company":"Datacoral","name":"Jae Park","email":"woojae.jay.park@gmail.com","linkedIn":"","campus":"NYC","cohort":"8","jobTitle":"Software Engineer","industry":"Fashion/E-Commerce","cities":["Fort Wayne"]},{"company":"Datametrics","name":"Luis Navarro","email":"pozhiin@hotmail.com","linkedIn":"https://www.linkedin.com/in/luis-e-navarro/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Frontend Developer","industry":"Software / Tech","cities":["Honolulu"]},{"company":"DAZN","name":"Leonoor Rinke de Wit","email":"lrinkedewit@gmail.com","linkedIn":"https://www.linkedin.com/in/leonoorrinkedewit/","campus":"NYC","cohort":"31","jobTitle":"Backend Software Engineer","industry":"Media","cities":["Irving"]},{"company":"DealPath","name":"Huy Bui","email":"huybui.sj@gmail.com","linkedIn":"https://www.linkedin.com/in/huyqbui/","campus":"NYC","cohort":"30","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Philadelphia"]},{"company":"Decent Labs","name":"Julia Collins","email":"Julia.col@protonmail.com","linkedIn":"https://www.linkedin.com/in/julia-col","campus":"PTRI","cohort":"2","jobTitle":"Full Stack Web3 Engineer","industry":"Crypto","cities":["Houston","Atlanta","Garland"]},{"company":"Deloitte","name":"Justin Buckner","email":"jwbprofessional@gmail.com","linkedIn":"https://www.linkedin.com/in/jbuild/","campus":"FTRI","cohort":"3","jobTitle":"Consultant - front end developer","industry":"Consulting","cities":["Toronto"]},{"company":"Delta Air Lines","name":"Joal Kim","email":"joalkims@gmail.com","linkedIn":"https://www.linkedin.com/in/joal-kim","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Airline","cities":["Detroit","Gilbert","Tulsa","Riverside"]},{"company":"DeltaMath","name":"Hannah McDowell","email":"hannah.mcdowell1@gmail.com","linkedIn":"https://www.linkedin.com/in/hannah-lisbeth-mcdowell/","campus":"LA / WCRI","cohort":"52","jobTitle":"Software Engineer","industry":"Other","cities":["Stockton"]},{"company":"DeMark Analytics LLC","name":"SEUNGHO BAEK","email":"shbaek115@gmail.com","linkedIn":"","campus":"LA","cohort":"37","jobTitle":"Software Engineer","industry":"Software & Tech services","cities":["Louisville"]},{"company":"Dematic","name":"Liang Wen (Rocky) Lin","email":"liangwen511@gmail.com","linkedIn":"https://www.linkedin.com/in/rocky-lin/","campus":"NYC","cohort":"14","jobTitle":"Senior Software Engineer","industry":"Manufacturing and Distribution","cities":["Denver","Jacksonville","London"]},{"company":"Dendi Software","name":"Ozair Ghulam","email":"Ozairghulam4@gmail.com","linkedIn":"https://www.linkedin.com/in/ozair-ghulam","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Forward deployed software engineer","industry":"Healthcare","cities":["Tulsa","London","Anchorage"]},{"company":"Denizen","name":"Greg Domingue","email":"Greg.domingue1@gmail.com","linkedIn":"https://www.linkedin.com/in/greg-domingue","campus":"LA","cohort":"23","jobTitle":"Full Stack Software Engineer","industry":"International Banking","cities":["Irving","Aurora","Madison"]},{"company":"Density","name":"Timothy Weidinger","email":"timothy.weidinger@gmail.com","linkedIn":"https://www.linkedin.com/in/timweidinger/","campus":"NYC / ECRI","cohort":"41","jobTitle":"Senior Full Stack Software Engineer","industry":"Data/Analytics/Cloud","cities":["Greensboro","Santa Ana","St. Louis"]},{"company":"Derivco Sports","name":"Denny Temple","email":"denny.temple@gmail.com","linkedIn":"https://www.linkedin.com/in/dentemple/","campus":"NYC","cohort":"6","jobTitle":"Software Engineer","industry":"","cities":["Toronto","Memphis","San Diego","Anchorage"]},{"company":"Destination Pet","name":"Nicholas Jordan Brush","email":"njbrush@gmail.com","linkedIn":"https://www.linkedin.com/in/nicholas-j-brush?trk=people-guest_people_search-card","campus":"LA","cohort":"42","jobTitle":"Software Engineer","industry":"Pet healthcare","cities":["Oakland","Omaha","Winston-Salem","Tokyo"]},{"company":"DexCare","name":"Nhan Ly","email":"nhansense1@gmail.com","linkedIn":"https://www.linkedin.com/in/nhanly/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Healthtech","cities":["San Diego","Sacramento","Las Vegas","Bakersfield"]},{"company":"Diamond Web Services","name":"Ben Gummelt","email":"Camaromelt@gmail.com","linkedIn":"https://www.linkedin.com/in/benjamingummelt","campus":"LA","cohort":"20","jobTitle":"Full stack software engineer","industry":"","cities":["San Francisco","Henderson","Cleveland"]},{"company":"Diamond Web Services","name":"Gregory Palasciano","email":"greg.palasciano@gmail.com","linkedIn":"https://www.linkedin.com/in/gregory-palasciano/","campus":"LA","cohort":"36","jobTitle":"Fullstack Engineer","industry":"Entertainment/Consulting","cities":["Toledo","Chandler"]},{"company":"Diamond Web Services","name":"Jonathan Perera","email":"Jon.p@codesmith.io","linkedIn":"https://www.linkedin.com/in/japerera/","campus":"LA","cohort":"22","jobTitle":"Developer","industry":"","cities":["Colorado Springs"]},{"company":"Diana Health","name":"Jackson Dahl","email":"jacksondahl27@gmail.com","linkedIn":"https://www.linkedin.com/in/jackson-dahl/","campus":"NYOI","cohort":"4","jobTitle":"Full Stack Software Engineer","industry":"Healthtech/Healthcare","cities":["Pittsburgh","Anchorage","Plano"]},{"company":"Dick's Sporting Goods","name":"Brian Hon","email":"brianwhon@gmail.com","linkedIn":"https://www.linkedin.com/in/brianwhon/","campus":"NYC","cohort":"8","jobTitle":"Software Engineer","industry":"Retail","cities":["Madison","Lexington"]},{"company":"DigiCert","name":"James M Espy II","email":"jespy2@gmail.com","linkedIn":"https://www.linkedin.com/in/jamesespy/","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"digital certificates / security","cities":["Sรฃo Paulo"]},{"company":"Digilock","name":"Aaron Yang","email":"aaronyang024@gmail.com","linkedIn":"https://www.linkedin.com/in/aaronyang24/","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Electronic Manufacturing","cities":["Sacramento","Anchorage"]},{"company":"Digital Position","name":"Joe Beger","email":"jtbeger@gmail.com","linkedIn":"https://www.linkedin.com/in/jtbeger/","campus":"NYC","cohort":"22","jobTitle":"Developer","industry":"SEO","cities":["Nashville","Mumbai"]},{"company":"DigitalOcean","name":"Natalia Vargas-Caba","email":"nvargascaba@gmail.com","linkedIn":"https://www.linkedin.com/in/nataliavargascaba","campus":"NYC","cohort":"17","jobTitle":"Technical Editor","industry":"Cloud service","cities":["Tulsa","Colorado Springs","Tampa","Oakland"]},{"company":"Discord","name":"Jacob Richards","email":"jacob.richards33@gmail.com","linkedIn":"https://www.linkedin.com/in/palgorhythm/","campus":"LA","cohort":"29","jobTitle":"Senior Software Engineer","industry":"Tech","cities":["Glendale","New Orleans","Atlanta"]},{"company":"Discovery","name":"adele calvo","email":"adelecalvo@gmail.com","linkedIn":"https://www.linkedin.com/in/adelecalvo/","campus":"NYC","cohort":"9","jobTitle":"Software Engineer I, UI,","industry":"Blockchain","cities":["Glendale","Minneapolis"]},{"company":"Discovery","name":"Sarah t Renshaw","email":"strenshaw@gmail.com","linkedIn":"https://linkedin.com/in/strenshaw/","campus":"NYC","cohort":"2","jobTitle":"Software Engineer I","industry":"Music","cities":["San Diego","Chicago","Glendale"]},{"company":"Disney Streaming","name":"Daniel Palumbo","email":"Drpalumbo17@gmail.com","linkedIn":"https://www.linkedin.com/in/daniel-palumbo-735715137","campus":"NYC / ECRI","cohort":"32","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Reno"]},{"company":"Disney Streaming","name":"Nat Heller","email":"nat.w.heller@gmail.com","linkedIn":"https://www.linkedin.com/in/natwheller/","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Software Engineer","industry":"Entertainment","cities":["Colorado Springs","Scottsdale","Chandler","Durham"]},{"company":"Disney Streaming","name":"Frank Ma","email":"yurenfrankma@gmail.com","linkedIn":"https://www.linkedin.com/in/frankma2","campus":"LA","cohort":"25","jobTitle":"Sr Frontend and Fullstack Engineer","industry":"Entertainment","cities":["Plano","San Diego","Tulsa","Dallas"]},{"company":"Disney Streaming Services","name":"Casey Escovedo","email":"caseyjescovedo@gmail.com","linkedIn":"https://www.linkedin.com/in/caseyescovedo/","campus":"LA","cohort":"38","jobTitle":"Associate Software Engineer","industry":"Entertainment","cities":["Greensboro"]},{"company":"Disney Streaming Services","name":"Mark Marcelo","email":"markmarcelo@gmail.com","linkedIn":"https://www.linkedin.com/in/markmarcelo/","campus":"LA","cohort":"12","jobTitle":"Lead Software Engineer","industry":"Entertainment","cities":["Anchorage"]},{"company":"Disney Streaming Services","name":"Rachel Farley","email":"rachyl.farley@gmail.com","linkedIn":"https://www.linkedin.com/in/rachel-farley/","campus":"NYC","cohort":"24","jobTitle":"Associate Software Engineer","industry":"Entertainment","cities":["Oakland"]},{"company":"Dispense","name":"Kerrianne Crawford","email":"kerriannercrawford@gmail.com","linkedIn":"https://www.linkedin.com/in/kerriannercrawford/","campus":"NYC","cohort":"25","jobTitle":"Senior Software Engineer","industry":"Software / Tech","cities":["Pittsburgh","Virginia Beach","Lubbock"]},{"company":"Distributed Machines, Inc.","name":"William LeGate","email":"codesmith@legate.me","linkedIn":"https://www.linkedin.com/in/william-legate/","campus":"LA","cohort":"21","jobTitle":"CEO, Prediqt","industry":"Medical","cities":["Colorado Springs","Garland"]},{"company":"DistroKid","name":"Jackson Tong","email":"jacksonktong@gmail.com","linkedIn":"https://www.linkedin.com/in/jacksonktong/","campus":"LA","cohort":"48","jobTitle":"Software Engineer","industry":"Other","cities":["Cleveland","Seattle","St. Louis","Saint Paul"]},{"company":"DMC Inc","name":"Shane Yao","email":"Shanexinyao@gmail.com","linkedIn":"https://www.linkedin.com/in/shanexinyao/","campus":"NYC","cohort":"3","jobTitle":"Senior Robotics Engineer","industry":"Crypto Fintech","cities":["Long Beach","Houston","Mesa","Toledo"]},{"company":"Dollar Shave Club","name":"Vincent Nguyen","email":"gvincemail@gmail.com","linkedIn":"https://www.linkedin.com/in/vnguyenucla/","campus":"LA","cohort":"38","jobTitle":"Software Engineer(Contract)","industry":"Products","cities":["Miami","Anaheim"]},{"company":"Dollar Shave Club","name":"Ryan Trontz","email":"rtrontz@gmail.com","linkedIn":"https://www.linkedin.com/in/trontz/","campus":"LA","cohort":"22","jobTitle":"Software Engineer, Backend","industry":"","cities":["Toledo","Winston-Salem","Portland","Riverside"]},{"company":"Domio","name":"Neftali Dominguez","email":"n.l.dominguez23@gmail.com","linkedIn":"https://www.linkedin.com/in/neftalildominguez/","campus":"LA","cohort":"30","jobTitle":"Back end engineer","industry":"apartment hotels","cities":["Detroit","Boston","Fort Wayne","San Francisco"]},{"company":"Doorcast","name":"James Bui","email":"Jamesmdang.bui@gmail.com","linkedIn":"https://www.linkedin.com/in/jamesminhbui/","campus":"LA / WCRI","cohort":"51","jobTitle":"Senior Fullstack Engineer","industry":"Real Estate","cities":["Bakersfield"]},{"company":"Doorkee","name":"Jarred Jack-Harewood","email":"jackhajb@gmail.com","linkedIn":"https://www.linkedin.com/in/jarred-jack-harewood/","campus":"NYC","cohort":"11","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Las Vegas","Jersey City","Kansas City","Houston"]},{"company":"Dottid","name":"Brian Grosso","email":"bgro63@gmail.com","linkedIn":"https://www.linkedin.com/in/newarkBG/","campus":"NYC","cohort":"27","jobTitle":"Senior Software Engineer","industry":"Fintech - Real Estate","cities":["Chandler","Saint Paul","Los Angeles","Boston"]},{"company":"Dr Squatch","name":"Ben Cauffman","email":"Benjamincauffman@gmail.com","linkedIn":"https://www.linkedin.com/in/benjamin-cauffman","campus":"NYC / ECRI","cohort":"34","jobTitle":"Full Stack Engineer","industry":"Retail","cities":["San Jose","Indianapolis"]},{"company":"DraftKings","name":"Jonnie Oak","email":"jonathan.oak28@gmail.com","linkedIn":"https://www.linkedin.com/in/oakj28/","campus":"LA","cohort":"45","jobTitle":"Software Engineer","industry":"Fantasy Sports","cities":["Los Angeles","Cincinnati"]},{"company":"Dray Alliance","name":"Hayden Fithyan","email":"hayden@fithyan.com","linkedIn":"https://www.linkedin.com/in/fithyan/","campus":"LA","cohort":"23","jobTitle":"Software Developer II","industry":"","cities":["Boston"]},{"company":"Dray Alliance","name":"Joshua Wright","email":"jwrightbluj@gmail.com","linkedIn":"https://www.linkedin.com/in/joshua-w-86758a121/","campus":"LA","cohort":"23","jobTitle":"Software Engineer II","industry":"","cities":["Kansas City","Riverside","Boston","Chicago"]},{"company":"Dreambox Learning","name":"Pei-Yun Chu","email":"pchu2018@gmail.com","linkedIn":"https://www.linkedin.com/in/pei-yun-chu/","campus":"PTRI","cohort":"8","jobTitle":"Software Development Engineer - Frontend","industry":"Software / Tech","cities":["St. Louis","Mexico City","Buffalo"]},{"company":"Driven Deliveries","name":"Adam Stover","email":"adam.jacob.stover@gmail.com","linkedIn":"","campus":"LA","cohort":"31","jobTitle":"Software Engineer","industry":"Supply Chain & Logistics","cities":["San Diego"]},{"company":"Drizly","name":"Diego Vazquez","email":"diegovazquezny@gmail.com","linkedIn":"https://www.linkedin.com/in/diegovazquezny/","campus":"LA","cohort":"21","jobTitle":"Jr. Software Engineer","industry":"Food & Beverages","cities":["Las Vegas"]},{"company":"Dropbox","name":"Benjamin Kwak","email":"benjamin.h.kwak@gmail.com","linkedIn":"https://www.linkedin.com/in/ben-kwak/","campus":"LA","cohort":"37","jobTitle":"Software Engineer, Product","industry":"Techonology Services","cities":["Aurora"]},{"company":"Dropbox","name":"Myounghan Chae","email":"chaekmh@gmail.com","linkedIn":"https://www.linkedin.com/in/chaekmh/","campus":"NYC","cohort":"24","jobTitle":"Software Engineer","industry":"Cloudtech","cities":["Houston","San Antonio","Kansas City"]},{"company":"Dropbox","name":"Miguel Michel","email":"migmic93@gmail.com","linkedIn":"https://www.linkedin.com/in/miguel-michel/","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Cloud Storage","cities":["Colorado Springs","Saint Paul"]},{"company":"Dropps","name":"Sonny Nguyen","email":"sonnynguyen163@gmail.com","linkedIn":"https://www.linkedin.com/in/sn163/","campus":"LA","cohort":"46","jobTitle":"Software Developer","industry":"Sustainable E-Commerce","cities":["Milwaukee"]},{"company":"Dstillery","name":"Chai Lee","email":"imchai@gmail.com","linkedIn":"https://www.linkedin.com/in/chai-lee-5a064649/","campus":"NYC","cohort":"21","jobTitle":"Software Engineer","industry":"Adtech","cities":["New York"]},{"company":"Dun & Bradstreet","name":"Jack Hall","email":"jackvincenthall@gmail.com","linkedIn":"https://linkedin.com/in/jackvhall","campus":"PTRI","cohort":"4","jobTitle":"Senior Software Engineer","industry":"Fintech, Data Analytics","cities":["Baltimore","Indianapolis"]},{"company":"Dun & Bradstreet","name":"Scott Rosen","email":"scott.rosen14@gmail.com","linkedIn":"https://www.linkedin.com/in/scott-rosen/","campus":"LA","cohort":"17","jobTitle":"Software Engineer","industry":"","cities":["Dallas","New Orleans","Bakersfield","Beijing"]},{"company":"dv01","name":"Michelle Herrera","email":"mesherrera@aol.com","linkedIn":"https://www.linkedin.com/in/mherreradev/","campus":"NYC","cohort":"13","jobTitle":"Senior Fullstack Engineer I","industry":"Fintech","cities":["St. Petersburg"]},{"company":"Dynamic benchmarking","name":"andres jaramillo","email":"andresj89@live.com","linkedIn":"https://www.linkedin.com/in/andresjaramillo210/","campus":"NYC / ECRI","cohort":"36","jobTitle":"Software engineer","industry":"Software / Tech","cities":["Henderson","Wichita"]},{"company":"Earnest","name":"Kai Rilliet","email":"kairilliet@gmail.com","linkedIn":"https://www.linkedin.com/in/kairilliet/","campus":"LA / WCRI","cohort":"45","jobTitle":"Full Stack Software Engineer","industry":"Fintech","cities":["New Orleans","Albuquerque"]},{"company":"eBay","name":"Ryan Kim","email":"ryansukwookim@gmail.com","linkedIn":"https://www.linkedin.com/in/tkdryan/","campus":"LA","cohort":"33","jobTitle":"Software Engineer","industry":"ECcmmerce","cities":["Oakland","Sรฃo Paulo"]},{"company":"EBSCO","name":"Sankari Ayyaluru","email":"sankariayyaluru@gmail","linkedIn":"https://www.linkedin.com/in/sankari-ayyaluru/","campus":"LA / WCRI","cohort":"48","jobTitle":"Software Engineer","industry":"Other","cities":["San Diego"]},{"company":"Econify","name":"Jordan Kelly","email":"Jordan.w.kelly@gmail.com","linkedIn":"https://www.linkedin.com/in/jordan-k-340257140/","campus":"NYC","cohort":"17","jobTitle":"Software Engineer","industry":"Consulting","cities":["Detroit"]},{"company":"Econify","name":"Jovan Kelly","email":"fakeEmail2@fakeEmail.com","linkedIn":"https://www.linkedin.com/in/jovankelly","campus":"NYC","cohort":"10","jobTitle":"Software developer","industry":"Media Consulting","cities":["Saint Paul","Berlin"]},{"company":"Edify Labs","name":"Scott McInnis","email":"scottalyst@gmail.com","linkedIn":"https://www.linkedin.com/in/scott-mcinnis/","campus":"LA","cohort":"32","jobTitle":"Nodejs Developer","industry":"Customer Service","cities":["Raleigh","Toledo","Baltimore"]},{"company":"Edify Labs","name":"Tony Lei","email":"tony.lei003@gmail.com","linkedIn":"https://www.linkedin.com/in/tony-lei/","campus":"LA / WCRI","cohort":"50","jobTitle":"NodeJS Developer","industry":"Software / Tech","cities":["Stockton","Philadelphia"]},{"company":"EDUrain","name":"Jacob Jurado","email":"jakejurado@gmail.com","linkedIn":"https://www.linkedin.com/in/jakejurado","campus":"LA / WCRI","cohort":"52","jobTitle":"chief technology officer","industry":"Education/Edtech","cities":["Lincoln","Fort Worth","Scottsdale"]},{"company":"Egen","name":"Jonathan Escamilla","email":"jonathanescamilla1@gmail.com","linkedIn":"https://www.linkedin.com/in/jon-escamilla/","campus":"LA","cohort":"36","jobTitle":"Associate Software Engineer","industry":"Tech (Builds solutions for companies - Typically Web Dev)","cities":["Albuquerque"]},{"company":"Elder Research","name":"Ben Huang","email":"Byhuang4100@gmail.com","linkedIn":"byhuang4100","campus":"FTRI / CTRI","cohort":"14","jobTitle":"Data Engineer","industry":"Artificial Intelligence","cities":["Minneapolis"]},{"company":"Elder Research Inc","name":"Nick Reardon","email":"nickjreardon@gmail.com","linkedIn":"https://www.linkedin.com/in/nickjreardon/","campus":"PTRI","cohort":"4","jobTitle":"Software Engineer","industry":"Consulting","cities":["Laredo","Lincoln","Cincinnati","Aurora"]},{"company":"Elder Tree","name":"Stormi Hashimoto","email":"stormikhashimoto@gmail.com","linkedIn":"https://www.linkedin.com/in/stormikph/","campus":"NYC","cohort":"21","jobTitle":"Software Engineer","industry":"NA","cities":["Toledo","Greensboro","Buffalo","Norfolk"]},{"company":"eLink Design","name":"Tristan Krause","email":"yukiokrause@gmail.com","linkedIn":"https://www.linkedin.com/in/krausetristan/","campus":"FTRI / CTRI","cohort":"17","jobTitle":"Web / Mobile Developer","industry":"Design","cities":["Pittsburgh","Colorado Springs"]},{"company":"Elk Capital Markets","name":"Manuel Castro","email":"manuel.a.castro1992@gmail.com","linkedIn":"https://www.linkedin.com/in/manuel-castro-42466273","campus":"NYC","cohort":"5","jobTitle":"Software Engineer","industry":"Finance","cities":["Albuquerque","El Paso","Fort Wayne"]},{"company":"Ellie Mae","name":"Karen Pinilla","email":"pinillakaren11@gmail.com","linkedIn":"https://www.linkedin.com/in/karen-pinilla/","campus":"LA","cohort":"28","jobTitle":"Software Engineer I","industry":"Computer Software","cities":["Washington"]},{"company":"eMoney","name":"Kenneth Hui","email":"kennethhui121@gmail.com","linkedIn":"https://www.linkedin.com/in/kenneth-hui/","campus":"LA","cohort":"45","jobTitle":"Software Engineer","industry":"Fintech","cities":["Durham","Honolulu","Glendale","Sรฃo Paulo"]},{"company":"Empire Flippers","name":"Rob Wise","email":"robertwise1@gmail.com","linkedIn":"https://www.linkedin.com/in/robertwise/","campus":"PTRI","cohort":"Beta","jobTitle":"Frontend Engineer","industry":"eCommerce","cities":["St. Louis","Plano","Saint Paul","Sacramento"]},{"company":"Empowered Buildings","name":"Kevin Dooley","email":"kjdooley1@gmail.com","linkedIn":"https://www.linkedin.com/in/kjdooley1/","campus":"NYOI","cohort":"1","jobTitle":"Full-Stack Software Developer","industry":"Real Estate","cities":["Henderson","Santa Ana","Detroit"]},{"company":"Enlighten","name":"Jonathon Garber","email":"jgarber2675@gmail.com","linkedIn":"https://www.linkedin.com/in/jgarber2675/","campus":"NYC / ECRI","cohort":"34","jobTitle":"Front End Software Engineer","industry":"Security","cities":["Arlington"]},{"company":"Envoy","name":"Graham Pierce","email":"grahampiercenyc@gmail.com","linkedIn":"https://www.linkedin.com/in/graham-a-pierce/","campus":"FTRI","cohort":"3","jobTitle":"Software Engineer","industry":"Workplace tech","cities":["Long Beach","New Orleans"]},{"company":"Enzo Digital","name":"Johnny Bryan","email":"johnnybryan21@gmail.com","linkedIn":"https://www.linkedin.com/in/johnnybryan/","campus":"NYC","cohort":"29","jobTitle":"Backend/API Engineer","industry":"Fintech","cities":["San Francisco","Chandler","Washington","Lubbock"]},{"company":"EolianVR","name":"Henry Halse","email":"henryhalse@gmail.com","linkedIn":"https://www.linkedin.com/in/henryhalse/","campus":"PTRI","cohort":"8","jobTitle":"Backend Engineer","industry":"Other","cities":["Kansas City","Charlotte"]},{"company":"Epic Games","name":"Nahuel Arjona Tennerini","email":"nahuel.arjona.93@gmail.com","linkedIn":"https://www.linkedin.com/in/nahuelarjonadev/","campus":"LA","cohort":"29","jobTitle":"Game Systems Programmer","industry":"Video Games","cities":["Irvine","Durham","Irving","Gilbert"]},{"company":"Epic Games (Fortnite)","name":"Taylor T Morgan","email":"TaylorMorganTTM@gmail.com","linkedIn":"https://www.linkedin.com/in/taylormor77la/","campus":"LA","cohort":"39","jobTitle":"Software Developer","industry":"Gaming","cities":["Henderson"]},{"company":"Eqengineered","name":"William Ramirez","email":"willramirez630@gmail.com","linkedIn":"https://www.linkedin.com/in/willramirez528/","campus":"LA","cohort":"43","jobTitle":"Senior Technical Consultant","industry":"Software Consulting Firm","cities":["Anchorage","Chicago","London","Corpus Christi"]},{"company":"Erdos Miller","name":"Michael Collier Grant","email":"DragonZSG@aol.com","linkedIn":"https://www.linkedin.com/in/michaelcolliergrant/","campus":"PTRI","cohort":"7","jobTitle":"Firmware Developer","industry":"Other","cities":["Boston","Anchorage","Minneapolis"]},{"company":"Ernst & Young","name":"Eduardo Maรญllo Conesa","email":"eduardomaillo@gmail.com","linkedIn":"https://www.linkedin.com/in/eduardomaillo/","campus":"NYC","cohort":"2","jobTitle":"Senior Software Engineer","industry":"","cities":["Tokyo","Indianapolis","Durham"]},{"company":"Esri","name":"Gilbert Ramirez","email":"contemporarygil@gmail.com","linkedIn":"https://www.linkedin.com/in/gillramirez/","campus":"LA","cohort":"29","jobTitle":"Software Development Engineer","industry":"GIS","cities":["Tampa","Henderson","Memphis","Columbus"]},{"company":"ESRI","name":"Evan Hilton","email":"ehilton1537@gmail.com","linkedIn":"https://www.linkedin.com/in/ehilton1537/","campus":"LA","cohort":"33","jobTitle":"Software Development Engineer","industry":"Geographic Information System","cities":["Buffalo","Gilbert"]},{"company":"Esri","name":"Elena Conn","email":"elenakconn@gmail.com","linkedIn":"https://www.linkedin.com/in/elena-conn/","campus":"LA","cohort":"41","jobTitle":"Software Engineering Intern (end date 10/29/21)","industry":"Geospatial Engineering (GIS)","cities":["New Orleans","Cleveland","Wichita","El Paso"]},{"company":"Ethic","name":"Andrea Li","email":"andrea.li8341@hotmail.com","linkedIn":"https://www.linkedin.com/in/andrea-gli/","campus":"PTRI","cohort":"1","jobTitle":"Frontend Engineer","industry":"Fintech","cities":["Houston","Portland","Henderson","North Las Vegas"]},{"company":"Ethos Life","name":"Alan Lee","email":"lee.alan.c12@gmail.com","linkedIn":"https://www.linkedin.com/in/alanlee12/","campus":"LA","cohort":"35","jobTitle":"Software Engineer, Test","industry":"Insurance","cities":["Henderson"]},{"company":"etsy","name":"alfonso zamarripa","email":"alfonsozam93@gmail.com","linkedIn":"https://www.linkedin.com/in/alfonsozamarripa/","campus":"NYC","cohort":"31","jobTitle":"software engineer","industry":"Retail","cities":["Nashville"]},{"company":"Even","name":"Claudio Santos","email":"claudiohbsantos@gmail.com","linkedIn":"https://www.linkedin.com/in/claudio-santos-5b8134207/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer I","industry":"Fintech","cities":["Mumbai","Baltimore","Jersey City","Cincinnati"]},{"company":"Even Financial","name":"Andy Wong","email":"andywong.ny@gmail.com","linkedIn":"https://www.linkedin.com/in/andywongdev","campus":"NYC","cohort":"13","jobTitle":"Software Engineer","industry":"Fintech","cities":["Durham"]},{"company":"Eventbrite","name":"Ashley Pean","email":"pean.ashley@gmail.com","linkedIn":"https://www.linkedin.com/in/ashley-pean/","campus":"PTRI","cohort":"2","jobTitle":"Software Engineer II","industry":"Entertainment","cities":["Long Beach","Colorado Springs","San Jose"]},{"company":"EventHound","name":"Greg Shamalta","email":"gregshamalta@yahoo.com","linkedIn":"https://www.linkedin.com/in/gregory-shamalta/","campus":"LA","cohort":"23","jobTitle":"Founder","industry":"","cities":["Orlando","San Jose"]},{"company":"everest","name":"Will Hack","email":"will.j.hack@gmail.com","linkedIn":"https://www.linkedin.com/in/willhack/","campus":"NYC","cohort":"20","jobTitle":"Full-Stack Engineer (Sr)","industry":"UX Design","cities":["Irvine","St. Petersburg"]},{"company":"Everest, AI","name":"Jordan Long","email":"jlong4159@gmail.com","linkedIn":"www.linkedin.com/jlongtlw","campus":"NYC / ECRI","cohort":"33","jobTitle":"Software Engineer","industry":"Other","cities":["Sรฃo Paulo","Sacramento"]},{"company":"Everfi","name":"Jacob Ory","email":"jacobtory@yahoo.com","linkedIn":"https://www.linkedin.com/in/jacobory/","campus":"LA","cohort":"30","jobTitle":"Frontend Engineer","industry":"Ed Tech","cities":["Toronto"]},{"company":"Exabeam","name":"Lisa Tian","email":"lisatian8@gmail.com","linkedIn":"https://www.linkedin.com/in/lisatian-/","campus":"LA / WCRI","cohort":"53","jobTitle":"Software Engineer - UI","industry":"Security","cities":["Mexico City","St. Louis","Portland"]},{"company":"Exodus Movement Inc","name":"Lanre Makinde","email":"lanre.developer@gmail.com","linkedIn":"https://www.linkedin.com/in/lanre-mark/","campus":"PTRI","cohort":"Beta","jobTitle":"Sr. Software Engineer","industry":"blockchain/cryptocurrency","cities":["Saint Paul","Bakersfield","San Francisco","Louisville"]},{"company":"Expedia Group","name":"Tang","email":"eytang8@gmail.com","linkedIn":"https://www.linkedin.com/mwlite/in/ttaanngg","campus":"LA","cohort":"27","jobTitle":"Software Development Engineer II","industry":"Travel","cities":["Glendale","Dallas","Laredo"]},{"company":"Extend","name":"Diane Wu","email":"dianewudw@gmail.com","linkedIn":"","campus":"NYC","cohort":"14","jobTitle":"Backend Software Engineer","industry":"Insurance","cities":["North Las Vegas","Aurora","Mumbai","Santa Ana"]},{"company":"Extensis","name":"Daniel Chang","email":"dkchang213@gmail.com","linkedIn":"https://www.linkedin.com/in/daniel-k-chang/","campus":"LA / WCRI","cohort":"56","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["St. Louis","Atlanta"]},{"company":"Facebook","name":"Ben Ray","email":"benray887@gmail.com","linkedIn":"https://www.linkedin.com/in/benray-/","campus":"NYC","cohort":"14","jobTitle":"Rotational Engineer","industry":"Tech","cities":["Indianapolis","Jersey City","Irving"]},{"company":"Facebook","name":"Jason Lee","email":"jason.dongyul.lee@gmail.com","linkedIn":"","campus":"LA","cohort":"42","jobTitle":"Full-Stack Engineer","industry":"Social Media/Networking","cities":["Colorado Springs","Phoenix"]},{"company":"Facebook","name":"Jonathan Calvo Ramirez","email":"jono.calvo@gmail.com","linkedIn":"https://www.linkedin.com/in/jonathan-calvo","campus":"LA","cohort":"42","jobTitle":"Software Engineer","industry":"Social Media","cities":["Cincinnati"]},{"company":"Facebook","name":"Rajeeb Banstola","email":"rajeebanstola@gmail.com","linkedIn":"https://www.linkedin.com/in/rajeebbanstola/","campus":"NYC","cohort":"14","jobTitle":"Fullstack Developer - Contract","industry":"Internet","cities":["Mumbai","Anchorage"]},{"company":"Facebook","name":"Ricardo Cortez","email":"ricardodgers12@gmail.com","linkedIn":"https://www.linkedin.com/in/rcortez88/","campus":"LA","cohort":"44","jobTitle":"Full Stack Software Engineer","industry":"Social Media","cities":["Philadelphia","San Diego"]},{"company":"Facebook","name":"Sean Grace","email":"seanmgrace@gmail.com","linkedIn":"https://www.linkedin.com/in/seanmgrace/","campus":"LA","cohort":"44","jobTitle":"Full Stack Software Engineer","industry":"Tech","cities":["Tokyo","Toledo","Mexico City"]},{"company":"Facebook","name":"Shreshth Srivastava","email":"shreshthsrivastava2@gmail.com","linkedIn":"https://www.linkedin.com/in/shreshth-srivastava/","campus":"NYC","cohort":"21","jobTitle":"Software Engineer","industry":"Social Media","cities":["Lincoln","Cleveland","Honolulu","Chesapeake"]},{"company":"Facebook (Meta)","name":"Eric Wilding","email":"eric.d.wilding@gmail.com","linkedIn":"https://www.linkedin.com/in/eric-wilding/","campus":"PTRI","cohort":"2","jobTitle":"Full Stack Software Engineer","industry":"Social Media","cities":["Orlando"]},{"company":"Facebook (via K2Partners)","name":"Thanh Doan","email":"tdoan35@gmail.com","linkedIn":"https://www.linkedin.com/in/ty-thanh-doan/","campus":"LA","cohort":"42","jobTitle":"Full-Stack Engineer","industry":"Social Media","cities":["Omaha","San Jose"]},{"company":"Facebook via TEK System","name":"Yoko Kawamoto","email":"yokokawamoto@gmail.com","linkedIn":"https://www.linkedin.com/in/yokokawamoto/","campus":"LA","cohort":"42","jobTitle":"Software Engineer","industry":"Social Media","cities":["Austin"]},{"company":"Facebook/K2","name":"Charles Gutwirth","email":"charlesgutwirth@gmail.com","linkedIn":"https://www.linkedin.com/in/charles-gutwirth/","campus":"LA","cohort":"45","jobTitle":"Full Stack Engineer","industry":"Social media","cities":["Anchorage","Chesapeake"]},{"company":"FactSet","name":"Ethan Sclarsky","email":"esclarsky@gmail.com","linkedIn":"https://www.linkedin.com/in/ethan-sclarsky/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Oklahoma City"]},{"company":"Fanatics, Inc","name":"Jonah Eidman","email":"jonah.eidman@gmail.com","linkedIn":"https://www.linkedin.com/in/jonah-eidman/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Software Engineer II","industry":"Entertainment","cities":["Seattle","Kansas City","Gilbert"]},{"company":"Fandango","name":"Ha-Rry Kim","email":"hari9497@gmail.com","linkedIn":"https://www.linkedin.com/in/hkim9497/","campus":"LA","cohort":"24","jobTitle":"Software Engineer I","industry":"","cities":["Norfolk","London","Tulsa","Miami"]},{"company":"Fandango","name":"Ken Lam","email":"heiyeunl@gmail.com","linkedIn":"https://www.linkedin.com/in/heiyeunl/","campus":"LA","cohort":"27","jobTitle":"Front end software engineer","industry":"Entertainment?","cities":["Atlanta"]},{"company":"FanDuel","name":"Alex Haile","email":"ahaile923@gmail.com","linkedIn":"https://www.linkedin.com/in/ahaile923/","campus":"FTRI","cohort":"7","jobTitle":"Software Engineer","industry":"Other","cities":["Atlanta","Greensboro","Lincoln"]},{"company":"Fanfix","name":"Dylan Hensel","email":"dylan@hensel.com","linkedIn":"https://www.linkedin.com/in/dylanhensel/","campus":"LA","cohort":"38","jobTitle":"Senior Software Engineer","industry":"Entertainment","cities":["Milwaukee","Washington","Lubbock","Mumbai"]},{"company":"Fanfix","name":"Jonathan Mavandi","email":"jonathan.mavandi@gmail.com","linkedIn":"https://www.linkedin.com/in/jon-mavandi/","campus":"LA","cohort":"26","jobTitle":"Software Engineer","industry":"Entertainment","cities":["Los Angeles"]},{"company":"Fannie Mae","name":"Abhi Gullapalli","email":"aubertlone@gmail.com","linkedIn":"https://www.linkedin.com/in/viswagullapalli/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Cloud Engineer","industry":"Cloud Services","cities":["Tulsa","Glendale"]},{"company":"Fantoons","name":"Hank McGill","email":"henrymcgill@gmail.com","linkedIn":"https://www.linkedin.com/in/hank-mcgill/","campus":"NYOI","cohort":"4","jobTitle":"Founding Full-Stack Software Engineer","industry":"Entertainment","cities":["Reno","Henderson"]},{"company":"Farm to People","name":"Katharine Angelopoulos","email":"katharine.angelopoulos@gmail.com","linkedIn":"https://www.linkedin.com/in/kangelopoulos/","campus":"NYC / ECRI","cohort":"36","jobTitle":"Full Stack Developer","industry":"Restaurant, Food, and Beverage","cities":["Tampa","Philadelphia","Saint Paul","Cincinnati"]},{"company":"Fashionphile","name":"Amy Yee","email":"amyyee1998@gmail.com","linkedIn":"https://www.linkedin.com/in/amyyee98/","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"E-commerce","cities":["Chandler","Chula Vista","El Paso"]},{"company":"Fashionphile","name":"Gabriela Jardim Aquino","email":"gjardimaquino@gmail.com","linkedIn":"https://www.linkedin.com/in/aquinojardim/","campus":"LA","cohort":"36","jobTitle":"Software Engineer","industry":"Fashion","cities":["Mexico City","San Antonio","New Orleans","Sydney"]},{"company":"Fastly","name":"Angelo Chengcuenca","email":"amchengcuenca@gmail.com","linkedIn":"https://www.linkedin.com/in/angelotmchengcuenca/","campus":"FTRI / CTRI","cohort":"14","jobTitle":"Software Development Engineer","industry":"Software / Tech","cities":["Mexico City"]},{"company":"Fearless (fearless.tech)","name":"Faraz Akhtar","email":"fa8338@gmail.com","linkedIn":"https://www.linkedin.com/in/faraz22/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer II","industry":"Government Consulting","cities":["San Diego"]},{"company":"Feather","name":"Bryan Fong","email":"bryanfong.dev@gmail.com","linkedIn":"https://www.linkedin.com/in/bryanfong-dev/","campus":"NYC","cohort":"11","jobTitle":"Software Engineer","industry":"Furniture Subscription","cities":["Durham","Detroit","Corpus Christi","Louisville"]},{"company":"FeatureBase","name":"David Kagan","email":"David.kagan07@gmail.com","linkedIn":"David-kagan07","campus":"NYC / ECRI","cohort":"34","jobTitle":"Jr Software Engineer, Cloud","industry":"Cloud Services","cities":["Orlando"]},{"company":"Federal Reserve Bank","name":"Robert McHalffey","email":"R.mchalffey@gmail.com","linkedIn":"","campus":"LA","cohort":"26","jobTitle":"Software Engineer 4","industry":"Government/Banking","cities":["Paris","Scottsdale","New Orleans"]},{"company":"Federal Reserve Bank of NY","name":"Anthony Lee","email":"anthonylee2797@gmail.com","linkedIn":"https://www.linkedin.com/in/anthony-lee27/","campus":"NYC","cohort":"19","jobTitle":"Frontend Developer","industry":"Finance","cities":["Lexington","Greensboro","Arlington"]},{"company":"Ferguson","name":"Eric Hagen","email":"ericjameshagen@gmail.com","linkedIn":"https://www.linkedin.com/in/hagenforhire/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Software Engineer","industry":"Other","cities":["San Jose","Seattle","Toronto","Tokyo"]},{"company":"Ferguson Enterprises","name":"James Ferrell","email":"James David.ferrell@ferguson.com","linkedIn":"https://www.linkedin.com/in/james-d-ferrell/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"E-commerce","cities":["Aurora"]},{"company":"Fictiv","name":"Cherie Zhong","email":"cheriemzhong@gmail.com","linkedIn":"https://www.linkedin.com/in/cheriezhong/","campus":"LA","cohort":"35","jobTitle":"Software Engineer","industry":"Manufacturing","cities":["Long Beach","Lubbock","Raleigh"]},{"company":"Fidelity Investments","name":"Eli Muir","email":"eli.t.muir@gmail.com","linkedIn":"https://www.linkedin.com/in/eli-muir/","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Full Stack Engineer","industry":"Fintech","cities":["Long Beach","Mumbai","Saint Paul","North Las Vegas"]},{"company":"Fidelity Investments","name":"Christopher Jamali","email":"jamalichristopher@gmail.com","linkedIn":"https://www.linkedin.com/in/chrisjamali/","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Senior Mobile Developer","industry":"Fintech","cities":["Santa Ana"]},{"company":"Fin","name":"Matt Jiang","email":"mattljiang@gmail.com","linkedIn":"https://www.linkedin.com/in/mattljiang/","campus":"LA","cohort":"40","jobTitle":"Product Engineer","industry":"SaaS","cities":["Fort Wayne"]},{"company":"Find my past","name":"Mitesh patel","email":"mit06@hotmail.com","linkedIn":"https://www.linkedin.com/in/miteshvjpatel","campus":"NYC","cohort":"21","jobTitle":"Mid software engineer","industry":"genealogy","cities":["Minneapolis","Madison","Garland"]},{"company":"FinDox Inc.","name":"Jhonatan Passalacqua","email":"jpascas@gmail.com","linkedIn":"https://www.linkedin.com/in/jpassalacqua","campus":"PTRI","cohort":"Beta","jobTitle":"Senior Software Architect","industry":"Fintech","cities":["Los Angeles","Toledo","Irving"]},{"company":"Finra","name":"Yankun Song","email":"yankun.L.song@gmail.com","linkedIn":"https://www.linkedin.com/in/yankunsong/","campus":"LA / WCRI","cohort":"49","jobTitle":"Data engineer","industry":"Fintech","cities":["Houston","Corpus Christi"]},{"company":"First American ","name":"Jen Lee","email":"jenleesj@gmail.com","linkedIn":"https://www.linkedin.com/in/jenleesj","campus":"FTRI / CTRI","cohort":"14","jobTitle":"Front End Software Engineer","industry":"Insurance","cities":["Santa Ana","Louisville","Raleigh"]},{"company":"First Help Financial","name":"Juliana Morrelli","email":"julianamorrelli28@gmail.com","linkedIn":"https://www.linkedin.com/in/julianamorrelli/","campus":"NYC / ECRI","cohort":"37","jobTitle":"Frontend Software Engineer","industry":"Fintech","cities":["Austin","Omaha","Tampa"]},{"company":"First Republic Bank","name":"Nikhil Massand","email":"nikhil.massand@gmail.com","linkedIn":"https://www.linkedin.com/in/nikhil-massand/","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"Banking","cities":["Cleveland","Arlington"]},{"company":"First Resonance","name":"Maxwell Reed","email":"mxjreed@gmail.com","linkedIn":"https://www.linkedin.com/in/mxjrd/","campus":"LA","cohort":"41","jobTitle":"Frontend Engineer","industry":"Manufacturing","cities":["Beijing","Tulsa"]},{"company":"Fiserv","name":"Ozi Oztourk","email":"oztrkgzhn@gmail.com","linkedIn":"https://www.linkedin.com/in/ozi-oztourk","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"Fintech","cities":["Seattle","San Francisco","Chicago"]},{"company":"Fiserv.","name":"eddy zapata","email":"ecz001@live.com","linkedIn":"https://www.linkedin.com/in/eddy-zapata/","campus":"FTRI","cohort":"2","jobTitle":"Software Development Engineer IV","industry":"Fintech","cities":["Orlando","Mumbai"]},{"company":"Fitch Solutions","name":"Duane McFarlane","email":"Duanemcfarlane@yahoo.com","linkedIn":"https://www.linkedin.com/in/duanemcfarlane/","campus":"NYC","cohort":"13","jobTitle":"Software Engineer","industry":"Entertainment","cities":["Miami"]},{"company":"Flash Scientific Technology","name":"William Howard","email":"willh91@msn.com","linkedIn":"https://www.linkedin.com/in/wph91/","campus":"LA","cohort":"21","jobTitle":"Lead Software Engineer","industry":"Meteorology/Environmental Science","cities":["Saint Paul"]},{"company":"Flashpoint","name":"Robbie Gottlieb","email":"robbiegottlieb.dev@gmail.com","linkedIn":"https://www.linkedin.com/in/robbie-gottlieb/","campus":"NYC / ECRI","cohort":"1","jobTitle":"Security","industry":"Software / Tech","cities":["Miami","El Paso"]},{"company":"Flexion","name":"Cameron Walls","email":"cwalls45@gmail.com","linkedIn":"https://www.linkedin.com/in/cameron-walls45/","campus":"PTRI","cohort":"3","jobTitle":"Full Stack Software Developer","industry":"Consulting, the project I am working on is in the Education industry","cities":["Riverside","Jacksonville","North Las Vegas","Glendale"]},{"company":"FlightAware","name":"Robert Yang","email":"rob.yang@gmail.com","linkedIn":"https://www.linkedin.com/in/robwyang/","campus":"NYC","cohort":"24","jobTitle":"Senior Software Engineer","industry":"Aviation","cities":["Bakersfield"]},{"company":"Flock Safety","name":"Rocio Infante","email":"Rocio.infante417@gmail.com","linkedIn":"","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Public Safety","cities":["Scottsdale"]},{"company":"Flock Safety","name":"Hunter Shaw","email":"hu.shaw215@gmail.com","linkedIn":"https://www.linkedin.com/in/hshaw215/","campus":"NYC / ECRI","cohort":"40","jobTitle":"Software Engineer II","industry":"Other","cities":["Kansas City"]},{"company":"FloQast","name":"Stephanie Chiu","email":"stephaniekchiu@gmail.com","linkedIn":"https://www.linkedin.com/in/stephanie-chiu-/","campus":"LA","cohort":"32","jobTitle":"Software Engineer I","industry":"Fintech","cities":["Anchorage"]},{"company":"FloQast","name":"Khaile Tran","email":"khailetran94@gmail.com","linkedIn":"linkedin.com/in/khailetran","campus":"FTRI / CTRI","cohort":"16","jobTitle":"Software Engineer I","industry":"Other","cities":["Irvine","North Las Vegas"]},{"company":"Florence Healthcare","name":"Bill Greco","email":"wgreco13@gmail.com","linkedIn":"https://www.linkedin.com/in/bill-greco/","campus":"NYC","cohort":"32","jobTitle":"Senior Full Stack Software Engineer","industry":"Healthcare","cities":["Oklahoma City"]},{"company":"FNS, Inc.","name":"Shinhae Na","email":"shinhaena@gmail.com","linkedIn":"https://www.linkedin.com/in/shinhaena-stella/","campus":"LA / WCRI","cohort":"49","jobTitle":"Software Engineer","industry":"Retail","cities":["Seattle","North Las Vegas","Henderson"]},{"company":"Foodpanda","name":"Josh Kim","email":"joshua940308@gmail.com","linkedIn":"https://www.linkedin.com/in/sungtae/","campus":"NYC","cohort":"12","jobTitle":"Frontend software engineer","industry":"Food tech","cities":["Seattle","Sydney","Fresno","Chandler"]},{"company":"Forma","name":"Jay Lim","email":"jaymlim93@gmail.com","linkedIn":"https://www.linkedin.com/in/jaylim218/","campus":"LA","cohort":"28","jobTitle":"Software Engineer","industry":"Human Resources","cities":["Cincinnati","Raleigh","Gilbert"]},{"company":"Formation","name":"Stella Liao","email":"stellaliao.01@gmail.com","linkedIn":"https://www.linkedin.com/feed/","campus":"LA","cohort":"39","jobTitle":"Software Engineer","industry":"Education","cities":["Philadelphia","El Paso"]},{"company":"Formidable","name":"Juan Hart","email":"juanhart1@gmail.com","linkedIn":"","campus":"NYC","cohort":"12","jobTitle":"Software Engineer III","industry":"Consultancy","cities":["Buffalo","Corpus Christi"]},{"company":"Fortress Information Security","name":"Keith Lisiak","email":"bball.coach@icloud.com","linkedIn":"https://www.linkedin.com/in/keithlisiak/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"Security","cities":["Sydney","Riverside","Norfolk"]},{"company":"Forward Financing","name":"Shanon Lee","email":"shanonlee541@gmail.com","linkedIn":"https://www.linkedin.com/in/shanonlee541/","campus":"FTRI","cohort":"5","jobTitle":"Associate Software Engineer","industry":"Fintech","cities":["Orlando","Norfolk"]},{"company":"Forward Slope Inc.","name":"Ilija Bibic","email":"ibibic2@gmail.com","linkedIn":"https://www.linkedin.com/in/ilija-bibic","campus":"LA / WCRI","cohort":"51","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Virginia Beach"]},{"company":"Forward Slope, Inc.","name":"Thang Thai","email":"thaithangt@gmail.com","linkedIn":"https://www.linkedin.com/in/thang-thai/","campus":"LA / WCRI","cohort":"52","jobTitle":"Software Engineer","industry":"Other","cities":["Chicago","Charlotte"]},{"company":"FourKites","name":"Anthony Stanislaus","email":"anthonystanislaus1@gmail.com","linkedIn":"https://www.linkedin.com/in/anthonystanislaus/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Software Engineer","industry":"Other","cities":["Mesa","Durham","Phoenix"]},{"company":"Fox Corporation","name":"James Edwards","email":"digitalmediapro7@gmail.com","linkedIn":"https://www.linkedin.com/in/digital9/","campus":"LA","cohort":"19","jobTitle":"Senior Full Stack Software Engineer (Frontend)","industry":"","cities":["El Paso","Austin","Houston"]},{"company":"Freewheel","name":"Hubert Lin","email":"huberthflin@gmail.com","linkedIn":"https://www.linkedin.com/feed/","campus":"NYC","cohort":"9","jobTitle":"Software Engineer","industry":"IT","cities":["Omaha","Stockton","Mumbai"]},{"company":"Frontier Communications","name":"Josh Cretella","email":"jcrtll@protonmail.com","linkedIn":"https://www.linkedin.com/in/josh-cretella","campus":"LA","cohort":"45","jobTitle":"Backend Developer","industry":"Telecoms","cities":["New York","Glendale","Louisville"]},{"company":"Frozen Dessert Supplies","name":"Ethan McRae","email":"ethanmcrae0@gmail.com","linkedIn":"https://www.linkedin.com/in/ethanmcrae/","campus":"PTRI","cohort":"7","jobTitle":"Senior Developer","industry":"Consumer Goods: Retail (general)","cities":["Cleveland","Gilbert","Philadelphia","Jacksonville"]},{"company":"Fulcrum","name":"Valerie Huang","email":"valeriewhuang@gmail.com","linkedIn":"https://www.linkedin.com/mwlite/in/valeriewhuang","campus":"PTRI","cohort":"2","jobTitle":"Software Engineer","industry":"Manufacturing","cities":["Cleveland","Minneapolis","Philadelphia"]},{"company":"fulcrumpro","name":"Nicole Du","email":"Nicoleduu@gmail.com","linkedIn":"","campus":"NYC","cohort":"20","jobTitle":"Software Developer","industry":"Manufacturing","cities":["New Orleans","Chesapeake"]},{"company":"Full In Partners","name":"Kevin HoEun Lee","email":"kevin.hoeun.lee@gmail.com","linkedIn":"https://www.linkedin.com/in/kevinhoeunlee/","campus":"LA","cohort":"50","jobTitle":"Software Engineer","industry":"Fintech","cities":["Mumbai","Washington","Chesapeake"]},{"company":"Funimation","name":"Justin Joseph","email":"jrayjoseph@gmail.com","linkedIn":"https://www.linkedin.com/mwlite/in/jrayjoseph","campus":"LA","cohort":"32","jobTitle":"Backend Software Engineer","industry":"Entertainment","cities":["San Jose","Cleveland"]},{"company":"Fusion Medical Staffing","name":"Kelsey Graner","email":"Kels.graner@gmail.com","linkedIn":"LinkedIn.com/Kelsey-graner","campus":"LA / WCRI","cohort":"54","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Detroit"]},{"company":"Fusion Medical Staffing","name":"Krisette Odegard","email":"kmodeg@gmail.com","linkedIn":"https://linkedin.com/in/krisette","campus":"LA / WCRI","cohort":"53","jobTitle":"Software Developer","industry":"Healthcare","cities":["Washington","Anaheim","Sydney"]},{"company":"Futuralis","name":"Rex Osariemen","email":"rexosariemen@gmail.com","linkedIn":"https://linkedin/in/rexosariemen","campus":"NYC","cohort":"15","jobTitle":"Software Engineer","industry":"IT","cities":["Louisville"]},{"company":"G-Research","name":"Sigele Nickerson-Adams","email":"sigeleakosua@gmail.com","linkedIn":"https://www.linkedin.com/in/sigelenickersonadams","campus":"PTRI","cohort":"6","jobTitle":"Software Engineer","industry":"Research","cities":["Chicago"]},{"company":"Gaia Platform","name":"Jorge Fernandez","email":"jcferna1@gmail.com","linkedIn":"https://www.linkedin.com/in/jorge-carlos-fernandez","campus":"LA","cohort":"42","jobTitle":"Software Developer","industry":"Automation","cities":["San Francisco","Oklahoma City"]},{"company":"Gallery Media Group","name":"Kristiina Eelnurme","email":"kristiina.eelnurme@gmail.com","linkedIn":"https://www.linkedin.com/in/Kristiina-eelnurme/","campus":"NYC","cohort":"22","jobTitle":"Frontend Engineer","industry":"Media","cities":["Chula Vista","Omaha","Portland","Nashville"]},{"company":"GameOn Technology","name":"Jeffrey Kim","email":"kimjeffrey96@gmail.com","linkedIn":"https://www.linkedin.com/in/jeffrey-kim-79810112a/","campus":"NYC","cohort":"6","jobTitle":"Frontend, Software Engineer","industry":"Tech","cities":["Indianapolis"]},{"company":"GAN Integrity","name":"Erik Larsen","email":"erik.w.larsen@gmail.com","linkedIn":"https://www.linkedin.com/in/erik-w-larsen","campus":"NYC","cohort":"3","jobTitle":"Software Engineer","industry":"","cities":["Charlotte","Buffalo","Greensboro","Raleigh"]},{"company":"Gap","name":"Khayal Alasgarov","email":"alaskarov.khayal@gmail.com","linkedIn":"https://www.linkedin.com/in/khayal-alasgaroff","campus":"LA","cohort":"44","jobTitle":"React/JavaScript Developer","industry":"Clothing","cities":["Philadelphia"]},{"company":"Gap","name":"Wesley Appleget","email":"wesget182@gmail.com","linkedIn":"https://www.linkedin.com/in/wesley-appleget/","campus":"PTRI","cohort":"3","jobTitle":"Full Stack Engineer","industry":"Retail","cities":["Fort Worth","Saint Paul"]},{"company":"Gap Inc.","name":"Cole Redfearn","email":"coleredfearn@gmail.com","linkedIn":"https://www.linkedin.com/in/coleredfearn/","campus":"LA","cohort":"41","jobTitle":"UI Developer","industry":"Clothing/E-Commerce","cities":["Charlotte","Riverside"]},{"company":"Gap inc.","name":"Nayan Parmar","email":"nparmar84@gmail.com","linkedIn":"https://www.linkedin.com/in/nparmar1","campus":"LA","cohort":"44","jobTitle":"Software Engineer","industry":"eCommerce","cities":["Laredo"]},{"company":"Gartner-L2","name":"Jonathan P Schwartz","email":"jonathanschwartz30@gmail.com","linkedIn":"https://www.linkedin.com/in/jonathanpschwartz/","campus":"NYC","cohort":"7","jobTitle":"Front-End Lead","industry":"","cities":["Columbus","Portland","Raleigh","Fresno"]},{"company":"Gatheround","name":"Andrew Widjaja","email":"andrewdwidjaja@gmail.com","linkedIn":"https://www.linkedin.com/in/andrew-widjaja/","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Dallas","Reno","Anaheim"]},{"company":"GE Aviation","name":"Nathan Richardson","email":"nathan.richardson94@gmail.com","linkedIn":"https://www.linkedin.com/in/nathan-p-richardson/","campus":"NYC","cohort":"24","jobTitle":"Fullstack Developer","industry":"Aerospace","cities":["Mesa"]},{"company":"Geneoscopy","name":"Steve Schlepphorst","email":"steve.schlepphorst@gmail.com","linkedIn":"https://www.linkedin.com/in/schlepphorst/","campus":"FTRI / CTRI","cohort":"17","jobTitle":"Senior Software Engineer I","industry":"Healthtech/Healthcare","cities":["Long Beach","Minneapolis","Aurora"]},{"company":"Genomic Prediction","name":"Rebecca Miller","email":"beemills@gmail.com","linkedIn":"https://www.linkedin.com/in/rebeccamiller19/","campus":"NYC","cohort":"20","jobTitle":"Frontend Engineer","industry":"Biotech","cities":["Raleigh"]},{"company":"Ghostery","name":"Leury Rodriguez","email":"leuryr07@gmail.com","linkedIn":"https://www.linkedin.com/in/leury-rodriguez/","campus":"NYC","cohort":"8","jobTitle":"Jr. Software Engineer","industry":"Internet","cities":["Tokyo","Pittsburgh"]},{"company":"Giglabs, Inc.","name":"Tyler Pohn","email":"tylerpohn@gmail.com","linkedIn":"https://www.linkedin.com/in/tylerpohn/","campus":"FTRI / CTRI","cohort":"5","jobTitle":"Software Engineer","industry":"Blockchain/Web3","cities":["Beijing"]},{"company":"Giglabs.io","name":"Daniel Nguyen","email":"dannguyen1191@yahoo.com","linkedIn":"https://www.linkedin.com/in/danlord-nguyen/","campus":"FTRI","cohort":"5","jobTitle":"Software Engineer (Node)","industry":"Blockchain, Media and Entertainment","cities":["Winston-Salem"]},{"company":"Github","name":"Sabrina Goldfarb","email":"s.goldfarb2@gmail.com","linkedIn":"https://www.linkedin.com/in/sabrinagoldfarb/","campus":"NYC","cohort":"22","jobTitle":"Software Engineer II","industry":"Tech","cities":["Houston","Irvine"]},{"company":"glimpse.ai","name":"Ryan Lim","email":"ryanlim301@gmail.com","linkedIn":"https://www.linkedin.com/in/ryanlim3/","campus":"LA","cohort":"46","jobTitle":"Full Stack Engineer","industry":"Information Technology","cities":["Madison","El Paso","New York"]},{"company":"Gluware","name":"Abid Ramay","email":"abidramay@gmail.com","linkedIn":"https://www.linkedin.com/in/aramay/","campus":"PTRI","cohort":"3","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Kansas City"]},{"company":"GOAT Group","name":"Jordan Deleon","email":"jordanscottdeleon@gmail.com","linkedIn":"https://www.linkedin.com/in/jordan-deleon/","campus":"LA","cohort":"35","jobTitle":"Software Engineer II","industry":"E-commerce","cities":["Greensboro"]},{"company":"GoBolt","name":"Kyo Ku","email":"kyosan.ku34@gmail.com","linkedIn":"https://www.linkedin.com/in/kyosan-ku/","campus":"FTRI","cohort":"4","jobTitle":"Software Developer II","industry":"Logistics Technology","cities":["Chesapeake"]},{"company":"GoDaddy","name":"Joyce Lo","email":"joycemanning@gmail.com","linkedIn":"https://www.linkedin.com/in/joycelo/","campus":"NYC","cohort":"19","jobTitle":"Software Engineer","industry":"Internet","cities":["Raleigh","Irving","Fort Worth"]},{"company":"GoDaddy","name":"Kristina Wallen","email":"KristinaKWallen@gmail.com","linkedIn":"https://www.linkedin.com/in/kristina-wallen/","campus":"LA","cohort":"46","jobTitle":"Senior Software Development Engineer","industry":"Software / Tech","cities":["San Jose","Mumbai","Dallas","Tulsa"]},{"company":"GoFundMe","name":"Colin McCarthy","email":"colinhmccarthy@gmail.com","linkedIn":"https://www.linkedin.com/in/colinhmccarthy/","campus":"LA","cohort":"21","jobTitle":"Software Engineer","industry":"Crowdfunding/fundraising","cities":["Buffalo","North Las Vegas","Milwaukee"]},{"company":"Golden Hippo","name":"Mauricio Castro","email":"mauricio.a.castro7@gmail.com","linkedIn":"https://www.linkedin.com/in/mauricioacastro/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Senior Full Stack Developer","industry":"Advertising","cities":["Henderson","Virginia Beach"]},{"company":"Goldman Sachs","name":"Alfredo Alpizar","email":"fredo.alpizar@gmail.com","linkedIn":"https://www.linkedin.com/in/alfredoalpizar/","campus":"NYC","cohort":"12","jobTitle":"Associate Software Engineer","industry":"Finance / Banking","cities":["Columbus","El Paso"]},{"company":"Goldman Sachs","name":"Peyton Pedersen","email":"pedersen0819@gmail.com","linkedIn":"https://www.linkedin.com/in/peyton-pedersen/","campus":"FTRI","cohort":"5","jobTitle":"Analyst","industry":"Fintech","cities":["Lincoln","Norfolk","Glendale","Mesa"]},{"company":"Goldman Sachs","name":"Stephen Budarz","email":"sbudarz@gmail.com","linkedIn":"https://www.linkedin.com/in/steve-budarz/","campus":"NYC","cohort":"19","jobTitle":"Vice President","industry":"Finance","cities":["New Orleans","Portland","Los Angeles"]},{"company":"Goldschmitt & Associates","name":"Kirk Shin","email":"shin.kirk@gmail.com","linkedIn":"https://www.linkedin.com/in/kirkshin/","campus":"LA","cohort":"31","jobTitle":"Frontend Developer","industry":"Government contractor","cities":["Milwaukee"]},{"company":"GoodPup","name":"Eric Wells","email":"epiqu1n@gmail.com","linkedIn":"https://www.linkedin.com/in/ewells2275/","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Tulsa","Fresno"]},{"company":"GoodRX","name":"Byron Jay Inocencio","email":"jay.byron@gmail.com","linkedIn":"https://www.linkedin.com/in/binocencio/","campus":"LA","cohort":"28","jobTitle":"Software Engineer","industry":"Healthcare, Med-tech, Telemedecine","cities":["Beijing","Virginia Beach","Winston-Salem"]},{"company":"GoodRx","name":"Mike Richards","email":"mike@madebymtr.com","linkedIn":"https://www.linkedin.com/in/madebymtr/","campus":"LA","cohort":"11","jobTitle":"Senior Frontend Engineer","industry":"Healthcare","cities":["Sydney","Paris"]},{"company":"Google","name":"Andie Ritter","email":"A.k.rittr@gmail.com","linkedIn":"https://www.linkedin.com/in/andieritter/","campus":"LA","cohort":"34","jobTitle":"Software Engineer","industry":"Business Intelligence","cities":["Madison","Scottsdale","Jacksonville","Norfolk"]},{"company":"Google","name":"Ben Hawley","email":"benhawley0@gmail.com","linkedIn":"https://www.linkedin.com/in/benchawley/","campus":"NYC","cohort":"4","jobTitle":"Software Engineer","industry":"","cities":["Berlin","Arlington"]},{"company":"Google","name":"Brett Beekley","email":"brettbeekley@gmail.com","linkedIn":"https://www.linkedin.com/in/brettbeekley/","campus":"LA","cohort":"15","jobTitle":"Senior Software Engineer, Site Reliability Engineering","industry":"Technology","cities":["Greensboro","Oklahoma City","Detroit","Houston"]},{"company":"Google","name":"Cameron Greer","email":"camgreer01@gmail.com","linkedIn":"https://www.linkedin.com/in/cameron-greer/","campus":"LA","cohort":"38","jobTitle":"Software Engineer - Level 3","industry":"Technology","cities":["Kansas City"]},{"company":"Google","name":"Christian Padilla","email":"christianepadilla@gmail.com","linkedIn":"https://www.linkedin.com/in/christianedwardpadilla/","campus":"NYC","cohort":"10","jobTitle":"Software Engineer (L3)","industry":"Frontend Mobile Development","cities":["Buffalo"]},{"company":"Google","name":"Crystal Pederson","email":"crystalpederson88@gmail.com","linkedIn":"https://www.linkedin.com/in/crystalpederson/","campus":"PTRI","cohort":"5","jobTitle":"Software Engineer (Frontend III)","industry":"Software / Tech","cities":["Lincoln","Gilbert","New Orleans"]},{"company":"Google","name":"Edwin Lee","email":"edjl1289@gmail.com","linkedIn":"https://www.linkedin.com/in/edwinlee89/","campus":"LA","cohort":"45","jobTitle":"Software Engineer","industry":"Cloud Service","cities":["Winston-Salem","Los Angeles"]},{"company":"Google","name":"Ian Geckeler","email":"ikcgeckeler@gmail.com","linkedIn":"https://www.linkedin.com/in/iangeckeler/","campus":"NYC","cohort":"12","jobTitle":"Software Engineer","industry":"Adtech","cities":["Cincinnati","Houston","Glendale","Colorado Springs"]},{"company":"Google","name":"Jeff Kang","email":"jeffreyrkang@gmail.com","linkedIn":"https://www.linkedin.com/in/jeffreyrkang/","campus":"LA","cohort":"21","jobTitle":"Software Engineer","industry":"","cities":["Garland","Denver"]},{"company":"Google","name":"Jenae Pennie","email":"jenaepen@gmail.com","linkedIn":"https://www.linkedin.com/in/jenae-pennie/","campus":"NYC","cohort":"15","jobTitle":"Software Engineer","industry":"Tech","cities":["Irvine","Honolulu","Pittsburgh","Albuquerque"]},{"company":"Google","name":"Jonathan Tam","email":"jktam336@gmail.com","linkedIn":"https://www.linkedin.com/in/jktam/","campus":"LA","cohort":"47","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Mexico City"]},{"company":"Google","name":"Miguel Gonzalez","email":"MiguelGonzalez@alumni.upenn.edu","linkedIn":"https://www.linkedin.com/in/miguel-gonzalez96/","campus":"NYC","cohort":"22","jobTitle":"Software Engineer - Search Engine Privacy","industry":"Tech","cities":["Scottsdale","Minneapolis"]},{"company":"Google","name":"Nak Young Kim","email":"nydkim@gmail.com","linkedIn":"https://www.linkedin.com/in/nak-young-kim/","campus":"NYC","cohort":"19","jobTitle":"Software Engineer","industry":"Social Media","cities":["Fresno","Glendale"]},{"company":"Google","name":"Patrick Liu","email":"patrickliu.hhs@gmail.com","linkedIn":"https://www.linkedin.com/in/ptrkl/","campus":"PTRI","cohort":"2","jobTitle":"Software Engineer","industry":"Tech","cities":["Chula Vista","Mexico City"]},{"company":"Google","name":"Swetha Kunda","email":"swethakunda@gmail.com","linkedIn":"https://www.linkedin.com/in/swethakunda/","campus":"FTRI","cohort":"6","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Boston","Orlando","Mumbai","Columbus"]},{"company":"Google","name":"Cecilia Yena Choi","email":"yenachoi95@gmail.com","linkedIn":"https://www.linkedin.com/in/ceciliayenachoi/","campus":"LA","cohort":"34","jobTitle":"Software Engineer","industry":"Tech","cities":["Anchorage","San Francisco"]},{"company":"Google Cloud","name":"Sarah Heacock","email":"sarahheacock03@gmail.com","linkedIn":"https://www.linkedin.com/in/sarah-heacock/","campus":"NYC","cohort":"2","jobTitle":"Software Engineer","industry":"Tech","cities":["Toronto","Laredo"]},{"company":"GoSite","name":"Alexander Young","email":"youngalexj00@gmail.com","linkedIn":"https://www.linkedin.com/in/alexander-young-7aabb7122/","campus":"NYC","cohort":"19","jobTitle":"Full Stack Engineer","industry":"Digital Services","cities":["Baltimore","North Las Vegas","Tulsa","Cleveland"]},{"company":"Govini","name":"Aaron Bumanglag","email":"aaron.k.bumanglag@gmail.com","linkedIn":"https://linkedin.com/akbuma","campus":"LA","cohort":"36","jobTitle":"Software Engineer","industry":"Decision Science","cities":["Baltimore","Sacramento","Jersey City"]},{"company":"Grailed","name":"Eugene Chen","email":"chen.eugene19@gmail.com","linkedIn":"https://www.linkedin.com/in/canopeia","campus":"NYC","cohort":"8","jobTitle":"Junior Software Engineer","industry":"HR tech","cities":["Tulsa","Phoenix","Baltimore"]},{"company":"Grailed","name":"Danni Ballena","email":"danni.ballena@gmail.com","linkedIn":"https://www.linkedin.com/in/danni-ballena/","campus":"LA","cohort":"25","jobTitle":"Software Engineer","industry":"Entertainment","cities":["Cincinnati"]},{"company":"Granular","name":"Charles Ryu","email":"charles.ryu@gmail.com","linkedIn":"https://www.linkedin.com/in/charcharryu","campus":"LA","cohort":"43","jobTitle":"Software Engineer","industry":"Agriculture Tech","cities":["Cleveland","Chicago"]},{"company":"Graphika","name":"Sam Carlile","email":"sam@samkc.me","linkedIn":"https://LinkedIn.com/in/samkcarlile","campus":"NYC","cohort":"21","jobTitle":"Full Stack Engineer","industry":"Research & Analytics","cities":["Mexico City"]},{"company":"Green Street Advisors","name":"Joshua Nordstrom","email":"joshua@jdnordstrom.com","linkedIn":"https://www.linkedin.com/in/jdnordy/","campus":"LA","cohort":"34","jobTitle":"Technology Associate","industry":"Real Estate","cities":["Greensboro"]},{"company":"Greenphire","name":"Nicholas Krug","email":"n.e.krug@gmail.com","linkedIn":"https://www.linkedin.com/in/nicholas-e-krug","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Application Developer III","industry":"Healthcare","cities":["New Orleans"]},{"company":"Greentech Financial Solutions","name":"Justin Hicks","email":"justinhickswork@gmail.com","linkedIn":"https://www.linkedin.com/in/justinlhicks/","campus":"LA / WCRI","cohort":"48","jobTitle":"Engineer","industry":"Fintech","cities":["Louisville","Mexico City","Miami","Philadelphia"]},{"company":"Grid Networks","name":"Trine Medina","email":"trinemedina@gmail.com","linkedIn":"www.linkedin.com/in/trinemedina","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Newark","Cincinnati","Baltimore","Laredo"]},{"company":"Gro Intelligence","name":"Damian Lim","email":"limd96@gmail.com","linkedIn":"https://www.linkedin.com/in/lim-damian/","campus":"FTRI","cohort":"9","jobTitle":"Software Engineer","industry":"Agriculture Science","cities":["Dallas","Stockton","Denver","Chesapeake"]},{"company":"Gro-Intelligence","name":"David Bernstein","email":"dxbernstein@gmail.com","linkedIn":"https://www.linkedin.com/in/davidsamuelbernstein/","campus":"NYC","cohort":"24","jobTitle":"Software Engineer (API/Data Visualization Team)","industry":"Agricultural Analytics","cities":["Stockton","Tampa"]},{"company":"Groove Jones","name":"Kristopher Sorensen","email":"Krismsorensen@gmail.com","linkedIn":"Linkedin/in/kris-sorensen","campus":"FTRI / CTRI","cohort":"7","jobTitle":"Senior WebXR Developer","industry":"Other","cities":["Lexington","Santa Ana","Sรฃo Paulo"]},{"company":"GuideMe Solutions","name":"David Nadler","email":"Davidnadler9637@gmail.com","linkedIn":"https://www.linkedin.com/in/davenads/","campus":"NYC","cohort":"23","jobTitle":"Technical Consultant","industry":"Digital Adoption Software","cities":["Austin","Paris","Tampa"]},{"company":"Gulfstream","name":"Chris Hicks","email":"chrishicks430@gmail.com","linkedIn":"Www.LinkedIn.com/in/chrishicks430","campus":"NYC / ECRI","cohort":"36","jobTitle":"Application Developer","industry":"Aerospace","cities":["Aurora","Mumbai"]},{"company":"Guy Carpenter","name":"Dennis Palomo","email":"dennispalomo@icloud.com","linkedIn":"https://linkedin.com/in/dennispalomo","campus":"NYC","cohort":"27","jobTitle":"Developer","industry":"Insurance","cities":["Washington","Houston","Sydney","Los Angeles"]},{"company":"HackerOne","name":"Catherine Chiu","email":"catherinechiuu@gmail.com","linkedIn":"https://www.linkedin.com/in/cchiu2/","campus":"LA","cohort":"37","jobTitle":"Software Engineer II","industry":"Cybersecurity","cities":["Long Beach"]},{"company":"HackerOne","name":"Serena Kuo","email":"hello@serenakuo.com","linkedIn":"https://www.linkedin.com/in/serenakuo/","campus":"LA","cohort":"37","jobTitle":"Senior Software Engineer","industry":"Computer Safety","cities":["Wichita","Garland"]},{"company":"HackerOne","name":"Haejin Jo","email":"swe.haejin@gmail.com","linkedIn":"https://www.linkedin.com/in/haejinjo","campus":"LA","cohort":"37","jobTitle":"Software Engineer","industry":"Cybersecurity","cities":["Long Beach","North Las Vegas","Irvine","Tokyo"]},{"company":"Halo Investing","name":"Gareth Leake","email":"gfleake@gmail.com","linkedIn":"https://www.linkedin.com/in/gareth-leake/","campus":"NYC","cohort":"13","jobTitle":"Software Engineer","industry":"Finance","cities":["Raleigh"]},{"company":"Handshake","name":"Annie Shin","email":"annieshin51@gmail.com","linkedIn":"https://www.linkedin.com/in/annieshinn/","campus":"LA","cohort":"41","jobTitle":"Software Engineer, Platform Services Team","industry":"Recruiting","cities":["St. Louis"]},{"company":"Handshake","name":"Chase Benjamin","email":"chasebenjamin6@gmail.com","linkedIn":"https://www.linkedin.com/in/chase-benjamin300/","campus":"NYC / ECRI","cohort":"37","jobTitle":"Growth Engineer","industry":"Other","cities":["Riverside"]},{"company":"Handshake","name":"Jeffrey Lu","email":"hi@jeffreyclu.com","linkedIn":"https://www.linkedin.com/in/jeffreyclu/","campus":"PTRI","cohort":"Beta","jobTitle":"Software Engineer","industry":"Education","cities":["Denver"]},{"company":"Handshake","name":"Joel Pratt","email":"pratt.joel@gmail.com","linkedIn":"https://www.linkedin.com/in/pratt-joel/","campus":"NYC","cohort":"8","jobTitle":"Software Engineer","industry":"Fintech","cities":["Toledo","Philadelphia","Berlin"]},{"company":"Harbor.ai","name":"Rodolfo Guzman","email":"Rodolfoguzman147@gmail.com","linkedIn":"https://www.linkedin.com/in/rodolfo-guzman-59249594/","campus":"NYC","cohort":"11","jobTitle":"Full Stack Developer","industry":"Insurance Tech","cities":["Garland","Raleigh","Sacramento","Tampa"]},{"company":"Harness Inc.","name":"Tran McFarland Nguyen","email":"tranviolin@me.com","linkedIn":"https://www.linkedin.com/in/tranmcfarlandnguyen/","campus":"LA / WCRI","cohort":"51","jobTitle":"Senior UX Designer","industry":"Software / Tech","cities":["Arlington"]},{"company":"Harver","name":"Will Robinson","email":"wrobinson91@gmail.com","linkedIn":"https://www.linkedin.com/in/wrobinson91","campus":"NYC","cohort":"12","jobTitle":"Fullstack Engineer","industry":"Applicant Tracking Software","cities":["Houston","Tucson","Denver","Henderson"]},{"company":"Health Note","name":"Jeffrey Sul","email":"jeffsul97@gmail.com","linkedIn":"https://www.linkedin.com/in/jsul/","campus":"LA","cohort":"46","jobTitle":"Software Engineer","industry":"Medical CRM","cities":["Denver","San Diego","Omaha"]},{"company":"Healthcare.com","name":"Stephen Jue","email":"steve.h.jue@gmail.com","linkedIn":"https://www.linkedin.com/in/stephen-jue09/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Software Engineer - Front End","industry":"Other","cities":["Toledo"]},{"company":"Healthgrades","name":"Joel K. Perkins","email":"Joel.climbs@gmail.com","linkedIn":"https://www.linkedin.com/in/joelkperkins/","campus":"LA","cohort":"24","jobTitle":"Software Engineer","industry":"","cities":["Sรฃo Paulo","Charlotte","Mumbai","Garland"]},{"company":"Hearst","name":"Josh Roberts","email":"josh@quantumspot.io","linkedIn":"https://www.linkedin.com/in/joshrobertsv2/","campus":"PTRI","cohort":"2","jobTitle":"Lead Frontend Engineer","industry":"Media","cities":["Plano","Minneapolis","San Francisco"]},{"company":"Hearst","name":"Rob Nobile","email":"robert.nobile@gmail.com","linkedIn":"https://www.linkedin.com/in/robnobile/","campus":"NYC","cohort":"20","jobTitle":"Software Engineer","industry":"Media","cities":["Milwaukee","Raleigh","Washington","Toronto"]},{"company":"Hearst Newspaper","name":"Kevin Sarchi","email":"kevinsarchi@yahoo.com","linkedIn":"https://www.linkedin.com/in/kevin-sarchi/","campus":"PTRI","cohort":"2","jobTitle":"Associate Software Engineer","industry":"Media","cities":["Laredo","Memphis","Minneapolis"]},{"company":"Hearth","name":"Vince Ho","email":"vinceho022@gmail.com","linkedIn":"https://www.linkedin.com/in/vinceho022/","campus":"LA","cohort":"40","jobTitle":"Backend Engineer","industry":"Fintech","cities":["Irving","Colorado Springs","Phoenix"]},{"company":"Heartland ","name":"Lloyd Bistany","email":"lloydbistany@gmail.com","linkedIn":"https://www.linkedin.com/in/lloyd-bistany","campus":"NYOI","cohort":"3","jobTitle":"Software Developer ","industry":"Business Tech/Enterprise Tech","cities":["Stockton","Fort Wayne"]},{"company":"Helix","name":"Robert Crocker","email":"robert@vizsimply.com","linkedIn":"https://www.linkedin.com/in/robertcrocker/","campus":"PTRI","cohort":"4","jobTitle":"Data Visualization Engineer","industry":"Bio Tech","cities":["Washington","Chula Vista","Oakland","Chicago"]},{"company":"Hertz","name":"Michael Costello","email":"mcostello91@gmail.com","linkedIn":"https://www.linkedin.com/in/mcostello-swe/","campus":"FTRI / CTRI","cohort":"12","jobTitle":"Software Engineer","industry":"Automotive","cities":["New York","Berlin"]},{"company":"Highnote","name":"Trevor Carr","email":"trevor.a.carr@gmail.com","linkedIn":"https://www.linkedin.com/in/carr-trevor/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Software","cities":["New Orleans","Mesa","Los Angeles"]},{"company":"Hilton","name":"Andrei Cabrera","email":"andrei.cabrera@gmail.com","linkedIn":"https://www.linkedin.com/in/andrei-cabrera/","campus":"PTRI","cohort":"1","jobTitle":"Backend Software Engineer","industry":"Entertainment","cities":["Buffalo","Colorado Springs"]},{"company":"Hilton","name":"Nick Andreala","email":"nandreala@gmail.com","linkedIn":"https://www.linkedin.com/in/nickandreala/","campus":"PTRI","cohort":"3","jobTitle":"Front-End Software Engineer","industry":"Hospitality","cities":["Sydney"]},{"company":"Hilton","name":"Conor Sexton","email":"sextonc@me.com","linkedIn":"https://www.linkedin.com/in/sextonc/","campus":"NYC","cohort":"11","jobTitle":"Render Tier Engineer","industry":"Hospitality","cities":["Long Beach","Wichita","Stockton","Corpus Christi"]},{"company":"Hinge Health","name":"Ahsan Rao","email":"ahsan.ijaz.rao@gmail.com","linkedIn":"https://www.linkedin.com/in/ahsan-rao/","campus":"NYC / ECRI","cohort":"34","jobTitle":"Software Engineer - Full-Stack","industry":"Healthcare","cities":["Cleveland","Kansas City","San Jose","Phoenix"]},{"company":"Hinge Health","name":"Evan King","email":"evanking112@gmail.com","linkedIn":"https://www.linkedin.com/in/evanking11/","campus":"LA","cohort":"32","jobTitle":"Software Engineer","industry":"Healthcare Technology","cities":["Mumbai"]},{"company":"Hinge Health","name":"Vanessa Lutz","email":"vanessayplutz@gmail.com","linkedIn":"https://www.linkedin.com/in/vanessa-lutz","campus":"FTRI","cohort":"2","jobTitle":"Software Engineer","industry":"Health","cities":["Berlin","Detroit","Stockton"]},{"company":"Hireology","name":"Stella Baek","email":"seungyeon1008@gmail.com","linkedIn":"https://www.linkedin.com/in/stellabaek/","campus":"LA / WCRI","cohort":"54","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Durham","Irvine","San Jose"]},{"company":"HiTactics/ ZH Solutions Inc.","name":"Sidhi Gosain","email":"sidhigosain@gmail.com","linkedIn":"https://www.linkedin.com/in/sidhi-gosain/","campus":"LA","cohort":"22","jobTitle":"Software Engineer","industry":"","cities":["Virginia Beach"]},{"company":"HiThrive","name":"Zack Daniels","email":"Zackdanielsnyc@gmail.com","linkedIn":"https://www.linkedin.com/in/zackdanielsnyc/","campus":"LA","cohort":"49","jobTitle":"Full stack software engineer","industry":"Other","cities":["Washington","Raleigh","Durham"]},{"company":"Hive","name":"Max Latoche","email":"max.latoche@gmail.com","linkedIn":"https://www.linkedin.com/in/maxlatoche/","campus":"NYC","cohort":"2","jobTitle":"Senior Software Engineer","industry":"Tech","cities":["Riverside","Buffalo","Oakland"]},{"company":"Hive Technologies Inc","name":"Lilah August","email":"lilahraeaugust@gmail.com","linkedIn":"https://www.linkedin.com/lilahaugust","campus":"NYC / ECRI","cohort":"35","jobTitle":"Software Engineer","industry":"Automotive","cities":["Durham"]},{"company":"HOF Capital","name":"Frank Hu","email":"frank.junhu@gmail.com","linkedIn":"https://www.linkedin.com/in/frankjunhu/","campus":"NYC","cohort":"2","jobTitle":"Venture Analyst","industry":"","cities":["San Diego","Tulsa","Reno"]},{"company":"Home Depot","name":"Hannah Santoyo","email":"hannah.santoyo7@gmail.com","linkedIn":"linkedin.com/in/hannah-santoyo","campus":"LA / WCRI","cohort":"50","jobTitle":"Fullstack Software Engineer","industry":"Retail","cities":["Lincoln","Oakland","Bakersfield","Tucson"]},{"company":"Honey (PayPal)","name":"Jenny Hai","email":"jenny.hai420@gmail.com","linkedIn":"https://www.linkedin.com/in/Jenny-hai/","campus":"LA","cohort":"41","jobTitle":"Software Engineer II","industry":"Fintech / Ecommerce","cities":["Cincinnati","Fort Wayne"]},{"company":"Hooray Agency","name":"Aris Razuri","email":"arazuli4@gmail.com","linkedIn":"https://www.linkedin.com/in/aris-razuri/","campus":"LA","cohort":"34","jobTitle":"Junior Frontend Developer","industry":"Marketing & Advertising","cities":["Milwaukee","Minneapolis","Madison","Tulsa"]},{"company":"Hopin","name":"Linda Wishingrad","email":"linda.wishingrad@gmail.com","linkedIn":"https://www.linkedin.com/in/lindawishingrad/","campus":"LA","cohort":"33","jobTitle":"Front End Engineer","industry":"Tech","cities":["Las Vegas","Chula Vista"]},{"company":"Hopin","name":"Rachel Yoo","email":"yoo.rache@gmail.com","linkedIn":"https://www.linkedin.com/in/rachel-yoo/","campus":"LA","cohort":"33","jobTitle":"Frontend Engineer","industry":"Online Events Platform","cities":["Aurora","Denver","Paris"]},{"company":"Hopkins","name":"Nicole Abramowski","email":"nabramow@gmail.com","linkedIn":"https://www.linkedin.com/in/nicoleabramowski/","campus":"NYC","cohort":"16","jobTitle":"Senior Full Stack Engineer","industry":"Law","cities":["Honolulu","Wichita","Norfolk"]},{"company":"HotPyp","name":"Kendall Lu","email":"kendall.luu@gmail.com","linkedIn":"https://www.linkedin.com/in/kendall-lu/","campus":"LA","cohort":"31","jobTitle":"Front End Software Engineer","industry":"Cyber Security","cities":["Washington","San Francisco","San Jose"]},{"company":"Howl","name":"Adam Allison","email":"allisonadam81@gmail.com","linkedIn":"https://www.linkedin.com/in/allisonadam81/","campus":"LA / WCRI","cohort":"49","jobTitle":"Full Stack Software Engineer","industry":"Other","cities":["Kansas City","Irving","Wichita"]},{"company":"Howl","name":"Ryan Wallace","email":"ryanwallace1396@gmail.com","linkedIn":"https://www.linkedin.com/in/rwallie/","campus":"LA / WCRI","cohort":"49","jobTitle":"Software Engineer","industry":"Media","cities":["Irvine","Fort Worth","Laredo"]},{"company":"Hoylu","name":"Judy Song","email":"judysongg@gmail.com","linkedIn":"https://www.linkedin.com/in/judysongg/","campus":"LA / WCRI","cohort":"49","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Durham","Fort Wayne","San Diego","Santa Ana"]},{"company":"HqO","name":"Shadman Khan","email":"shadmankhan.825@gmail.com","linkedIn":"https://www.linkedin.com/in/shadmanmkhan/","campus":"NYC","cohort":"24","jobTitle":"Senior Software Engineer","industry":"Tenant Experience Platform/Commercial Real Estate","cities":["Reno","Berlin","Paris","Lincoln"]},{"company":"HubSpot","name":"Michael Caballero","email":"caballeromichaelus@gmail.com","linkedIn":"https://www.linkedin.com/in/michael-caballero-a48b0b211/","campus":"LA","cohort":"42","jobTitle":"Senior Software Engineer I","industry":"Software","cities":["Henderson","San Jose","Sydney"]},{"company":"Human Interest","name":"Paulo Choi","email":"Paulinho@hey.com","linkedIn":"https://www.linkedin.com/in/paulochoi","campus":"PTRI","cohort":"2","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Philadelphia","Greensboro","Atlanta"]},{"company":"Humana","name":"Jeffery Richardson","email":"Jeffery.erichardson03@gmail.com","linkedIn":"https://www.linkedin.com/in/jefferyrichardsonii","campus":"FTRI / CTRI","cohort":"12","jobTitle":"Senior Software Engineer","industry":"Insurance","cities":["Boston","Sacramento","Austin","Scottsdale"]},{"company":"HumanQ","name":"Aya Moosa","email":"ayamoosa1@gmail.com","linkedIn":"https://www.linkedin.com/in/ayamoosa/","campus":"LA / WCRI","cohort":"55","jobTitle":"Full Stack Developer","industry":"Other","cities":["Mesa","Lexington","San Francisco","Las Vegas"]},{"company":"Hunter Strategy","name":"Rankin Draa","email":"rankindraa@gmail.com","linkedIn":"https://www.linkedin.com/in/rankin-draa/","campus":"LA / WCRI","cohort":"49","jobTitle":"Application Developer","industry":"IT Services","cities":["Chula Vista","London","Anaheim","Bakersfield"]},{"company":"Hy-Vee","name":"Daniel An","email":"da568@georgetown.edu","linkedIn":"https://www.linkedin.com/in/d-an96/","campus":"NYC / ECRI","cohort":"36","jobTitle":"Software Engineer","industry":"Restaurant, Food, and Beverage","cities":["New Orleans","Fort Wayne","Chandler","Charlotte"]},{"company":"Hy-Vee","name":"Paul Perez","email":"pau.per92@gmail.com","linkedIn":"https://www.linkedin.com/in/perezp92","campus":"NYC / ECRI","cohort":"31","jobTitle":"Software Engineer II","industry":"Restaurant, Food, and Beverage","cities":["Cleveland","San Francisco"]},{"company":"Hyliion","name":"Gordon Yu","email":"gordon@gordonyu.com","linkedIn":"https://www.linkedin.com/in/gordonu/","campus":"LA","cohort":"16","jobTitle":"Senior Full Stack Engineer","industry":"Electric Vehicles","cities":["St. Louis","Chula Vista"]},{"company":"Hypergiant","name":"Abu Fofanah","email":"Bubakarrr@gmail.com","linkedIn":"https://www.linkedin.com/in/Abu-Fofanah/","campus":"LA","cohort":"41","jobTitle":"Senior Frontend Developer","industry":"Technology","cities":["Norfolk","Mumbai","Toledo"]},{"company":"Hyperproof","name":"Tai Nguyen","email":"ndhuutai1@gmail.com","linkedIn":"","campus":"PTRI","cohort":"Beta","jobTitle":"Software Engineer","industry":"Compliance Operations","cities":["Reno","Baltimore","Chesapeake","Albuquerque"]},{"company":"Hyster-Yale Group","name":"Patrick Mojica","email":"patrickmojica@gmail.com","linkedIn":"https://www.linkedin.com/in/patrick-mojica/","campus":"LA / WCRI","cohort":"49","jobTitle":"Software Engineer II - Emerging Technology","industry":"Automotive","cities":["Pittsburgh"]},{"company":"IAPP","name":"Wanlu Ding","email":"wanlu.ding@gmail.com","linkedIn":"https://www.linkedin.com/in/wanlu-ding/","campus":"NYC / ECRI","cohort":"42","jobTitle":"Fullstack software engineer (Contractor)","industry":"Consulting","cities":["Oakland","El Paso","Toronto","Honolulu"]},{"company":"IBI Group","name":"wisdom liu","email":"wliu1290@gmail.com","linkedIn":"https://www.linkedin.com/in/wisdom-liu/","campus":"LA","cohort":"27","jobTitle":"Software Developer","industry":"Architectural Services","cities":["Aurora","Oakland"]},{"company":"IBM","name":"Annette Lin","email":"al261310@gmail.com","linkedIn":"https://www.linkedin.com/in/alin10/","campus":"NYC","cohort":"9","jobTitle":"Software engineer, backend","industry":"IT","cities":["El Paso","Atlanta","Oakland"]},{"company":"IBM","name":"Jimmy Deng","email":"Jdeng619@yahoo.com","linkedIn":"https://www.linkedin.com/in/zhijimmydeng/","campus":"LA","cohort":"30","jobTitle":"Software Developer - Cloud Software Developer","industry":"Sales? Tbh idk","cities":["Wichita","Lubbock","Detroit","Garland"]},{"company":"IBM","name":"Kyle Jurassic","email":"kjurassic@protonmail.com","linkedIn":"https://www.linkedin.com/in/kylejurassic/","campus":"NYC","cohort":"22","jobTitle":"Cloud Engineer","industry":"Technology","cities":["Stockton","San Antonio","Newark"]},{"company":"IBM","name":"Nader Almogazy","email":"nader73107@gmail.com","linkedIn":"https://www.linkedin.com/in/nader-almogazy-97603080/","campus":"NYC","cohort":"30","jobTitle":"Software Engineer","industry":"Tech","cities":["Fresno"]},{"company":"IBM","name":"Brian Bui","email":"umius.brian@gmail.com","linkedIn":"https://www.linkedin.com/in/umius-brian/","campus":"LA","cohort":"35","jobTitle":"Cloud Engineer","industry":"Information Technology & Services","cities":["Miami"]},{"company":"IBM","name":"Vessy Shestorkina","email":"v.shestorkina@gmail.com","linkedIn":"https://www.linkedin.com/in/shestorkina/","campus":"NYC","cohort":"15","jobTitle":"Full Stack Developer","industry":"Technology & Consulting","cities":["Sรฃo Paulo"]},{"company":"Icetec Energy Services","name":"Nicholas Ly","email":"lynick14@gmail.com","linkedIn":"https://www.linkedin.com/in/nicholasly/","campus":"FTRI / CTRI","cohort":"15","jobTitle":"Senior Applications Engineer","industry":"Other","cities":["Glendale","Plano"]},{"company":"ICF","name":"David Cheng","email":"davidzcheng@protonmail.com","linkedIn":"https://www.linkedin.com/in/davidzcheng/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Software Engineer","industry":"Consulting","cities":["Riverside","Kansas City","Tampa","Oakland"]},{"company":"ICF","name":"Gwen Phillips","email":"gwen.phil@gmail.com","linkedIn":"https://www.linkedin.com/in/gwen-phillips/","campus":"PTRI","cohort":"6","jobTitle":"Frontend Developer","industry":"Consulting","cities":["Wichita","Toledo","Glendale"]},{"company":"IDEMIA","name":"David Conrad Friesen","email":"conrad.friesen@pm.me","linkedIn":"https://www.linkedin.com/in/conrad-friesen/","campus":"FTRI","cohort":"4","jobTitle":"Software Engineer I","industry":"Software / Tech","cities":["Tucson","Boston","Nashville","Columbus"]},{"company":"Idemia","name":"Tommy Edmunds","email":"tommyedmunds5@gmail.com","linkedIn":"https://www.linkedin.com/in/tommy-edmunds-a91aa41a9/","campus":"FTRI","cohort":"2","jobTitle":"Software Engineer","industry":"Security","cities":["Boston","Dallas","Chesapeake","Corpus Christi"]},{"company":"iHeartMedia","name":"Genevieve Annable","email":"genevieveannable@gmail.com","linkedIn":"https://www.linkedin.com/in/genevieveannable/","campus":"LA","cohort":"47","jobTitle":"Full-Stack Engineer","industry":"Entertainment","cities":["Norfolk"]},{"company":"iHeartMedia","name":"Alexa Nunes","email":"alexaraenunes@gmail.com","linkedIn":"https://www.linkedin.com/in/alexanunes/","campus":"NYC / ECRI","cohort":"33","jobTitle":"Software Engineer","industry":"News/Entertainment/Streaming Platforms","cities":["Phoenix","Columbus","Seattle"]},{"company":"iHeartRadio","name":"Serhii Kaistrenko","email":"skaistrenko@gmail.com","linkedIn":"https://www.linkedin.com/in/skaistrenko/","campus":"NYC","cohort":"9","jobTitle":"Software Engineer","industry":"Hospitality","cities":["Washington","Denver","Charlotte"]},{"company":"Impending Bloom","name":"William Magee","email":"wmagee03@gmail.com","linkedIn":"https://www.linkedin.com/in/william-magee-22a677181/","campus":"NYC","cohort":"13","jobTitle":"Data Engineer","industry":"Fintech","cities":["Memphis","Las Vegas"]},{"company":"Inari","name":"Kelly Dekitani","email":"kellydekitani@gmail.com","linkedIn":"https://www.linkedin.com/in/kelly-dekitani/","campus":"LA","cohort":"33","jobTitle":"Full Stack Engineer","industry":"Biotech/Agriculture","cities":["London","Indianapolis","Buffalo"]},{"company":"Inbrace","name":"Jim Yoon","email":"jimyoon90@gmail.com","linkedIn":"https://www.linkedin.com/in/jimkyoon","campus":"LA","cohort":"25","jobTitle":"Software Engineer","industry":"Health","cities":["Plano","Kansas City"]},{"company":"Industrious","name":"Bryan Li","email":"Bryan.li@foxmail.com","linkedIn":"https://www.linkedin.com/in/bbbryan14/","campus":"NYC","cohort":"8","jobTitle":"Software Engineer","industry":"","cities":["Colorado Springs"]},{"company":"Infinite Computer Solutions","name":"Brianna Sookhoo","email":"brianna.sookhoo24@gmail.com","linkedIn":"https://www.linkedin.com/in/brianna-sookhoo/","campus":"LA","cohort":"35","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Glendale","Sydney","Milwaukee"]},{"company":"Influent","name":"Adam Berri","email":"adamberri123@gmail.com","linkedIn":"https://www.linkedin.com/in/adamberri/","campus":"NYC","cohort":"29","jobTitle":"Software Engineer 1","industry":"Social Media","cities":["Scottsdale","Saint Paul","San Francisco","Corpus Christi"]},{"company":"Influx Data","name":"Grace Spletzer","email":"gracespletzer05@gmail.com","linkedIn":"https://www.linkedin.com/in/grace-spletzer/","campus":"LA","cohort":"36","jobTitle":"Engineer I","industry":"Database service","cities":["Portland","Mumbai","Irving","Oakland"]},{"company":"InfluxData","name":"Bill OConnell","email":"wdoconnell@gmail.com","linkedIn":"https://www.linkedin.com/in/bill-oconnell/","campus":"NYC","cohort":"30","jobTitle":"Software Engineer","industry":"SaaS","cities":["Philadelphia","Washington","Mesa"]},{"company":"Infor","name":"Olga Naumova","email":"leliknaum@gmail.com","linkedIn":"https://www.linkedin.com/in/onaumova/","campus":"NYC","cohort":"13","jobTitle":"Software Engineer","industry":"software","cities":["Mumbai","Arlington"]},{"company":"Infosys","name":"Honghao Sun","email":"ilovepuffseven@gmail.com","linkedIn":"https://www.linkedin.com/in/honghaosunmichael/","campus":"LA / WCRI","cohort":"52","jobTitle":"Technical lead","industry":"IT Services","cities":["San Jose","Plano"]},{"company":"Infosys","name":"Reuben Kirsh","email":"reubenakirsh@gmail.com","linkedIn":"https://www.linkedin.com/in/reubenkirsh/","campus":"LA","cohort":"41","jobTitle":"Technology Analyst","industry":"Tech","cities":["Washington","St. Petersburg","Fort Worth","Seattle"]},{"company":"Infosys","name":"Samuel Ratemo","email":"Sratemo@gmail.com","linkedIn":"https://www.linkedin.com/in/samuelratemo/","campus":"LA","cohort":"24","jobTitle":"Technology lead -US","industry":"Entertainment","cities":["Mesa"]},{"company":"Inhance Digital","name":"Brian Chiang","email":"chiangbri@gmail.com","linkedIn":"https://www.linkedin.com/in/ch-brian/","campus":"LA","cohort":"34","jobTitle":"Software Engineer","industry":"Marketing","cities":["Memphis","Stockton"]},{"company":"Initiative","name":"Brian Cheng","email":"Chengbrian24@gmail.com","linkedIn":"https://www.linkedin.com/in/brian-cheng24/","campus":"LA","cohort":"45","jobTitle":"Full Stack Developer","industry":"Media Agency","cities":["North Las Vegas","San Francisco","Aurora"]},{"company":"INLT","name":"Andrew Wong","email":"andwong91@gmail.com","linkedIn":"https://www.linkedin.com/in/andwong91/","campus":"LA","cohort":"23","jobTitle":"Full Stack Developer","industry":"","cities":["Cincinnati","Sรฃo Paulo"]},{"company":"Inman","name":"David Kim","email":"scriptura7773@gmail.com","linkedIn":"https://www.linkedin.com/in/davidkim7773/","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Developer","industry":"Real Estate","cities":["Riverside","Washington","Portland"]},{"company":"Innovative Defense Technologies","name":"Daniel Pietsch","email":"drpietsch14@gmail.com","linkedIn":"https://www.linkedin.com/in/danielpietsch14/","campus":"NYOI","cohort":"1","jobTitle":"Associate Software Engineer","industry":"Other","cities":["Tampa","Lincoln","Atlanta"]},{"company":"InRhythm","name":"Altai Chiang","email":"altai.chiang@gmail.com","linkedIn":"https://www.linkedin.com/in/altaic/","campus":"NYC","cohort":"8","jobTitle":"Senior Software Engineer","industry":"Consulting","cities":["Honolulu","Sydney","Paris","Kansas City"]},{"company":"InRhythm","name":"Eric Marcatoma","email":"ericmarc159@gmail.com","linkedIn":"https://www.linkedin.com/in/ericmarc159/","campus":"NYC","cohort":"22","jobTitle":"Software Engineer","industry":"Information Technology & Services","cities":["Tucson","Irvine","Albuquerque"]},{"company":"InRhythm","name":"Benjamin Johnson","email":"johnsben002@gmail.com","linkedIn":"https://www.linkedin.com/in/johnsben002/","campus":"NYC","cohort":"16","jobTitle":"Software Engineer: Web Accessibility","industry":"Consulting","cities":["Boston"]},{"company":"InRhythm","name":"Johnson Che","email":"Johnson.Che01@gmail.com","linkedIn":"https://www.linkedin.com/in/johnsonche/","campus":"NYC","cohort":"30","jobTitle":"Software Engineer","industry":"Consulting","cities":["Garland","Fort Worth"]},{"company":"InRhythm","name":"Wai Fai Lau","email":"wlau8088@gmail.com","linkedIn":"https://www.linkedin.com/in/wai-fai-lau/","campus":"NYC","cohort":"22","jobTitle":"Software Engineer","industry":"Software Consulting","cities":["Los Angeles","Cincinnati","Irving","Tokyo"]},{"company":"Insider, Inc.","name":"Michael Lauri","email":"michael.lauri@gmail.com","linkedIn":"https://www.linkedin.com/in/mlauri/","campus":"NYC","cohort":"20","jobTitle":"Software Engineer II","industry":"Online Media","cities":["Jacksonville","Glendale","Louisville"]},{"company":"Insider, Inc.","name":"Mitchel Severe","email":"mitchelsevere@gmail.com","linkedIn":"https://www.linkedin.com/in/misevere/","campus":"NYC","cohort":"16","jobTitle":"Software Engineer III","industry":"Digital Media","cities":["Fresno","London","New York"]},{"company":"Insight Global","name":"Lucas Mobley","email":"Lucas.W.Mobley@Gmail.com","linkedIn":"https://www.linkedin.com/in/lucasmobley/","campus":"LA","cohort":"41","jobTitle":"Front End Developer","industry":"Entertainment","cities":["Las Vegas"]},{"company":"Insight Global (contract for Nike)","name":"Dave Franz","email":"davefranz@me.com","linkedIn":"https://www.linkedin.com/in/dave-franz/","campus":"LA","cohort":"33","jobTitle":"Senior Full-Stack Automation Developer","industry":"athletic footwear and apparel","cities":["Mexico City","Buffalo"]},{"company":"Insight Global Consulting","name":"Andrew Kessinger","email":"andrew.kessinger@gmail.com","linkedIn":"","campus":"NYC","cohort":"27","jobTitle":"React developer","industry":"Consulting","cities":["Phoenix"]},{"company":"Instride","name":"Jayvee Aspa","email":"jayvee.aspa@gmail.com","linkedIn":"https://www.linkedin.com/in/jayveeaspa/","campus":"LA","cohort":"29","jobTitle":"Software Engineer","industry":"Education","cities":["Santa Ana","Louisville","Virginia Beach","Stockton"]},{"company":"Integral","name":"Anna Larouche","email":"alarouche@gmail.com","linkedIn":"https://www.linkedin.com/in/anna-larouche/","campus":"NYC / ECRI","cohort":"36","jobTitle":"Full-stack Engineer","industry":"Healthcare","cities":["Garland"]},{"company":"Intelepeer","name":"Colton Robbins","email":"coltondr@gmail.com","linkedIn":"https://www.linkedin.com/in/c-robbins/","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Developer","industry":"Other","cities":["Portland"]},{"company":"Intellective","name":"Dennis Lopez","email":"dnnis.lpz@gmail.com","linkedIn":"https://www.linkedin.com/in/dennis-lopezsb/","campus":"LA","cohort":"40","jobTitle":"Full-Stack Developer","industry":"Internet","cities":["Laredo","Norfolk"]},{"company":"Intent Media","name":"Denali DeMots","email":"denali.demots@gmail.com","linkedIn":"https://www.linkedin.com/in/denali-demots/","campus":"NYC","cohort":"3","jobTitle":"Software Engineer","industry":"","cities":["Jersey City"]},{"company":"Interactive Brokers","name":"Luke McInerney","email":"mciluke@gmail.com","linkedIn":"https://www.linkedin.com/in/luke-mcinerney/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Software Engineer","industry":"Fintech","cities":["Irving"]},{"company":"Intercom","name":"Michael Colley","email":"michael.e.colley@googlemail.com","linkedIn":"https://www.linkedin.com/in/michaelecolley/","campus":"NYC","cohort":"27","jobTitle":"Product Engineer","industry":"SaaS, business creation services","cities":["Jacksonville","Jersey City","Louisville","Long Beach"]},{"company":"International association of the better business bureau","name":"Giovanni Rodriguez","email":"Gjrod16@gmail.com","linkedIn":"https://www.linkedin.com/in/giovanni-rodriguez2?trk=public_profile_browsemap&challengeId=AQFtoT_NoFD3KAAAAYkntGZKTiNfC60o4v2Z4zYAnz_4_KDTQUBD7ql40SFHKBenfzE9c6FBwiMar6V09FHeEqmjVS1EAfJ7Ag&submissionId=3cc6cd5a-1812-6f17-7ceb-2e5c0f6f3658&challengeSource=AgFf2bVUVWWRnwAAAYkntJ9Q3ysytHHh91YXaw8gQiFJEKewOYeYX6rLjYNFhlQ&challegeType=AgGCPMxM5AqqqwAAAYkntJ9TeXuuC8zmVgvrjuLxi773fqd8_2_50rU&memberId=AgFbJ9qnK0duCgAAAYkntJ9WYBoUAlgShMkO190TrWZI9XA&recognizeDevice=AgGnKEfL32RWyAAAAYkntJ9aHRqgkhTAzFQoMuIEWQbDY5Tac0sU","campus":"NYC / ECRI","cohort":"33","jobTitle":"Full Stack Developer","industry":"Other","cities":["Milwaukee"]},{"company":"International Business Machines","name":"Michael Evans","email":"amike.evans@gmail.com","linkedIn":"https://www.linkedin.com/in/michael-evans-8278b865/","campus":"NYC","cohort":"14","jobTitle":"Lead Full Stack Developer","industry":"Computer Software","cities":["Los Angeles","Portland","Raleigh"]},{"company":"Intrinsic Enterprises","name":"Jasmine A Gonzalez","email":"jasminezalez@gmail.com","linkedIn":"https://www.linkedin.com/in/jasminezalez/","campus":"PTRI","cohort":"7","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Newark"]},{"company":"Intuit","name":"Daria Bondarenko","email":"dan4ik18@gmail.com","linkedIn":"https://www.linkedin.com/in/daria-b/","campus":"NYC","cohort":"19","jobTitle":"Software Engineer","industry":"Enterprise Software","cities":["Henderson"]},{"company":"Intuit","name":"Davide Molino","email":"davidemmolino@gmail.com","linkedIn":"https://www.linkedin.com/in/davide-molino/","campus":"LA","cohort":"38","jobTitle":"Software Engineer III","industry":"Technology","cities":["Buffalo","Tokyo","Atlanta"]},{"company":"Intuit","name":"Manjeet Kaur","email":"manjeet175@gmail.com","linkedIn":"https://www.linkedin.com/in/kaurmanjeet/","campus":"NYC","cohort":"5","jobTitle":"Senior Frontend Engineer","industry":"","cities":["Mumbai","Sรฃo Paulo"]},{"company":"Intuit","name":"Matthew Marchand","email":"matthew.marchand.93@gmail.com","linkedIn":"https://www.linkedin.com/in/mnmarchand/","campus":"LA","cohort":"40","jobTitle":"Software Engineer II","industry":"Fintech","cities":["Phoenix","London","Greensboro","Portland"]},{"company":"intuit","name":"Yevgeniy Skroznikov","email":"yevskro@gmail.com","linkedIn":"https://www.linkedin.com/in/yevgeniyskroznikov/","campus":"NYC","cohort":"18","jobTitle":"Software Engineer II","industry":"Enterprise software","cities":["Lexington","Albuquerque","Aurora","Memphis"]},{"company":"InvestCloud","name":"Curtis Lovrak","email":"curtislovrak@gmail.com","linkedIn":"https://www.linkedin.com/in/curtislovrak/","campus":"NYOI","cohort":"4","jobTitle":"UI Developer","industry":"Fintech","cities":["Plano","Garland"]},{"company":"Invisory","name":"Thomas Kady","email":"thomas.kady@gmail.com","linkedIn":"https://www.linkedin.com/in/thomas-kady/","campus":"FTRI / CTRI","cohort":"14","jobTitle":"Software Developer","industry":"Cloud Services","cities":["San Antonio","Lexington"]},{"company":"IP.com","name":"Matthew Miller","email":"matthewjohnmiller2020@gmail.com","linkedIn":"https://www.linkedin.com/in/matthew-miller2020/","campus":"FTRI","cohort":"5","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Saint Paul","Henderson","Irvine"]},{"company":"Iridium Satellite LLC","name":"Lyam Hunt","email":"lyamnhunt@gmail.com","linkedIn":"https://www.linkedin.com/in/lyamhunt/","campus":"NYC / ECRI","cohort":"34","jobTitle":"Software Developer II","industry":"Telecommunications","cities":["Chicago","Anaheim"]},{"company":"IronNet Cybersecurity","name":"Daniel Stein","email":"danlikesbikes@gmail.com","linkedIn":"https://www.linkedin.com/in/dangineer/","campus":"LA","cohort":"33","jobTitle":"Senior UI/UX Developer","industry":"Computer and Network Security","cities":["Fort Wayne","Cincinnati","St. Petersburg"]},{"company":"ISAT Total Support","name":"Anthony Le","email":"anthonyle910@yahoo.com","linkedIn":"https://www.linkedin.com/in/anthonyle910/","campus":"LA / WCRI","cohort":"58","jobTitle":"Full Stack Developer","industry":"Other","cities":["Atlanta"]},{"company":"Isobar","name":"Anthony Torrero","email":"Anthonyduarteee@gmail.com","linkedIn":"https://www.linkedin.com/in/anthony-duarte-4b8798159/","campus":"LA","cohort":"41","jobTitle":"Frontend Developer","industry":"Creative Agency","cities":["Mumbai","Omaha","Washington"]},{"company":"Isobar","name":"James Gary","email":"jim@jamesgary.com","linkedIn":"https://www.linkedin.com/in/james-gary/","campus":"NYC","cohort":"15","jobTitle":"Senior Front End Developer","industry":"Media","cities":["San Diego","Colorado Springs","Pittsburgh","San Jose"]},{"company":"iStrategyLabs","name":"Brittany Miltenberger","email":"brittany.miltenberger@gmail.com","linkedIn":"https://www.linkedin.com/in/brittanywm/","campus":"LA","cohort":"23","jobTitle":"Senior Web Developer","industry":"","cities":["Gilbert"]},{"company":"Itential","name":"Chao Zhong Yu","email":"ChaoY91@yahoo.com","linkedIn":"https://www.linkedin.com/in/czyu/","campus":"NYC","cohort":"28","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Newark","Arlington"]},{"company":"Ivy Energy","name":"Gavin Crews","email":"Gcrews1894@gmail.com","linkedIn":"https://www.linkedin.com/in/gavincrews/","campus":"LA","cohort":"39","jobTitle":"Frontend Engineer","industry":"Solar","cities":["Cincinnati","Chesapeake"]},{"company":"Ivy Energy","name":"Nicolas Pita","email":"pitanicolase@gmail.com","linkedIn":"https://www.linkedin.com/in/nicolaspita/","campus":"LA","cohort":"37","jobTitle":"Software Developer","industry":"Clean Energy","cities":["Memphis","Orlando","Phoenix"]},{"company":"Jam City","name":"Tony Ito-Cole","email":"tonyitocole@gmail.com","linkedIn":"https://www.linkedin.com/in/tony-ito-cole/","campus":"LA","cohort":"34","jobTitle":"Platform Engineer","industry":"Mobile Gaming","cities":["Minneapolis","Albuquerque"]},{"company":"Janus Health","name":"Benjamin Michareune","email":"ben.michareune@Gmail.com","linkedIn":"https://www.linkedin.com/in/benmichareune","campus":"FTRI / CTRI","cohort":"7","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Orlando","Chicago","Saint Paul"]},{"company":"Janus Healthcare","name":"Simon Lee","email":"simonlee1125@gmail.com","linkedIn":"https://www.linkedin.com/in/simonhlee/","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Software Engineer II","industry":"Healthcare","cities":["Aurora","Garland"]},{"company":"Jasper (AI)","name":"Marcellies Pettiford","email":"marcellies@pettifords.xyz","linkedIn":"https://www.linkedin.com/in/marcellies-pettiford/","campus":"LA / WCRI","cohort":"49","jobTitle":"Software Engineer II","industry":"Software / Tech","cities":["Cincinnati","Memphis"]},{"company":"Jogg","name":"Alex Kolb","email":"akolb981@gmail.com","linkedIn":"https://www.linkedin.com/in/alexanderjkolb/","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Minneapolis","Laredo","Anchorage","Dallas"]},{"company":"JP Morgan","name":"jonathan k coe","email":"jon.coe@codesmith.io","linkedIn":"https://www.linkedin.com/in/jonathan-k-coe/","campus":"NYC","cohort":"4","jobTitle":"Software Engineer","industry":"","cities":["Mexico City"]},{"company":"JP Morgan","name":"Jimmy Tran","email":"jvtran48@gmail.com","linkedIn":"https://www.linkedin.com/in/jimmytran48/","campus":"NYC / ECRI","cohort":"40","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Oakland","Sรฃo Paulo"]},{"company":"JP Morgan / Chase","name":"Wayne Wilcox","email":"wilcox_wayne@hotmail.com","linkedIn":"https://www.linkedin.com/in/wayne-wilcox/","campus":"NYC","cohort":"19","jobTitle":"Junior Developer Associate","industry":"Fintech","cities":["New Orleans","Anaheim","Philadelphia","Miami"]},{"company":"JP Morgan Chase","name":"David Behmoaras","email":"dbehmoaras@gmail.com","linkedIn":"https://www.linkedin.com/in/david-behmoaras/","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"Fintech","cities":["Miami","Norfolk","Bakersfield","Baltimore"]},{"company":"JP Morgan Chase","name":"Howard Na","email":"howardna317@gmail.com","linkedIn":"https://www.linkedin.com/in/howard-na-jr/","campus":"LA","cohort":"26","jobTitle":"Software Engineer","industry":"Media","cities":["Jersey City","San Diego","Raleigh"]},{"company":"JP Morgan Chase","name":"Stewart Elmore","email":"stewart.elmore@gmail.com","linkedIn":"https://www.linkedin.com/in/stewart-elmore/","campus":"NYC / ECRI","cohort":"31","jobTitle":"Associate Software Engineer","industry":"Fintech","cities":["Columbus","Sรฃo Paulo"]},{"company":"JP Morgan Chase & Co","name":"Parker Steinberg","email":"parker.s52@gmail.com","linkedIn":"https://www.linkedin.com/in/parker-steinberg/","campus":"LA / WCRI","cohort":"52","jobTitle":"Software Engineer","industry":"Fintech","cities":["Chesapeake","Houston"]},{"company":"JP Morgan Chase & Co.","name":"Jimmy Chen","email":"jimmychen12249@gmail.com","linkedIn":"https://www.linkedin.com/in/jimchn/","campus":"NYC","cohort":"17","jobTitle":"Software Engineer","industry":"Fintech","cities":["Honolulu","Memphis","San Francisco","Wichita"]},{"company":"JP Morgan Chase & Co.","name":"Mike Oโ€™Donnell","email":"michaelodonnell18@gmail.com","linkedIn":"https://www.linkedin.com/in/michaelodonnell18","campus":"NYC","cohort":"28","jobTitle":"Full Stack Developer","industry":"Banking","cities":["Minneapolis","Henderson","Stockton","Philadelphia"]},{"company":"JPMChase","name":"Adam Wilson","email":"aswilson87@gmail.com","linkedIn":"https://www.linkedin.com/in/aswilson87/","campus":"PTRI","cohort":"1","jobTitle":"Associate Engineer","industry":"Finance","cities":["Irving","Lincoln"]},{"company":"JPMorgan","name":"Winford Lin","email":"linwinford@gmail.com","linkedIn":"https://www.linkedin.com/in/winfordlin/","campus":"NYC","cohort":"19","jobTitle":"Software Engineer II","industry":"Fintech","cities":["San Diego","Honolulu"]},{"company":"JPMorgan Chase","name":"Adam White","email":"adamkarnwhite@gmail.com","linkedIn":"https://www.linkedin.com/in/adam-karn-white","campus":"NYC / ECRI","cohort":"31","jobTitle":"Senior Associate Software Engineer","industry":"Fintech","cities":["Nashville"]},{"company":"JPMorgan Chase","name":"Adrian Uesugui","email":"auesugui@gmail.com","linkedIn":"https://www.linkedin.com/in/auesugui/","campus":"LA","cohort":"46","jobTitle":"Associate Software Engineer","industry":"Fintech","cities":["Lincoln","Chula Vista","Norfolk"]},{"company":"JPMorgan Chase","name":"John Donovan ","email":"jodonovan845@gmail.com","linkedIn":"https://www.linkedin.com/in/john-d-donovan","campus":"NYC / ECRI","cohort":"37","jobTitle":"Software Engineer - Associate II","industry":"Software / Tech","cities":["Tucson","Saint Paul","Bakersfield","New Orleans"]},{"company":"JPMorgan Chase & Co","name":"Jo Huang","email":"johuangx@gmail.com","linkedIn":"https://www.linkedin.com/in/johuangx/","campus":"NYOI","cohort":"1","jobTitle":"Software Engineer","industry":"Fintech","cities":["Sydney","Raleigh","New Orleans"]},{"company":"JPMorgan Chase & Co.","name":"Stanley Huang","email":"iamstanleyhuang@gmail.com","linkedIn":"https://www.linkedin.com/in/stanleyhuang16/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Fintech","cities":["Fort Wayne"]},{"company":"JPMorgan Chase & Co.","name":"Terence Petersen","email":"robo.terence@gmail.com","linkedIn":"https://www.linkedin.com/in/terence-petersen/","campus":"NYC","cohort":"29","jobTitle":"Associate Software Engineer","industry":"Merchant Services","cities":["Wichita","Chandler","Seattle","Lincoln"]},{"company":"Juniper Behavioral Health","name":"Kelvin Cuesta","email":"kelvinscuesta@gmail.com","linkedIn":"https://www.linkedin.com/in/kelvinscuesta/","campus":"NYC","cohort":"16","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Indianapolis","Toronto"]},{"company":"Justworks","name":"Shelby Neuman","email":"shelbydneuman@gmail.com","linkedIn":"https://www.linkedin.com/in/shelbyneuman/","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Engineer","industry":"Other","cities":["Tucson","Sacramento"]},{"company":"JustWorks Labs","name":"Sophia Huttner","email":"sophjean@gmail.com","linkedIn":"https://www.linkedin.com/in/sophia-huttner/","campus":"NYC","cohort":"16","jobTitle":"Frontend Software Engineer","industry":"HR Suite","cities":["North Las Vegas","Minneapolis"]},{"company":"Karr Barth Administrators","name":"Loralyn Milcarek","email":"loralyn.milcarek@gmail.com","linkedIn":"https://www.linkedin.com/in/loralyn-milcarek/","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Developer","industry":"Other","cities":["Columbus","Paris"]},{"company":"Keller Williams Realty, Inc","name":"Brent Speight","email":"brentjosephspeight@gmail.com","linkedIn":"https://www.linkedin.com/in/brent-speight/","campus":"LA","cohort":"44","jobTitle":"Software Engineer","industry":"Realty","cities":["Lubbock","Virginia Beach","Portland","Garland"]},{"company":"Kelley Blue Book (Cox Automotive)","name":"Ryan Bender","email":"rdbender@me.com","linkedIn":"https://www.linkedin.com/in/rdbender","campus":"LA","cohort":"46","jobTitle":"Software Engineer I","industry":"Automotive","cities":["Reno","Scottsdale","Fort Wayne","Paris"]},{"company":"Kevel","name":"Adam Joesten","email":"adamjoesten@gmail.com","linkedIn":"https://www.linkedin.com/in/adamjoesten/","campus":"LA","cohort":"40","jobTitle":"Senior Software Engineer (SDE II)","industry":"Adtech","cities":["Portland","Beijing","Fresno"]},{"company":"Key Bank (Laurel Road)","name":"Eric Pham","email":"ericpham36@gmail.com","linkedIn":"https://www.linkedin.com/in/epstylesoflife/","campus":"NYC","cohort":"12","jobTitle":"Senior Full Stack Engineer","industry":"Fintech","cities":["San Antonio","Lubbock"]},{"company":"Kibanx","name":"Celeste Knopf","email":"celesteknopf@gmail.com","linkedIn":"https://www.linkedin.com/in/celesteknopf/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Front End Engineer","industry":"Real Estate","cities":["Irvine"]},{"company":"Kin + Carta","name":"Eric Olaya","email":"ericolaya@gmail.com","linkedIn":"https://www.linkedin.com/in/eric-olaya/","campus":"FTRI","cohort":"3","jobTitle":"Software Engineer","industry":"Tech Consulting","cities":["Chesapeake","Newark","Corpus Christi"]},{"company":"Kindo","name":"Hannah Bernstein","email":"hbern00@gmail.com","linkedIn":"https://www.linkedin.com/in/bernstein-hannah/","campus":"LA / WCRI","cohort":"53","jobTitle":"Software Engineer","industry":"Artificial Intelligence","cities":["Anaheim","Aurora"]},{"company":"Kitman Labs","name":"Gregory Levine-Rozenvayn","email":"Grisha617@gmail.com","linkedIn":"https://www.linkedin.com/in/gregory-levine-rozenvayn","campus":"NYC","cohort":"24","jobTitle":"Senior Software Engineer, Frontend","industry":"Sports data science","cities":["Irvine","Virginia Beach"]},{"company":"Klarna","name":"Natalie Vick","email":"vicknatalie@gmail.com","linkedIn":"https://www.linkedin.com/in/vicknatalie/","campus":"NYC","cohort":"16","jobTitle":"Senior Frontend Engineer","industry":"Ecommerce","cities":["Houston","Tulsa","Detroit","Mexico City"]},{"company":"Klaviyo","name":"Amy Chen","email":"aechen46@gmail.com","linkedIn":"https://www.linkedin.com/in/amyechen/","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"Marketing Technology","cities":["Sacramento"]},{"company":"Klaviyo","name":"Elinor Weissberg","email":"elinorthw@gmail.com","linkedIn":"https://www.linkedin.com/in/elinorweissberg/","campus":"NYOI","cohort":"5","jobTitle":"Software Engineer II","industry":"Marketing/Advertising","cities":["Lincoln","Fort Worth","Madison"]},{"company":"Knotel","name":"Rocky Liao","email":"rliao3613@gmail.com","linkedIn":"https://linkedin.com/in/seemsrocky","campus":"NYC","cohort":"12","jobTitle":"Software engineer","industry":"Real Estate","cities":["Los Angeles"]},{"company":"Knowable","name":"Alex Sanhueza","email":"alexrsanhueza@gmail.com","linkedIn":"https://www.linkedin.com/in/alex-sanhueza/","campus":"LA","cohort":"37","jobTitle":"Software Development Engineer II (Front end)","industry":"Legal Services","cities":["Corpus Christi"]},{"company":"Komodo Health","name":"Ju Kim","email":"juhyuns98@gmail.com","linkedIn":"","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Engineer, Applications","industry":"Healthcare","cities":["Irving","Stockton","Chandler","Tucson"]},{"company":"Konami Gaming","name":"Aidan Noble-Goodman","email":"anoblegoodman@gmail.com","linkedIn":"www.linkedin.com/anoblegoodman","campus":"LA","cohort":"28","jobTitle":"Software Engineer II","industry":"Gaming/casino management software","cities":["Fresno","Indianapolis"]},{"company":"Kroger","name":"John Wong","email":"johnwong4150@gmail.com","linkedIn":"https://www.linkedin.com/in/john-wong-fongching/","campus":"LA / WCRI","cohort":"43","jobTitle":"Web Platform Engineer","industry":"Retail","cities":["Indianapolis"]},{"company":"Kroger","name":"Jason Seidler","email":"jsonseidler@gmail.com","linkedIn":"https://www.linkedin.com/in/jason-seidler/","campus":"NYC","cohort":"15","jobTitle":"Senior Front End Developer","industry":"Retail","cities":["Corpus Christi","Beijing","Sacramento","Chula Vista"]},{"company":"Kroger","name":"Kevin MacCoy","email":"kmaccoy@fau.edu","linkedIn":"https://www.linkedin.com/in/kevin-maccoy/","campus":"FTRI","cohort":"1","jobTitle":"Backend Engineer","industry":"Other","cities":["Indianapolis","St. Louis","Milwaukee","Atlanta"]},{"company":"Kroger","name":"Elise McConnell","email":"elisemcconnell11@gmail.com","linkedIn":"www.linkedin.com/in/elisemcconnell","campus":"FTRI / CTRI","cohort":"12","jobTitle":"Software Engineer","industry":"Retail","cities":["Mexico City","Durham"]},{"company":"Kryptowire","name":"Michael Ross","email":"michaelalross@gmail.com","linkedIn":"https://linkedin.com/in/michaelalross","campus":"LA","cohort":"45","jobTitle":"Software Engineer II","industry":"DevSecOps","cities":["Chandler","Denver","Madison"]},{"company":"KyckGlobal","name":"Joseph Lee","email":"josephemlee@gmail.com","linkedIn":"https://www.linkedin.com/in/josephjslee/","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"Fintech","cities":["San Francisco","Long Beach","Chicago","Chesapeake"]},{"company":"Kyte Dynamics, Inc.","name":"Lawrence Yeh","email":"lawyeh391@gmail.com","linkedIn":"linkedin.com/in/lawyeh","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Santa Ana","Toledo"]},{"company":"LA County","name":"Vu Duong","email":"vthanhd@gmail.com","linkedIn":"www.linkedin.com/in/vu-duong","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Application Developer II","industry":"Government","cities":["Oklahoma City","Fort Wayne","Norfolk"]},{"company":"LaaSie.ai","name":"Tyler Sayles","email":"saylestyler@gmail.com","linkedIn":"https://www.linkedin.com/in/tylersayles/","campus":"NYC","cohort":"11","jobTitle":"Full stack Engineer","industry":"Marketing","cities":["Corpus Christi"]},{"company":"Lab49","name":"Eric Tacher","email":"erictacher@gmail.com","linkedIn":"https://www.linkedin.com/in/erictacher/","campus":"NYC","cohort":"23","jobTitle":"Web UI Engineer","industry":"Fintech Consulting","cities":["Sacramento","Corpus Christi"]},{"company":"Lasso Marketing","name":"Andy Tsou","email":"tsou.andy@gmail.com","linkedIn":"https://www.linkedin.com/in/andy-tsou/","campus":"LA","cohort":"45","jobTitle":"Integration Engineer","industry":"Health Care Marketing","cities":["Scottsdale","Detroit","Jacksonville","Washington"]},{"company":"LastPass","name":"E Kathuria","email":"e@kathuria.dev","linkedIn":"https://www.linkedin.com/in/ekathuria","campus":"NYC","cohort":"32","jobTitle":"Front End Engineer","industry":"Software / Tech","cities":["Anchorage","Lincoln","Stockton","Atlanta"]},{"company":"Lattitude","name":"Carolyn Zheng","email":"ruxinzheng01@gmail.com","linkedIn":"https://www.linkedin.com/in/ruxinzhengswe/","campus":"LA / WCRI","cohort":"57","jobTitle":"Software Engineer","industry":"Marketing/Advertising","cities":["Beijing","Omaha"]},{"company":"Launch Darkly","name":"Samuel Kim","email":"samuyyy@gmail.com","linkedIn":"https://www.linkedin.com/in/samuy/","campus":"NYC","cohort":"21","jobTitle":"Software Engineer (Backend)","industry":"Developer Tools","cities":["Buffalo","Winston-Salem","San Antonio","Sydney"]},{"company":"Lawmatics","name":"Omar Rana","email":"omar_rana93@hotmail.com","linkedIn":"https://www.linkedin.com/in/orana1/","campus":"LA","cohort":"45","jobTitle":"Full Stack Engineer","industry":"CRM for law firms","cities":["North Las Vegas","Chesapeake","Louisville","San Diego"]},{"company":"Leadpages","name":"Evan McNeely","email":"evanmcneely@me.com","linkedIn":"https://www.linkedin.com/in/evanmcneely/","campus":"PTRI","cohort":"6","jobTitle":"Software Engineer II","industry":"Marketing","cities":["Glendale"]},{"company":"Leaf Group (Society6)","name":"Oliver Roldan","email":"oproldan01@gmail.com","linkedIn":"","campus":"LA / WCRI","cohort":"40","jobTitle":"Frontend Engineer","industry":"Other","cities":["Albuquerque","Irving"]},{"company":"LeaseLock","name":"Kara Chisholm","email":"kkchisholm@gmail.com","linkedIn":"https://www.linkedin.com/in/karachisholm/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Albuquerque","Bakersfield"]},{"company":"LedgerX","name":"Abaas Khorrami","email":"abaas.khorrami@gmail.com","linkedIn":"https://www.linkedin.com/in/abaas-khorrami/","campus":"NYC","cohort":"16","jobTitle":"Senior Frontend Engineer","industry":"Fintech","cities":["Miami"]},{"company":"LegacyScape","name":"Cassidy Johnson","email":"cassidyrose56@gmail.com","linkedIn":"https://www.linkedin.com/in/cassidy-r-johnson/","campus":"NYC / ECRI","cohort":"36","jobTitle":"Software Engineer","industry":"Other","cities":["Corpus Christi"]},{"company":"LegalZoom","name":"Henry Park","email":"codedenma@gmail.com","linkedIn":"https://www.linkedin.com/in/henrytpark/","campus":"LA / WCRI","cohort":"52","jobTitle":"Software Engineer II, Product Experiences","industry":"Other","cities":["Chandler","Mesa","San Francisco"]},{"company":"Lendbuzz Inc.","name":"Quoc Do","email":"dlaquoc1@gmail.com","linkedIn":"https://www.linkedin.com/in/dlaquoc/","campus":"NYC / ECRI","cohort":"34","jobTitle":"Full Stack Engineer Co-op (Internship)","industry":"Automotive","cities":["Los Angeles","New York"]},{"company":"Lessen Inc","name":"Davette Bryan","email":"davettejones11@gmail.com","linkedIn":"https://www.linkedin.com/in/davette-bryan/","campus":"NYC","cohort":"26","jobTitle":"Jr. Software Engineer","industry":"Real Estate","cities":["Gilbert","Los Angeles"]},{"company":"Lever","name":"Aiden Blinn","email":"apblinn@gmail.com","linkedIn":"https://www.linkedin.com/in/aidenblinn/","campus":"FTRI","cohort":"7","jobTitle":"Integrations Engineer","industry":"IT Services","cities":["Mesa","Phoenix","Omaha"]},{"company":"Lever","name":"Jae Lee","email":"jaelee213@gmail.com","linkedIn":"https://www.linkedin.com/in/jaelee213/","campus":"LA","cohort":"25","jobTitle":"Software Engineer","industry":"Recruiting","cities":["Virginia Beach","Memphis","New Orleans","Seattle"]},{"company":"Lever","name":"Sophia Sam","email":"sophia.sam96@gmail.com","linkedIn":"https://www.linkedin.com/in/sophia-sam","campus":"FTRI","cohort":"7","jobTitle":"Software Engineer II","industry":"Software / Tech","cities":["Tampa","Stockton","Albuquerque"]},{"company":"Lexis Nexis","name":"Danny Martinez","email":"codesmith@jdanielmartinez.com","linkedIn":"https://www.linkedin.com/in/jdanielmartinez/","campus":"LA","cohort":"42","jobTitle":"GraphQL Full Stack Developer","industry":"Paralegal","cities":["Columbus"]},{"company":"LexisNexis","name":"Graham Albachten","email":"albachteng@gmail.com","linkedIn":"https://www.linkedin.com/in/graham-albachten-00162a52/","campus":"FTRI","cohort":"1","jobTitle":"GraphQL Full Stack Developer","industry":"Legal","cities":["Baltimore","Cleveland"]},{"company":"Lexmark","name":"Luke Roberts","email":"luke.roberts089@gmail.com","linkedIn":"https://www.linkedin.com/in/luke-roberts0/","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Oakland","Greensboro"]},{"company":"Liberty Maritime","name":"Garrett Layden","email":"garlayden@gmail.com","linkedIn":"https://linkedin.com/in/garrett-layden","campus":"NYC / ECRI","cohort":"33","jobTitle":"Full Stack Developer","industry":"Other","cities":["Henderson","Boston"]},{"company":"Liberty Mutual","name":"Bryan Kim","email":"bkim0826@gmail.com","linkedIn":"https://www.linkedin.com/in/bkimmm/","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Software Engineer","industry":"Insurance","cities":["Garland","Reno","Sacramento","Honolulu"]},{"company":"Liberty Mutual","name":"Cristian De Los Rios","email":"Cris2595@gmail.com","linkedIn":"https://www.linkedin.com/in/cristian-dlr/","campus":"FTRI","cohort":"5","jobTitle":"Software Engineer","industry":"Insurance","cities":["Stockton"]},{"company":"Liberty Mutual","name":"Patrick Sullivan","email":"patrick@jsullivan.org","linkedIn":"https://www.linkedin.com/in/patrick-j-m-sullivan/","campus":"LA","cohort":"43","jobTitle":"Software Engineer","industry":"Insurance","cities":["Denver","Anaheim","Toronto","Buffalo"]},{"company":"Liberty Mutual","name":"Robert Tipton","email":"robbytiptontol@gmail.com","linkedIn":"https://www.linkedin.com/in/robert-tipton/","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Engineer","industry":"Insurance","cities":["Dallas"]},{"company":"Liberty Mutual","name":"Tyler Jameson Martinez","email":"tm6002005@gmail.com","linkedIn":"https://www.linkedin.com/mwlite/in/tylerjamesonmartinez","campus":"LA","cohort":"43","jobTitle":"Software engineer","industry":"Insurance","cities":["Lexington","Lincoln"]},{"company":"LifeOmic","name":"Chloe Courtois","email":"crc.courtois@gmail.com","linkedIn":"https://www.linkedin.com/in/chloe-courtois-3337a210b/","campus":"FTRI","cohort":"7","jobTitle":"Associate Software Engineer","industry":"Healthcare","cities":["Louisville","Dallas","Jacksonville"]},{"company":"Limble CMMS","name":"Josh Merrell","email":"joshmerrell.us@gmail.com","linkedIn":"https://www.linkedin.com/in/joshmerrell/","campus":"PTRI","cohort":"6","jobTitle":"Software Developer III","industry":"Software / Tech","cities":["Tampa","Bakersfield","Sacramento","St. Petersburg"]},{"company":"Linguabee","name":"Connor Gillis","email":"connoregillis@gmail.com","linkedIn":"https://www.linkedin.com/in/connor-gillis/","campus":"NYC","cohort":"29","jobTitle":"Front End Software Engineer","industry":"Interpreting","cities":["Mumbai","Chandler","Oklahoma City","Berlin"]},{"company":"LinkedIn","name":"Ethan Yeh","email":"Ethanhwyeh@gmail.com","linkedIn":"https://www.linkedin.com/in/ethanhwyeh/","campus":"PTRI","cohort":"2","jobTitle":"Full Stack Software Engineer","industry":"Professional Networking","cities":["Jersey City"]},{"company":"LinkedIn","name":"Douglas Yao","email":"doug.yao@gmail.com","linkedIn":"https://www.linkedin.com/in/douglas-yao/","campus":"FTRI / CTRI","cohort":"16","jobTitle":"Software Engineer","industry":"Other","cities":["Plano","Fort Wayne","Fresno"]},{"company":"Linus Health","name":"Tommy Song","email":"Tommysong123@gmail.com","linkedIn":"","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Health tech","cities":["Cleveland","Albuquerque"]},{"company":"LiquidPixels","name":"Christian Looff","email":"ctnguy10@gmail.com","linkedIn":"https://www.linkedin.com/in/christian-looff/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Corpus Christi","Detroit","Charlotte","Laredo"]},{"company":"Literably","name":"Tiffany Wong","email":"Wongt1227@gmail.com","linkedIn":"https://www.linkedin.com/in/tiffanywong149","campus":"NYC / ECRI","cohort":"42","jobTitle":"Junior Software Engineer","industry":"Education/Edtech","cities":["Louisville"]},{"company":"Little Cinema","name":"Kenny Ma","email":"Kennyjjma@gmail.com","linkedIn":"","campus":"NYC","cohort":"15","jobTitle":"Front End Engineer","industry":"Entertainment","cities":["Sรฃo Paulo","Tulsa","Fresno","Stockton"]},{"company":"Littlebits","name":"Jinsung Park","email":"js.lia.park@gmail.com","linkedIn":"https://www.linkedin.com/in/jsliapark/","campus":"NYC","cohort":"9","jobTitle":"Software Engineer","industry":"Beauty/Cosmetic","cities":["Stockton","Oakland","Norfolk"]},{"company":"Live Nation","name":"Colin Gibson","email":"colingibs@gmail.com","linkedIn":"https://www.linkedin.com/in/colin--gibson/","campus":"LA","cohort":"44","jobTitle":"Software Development Engineer","industry":"Real Estate","cities":["San Antonio","Madison","Sydney"]},{"company":"Lively Video","name":"Mark Miller","email":"markmmiller825@gmail.com","linkedIn":"https://www.linkedin.com/in/markmanuelmiller/","campus":"NYC","cohort":"22","jobTitle":"Senior Software Engineer","industry":"Entertainment/education","cities":["Miami","Plano","San Francisco","Anchorage"]},{"company":"LivePerson","name":"Geoffrey Lin","email":"geoffrey.s.lin@gmail.com","linkedIn":"https://www.linkedin.com/in/geoff-lin/","campus":"NYC","cohort":"13","jobTitle":"Software Engineer","industry":"Computer Software","cities":["Indianapolis","Mexico City","Tokyo"]},{"company":"LivePerson","name":"Taihyun (Ray) Lee","email":"taihyun.ray.lee@gmail.com","linkedIn":"https://www.linkedin.com/in/taihyun-ray-lee/","campus":"NYC","cohort":"8","jobTitle":"Software Development Engineer","industry":"Software (SAAS)","cities":["Atlanta"]},{"company":"LivePerson","name":"Taihyun Lee","email":"th9061@gmail.com","linkedIn":"https://www.linkedin.com/in/taihyun-ray-lee","campus":"NYC","cohort":"8","jobTitle":"Software Development Engineer","industry":"Entertainment","cities":["New Orleans","North Las Vegas","Long Beach","Philadelphia"]},{"company":"LogicMonitor","name":"Jessica Vaughan","email":"jessicavaughan820@gmail.com","linkedIn":"https://www.linkedin.com/in/jessicavaughan820/","campus":"LA","cohort":"30","jobTitle":"frontend developer","industry":"SaaS","cities":["Fort Worth"]},{"company":"Lokavant","name":"Eric Peng","email":"tzerpeng@gmail.com","linkedIn":"https://www.linkedin.com/in/eric-peng-jojo/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"Information Technology & Services","cities":["Cincinnati"]},{"company":"Lonesdale Invest","name":"Coral Fussman","email":"coralfussman@gmail.com","linkedIn":"https://www.linkedin.com/in/coral-fussman-21721538/","campus":"FTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Fintech","cities":["Chula Vista","Newark","Scottsdale","Greensboro"]},{"company":"Longtail Studios","name":"Daniel Steinbrook","email":"steinbrookdaniel@gmail.com","linkedIn":"https://www.linkedin.com/in/daniel-steinbrook/","campus":"LA / WCRI","cohort":"52","jobTitle":"Developer - AI Models Integration","industry":"Software / Tech","cities":["Portland"]},{"company":"Loop","name":"Olivia Hodel","email":"ohodel16@gmail.com","linkedIn":"https://www.linkedin.com/in/olivia-hodel/","campus":"NYC / ECRI","cohort":"39","jobTitle":"Associate Software Engineer","industry":"Other","cities":["Reno","Atlanta","Denver","St. Louis"]},{"company":"Lord, Abbett & Co. LLC","name":"Vince Chin","email":"vincech@gmail.com","linkedIn":"https://www.linkedin.com/in/vincech/","campus":"PTRI","cohort":"5","jobTitle":"Software Engineer","industry":"Fintech","cities":["Philadelphia","Oklahoma City","Tampa","San Jose"]},{"company":"Los Alamos National Laboratory","name":"James Howat","email":"james@howat.dev","linkedIn":"LinkedIn.com/in/jamesbhowat","campus":"FTRI / CTRI","cohort":"12","jobTitle":"Software Developer 2","industry":"Security","cities":["Dallas","Seattle","Atlanta"]},{"company":"Lotic AI","name":"Adam Blackwell","email":"blackwell.ada@gmail.com","linkedIn":"https://www.linkedin.com/in/adam-blackwell-85918595/","campus":"PTRI","cohort":"3","jobTitle":"Software Engineer","industry":"Mental Health","cities":["Chula Vista","Charlotte"]},{"company":"Low Associates","name":"William Robson","email":"will.robson19@gmail.com","linkedIn":"https://www.linkedin.com/in/william-k-robson/","campus":"LA / WCRI","cohort":"50","jobTitle":"Full Stack Developer","industry":"Software / Tech","cities":["Omaha"]},{"company":"Lowes","name":"Joshuah Edwards","email":"joshuah.edwards@proton.me","linkedIn":"linkedin.com/in/joshuah-edwards/","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Software Engineer","industry":"Retail","cities":["Long Beach","Columbus"]},{"company":"Lumi AI","name":"Ryan Hastings","email":"rhaasti@gmail.com","linkedIn":"https://www.linkedin.com/in/rhaasti/","campus":"NYOI","cohort":"4","jobTitle":"Front-End Engineer (six month contract-to-hire)","industry":"Artificial Intelligence/Machine Learning","cities":["Memphis","Beijing","Las Vegas"]},{"company":"Lumifi","name":"Ryan Gause","email":"Ryan.g.gause.3@gmail.com","linkedIn":"LinkedIn.com/in/ryangause","campus":"PTRI","cohort":"9","jobTitle":"Software Developer II","industry":"Security","cities":["Toronto","Los Angeles","Philadelphia"]},{"company":"Lunchbox","name":"Judy Tan","email":"judytan86@gmail.com","linkedIn":"https://www.linkedin.com/in/judy-tan93/","campus":"NYC","cohort":"23","jobTitle":"Frontend Engineer","industry":"Food Industry","cities":["Saint Paul","Santa Ana","Chicago"]},{"company":"LVRG","name":"Gary Slootskiy","email":"garyslootskiy@gmail.com","linkedIn":"https://linkedin.com/in/garyslootskiy","campus":"NYC","cohort":"21","jobTitle":"Senior Software Engineer","industry":"Supply Chain Management","cities":["Lexington","Lincoln","Seattle","Las Vegas"]},{"company":"Lytx","name":"Miller Johnston","email":"miller.johnston17@gmail.com","linkedIn":"linkedin.com/in/miller-johnston","campus":"FTRI / CTRI","cohort":"6","jobTitle":"Software Engineer II","industry":"Automotive","cities":["Dallas","St. Louis","Chesapeake","St. Petersburg"]},{"company":"M Science","name":"Celena Chan","email":"celenachan@gmail.com","linkedIn":"https://www.linkedin.com/in/celenachan","campus":"NYC / ECRI","cohort":"33","jobTitle":"Software Engineer","industry":"Fintech","cities":["Bakersfield","Las Vegas"]},{"company":"Madison Logic","name":"Richie Edwards","email":"richie00edwards@gmail.com","linkedIn":"https://www.linkedin.com/in/richieedwards/","campus":"NYC","cohort":"21","jobTitle":"Full Stack Engineer","industry":"Marketing","cities":["Winston-Salem","Louisville"]},{"company":"Maestro","name":"Jacob Banks","email":"jacobjeffreybanks@gmail.com","linkedIn":"https://www.linkedin.com/in/jacobjbanks/","campus":"LA","cohort":"30","jobTitle":"Software Engineer","industry":"Media/Entertainment","cities":["Beijing","Chula Vista"]},{"company":"Magic Leap","name":"Randy Reyes","email":"rqreyes@gmail.com","linkedIn":"https://www.linkedin.com/in/rqreyes/","campus":"LA","cohort":"31","jobTitle":"Front-End Software Engineer","industry":"Augmented Reality","cities":["Scottsdale","Miami","St. Petersburg","Portland"]},{"company":"MagMutual","name":"Mark Yencheske","email":"markyencheske@gmail.com","linkedIn":"https://www.linkedin.com/in/markyencheske/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Software Engineer","industry":"Insurance","cities":["Oklahoma City","Toronto","Durham","Fort Worth"]},{"company":"Magnite","name":"John Madrigal","email":"johnmadrigal17@gmail.com","linkedIn":"https://www.linkedin.com/in/john-r-madrigal/","campus":"LA","cohort":"37","jobTitle":"Front End Software Development Engineer","industry":"Adtech","cities":["London","St. Petersburg","Honolulu"]},{"company":"Mailchimp/Intuit","name":"Albert Han","email":"albert.h1231@gmail.com","linkedIn":"https://www.linkedin.com/in/albert-han1","campus":"LA","cohort":"47","jobTitle":"SWE II","industry":"Marketing/financial management","cities":["Anaheim","Dallas","Newark"]},{"company":"Mailchimp/Intuit","name":"Gerry Bong","email":"ggbong734@gmail.com","linkedIn":"https://www.linkedin.com/in/gerry-bong/","campus":"PTRI","cohort":"6","jobTitle":"Software Engineer","industry":"Other","cities":["Cleveland","San Diego"]},{"company":"Maisonette","name":"Heidi Kim","email":"heidiyoora@gmail.com","linkedIn":"https://www.linkedin.com/in/heidiykim/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"E-commerce","cities":["Pittsburgh"]},{"company":"Major League Baseball","name":"Steven Rosas","email":"srosas20@gmail.com","linkedIn":"https://www.linkedin.com/in/rosassteven/","campus":"NYC","cohort":"9","jobTitle":"Software Engineer","industry":"Sports","cities":["St. Petersburg"]},{"company":"MakerBot","name":"Anthony R Toreson","email":"anthony.toreson@gmail.com","linkedIn":"https://www.linkedin.com/in/atoreson/","campus":"NYC","cohort":"13","jobTitle":"Senior Software Engineer","industry":"Hardware manufacturer (3d printers)","cities":["Glendale","Cincinnati","Lubbock","Durham"]},{"company":"ManageGo","name":"Bo Peng","email":"bopeng95@gmail.com","linkedIn":"https://www.linkedin.com/in/bopeng95/","campus":"NYC","cohort":"10","jobTitle":"Software Developer","industry":"Real Estate","cities":["Memphis"]},{"company":"Manatee","name":"Raivyno Sutrisno","email":"yessysutter@gmail.com","linkedIn":"https://www.linkedin.com/in/raivyno-sutrisno/","campus":"LA / WCRI","cohort":"52","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Nashville","Kansas City","Long Beach"]},{"company":"Mantium","name":"Steve Hong","email":"swe.stevehong@gmail.com","linkedIn":"https://www.linkedin.com/in/stevehong-swe/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Artificial Intelligence","cities":["Henderson","Jacksonville"]},{"company":"MANTL","name":"Lourent Flores","email":"lourent.flores@gmail.com","linkedIn":"https://www.linkedin.com/in/lourent-flores/","campus":"NYC","cohort":"22","jobTitle":"Full stack Engineer","industry":"Fintech","cities":["New Orleans","Baltimore","Portland"]},{"company":"MANTL","name":"TJ Wetmore","email":"Thomas.j.wetmore@gmail.com","linkedIn":"https://www.linkedin.com/in/tjwetmore/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Fintech","cities":["Phoenix","Albuquerque"]},{"company":"Mantra Health","name":"Konrad Kopko","email":"konradkopko1@gmail.com","linkedIn":"https://www.linkedin.com/in/konradkopko/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"HealthTech","cities":["Toronto","Chandler","Tulsa"]},{"company":"Maple.Finance","name":"Thomas Harper","email":"tommyrharper@gmail.com","linkedIn":"https://www.linkedin.com/in/thomas-robert-harper/","campus":"PTRI","cohort":"2","jobTitle":"Senior Software Engineer","industry":"Blockchain/Web3","cities":["San Francisco","Portland","Colorado Springs","Bakersfield"]},{"company":"Mariana Tek","name":"Owen Eldridge","email":"oweneldridge7@gmail.com","linkedIn":"https://www.LinkedIn.com/in/owen-eldridge","campus":"NYC","cohort":"29","jobTitle":"Software Engineer","industry":"Fitness Center Saas","cities":["Sydney","Mumbai","Riverside"]},{"company":"MarineSitu","name":"Emily Paine","email":"erpaine@gmail.com","linkedIn":"https://www.linkedin.com/in/emily-paine1/","campus":"FTRI / CTRI","cohort":"12","jobTitle":"Software Engineer","industry":"Other","cities":["Indianapolis","Riverside"]},{"company":"Mark43","name":"Kadir Gundogdu","email":"kadirgund@gmail.com","linkedIn":"https://www.linkedin.com/in/kadirgund/","campus":"NYC","cohort":"20","jobTitle":"Software Engineer","industry":"Law Enforcement","cities":["Miami"]},{"company":"Mark43","name":"Sophie Nye","email":"sophie.nye@gmail.com","linkedIn":"","campus":"NYC","cohort":"12","jobTitle":"Software engineer","industry":"Itโ€™s software for first responders, not sure what industry that is","cities":["Fresno"]},{"company":"Marsh Mclennan","name":"Mina Koo","email":"minalunakoo@gmail.com","linkedIn":"linkedin.com/in/minakoo","campus":"NYC / ECRI","cohort":"30","jobTitle":"Developer","industry":"Insurance","cities":["Saint Paul","Norfolk"]},{"company":"MAS Medical Staffing","name":"Jeffrey Schrock","email":"rhythmmagi@gmail.com","linkedIn":"https://www.linkedin.com/in/jmschrock/","campus":"NYC","cohort":"4","jobTitle":"React Software Engineer","industry":"FinTech","cities":["Sรฃo Paulo"]},{"company":"MassMutual","name":"Ausar English","email":"ausareenglish@gmail.com","linkedIn":"https://www.linkedin.com/in/ausarenglish/","campus":"NYC","cohort":"24","jobTitle":"Fullstack Developer","industry":"Financial Services/Insurance","cities":["Toronto","Minneapolis"]},{"company":"MassMutual","name":"Bryanna DeJesus","email":"bryanna.dejesus@gmail.com","linkedIn":"https://www.linkedin.com/in/bryannadejesus/","campus":"NYC","cohort":"30","jobTitle":"Full Stack Developer","industry":"Insurance","cities":["Berlin"]},{"company":"MasterCard","name":"Abigail Gerig","email":"abigail.gerig@gmail.com","linkedIn":"https://www.linkedin.com/in/abigail-gerig/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Oklahoma City","Toronto"]},{"company":"Mastercard","name":"Edwin Lin","email":"Edwinlim@gmail.com","linkedIn":"https://www.linkedin.com/in/edwinlin/","campus":"NYC","cohort":"14","jobTitle":"JavaScript Engineer","industry":"Payment card","cities":["Miami","North Las Vegas","San Francisco","Oakland"]},{"company":"Mavis","name":"Aalayah-Lynn Olaes","email":"olaesaalayah@gmail.com","linkedIn":"linkedin.com/in/aalayaholaes","campus":"NYC / ECRI","cohort":"40","jobTitle":"Software Engineer","industry":"Automotive","cities":["Long Beach"]},{"company":"Mavis Tire","name":"Peter Kennedy","email":"Ptkennedy9@gmail.com","linkedIn":"https://www.linkedin.com/peter-kennedy","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Full Stack Software Engineer ","industry":"Automotive","cities":["Los Angeles","Fort Wayne","Aurora","San Francisco"]},{"company":"Mavis Tires","name":"Jessica Davila","email":"jdav92@gmail.com","linkedIn":"https://www.linkedin.com/feed/","campus":"PTRI","cohort":"7","jobTitle":"Senior Full Stack Engineer","industry":"Automotive","cities":["Mesa","Sรฃo Paulo","Fort Wayne","Nashville"]},{"company":"Maya Health","name":"Danny Byrne","email":"danny.byrne.dev@gmail.com","linkedIn":"https://www.linkedin.com/in/danny-byrne-la/","campus":"LA","cohort":"30","jobTitle":"Front End Engineer","industry":"Psychedelic Health","cities":["Saint Paul","Louisville"]},{"company":"Maze","name":"Henry Black","email":"blackhaj@gmail.com","linkedIn":"https://www.linkedin.com/in/henryblack1/","campus":"NYC","cohort":"18","jobTitle":"Full Stack Engineer","industry":"Design","cities":["Houston","Plano"]},{"company":"McGraw Hill","name":"Kristin Green","email":"kngreen@umich.edu","linkedIn":"https://www.linkedin.com/in/kristin-green-101902a4/","campus":"NYC / ECRI","cohort":"34","jobTitle":"Software Engineer","industry":"Other","cities":["Pittsburgh"]},{"company":"Mcgraw Hill","name":"Richard Guo","email":"richardguo11@gmail.com","linkedIn":"https://www.linkedin.com/in/richardyguo/","campus":"LA / WCRI","cohort":"46","jobTitle":"Software Engineer","industry":"Other","cities":["Las Vegas","Santa Ana","Charlotte"]},{"company":"McGraw-Hill Education","name":"Victor Wang","email":"vwang4536@gmail.com","linkedIn":"https://www.linkedin.com/in/vwang4536","campus":"LA","cohort":"25","jobTitle":"Software Engineer","industry":"Consulting and technology services","cities":["Detroit","San Jose"]},{"company":"McKinsey & Company","name":"Em Podhorcer","email":"epithe@gmail.com","linkedIn":"https://www.linkedin.com/feed/","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Engineer I","industry":"Consulting","cities":["Wichita","Lexington","Orlando"]},{"company":"McKinsey & Company","name":"Matthew Yeon","email":"yeon34387@gmail.com","linkedIn":"https://www.linkedin.com/in/matthew-yeon/","campus":"LA / WCRI","cohort":"51","jobTitle":"Software Engineer","industry":"Consulting","cities":["Fort Wayne"]},{"company":"MDCalc","name":"Jonah Wilkof","email":"wilkof.jonah@gmail.com","linkedIn":"https://www.linkedin.com/in/jonahwilkof/","campus":"NYC","cohort":"7","jobTitle":"Software Engineer","industry":"Fintech, Payment Processing","cities":["Corpus Christi","Bakersfield","San Antonio"]},{"company":"Medal.tv","name":"Joseph Heinz","email":"joeheinz99@gmail.com","linkedIn":"https://www.linkedin.com/in/joseph-heinz1/","campus":"NYC / ECRI","cohort":"33","jobTitle":"Full Stack Engineer","industry":"Gaming","cities":["Scottsdale","Dallas"]},{"company":"MediaMonks NYC","name":"Case Simmons","email":"casesimmons@pm.me","linkedIn":"https://www.linkedin.com/mwlite/in/case-simmons","campus":"LA","cohort":"38","jobTitle":"Creative Technologist","industry":"Digital Production","cities":["Los Angeles","Milwaukee"]},{"company":"Mediaocean","name":"Parker Keller","email":"parkerkeller@gmail.com","linkedIn":"https://www.linkedin.com/in/parkerkeller/","campus":"LA","cohort":"28","jobTitle":"Senior Software Engineer","industry":"Advertising & Marketing","cities":["San Diego","Las Vegas","Laredo","Seattle"]},{"company":"Medical Informatics Engineering","name":"Keifer Alan Beck","email":"keiferbeck@gmail.com","linkedIn":"https://www.linkedin.com/in/k-alan-beck","campus":"FTRI / CTRI","cohort":"16","jobTitle":"Fullstack Developer","industry":"Healthtech/Healthcare","cities":["Colorado Springs"]},{"company":"Medidata","name":"Wontae Han","email":"wontaeh@gmail.com","linkedIn":"https://www.linkedin.com/in/wontaeh/","campus":"NYC","cohort":"4","jobTitle":"Frontend Engineer","industry":"","cities":["Nashville","Lexington","Wichita","St. Petersburg"]},{"company":"Medium","name":"Keiran Carpen","email":"keirancarpen@gmail.com","linkedIn":"https://www.linkedin.com/in/keirancarpen/","campus":"NYC","cohort":"18","jobTitle":"Senior Full Stack Engineer, Trust & Safety","industry":"Online publishing platform","cities":["Reno","Miami"]},{"company":"Medly Pharmacy","name":"Austin Ruby","email":"austinjruby@gmail.com","linkedIn":"https://www.linkedin.com/in/austinjruby/","campus":"NYC","cohort":"14","jobTitle":"Software Engineer I","industry":"Healthcare","cities":["Washington","Norfolk","Chandler"]},{"company":"MedMen","name":"Brendan Morrell","email":"brendanmorrell@gmail.com","linkedIn":"https://linkedin.com/in/brendanmorrell","campus":"LA","cohort":"22","jobTitle":"Software Engineer","industry":"","cities":["Fort Wayne","North Las Vegas"]},{"company":"Meltwater","name":"Richard Lam","email":"rlam108994@gmail.com","linkedIn":"https://www.linkedin.com/in/richardlam108/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"Digital Media Intelligence","cities":["Oakland","New York"]},{"company":"MeltWater","name":"Sebastian Damazo","email":"sebastiandamazo1@gmail.com","linkedIn":"https://www.linkedin.com/in/ernesto-sebastian-damazo","campus":"LA","cohort":"42","jobTitle":"Backend software engineer level 2","industry":"Software as a Service","cities":["Arlington","Fresno"]},{"company":"Memorial Sloan Kettering","name":"David Zhang","email":"davidzhang8828@gmail.com","linkedIn":"https://www.linkedin.com/in/davdjz/","campus":"NYC","cohort":"17","jobTitle":"Advanced Software Developer","industry":"Healthcare","cities":["San Francisco","Henderson","Sรฃo Paulo","Norfolk"]},{"company":"Memorial Sloan Kettering","name":"Phillip Yoo","email":"phillipyoo.218@gmail.com","linkedIn":"https://www.linkedin.com/in/phillipyoo218/","campus":"FTRI","cohort":"5","jobTitle":"Bioinformatics Software Engineer I","industry":"Healthcare","cities":["Beijing","San Antonio"]},{"company":"Memorial Sloan Kettering Cancer Center","name":"Raymond Kwan","email":"kwanvm@gmail.com","linkedIn":"https://www.linkedin.com/in/rkwn/","campus":"NYC","cohort":"16","jobTitle":"Frontend Software Engineer","industry":"Health","cities":["Chandler","Houston"]},{"company":"Memorial Sloan Kettering Cancer Center","name":"Natsuki Wada","email":"wachka06@gmail.com","linkedIn":"https://www.linkedin.com/in/natsukiwada/","campus":"FTRI","cohort":"3","jobTitle":"Software Engineer II","industry":"Healthcare","cities":["Plano","Baltimore","Saint Paul"]},{"company":"Mento","name":"James Highsmith","email":"me@jameshighsmith.com","linkedIn":"https://www.linkedin.com/in/jameshighsmith/","campus":"NYC","cohort":"15","jobTitle":"Lead Fullstack Engineer","industry":"HR","cities":["Raleigh","Berlin"]},{"company":"Mentorcam","name":"Stephen Rivas","email":"Stephen.Anthony.rivas@gmail.com","linkedIn":"https://linkedin.com/in/stephenscript","campus":"NYOI","cohort":"1","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Newark","Colorado Springs"]},{"company":"Mentra","name":"Mathew Hultquist","email":"mathew.j.hultquist@gmail.com","linkedIn":"https://www.linkedin.com/in/mjhult/","campus":"PTRI","cohort":"9","jobTitle":"Senior Full Stack Engineer","industry":"Software / Tech","cities":["Kansas City","Pittsburgh"]},{"company":"Merck","name":"Jin Yoo","email":"iyoojin@gmail.com","linkedIn":"https://www.linkedin.com/in/iyoojin/","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Jacksonville","Bakersfield"]},{"company":"Meredith","name":"Kai Evans","email":"kaijosefevans@gmail.com","linkedIn":"https://www.linkedin.com/in/jonathan-jim-ramirez/","campus":"LA","cohort":"42","jobTitle":"Software Engineer","industry":"Media Agency","cities":["El Paso","Dallas","Irving"]},{"company":"Mess","name":"Anne-lise Emig","email":"anneliseemig@gmail.com","linkedIn":"linkedin.com/in/anneliseemig","campus":"FTRI / CTRI","cohort":"15","jobTitle":"Junior Web Developer","industry":"Marketing","cities":["San Antonio","Irving","Las Vegas","Chula Vista"]},{"company":"Meta","name":"Carlos Lovera","email":"Calovera@bu.edu","linkedIn":"","campus":"PTRI","cohort":"2","jobTitle":"Partner Engineer","industry":"Fintech","cities":["Durham","Mexico City","Mesa","Detroit"]},{"company":"Meta","name":"Jonathan Jim Ramirez","email":"jramirezor.91@gmail.com","linkedIn":"https://www.linkedin.com/in/jonathan-jim-ramirez/","campus":"PTRI","cohort":"0","jobTitle":"Data Engineer","industry":"Social Media + VR","cities":["Greensboro","Tucson"]},{"company":"Meta","name":"Karandeep Ahluwalia","email":"karandeepahluwalia@gmail.com","linkedIn":"https://www.linkedin.com/in/karandeepahluwalia97/","campus":"NYC","cohort":"16","jobTitle":"Software Engineer","industry":"Technology","cities":["Chandler"]},{"company":"Meta","name":"Tom Herrmann","email":"Tomherrmannd@gmail.com","linkedIn":"https://www.linkedin.com/in/thomasherrmann1/","campus":"NYC","cohort":"14","jobTitle":"Software engineer - E4","industry":"","cities":["Jacksonville","Columbus","Wichita"]},{"company":"Metecs","name":"Justin Lee Kirk","email":"justinleekirk@gmail.com","linkedIn":"https://www.linkedin.com/in/justinleekirk/","campus":"LA","cohort":"48","jobTitle":"Software Engineer","industry":"Research","cities":["Tucson","Lexington"]},{"company":"Metric5","name":"Alex Kang","email":"akang0408@gmail.com","linkedIn":"https://www.linkedin.com/in/alex-kang/","campus":"NYC","cohort":"16","jobTitle":"Software Engineer","industry":"Information Technology & Services","cities":["Denver","Minneapolis"]},{"company":"Metrolina Greenhouses","name":"Stefan Jordan","email":"sjordan2010@gmail.com","linkedIn":"https://www.linkedin.com/in/stefan-w-jordan","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Frontend Software Engineer","industry":"Agriculture Science","cities":["Durham"]},{"company":"Microsoft","name":"Alonso Garza","email":"alonsogarza6@gmail.com","linkedIn":"https://www.linkedin.com/in/e-alonso-garza/","campus":"NYC","cohort":"20","jobTitle":"Software Engineer II","industry":"Software","cities":["Sรฃo Paulo"]},{"company":"Microsoft","name":"Bernie Green","email":"bgreen280@gmail.com","linkedIn":"https://www.linkedin.com/in/berniegreen/","campus":"NYC","cohort":"28","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["New Orleans"]},{"company":"Microsoft","name":"Brad Morgan","email":"bkmorgan3@gmail.com","linkedIn":"https://www.linkedin.com/in/bkmorgan3/","campus":"LA","cohort":"31","jobTitle":"UI Engineer","industry":"Tech","cities":["Omaha","Columbus"]},{"company":"Microsoft","name":"Brandi Richardson","email":"brandi.jrichardson@gmail.com","linkedIn":"https://www.linkedin.com/in/brandi-richardson-28295158/","campus":"LA","cohort":"40","jobTitle":"Software Engineer ll","industry":"Computer Software","cities":["Albuquerque","Pittsburgh","Virginia Beach"]},{"company":"Microsoft","name":"Brian Hong","email":"brianhhong96@gmail.com","linkedIn":"https://www.linkedin.com/in/brianhhong","campus":"NYC","cohort":"19","jobTitle":"Software Engineer","industry":"Cloud","cities":["Chandler","Atlanta"]},{"company":"Microsoft","name":"Georgina Carr","email":"carre.georgina@gmail.com","linkedIn":"https://www.linkedin.com/in/georginacarr/","campus":"NYC","cohort":"15","jobTitle":"Software Engineer, Contract","industry":"tech","cities":["Virginia Beach"]},{"company":"Microsoft","name":"Andrew Dunne","email":"Drewdunne88@gmail.com","linkedIn":"https://www.linkedin.com/in/andrew-dunne-7620bb84","campus":"LA / WCRI","cohort":"53","jobTitle":"Senior Automation Engineer","industry":"Gaming","cities":["Tampa","Tokyo","El Paso","Louisville"]},{"company":"Microsoft","name":"Griffin Roger Mccartney Silver","email":"griffinrogersilver@gmail.com","linkedIn":"https://www.linkedin.com/in/griffin-silver/","campus":"LA / WCRI","cohort":"43","jobTitle":"Cloud Support Engineer","industry":"IT Services","cities":["Philadelphia","Washington","Dallas"]},{"company":"Microsoft","name":"Rella Cruz","email":"rellas.email@gmail.com","linkedIn":"https://www.linkedin.com/in/rella/","campus":"NYC","cohort":"15","jobTitle":"Software Engineer Apprentice (LEAP Program)","industry":"Computer Technology","cities":["Raleigh","Albuquerque","Milwaukee"]},{"company":"Microsoft","name":"Silvia Kemp Miranda","email":"silvia.kemp@gmail.com","linkedIn":"https://www.linkedin.com/in/silviakmiranda/","campus":"NYC","cohort":"19","jobTitle":"Technical Program Manager","industry":"Technology","cities":["Baltimore","Plano"]},{"company":"Microsoft","name":"Timothy Jung","email":"timjj92@gmail.com","linkedIn":"www.linkedin.com/in/timjj92","campus":"LA","cohort":"32","jobTitle":"Software Development Engineer","industry":"Cloud computing","cities":["Detroit","Pittsburgh"]},{"company":"Microsoft","name":"Tjolanda \"Sully\" Sullivan","email":"tjolanda.sullivan@gmail.com","linkedIn":"https://www.linkedin.com/in/tjolanda-sullivan/","campus":"NYC","cohort":"20","jobTitle":"Software Engineer","industry":"Cloud Storage","cities":["San Francisco","Oakland","Durham","Raleigh"]},{"company":"Microsoft","name":"William kencel","email":"Wkencel1@gmail.com","linkedIn":"","campus":"LA","cohort":"40","jobTitle":"React/react native/full stack engineer","industry":"Device payment system","cities":["Minneapolis"]},{"company":"Microsoft Leap Apprenticeship Program (via Aerotek)","name":"Roseanne Damasco","email":"rosedamasco@gmail.com","linkedIn":"https://www.linkedin.com/in/roseannedamasco/","campus":"NYC","cohort":"19","jobTitle":"Software Engineer","industry":"Computer Software","cities":["Houston","Mesa","El Paso","Dallas"]},{"company":"Mighty","name":"Jakob Kousholt","email":"jakobjk@gmail.com","linkedIn":"https://www.linkedin.com/in/jakobjk/","campus":"NYC","cohort":"12","jobTitle":"Software Engineer","industry":"Consumer Services","cities":["Mumbai","Paris"]},{"company":"MightyHive","name":"Alyso Swerdloff","email":"alysonswerdloff@gmail.com","linkedIn":"https://www.linkedin.com/in/alyson-swerdloff/","campus":"NYC","cohort":"8","jobTitle":"Technical Solutions Engineer","industry":"Insurance/ cybersecurity","cities":["Fort Wayne","Orlando","St. Petersburg"]},{"company":"Mimecast","name":"Tim Ruszala","email":"truszala@gmail.com","linkedIn":"https://www.linkedin.com/in/timruszala/","campus":"NYC","cohort":"32","jobTitle":"Senior Software Engineer","industry":"Security","cities":["St. Louis","Memphis","Pittsburgh","Chesapeake"]},{"company":"MindBody","name":"Charlie Malave","email":"malavecharles@gmail.com","linkedIn":"https://www.linkedin.com/in/charlesmalave/","campus":"PTRI","cohort":"3","jobTitle":"Software Engineer","industry":"Fitness Tech","cities":["Fresno","Cincinnati"]},{"company":"Mindbody ClassPass","name":"Christina Son","email":"christinason17@gmail.com","linkedIn":"https://www.linkedin.com/in/christinason17/","campus":"FTRI / CTRI","cohort":"7","jobTitle":"Software Engineer I","industry":"Fitness/Wellness","cities":["Boston","Beijing","Miami"]},{"company":"MindCloud","name":"Emily Chu","email":"lin.emily.chu@gmail.com","linkedIn":"https://www.linkedin.com/in/lin-chu/","campus":"NYC / ECRI","cohort":"36","jobTitle":"Junior Software Engineer","industry":"Software / Tech","cities":["Gilbert","Colorado Springs","Los Angeles"]},{"company":"Mindstrong","name":"Chon Hou Ho","email":"chonhouh@gmail.com","linkedIn":"https://www.linkedin.com/mwlite/in/chon-hou-ho","campus":"FTRI","cohort":"6","jobTitle":"Software Engineer I, Full Stack","industry":"Healthcare","cities":["Toronto","San Francisco"]},{"company":"Mirror.xyz","name":"Nathaniel Grossman","email":"nathanielbensongrossman@gmail.com","linkedIn":"https://www.linkedin.com/in/nathanielgrossman/","campus":"LA","cohort":"22","jobTitle":"Software Engineer","industry":"Education","cities":["Jersey City","Portland"]},{"company":"Mission Lane","name":"Ali Elhawary","email":"Alielhawary123@gmail.com","linkedIn":"","campus":"FTRI","cohort":"4","jobTitle":"Software Engineer","industry":"Fintech","cities":["Greensboro","Virginia Beach"]},{"company":"Mission Lane","name":"Esther Cho","email":"xesthercho@gmail.com","linkedIn":"https://www.linkedin.com/in/esther-cho/","campus":"LA","cohort":"49","jobTitle":"Software Engineer","industry":"Fintech","cities":["Greensboro","Pittsburgh","Winston-Salem"]},{"company":"Mitchell Martin","name":"Jonathan Barenboim","email":"Jonathan.Barenboim@gmail.com","linkedIn":"https://www.linkedin.com/in/jonathan-barenboim/","campus":"NYC","cohort":"21","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Henderson","Winston-Salem","Greensboro","Chula Vista"]},{"company":"MJH Life Sciences","name":"Arthur Sato","email":"swatto12@gmail.com","linkedIn":"https://www.linkedin.com/in/arthursato","campus":"NYC","cohort":"25","jobTitle":"React Developer","industry":"Health Care Media","cities":["Minneapolis","Arlington","Phoenix"]},{"company":"MKTG","name":"Garrett Lee","email":"geewai.lee@gmail.com","linkedIn":"https://www.linkedin.com/in/geewailee/","campus":"NYC","cohort":"19","jobTitle":"Senior Software Developer","industry":"Marketing","cities":["Dallas"]},{"company":"MNTN","name":"Chris Franz","email":"chrisfranz@mac.com","linkedIn":"https://www.linkedin.com/in/chris--franz/","campus":"LA","cohort":"25","jobTitle":"Software Engineer","industry":"Advertising","cities":["Tulsa","Memphis"]},{"company":"MNTN","name":"Timothy Kachler","email":"kachler@gmail.com","linkedIn":"https://www.linkedin.com/in/tkachler","campus":"LA","cohort":"25","jobTitle":"Software Engineer","industry":"Advertising","cities":["Riverside","Irvine","Atlanta"]},{"company":"MNTN","name":"Bryan Trang","email":"bryanltrang@gmail.com","linkedIn":"https://www.linkedin.com/in/bryanltrang/","campus":"LA / WCRI","cohort":"58","jobTitle":"Fullstack Software Engineer","industry":"Other","cities":["St. Petersburg","Plano","Cleveland"]},{"company":"Moment House","name":"Hoon Choi","email":"vhchoi@gmail.com","linkedIn":"","campus":"LA","cohort":"10","jobTitle":"Sr. Software eng","industry":"Entertainment","cities":["San Diego","Colorado Springs","Houston"]},{"company":"MongoDB","name":"Cris Newsome","email":"crisnewsome@outlook.com","linkedIn":"https://linkedin.com/in/crisnewsome","campus":"NYC","cohort":"23","jobTitle":"Software Engineer II","industry":"Tech?","cities":["Santa Ana","Cleveland","Greensboro"]},{"company":"Monument","name":"Midori Yang","email":"midoki.yang@gmail.com","linkedIn":"https://www.linkedin.com/in/midori-yang/","campus":"NYC","cohort":"19","jobTitle":"","industry":"Healthcare","cities":["Detroit","Houston","Bakersfield","Pittsburgh"]},{"company":"Moody's Analytics","name":"Alan Ye","email":"alye13@gmail.com","linkedIn":"https://www.linkedin.com/in/alan-ye-008/","campus":"PTRI","cohort":"4","jobTitle":"Software Engineer","industry":"Fintech","cities":["St. Petersburg","Miami"]},{"company":"Moody's Analytics","name":"Cara Dibdin","email":"cdibdin@gmail.com","linkedIn":"https://www.linkedin.com/in/cara-dibdin/","campus":"PTRI","cohort":"1","jobTitle":"Senior Software Engineer","industry":"Finance","cities":["Minneapolis","Corpus Christi","Newark","Saint Paul"]},{"company":"Morgan Stanley","name":"Jackie Lin","email":"jackie.lin128@gmail.com","linkedIn":"https://www.linkedin.com/in/jackielin12/","campus":"NYC","cohort":"13","jobTitle":"Software Developer","industry":"Finance","cities":["San Francisco","Plano","Tampa"]},{"company":"Morning Consult","name":"Lucas Lima Taffo","email":"lucas.taffo@gmail.com","linkedIn":"https://www.linkedin.com/in/lucastaffo/","campus":"NYC","cohort":"27","jobTitle":"Software Engineer II","industry":"Decision Intelligence","cities":["Detroit","Garland"]},{"company":"Mothership","name":"Carlos Perez","email":"crperez@gmail.com","linkedIn":"https://www.linkedin.com/in/cpereztoro/","campus":"LA","cohort":"36","jobTitle":"Software Engineer","industry":"Freight","cities":["Lexington","Long Beach","London"]},{"company":"Motion Intelligence","name":"Russell F Hayward","email":"russdawg44@gmail.com","linkedIn":"https://www.linkedin.com/in/russell-hayward/","campus":"NYC","cohort":"25","jobTitle":"Cloud Developer","industry":"Automotive","cities":["Sรฃo Paulo","Arlington","Scottsdale"]},{"company":"mPulse Mobile","name":"Devon Vaccarino","email":"devonev92@gmail.com","linkedIn":"https://www.linkedin.com/in/devon-vaccarino/","campus":"LA","cohort":"30","jobTitle":"Mid Software Engineer","industry":"Health Communications","cities":["Milwaukee","Lincoln"]},{"company":"MRI-Simmons","name":"Dan Lin","email":"dannlin91@gmail.com","linkedIn":"https://www.linkedin.com/in/danlin91/","campus":"NYC","cohort":"20","jobTitle":"UI Developer","industry":"Data Consumer","cities":["Santa Ana","Omaha"]},{"company":"MUFG","name":"Parker Hutcheson","email":"pdhutcheson@gmail.com","linkedIn":"https://www.linkedin.com/in/parkerhutcheson/","campus":"FTRI / CTRI","cohort":"4","jobTitle":"Software Engineer","industry":"Fintech","cities":["Jacksonville","Fort Wayne","Paris","Detroit"]},{"company":"Mulberry Technology","name":"Mia Kang","email":"fakeEmail3@fakeEmail.com","linkedIn":"https://www.linkedin.com/in/mia-kang/","campus":"PTRI","cohort":"5","jobTitle":"Associate Engineer","industry":"Fintech","cities":["Mesa"]},{"company":"Multi Media, LLC","name":"Cameron Fitz","email":"hellocameronfitz@gmail.com","linkedIn":"https://www.linkedin.com/in/cameron-lee-fitz/","campus":"NYC","cohort":"19","jobTitle":"Product Manager, Growth","industry":"Entertainment","cities":["Honolulu","Mesa","Anchorage"]},{"company":"Munera","name":"Yuehao Wong","email":"yuehaowong@gmail.com","linkedIn":"https://www.linkedin.com/in/yuehaowong/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Full Stack Developer","industry":"Other","cities":["Boston","Memphis","El Paso","Kansas City"]},{"company":"Musee Archives","name":"Walter David DeVault","email":"wdd4services@outlook.com","linkedIn":"https://www.linkedin.com/in/walter-devault","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Full-Stack Software Engineer","industry":"Media","cities":["North Las Vegas"]},{"company":"MX","name":"Harlan Evans","email":"harlanevans5@gmail.com","linkedIn":"https://www.linkedin.com/mwlite/in/harlan-evans","campus":"LA","cohort":"40","jobTitle":"Front end Software engineer (mid-sr)","industry":"Fintech","cities":["Las Vegas","Pittsburgh"]},{"company":"MX","name":"Mike Coker","email":"mbcoker100@gmail.com","linkedIn":"https://www.linkedin.com/in/mike-coker/","campus":"LA","cohort":"35","jobTitle":"Backend JavaScript Engineer","industry":"Fintech","cities":["Aurora"]},{"company":"Naked Development","name":"Cayla Co","email":"caylasco@gmail.com","linkedIn":"https://www.linkedin.com/in/cayla-co/","campus":"FTRI","cohort":"6","jobTitle":"Senior Full Stack Developer","industry":"Digital Advertising","cities":["Durham","Columbus"]},{"company":"Namely","name":"Yujin kang","email":"ykang7858@gmail.com","linkedIn":"","campus":"NYC","cohort":"13","jobTitle":"Software Engineer","industry":"SaaS / HR startup","cities":["Madison"]},{"company":"Narmi","name":"Derek Lam","email":"derekquoc@gmail.com","linkedIn":"https://www.linkedin.com/in/derekqlam/","campus":"LA","cohort":"40","jobTitle":"Solutions Engineer","industry":"Fintech","cities":["Columbus","Atlanta"]},{"company":"Narrativ","name":"Lisa Han","email":"jjlisahan@gmail.com","linkedIn":"https://www.linkedin.com/in/lisajjhan/","campus":"NYC","cohort":"17","jobTitle":"Software Engineer","industry":"E-commerce","cities":["Riverside","Memphis","Santa Ana","San Diego"]},{"company":"National Grid","name":"Edward Deng","email":"edeng4237@gmail.com","linkedIn":"https://www.linkedin.com/in/edwarddeng-/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"Utilities","cities":["Greensboro","Austin","Dallas","Fort Worth"]},{"company":"Navitus","name":"Young Kim","email":"young.kim770@gmail.com","linkedIn":"https://www.linkedin.com/in/young-j-kim","campus":"FTRI / CTRI","cohort":"12","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Albuquerque","St. Louis"]},{"company":"NBA","name":"Cecily Jansen","email":"cecilyjansen@gmail.com","linkedIn":"https://www.linkedin.com/in/cecily-j/","campus":"NYC","cohort":"29","jobTitle":"Associate Front-End Engineer","industry":"Sports & Entertainment Media","cities":["North Las Vegas"]},{"company":"NBCUniversal","name":"Sam Arnold","email":"sam.arnold72@gmail.com","linkedIn":"https://www.linkedin.com/in/samarnold723/","campus":"PTRI","cohort":"3","jobTitle":"Software Engineer II","industry":"Entertainment","cities":["Oakland","Memphis","Toronto","Riverside"]},{"company":"NBCUniversal Media","name":"Jimmy Phong","email":"jayacados@gmail.com","linkedIn":"https://www.linkedin.com/in/jphongmph/","campus":"LA","cohort":"35","jobTitle":"Senior Software Engineer","industry":"Media and Entertainment","cities":["Berlin","Sรฃo Paulo"]},{"company":"NCR","name":"Bryan Chau","email":"chaubryan@hotmail.com","linkedIn":"https://www.linkedin.com/in/chaubryan1","campus":"LA / WCRI","cohort":"47","jobTitle":"SW Engineer III","industry":"IT Services","cities":["Las Vegas","St. Petersburg","Houston"]},{"company":"NEC","name":"Stacey Lee","email":"staceyjlee18@gmail.com","linkedIn":"https://www.linkedin.com/in/staceyjhlee/","campus":"FTRI / CTRI","cohort":"16","jobTitle":"Full Stack Engineer","industry":"Business Tech/Enterprise Tech","cities":["Jacksonville","Philadelphia","Cincinnati","New Orleans"]},{"company":"Neiro AI","name":"Daria Mordvinov","email":"daria.mordvinov@gmail.com","linkedIn":"https://www.linkedin.com/in/dariamordvinov/","campus":"NYOI","cohort":"1","jobTitle":"Frontend Engineer","industry":"Artificial Intelligence","cities":["Berlin","Greensboro"]},{"company":"Nelnet","name":"Zach Brucker","email":"zach.brucker@gmail.com","linkedIn":"https://www.linkedin.com/in/zachbrucker/","campus":"LA","cohort":"41","jobTitle":"Full-Stack Developer","industry":"Fintech","cities":["St. Petersburg","Cleveland","New Orleans","Miami"]},{"company":"Neo.Tax","name":"Lindsay Baird","email":"lindsay.a.baird@gmail.com","linkedIn":"https://www.linkedin.com/in/lindsaybaird/","campus":"LA","cohort":"45","jobTitle":"Full-Stack Software Engineer","industry":"Fintech","cities":["Virginia Beach"]},{"company":"Neo.tax","name":"Miguel Hernandez","email":"miguelh72@outlook.com","linkedIn":"https://www.linkedin.com/in/miguelh72/","campus":"FTRI","cohort":"4","jobTitle":"Senior Full-Stack Software Engineer","industry":"Fintech","cities":["Santa Ana","Honolulu","Memphis"]},{"company":"Nespresso","name":"Raymond Huang","email":"raymond.huang1011@gmail.com","linkedIn":"https://www.linkedin.com/in/raymondhuang95/","campus":"NYC / ECRI","cohort":"31","jobTitle":"Associate Front-End Developer","industry":"Other","cities":["Oklahoma City","Austin"]},{"company":"Netflix","name":"Josie Glore","email":"Josieglore@gmail.com","linkedIn":"https://www.linkedin.com/in/josie-glore/","campus":"LA","cohort":"25","jobTitle":"Technologist","industry":"Fashion","cities":["Indianapolis"]},{"company":"Netflix","name":"Sagar Velagala","email":"sagar.velagala@gmail.com","linkedIn":"https://www.linkedin.com/in/sagarvelagala/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Sr. Analytics Engineer","industry":"Software / Tech","cities":["Philadelphia","Chesapeake","Pittsburgh"]},{"company":"Netflix","name":"Victoria Adnet","email":"victoria.adnet@gmail.com","linkedIn":"https://www.linkedin.com/in/victoria-lellis/","campus":"LA","cohort":"29","jobTitle":"Technologist","industry":"Entertainment","cities":["Colorado Springs"]},{"company":"Netskope","name":"Mariya Eyges","email":"mariya.sf@gmail.com","linkedIn":"https://www.linkedin.com/in/mariya-eyges-8511131/","campus":"PTRI","cohort":"Beta","jobTitle":"Software Engineer","industry":"Security Cloud","cities":["Dallas"]},{"company":"Neulion","name":"Myles Green","email":"mylescorygreen@gmail.com","linkedIn":"https://www.linkedin.com/in/myles-c-green/","campus":"NYC","cohort":"4","jobTitle":"Software Engineer","industry":"","cities":["Stockton","Boston","Oklahoma City","Milwaukee"]},{"company":"New York Institute of Technology College of Osteopathic Medicine","name":"Justin Ribarich","email":"jribarich98@gmail.com","linkedIn":"https://www.linkedin.com/in/justin-ribarich","campus":"NYOI","cohort":"2","jobTitle":"Full Stack Developer","industry":"Education/Edtech","cities":["Colorado Springs"]},{"company":"Newsela","name":"Anthony Terruso","email":"aterruso@gmail.com","linkedIn":"https://www.linkedin.com/in/anthony-w-terruso/","campus":"NYC","cohort":"7","jobTitle":"Senior Web Application Developer","industry":"","cities":["Nashville","Tokyo"]},{"company":"Nexient","name":"James Kolotouros","email":"dkolotouros1@gmail.com","linkedIn":"https://www.linkedin.com/in/jameskolotouros","campus":"NYC","cohort":"22","jobTitle":"Software Developer II","industry":"Tech","cities":["Columbus","Tokyo"]},{"company":"Nexient","name":"Gaber Mowiena","email":"gaber.abouelsoud@gmail.com","linkedIn":"https://www.linkedin.com/in/gabermowiena/","campus":"NYC","cohort":"9","jobTitle":"Frontend Developer","industry":"Tech products","cities":["Colorado Springs","Garland","Sacramento"]},{"company":"Nexstar Media Group","name":"Beckett Hanan","email":"beckett.hanan@gmail.com","linkedIn":"https://www.linkedin.com/in/becketthanan/","campus":"PTRI","cohort":"Beta","jobTitle":"Front End Software Engineer","industry":"Media","cities":["Anchorage","Jersey City","Baltimore"]},{"company":"NextGen Healthcare","name":"Samuel Tran","email":"samwell.tran@gmail.com","linkedIn":"https://www.linkedin.com/in/samuel-tran-836448231/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Software Engineer II","industry":"Healthcare","cities":["Chandler","Stockton","Corpus Christi"]},{"company":"NextME","name":"Linh Tran","email":"linhtanl51@gmail.com","linkedIn":"https://www.linkedin.com/in/linhatran","campus":"LA","cohort":"40","jobTitle":"Senior Software Engineer","industry":"Management","cities":["Aurora"]},{"company":"NFL","name":"Michael Blanchard","email":"michael.james.blanchard@gmail.com","linkedIn":"https://www.linkedin.com/in/miblanchard12/","campus":"LA","cohort":"7","jobTitle":"Director of Engineering - Platform","industry":"Media / Sports","cities":["Jersey City","Fort Worth"]},{"company":"Niantic","name":"Oliver Zhang","email":"zezang@gmail.com","linkedIn":"https://www.linkedin.com/in/oliver-zhang91","campus":"PTRI","cohort":"8","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Oakland","Raleigh"]},{"company":"Nielsen","name":"Alexander Tu","email":"alexandertu95@gmail.com","linkedIn":"https://www.linkedin.com/in/atu816","campus":"FTRI / CTRI","cohort":"12","jobTitle":"Senior Software Engineer","industry":"Business Analytics","cities":["Bakersfield","Jersey City","Sรฃo Paulo"]},{"company":"Nielsen","name":"Diana Kim","email":"ruslanovna.kim@gmail.com","linkedIn":"https://www.linkedin.com/in/ruslanovna/","campus":"NYC / ECRI","cohort":"31","jobTitle":"Software Engineer II","industry":"Business Analytics","cities":["Jacksonville","Indianapolis","Honolulu","Oklahoma City"]},{"company":"Nielsen Sports","name":"Karina Illesova","email":"karin.illesova@gmail.com","linkedIn":"https://www.linkedin.com/in/karin-illesova/","campus":"LA","cohort":"41","jobTitle":"Sr Software Engineer","industry":"Information Technology & Services","cities":["Anaheim","Lexington","Las Vegas","Mesa"]},{"company":"Nike","name":"adrian Sun","email":"Adriansun2@gmail.com","linkedIn":"https://www.linkedin.com/in/adrian-sun","campus":"LA","cohort":"25","jobTitle":"Software Engineer","industry":"Travel","cities":["Madison"]},{"company":"Nimble","name":"Zachary Daniels","email":"Zackdanielsnyc@gmail.com","linkedIn":"LinkedIn.com/in/zackdanielsnyc","campus":"LA / WCRI","cohort":"49","jobTitle":"Software Engineer","industry":"Other","cities":["Honolulu"]},{"company":"Nobel.AI","name":"Kate Chanthakaew","email":"kubkate@gmail.com","linkedIn":"https://www.linkedin.com/in/kate-chanthakaew/","campus":"LA","cohort":"36","jobTitle":"Full Stack Engineer","industry":"Scientist R&D","cities":["Los Angeles","New York","Paris","Honolulu"]},{"company":"Noblr Insurance","name":"Brian Taylor","email":"brian.taylor818@gmail.com","linkedIn":"https://www.linkedin.com/in/brianwtaylor/","campus":"LA","cohort":"22","jobTitle":"Software Engineer","industry":"Health","cities":["Scottsdale"]},{"company":"Nomad Health","name":"Julia Bakerink","email":"juliabakerink@gmail.com","linkedIn":"https://www.linkedin.com/in/juliabakerink/","campus":"LA","cohort":"48","jobTitle":"Fullstack Software Engineer","industry":"Healthcare","cities":["Norfolk","Toledo","Washington"]},{"company":"Nomad Health","name":"Neftali Dominguez","email":"n.l.dominguez23@gmail.com","linkedIn":"https://www.linkedin.com/in/neftalildominguez/","campus":"LA","cohort":"30","jobTitle":"Senior Software Engineer","industry":"Health","cities":["Memphis"]},{"company":"Nordstrom","name":"Vicki Lee","email":"leevicki01@gmail.com","linkedIn":"https://www.linkedin.com/in/vlee022/","campus":"LA","cohort":"41","jobTitle":"Software Engineer","industry":"E-Commerce / Fashion","cities":["Irving"]},{"company":"Nordstrom","name":"Sohee Lee","email":"soheelee1985@gmail.com","linkedIn":"https://www.linkedin.com/in/sohee419/","campus":"LA","cohort":"46","jobTitle":"Engineer 2","industry":"Fintech","cities":["Toledo"]},{"company":"Nordstrom Rack | HauteLook","name":"Robb Eastman","email":"ereastman@gmail.com","linkedIn":"https://www.linkedin.com/in/robbeastman/","campus":"LA","cohort":"31","jobTitle":"Software Engineer I, Web","industry":"Fashion","cities":["Jersey City","Kansas City"]},{"company":"Noria Water Technologies","name":"Umair Shafiq","email":"umairshafiqprof@gmail.com","linkedIn":"https://www.linkedin.com/in/umair-w-shafiq/","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Associate Developer","industry":"Other","cities":["Riverside"]},{"company":"North American Bancard","name":"Edward Chow","email":"Pdphybrid@gmail.com","linkedIn":"https://www.linkedin.com/in/edkchow/","campus":"NYC","cohort":"19","jobTitle":"Full Stack Engineer","industry":"Fintech","cities":["Tulsa","Wichita","San Antonio"]},{"company":"Northflank","name":"Emma Genesen","email":"genesen.emma@gmail.com","linkedIn":"https://www.linkedin.com/in/emma-genesen/","campus":"LA / WCRI","cohort":"52","jobTitle":"Head of Developer Marketing","industry":"Cloud Services","cities":["Greensboro","Boston","Scottsdale"]},{"company":"Northrop Grumman","name":"David Lopez","email":"d7lopez@gmail.com","linkedIn":"https://www.linkedin.com/in/david-michael-lopez/","campus":"NYC / ECRI","cohort":"30","jobTitle":"Software Engineer","industry":"Aerospace","cities":["Honolulu","Sydney","Henderson","Virginia Beach"]},{"company":"Northrop Grumman","name":"Michael Way","email":"mjway01@gmail.com","linkedIn":"https://www.linkedin.com/in/michaeljway/","campus":"PTRI","cohort":"10","jobTitle":"Cognitive Software Engineer","industry":"Aerospace","cities":["Oakland","Durham"]},{"company":"Northspyre","name":"Vaughn Sulit","email":"bvaughnsulit@gmail.com","linkedIn":"https://www.linkedin.com/in/bvaughnsulit/","campus":"LA / WCRI","cohort":"52","jobTitle":"Full Stack Engineer","industry":"Real Estate","cities":["Columbus","New Orleans"]},{"company":"Northwestern Mutual","name":"Hussein Hamade","email":"hamade.hussein00@gmail.com","linkedIn":"https://www.linkedin.com/in/husseinhamade1/","campus":"NYC","cohort":"30","jobTitle":"Software Engineer (P2 - Midlevel)","industry":"Fintech","cities":["St. Louis"]},{"company":"Northwestern Mutual","name":"Jake Policano","email":"jdpolicano@gmail.com","linkedIn":"https://www.linkedin.com/in/jacob-policano/","campus":"NYC / ECRI","cohort":"33","jobTitle":"Software Engineer","industry":"Insurance","cities":["Saint Paul","Sacramento"]},{"company":"Northwestern Mutual","name":"Max Lee","email":"maxolee23@gmail.com","linkedIn":"https://www.linkedin.com/in/max-lee1","campus":"FTRI","cohort":"5","jobTitle":"Full Stack Software Engineer","industry":"Fintech","cities":["Winston-Salem","St. Louis","Washington","Anchorage"]},{"company":"Northwestern Mutual","name":"Vince Nguyen","email":"vince.g.nguyen@gmail.com","linkedIn":"https://www.linkedin.com/in/vince-nguyen/","campus":"FTRI","cohort":"4","jobTitle":"Full Stack Software Engineer","industry":"Fintech/Insurance","cities":["Baltimore"]},{"company":"Northwestern Mutual","name":"Warren Harrison Tait","email":"warrenhtait@gmail.com","linkedIn":"https://www.linkedin.com/in/warrenhtait/","campus":"NYC","cohort":"22","jobTitle":"Full Stack Software Engineer","industry":"Fintech","cities":["Winston-Salem","Orlando"]},{"company":"Not currently employed in tech/as a dev","name":"Evan Deam","email":"ebdeam@gmail.com","linkedIn":"https://www.linkedin.com/in/evandeam/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Registered Nurse","industry":"Healthtech/Healthcare","cities":["Greensboro","Mexico City","Wichita","Bakersfield"]},{"company":"Notion","name":"Marissa Lafontant","email":"marissa.lafontant@gmail.com","linkedIn":"https://www.linkedin.com/in/mlafontant/","campus":"NYC","cohort":"2","jobTitle":"Software Engineer","industry":"","cities":["Tokyo"]},{"company":"Nousot","name":"Winslow Taylor","email":"winslow.benjamin.taylor@gmail.com","linkedIn":"https://www.linkedin.com/in/winslow-taylor/","campus":"FTRI","cohort":"6","jobTitle":"Advance Associate","industry":"IT, SaaS","cities":["Sydney","Nashville","Raleigh"]},{"company":"Noyo","name":"Jonathan Mendoza","email":"j.d.mendoza415@gmail.com","linkedIn":"https://www.linkedin.com/in/jonathan-mendoza1","campus":"LA","cohort":"41","jobTitle":"L1 Engineer","industry":"Heath care","cities":["Gilbert","New Orleans"]},{"company":"NPR","name":"Alex Mannix","email":"alexleemannix@gmail.com","linkedIn":"https://www.linkedin.com/in/alex-mannix-53015668/","campus":"NYC","cohort":"5","jobTitle":"Junior Software Engineer","industry":"","cities":["Irving","Sรฃo Paulo","Lincoln","North Las Vegas"]},{"company":"NPR","name":"Jordan Grubb","email":"imjordangrubb@gmail.com","linkedIn":"https://www.linkedin.com/in/j-grubb/","campus":"NYC","cohort":"22","jobTitle":"Software Engineer","industry":"Subscriptions","cities":["Mexico City","Berlin"]},{"company":"NPR","name":"Samantha Wessel","email":"samantha.n.wessel@gmail.com","linkedIn":"https://www.linkedin.com/in/samantha-wessel/","campus":"LA","cohort":"30","jobTitle":"Software Engineer","industry":"News Media","cities":["Jersey City"]},{"company":"NU Borders","name":"Ryan Tumel","email":"rtumel123@gmail.com","linkedIn":"https://www.linkedin.com/in/ryan-tumel/","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Information Technology & Services","cities":["Scottsdale","Chesapeake","London"]},{"company":"NWEA","name":"Celene Chang","email":"Celene Chang","linkedIn":"https://www.linkedin.com/in/celenecchang/","campus":"LA","cohort":"48","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Garland","Saint Paul"]},{"company":"NYU Langone Health","name":"Alexander Lin","email":"alexanderlin164@gmail.com","linkedIn":"https://www.linkedin.com/in/alexander-lin-8aab79167/","campus":"NYC / ECRI","cohort":"37","jobTitle":"Developer 1","industry":"Healthtech/Healthcare","cities":["San Diego","Sacramento","Washington","Fresno"]},{"company":"O POSITIV","name":"Jonah Lin","email":"jjonah.lin@gmail.com","linkedIn":"https://www.linkedin.com/in/linjonah/","campus":"LA","cohort":"33","jobTitle":"Software Engineer (eCommerce)","industry":"E-commerce","cities":["Bakersfield","Detroit","Colorado Springs","Virginia Beach"]},{"company":"ObvioHealth","name":"Joshua Jordan","email":"josh.r.jordan@gmail.com","linkedIn":"https://www.linkedin.com/in/josh-r-jordan/","campus":"NYC / ECRI","cohort":"29","jobTitle":"Software Engineer","industry":"Biotech","cities":["Boston","Buffalo","Durham"]},{"company":"OceanX","name":"Jun Lee","email":"jushuworld@gmail.com","linkedIn":"https://www.linkedin.com/in/jushuworld/","campus":"LA","cohort":"29","jobTitle":"Full Stack Developer","industry":"E-commerce","cities":["Tampa","Austin","Mexico City","Albuquerque"]},{"company":"Ocrolus","name":"Daniel Shu","email":"shudaniel95@gmail.com","linkedIn":"https://www.linkedin.com/in/danielshu/","campus":"NYC","cohort":"9","jobTitle":"Software Engineer","industry":"Blockchain","cities":["Kansas City"]},{"company":"Octane Lending","name":"Christian Paul Ejercito","email":"chris.paul.ejercito@gmail.com","linkedIn":"https://www.linkedin.com/in/christian-paul-ejercito/","campus":"LA","cohort":"42","jobTitle":"Software Engineer II","industry":"Fintech","cities":["Mesa"]},{"company":"Odie Pet Insurance","name":"Nicholas Echols","email":"nechols87@gmail.com","linkedIn":"https://www.linkedin.com/in/nickechols87/","campus":"FTRI","cohort":"5","jobTitle":"Senior Software Engineer","industry":"","cities":["Baltimore"]},{"company":"ODME Solutions","name":"Jackqueline Nguyen","email":"jackquelineanguyen@gmail.com","linkedIn":"https://www.linkedin.com/in/jackquelinenguyen/","campus":"LA / WCRI","cohort":"54","jobTitle":"Software Engineer","industry":"Other","cities":["Anchorage","Lincoln"]},{"company":"Okta","name":"Sterling Deng","email":"sterlingdeng@gmail.com","linkedIn":"https://www.linkedin.com/in/sterling-deng/","campus":"LA","cohort":"27","jobTitle":"Software Engineer","industry":"SaaS - Security","cities":["New Orleans","Cleveland","Reno"]},{"company":"Olive AI","name":"Saejin Kang","email":"saejin.kang1004@gmail.com","linkedIn":"https://www.linkedin.com/in/saejinkang1004/","campus":"LA","cohort":"36","jobTitle":"Software Engineer","industry":"Healthcare","cities":["El Paso","Irvine","Philadelphia","Durham"]},{"company":"Olivine Inc","name":"Yirou Chen","email":"yirou.zm@gmail.com","linkedIn":"https://www.linkedin.com/in/yirouchen/","campus":"PTRI","cohort":"8","jobTitle":"Software Engineer","industry":"Other","cities":["Fort Wayne"]},{"company":"Ollie","name":"Brynn Sakell","email":"brynnsakell@gmail.com","linkedIn":"www.linkedin.com/in/brynnsakell","campus":"NYOI","cohort":"1","jobTitle":"Software Engineer, Front End","industry":"Other","cities":["Anaheim","Seattle","Arlington"]},{"company":"Omaze","name":"Rachel Kim","email":"rayykim323@gmail.com","linkedIn":"https://www.linkedin.com/in/rayykim/","campus":"LA","cohort":"31","jobTitle":"Software Engineer","industry":"Fundraising","cities":["San Francisco"]},{"company":"OneSignal","name":"Dean Ohashi","email":"d.n.ohashi@gmail.com","linkedIn":"https://www.linkedin.com/in/deanohashi/","campus":"LA","cohort":"29","jobTitle":"Software Engineer","industry":"MarTech","cities":["Beijing"]},{"company":"OneTrack.AI","name":"Alexander Martinez","email":"alexmartinez7184@gmail.com","linkedIn":"https://www.linkedin.com/in/alexander-martinez415/","campus":"LA / WCRI","cohort":"53","jobTitle":"Implementation Support Engineer","industry":"Artificial Intelligence","cities":["Cincinnati","St. Louis"]},{"company":"OneView","name":"Sean Yoo","email":"yooys87@gmail.com","linkedIn":"https://www.linkedin.com/in/seanyyoo/","campus":"LA","cohort":"43","jobTitle":"Full Stack Developer","industry":"ECommerce","cities":["Albuquerque","Paris"]},{"company":"Onyx Team at JP Morgan Chase","name":"Dwayne Richards","email":"dwaynerichards@gmail.com","linkedIn":"https://www.linkedin.com/in/dnkrichards","campus":"NYC / ECRI","cohort":"24","jobTitle":"Senior Blockchain Engineer","industry":"Blockchain/Web3","cities":["Irving","Chicago","Berlin"]},{"company":"Oomph","name":"Rob Mosher","email":"rob@robmosher.com","linkedIn":"https://www.linkedin.com/in/rob-mosher-it/","campus":"NYOI","cohort":"1","jobTitle":"Senior Software Engineer","industry":"Software / Tech","cities":["Santa Ana"]},{"company":"OpenFin","name":"Elliott Burr","email":"elliottnburr@gmail.com","linkedIn":"https://www.linkedin.com/in/elliott-burr/","campus":"LA / WCRI","cohort":"51","jobTitle":"Software Engineer","industry":"Fintech","cities":["Honolulu","Mexico City","Louisville"]},{"company":"Openfin","name":"Hina Khalid","email":"k.hinaa87@gmail.com","linkedIn":"","campus":"NYC / ECRI","cohort":"35","jobTitle":"Software engineer","industry":"Fintech","cities":["Washington","Colorado Springs","Kansas City","San Diego"]},{"company":"Opentrons","name":"Geovanni Alarcon","email":"geovannialarcon92@gmail.com","linkedIn":"https://www.linkedin.com/in/geo-alarcon/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Biotech, Robotics","cities":["Glendale","El Paso","St. Louis","Greensboro"]},{"company":"Opentrons","name":"Jamey Huffnagle","email":"mjhuffnagle@gmail.com","linkedIn":"https://www.linkedin.com/in/jamey-huffnagle/","campus":"NYOI","cohort":"3","jobTitle":"Senior Software Engineer","industry":"Biotech","cities":["Santa Ana","Tokyo","Beijing","Cincinnati"]},{"company":"Optimize Health","name":"Kim Mai Nguyen","email":"kim.mai.e.nguyen@gmail.com","linkedIn":"https://www.linkedin.com/in/nkmai/","campus":"LA","cohort":"39","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Louisville"]},{"company":"Optum","name":"Austin Johnson","email":"austinlovesworking@gmail.com","linkedIn":"https://www.linkedin.com/in/lovesworking/","campus":"NYC / ECRI","cohort":"33","jobTitle":"Full stack dev","industry":"Healthcare","cities":["Lubbock","Miami","Oakland"]},{"company":"Oscar Health","name":"Brian Kang","email":"brkang1@gmail.com","linkedIn":"https://www.linkedin.com/in/thebriankang/","campus":"NYC","cohort":"28","jobTitle":"Software Engineer (E2)","industry":"Health","cities":["Columbus","Tokyo"]},{"company":"Oscar Health","name":"Brian Kang","email":"brkang1@gmail.com","linkedIn":"https://www.linkedin.com/in/thebriankang/","campus":"NYC","cohort":"28","jobTitle":"Software Engineer (E2)","industry":"Health","cities":["Lincoln","Beijing","San Francisco","Paris"]},{"company":"Oscar Health","name":"Sergey Zeygerman","email":"sergey@zeygerman.com","linkedIn":"https://www.linkedin.com/in/sergey-zeygerman/","campus":"PTRI","cohort":"3","jobTitle":"Software Engineer, Web & Mobile","industry":"Insurance","cities":["Philadelphia"]},{"company":"OTG Experience","name":"Chang Cai","email":"Chang.Cai@pm.me","linkedIn":"https://www.linkedin.com/in/chang-c-cai/","campus":"NYC","cohort":"29","jobTitle":"Typescript NodeJS Senior Engineer","industry":"Hospitality","cities":["San Francisco","Oklahoma City"]},{"company":"Other World Computing","name":"Miles Wright","email":"mileswright818@gmail.com","linkedIn":"https://www.linkedin.com/in/miles-m-wright/","campus":"LA / WCRI","cohort":"45","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Oakland"]},{"company":"Ouraring","name":"Jenna Hamza","email":"jennashamza@gmail.com","linkedIn":"https://www.linkedin.com/in/jennahamza","campus":"NYC / ECRI","cohort":"33","jobTitle":"Full Stack Developer","industry":"Other","cities":["Paris","Chula Vista","Milwaukee"]},{"company":"Outside Analytics","name":"Timeo Williams","email":"timeo.j.williams@gmail.com","linkedIn":"","campus":"NYC","cohort":"24","jobTitle":"FullStack Software Engineer","industry":"Analytics, Defense","cities":["Santa Ana","Paris"]},{"company":"Ovis Technologies","name":"Andrew Lovato","email":"andrew.lovato@gmail.com","linkedIn":"https://www.linkedin.com/in/andrew-lovato/","campus":"NYC","cohort":"21","jobTitle":"Senior Full Stack Developer","industry":"Fintech","cities":["Aurora"]},{"company":"Ovis Technologies","name":"David Soerensen","email":"Dsoerensen28@gmail.com","linkedIn":"","campus":"NYC","cohort":"18","jobTitle":"Senior Fullstack Developer","industry":"Fintech","cities":["Wichita","Detroit"]},{"company":"OwnerIQ Inc.","name":"Alejandro Romero","email":"alexrom789@gmail.com","linkedIn":"https://www.linkedin.com/in/alejandromromero/","campus":"NYC","cohort":"4","jobTitle":"Software Engineer","industry":"","cities":["Madison","Newark","Denver"]},{"company":"Ownet","name":"Ari bengiyat","email":"ari@aribengiyat.com","linkedIn":"https://www.linkedin.com/in/ari-bengiyat","campus":"NYOI","cohort":"2","jobTitle":"Senior Software Engineer","industry":"Media","cities":["Sรฃo Paulo","Phoenix","Tampa"]},{"company":"Palmetto","name":"Fan Shao","email":"fanny.shao18@gmail.com","linkedIn":"https://www.linkedin.com/in/fan-shao/","campus":"NYC","cohort":"18","jobTitle":"Software Engineer","industry":"Renewable Energy","cities":["Sacramento"]},{"company":"Panda Express","name":"Krystal Chen","email":"Kcrystalchen@gmail.com","linkedIn":"","campus":"LA","cohort":"31","jobTitle":"Software developer","industry":"Restaurant","cities":["Gilbert","Oakland","Minneapolis","Washington"]},{"company":"Paperless Parts","name":"Scott Campbell","email":"thisisscottcampbell@gmail.com","linkedIn":"https://www.linkedin.com/in/thisisscottcampbell/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Contract Manufacturing","cities":["Anchorage","Bakersfield","Baltimore"]},{"company":"Paragon Application Systems","name":"Autumn Wallen","email":"mymail1269@gmail.com","linkedIn":"https://www.linkedin.com/in/autumn-wallen/","campus":"LA / WCRI","cohort":"52","jobTitle":"Software Engineer II","industry":"Fintech","cities":["Albuquerque","Charlotte","Bakersfield"]},{"company":"Paramount+","name":"Todd Alexander","email":"todd.alexander@me.com","linkedIn":"https://www.linkedin.com/in/toddalex/","campus":"LA","cohort":"35","jobTitle":"Senior SWE","industry":"Entertainment","cities":["Mesa","Stockton","Los Angeles"]},{"company":"Paramount++","name":"Evan Emenegger","email":"evanemenegger@gmail.com","linkedIn":"https://www.linkedin.com/in/evan-emenegger/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Software Engineer, Frontend","industry":"Entertainment","cities":["New York","Lubbock"]},{"company":"Parative","name":"Mariko Iwata","email":"mariko.iwata@gmail.com","linkedIn":"https://www.linkedin.com/in/marikoiwata/","campus":"PTRI","cohort":"9","jobTitle":"Senior Front End Engineer","industry":"Sales","cities":["Buffalo","Charlotte","El Paso","Mesa"]},{"company":"Passage.io","name":"Yusuf Nevruz Olmez","email":"nvrz@windowslive.com","linkedIn":"https://www.linkedin.com/in/nevruzolmez","campus":"NYC / ECRI","cohort":"33","jobTitle":"Full Stack Developer","industry":"Blockchain/Web3","cities":["Greensboro","Boston","Irvine","Laredo"]},{"company":"PassiveLogic","name":"Tanner Hesterman","email":"tannerhesterman@gmail.com","linkedIn":"https://www.linkedin.com/in/tannerhesterman/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Junior Software Engineer","industry":"Software / Tech","cities":["San Francisco"]},{"company":"PavCon","name":"Bradley Woolf","email":"bradleymwoolf@gmail.com","linkedIn":"https://www.linkedin.com/in/bradley-woolf/","campus":"LA","cohort":"32","jobTitle":"Software Engineer","industry":"Federal Defense","cities":["Arlington"]},{"company":"Pavemint","name":"Vivian Cermeno","email":"vcermeno6@gmail.com","linkedIn":"https://www.linkedin.com/in/viviancermeno/","campus":"LA","cohort":"36","jobTitle":"Software Engineer","industry":"Parking","cities":["Columbus"]},{"company":"Pax8","name":"Steve Frend","email":"stevefrend1@gmail.com","linkedIn":"https://www.linkedin.com/in/stevefrend/","campus":"LA","cohort":"35","jobTitle":"Software Engineer II","industry":"Cloud services","cities":["Orlando","Cleveland","Seattle"]},{"company":"Paypal","name":"Cynthia Franqui","email":"cynthiafranqui@gmail.com","linkedIn":"https://www.linkedin.com/in/cynthiafranqui/","campus":"NYC","cohort":"19","jobTitle":"Software Engineer II","industry":"Fintech","cities":["Scottsdale"]},{"company":"Paypal","name":"Stanley Huang","email":"Huang.stan@icloud.com","linkedIn":"","campus":"NYC","cohort":"20","jobTitle":"Software Engineer II (T23)","industry":"electronic Payment/ financial services","cities":["Paris","New York","Miami"]},{"company":"PayPal","name":"Jason Yu","email":"jasonyu@hotmail.com","linkedIn":"https://www.linkedin.com/in/json-yu/","campus":"LA","cohort":"32","jobTitle":"Software Engineer 2","industry":"Fintech","cities":["Saint Paul"]},{"company":"PayPal","name":"Jorge Espinoza","email":"jorge.e.espinoza.57@gmail.com","linkedIn":"https://www.linkedin.com/in/jorge-e-espinoza1/","campus":"FTRI","cohort":"3","jobTitle":"Software Engineer I","industry":"Fintech","cities":["Baltimore","Pittsburgh","Detroit","San Francisco"]},{"company":"PayPal","name":"Qwen Ballard","email":"qwen.ballard@gmail.com","linkedIn":"https://www.linkedin.com/in/mqballard/","campus":"NYC","cohort":"20","jobTitle":"Full Stack Developer","industry":"Fintech","cities":["San Francisco","San Jose"]},{"company":"PayPal (Happy Returns)","name":"Lawrence Han","email":"lawrencehan3@gmail.com","linkedIn":"https://www.linkedin.com/in/lawrence-han/","campus":"LA","cohort":"43","jobTitle":"Software Engineer","industry":"Logistics","cities":["Milwaukee"]},{"company":"PayPal Inc.","name":"Darryl Amour","email":"darryl.amour@gmail.com","linkedIn":"https://www.linkedin.com/in/darryl-amour/","campus":"LA","cohort":"25","jobTitle":"Engineering Manager, Software Development 2","industry":"Fintech","cities":["Sรฃo Paulo"]},{"company":"Payscale","name":"Truett Davis","email":"truett.davis@gmail.com","linkedIn":"https://www.linkedin.com/in/truett-davis","campus":"NYOI","cohort":"3","jobTitle":"Software Engineer II","industry":"Software / Tech","cities":["Minneapolis","San Jose"]},{"company":"Peacock","name":"Eli Gallipoli","email":"eligallipoli317@gmail.com","linkedIn":"https://www.linkedin.com/in/eli-gallipoli/","campus":"NYC","cohort":"16","jobTitle":"Fullstack Developer - Video Software Engineering","industry":"Video Streaming","cities":["Fresno"]},{"company":"Peatix","name":"Yula Ko","email":"larkspury.k@gmail.com","linkedIn":"https://www.linkedin.com/in/yulako/","campus":"NYC","cohort":"17","jobTitle":"Software Engineer","industry":"Entertainment","cities":["Anchorage","Long Beach","Corpus Christi","Bakersfield"]},{"company":"Peloton","name":"Lorenzo Guevara","email":"joselorenzo.guevara@gmail.com","linkedIn":"https://www.linkedin.com/in/lorenzoguevara/","campus":"LA","cohort":"43","jobTitle":"Software Engineer","industry":"Tech/Health & Wellness","cities":["Sacramento","Tulsa","Stockton"]},{"company":"Penny Mac","name":"Edward Roh","email":"eroh@rubiconproject.com","linkedIn":"https://www.linkedin.com/in/edwardroh/","campus":"LA","cohort":"24","jobTitle":"Front End Lead Engineer","industry":"Sports?","cities":["Tucson"]},{"company":"PennyMac","name":"Cornelius Phanthanh","email":"corneliusphanthanh@gmail.com","linkedIn":"www.linkedin.com/in/corneliusphanthanh","campus":"LA","cohort":"33","jobTitle":"Full Stack (UI/UX) Senior Application Developer","industry":"Loan/Mortgage","cities":["Honolulu","London","Memphis","Louisville"]},{"company":"Penumbra","name":"Abigail Gjurich","email":"amgjurich@gmail.com","linkedIn":"https://www.linkedin.com/in/abigail-gjurich/","campus":"NYC","cohort":"25","jobTitle":"Front End Engineer","industry":"Medical","cities":["Detroit","Paris"]},{"company":"Penumbra, Inc.","name":"Junaid Ahmed","email":"junaid7ahmed96@gmail.com","linkedIn":"https://www.linkedin.com/in/ahmedjnd/","campus":"NYOI","cohort":"3","jobTitle":"Full Stack Engineer","industry":"Healthtech/Healthcare","cities":["Lubbock","Washington"]},{"company":"Peraton","name":"Andrew Jung","email":"andrewjung89@icloud.com","linkedIn":"https://www.linkedin.com/in/sjung80/","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Cyber Software Engineer","industry":"Public Safety","cities":["Baltimore","Irvine"]},{"company":"PGA Tour","name":"Rami Abdelghafar","email":"ramabdel12@gmail.com","linkedIn":"https://www.linkedin.com/in/ramiabdelghafar/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Software Engineer","industry":"Digital","cities":["Fort Worth"]},{"company":"PGi","name":"Zi Hao He","email":"germanychinaaustralia@yahoo.com","linkedIn":"https://www.linkedin.com/in/zi-hao-he/","campus":"NYC","cohort":"19","jobTitle":"Software Engineer I","industry":"Video","cities":["Las Vegas","Beijing","Chesapeake"]},{"company":"PGS","name":"Yi Sun","email":"timyisun@gmail.com","linkedIn":"https://www.linkedin.com/in/yi-sun-swe/","campus":"PTRI","cohort":"10","jobTitle":"Senior Software Engineer","industry":"Energy/Cleantech/Greentech","cities":["Lubbock","Laredo"]},{"company":"PhotoShelter","name":"Julia Ieshtokina","email":"julia.ieshtokina@gmail.com","linkedIn":"https://www.linkedin.com/in/julia-ieshtokina/","campus":"NYC","cohort":"5","jobTitle":"Software Automation Engineer","industry":"","cities":["Bakersfield"]},{"company":"Picarro","name":"Sรฉbastien Fauque","email":"Sbfauque@gmail.com","linkedIn":"https://www.linkedin.com/in/sebastienfauque","campus":"FTRI","cohort":"4","jobTitle":"Software engineer","industry":"Green tech","cities":["Irvine"]},{"company":"Pie Insurance","name":"Alex Wolinsky","email":"alexwolinsky1@gmail.com","linkedIn":"https://www.linkedin.com/in/alex-wolinsky/","campus":"LA","cohort":"40","jobTitle":"Software Engineer","industry":"Insurance","cities":["Glendale"]},{"company":"Pima County","name":"Jake Kazi","email":"kazijake@gmail.com","linkedIn":"linkedin.com/in/jakekazi","campus":"PTRI","cohort":"7","jobTitle":"IT Applications Engineer","industry":"Other","cities":["Virginia Beach"]},{"company":"Pinterest","name":"Edar Liu","email":"liuedar@gmail.com","linkedIn":"https://www.linkedin.com/in/liuedar/","campus":"LA","cohort":"46","jobTitle":"Software Engineer L4","industry":"Social Media","cities":["Seattle"]},{"company":"Pitzer College","name":"Kurt Crandall","email":"kcrandall67@gmail.com","linkedIn":"https://www.linkedin.com/in/kurtcrandall","campus":"LA / WCRI","cohort":"47","jobTitle":"Web Developer","industry":"Other","cities":["Anaheim"]},{"company":"Place Exchange","name":"Wesley Jia","email":"wesleyjia34@gmail.com","linkedIn":"https://www.linkedin.com/in/wesleyjia/","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"Advertising","cities":["Winston-Salem","Phoenix"]},{"company":"Plaid","name":"Nicolas Ferretti","email":"nf96@cornell.edu","linkedIn":"https://www.linkedin.com/in/nicolas-ferretti/","campus":"NYC","cohort":"13","jobTitle":"Software Engineer","industry":"Fintech","cities":["Chesapeake","Oakland"]},{"company":"Platform Science","name":"Daniel Aurand","email":"Daurand303@gmail.com","linkedIn":"https://www.linkedin.com/in/daniel-aurand/","campus":"PTRI","cohort":"7","jobTitle":"software development engineer - FMS","industry":"Automotive","cities":["Denver","Fort Worth","Portland","El Paso"]},{"company":"Playstation","name":"Bryan Santos","email":"brymsantos@gmail.com","linkedIn":"https://www.linkedin.com/in/bryan-santos/","campus":"LA","cohort":"49","jobTitle":"Software Engineer II","industry":"Gaming","cities":["Anchorage","Cleveland"]},{"company":"PlayStation","name":"Jackqueline Nguyen","email":"jackquelineanguyen@gmail.com","linkedIn":"https://www.linkedin.com/in/jackquelinenguyen/","campus":"LA / WCRI","cohort":"54","jobTitle":"Senior Software Engineer","industry":"Gaming","cities":["Washington"]},{"company":"PlayVs","name":"Alyvia Moss","email":"alyvialmoss@gmail.com","linkedIn":"https://www.linkedin.com/in/alyviam/","campus":"LA","cohort":"28","jobTitle":"Software Engineer","industry":"E-Sports","cities":["Beijing","Mesa","Baltimore","Anchorage"]},{"company":"Plum","name":"Nattie Chan","email":"nattie.chan@gmail.com","linkedIn":"https://www.linkedin.com/in/nattiechan/","campus":"LA / WCRI","cohort":"56","jobTitle":"Software Engineer","industry":"Other","cities":["Denver","Jacksonville","Philadelphia"]},{"company":"Pluralsight","name":"Ronak Hirpara","email":"ronakh130@gmail.com","linkedIn":"https://www.linkedin.com/in/ronak-hirpara/","campus":"NYC","cohort":"30","jobTitle":"Software Engineer","industry":"Education","cities":["Riverside","Dallas"]},{"company":"Pluralsight","name":"Stephanie Wood","email":"wood.steph@gmail.com","linkedIn":"https://www.linkedin.com/in/stephaniewood22/","campus":"LA","cohort":"36","jobTitle":"Software Engineer","industry":"EdTech","cities":["Laredo","St. Petersburg"]},{"company":"Plutoshift","name":"Alex Bednarek","email":"alexbednarek4@gmail.com","linkedIn":"https://www.linkedin.com/in/alex-bednarek/","campus":"NYC","cohort":"16","jobTitle":"Backend Engineer","industry":"Internet/AI/Energy","cities":["Louisville","Toronto","Irving","Atlanta"]},{"company":"Podsights","name":"Emily Krebs","email":"erkrebs@gmail.com","linkedIn":"https://www.linkedin.com/in/emilyrkrebs/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"Podcast Analytics","cities":["Mexico City","Lincoln","Berlin"]},{"company":"PointsBet","name":"Joseph Eisele","email":"eisele.joseph1@gmail.com","linkedIn":"https://www.linkedin.com/in/joseph-eisele/","campus":"LA","cohort":"29","jobTitle":"Front-end Engineering Consultant","industry":"Sports Betting","cities":["Oklahoma City","Fort Worth","St. Louis","Cleveland"]},{"company":"PokerAtlas","name":"Patrick S. Young","email":"patrick.shaffer.young@gmail.com","linkedIn":"https://www.linkedin.com/in/patrick-s-young/","campus":"LA","cohort":"31","jobTitle":"Frontend Engineer","industry":"Entertainment","cities":["Virginia Beach","Louisville","Pittsburgh"]},{"company":"Policygenius","name":"Christopher Bosserman","email":"christopherpbosserman@gmail.com","linkedIn":"https://www.linkedin.com/in/christopherpbosserman/","campus":"NYC","cohort":"24","jobTitle":"Software Engineer","industry":"Insurance","cities":["Jersey City","Kansas City","Milwaukee","Chicago"]},{"company":"Policygenius","name":"Kelly Porter","email":"kporter101@gmail.com","linkedIn":"https://www.linkedin.com/in/kporter101/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer","industry":"Insurance","cities":["Albuquerque","Colorado Springs"]},{"company":"Poll Everywhere","name":"Samuel Filip","email":"samjfilip@gmail.com","linkedIn":"https://www.linkedin.com/in/sam-filip/","campus":"PTRI","cohort":"2","jobTitle":"Full Stack Integrations Engineer","industry":"IT Services","cities":["Jacksonville","Berlin","El Paso"]},{"company":"Poloniex","name":"Sunit Bhalotia","email":"sunit.bh@gmail.com","linkedIn":"linkedin.com/in/sunitb/","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Senior Software Engineer, Web","industry":"Blockchain/Web3","cities":["Lexington","Bakersfield","Raleigh"]},{"company":"Polyture","name":"Dieu Huynh","email":"dieu@dieuhuynh.com","linkedIn":"https://www.linkedin.com/in/dieu-huynh","campus":"LA","cohort":"42","jobTitle":"Software Engineer","industry":"Data Analytics","cities":["Anaheim"]},{"company":"Polyture","name":"Evan Grobar","email":"egrobar@gmail.com","linkedIn":"","campus":"LA","cohort":"33","jobTitle":"Software Engineer","industry":"Data Analysis","cities":["Tucson","Las Vegas"]},{"company":"Pondurance","name":"Nancy Dao","email":"nancyddao@gmail.com","linkedIn":"","campus":"LA","cohort":"33","jobTitle":"Front End Software Engineer","industry":"Security","cities":["Saint Paul","Cincinnati"]},{"company":"Postman","name":"Jonathan Haviv","email":"jonathandhaviv@gmail.com","linkedIn":"https://www.linkedin.com/in/jonathanhaviv/","campus":"PTRI","cohort":"6","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Mexico City","Paris","Bakersfield","Washington"]},{"company":"Potato","name":"Kiril Christov","email":"kiril.christov@gmail.com","linkedIn":"https://www.linkedin.com/in/kchristov/","campus":"LA","cohort":"32","jobTitle":"Full stack engineer","industry":"Technology","cities":["Laredo","Pittsburgh"]},{"company":"Power Digital","name":"Feiyi Wu","email":"freyawu10@gmail.com","linkedIn":"https://www.linkedin.com/in/freya-wu/","campus":"LA","cohort":"45","jobTitle":"Jr. Software Engineer","industry":"Marketing","cities":["Louisville","Oakland","Winston-Salem","Irvine"]},{"company":"Prescriptive Data","name":"Nathan Le Master","email":"nlemaster47@gmail.com","linkedIn":"https://www.linkedin.com/in/nathan-le-master/","campus":"NYC","cohort":"11","jobTitle":"Frontend Developer","industry":"Building Management","cities":["Laredo","Gilbert","Glendale","Buffalo"]},{"company":"Priceline","name":"Tommy Liang","email":"tommyliangsays@gmail.com","linkedIn":"https://www.linkedin.com/in/mrtommyliang/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer - Frontend","industry":"Travel","cities":["Honolulu","Newark"]},{"company":"PRIME","name":"Andrew Park","email":"andrewchanwonpark@gmail.com","linkedIn":"https://www.linkedin.com/in/andrew-c-park/","campus":"LA / WCRI","cohort":"50","jobTitle":"Shopify Developer","industry":"Restaurant, Food, and Beverage","cities":["Reno","Virginia Beach","Winston-Salem"]},{"company":"Prime Therapeutics","name":"Dennis Cheung","email":"dennis.kh.cheung@gmail.com","linkedIn":"https://www.linkedin.com/in/denniskhcheung/","campus":"NYC / ECRI","cohort":"37","jobTitle":"Senior Software Engineer","industry":"Healthcare","cities":["Columbus"]},{"company":"Principal Financial Group","name":"Stephen Lee","email":"stphn.l.nyc@gmail.com","linkedIn":"https://www.linkedin.com/in/stphnl/","campus":"NYOI","cohort":"2","jobTitle":"Software Engineer II","industry":"Insurance","cities":["Atlanta","San Jose","Anchorage","San Francisco"]},{"company":"ProdataKey","name":"William Murphy","email":"w.williamjmurphy@gmail.com","linkedIn":"https://www.linkedin.com/in/w-william-j-murphy/","campus":"FTRI / CTRI","cohort":"15","jobTitle":"Software Engineer","industry":"Business Tech/Enterprise Tech","cities":["Gilbert","Honolulu","San Diego"]},{"company":"Proov (MFB Fertility)","name":"Brian Pham","email":"br.pham13@gmail.com","linkedIn":"https://www.linkedin.com/in/brpham13/","campus":"LA / WCRI","cohort":"53","jobTitle":"Frontend Engineer","industry":"Healthcare","cities":["Irving","Madison","Wichita"]},{"company":"Prosper Marketplace","name":"David Levien","email":"david.levien1@gmail.com","linkedIn":"https://www.linkedin.com/in/dlev01/","campus":"LA","cohort":"28","jobTitle":"Senior Software Engineer","industry":"","cities":["Chula Vista","St. Petersburg","Arlington","Memphis"]},{"company":"Providence Health & Services","name":"Jared Weiss","email":"weissjmw@gmail.com","linkedIn":"https://www.linkedin.com/in/jaredmweiss/","campus":"NYC","cohort":"2","jobTitle":"Software Engineer","industry":"","cities":["Beijing"]},{"company":"Prudential Financial","name":"Michael Lam","email":"mlamchamkee@gmail.com","linkedIn":"https://www.linkedin.com/in/mlamchamkee/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Director, Tech Lead","industry":"Insurance","cities":["Portland","Buffalo"]},{"company":"Prudential Financial","name":"Perla Royer","email":"perlaroyerc@gmail.com","linkedIn":"https://www.linkedin.com/in/perlaroyerc/","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Software Engineer","industry":"Fintech","cities":["Jersey City","Sacramento","Norfolk","Glendale"]},{"company":"Purpose Investments","name":"Anika Mustafiz","email":"munikamustafiz89@gmail.com","linkedIn":"https://www.linkedin.com/in/anikamustafiz-lillies/","campus":"PTRI","cohort":"1","jobTitle":"Full Stack Developer","industry":"Fintech/Insurance software","cities":["Cleveland","New York"]},{"company":"Q2","name":"Justin Poirier","email":"poirierj94@gmail.com","linkedIn":"https://www.linkedin.com/in/justincpoirier","campus":"NYC / ECRI","cohort":"40","jobTitle":"Software Engineer","industry":"Fintech","cities":["Baltimore","Philadelphia","Chandler"]},{"company":"QLogic LLC.","name":"Joe Cervino","email":"jciv.public@gmail.com","linkedIn":"","campus":"NYC","cohort":"6","jobTitle":"Senior Associate - Node Engineer","industry":"","cities":["Portland"]},{"company":"Qrypt","name":"Vinit Patel","email":"za.vinit@gmail.com","linkedIn":"https://www.linkedin.com/in/vinit-za/","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"Cryptography","cities":["Colorado Springs","Toronto","Chesapeake","Garland"]},{"company":"Qualleta Inc / StartPlaying.Games","name":"Brian Hayashi","email":"BrianMHayashi@gmail.com","linkedIn":"https://www.linkedin.com/in/brianmakiohayashi/","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Entertainment","cities":["Miami","Virginia Beach","Minneapolis"]},{"company":"Quantgene","name":"Peter Fasula","email":"peter.fasula@gmail.com","linkedIn":"https://www.linkedin.com/in/petefasula/","campus":"NYC","cohort":"3","jobTitle":"Sr. Full Stack Software Engineer","industry":"","cities":["Tulsa"]},{"company":"Quantiphi, Inc","name":"Alura Chung-Mehdi","email":"aluracm@gmail.com","linkedIn":"linkedin.com/alura-chungmehdi","campus":"FTRI","cohort":"1","jobTitle":"Software Developer","industry":"Conversational AI","cities":["Sydney"]},{"company":"Quantum Metric","name":"Justin Blalock","email":"justin.m.blalock@gmail.com","linkedIn":"https://www.linkedin.com/in/justinmblalock/","campus":"FTRI","cohort":"5","jobTitle":"Customer Success Engineer","industry":"Technology","cities":["Scottsdale","Gilbert","Columbus"]},{"company":"Railbird","name":"Justin Paige","email":"justinpaige3@gmail.com","linkedIn":"https://www.linkedin.com/in/justin-paige/","campus":"LA / WCRI","cohort":"52","jobTitle":"Software Engineer","industry":"Fintech","cities":["Louisville","Tampa","Paris"]},{"company":"Rainmaker Games","name":"Julia Collins","email":"Julia.col@protonmail.com","linkedIn":"","campus":"PTRI","cohort":"2","jobTitle":"Lead Frontend Engineer (Web3)","industry":"Blockchain baby","cities":["Miami","Lubbock","Norfolk","Kansas City"]},{"company":"Rally Health","name":"Stefan Pougatchev","email":"Stefan.Pougatchev@gmail.com","linkedIn":"https://www.linkedin.com/in/stefanpougatchev/","campus":"LA","cohort":"38","jobTitle":"Software Engineer II","industry":"Health/Insurance","cities":["St. Louis","Mesa"]},{"company":"Raytheon Technologies","name":"Troy Prejusa","email":"prejusa.troy@gmail.com","linkedIn":"https://www.linkedin.com/in/troyprejusa/","campus":"LA / WCRI","cohort":"54","jobTitle":"Software Engineer II","industry":"Aerospace","cities":["St. Louis","Laredo"]},{"company":"Ready Responders","name":"Joel Rivera","email":"realjoelrivera@gmail.com","linkedIn":"https://www.linkedin.com/in/RealJoelRivera","campus":"NYC","cohort":"11","jobTitle":"React Developer","industry":"Healthcare","cities":["Seattle","Sรฃo Paulo"]},{"company":"Record360","name":"Abby Chao","email":"abigail.chao@gmail.com","linkedIn":"https://www.linkedin.com/in/abbychao/","campus":"NYC","cohort":"12","jobTitle":"CEO","industry":"Rental Inspection","cities":["Houston","Orlando","San Antonio"]},{"company":"Recurate","name":"PJ Bannon","email":"bannon.pj@gmail.com","linkedIn":"https://www.linkedin.com/in/paulbannon/","campus":"NYOI","cohort":"3","jobTitle":"Frontend Engineer","industry":"Retail","cities":["Nashville","Long Beach"]},{"company":"Recurate","name":"Andrew Altman","email":"andrewaltman@outlook.com","linkedIn":"https://www.linkedin.com/in/andrewaltman1/","campus":"NYOI","cohort":"3","jobTitle":"Lead Frontend Engineer","industry":"Business Tech/Enterprise Tech","cities":["Laredo","Anchorage","St. Louis","Bakersfield"]},{"company":"Red Bull North America","name":"Catherine Larcheveque","email":"clarcheveque14@gmail.com","linkedIn":"https://www.linkedin.com/in/clarcheveque","campus":"LA","cohort":"43","jobTitle":"Software Automation Engineer","industry":"Restaurant, Food, and Beverage","cities":["Denver","Minneapolis","St. Louis"]},{"company":"Reddit","name":"Jessikeรฉ Campbell-Walker","email":"jessikeecw@gmail.com","linkedIn":"https://www.linkedin.com/in/jessikeecampbellwalker/","campus":"LA","cohort":"34","jobTitle":"Junior Front End Engineer","industry":"Internet Media","cities":["New Orleans"]},{"company":"Redox","name":"Jacquelyn Whitworth","email":"jackie.whitworth@gmail.com","linkedIn":"https://www.linkedin.com/in/jackiewhitworth/","campus":"FTRI","cohort":"4","jobTitle":"Full Stack Engineer","industry":"Healthcare","cities":["Buffalo","Detroit","Long Beach"]},{"company":"Redwood Coding Academy","name":"Alexander Landeros","email":"Alexander.Landeros1@gmail.com","linkedIn":"https://www.linkedin.com/in/alexander-landeros/","campus":"LA","cohort":"38","jobTitle":"Software Dev Instructor","industry":"Edtech","cities":["Minneapolis"]},{"company":"REEF","name":"Linda Everswick","email":"lindaeverswick@gmail.com","linkedIn":"https://www.linkedin.com/linda-everswick/","campus":"NYC","cohort":"18","jobTitle":"Front end engineer","industry":"Real Estate","cities":["Austin"]},{"company":"Remine","name":"JJ Friedman","email":"friedmanjarred@gmail.com","linkedIn":"https://www.linkedin.com/in/jj-friedman/","campus":"LA","cohort":"33","jobTitle":"Software Engineer II - Web/Mobile","industry":"PropTech","cities":["Kansas City","Newark"]},{"company":"Remote","name":"Bianca Picasso","email":"bianca.picasso@gmail.com","linkedIn":"https://www.linkedin.com/in/bianca-picasso/","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Engineer I","industry":"Research","cities":["Madison"]},{"company":"Rent the Runway","name":"Rebecca Schell","email":"Rebeccaschell503@gmail.com","linkedIn":"https://www.linkedin.com/in/rschelly/","campus":"NYC","cohort":"25","jobTitle":"Senior Front End Engineer","industry":"Fashion","cities":["Chula Vista","Omaha","Lincoln","Los Angeles"]},{"company":"Republic Services","name":"Lauren Acrich","email":"acrich.lauren@gmail.com","linkedIn":"https://www.linkedin.com/in/laurenacrich/","campus":"PTRI","cohort":"6","jobTitle":"Full Stack Software Engineer","industry":"Other","cities":["Tampa","El Paso"]},{"company":"Republic Services","name":"Nicholas Smith","email":"nicktsmith7@gmail.com","linkedIn":"https://www.linkedin.com/in/nicholastaylorsmith/","campus":"LA","cohort":"23","jobTitle":"Senior Front End Developer","industry":"","cities":["Tulsa"]},{"company":"Rescale","name":"Kushal Talele","email":"kushal.talele@gmail.com","linkedIn":"https://www.linkedin.com/in/kushaltalele/","campus":"NYC","cohort":"24","jobTitle":"Software Engineer","industry":"Cloud computing","cities":["San Francisco"]},{"company":"Research Corporation of the University of Hawaii","name":"Chris Fryer","email":"chris@hifryer.com","linkedIn":"linkedin.com/in/cjfryer","campus":"LA / WCRI","cohort":"51","jobTitle":"Software Engineer Apprentice","industry":"Other","cities":["Chandler"]},{"company":"ResMed","name":"Jackie He","email":"jackie.he98@gmail.com","linkedIn":"https://www.linkedin.com/in/jackie-he/","campus":"LA / WCRI","cohort":"53","jobTitle":"Fullstack App SWE","industry":"Healthcare","cities":["Stockton","El Paso","Henderson","Irving"]},{"company":"Restaurant Brand International (RBI)","name":"Christian Niedermayer","email":"sdchrisn@gmail.com","linkedIn":"https://www.linkedin.com/in/christian-niedermayer/","campus":"LA","cohort":"27","jobTitle":"Full Stack Software Engineer","industry":"Food","cities":["Indianapolis","Phoenix","Tokyo"]},{"company":"Resy (AMEX)","name":"Jonathan Cespedes","email":"jmilescespedes@gmail.com","linkedIn":"https://www.linkedin.com/in/jonathancespedes/","campus":"NYC","cohort":"7","jobTitle":"Senior Front-End Engineer","industry":"Restaurant, Food, Beverage","cities":["Anchorage","Buffalo","Raleigh"]},{"company":"Reveel Group","name":"Jin Soo (John) Lim","email":"jinsoolim1@gmail.com","linkedIn":"https://www.linkedin.com/in/jinsoolim","campus":"NYC","cohort":"21","jobTitle":"Frontend Developer","industry":"Logistics & Supply Chain","cities":["Irving","Kansas City","Fort Worth"]},{"company":"Revel","name":"Kayliegh Hill","email":"kayliegh.hill@gmail.com","linkedIn":"https://www.linkedin.com/in/kayliegh-hill/","campus":"NYC","cohort":"31","jobTitle":"Full Stack Engineer","industry":"Renewables & Environment","cities":["Seattle","San Jose","Fort Wayne","Cleveland"]},{"company":"Reverb","name":"Grace Park","email":"gracepark01@gmail.com","linkedIn":"","campus":"NYC","cohort":"20","jobTitle":"software engineer","industry":"ecommerce","cities":["Chandler","Greensboro","Saint Paul"]},{"company":"Revolution Prep","name":"Max Weisenberger","email":"germanbluemax@gmail.com","linkedIn":"https://www.linkedin.com/in/maxweisen/","campus":"LA","cohort":"42","jobTitle":"Software Engineer","industry":"Education","cities":["Beijing","London","Newark"]},{"company":"RF-Smart","name":"Michael Snyder","email":"msnyder1992@gmail.com","linkedIn":"https://www.linkedin.com/in/michaelcharlessnyder/","campus":"PTRI","cohort":"6","jobTitle":"JavaScript Applications Developer","industry":"Software / Tech","cities":["Seattle"]},{"company":"Rice University","name":"Thasanee Puttamadilok","email":"meow3525@gmail.com","linkedIn":"https://www.linkedin.com/in/thasanee-p-686125243/","campus":"PTRI","cohort":"7","jobTitle":"Front End Software Engineer","industry":"Research","cities":["Miami"]},{"company":"Rightway","name":"Dylan Feldman","email":"dfeldman24@gmail.com","linkedIn":"https://www.linkedin.com/in/dylan-feldman/","campus":"LA","cohort":"45","jobTitle":"Software engineer","industry":"Healthcare navigation","cities":["Plano","Atlanta","Phoenix","Newark"]},{"company":"Riot Games","name":"Pauline Chang","email":"paulseonchang@gmail.com","linkedIn":"https://www.linkedin.com/in/pskchang/","campus":"LA","cohort":"22","jobTitle":"Associate Software Engineer","industry":"","cities":["Jacksonville","Chandler","Oklahoma City"]},{"company":"RIPL","name":"Jared Veltsos","email":"Veltsos.jared@gmail.com","linkedIn":"https://www.linkedin.com/in/jaredveltsos/","campus":"LA / WCRI","cohort":"51","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Plano"]},{"company":"Rivian","name":"Luis Lo","email":"kwun.man.lo@gmail.com","linkedIn":"https://www.linkedin.com/in/luis-lo/","campus":"LA","cohort":"37","jobTitle":"Software Engineer","industry":"Electric Vehicle","cities":["Louisville","Detroit"]},{"company":"Rivian","name":"Matthew Salvador","email":"matthew.jsalvador@gmail.com","linkedIn":"https://www.linkedin.com/in/matthewsalvador/","campus":"NYC","cohort":"24","jobTitle":"Full Stack Software Engineer II","industry":"Automotive","cities":["Boston","Baltimore","Cincinnati"]},{"company":"Rivian","name":"Stacy Learn","email":"sslearn07@gmail.com","linkedIn":"https://www.linkedin.com/in/stacy-learn/","campus":"NYC","cohort":"24","jobTitle":"Software Engineer II","industry":"Automotive","cities":["Tokyo","Washington","Lexington","Indianapolis"]},{"company":"Rivian","name":"Thomas Lutz","email":"tlutz65@gmail.com","linkedIn":"https://www.linkedin.com/in/thomas-j-lutz/","campus":"LA","cohort":"36","jobTitle":"Software Engineer","industry":"Automotive","cities":["Raleigh"]},{"company":"Rocket Auto","name":"Tommy Han","email":"tommy.han.cs@gmail.com","linkedIn":"https://www.linkedin.com/in/tommy-han-cs/","campus":"NYC","cohort":"18","jobTitle":"Senior Javascript Software Engineer","industry":"Fintech","cities":["Beijing","St. Petersburg"]},{"company":"Rocksbox","name":"Ece Isenbike Ozalp","email":"eceiozalp@gmail.com","linkedIn":"https://www.linkedin.com/in/eceiozalp","campus":"PTRI","cohort":"4","jobTitle":"Software Engineer","industry":"Jewelry Ecommerce","cities":["Philadelphia","New York","Baltimore"]},{"company":"RockStep Solutions","name":"Matthew McGowan","email":"matthew.c.mcgowan@gmail.com","linkedIn":"https://www.linkedin.com/in/matthewcharlesmcgowan/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Software Release Manager","industry":"Software / Tech","cities":["Orlando","Memphis","Mesa"]},{"company":"Rohirrim","name":"Alex Corlin","email":"alex.corlin6@gmail.com","linkedIn":"https://www.linkedin.com/in/alex-corlin/","campus":"FTRI / CTRI","cohort":"7","jobTitle":"Full Stack Engineer","industry":"Artificial Intelligence","cities":["Kansas City"]},{"company":"Rohirrim","name":"Simon Chen","email":"simonchn160@gmail.com","linkedIn":"https://www.linkedin.com/in/simonchen7/","campus":"FTRI / CTRI","cohort":"7","jobTitle":"Full Stack Engineer","industry":"Artificial Intelligence","cities":["Durham"]},{"company":"Roivant","name":"Jamie Schiff","email":"jamie.abrams.schiff@gmail.com","linkedIn":"https://www.linkedin.com/in/jamie-schiff/","campus":"NYC / ECRI","cohort":"1","jobTitle":"Technology Analyst","industry":"Biotech","cities":["Lubbock","Toledo"]},{"company":"Rokt","name":"Michael Hoang","email":"michaelhoang781@gmail.com","linkedIn":"https://www.linkedin.com/in/michaelhoang1/","campus":"NYC","cohort":"29","jobTitle":"Frontend Software Engineer","industry":"Digital Advertising/E-commerce","cities":["New York","Tokyo","Norfolk"]},{"company":"Roll","name":"Eric Choy","email":"echoy20@gmail.com","linkedIn":"https://www.linkedin.com/in/silly-turtle/","campus":"NYC","cohort":"8","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Toronto","Tampa","Dallas","Los Angeles"]},{"company":"Roll","name":"Marlon Wiprud","email":"Marlonwiprud1@gmail.com","linkedIn":"","campus":"NYC","cohort":"8","jobTitle":"Software engineer","industry":"Entertainment","cities":["Columbus","New York","Paris","Saint Paul"]},{"company":"Roll","name":"Marlon Wiprud","email":"Marlonwiprud1@gmail.com","linkedIn":"","campus":"NYC","cohort":"8","jobTitle":"Software Engineer","industry":"Search and ads","cities":["Anchorage","Minneapolis","Tulsa","Chandler"]},{"company":"Rose Digital","name":"Chet (ChetBABY!) Hay","email":"chet.hay@gmail.com","linkedIn":"https://www.linkedin.com/in/chethay/","campus":"LA","cohort":"28","jobTitle":"Jr. Frontend Engineer","industry":"Digital Agency/Client Services","cities":["Irving","Atlanta","Columbus"]},{"company":"Rose Digital","name":"Linda Harrison","email":"lindafaithharrison@gmail.com","linkedIn":"https://linkedin.com/in/lindafharrison/","campus":"NYC","cohort":"3","jobTitle":"Junior Software Engineer","industry":"","cities":["Berlin","Memphis","New Orleans","Seattle"]},{"company":"Ruggable","name":"Benjamin Lee Morrison","email":"newben.hd@gmail.com","linkedIn":"https://www.linkedin.com/in/hdlmorrison/","campus":"LA","cohort":"31","jobTitle":"Sr. Software Engineer","industry":"Commerce","cities":["Oakland","Philadelphia","Jersey City"]},{"company":"Ruggable","name":"Andrew Nguyen","email":"nguyen.andrewkh@gmail.com","linkedIn":"https://www.linkedin.com/in/andrew-knguyen/","campus":"LA","cohort":"29","jobTitle":"Sr. Front-End Engineer","industry":"E-Commerce","cities":["Madison","Henderson"]},{"company":"Ruggable","name":"Steven Jung","email":"stehyjung@gmail.com","linkedIn":"https://www.linkedin.com/in/stehyjung/","campus":"LA","cohort":"28","jobTitle":"Front End Engineer","industry":"E-Commerce","cities":["El Paso"]},{"company":"Rush Enterprises","name":"Eric Saldivar","email":"esaldivar1214@gmail.com","linkedIn":"https://www.linkedin.com/in/esaldivar1214/","campus":"PTRI","cohort":"3","jobTitle":"Software Engineer","industry":"Automative","cities":["San Antonio","Irving","El Paso","Buffalo"]},{"company":"S&P Global","name":"Samantha Warrick","email":"samanthawarrick@gmail.com","linkedIn":"www.linkedin.com/samantha-warrick","campus":"LA / WCRI","cohort":"54","jobTitle":"Front End Software Engineer","industry":"Marketing","cities":["Tulsa"]},{"company":"Saggezza","name":"Albert Chen","email":"albert.chen@nyu.edu","linkedIn":"https://www.linkedin.com/in/albert-m-chen/","campus":"NYC","cohort":"2","jobTitle":"Full-stack Analytics Engineer","industry":"Big Data, Analytics","cities":["Anchorage","Glendale","Detroit"]},{"company":"Salesforce","name":"Jennifer Courtner","email":"jmichele.courtner@gmail.com","linkedIn":"https://www.linkedin.com/in/jcourtner/","campus":"NYC","cohort":"22","jobTitle":"Full Stack Engineer","industry":"B2B","cities":["Henderson","Irvine"]},{"company":"San Francisco State University","name":"Paul Valderama","email":"pvalderama@gmail.com","linkedIn":"https://www.linkedin.com/in/paulvalderama/","campus":"LA / WCRI","cohort":"22","jobTitle":"Senior Web and Mobile Developer","industry":"Software / Tech","cities":["Seattle","San Diego","Toronto"]},{"company":"SAP","name":"Charlie Maloney","email":"charliemaloney200@gmail.com","linkedIn":"https://www.linkedin.com/in/charlie-maloney/","campus":"LA","cohort":"35","jobTitle":"Front End Developer","industry":"Enterprise Software","cities":["Kansas City"]},{"company":"SAP","name":"Sylvia Liu","email":"sylvs.liu@gmail.com","linkedIn":"https://www.linkedin.com/in/liusylvia949/","campus":"LA","cohort":"46","jobTitle":"Frontend Software Engineer","industry":"Business Software","cities":["Lincoln","Miami","Durham","Lexington"]},{"company":"Sayari","name":"SEAN YALDA","email":"seanyalda@gmail.com","linkedIn":"https://www.linkedin.com/in/sean-yalda/","campus":"PTRI","cohort":"2","jobTitle":"Senior Full Stack Developer","industry":"Data Intelligence","cities":["New Orleans","Jacksonville","Dallas","Garland"]},{"company":"Sayari Labs","name":"Michael Gower","email":"GowerMikey@gmail.com","linkedIn":"https://www.linkedin.com/in/mikeygower/","campus":"NYC","cohort":"22","jobTitle":"Senior Full Stack Engineer","industry":"Financial Data","cities":["Lubbock"]},{"company":"Scale Computing","name":"Jason Charles de vera","email":"jasoncdevera@gmail.com","linkedIn":"https://www.linkedin.com/in/jason-charles-de-vera/","campus":"FTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Cloud Technology","cities":["St. Petersburg","Arlington","Sacramento"]},{"company":"Scale Computing","name":"Connor Dillon","email":"connordillon06@gmail.com","linkedIn":"https://www.linkedin.com/in/connor-dillon/","campus":"FTRI / CTRI","cohort":"16","jobTitle":"Software Development Engineer","industry":"Business Tech/Enterprise Tech","cities":["Chesapeake"]},{"company":"Science","name":"Michelle Leong","email":"leong.michellew@gmail.com","linkedIn":"https://www.linkedin.com/in/michelle-w-leong/","campus":"LA / WCRI","cohort":"56","jobTitle":"Software Engineer","industry":"Biotech","cities":["London","North Las Vegas","Oklahoma City","Pittsburgh"]},{"company":"Science 37","name":"Tristan Schoenfeld","email":"tristans7@gmail.com","linkedIn":"https://www.linkedin.com/in/tristan-schoenfeld/","campus":"LA","cohort":"26","jobTitle":"Sr. Frontend Engineer","industry":"Research","cities":["Jersey City","Toledo","Dallas","Anchorage"]},{"company":"ScienceLogic","name":"Nick Kruckenberg","email":"nkruckenberg@gmail.com","linkedIn":"https://www.linkedin.com/in/nicholaskruckenberg/","campus":"NYC","cohort":"20","jobTitle":"Engineer","industry":"AIOps, IT monitoring and automation","cities":["Milwaukee"]},{"company":"SciTec","name":"Forest Everest Leigh","email":"theforestleigh@gmail.com","linkedIn":"https://www.linkedin.com/in/forestleigh/","campus":"LA / WCRI","cohort":"53","jobTitle":"Senior Software Engineer","industry":"Other","cities":["St. Petersburg","Irving","Toronto"]},{"company":"SDL","name":"Jamar Dawson","email":"Dawsonjamar@gmail.com","linkedIn":"","campus":"LA","cohort":"30","jobTitle":"Front End Engineer (Mid Level)","industry":"Translation","cities":["Lubbock"]},{"company":"SEAT:CODE","name":"Andrรฉs Gutiรฉrrez Ramรญrez","email":"agfeynman@gmail.com","linkedIn":"https://www.linkedin.com/in/andresgutierrezramirez/","campus":"PTRI","cohort":"5","jobTitle":"Senior Fullstack Engineer","industry":"Software / Tech","cities":["Colorado Springs"]},{"company":"Second Wave Technologies","name":"Nicholas Suzuki","email":"nicholassuzuki@yahoo.com","linkedIn":"https://www.linkedin.com/in/nicholas-j-suzuki/","campus":"FTRI / CTRI","cohort":"5","jobTitle":"Software Engineer","industry":"Consulting","cities":["Fort Wayne"]},{"company":"SecureSeniorConnections","name":"Timothy","email":"tim.atapagra@gmail.com","linkedIn":"https://www.linkedin.com/in/timpagra/","campus":"NYC","cohort":"15","jobTitle":"Software Developer","industry":"Hospitals","cities":["Beijing"]},{"company":"Seed Health","name":"John SaeHwan Lee","email":"john.saehwan.lee@gmail.com","linkedIn":"https://www.linkedin.com/in/john-saehwan-lee/","campus":"NYC / ECRI","cohort":"39","jobTitle":"Fullstack Software Engineer I","industry":"Fitness/Wellness","cities":["Irving"]},{"company":"SeedFi","name":"Peter Millspaugh","email":"peterdgmillspaugh@gmail.com","linkedIn":"https://www.linkedin.com/in/peter-millspaugh/","campus":"NYC","cohort":"26","jobTitle":"Software Engineer","industry":"Fintech","cities":["Mesa","Tucson","Denver","Tulsa"]},{"company":"Seedfi","name":"Stephen Grable","email":"stephengrable@gmail.com","linkedIn":"https://www.linkedin.com/in/stephen-grable/","campus":"NYC","cohort":"3","jobTitle":"Senior Software Engineer","industry":"Finance","cities":["Fort Wayne"]},{"company":"SEL","name":"Jace Crowe","email":"jace.crowe@gmail.com","linkedIn":"https://www.linkedin.com/in/jacecrowe/","campus":"LA / WCRI","cohort":"51","jobTitle":"Software Engineer - Front End","industry":"Energy/Cleantech/Greentech","cities":["Henderson","Riverside","Orlando"]},{"company":"Send Out Carda","name":"Chris romano","email":"Chrispaulromano@gmail.com","linkedIn":"","campus":"NYC","cohort":"15","jobTitle":"Front end engineer","industry":"Not sure: itโ€™s a subscription service for designing hallmark style cards","cities":["Raleigh","Fort Wayne","Long Beach"]},{"company":"SENSE Chat","name":"Donte Nall","email":"donte.nall@gmail.com","linkedIn":"","campus":"LA","cohort":"25","jobTitle":"Senior Mobile Developer","industry":"Consulting","cities":["Portland","Minneapolis","Mumbai"]},{"company":"Sensei","name":"Kevin Fey","email":"kevinfey@gmail.com","linkedIn":"https://www.linkedin.com/in/kevin-fey/","campus":"LA","cohort":"37","jobTitle":"Senior Frontend Engineer","industry":"Wellness","cities":["Reno","Stockton"]},{"company":"SequinAR","name":"Wyatt Bell","email":"wcbell51@gmail.com","linkedIn":"https://www.linkedin.com/in/wyatt-bell1/","campus":"LA","cohort":"37","jobTitle":"Software Engineer","industry":"Augmented Reality, Entertainment","cities":["Tampa","San Diego","Honolulu","Tokyo"]},{"company":"ServiceTrade","name":"Robert Beier","email":"robert.f.beier@gmail.com","linkedIn":"https://www.linkedin.com/in/robert-f-beier/","campus":"NYC","cohort":"31","jobTitle":"Software Engineer II","industry":"Contractor Software","cities":["Philadelphia"]},{"company":"Setsail Marketing","name":"Kirsten Milic","email":"kirsten.milic@gmail.com","linkedIn":"https://www.linkedin.com/in/kirsten-milic/","campus":"LA / WCRI","cohort":"57","jobTitle":"Software Engineer","industry":"Marketing/Advertising","cities":["Omaha","Sacramento"]},{"company":"Sev1Tech","name":"Adam Vanek","email":"atvanek@gmail.com","linkedIn":"https://www.linkedin.com/in/atvanek/","campus":"FTRI / CTRI","cohort":"15","jobTitle":"Full Stack Developer","industry":"Government","cities":["Jersey City"]},{"company":"Shadow Health","name":"Khandker Islam","email":"khandker.islam46@gmail.com","linkedIn":"https://www.linkedin.com/in/khandkerislam/","campus":"FTRI","cohort":"4","jobTitle":"Software Engineer II","industry":"Virtual Reality Education","cities":["Fresno","London","Chula Vista"]},{"company":"SharpenCX","name":"Anu Sharma","email":"anu.le.pau@gmail.com","linkedIn":"https://www.linkedin.com/in/anulepau","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Senior Full Stack Developer","industry":"Software / Tech","cities":["North Las Vegas","Jersey City"]},{"company":"Sherwin Williams","name":"Seamus Ryan","email":"d.seamus.ryan@outlook.com","linkedIn":"https://www.linkedin.com/in/dseamusryan/","campus":"LA","cohort":"39","jobTitle":"React Developer","industry":"Consumer","cities":["Memphis","Saint Paul"]},{"company":"Shift","name":"Ralph Salazar","email":"ralph.slzr@gmail.com","linkedIn":"https://www.linkedin.com/in/ralph-salazar","campus":"NYC","cohort":"2","jobTitle":"Software Engineer","industry":"","cities":["Virginia Beach","Detroit","Lexington"]},{"company":"Showtime","name":"Dan Teng","email":"danwteng@gmail.com","linkedIn":"https://www.linkedin.com/feed/","campus":"NYC","cohort":"32","jobTitle":"Software Engineer","industry":"Entertainment","cities":["Arlington","Seattle"]},{"company":"Shut Up & Write!","name":"Anthony Al-Rifai","email":"anthonyalrifai@gmail.com","linkedIn":"https://www.linkedin.com/in/anthony-al-rifai/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Full Stack Developer","industry":"Events","cities":["Atlanta","Irving","Fort Worth"]},{"company":"Shutterstock","name":"Ari Shoham","email":"arishoham@gmail.com","linkedIn":"https://www.linkedin.com/in/ari-shoham/","campus":"NYC","cohort":"31","jobTitle":"Software Engineer III","industry":"Photography","cities":["Chicago","Lincoln","New York"]},{"company":"Shutterstock","name":"Eli Davis","email":"eli.davis42@gmail.com","linkedIn":"https://www.linkedin.com/in/elidavis42/","campus":"NYC","cohort":"31","jobTitle":"Software Engineer","industry":"Other","cities":["Fort Wayne","Kansas City"]},{"company":"Shutterstock","name":"Michael Pay","email":"michael.edward.pay@gmail.com","linkedIn":"https://www.linkedin.com/in/michael-edward-pay/","campus":"LA","cohort":"46","jobTitle":"SDET III","industry":"Entertainment","cities":["Jacksonville","Charlotte"]},{"company":"Shutterstock, Inc.","name":"Jake B Douglas","email":"jbrandondouglas@gmail.com","linkedIn":"","campus":"NYC","cohort":"11","jobTitle":"Software Engineer, Projects","industry":"Tech? stock photography?","cities":["Chandler","Virginia Beach","Louisville"]},{"company":"Sidecar Health","name":"Sumin Kim","email":"ppsm920@gmail.com","linkedIn":"https://www.linkedin.com/in/ppsm920/","campus":"LA","cohort":"41","jobTitle":"Software Engineer","industry":"Healthcare / insurance","cities":["Kansas City"]},{"company":"Sierra Nevada Corporation","name":"Matthew Xing","email":"matthew.xing@gmail.com","linkedIn":"https://www.linkedin.com/in/matthew-xing/","campus":"PTRI","cohort":"6","jobTitle":"Software Engineer II - Space Systems","industry":"Other","cities":["Washington"]},{"company":"Signos","name":"Rebecca Anderson","email":"randersonviolin@gmail.com","linkedIn":"https://www.linkedin.com/in/rebecca--anderson/","campus":"NYC / ECRI","cohort":"38","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Raleigh","San Diego"]},{"company":"SigTech","name":"Robert Howton","email":"robert.f.howton@gmail.com","linkedIn":"https://www.linkedin.com/in/roberthowton/","campus":"NYC","cohort":"29","jobTitle":"Fullstack Software Engineer","industry":"Fintech","cities":["New Orleans","Glendale","Wichita"]},{"company":"SimpliSafe","name":"Cindy Chau","email":"cindychau38@gmail.com","linkedIn":"https://www.linkedin.com/in/cindychau38/","campus":"NYC","cohort":"23","jobTitle":"Software Engineer II","industry":"Security","cities":["Lincoln","Garland","Norfolk"]},{"company":"Simplr","name":"Grigor Minasyan","email":"grigorminasyan1998@gmail.com","linkedIn":"https://www.linkedin.com/in/grigor-minasyan","campus":"FTRI","cohort":"1","jobTitle":"Front end engineer","industry":"Customer service software","cities":["Charlotte"]},{"company":"SimplyWise","name":"Justin Jaeger","email":"jjustinjaeger@gmail.com","linkedIn":"https://www.linkedin.com/in/justin-jaeger/","campus":"NYC","cohort":"20","jobTitle":"Software Engineer","industry":"Cloud storage","cities":["Mumbai","Scottsdale","Albuquerque"]},{"company":"Sinclair Broadcast Group","name":"Michael Filoramo","email":"mlfiloramo@gmail.com","linkedIn":"linkedin.com/in/michael-filoramo/","campus":"PTRI","cohort":"6","jobTitle":"Full Stack Software Engineer III","industry":"Media","cities":["Raleigh","Mexico City"]},{"company":"Sinclair Broadcast Group","name":"David Beame","email":"dbeame291@gmail.com","linkedIn":"https://www.linkedin.com/in/david-beame/","campus":"LA / WCRI","cohort":"55","jobTitle":"Associate Software Developer","industry":"Media","cities":["Fresno","London"]},{"company":"Sinclair Broadcasting","name":"Joshua Reed","email":"joshreed104@gmail.com","linkedIn":"https://www.linkedin.com/in/josh-a-reed/","campus":"LA / WCRI","cohort":"54","jobTitle":"Associate Development Engineer","industry":"Telecommunications","cities":["Las Vegas","Santa Ana","Long Beach"]},{"company":"Singa","name":"Paul Kassar","email":"p.kassar@hotmail.com","linkedIn":"https://www.linkedin.com/in/paulkassar/","campus":"NYC","cohort":"3","jobTitle":"Engineer","industry":"Outdoor Recreation","cities":["Greensboro","Long Beach","Sacramento","Boston"]},{"company":"SiriusXM","name":"Ben Brower","email":"Bbrower1293@gmail.com","linkedIn":"https://www.linkedin.com/in/ben-brower-80660073","campus":"NYC","cohort":"21","jobTitle":"Software Engineer III","industry":"Entertainment","cities":["Columbus","Irving","London"]},{"company":"Skechers","name":"Christopher Saavedra","email":"cssaavedra56@gmail.com","linkedIn":"https://www.linkedin.com/in/chrisssaavedra/","campus":"LA","cohort":"22","jobTitle":"Front end engineer","industry":"Retail/Manufacturing","cities":["Cincinnati","Cleveland"]},{"company":"Skematic","name":"Christina Or","email":"OR.CHRISTINA27@GMAIL.COM","linkedIn":"https://www.linkedin.com/in/christina-or","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["St. Petersburg","Bakersfield"]},{"company":"Sketch and Etch","name":"Kenny Lee","email":"kenkiblee@gmail.com","linkedIn":"https://www.linkedin.com/in/kennethkiboklee/","campus":"LA / WCRI","cohort":"46","jobTitle":"Founding Engineer","industry":"Retail","cities":["Las Vegas","Tokyo","Detroit","Sรฃo Paulo"]},{"company":"SKF USA","name":"Steve Canavan","email":"stevenrosscanavan@gmail.com","linkedIn":"https://www.linkedin.com/in/stevencanavan/","campus":"NYC","cohort":"19","jobTitle":"Front End Developer","industry":"Manufacturing","cities":["Reno","Detroit"]},{"company":"Skillshare Inc.","name":"Chris Lung","email":"c.lung95@gmail.com","linkedIn":"https://www.linkedin.com/in/chris-lung-5b69b2ba/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer","industry":"Edtech","cities":["Las Vegas","Scottsdale","Mexico City","Durham"]},{"company":"Skillstorm, contracting at Bank of America","name":"Adam Singer","email":"Spincycle01@yahoo.com","linkedIn":"https://www.linkedin.com/in/adsing/","campus":"NYC","cohort":"10","jobTitle":"Application Programmer","industry":"Fintech","cities":["Beijing","Fort Worth","St. Petersburg","Albuquerque"]},{"company":"Skout Cybersecurity","name":"Garrett James","email":"garrettjames55@gmail.com","linkedIn":"https://www.linkedin.com/in/garrett-lamar-james/","campus":"NYC","cohort":"21","jobTitle":"Senior Software Engineer","industry":"Cybersecurity","cities":["Glendale","Washington","Riverside"]},{"company":"Sky Betting and Gaming / Flutter Entertainment","name":"Robert Drake","email":"rmdrake8@gmail.com","linkedIn":"https://www.linkedin.com/in/rmdrake8/","campus":"NYC / ECRI","cohort":"38","jobTitle":"Software Engineer","industry":"Sports/Sports betting","cities":["Louisville","Phoenix","Philadelphia","Nashville"]},{"company":"Skylark Travel","name":"Giuseppe Valentino","email":"zepvalue@gmail.com","linkedIn":"https://www.linkedin.com/in/zepvalue/","campus":"NYC","cohort":"12","jobTitle":"Senior Full Stack Developer","industry":"Travel","cities":["Mumbai"]},{"company":"Skylight","name":"Michael Lu","email":"michaellu213@gmail.com","linkedIn":"https://www.linkedin.com/in/michael-lu/","campus":"LA","cohort":"27","jobTitle":"Full Stack Engineer","industry":"Consumer Goods","cities":["San Antonio","Reno","Lubbock","Charlotte"]},{"company":"Slalom","name":"Angela Franco","email":"angelajfranco18@gmail.com","linkedIn":"https://www.linkedin.com/in/angela-j-franco","campus":"LA","cohort":"43","jobTitle":"Software Engineer (Consultant)","industry":"Consulting","cities":["St. Petersburg","Fort Worth","Columbus","Denver"]},{"company":"slalom","name":"Sara Kivikas","email":"sarakivikas@gmail.com","linkedIn":"https://www.linkedin.com/in/sara-kivikas/","campus":"LA","cohort":"49","jobTitle":"Software Engineer","industry":"Consulting","cities":["Greensboro"]},{"company":"Slang.ai","name":"Kevin Luo","email":"luokev1@gmail.com","linkedIn":"https://www.linkedin.com/in/kevinluo117/","campus":"NYC","cohort":"17","jobTitle":"Software Engineer","industry":"Customer Service","cities":["Aurora","Saint Paul"]},{"company":"SlyEco","name":"Nicolas Jackson","email":"nicolasljax@gmail.com","linkedIn":"https://www.linkedin.com/in/nicjax/","campus":"NYOI","cohort":"2","jobTitle":"Lead Software Engineer","industry":"Energy/Cleantech/Greentech","cities":["Arlington"]},{"company":"Smarkets","name":"Nicholas Healy","email":"nickrhealy@gmail.com","linkedIn":"https://www.linkedin.com/in/nick-r-healy","campus":"LA","cohort":"36","jobTitle":"Frontend Engineer","industry":"Fintech","cities":["Corpus Christi","Norfolk","Colorado Springs","Milwaukee"]},{"company":"Smartbiz","name":"Dennis Lopez","email":"dnnis.lpz@gmail.com","linkedIn":"https://www.linkedin.com/in/dennis-lopezsb/","campus":"LA","cohort":"40","jobTitle":"Frontend Engineer","industry":"Fintech","cities":["Seattle"]},{"company":"Smartrr","name":"Jeffrey Zheng","email":"zhengj98@outlook.com","linkedIn":"https://www.linkedin.com/in/jefzheng/","campus":"NYC","cohort":"26","jobTitle":"Software Developer","industry":"SaaS","cities":["Nashville","Riverside"]},{"company":"SmartSheet","name":"Isaiah Delgado","email":"Isaiah.del621@gmail.com","linkedIn":"https://www.linkedin.com/in/isaiahdel/","campus":"FTRI","cohort":"4","jobTitle":"Software Engineer I","industry":"Computer Hardware & Software","cities":["Irvine","Henderson","Colorado Springs","Gilbert"]},{"company":"SmartThings","name":"Samuel Carrasco","email":"Samhcarrasco@gmail.com","linkedIn":"https://www.linkedin.com/in/samuelhcarrasco","campus":"NYC","cohort":"31","jobTitle":"Associate Software Engineer","industry":"Software / Tech","cities":["Baltimore","Sรฃo Paulo"]},{"company":"Snag Films","name":"Muhammad Sheikh","email":"muhammad.sheikh93@yahoo.com","linkedIn":"https://www.linkedin.com/in/mhsheikh/","campus":"NYC","cohort":"3","jobTitle":"Software Developer","industry":"","cities":["Aurora","Fort Wayne"]},{"company":"Snap eHealth","name":"Jordan Hisel","email":"hiseljm@gmail.com","linkedIn":"https://www.linkedin.com/in/jordan-h-3b7686121/","campus":"LA","cohort":"45","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Colorado Springs","Laredo","Newark"]},{"company":"Snap Inc","name":"Christopher Guizzetti","email":"guizzettic@gmail.com","linkedIn":"https://www.linkedin.com/in/christopherguizzetti","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Entertainment","cities":["Omaha","Glendale","Mumbai","Louisville"]},{"company":"Snap Inc","name":"Madeline Doctor","email":"madelinemdoctor@gmail.com","linkedIn":"https://www.linkedin.com/in/madeline-doctor/","campus":"NYOI","cohort":"1","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Toronto","Chesapeake"]},{"company":"Snap Inc.","name":"Kirsten Yoon","email":"kirstenyoon@gmail.com","linkedIn":"https://www.linkedin.com/in/kirstenyoon","campus":"LA","cohort":"42","jobTitle":"Software Engineer","industry":"camera, social media","cities":["Miami"]},{"company":"Socialive","name":"Alexander Infante","email":"alexinfante17@gmail.com","linkedIn":"https://www.linkedin.com/in/alexander-infante/","campus":"LA","cohort":"35","jobTitle":"Platform Engineer","industry":"Video Streaming","cities":["Columbus","Cincinnati","Tokyo","Milwaukee"]},{"company":"SoftWriters","name":"Jane You","email":"janeyou94@gmail.com","linkedIn":"linkedin.com/in/janeyou94","campus":"LA / WCRI","cohort":"52","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Milwaukee","Los Angeles"]},{"company":"Sojo","name":"Irina Khafizova","email":"irinakhafi@gmail.com","linkedIn":"https://www.linkedin.com/in/irina-khafizova/","campus":"NYC / ECRI","cohort":"38","jobTitle":"Frontend software engineer","industry":"Hospitality","cities":["Glendale","Plano","Sydney","Buffalo"]},{"company":"Solera Health","name":"Joel Park","email":"Joelpark97@gmail.com","linkedIn":"https://www.linkedin.com/in/joelprkk/","campus":"NYC","cohort":"28","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Milwaukee","Miami"]},{"company":"Solid State Scientific Corporation","name":"Tadd LeRocque","email":"t.lerocque@gmail.com","linkedIn":"https://www.linkedin.com/in/taddlerocque/","campus":"NYC / ECRI","cohort":"40","jobTitle":"DevOps Software Developer","industry":"Data/Analytics/Cloud","cities":["Tokyo","Tulsa","Beijing","Henderson"]},{"company":"Solo","name":"Carly Yarnell","email":"carly.yarnell21@gmail.com","linkedIn":"https://www.linkedin.com/in/carly-yarnell/","campus":"NYC / ECRI","cohort":"32","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Wichita","Columbus"]},{"company":"Solvent","name":"Adam Seery","email":"acseery@gmail.com","linkedIn":"www.linkedin.com/in/adam-seery","campus":"NYC / ECRI","cohort":"35","jobTitle":"Software Engineer","industry":"Fintech","cities":["Tokyo","Kansas City"]},{"company":"SOMA Global","name":"Adam Moore","email":"moore76sc@gmail.com","linkedIn":"https://www.linkedin.com/in/adam-moore-se/","campus":"FTRI","cohort":"6","jobTitle":"Platform Engineer","industry":"Public Safety","cities":["Durham","Denver","Memphis"]},{"company":"Sonos","name":"Austin Andrews","email":"austinandrews@berkeley.edu","linkedIn":"https://www.linkedin.com/in/austinandrews17","campus":"FTRI","cohort":"7","jobTitle":"Release Engineer","industry":"Software / Tech","cities":["Pittsburgh","Plano","Columbus","Honolulu"]},{"company":"Sonos","name":"Alexander Nance","email":"balexn@gmail.com","linkedIn":"https://www.linkedin.com/in/balexandernance","campus":"NYC","cohort":"23","jobTitle":"Senior Software Engineer","industry":"Consumer Electronics","cities":["Las Vegas","El Paso"]},{"company":"Sonr","name":"Ian Judd","email":"Iankimjudd@gmail.com","linkedIn":"https://www.linkedin.com/in/iankjudd/","campus":"PTRI","cohort":"3","jobTitle":"Full Stack Developer","industry":"Web3","cities":["Austin"]},{"company":"Sourcepoint Technologies","name":"Adam straus","email":"a.straus1@gmail.com","linkedIn":"","campus":"NYC","cohort":"18","jobTitle":"Software Engineer","industry":"SaaS","cities":["Norfolk","Cincinnati"]},{"company":"Southern California Edison (via Sharp Decisions)","name":"Jie Yun (Catherine) Cheng","email":"chengjieyun59@gmail.com","linkedIn":"https://www.linkedin.com/in/cat-cheng/","campus":"LA","cohort":"33","jobTitle":"Sr. Full Stack Developer","industry":"Energy","cities":["Corpus Christi","Saint Paul","Memphis"]},{"company":"SparkCognition","name":"Harvey Nguyen","email":"harveynwynn@gmail.com","linkedIn":"https://www.linkedin.com/in/harveynwynn/","campus":"LA","cohort":"47","jobTitle":"Software Engineer II","industry":"Artificial intelligence","cities":["El Paso"]},{"company":"SparrowFi","name":"Alex Barbazan","email":"Agbarbazan@gmail.com","linkedIn":"","campus":"NYC","cohort":"29","jobTitle":"Software Engineer","industry":"Fintech","cities":["Cincinnati"]},{"company":"Spatial Data Logic","name":"Thomas Lukasiewicz","email":"tlukasiewicz89@gmail.com","linkedIn":"https://www.linkedin.com/feed/","campus":"NYC / ECRI","cohort":"34","jobTitle":"Software Engineer","industry":"Other","cities":["Chula Vista","Bakersfield","Oakland"]},{"company":"Spearmint","name":"Chloe Aribo","email":"chloearibo92@gmail.com","linkedIn":"https://www.linkedin.com/in/chloe-aribo/","campus":"LA","cohort":"33","jobTitle":"Senior Software Engineer","industry":"Security","cities":["Sacramento","Mexico City"]},{"company":"SpecTrust","name":"Tehya Rassman","email":"tehyaarassman@gmail.com","linkedIn":"https://www.linkedin.com/in/tehya-rassman/","campus":"FTRI","cohort":"5","jobTitle":"Software Engineer","industry":"Cybercrime","cities":["Miami"]},{"company":"Specturm","name":"Sanjay Lavingia","email":"SanjayLavingia@gmail.com","linkedIn":"https://www.linkedin.com/in/sanjay-lavingia/","campus":"LA","cohort":"38","jobTitle":"Software Engineer","industry":"Telecom","cities":["Wichita","Tokyo","Durham","Mexico City"]},{"company":"Spirent Communications","name":"Dylan Bury","email":"dylanbury@protonmail.com","linkedIn":"https://www.linkedin.com/in/dylanbury/","campus":"LA","cohort":"42","jobTitle":"Software Engineer","industry":"Telecommunications","cities":["Columbus","Arlington"]},{"company":"Splash Financial","name":"Bahram Bagherzadeh","email":"bjbagher@gmail.com","linkedIn":"https://www.linkedin.com/in/bbagher/","campus":"NYC","cohort":"15","jobTitle":"Senior Software Engineer","industry":"Finance","cities":["Seattle","Washington","Fort Worth"]},{"company":"Splunk","name":"Caroline Kimball","email":"kimballcaroline@gmail.com","linkedIn":"https://www.linkedin.com/in/kimballcaroline/","campus":"NYC / ECRI","cohort":"37","jobTitle":"Software Engineer","industry":"Security/Data Privacy","cities":["Long Beach","Milwaukee","Chandler"]},{"company":"Spotify","name":"Aaron Bart-Addison","email":"abaddison16@gmail.com","linkedIn":"https://www.linkedin.com/in/abaddison16/","campus":"NYC","cohort":"6","jobTitle":"Web Engineer II","industry":"","cities":["Mexico City","Chesapeake"]},{"company":"Spotify","name":"Amanda Flink","email":"avflinkette@gmail.com","linkedIn":"https://www.linkedin.com/in/amandaflink/","campus":"NYC","cohort":"12","jobTitle":"Senior Web Engineer","industry":"Entertainment","cities":["Laredo","Chandler","Cleveland"]},{"company":"Spotify","name":"Chris Kopcow","email":"ckopcow@gmail.com","linkedIn":"https://www.linkedin.com/in/christopherkopcow/","campus":"NYC","cohort":"21","jobTitle":"Technical Writer","industry":"Entertainment","cities":["Irvine","Kansas City","Lubbock","Mexico City"]},{"company":"Spotify","name":"Trevor Gray","email":"trevor.m.gray@outlook.com","linkedIn":"https://www.linkedin.com/mwlite/in/trev-gray","campus":"FTRI","cohort":"7","jobTitle":"Frontend Engineer","industry":"Entertainment","cities":["Sacramento"]},{"company":"Spring Health","name":"Kassandra Meyer","email":"kassandram022@gmail.com","linkedIn":"https://www.linkedin.com/in/kassandram/","campus":"LA","cohort":"31","jobTitle":"Frontend Engineer","industry":"Healthcare","cities":["Colorado Springs"]},{"company":"SpringHealth","name":"Matthew Huang","email":"matthewhuang24@gmail.com","linkedIn":"https://www.linkedin.com/in/matthew-huang/","campus":"LA","cohort":"46","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Santa Ana","Indianapolis"]},{"company":"Spruce","name":"Edward Ryan","email":"15ryane@gmail.com","linkedIn":"https://www.linkedin.com/in/edward-ryan/","campus":"LA","cohort":"27","jobTitle":"Software Engineer","industry":"Hospitality Services","cities":["Toronto"]},{"company":"SPS Health","name":"Mark Teets","email":"markteets@gmail.com","linkedIn":"https://www.linkedin.com/in/markteets/","campus":"FTRI / CTRI","cohort":"15","jobTitle":"Application Developer","industry":"Healthtech/Healthcare","cities":["Dallas","Austin","Aurora","Philadelphia"]},{"company":"Spur Reply","name":"Jeffrey Pettis","email":"jeffrey.pettis@gmail.com","linkedIn":"https://www.linkedin.com/in/jeffreypettis/","campus":"PTRI","cohort":"9","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Long Beach","Lincoln"]},{"company":"Square","name":"Christopher Akinrinade","email":"chris.akinrinade@gmail.com","linkedIn":"https://www.linkedin.com/in/christopher-akinrinade/","campus":"NYC","cohort":"22","jobTitle":"Software Engineer","industry":"Fintech","cities":["Durham","Omaha","St. Louis"]},{"company":"Square","name":"Juan Espinoza","email":"espinozajuan562@gmail.com","linkedIn":"https://www.linkedin.com/in/espinoza-juan/","campus":"LA","cohort":"30","jobTitle":"Software Engineer","industry":"Fintech","cities":["Toledo"]},{"company":"Square Root, Inc.","name":"Angel Vega","email":"angelvega85@gmail.com","linkedIn":"https://www.linkedin.com/in/angel-e-vega","campus":"LA","cohort":"29","jobTitle":"Software Engineer","industry":"Information Technology","cities":["Norfolk","Minneapolis"]},{"company":"STA Group","name":"Gabriel Machado","email":"bielchristo@hotmail.com","linkedIn":"","campus":"LA","cohort":"42","jobTitle":"UI Engineer","industry":"Consulting","cities":["Madison","Dallas","Sacramento"]},{"company":"Stacked Invest","name":"Ross Lamerson","email":"ross.lamerson@gmail.com","linkedIn":"https://www.linkedin.com/in/lamerson28/","campus":"FTRI","cohort":"5","jobTitle":"Software Engineer - Front End","industry":"Cryptocurrency / Fintech","cities":["Charlotte","Kansas City"]},{"company":"Standard Bots","name":"Arshia Masih","email":"arshia.masih@gmail.com","linkedIn":"https://www.linkedin.com/in/arshiamasih/","campus":"LA","cohort":"29","jobTitle":"Software Engineer","industry":"Robotics / Industrial Automation","cities":["Raleigh","Santa Ana","Buffalo"]},{"company":"Starbucks","name":"Sam Carter","email":"sammahcarter@gmail.com","linkedIn":"https://linkedin.com/in/cartersamj","campus":"LA / WCRI","cohort":"50","jobTitle":"Software Engineer","industry":"Restaurant, Food, and Beverage","cities":["Minneapolis","Madison","Toledo","Milwaukee"]},{"company":"Stardust","name":"James Tu","email":"tu.james@gmail.com","linkedIn":"https://www.linkedin.com/in/jamestu2000/","campus":"LA","cohort":"21","jobTitle":"Full Stack Engineer","industry":"","cities":["Tulsa","Tampa"]},{"company":"State Farm","name":"James Manahan","email":"manahanjames@yahoo.com","linkedIn":"https://www.linkedin.com/in/jamesmanahan/","campus":"LA","cohort":"34","jobTitle":"Software Developer","industry":"Insurance","cities":["Wichita","Oklahoma City","Tulsa"]},{"company":"Steel Perlot","name":"Morris Kolman","email":"morristskolman@gmail.com","linkedIn":"linkedin.com/in/morrykolman","campus":"NYOI","cohort":"2","jobTitle":"Initiative Lead: Social Media","industry":"Software / Tech","cities":["London","Chula Vista","Mexico City","Virginia Beach"]},{"company":"SteelHouse","name":"Jordan Betzer","email":"jordanbetzer@gmail.com","linkedIn":"https://www.linkedin.com/in/jordanbetzer/","campus":"LA","cohort":"26","jobTitle":"Software Engineer - Backend","industry":"Healthcare","cities":["Virginia Beach","Winston-Salem","Fort Worth"]},{"company":"SteelHouse","name":"Taylor Burrington","email":"taylor.burrington@gmail.com","linkedIn":"","campus":"LA","cohort":"30","jobTitle":"Software Engineer","industry":"Ad Tech","cities":["Durham","Lubbock","New York"]},{"company":"Stem Disintermedia Inc.","name":"Mia Huynh","email":"mia@stem.is","linkedIn":"https://www.linkedin.com/in/miamyhuynh/","campus":"LA","cohort":"22","jobTitle":"Software Engineer","industry":"","cities":["Minneapolis","Garland"]},{"company":"Storyblocks","name":"Eric Gomez","email":"Ergomez0201@gmail.com","linkedIn":"https://www.linkedin.com/in/eric-gomez","campus":"LA / WCRI","cohort":"48","jobTitle":"Senior Software Engineer","industry":"Software / Tech","cities":["Madison","Irving"]},{"company":"Streamlit","name":"Sam Haar","email":"samhaar@gmail.com","linkedIn":"https://www.linkedin.com/in/samhaar/","campus":"NYC","cohort":"21","jobTitle":"Software Engineer","industry":"ML / Data / Open Source","cities":["Phoenix","Glendale","Oklahoma City"]},{"company":"Stride","name":"Kaitlin Zhang","email":"Kaitlin.Zhang@owasp.org","linkedIn":"https://www.linkedin.com/in/kaizengrowth/","campus":"FTRI","cohort":"9","jobTitle":"Software Engineer, Writer/Instructor","industry":"Software / Tech","cities":["Chesapeake","Toledo","Virginia Beach","Omaha"]},{"company":"Stride Health, Inc.","name":"Ben Kwak","email":"benjamin.h.kwak@gmail.com","linkedIn":"https://www.linkedin.com/in/ben-kwak/","campus":"LA","cohort":"37","jobTitle":"Software Engineer, Full Stack","industry":"Insurance","cities":["Norfolk"]},{"company":"Strider Technologies ","name":"Timothy Chang ","email":"timchang87@gmail.com","linkedIn":"https://www.linkedin.com/in/timchang87","campus":"PTRI","cohort":"9","jobTitle":"Software Engineer","industry":"Other","cities":["Newark","Plano","North Las Vegas","Kansas City"]},{"company":"Stroz Friedberg","name":"Madalyn Baehre","email":"mmbaehre@gmail.com","linkedIn":"https://www.linkedin.com/in/madalynbaehre/","campus":"LA","cohort":"20","jobTitle":"Full-Stack Software Developer","industry":"","cities":["Phoenix","Charlotte","Las Vegas","Glendale"]},{"company":"Stuff","name":"Joseph Toledano","email":"joseph.a.toledano@gmail.com","linkedIn":"https://www.linkedin.com/in/joetoledano/","campus":"NYC","cohort":"23","jobTitle":"Software Developer","industry":"On-Demand Work","cities":["Sacramento","Garland"]},{"company":"Stuller, Inc.","name":"Sarah Moosa","email":"14sbethm@gmail.com","linkedIn":"https://linkedin.com/in/sarah-e-moosa","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Full Stack Developer","industry":"Retail","cities":["Milwaukee","Las Vegas","Denver","Detroit"]},{"company":"Stylitics","name":"Tania Lind","email":"tania.o.lind@gmail.com","linkedIn":"https://www.linkedin.com/in/lind-tania/","campus":"LA","cohort":"39","jobTitle":"Senior Frontend Engineer","industry":"Fashion","cities":["Mesa","Seattle","Sydney","Atlanta"]},{"company":"Suki AI","name":"Edward Shei","email":"edwardshei@gmail.com","linkedIn":"https://www.linkedin.com/in/edwardshei/","campus":"LA","cohort":"39","jobTitle":"Software Engineer","industry":"Medical Transcription","cities":["Mesa","Denver","Berlin"]},{"company":"Surfside","name":"Alec Below","email":"alecbelow@gmail.com","linkedIn":"","campus":"NYC","cohort":"17","jobTitle":"Software Engineer - Platform Integration","industry":"Advertising","cities":["Wichita","Madison"]},{"company":"Suuchi.com","name":"David Kim","email":"davidkim024@gmail.com","linkedIn":"https://www.linkedin.com/in/davidkim024/","campus":"NYC","cohort":"11","jobTitle":"Senior Full Stack Engineer","industry":"Manufacturing","cities":["Indianapolis"]},{"company":"Sweetgreen","name":"Emilia Brizuela-Nothaft","email":"emiliacarmel@gmail.com","linkedIn":"https://www.linkedin.com/in/emilia-brizuela-nothaft/","campus":"LA","cohort":"26","jobTitle":"Software Engineer","industry":"Food","cities":["Austin","Omaha","Norfolk"]},{"company":"Sweetgreen","name":"Melody Chai","email":"melodychai2@gmail.com","linkedIn":"https://www.linkedin.com/in/melodychai/","campus":"LA","cohort":"26","jobTitle":"Engineer I","industry":"Fast Casual Dining","cities":["Irvine","Newark","Arlington","Wichita"]},{"company":"Swisher International, Inc","name":"John Howell","email":"tsjohnnyh@gmail.com","linkedIn":"https://www.linkedin.com/in/johnny-r-howell/","campus":"FTRI / CTRI","cohort":"13","jobTitle":"eCommerce Development Supervisor","industry":"Other","cities":["Seattle","Garland"]},{"company":"Swoon","name":"Tyler Wilson","email":"wilsontyler95@gmail.com","linkedIn":"https://www.linkedin.com/in/twilsontech","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Bakersfield","Aurora","Toledo","Baltimore"]},{"company":"Synapse FI","name":"Mike Huynh","email":"mhuynh517@gmail.com","linkedIn":"https://www.linkedin.com/in/mikehuynh28/","campus":"LA","cohort":"28","jobTitle":"Front-End Engineer II","industry":"Fintech","cities":["Toronto","Newark","Beijing","Mesa"]},{"company":"T-Mobile","name":"Khang Sabre-Nguyen","email":"Klsabren.7@gmail.com","linkedIn":"https://www.linkedin.com/in/khang-sabre-nguyen/","campus":"PTRI","cohort":"7","jobTitle":"Software Engineer","industry":"Telecommunications","cities":["San Francisco","St. Louis","Beijing","San Antonio"]},{"company":"T-mobile","name":"Miaowen Zeng","email":"zmw0525@gmail.com","linkedIn":"www.linkedin.com/in/miaowen-zeng","campus":"FTRI / CTRI","cohort":"7","jobTitle":"Associate Software Engineer","industry":"Telecommunications","cities":["Fort Worth"]},{"company":"T. Rowe Price","name":"Liam Fontes","email":"liamfontes1244@gmail.com","linkedIn":"https://www.linkedin.com/in/liam-fontes/","campus":"NYC","cohort":"28","jobTitle":"Associate Software Engineer","industry":"Fintech","cities":["Stockton","Louisville","Mesa"]},{"company":"T. Rowe Price","name":"Robert Du","email":"robert.c.du@gmail.com","linkedIn":"https://www.linkedin.com/in/robert-du/","campus":"NYC","cohort":"26","jobTitle":"Mid-Level Software Engineer (contract-to-hire)","industry":"Fintech","cities":["Irvine","Gilbert","Reno","Atlanta"]},{"company":"Tailored Brands","name":"Viet Nguyen","email":"n.vietqb@gmail.com","linkedIn":"https://www.linkedin.com/in/viet-nguyen-2280491b2/","campus":"LA","cohort":"45","jobTitle":"UI Engineer","industry":"Retail","cities":["Toronto","Scottsdale"]},{"company":"Take Command Health","name":"Katie Janzen","email":"katiekennerjanzen@gmail.com","linkedIn":"https://www.linkedin.com/in/katie-janzen/","campus":"NYC","cohort":"32","jobTitle":"Front End Developer","industry":"Insurance","cities":["Sacramento","Stockton","San Jose","Buffalo"]},{"company":"Talage","name":"Parker Hutcheson","email":"pdhutcheson@gmail.com","linkedIn":"https://www.linkedin.com/in/parkerhutcheson/","campus":"FTRI","cohort":"4","jobTitle":"Senior Software Engineer","industry":"Insurtech","cities":["Irvine","Winston-Salem","London"]},{"company":"Tallied","name":"Abeer Faizan","email":"abeerfaizan@gmail.com","linkedIn":"https://www.linkedin.com/in/abeerfaizan/","campus":"LA","cohort":"47","jobTitle":"Software Engineer 2","industry":"Financial Services & Digital Payments","cities":["Arlington"]},{"company":"Tandem Chat (Tandem Communications Inc.)","name":"John Jongsun Suh","email":"john.jongsun.suh@pm.me","linkedIn":"https://linkedin.com/in/john-jongsun-suh","campus":"LA","cohort":"44","jobTitle":"Software Engineer","industry":"Communication/Productivity Software","cities":["London"]},{"company":"Tapestry","name":"Natalie Umanzor","email":"umanzor2949@gmail.com","linkedIn":"https://www.linkedin.com/in/nmczormick/","campus":"NYC","cohort":"13","jobTitle":"Software Engineer","industry":"E-Commerce","cities":["Plano","Columbus","Norfolk","St. Petersburg"]},{"company":"Target","name":"Courtney Doss","email":"777.catalyst@gmail.com","linkedIn":"","campus":"LA","cohort":"40","jobTitle":"Software Engineer","industry":"Retail","cities":["Tulsa","Glendale","Newark","Honolulu"]},{"company":"Tatari","name":"Natalie Klein","email":"natklein3@gmail.com","linkedIn":"https://www.linkedin.com/in/nataliesklein/","campus":"LA","cohort":"28","jobTitle":"Software Engineer","industry":"TV ads","cities":["Beijing","Anchorage","Las Vegas"]},{"company":"TaxNow","name":"Tanner Lyon","email":"Tannerhlyon@gmail.com","linkedIn":"https://www.linkedin.com/in/tannerhlyon","campus":"LA / WCRI","cohort":"51","jobTitle":"Software Engineer","industry":"Business Tech/Enterprise Tech","cities":["Nashville","Los Angeles","Jersey City"]},{"company":"TaxSlayer","name":"Katherine Marrow","email":"kmcromer1@gmail.com","linkedIn":"https://www.linkedin.com/in/katherine-marrow/","campus":"PTRI","cohort":"9","jobTitle":"Full Stack Developer","industry":"Other","cities":["El Paso"]},{"company":"Teachers Pay Teachers","name":"Courtney Kwong","email":"cwkwong95@gmail.com","linkedIn":"https://www.linkedin.com/in/courtneywkwong/","campus":"NYC","cohort":"13","jobTitle":"Full Stack Engineer","industry":"Media","cities":["Columbus"]},{"company":"Tech Holding","name":"Pablo Lee","email":"lee.pablo.e@gmail.com","linkedIn":"https://linkedin.com/in/pablo-lee/","campus":"LA","cohort":"24","jobTitle":"Software Engineer","industry":"Media & Advertisement","cities":["Aurora","Chesapeake"]},{"company":"TechEmpower","name":"Nick Stillman","email":"nick.edward.stillman@gmail.com","linkedIn":"https://www.linkedin.com/in/nick-e-stillman/","campus":"NYC","cohort":"24","jobTitle":"Programmer I","industry":"Software Development/Consulting","cities":["Sacramento","Santa Ana","Los Angeles"]},{"company":"Technergetics","name":"Cody Schexnider","email":"codydschexnider@gmail.com","linkedIn":"https://www.linkedin.com/in/schexnider/","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Junior Software Engineer","industry":"Software / Tech","cities":["Chandler","San Jose","Stockton","Madison"]},{"company":"Technergetics","name":"Angel Giron","email":"angel.c.giron1@gmail.con","linkedIn":"https://www.linkedin.com/in/acgiron/","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Software Engineer","industry":"Other","cities":["Kansas City","Sydney"]},{"company":"TEKsystems for AMEX","name":"Connor Rose Delisle","email":"connorrose.delisle@gmail.com","linkedIn":"https://www.linkedin.com/in/connorrosedelisle/","campus":"LA","cohort":"37","jobTitle":"Developer","industry":"Banking","cities":["Memphis","Portland","Paris"]},{"company":"Teleport","name":"Cole Styron","email":"colestyron@gmail.com","linkedIn":"https://www.linkedin.com/in/cole-styron/","campus":"LA","cohort":"40","jobTitle":"Software Engineer II","industry":"Tech","cities":["Columbus","Mesa","Henderson"]},{"company":"Tempus","name":"Eterna tsai","email":"One.eternity@gmail.com","linkedIn":"https://www.linkedin.com/in/eterna/","campus":"NYC","cohort":"7","jobTitle":"Software engineer","industry":"","cities":["Chesapeake","Irving"]},{"company":"Tend","name":"Christopher Johnson","email":"cjbeats@gmail.com","linkedIn":"https://www.linkedin.com/in/thecjjohnson/","campus":"LA","cohort":"39","jobTitle":"Junior Software Developer","industry":"Dentistry","cities":["Fort Worth"]},{"company":"Terminus","name":"Jonathan Ascencio","email":"Jonascencio1@gmail.com","linkedIn":"https://www.linkedin.com/in/jonascencio/","campus":"LA","cohort":"39","jobTitle":"Software Engineer","industry":"Marketing Tevh","cities":["Oakland","Indianapolis"]},{"company":"The Action Network","name":"Diana Li","email":"dianalicarrasco@gmail.com","linkedIn":"https://www.linkedin.com/in/dianalicarrasco/","campus":"NYC","cohort":"31","jobTitle":"Software Engineer II","industry":"Entertainment","cities":["Anaheim"]},{"company":"The Action Network","name":"Mahmoud Hmaidi","email":"mhmaidi789@gmail.com","linkedIn":"https://www.linkedin.com/in/mahmoud-hmaidi-mo/","campus":"LA","cohort":"42","jobTitle":"Software Engineer II","industry":"Entertainment","cities":["Baltimore","Virginia Beach","Sacramento","Colorado Springs"]},{"company":"The Charles Stark Draper Laboratory, Inc.","name":"Kelsey Flynn","email":"flynn.kelseyelizabeth@gmail.com","linkedIn":"www.linkedin.com/in/kelseyeflynn/","campus":"PTRI","cohort":"3","jobTitle":"Member of Technical Staff in Fullstack Web Group","industry":"Research","cities":["Jacksonville","Philadelphia"]},{"company":"The Coates Group","name":"Brandon Tran","email":"btran140@gmail.com","linkedIn":"https://www.linkedin.com/in/btran140","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Typescript Full Stack Engineer","industry":"Software / Tech","cities":["Lubbock"]},{"company":"The Cru","name":"Brooke Luro","email":"lurob@me.com","linkedIn":"https://www.linkedin.com/in/brooke-luro-4413046a/","campus":"NYC","cohort":"22","jobTitle":"Software Engineer","industry":"Professional Training & Coaching","cities":["Austin","Kansas City"]},{"company":"The Edge Treatment Center","name":"Joey Ma","email":"joeyma@gmail.com","linkedIn":"https://www.linkedin.com/in/joeyma/","campus":"LA / WCRI","cohort":"47","jobTitle":"Web Developer","industry":"Healthcare","cities":["Durham","Minneapolis","San Diego"]},{"company":"The Farm Project","name":"Quoc Bui","email":"quocbui@gmail.com","linkedIn":"https://www.linkedin.com/in/buiquoc/","campus":"LA","cohort":"26","jobTitle":"Lead Web UI Engineer?","industry":"Telecommunications","cities":["Lubbock"]},{"company":"The Farmerโ€™s Dog","name":"Willem Rosenthal","email":"willemrosenthal@gmail.com","linkedIn":"https://www.linkedin.com/in/willem-rosenthal","campus":"NYOI","cohort":"1","jobTitle":"Software Engineer III","industry":"Other","cities":["Toronto"]},{"company":"the guarantors","name":"Dmitriy Levy","email":"dmitriylevy01@gmail.com","linkedIn":"https://www.linkedin.com/in/dmitriy-levy/","campus":"NYC","cohort":"12","jobTitle":"Software Engineer","industry":"Fintech","cities":["Sacramento","Reno","Madison"]},{"company":"The Home Depot","name":"Eric Han","email":"eric.j.h92@gmail.com","linkedIn":"https://www.linkedin.com/in/eric-j-han/","campus":"LA / WCRI","cohort":"48","jobTitle":"Front-End Developer","industry":"Retail","cities":["San Francisco","El Paso"]},{"company":"The Home Depot","name":"Max Nikitin","email":"teachandtravelcn@gmail.com","linkedIn":"https://www.linkedin.com/in/maxnikitin23/","campus":"LA","cohort":"40","jobTitle":"Full Stack Software Engineer","industry":"Construction/retail","cities":["Laredo","Milwaukee"]},{"company":"The New York Times","name":"Karl Eden","email":"karl94e@gmail.com","linkedIn":"www.linkedin.com/in/karleden","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Software Engineer","industry":"News/Entertainment/Streaming Platforms","cities":["Columbus","Chesapeake"]},{"company":"The New Yorker","name":"Julien Devlin","email":"juliendevlin@gmail.com","linkedIn":"https://www.linkedin.com/in/juliendevlin/","campus":"NYC / ECRI","cohort":"38","jobTitle":"Software Developer","industry":"News/Entertainment/Streaming Platforms","cities":["Omaha","Tulsa"]},{"company":"The Perlman Clinic","name":"Louis Sheid","email":"louisxsheid@gmail.com","linkedIn":"https://www.linkedin.com/in/louisxsheid/","campus":"LA","cohort":"36","jobTitle":"Full Stack Developer","industry":"Healthcare","cities":["Laredo","Mumbai","Chicago"]},{"company":"The Prospector Theater","name":"Kelly Cuevas","email":"cuev73@live.com","linkedIn":"https://www.linkedin.com/in/kelly-cuevas/","campus":"NYC / ECRI","cohort":"36","jobTitle":"Lead Frontend Engineer","industry":"Social Impact/Nonprofit","cities":["Philadelphia"]},{"company":"The Trevor Project / Tecnolochicas Pro","name":"Miranda Jaramillo Morales","email":"mirandajaramillomorales@gmail.com","linkedIn":"https://www.linkedin.com/in/miranda-jaramillo/","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Software Engineer II / Software Engineering Mentor","industry":"Software / Tech","cities":["Reno","Boston","Denver","Long Beach"]},{"company":"The Walt Disney Company","name":"Gabriel Machado","email":"bielchristo@hotmail.com","linkedIn":"https://www.linkedin.com/in/bielchristo/","campus":"LA","cohort":"41","jobTitle":"Software Engineer","industry":"Entertainment","cities":["Atlanta","North Las Vegas","Virginia Beach"]},{"company":"The Walt Disney Company","name":"Ryan London","email":"ryel590@gmail.com","linkedIn":"https://www.linkedin.com/in/ryanlondon/","campus":"LA","cohort":"18","jobTitle":"Senior Software Engineer","industry":"IT","cities":["Lincoln"]},{"company":"The Walt Disney Company","name":"Shane Taylor","email":"shaneallantaylor@gmail.com","linkedIn":"https://www.linkedin.com/in/shane-allan-taylor/","campus":"LA","cohort":"27","jobTitle":"Software Engineer","industry":"Entertainment/Media","cities":["Beijing","Winston-Salem","Buffalo","Orlando"]},{"company":"The Walt Disney Company","name":"Yurii Shchyrba","email":"yurashchyrba@gmail.com","linkedIn":"https://www.linkedin.com/in/yuriishchyrba/","campus":"NYC","cohort":"31","jobTitle":"Software Engineer II","industry":"Software / Tech","cities":["Dallas","Tampa"]},{"company":"The Washington Post","name":"Christelle Desire","email":"Cdesire20@gmail.com","linkedIn":"https://www.linkedin.com/in/christelle-desire/","campus":"LA","cohort":"39","jobTitle":"Full stack engineer","industry":"Newsroom","cities":["Dallas","Arlington","Chandler","Denver"]},{"company":"The Wing","name":"Xaria Kirtikar","email":"xariak91@gmail.com","linkedIn":"https://www.linkedin.com/in/xaria/","campus":"NYC","cohort":"13","jobTitle":"Software Engineer","industry":"Co-working spaces","cities":["Nashville","Madison","Mesa","Albuquerque"]},{"company":"The X Company","name":"Roy Quintana","email":"rolandquintana1991@gmail.com","linkedIn":"https://www.linkedin.com/in/royquintana/","campus":"LA","cohort":"28","jobTitle":"Senior Software Engineer","industry":"Real Estate","cities":["Los Angeles"]},{"company":"TheMuse","name":"Franklin pinnock","email":"pinnockf@gmail.com","linkedIn":"https://www.linkedin.com/in/pinnockf/","campus":"NYC","cohort":"9","jobTitle":"Full-Stack Engineer","industry":"Robotics","cities":["Tampa"]},{"company":"Thomson Reuters","name":"Li Cheng","email":"lilybearcheng@gmail.com","linkedIn":"https://www.linkedin.com/in/li-cheng-76890540/","campus":"LA / WCRI","cohort":"50","jobTitle":"Integration Engineer","industry":"IT Services","cities":["Wichita","Arlington","Los Angeles"]},{"company":"ThreeKit","name":"Alison Fay","email":"aliglass13@gmail.com","linkedIn":"https://www.linkedin.com/in/alison-fay/","campus":"NYC","cohort":"31","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Sรฃo Paulo","Saint Paul","Fresno"]},{"company":"Thriveworks","name":"Alma Eyre","email":"aselunar@gmail.com","linkedIn":"https://www.linkedin.com/in/alma-eyre/","campus":"NYC / ECRI","cohort":"30","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Chesapeake","Indianapolis"]},{"company":"Thriveworks","name":"Charissa Ramirez","email":"chawissa@gmail.com","linkedIn":"https://linkedin.com/in/chawissa","campus":"NYC / ECRI","cohort":"32","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Las Vegas","Orlando","Houston"]},{"company":"Ticket Bridge","name":"Travis Frank","email":"travis@travismfrank.com","linkedIn":"https://www.linkedin.com/in/travis-m-frank/","campus":"NYC","cohort":"20","jobTitle":"Founder","industry":"Live Events","cities":["Omaha","Glendale","St. Petersburg"]},{"company":"TikTok","name":"James Cross","email":"jamespvcross@gmail.com","linkedIn":"https://www.linkedin.com/in/james-p-cross1/","campus":"NYC","cohort":"28","jobTitle":"Software Engineer","industry":"Social Media","cities":["Virginia Beach"]},{"company":"TikTok","name":"Jason Speare","email":"jcspeare@gmail.com","linkedIn":"https://www.linkedin.com/in/jason-speare","campus":"LA","cohort":"41","jobTitle":"Site Reliability Engineer","industry":"Video Social Networking","cities":["Toronto"]},{"company":"Tinder","name":"Harrison Nam","email":"harrison.j.nam@gmail.com","linkedIn":"https://www.linkedin.com/in/harrison-nam/","campus":"LA","cohort":"46","jobTitle":"Software Engineer","industry":"Social","cities":["Fresno"]},{"company":"Tinder","name":"Harrison Nam","email":"harrison.j.nam@gmail.com","linkedIn":"https://www.linkedin.com/in/harrison-nam/","campus":"LA","cohort":"46","jobTitle":"Software Engineer II, Web Development","industry":"Dating","cities":["St. Louis"]},{"company":"Tinder","name":"Serge Vartanov","email":"vartanov.s@gmail.com","linkedIn":"https://www.linkedin.com/in/svartanov/","campus":"LA","cohort":"24","jobTitle":"Senior Backend Engineer","industry":"","cities":["Long Beach","Buffalo","Honolulu"]},{"company":"Tixologi","name":"Mark Nichting","email":"mtnichting@gmail.com","linkedIn":"https://www.linkedin.com/in/mark-nichting/","campus":"LA / WCRI","cohort":"53","jobTitle":"Frontend Engineer","industry":"Blockchain/Web3","cities":["St. Louis"]},{"company":"Toast Inc","name":"Denys Dekhtiarenko","email":"dekhtiarenko.d@gmail.com","linkedIn":"https://www.linkedin.com/in/denysdekhtiarenko/","campus":"NYC","cohort":"18","jobTitle":"Software Engineer II","industry":"Restaurant software","cities":["Gilbert","Fresno","Kansas City"]},{"company":"TodayTix Group","name":"Xiao Li","email":"lixtong@gmail.com","linkedIn":"https://www.linkedin.com/in/lixiaotong/","campus":"PTRI","cohort":"2","jobTitle":"Associate Software Engineer","industry":"Entertainment","cities":["Sacramento"]},{"company":"TomoCredit","name":"Ramtin Khoee","email":"Ramtin.khoee@gmail.com","linkedIn":"https://www.linkedin.com/mwlite/in/ramtinkhoee","campus":"LA","cohort":"41","jobTitle":"Software Engineer","industry":"Fintech","cities":["Henderson"]},{"company":"Topologe (working with the Air Force)","name":"Joseph Michael Corrado","email":"joeyycorrss@gmail.com","linkedIn":"https://www.linkedin.com/in/josephmichaelcorrado/","campus":"NYC","cohort":"15","jobTitle":"Senior Software Engineer","industry":"Web Dev for Air Force","cities":["San Francisco"]},{"company":"Tortus","name":"Victor To","email":"victorto123@gmail.com","linkedIn":"https://www.linkedin.com/in/victorto1/","campus":"NYC","cohort":"19","jobTitle":"Software Engineer","industry":"Real Estate Tech","cities":["Arlington","Mexico City","Boston","St. Petersburg"]},{"company":"Toucan","name":"Isaac Durand","email":"isaac.durand@gmail.com","linkedIn":"https://www.linkedin.com/in/isaacdurand","campus":"LA","cohort":"5","jobTitle":"Senior Engineer II","industry":"","cities":["Phoenix"]},{"company":"Toucan","name":"Jane Kim","email":"jane.minhyung.kim@gmail.com","linkedIn":"https://www.linkedin.com/in/janeminhyungkim/","campus":"NYC","cohort":"22","jobTitle":"Software Engineer","industry":"Education tools","cities":["Riverside","Berlin","Anchorage","Baltimore"]},{"company":"Toyota","name":"Melanie Forbes","email":"mforbes12@gmail.com","linkedIn":"https://www.linkedin.com/in/melanie-forbes-/","campus":"FTRI / CTRI","cohort":"12","jobTitle":"Software Engineer","industry":"Automotive","cities":["Honolulu","Beijing","Virginia Beach","Lincoln"]},{"company":"Toyota","name":"Emily Hoang","email":"ethlin4@gmail.com","linkedIn":"https://www.linkedin.com/in/emilyhoang","campus":"FTRI / CTRI","cohort":"14","jobTitle":"Software Engineer","industry":"Automotive","cities":["Beijing","Chicago","Washington"]},{"company":"TradeAlly","name":"Adepeju Orefejo","email":"adepeju.kayode@gmail.com","linkedIn":"https://www.linkedin.com/adepeju-orefejo","campus":"PTRI","cohort":"7","jobTitle":"Backend Engineer","industry":"Software / Tech","cities":["North Las Vegas","Arlington"]},{"company":"Travelers Companies Inc.","name":"Dylan Li","email":"dyli797@gmail.com","linkedIn":"https://www.linkedin.com/in/dli107/","campus":"PTRI","cohort":"2","jobTitle":"Software Engineer","industry":"Insurance","cities":["North Las Vegas","Chandler","Kansas City"]},{"company":"Trend micro","name":"Daniel Balistocky","email":"thestinx@gmail.com","linkedIn":"https://www.linkedin.com/in/dannyb1983","campus":"LA","cohort":"41","jobTitle":"Software engineer","industry":"Web security","cities":["San Francisco"]},{"company":"TreviPay","name":"Utkarsh Uppal","email":"utkarshuppal@gmial.com","linkedIn":"https://www.linkedin.com/in/utkarshuppal/","campus":"LA / WCRI","cohort":"55","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Henderson"]},{"company":"Tribe Labs Inc.","name":"Alexander Landeros","email":"alexander.landeros1@gmail.com","linkedIn":"https://www.linkedin.com/in/alexander-landeros/","campus":"LA","cohort":"38","jobTitle":"Frontend Software Engineer","industry":"Communication Tech","cities":["San Jose","Pittsburgh","Anchorage"]},{"company":"Trineo","name":"Rebecca Viner","email":"rtviner@gmail.com","linkedIn":"https://www.linkedin.com/in/rtviner/","campus":"LA","cohort":"39","jobTitle":"Software Engineer II","industry":"Software Consultancy","cities":["Nashville"]},{"company":"Tripadvisor","name":"Jake Bradbeer","email":"jakebradbeer@gmail.com","linkedIn":"https://www.linkedin.com/in/jacobbradbeer/","campus":"LA","cohort":"49","jobTitle":"Software Engineer","industry":"Other","cities":["Reno","Virginia Beach","San Antonio","Kansas City"]},{"company":"TripleLift","name":"Arron Nestor","email":"arronnestor@gmail.com","linkedIn":"https://www.linkedin.com/in/arron-nestor/","campus":"PTRI","cohort":"2","jobTitle":"Cloud Infrastructure Engineer","industry":"Ad-Tech","cities":["North Las Vegas","Sydney","Tulsa","Austin"]},{"company":"Triplelift","name":"Kia Colbert","email":"colber16@gmail.com","linkedIn":"https://www.linkedin.com/in/kiacolbert/","campus":"NYC","cohort":"9","jobTitle":"Engineer I","industry":"Social Impact","cities":["Scottsdale","Sรฃo Paulo","Buffalo"]},{"company":"True Tickets","name":"Alesi-Andreya Ladas","email":"alesiladas@gmail.com","linkedIn":"https://www.linkedin.com/in/alesiladas/","campus":"NYC","cohort":"3","jobTitle":"Software Engineer","industry":"","cities":["Long Beach","Detroit","Jacksonville","Newark"]},{"company":"TrueCar","name":"Calvin Cao","email":"jtcao430@gmail.com","linkedIn":"https://www.linkedin.com/in/calvincao9/","campus":"LA","cohort":"48","jobTitle":"Software Engineer II","industry":"Marketing","cities":["Buffalo","Toledo","Plano","Chesapeake"]},{"company":"TrueCar","name":"Zac Haluza","email":"zac.haluza@gmail.com","linkedIn":"https://www.linkedin.com/in/zhaluza/","campus":"NYC","cohort":"17","jobTitle":"Software Engineer","industry":"Automotive","cities":["North Las Vegas","St. Petersburg","Madison","Fresno"]},{"company":"trueface.ai","name":"Sam Siye Yu","email":"yudataguy@gmail.com","linkedIn":"https://www.linkedin.com/in/yusiye/","campus":"LA","cohort":"27","jobTitle":"full stack developer","industry":"computer vision","cities":["Oklahoma City","Tampa"]},{"company":"Truepill","name":"Justin Baik","email":"bij3377@gmail.com","linkedIn":"https://www.linkedin.com/in/justin-baik/","campus":"LA","cohort":"42","jobTitle":"Associate Software Engineer","industry":"Health Tech","cities":["Lincoln","Kansas City","Plano"]},{"company":"Truepill","name":"Jonah Stewart","email":"jonahlstewart@gmail.com","linkedIn":"https://www.linkedin.com/in/jonahlstewart/","campus":"NYC","cohort":"22","jobTitle":"Associate Software Engineer - Backend","industry":"Healthtech","cities":["Oakland","Winston-Salem","Laredo","St. Louis"]},{"company":"Turbonomic","name":"Tyler Hurtt","email":"TylerAdamHurtt@gmail.com","linkedIn":"https://www.linkedin.com/in/TylerHurtt/","campus":"LA","cohort":"34","jobTitle":"Senior Software Engineer","industry":"Cloud & Network Monitoring","cities":["Lubbock","Nashville","Virginia Beach","Sรฃo Paulo"]},{"company":"Twilio","name":"Christopher Docuyanan","email":"Christophejd@gmail.com","linkedIn":"https://www.linkedin.com/in/cjdocuyanan/","campus":"LA","cohort":"40","jobTitle":"Software Engineer (Personas R&D)","industry":"Communications","cities":["Atlanta","Henderson","Fresno"]},{"company":"Twitch","name":"Alice Wong","email":"alice.sky.wong@gmail.com","linkedIn":"https://www.linkedin.com/in/wong-alice/","campus":"NYC","cohort":"11","jobTitle":"Frontend Engineer","industry":"IoT","cities":["Buffalo","Oakland","Fort Worth"]},{"company":"Two Barrels LLC","name":"Ryan Rambaran","email":"ryanrambaran.fl@gmail.com","linkedIn":"https://www.linkedin.com/in/ryan-rambaran/","campus":"PTRI","cohort":"4","jobTitle":"Front End Developer","industry":"Software / Tech","cities":["Scottsdale","Houston","Glendale"]},{"company":"Two Six Labs","name":"Kevin Nam","email":"Kevinjnam@gmail.com","linkedIn":"","campus":"LA","cohort":"31","jobTitle":"Software Engineer - Front End","industry":"Cybersecurity","cities":["Jacksonville","Pittsburgh"]},{"company":"TwoSix Labs","name":"Darren Napier","email":"darren.napier5@gmail.com","linkedIn":"https://www.linkedin.com/in/darrencnapier/","campus":"LA","cohort":"31","jobTitle":"Jr. Frontend Developer","industry":"Government","cities":["Miami","New York"]},{"company":"TwoThirtySix Labs","name":"Tayvon Wright","email":"tayvonwright@gmail.com","linkedIn":"https://www.linkedin.com/in/tayvon-wright/","campus":"NYC","cohort":"10","jobTitle":"Backend Engineer","industry":"Crypto","cities":["Fort Wayne"]},{"company":"Uber","name":"Michael Noah","email":"mnoah1@gmail.com","linkedIn":"https://www.linkedin.com/in/mnoah/","campus":"NYC","cohort":"31","jobTitle":"Software Engineer II","industry":"Transportation","cities":["Bakersfield","Beijing","Honolulu"]},{"company":"UiPath","name":"Eric Rodgers","email":"ericerodgers@yahoo.com","linkedIn":"https://www.linkedin.com/in/erodgers/","campus":"NYC","cohort":"31","jobTitle":"Software Engineer (SE1)","industry":"Software / Tech","cities":["Anaheim"]},{"company":"Umbra","name":"Joey Friedman","email":"friedman.joey@gmail.com","linkedIn":"https://www.linkedin.com/in/joseph-friedman-803803149/","campus":"NYC / ECRI","cohort":"34","jobTitle":"Software Engineer","industry":"Aerospace","cities":["New Orleans","Oakland","Mexico City","Omaha"]},{"company":"Uncommon Schools","name":"Taryn A Cunha","email":"taryn.cunha@gmail.com","linkedIn":"LinkedIn.com/in/taryncunha","campus":"NYC / ECRI","cohort":"34","jobTitle":"Integrationโ€™s Developer","industry":"Other","cities":["Las Vegas","Wichita","Mexico City","Madison"]},{"company":"Unify Consulting","name":"Gibran Haq","email":"gibran.haq57@gmail.com","linkedIn":"https://www.linkedin.com/in/gibran-haq/","campus":"FTRI","cohort":"5","jobTitle":"Senior Consultant","industry":"Consulting","cities":["Las Vegas","Sacramento"]},{"company":"Uniphore","name":"Vince Vu","email":"vince.hvu@gmail.com","linkedIn":"https://www.linkedin.com/in/vin-vu/","campus":"LA","cohort":"42","jobTitle":"Full Stack Developer","industry":"Conversational Service Automation","cities":["Riverside"]},{"company":"Unit21","name":"Nicole Ip","email":"nicole@unit21.ai","linkedIn":"","campus":"NYC","cohort":"19","jobTitle":"Software Engineer","industry":"AI / ML","cities":["Fort Wayne","St. Louis","Detroit"]},{"company":"United Airlines","name":"Jordan Jeter","email":"jeter.education@gmail.com","linkedIn":"linkedin.com/in/jordanrjeter","campus":"NYC / ECRI","cohort":"36","jobTitle":"Developer - IT","industry":"Aerospace","cities":["Chicago","Tulsa"]},{"company":"United Power","name":"Clifford Harvey","email":"cliffharvey06@gmail.com","linkedIn":"https://www.linkedin.com/in/clifford-harvey/","campus":"LA","cohort":"16","jobTitle":"Sr Fullstack Developer","industry":"","cities":["Irvine","Oakland","Long Beach"]},{"company":"United States Cold Storage Inc","name":"Glen Kasoff","email":"glen.kasoff@gmail.com","linkedIn":"https://www.linkedin.com/in/glen-kasoff","campus":"PTRI","cohort":"7","jobTitle":"Software Developer ERP","industry":"Other","cities":["Tampa","San Diego"]},{"company":"University of California","name":"Justin Wouters","email":"justinwouters@gmail.com","linkedIn":"Https://www.linkedin.com/in/justinwouters","campus":"FTRI / CTRI","cohort":"9","jobTitle":"Junior application developer","industry":"Other","cities":["Los Angeles","Bakersfield","Boston"]},{"company":"University of Chicago, Center for the Art of East Asia","name":"Greg Panciera","email":"gregpanciera@gmail.com","linkedIn":"https://www.linkedin.com/in/gregpanciera","campus":"LA","cohort":"36","jobTitle":"Web Developer","industry":"Art","cities":["Dallas","Irving"]},{"company":"Unqork","name":"Donald Blanc","email":"Donaldblanc1@gmail.com","linkedIn":"https://www.linkedin.com/in/donald-b/","campus":"NYC","cohort":"11","jobTitle":"Senior Software Engineer","industry":"Tech","cities":["Pittsburgh","Oakland","San Diego"]},{"company":"Unum ID","name":"Allison Roderiques","email":"aeroderiques@gmail.com","linkedIn":"https://www.linkedin.com/in/allison-roderiques/","campus":"LA / WCRI","cohort":"51","jobTitle":"Full Stack Developer","industry":"Other","cities":["Fort Wayne","Plano","Buffalo"]},{"company":"Uphold","name":"Chelsea Harris","email":"chelseaharris137@gmail.com","linkedIn":"https://www.linkedin.com/in/chelseaharris23/","campus":"NYC","cohort":"22","jobTitle":"Frontend Engineer","industry":"Crypto","cities":["Memphis","Toronto","Riverside"]},{"company":"Upkeep","name":"Elie Baik","email":"semsemm810@gmail.com","linkedIn":"https://www.linkedin.com/in/sae-min-baik","campus":"LA","cohort":"34","jobTitle":"Software Engineer","industry":"CRM","cities":["Santa Ana"]},{"company":"UST","name":"Dhruv Thota","email":"dthota8@gmail.com","linkedIn":"https://linkedin.com/in/dhruv-thota","campus":"NYC / ECRI","cohort":"36","jobTitle":"Software Engineer","industry":"Software Solutions/Developer Tools","cities":["Anchorage","Phoenix"]},{"company":"VacationRenter","name":"Michele Moody","email":"moody.lillian@gmail.com","linkedIn":"https://www.linkedin.com/in/milmoody/","campus":"LA","cohort":"30","jobTitle":"Software Engineer","industry":"Travel","cities":["Reno"]},{"company":"Valor Performance","name":"Marco Tulio Gonzalez","email":"marco.t.gonzalez15@gmail.com","linkedIn":"https://www.linkedin.com/in/marcogonzalez2015/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Senior Software Engineer","industry":"Other","cities":["Portland","Indianapolis","Kansas City","Oakland"]},{"company":"VanGo","name":"Nicolas Venegas","email":"nicolasvenegasparker@gmail.com","linkedIn":"https://www.linkedin.com/in/nicolas-venegas-parker/","campus":"LA","cohort":"30","jobTitle":"Mobile Software Engineer","industry":"Consumer / Transportation","cities":["Plano","Anchorage","Chandler","Fresno"]},{"company":"Vanguard","name":"Ian Kila","email":"ian.nie.kila@gmail.com","linkedIn":"https://www.linkedin.com/in/ian-kila","campus":"NYC / ECRI","cohort":"35","jobTitle":"Application Developer","industry":"Software / Tech","cities":["St. Louis","Irving","Chula Vista"]},{"company":"Vanguard","name":"Carolina Bonitatis","email":"carolina@bonitat.is","linkedIn":"https://www.linkedin.com/in/carolina-bonitatis/","campus":"NYC / ECRI","cohort":"42","jobTitle":"Application Developer","industry":"Other","cities":["Mumbai"]},{"company":"Vantage Point Consulting, Inc.","name":"Constance Cho","email":"chcho87@gmail.com","linkedIn":"https://www.linkedin.com/in/chcho2/","campus":"NYC","cohort":"21","jobTitle":"Full Stack Engineer","industry":"Consulting","cities":["Chula Vista","Tucson","Lexington"]},{"company":"Vaulted Oak","name":"Alfred Sta. Iglesia","email":"a.sta.iglesia@gmail.com","linkedIn":"https://www.linkedin.com/in/astaiglesia/","campus":"LA","cohort":"41","jobTitle":"Software Engineer + Solutions Architect","industry":"E-Commerce","cities":["Miami"]},{"company":"VedaPointe","name":"Michelle Chang","email":"michelle.kelly.chang@gmail.com","linkedIn":"https://www.linkedin.com/in/michellekchang/","campus":"LA / WCRI","cohort":"49","jobTitle":"Software Developer","industry":"Healthcare","cities":["Virginia Beach","Beijing","Jersey City"]},{"company":"Vercel","name":"Jueun Grace Yun","email":"graceyunn@gmail.com","linkedIn":"https://www.linkedin.com/in/gracejueunyun/","campus":"NYC","cohort":"29","jobTitle":"Software Engineer","industry":"Gaming hardware","cities":["Memphis","Mesa"]},{"company":"Verily Life Sciences","name":"Michael Geismar","email":"mikelafobe@yahoo.com","linkedIn":"https://www.linkedin.com/in/michael-geismar/","campus":"FTRI","cohort":"2","jobTitle":"Software Engineer","industry":"Life Sciences","cities":["Chesapeake","San Jose","Lexington"]},{"company":"Veritext","name":"Shawn Convery","email":"shawnmconvery@gmail.com","linkedIn":"https://www.linkedin.com/in/shawnconvery1/","campus":"NYC","cohort":"27","jobTitle":"Software Engineer","industry":"Law","cities":["Tampa","Columbus"]},{"company":"Veritext","name":"Storm Ross","email":"stormaross@gmail.com","linkedIn":"https://www.linkedin.com/in/stormaross/","campus":"NYC","cohort":"27","jobTitle":"Backend Developer","industry":"Legal","cities":["Berlin","Pittsburgh","Paris","Dallas"]},{"company":"Verizon Media Platform","name":"Leonard Kee","email":"leonardwkee@gmail.com","linkedIn":"https://www.linkedin.com/in/thiskeeword/","campus":"LA","cohort":"4","jobTitle":"Software Development Engineer II","industry":"Media","cities":["Philadelphia","Irving","Tulsa"]},{"company":"Vertalo","name":"Phillip Bannister","email":"phillip.kbannister@Gmail.com","linkedIn":"https://www.linkedin.com/in/phillipkekoabannister/","campus":"LA","cohort":"41","jobTitle":"Software Engineer","industry":"Fintech","cities":["Boston","Anaheim","Detroit"]},{"company":"Verys","name":"Ray Yao","email":"rocaray51@gmail.com","linkedIn":"https://www.linkedin.com/in/raymondyao51/","campus":"LA","cohort":"27","jobTitle":"Software Developer","industry":"Consulting/Contracting Agency","cities":["Lubbock","Irving","Kansas City"]},{"company":"Verys","name":"Ted Min","email":"tedtaemin@gmail.com","linkedIn":"","campus":"LA","cohort":"41","jobTitle":"Senior Software Engineer","industry":"Consulting","cities":["London"]},{"company":"View, Inc.","name":"Eric Lee","email":"emlee54@gmail.com","linkedIn":"https://www.linkedin.com/in/errc-lee/","campus":"LA","cohort":"45","jobTitle":"Software Engineer, Front-End","industry":"Software / Tech","cities":["Henderson"]},{"company":"Violet","name":"Johanna Merluza","email":"johanna.merluza@gmail.com","linkedIn":"https://www.linkedin.com/in/johannamerluza/","campus":"FTRI / CTRI","cohort":"13","jobTitle":"Senior Full Stack Engineer","industry":"Software / Tech","cities":["Raleigh","Kansas City","Los Angeles","Fort Worth"]},{"company":"Virga Labs","name":"Vance McGrady","email":"vancemcgrady@gmail.com","linkedIn":"https://www.linkedin.com/in/vancemcgrady/","campus":"LA / WCRI","cohort":"52","jobTitle":"Application Developer","industry":"Data Analytics","cities":["Tampa","Tucson","Chicago"]},{"company":"Virgin Hyperloop One","name":"Justin Fung","email":"justincaseyfung@gmail.com","linkedIn":"https://www.linkedin.com/in/citrusvanilla/","campus":"LA","cohort":"30","jobTitle":"Front-End Developer","industry":"Transportation","cities":["Long Beach"]},{"company":"Virgin Orbit","name":"Arkadiy Nigay","email":"ark234@gmail.com","linkedIn":"https://www.linkedin.com/in/ark234","campus":"LA","cohort":"23","jobTitle":"Full Stack Developer","industry":"Aerospace","cities":["Philadelphia","Baltimore","Kansas City","Houston"]},{"company":"Virgin Orbit","name":"Eric McCorkle","email":"ericm.mccorkle@gmail.com","linkedIn":"https://www.linkedin.com/in/eric-mccorkle/","campus":"LA","cohort":"48","jobTitle":"Full Stack Developer","industry":"Aerospace","cities":["Lexington","Fort Wayne"]},{"company":"Virtru","name":"Jake Van Vorhis","email":"vanvorhisjake@gmail.com","linkedIn":"https://www.linkedin.com/in/jakedoublev/","campus":"PTRI","cohort":"5","jobTitle":"Senior Full Stack Engineer","industry":"Security","cities":["Baltimore"]},{"company":"Visa","name":"Bryan Mooyeong Lee","email":"mylee1995@gmail.com","linkedIn":"https://www.linkedin.com/bryanm-lee","campus":"NYC","cohort":"12","jobTitle":"Software Engineer","industry":"Fintech","cities":["Tulsa"]},{"company":"VMware","name":"Maureen Onchiri","email":"onchirimaureen1@gmail.com","linkedIn":"https://www.linkedin.com/in/maureenonchiri/","campus":"NYC","cohort":"24","jobTitle":"Software Engineer","industry":"Tech","cities":["St. Louis","Lexington","Cleveland"]},{"company":"Volta Charging","name":"Maximilian Gonzalez","email":"thamaxlg@gmail.com","linkedIn":"https://www.linkedin.com/in/maximiliangonzalez/","campus":"LA","cohort":"29","jobTitle":"Full Stack Software Engineer, Cloud Platform","industry":"Transportation","cities":["Pittsburgh","North Las Vegas"]},{"company":"VS Media Inc","name":"Patrick Hu","email":"patrickhu91@gmail.com","linkedIn":"https://www.LinkedIn.com/in/patrickhu91","campus":"LA / WCRI","cohort":"52","jobTitle":"JavaScript Developer","industry":"Entertainment","cities":["San Jose","Plano"]},{"company":"VTS","name":"Andy Koh","email":"yk567@cornell.edu","linkedIn":"https://www.linkedin.com/in/andersonkoh/","campus":"LA","cohort":"39","jobTitle":"Software Engineer, Platform","industry":"Commercial Real Estate","cities":["Indianapolis"]},{"company":"W.L. Gore & Associates","name":"Amir Marcel","email":"amirmarcel@yahoo.com","linkedIn":"https://www.linkedin.com/in/amir-marcel","campus":"LA","cohort":"39","jobTitle":"Backend Developer","industry":"Manufacturing","cities":["Oklahoma City","Sรฃo Paulo","St. Petersburg"]},{"company":"Wag Labs Inc","name":"William Adamowicz","email":"william.adamowicz@gmail.com","linkedIn":"https://www.linkedin.com/in/williamadamowicz/","campus":"LA","cohort":"24","jobTitle":"Software Engineer","industry":"Pet Care","cities":["Oakland","Lexington","Madison"]},{"company":"Walgreens","name":"Ed Cho","email":"edcho720@gmail.com","linkedIn":"https://www.linkedin.com/in/edcho720/","campus":"FTRI / CTRI","cohort":"12","jobTitle":"Software Engineer","industry":"Other","cities":["Mexico City"]},{"company":"Walmart","name":"ChunHao Zheng","email":"chz062009@gmail.com","linkedIn":"https://www.linkedin.com/in/chunhz/","campus":"NYC / ECRI","cohort":"35","jobTitle":"Software Engineer II","industry":"Marketing","cities":["Beijing"]},{"company":"Walmart","name":"Eddy Kwon","email":"eddykwon0@gmail.com","linkedIn":"https://www.linkedin.com/in/eddykwon/","campus":"NYC","cohort":"29","jobTitle":"Software Engineer","industry":"Retail","cities":["Louisville","Anchorage","El Paso","Orlando"]},{"company":"Walmart - Store No. 8","name":"Starvon Washington","email":"staronejazz@yahoo.com","linkedIn":"","campus":"LA","cohort":"19","jobTitle":"Software Engineer","industry":"","cities":["Lexington"]},{"company":"Walmart Global Tech","name":"Tao Chen","email":"xtc2008@gmail.com","linkedIn":"https://www.linkedin.com/in/xtc2008","campus":"NYC","cohort":"31","jobTitle":"Senior Software Engineer","industry":"Health and Wellness","cities":["Beijing","San Francisco","Chicago"]},{"company":"Walmart Labs","name":"Brian Barr","email":"Brian.Barr23@gmail.com","linkedIn":"https://www.linkedin.com/in/barrbrian/","campus":"NYC","cohort":"25","jobTitle":"Senior Backend Engineer (Node)","industry":"FinTech (?)","cities":["Columbus","Henderson"]},{"company":"Walmart Labs","name":"Stephanie Fong","email":"stfongg@gmail.com","linkedIn":"https://www.linkedin.com/in/stephaniefong08/","campus":"LA","cohort":"24","jobTitle":"Software Engineer","industry":"","cities":["Kansas City","San Francisco"]},{"company":"Warby Parker","name":"Sanaya Mirpuri","email":"ssmirpuri@gmail.com","linkedIn":"https://www.linkedin.com/in/sanayamirpuri/","campus":"NYC","cohort":"22","jobTitle":"BackendSoftware Engineer II","industry":"Retail","cities":["St. Louis","Gilbert","San Jose"]},{"company":"Warner Bros Discovery","name":"Mark Shin (Shino)","email":"pe.markshin@gmail.com","linkedIn":"https://www.linkedin.com/in/markshins/","campus":"NYC","cohort":"13","jobTitle":"Software Development Engineer II","industry":"Entertainment","cities":["Jacksonville","Tulsa","Arlington"]},{"company":"WASH","name":"Kevin Park","email":"xkevinpark@gmail.com","linkedIn":"https://www.linkedin.com/in/xkevinpark/","campus":"LA","cohort":"42","jobTitle":"Software UI Engineer","industry":"Electronics","cities":["Pittsburgh","Oklahoma City","Paris"]},{"company":"Wash Laundry Systems","name":"Harmon Huynh","email":"harmon.huynh@outlook.com","linkedIn":"https://www.linkedin.com/in/harmon-huynh/","campus":"LA","cohort":"26","jobTitle":"Senior Software Engineer","industry":"Consumer Services","cities":["Minneapolis","Jersey City"]},{"company":"Watsco","name":"Romelo Gilbert","email":"romelogilbert@gmail.com","linkedIn":"https://www.linkedin.com/in/romelo-gilbert","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"HVAC distributor","cities":["San Antonio","Denver"]},{"company":"Wayfair","name":"Dylan Bergstrom","email":"contact.dylanbergstrom@gmail.com","linkedIn":"https://www.linkedin.com/in/dylan-bergstrom","campus":"LA","cohort":"23","jobTitle":"Software Engineer L1","industry":"E-Commerce","cities":["Nashville"]},{"company":"Wayfair","name":"Jay Cogen","email":"jaycog44@gmail.com","linkedIn":"https://www.linkedin.com/in/jaycogen/","campus":"LA","cohort":"26","jobTitle":"Software Engineer II","industry":"Fintech","cities":["Dallas","New York","Raleigh","Orlando"]},{"company":"Wayfair","name":"Bryan Lee","email":"mylee1995@gmail.com","linkedIn":"https://www.linkedin.com/in/bryanm-lee/","campus":"NYC","cohort":"12","jobTitle":"Software Engineer Intern","industry":"E-Commerce","cities":["Winston-Salem","Milwaukee","Nashville","Oklahoma City"]},{"company":"WayScript","name":"Bren Yamaguchi","email":"Yamaguchibren@gmail.com","linkedIn":"https://www.linkedin.com/in/brenyamaguchi/","campus":"LA","cohort":"36","jobTitle":"Front End Software Engineer","industry":"Developer Tools","cities":["Irving","Anchorage"]},{"company":"WayUp","name":"Angela Scerbo","email":"amscerbo@gmail.com","linkedIn":"https://www.linkedin.com/in/angelascerbo/","campus":"NYC","cohort":"2","jobTitle":"Frontend Software Engineer","industry":"","cities":["Jacksonville","Cincinnati"]},{"company":"Weill Cornell Medicine","name":"Zoew McGrath","email":"Zoewmcgrath@outlook.com","linkedIn":"","campus":"FTRI","cohort":"5","jobTitle":"Web Developer","industry":"Healthcare","cities":["Paris","Bakersfield","San Francisco"]},{"company":"WELL Health","name":"Elise Bare","email":"elisebare@gmail.com","linkedIn":"https://www.linkedin.com/in/elisebare/","campus":"LA","cohort":"39","jobTitle":"Software Engineer, Front End","industry":"Healtchare","cities":["Sacramento","Greensboro","Omaha"]},{"company":"Well Health","name":"Janis Hernandez","email":"Janis11546@gmail.com","linkedIn":"https://www.linkedin.com/in/janis-h/","campus":"LA","cohort":"39","jobTitle":"Mid-level Frontend Engineer","industry":"Health","cities":["Denver"]},{"company":"Well Health","name":"Jesus Vargas","email":"jmodestov@gmail.com","linkedIn":"https://www.linkedin.com/in/jesusmvargas/","campus":"LA","cohort":"38","jobTitle":"Frontend Software Engineer","industry":"Health Tech","cities":["Memphis","New York","El Paso"]},{"company":"Well Health","name":"Michael Wang","email":"michaelwawang@gmail.com","linkedIn":"https://www.linkedin.com/in/michael--wang/","campus":"LA","cohort":"36","jobTitle":"Software Engineer (Backend)","industry":"Health Tech","cities":["San Jose","Las Vegas","San Antonio"]},{"company":"Well Health","name":"Eric Stallings","email":"stallings.eric@gmail.com","linkedIn":"https://www.linkedin.com/in/EricStallings/","campus":"LA","cohort":"30","jobTitle":"Software Engineer","industry":"Healthcare","cities":["Chesapeake","Arlington","Santa Ana","Cincinnati"]},{"company":"Wellio","name":"Rachel Park","email":"rachelpark.dev@gmail.com","linkedIn":"https://www.linkedin.com/in/rachelparkdev/","campus":"NYC","cohort":"13","jobTitle":"Senior Software Engineer","industry":"Foodtech","cities":["Charlotte"]},{"company":"Wells Fargo","name":"Taylor Davis","email":"Taylor.davis7@live.com","linkedIn":"https://www.linkedin.com/in/taylordavis7","campus":"LA","cohort":"41","jobTitle":"Software Engineer","industry":"Fintech","cities":["Mesa"]},{"company":"Western Psychological Services (WPS)","name":"Justin Stoddard","email":"jgstoddard@gmail.com","linkedIn":"https://www.linkedin.com/in/jgstoddard/","campus":"FTRI","cohort":"4","jobTitle":"Microservices Engineer","industry":"Health Tech","cities":["Bakersfield"]},{"company":"WeWork","name":"Maung Maung Lay (Raphael Ram)","email":"ramraphael@gmail.com","linkedIn":"https://www.linkedin.com/in/raphaelram/","campus":"NYC","cohort":"8","jobTitle":"Software Engineer","industry":"Real Estate / Hospitality","cities":["Tampa","Sรฃo Paulo"]},{"company":"Whisper","name":"Kevin Mui","email":"kmui.work@gmail.com","linkedIn":"https://www.linkedin.com/in/kevin-mui1/","campus":"LA","cohort":"24","jobTitle":"Server Developer","industry":"","cities":["Sydney","Oakland"]},{"company":"William Hill","name":"Chris Flannery","email":"chriswillsflannery@gmail.com","linkedIn":"https://www.linkedin.com/in/chriswillsflannery/","campus":"NYC","cohort":"14","jobTitle":"Frontend Software Engineer","industry":"Sports/Entertainment","cities":["Durham","Albuquerque","Detroit"]},{"company":"William Hill","name":"Matt Greenberg","email":"mattagreenberg1@gmail.com","linkedIn":"https://www.linkedin.com/in/mattagreenberg/","campus":"NYC","cohort":"24","jobTitle":"front end software engineer","industry":"casino","cities":["Lincoln","Denver"]},{"company":"Willow Servicing","name":"Ian Grepo","email":"iangrapeo@gmail.com","linkedIn":"https://www.linkedin.com/in/ian-grepo/","campus":"LA / WCRI","cohort":"51","jobTitle":"Software Engineer","industry":"Real Estate","cities":["Norfolk"]},{"company":"Windfall Data","name":"Bruno Portela","email":"bportela@pm.me","linkedIn":"https://www.linkedin.com/in/bgp/","campus":"LA","cohort":"42","jobTitle":"Senior Full Stack Engineer","industry":"Fintech, ML, AI","cities":["Las Vegas"]},{"company":"Windhover Labs","name":"Alex McPhail","email":"mcphail.alex@gmail.com","linkedIn":"www.linkedin.com/in/mcphail-alex","campus":"LA / WCRI","cohort":"53","jobTitle":"Software Engineer","industry":"Aerospace","cities":["Tulsa","Mesa","Pittsburgh"]},{"company":"Wiselayer","name":"Eric Lemay","email":"ericrogerlemay@gmail.com","linkedIn":"","campus":"NYC / ECRI","cohort":"31","jobTitle":"Software Engineer","industry":"Business Analytics","cities":["Indianapolis","Austin","El Paso"]},{"company":"Wiser Solutions","name":"Alex Hersler","email":"alex@alexhersler.com","linkedIn":"https://www.linkedin.com/in/alex-hersler/","campus":"LA / WCRI","cohort":"48","jobTitle":"Software Engineer II","industry":"Data Analytics","cities":["Henderson"]},{"company":"Wix.com","name":"Kenny shen","email":"kenny.shen313@gmail.com","linkedIn":"","campus":"NYC","cohort":"27","jobTitle":"Solutions Engineer","industry":"Software / Tech","cities":["Los Angeles","Chula Vista","San Jose","Chicago"]},{"company":"Wizely Finance","name":"Erik Cox","email":"erikbcox@gmail.com","linkedIn":"https://www.linkedin.com/in/erikbcox/","campus":"LA","cohort":"22","jobTitle":"Senior Full Stack Developer","industry":"","cities":["Arlington","Memphis","Tulsa","Miami"]},{"company":"WorkDay","name":"Tu Pham","email":"toopham@gmail.com","linkedIn":"https://www.linkedin.com/in/toopham/","campus":"LA","cohort":"46","jobTitle":"Software Development Engineer","industry":"FinTech, HR","cities":["Bakersfield","New York","Tokyo","Portland"]},{"company":"WorkFusion","name":"Matt Meigs","email":"mattmeigs@gmail.com","linkedIn":"https://www.linkedin.com/in/matt-meigs/","campus":"NYC","cohort":"20","jobTitle":"Front-End Developer","industry":"Intelligent Automation","cities":["Cincinnati","Tulsa"]},{"company":"WorkRamp","name":"Lex Choi","email":"lexchoi3@gmail.com","linkedIn":"https://www.linkedin.com/in/lexchoi3/","campus":"LA","cohort":"40","jobTitle":"Internal Tools/Customer Support Engineer","industry":"SaaS","cities":["Dallas"]},{"company":"World Wide Technology","name":"Christopher Davis","email":"chdavis0917@gmail.com","linkedIn":"https://www.linkedin.com/in/chris-davis0917","campus":"FTRI / CTRI","cohort":"11","jobTitle":"JavaScript Developer - Material Planning","industry":"IT Services","cities":["Tucson"]},{"company":"World Wide Technology","name":"Crystal Agoncillo","email":"crystal.agoncillo@gmail.com","linkedIn":"https://www.linkedin.com/in/agoncillo/","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Full Stack Developer","industry":"IT Services","cities":["Austin","Indianapolis","Mexico City","Louisville"]},{"company":"World Wide Technology","name":"Stephanie Page","email":"stephanieelainepage@gmail.com","linkedIn":"https://www.linkedin.com/in/stephanie-page-atx/","campus":"FTRI / CTRI","cohort":"11","jobTitle":"Associate Developer","industry":"Consulting","cities":["London"]},{"company":"World Wide Technology","name":"Brett Guidry","email":"guidry.brett@gmail.com","linkedIn":"https://www.linkedin.com/in/brett-guidry504/","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Software Engineer","industry":"IT Services","cities":["Phoenix","Washington"]},{"company":"WPROMOTE","name":"Nay Linn","email":"naylinn.pkv@gmail.com","linkedIn":"https://www.linkedin.com/in/nay-linn/","campus":"NYC","cohort":"19","jobTitle":"Software Engineer","industry":"Digital Marketing","cities":["Minneapolis","Chula Vista"]},{"company":"WQA","name":"Victor Martins","email":"martinsvictor287@gmail.com","linkedIn":"https://www.linkedin.com/in/victormartinsfemi","campus":"LA / WCRI","cohort":"59","jobTitle":"Software Develooper","industry":"Consulting","cities":["Wichita"]},{"company":"WW(formally Weight Watchers)","name":"Mika Todd","email":"mikataressatodd@gmail.com","linkedIn":"https://www.linkedin.com/in/mika-todd","campus":"LA","cohort":"43","jobTitle":"Software Engineer","industry":"Health and Wellness","cities":["Fresno","Lexington"]},{"company":"Wyze","name":"Jason Victor","email":"jason.victor26@gmail.com","linkedIn":"","campus":"LA","cohort":"38","jobTitle":"Jr. Front End Engineer","industry":"IoT","cities":["Washington","Denver"]},{"company":"Xandr","name":"Billy Hepfinger","email":"bhepfing@gmail.com","linkedIn":"https://www.linkedin.com/in/billy-hepfinger","campus":"NYC","cohort":"25","jobTitle":"Software Engineer II","industry":"Advertising / Telecom","cities":["Charlotte"]},{"company":"Xandr","name":"Whit Rooke","email":"whit.rooke@gmail.com","linkedIn":"https://www.linkedin.com/in/whit-rooke/","campus":"NYC","cohort":"25","jobTitle":"Software Engineer","industry":"Adtech","cities":["Albuquerque"]},{"company":"Xinova","name":"Clariz Mariano","email":"clariz.mariano@gmail.com","linkedIn":"https://www.linkedin.com/in/clarmariano/","campus":"LA","cohort":"22","jobTitle":"Software Engineer 2","industry":"","cities":["Toronto","Fort Worth"]},{"company":"Xtivia","name":"Anthony Lo","email":"87.anthonylo@gmail.com","linkedIn":"https://www.linkedin.com/in/anthonyelo/","campus":"LA / WCRI","cohort":"52","jobTitle":"Jr. UI Developer","industry":"IT Services","cities":["North Las Vegas","Madison","Fresno","Louisville"]},{"company":"Yahoo","name":"DeriAnte Sinclair","email":"deriante.sinclair@gmail.com","linkedIn":"https://www.linkedin.com/in/deriante-sinclair/","campus":"LA / WCRI","cohort":"49","jobTitle":"Software Apps Engineer I","industry":"Software / Tech","cities":["Fort Worth","New Orleans","Denver","Philadelphia"]},{"company":"Yahoo","name":"Tom Curtin","email":"thisistomcurtin@gmail.com","linkedIn":"https://www.linkedin.com/in/tfcurtin/","campus":"PTRI","cohort":"3","jobTitle":"Software Engineer","industry":"Other","cities":["Phoenix","Saint Paul","New York","Santa Ana"]},{"company":"Yale New Haven Health","name":"Aileen Chan Miranda","email":"aileenchany@gmail.com","linkedIn":"https://www.linkedin.com/in/aileen-chanmiranda/","campus":"FTRI / CTRI","cohort":"8","jobTitle":"Web Developer","industry":"Healthtech/Healthcare","cities":["Wichita","Oakland"]},{"company":"Yext","name":"Allen Xie","email":"axie0320@gmail.com","linkedIn":"https://www.linkedin.com/in/axie0320/","campus":"PTRI","cohort":"4","jobTitle":"Software Engineer","industry":"Software / Tech","cities":["Gilbert","Mumbai","San Jose"]},{"company":"YMCA Retirement Fund","name":"Anna Konstantinovich","email":"anna@anreko.design","linkedIn":"https://www.linkedin.com/in/anna-konstantinovich/","campus":"NYC","cohort":"15","jobTitle":"UX Designer & Developer (It's complicated - let me know if you want more details)","industry":"Financial Services","cities":["Oklahoma City","Paris"]},{"company":"Zeal","name":"Jason Lee","email":"jasonmlee1020@gmail.com","linkedIn":"https://www.linkedin.com/in/jasonjml/","campus":"PTRI","cohort":"1","jobTitle":"Software Engineer II","industry":"Fintech","cities":["Louisville"]},{"company":"Zealthy","name":"Kennan Budnik","email":"kobudnik@gmail.com","linkedIn":"https://linkedin.com/in/kobudnik","campus":"NYOI","cohort":"2","jobTitle":"Software Engineer II","industry":"Healthtech/Healthcare","cities":["Norfolk","Tucson"]},{"company":"ZenBusiness","name":"Adam Sheff","email":"adamisheff@gmail.com","linkedIn":"https://www.linkedin.com/in/adam-sheff/","campus":"FTRI","cohort":"4","jobTitle":"Software Engineer","industry":"Entrepreneurship","cities":["Miami","Kansas City"]},{"company":"ZenBusiness","name":"Christie Herring","email":"clherring@gmail.com","linkedIn":"https://www.linkedin.com/in/christie-herring/","campus":"LA","cohort":"46","jobTitle":"Software Engineer II","industry":"SaaS, business creation services","cities":["Stockton","Milwaukee","Madison","Norfolk"]},{"company":"Zenefits","name":"Tobey Forsman","email":"tobeyforsman@gmail.com","linkedIn":"https://www.linkedin.com/in/tobeyforsman/","campus":"LA","cohort":"42","jobTitle":"Senior Software Engineer","industry":"Software/Tech","cities":["Portland"]},{"company":"zephyrx","name":"Brian Haller","email":"brian@brianhaller.com","linkedIn":"https://www.linkedin.com/in/brianjhaller/","campus":"NYC","cohort":"14","jobTitle":"Software Engineer","industry":"med tech","cities":["Houston"]},{"company":"ZeroPW","name":"Tammy Tan","email":"tammytan1912@gmail.com","linkedIn":"https://www.linkedin.com/in/tammytan1/","campus":"NYC","cohort":"15","jobTitle":"Frontend Engineer","industry":"Computer & Network Security","cities":["Paris","Norfolk"]},{"company":"Zest AI","name":"Ronelle Caguioa","email":"ronelle.caguioa@gmail.com","linkedIn":"https://www.linkedin.com/in/ronellecaguioa/","campus":"LA","cohort":"36","jobTitle":"Senior Software Engineer","industry":"Fintech","cities":["Paris","Aurora","New Orleans","Anchorage"]},{"company":"Zeta Global","name":"Chris Tang","email":"chrisjtang@gmail.com","linkedIn":"https://www.linkedin.com/in/chrisjtang","campus":"LA","cohort":"46","jobTitle":"Software Engineer","industry":"Data","cities":["Boston","Riverside","Saint Paul"]},{"company":"Zillow","name":"Cary L Chan","email":"caryLchan@gmail.com","linkedIn":"https://www.linkedin.com/in/carylchan/","campus":"LA","cohort":"35","jobTitle":"Full Stack Engineer","industry":"Entertainment","cities":["Toronto","Toledo","Chandler"]},{"company":"Zillow","name":"Hien Nguyen","email":"hien.qqnguyen@gmail.com","linkedIn":"https://www.linkedin.com/in/hienqn/","campus":"LA","cohort":"37","jobTitle":"Software Engineer","industry":"Entertainment","cities":["Fresno","Miami"]},{"company":"Zillow Group","name":"Logan Thies","email":"logan.thies@icloud.com","linkedIn":"https://www.linkedin.com/in/loganthies137/","campus":"PTRI","cohort":"1","jobTitle":"Software Development Engineer","industry":"Real Estate","cities":["Tampa","Bakersfield","Charlotte"]},{"company":"Zip","name":"Chase Walters","email":"cwwalters@fastmail.com","linkedIn":"https://www.linkedin.com/in/charleswwalters/","campus":"FTRI / CTRI","cohort":"10","jobTitle":"Founding Software Engineer","industry":"Security","cities":["Albuquerque"]},{"company":"Zipcar","name":"Sean Smith","email":"smith.seanm17@gmail.com","linkedIn":"https://www.linkedin.com/in/sean-smith17/","campus":"LA","cohort":"36","jobTitle":"Software Engineer (Front End)","industry":"Transportation","cities":["Laredo","Chula Vista"]},{"company":"Zipdrug","name":"Tolga Mizrakci","email":"tolgamizrakci@gmail.com","linkedIn":"https://www.linkedin.com/in/tolga-mizrakci/","campus":"NYC","cohort":"10","jobTitle":"Senior Software Engineer","industry":"Health Care","cities":["Las Vegas","New York","Mexico City"]},{"company":"ZipRecruiter","name":"Ryan Lee","email":"rynklee@gmail.com","linkedIn":"https://linkedin.com/in/rynklee","campus":"LA","cohort":"46","jobTitle":"Software Engineer III","industry":"Other","cities":["Mexico City","Corpus Christi","Stockton"]},{"company":"Zoetis","name":"Eileen Cho","email":"eileenaracho@gmail.com","linkedIn":"https://www.linkedin.com/in/eileenaracho/","campus":"LA / WCRI","cohort":"56","jobTitle":"Data Systems Engineer","industry":"Other","cities":["Tulsa","Laredo","Louisville","Pittsburgh"]},{"company":"Zogo Finance","name":"Derek Miller","email":"dsymiller@gmail.com","linkedIn":"https://www.linkedin.com/in/dsymiller/","campus":"NYC","cohort":"22","jobTitle":"Full Stack Engineer","industry":"education, financial services, banking","cities":["Buffalo","Dallas","St. Petersburg","Tokyo"]},{"company":"Zoom Video Communications","name":"Jason Jones","email":"Jasonroyjones@gmail.com","linkedIn":"https://www.linkedin.com/in/jasonroyjones","campus":"LA","cohort":"33","jobTitle":"Software Development Engineer","industry":"Telecommunications","cities":["Houston","Tucson"]},{"company":"Zywave","name":"Jacob Davis","email":"jacob.drew.davis@gmail.com","linkedIn":"https://www.linkedin.com/in/jacob-drew-davis/","campus":"FTRI","cohort":"4","jobTitle":"Senior DevSecOps Engineer","industry":"Software / Tech","cities":["Plano","Tampa"]}] \ No newline at end of file diff --git a/scripts/db/mockData/MOCK_FORUMS.json b/scripts/db/mockData/MOCK_FORUMS.json deleted file mode 100644 index cb85ccc3..00000000 --- a/scripts/db/mockData/MOCK_FORUMS.json +++ /dev/null @@ -1 +0,0 @@ -[{"title":"Code Crunch & Job Hunt: Battle Logs","description":"Share your epic (or tragic) tales from the job search battlefield. Did you bravely conquer the coding test, or did it conquer you?"},{"title":"Debugging My Resume","description":"Need help squashing those pesky resume bugs? Post your CV here and let the community help you refactor it into a job offer magnet."},{"title":"Interview Nightmares & Dream Jobs","description":"Spill the beans on your worst interview disasters and celebrate those rare moments when it actually went well. Misery loves company, and so do success stories!"},{"title":"HR: Humans or Robots?","description":"Ever wonder if that HR person was a cleverly disguised bot? Share your weirdest and most robotic interactions with hiring departments."},{"title":"Salary Negotiation: The Boss Fight","description":"Tips, tricks, and epic fails from the final boss battle of job hunting: salary negotiations. Did you get the loot or just a consolation prize?"},{"title":"Coding Challenge Gauntlet","description":"Post and discuss the coding challenges that made you cry, laugh, or question your career choices. Help others survive the gauntlet!"},{"title":"Office Buzzwords & Bingo","description":"Share and decipher the latest buzzwords and jargon from job postings and interviews. Bonus points for the most absurd phrases."},{"title":"Side Projects & Procrastination","description":"Brag about your side projects or confess how theyโ€™re really just elaborate ways to procrastinate. Either way, weโ€™re impressed!"},{"title":"LinkedIn Lamentations","description":"Rant and rave about the peculiarities of LinkedIn. Endorsements, random connection requests, and the mysterious 'we found your profile' emails."},{"title":"Rejected & Dejected: Therapy Sessions","description":"A safe space to vent about job rejections and support each other through the emotional rollercoaster of the job hunt. Cookies and virtual hugs provided."}] \ No newline at end of file diff --git a/scripts/db/mockData/MOCK_GRADUATE_INVITATIONS.json b/scripts/db/mockData/MOCK_GRADUATE_INVITATIONS.json deleted file mode 100644 index 0459a941..00000000 --- a/scripts/db/mockData/MOCK_GRADUATE_INVITATIONS.json +++ /dev/null @@ -1 +0,0 @@ -[{"email":"acarradice0@gravatar.com","token":"541658530c351ab19011dc5a1cc7f796eb9fd388","tokenExpiry":"1714386955","isRegistered":true,"firstName":"Alonso","lastName":"Carradice","registeredAt":"1677124950","cohort":"FTRI 3"},{"email":"wbleaden1@usgs.gov","token":"8ce87b99dc305ef8272b2261a73539156a2a4b11","tokenExpiry":"1703047259","isRegistered":false,"firstName":"Wilton","lastName":"Bleaden","registeredAt":"1710588748","cohort":"WCRI 14"},{"email":"ghalso2@jalbum.net","token":"19e7fd479b1310e00940ac610b6d3731699224b3","tokenExpiry":"1708125337","isRegistered":true,"firstName":"Gannon","lastName":"Halso","registeredAt":"1685884782","cohort":"NYC 50"},{"email":"dgrinter3@amazon.com","token":"15639748a71a12b6c5b2a9e715aca9ff092877ae","tokenExpiry":"1719655502","isRegistered":false,"firstName":"Doralynn","lastName":"Grinter","registeredAt":"1693987127","cohort":"PTRI 62"},{"email":"wweatherley4@phoca.cz","token":"bc2b71d4fbd3ed3de0a0022aa21bbed4f851c755","tokenExpiry":"1699687351","isRegistered":true,"firstName":"Winn","lastName":"Weatherley","registeredAt":"1710066414","cohort":"LA 0"},{"email":"hregis5@dailymail.co.uk","token":"01aa9782932b7772770b0c4eae54787dea5f9638","tokenExpiry":"1719748549","isRegistered":true,"firstName":"Hermon","lastName":"Regis","registeredAt":"1694142909","cohort":"CTRI 69"},{"email":"crousby6@apache.org","token":"22ce1f16d86aa9b601a6bd044d3bbc455b4f36e2","tokenExpiry":"1721465604","isRegistered":false,"firstName":"Cordie","lastName":"Rousby","registeredAt":"1682025913","cohort":"LA 69"},{"email":"mriseborough7@clickbank.net","token":"3fad65274e7439c2c0a35200295c46977020885f","tokenExpiry":"1706069183","isRegistered":false,"firstName":"Maureene","lastName":"Riseborough","registeredAt":"1686092791","cohort":"LA 52"},{"email":"olawson8@washington.edu","token":"39b226afbd4282124dd31b9dd3243cb7e0b1f596","tokenExpiry":"1704307416","isRegistered":false,"firstName":"Orelle","lastName":"Lawson","registeredAt":"1689333880","cohort":"NYC 36"},{"email":"jemer9@constantcontact.com","token":"dbc7e41297546ad0d7a437abc4573ad5ac36dd2c","tokenExpiry":"1710382524","isRegistered":false,"firstName":"Jess","lastName":"Emer","registeredAt":"1688557374","cohort":"LA 58"},{"email":"mtubblesa@nifty.com","token":"a664d8ee7cd56a9ce2963eae874da9c65fcd2361","tokenExpiry":"1719286527","isRegistered":true,"firstName":"Mariel","lastName":"Tubbles","registeredAt":"1679623674","cohort":"FTRI 97"},{"email":"pkeightleyb@webnode.com","token":"3c78dccda8c878bb7dea64431e5811b2a75af184","tokenExpiry":"1714278643","isRegistered":true,"firstName":"Perice","lastName":"Keightley","registeredAt":"1690276231","cohort":"LA 60"},{"email":"efalcusc@mapy.cz","token":"184efd9e68dbe020111734f78303742a65c1fd15","tokenExpiry":"1718471384","isRegistered":false,"firstName":"Eula","lastName":"Falcus","registeredAt":"1708142836","cohort":"LA 95"},{"email":"jbaldinid@simplemachines.org","token":"26f1e984850651b64779d36d31af27602c8e714b","tokenExpiry":"1704480185","isRegistered":true,"firstName":"Jacqui","lastName":"Baldini","registeredAt":"1692681038","cohort":"FTRI 0"},{"email":"snorthridgee@macromedia.com","token":"801d95108e35ccce2fe3b290803de8637d65959e","tokenExpiry":"1715200469","isRegistered":true,"firstName":"Scottie","lastName":"Northridge","registeredAt":"1691263603","cohort":"WCRI 3"},{"email":"dhedgerf@shareasale.com","token":"d681aa42bf9f2371c60c05754a93fd1dc860fec8","tokenExpiry":"1727580488","isRegistered":false,"firstName":"Dorie","lastName":"Hedger","registeredAt":"1687226473","cohort":"FTRI 47"},{"email":"nskeeng@yellowbook.com","token":"fadb33e7532fdce703106043931f2a6f15f88bc3","tokenExpiry":"1721509297","isRegistered":false,"firstName":"Nadia","lastName":"Skeen","registeredAt":"1695484577","cohort":"LA 74"},{"email":"mgroomh@samsung.com","token":"8df1430be1cc296c94155b06a79a1e24d12b16ad","tokenExpiry":"1698531018","isRegistered":true,"firstName":"Mickie","lastName":"Groom","registeredAt":"1691239049","cohort":"PTRI 41"},{"email":"lkupiszi@liveinternet.ru","token":"1740f0be8a449176d15c33a65a5c3bc011cc0f07","tokenExpiry":"1707223534","isRegistered":true,"firstName":"Leticia","lastName":"Kupisz","registeredAt":"1683211294","cohort":"CTRI 43"},{"email":"bdeanj@mlb.com","token":"7f27fa69908e6aa17e28f425de5fcc57f0eeedc0","tokenExpiry":"1717798784","isRegistered":false,"firstName":"Babb","lastName":"Dean","registeredAt":"1686342997","cohort":"FTRI 8"},{"email":"blilleyk@blogs.com","token":"7fb8c075412d11bebc0ba1aeca86bb08393f136b","tokenExpiry":"1721551606","isRegistered":false,"firstName":"Burtie","lastName":"Lilley","registeredAt":"1679902087","cohort":"ECRI 77"},{"email":"dwoodlandl@dailymotion.com","token":"774c9ed5bf04f259139e1c14b9446c818f83ec2a","tokenExpiry":"1721916987","isRegistered":true,"firstName":"Dorelle","lastName":"Woodland","registeredAt":"1717510004","cohort":"CTRI 81"},{"email":"bdunlapm@dropbox.com","token":"0ddfcd5aee883c68ff7a7a704a406998d3b95a64","tokenExpiry":"1697506453","isRegistered":false,"firstName":"Burk","lastName":"Dunlap","registeredAt":"1680396642","cohort":"FTRI 7"},{"email":"cdarreln@newyorker.com","token":"53488dd01c43dfa1d596c7964a4d2f534dc8ead5","tokenExpiry":"1724607931","isRegistered":false,"firstName":"Cecilius","lastName":"Darrel","registeredAt":"1706643899","cohort":"PTRI 25"},{"email":"bbudcocko@va.gov","token":"efb168a15a3096e53d12ae9f80569d8d557c4493","tokenExpiry":"1701718041","isRegistered":true,"firstName":"Brod","lastName":"Budcock","registeredAt":"1676443900","cohort":"NYC 37"},{"email":"bthickinp@ibm.com","token":"8e4af5f631de12544c44ed442d50aafb83204a44","tokenExpiry":"1711888928","isRegistered":false,"firstName":"Bayard","lastName":"Thickin","registeredAt":"1695590750","cohort":"CTRI 6"},{"email":"llarringtonq@sakura.ne.jp","token":"9951ab34e301c226be2b63b1e3f6b61e7ca6f178","tokenExpiry":"1706943537","isRegistered":true,"firstName":"Lorenza","lastName":"Larrington","registeredAt":"1683278978","cohort":"FTRI 46"},{"email":"rstantonr@mashable.com","token":"e5cd7ddfdfb812f47184272328b5510c9d8887b9","tokenExpiry":"1707981578","isRegistered":true,"firstName":"Ranna","lastName":"Stanton","registeredAt":"1694102332","cohort":"LA 91"},{"email":"scowdroys@umich.edu","token":"43315d4d9b75715104ee90104db03bf430b78fb1","tokenExpiry":"1705880075","isRegistered":false,"firstName":"Silvan","lastName":"Cowdroy","registeredAt":"1698398807","cohort":"NYC 23"},{"email":"pskirlingt@4shared.com","token":"85d7af1fdd70f8fd165a014e08b7a4b3963ac044","tokenExpiry":"1716827794","isRegistered":false,"firstName":"Pepita","lastName":"Skirling","registeredAt":"1703077019","cohort":"PTRI 94"},{"email":"bspensleyu@indiatimes.com","token":"597d4be98c6ed3ab97f2301c6da3ee55d69033ed","tokenExpiry":"1715899465","isRegistered":true,"firstName":"Brinna","lastName":"Spensley","registeredAt":"1690415190","cohort":"WCRI 52"},{"email":"lblaisv@networksolutions.com","token":"b7502e54d2a16983c2ffab259798841eec4e8272","tokenExpiry":"1705285133","isRegistered":true,"firstName":"Leta","lastName":"Blais","registeredAt":"1704030885","cohort":"LA 1"},{"email":"olehuquetw@privacy.gov.au","token":"d368e4882e0e66e2c93020c54534bb56ff2d9d52","tokenExpiry":"1721342625","isRegistered":true,"firstName":"Onfre","lastName":"Le Huquet","registeredAt":"1700655434","cohort":"PTRI 1"},{"email":"cedworthiex@yelp.com","token":"8cb9209121c6007c214e4d7bc010190ee2bdd22a","tokenExpiry":"1701803096","isRegistered":false,"firstName":"Cairistiona","lastName":"Edworthie","registeredAt":"1695427010","cohort":"ECRI 24"},{"email":"jchongy@cpanel.net","token":"239edcea2ff7a2c73af428692f85be9b2ffab43f","tokenExpiry":"1725107146","isRegistered":true,"firstName":"Jonas","lastName":"Chong","registeredAt":"1700604074","cohort":"CTRI 85"},{"email":"emintoz@statcounter.com","token":"4fdd3aae97ec4a7d44202cbfe5034517d0f00ebc","tokenExpiry":"1720135279","isRegistered":true,"firstName":"Ezra","lastName":"Minto","registeredAt":"1701904952","cohort":"FTRI 10"},{"email":"vlicari10@businessweek.com","token":"752025d65cc509ae58038fa039654c7c5ccff278","tokenExpiry":"1718335874","isRegistered":false,"firstName":"Virgina","lastName":"Licari","registeredAt":"1708284774","cohort":"LA 61"},{"email":"rlambrick11@netscape.com","token":"38e604f9dd47c6468ab3d4104d8dbc9f6968bfd8","tokenExpiry":"1714756935","isRegistered":true,"firstName":"Rickert","lastName":"Lambrick","registeredAt":"1678948854","cohort":"FTRI 86"},{"email":"jmadner12@boston.com","token":"6f81c343c0ee4efec0c7d3359ec562dfdd26bdfd","tokenExpiry":"1715296843","isRegistered":true,"firstName":"Jesselyn","lastName":"Madner","registeredAt":"1685889400","cohort":"LA 38"},{"email":"ptest13@ovh.net","token":"81d623ebdd75de31900eaeefd2f8f6d82e5de0f8","tokenExpiry":"1708108205","isRegistered":false,"firstName":"Peirce","lastName":"Test","registeredAt":"1678201051","cohort":"PTRI 56"},{"email":"swalcher14@hc360.com","token":"824b906fd32c063d19ac0413a25ed88b366b400c","tokenExpiry":"1706535307","isRegistered":true,"firstName":"Saraann","lastName":"Walcher","registeredAt":"1710539027","cohort":"NYC 45"},{"email":"gbank15@live.com","token":"0e265dea03b6dd81279caee70688ffc3e4aac84d","tokenExpiry":"1709350549","isRegistered":true,"firstName":"Giff","lastName":"Bank","registeredAt":"1685242746","cohort":"WCRI 30"},{"email":"rallmen16@ask.com","token":"ed6593ece367f7a7dc24f97bd2f6f0842f14c0c4","tokenExpiry":"1718707719","isRegistered":false,"firstName":"Ronny","lastName":"Allmen","registeredAt":"1687899673","cohort":"WCRI 9"},{"email":"kyarrow17@fastcompany.com","token":"d7cf565a92803a64d2cee30653696e1d1a6378b9","tokenExpiry":"1701602996","isRegistered":true,"firstName":"Kimmi","lastName":"Yarrow","registeredAt":"1691124672","cohort":"LA 67"},{"email":"pshepard18@fc2.com","token":"9210e18a7553812264f0de3dc1dfdfd149a98b78","tokenExpiry":"1721087332","isRegistered":false,"firstName":"Portia","lastName":"Shepard","registeredAt":"1672585642","cohort":"LA 56"},{"email":"egook19@yale.edu","token":"bb6e13b3f037f856d1bb9608fd0c621d6a2a91de","tokenExpiry":"1720577150","isRegistered":false,"firstName":"Emlen","lastName":"Gook","registeredAt":"1683775506","cohort":"ECRI 7"},{"email":"drocks1a@yandex.ru","token":"e8a818868eba93a6c8ec66475111de0443dc1bb9","tokenExpiry":"1703012938","isRegistered":false,"firstName":"Debee","lastName":"Rocks","registeredAt":"1706023454","cohort":"WCRI 88"},{"email":"vdhennin1b@webmd.com","token":"a38dcb44964ee25e8a6dec9154038d5d9938a87a","tokenExpiry":"1699587212","isRegistered":false,"firstName":"Valina","lastName":"Dhennin","registeredAt":"1681065096","cohort":"WCRI 2"},{"email":"dcheasman1c@123-reg.co.uk","token":"94b64ff354e2f9fa7c8a037923bfa8b2dd866eeb","tokenExpiry":"1697933422","isRegistered":false,"firstName":"Dwayne","lastName":"Cheasman","registeredAt":"1683418150","cohort":"FTRI 8"},{"email":"ngladhill1d@bravesites.com","token":"d1e4e372f411f9b7078f2a40a97c922e29cc77d7","tokenExpiry":"1718918519","isRegistered":false,"firstName":"Nellie","lastName":"Gladhill","registeredAt":"1688963480","cohort":"FTRI 95"},{"email":"elivzey1e@yandex.ru","token":"2b1e273101fd6f2762a922de2b5da38bcc106e0a","tokenExpiry":"1709220017","isRegistered":true,"firstName":"Eziechiele","lastName":"Livzey","registeredAt":"1681975403","cohort":"PTRI 99"},{"email":"smingasson1f@geocities.jp","token":"11b06aee7ad84b24658444456a578d207869e512","tokenExpiry":"1728292948","isRegistered":true,"firstName":"Sallyanne","lastName":"Mingasson","registeredAt":"1683913073","cohort":"FTRI 75"},{"email":"hpattullo1g@cocolog-nifty.com","token":"f2006654fe52c91bb6953933346a297da119c8c5","tokenExpiry":"1724940391","isRegistered":true,"firstName":"Heall","lastName":"Pattullo","registeredAt":"1679673540","cohort":"FTRI 89"},{"email":"ascarlan1h@businessinsider.com","token":"9cff46cacb3a30c7b3b3b54f277e0aab630d45c4","tokenExpiry":"1721464700","isRegistered":true,"firstName":"Amaleta","lastName":"Scarlan","registeredAt":"1712701940","cohort":"NYC 29"},{"email":"zlawlance1i@gmpg.org","token":"bcb5ce7157e175a16358d596e508c2db76cfc1bc","tokenExpiry":"1722208526","isRegistered":true,"firstName":"Zonda","lastName":"Lawlance","registeredAt":"1701924480","cohort":"PTRI 85"},{"email":"lromney1j@independent.co.uk","token":"b85fe93921acfd5cf8d12b574dd3b47e4018e436","tokenExpiry":"1713504543","isRegistered":false,"firstName":"Livvy","lastName":"Romney","registeredAt":"1704174160","cohort":"WCRI 11"},{"email":"ballardyce1k@dell.com","token":"0f8a9aac15a71fa742c39d3096542281589366b8","tokenExpiry":"1718762499","isRegistered":true,"firstName":"Brockie","lastName":"Allardyce","registeredAt":"1679041128","cohort":"LA 32"},{"email":"jatthowe1l@omniture.com","token":"aca52ba0413382dde47301aeadf43a363e9997ba","tokenExpiry":"1698166033","isRegistered":false,"firstName":"Jaquelyn","lastName":"Atthowe","registeredAt":"1707608705","cohort":"LA 60"},{"email":"bguerre1m@ftc.gov","token":"7b1dd8462dbfad6cea9dad31f7261fef4ec8be95","tokenExpiry":"1718130214","isRegistered":true,"firstName":"Barn","lastName":"Guerre","registeredAt":"1716202221","cohort":"PTRI 71"},{"email":"cmillions1n@domainmarket.com","token":"5f6819ad846a8ea3e0880dd7fd17c7e1e2b55d90","tokenExpiry":"1706426083","isRegistered":false,"firstName":"Carina","lastName":"Millions","registeredAt":"1698636752","cohort":"NYC 70"},{"email":"mgrigorini1o@pinterest.com","token":"355d05a947933941c88073a12e6787e4e3199b2d","tokenExpiry":"1719008606","isRegistered":true,"firstName":"Micaela","lastName":"Grigorini","registeredAt":"1674400482","cohort":"CTRI 6"},{"email":"fredwin1p@lulu.com","token":"dd3f9f8550968f560e0beddeeb22e6ed345b66f3","tokenExpiry":"1720847163","isRegistered":false,"firstName":"Fran","lastName":"Redwin","registeredAt":"1690182467","cohort":"NYC 31"},{"email":"kfirmager1q@vistaprint.com","token":"dc439fab416b534d3f1691e2b5afa1cb67879d76","tokenExpiry":"1709501604","isRegistered":true,"firstName":"Kalina","lastName":"Firmager","registeredAt":"1696473707","cohort":"NYC 30"},{"email":"lblyth1r@dion.ne.jp","token":"a10da796c88d8b7cf9fb78132bf8ec674f2ccf6e","tokenExpiry":"1702709120","isRegistered":true,"firstName":"Lurline","lastName":"Blyth","registeredAt":"1693114651","cohort":"LA 0"},{"email":"jstowte1s@pbs.org","token":"f1f937e0689f1bc5c2c2c586282f591e7f65d53b","tokenExpiry":"1724992951","isRegistered":true,"firstName":"Julianne","lastName":"Stowte","registeredAt":"1680965284","cohort":"ECRI 38"},{"email":"tpatrie1t@economist.com","token":"650aaa0e6787da810abff83ac7745809a1cda53f","tokenExpiry":"1718005232","isRegistered":true,"firstName":"Tierney","lastName":"Patrie","registeredAt":"1702385719","cohort":"FTRI 5"},{"email":"gsherborne1u@ustream.tv","token":"37cfac40e6796b28a9f5887a0f7ce0bfc8ac4ecb","tokenExpiry":"1713943470","isRegistered":false,"firstName":"Gerladina","lastName":"Sherborne","registeredAt":"1711728496","cohort":"PTRI 58"},{"email":"pfarress1v@amazonaws.com","token":"bf080b5bb70d6c0a44ce68a8ab8a88e042b19cc1","tokenExpiry":"1711916219","isRegistered":true,"firstName":"Phil","lastName":"Farress","registeredAt":"1693852128","cohort":"ECRI 56"},{"email":"eallsop1w@deviantart.com","token":"1a5bea6e3a65ac46f6e21680ca0ba34f5e2122f2","tokenExpiry":"1701094713","isRegistered":false,"firstName":"Elisha","lastName":"Allsop","registeredAt":"1713801737","cohort":"FTRI 13"},{"email":"cskipton1x@4shared.com","token":"45278d736abab31f911da7c843e62b524b65c4f4","tokenExpiry":"1722876760","isRegistered":false,"firstName":"Carline","lastName":"Skipton","registeredAt":"1702155150","cohort":"PTRI 93"},{"email":"mnorthridge1y@google.com.au","token":"62f61c162c2ccffc5edcbdfdd02ec45cf1c39376","tokenExpiry":"1706595173","isRegistered":false,"firstName":"Mia","lastName":"Northridge","registeredAt":"1681630387","cohort":"WCRI 56"},{"email":"ifriedenbach1z@last.fm","token":"bd680ad939d973c3e0010ec7a2a2f1921fecc19d","tokenExpiry":"1718623836","isRegistered":true,"firstName":"Isaiah","lastName":"Friedenbach","registeredAt":"1702230245","cohort":"PTRI 16"},{"email":"tdulton20@sitemeter.com","token":"f2f3b6b7c83a606cf8cbef085140c25683e80a46","tokenExpiry":"1725180112","isRegistered":true,"firstName":"Tallulah","lastName":"Dulton","registeredAt":"1689429264","cohort":"ECRI 42"},{"email":"besherwood21@amazon.com","token":"c3beb14a7cd4e9fd4834cdf6594413ed971c01f3","tokenExpiry":"1706079008","isRegistered":false,"firstName":"Bel","lastName":"Esherwood","registeredAt":"1712417366","cohort":"NYC 84"},{"email":"akiley22@cpanel.net","token":"d2b06ea8d9e4a572cee6d4e2681f67f00894ad56","tokenExpiry":"1724941587","isRegistered":true,"firstName":"Anatol","lastName":"Kiley","registeredAt":"1714539754","cohort":"WCRI 58"},{"email":"cmeth23@zimbio.com","token":"8c4a90e9eb572a8dcfb306cc5c26d30387590e28","tokenExpiry":"1727396000","isRegistered":true,"firstName":"Corabel","lastName":"Meth","registeredAt":"1682784205","cohort":"LA 27"},{"email":"sterrill24@behance.net","token":"03eddbc6485cdd42c8f5cac45e249f6cdb7400eb","tokenExpiry":"1723586241","isRegistered":false,"firstName":"Shae","lastName":"Terrill","registeredAt":"1687562944","cohort":"CTRI 64"},{"email":"dmahedy25@wix.com","token":"ce05349faa503dc55d9038773796038a7c8df560","tokenExpiry":"1717922995","isRegistered":false,"firstName":"Dotty","lastName":"Mahedy","registeredAt":"1703040599","cohort":"FTRI 59"},{"email":"sattiwill26@wsj.com","token":"a09c0f90af57af5b39b94cd83d208ffb25111ccb","tokenExpiry":"1723749405","isRegistered":false,"firstName":"Salaidh","lastName":"Attiwill","registeredAt":"1710531917","cohort":"LA 46"},{"email":"bbomb27@cmu.edu","token":"a196221355ed403ad250ccebf4b4019028b1de19","tokenExpiry":"1716626869","isRegistered":true,"firstName":"Billi","lastName":"Bomb","registeredAt":"1703618131","cohort":"ECRI 93"},{"email":"bbedells28@lycos.com","token":"31d50e34784504d1ed2ba0fe979c98c64beaf408","tokenExpiry":"1721657038","isRegistered":true,"firstName":"Burty","lastName":"Bedells","registeredAt":"1703325382","cohort":"WCRI 70"},{"email":"dlemin29@nhs.uk","token":"b3f374ec819cae31abc03d8d4fd606182994b61c","tokenExpiry":"1726394947","isRegistered":false,"firstName":"De","lastName":"Lemin","registeredAt":"1712314981","cohort":"WCRI 79"},{"email":"mdraco2a@shinystat.com","token":"106220c3f67863ec7b60efa5d818a9615f1f6ae8","tokenExpiry":"1709423735","isRegistered":true,"firstName":"Morgen","lastName":"Draco","registeredAt":"1683637999","cohort":"CTRI 37"},{"email":"ugrassin2b@ucoz.com","token":"0bfe9f83752600b459f9299ef15aeff6e2403feb","tokenExpiry":"1707725381","isRegistered":true,"firstName":"Urban","lastName":"Grassin","registeredAt":"1710071474","cohort":"ECRI 67"},{"email":"aatto2c@va.gov","token":"d918b6a21507a3b203a595b174084d1bcbfd8643","tokenExpiry":"1714845693","isRegistered":false,"firstName":"Archy","lastName":"Atto","registeredAt":"1712043526","cohort":"NYC 32"},{"email":"lmurfill2d@earthlink.net","token":"1cfa1580520273a41a6101c1c40d9387a8240e15","tokenExpiry":"1724471765","isRegistered":true,"firstName":"Lothaire","lastName":"Murfill","registeredAt":"1704133684","cohort":"CTRI 45"},{"email":"aocrigan2e@ezinearticles.com","token":"7c84c138aaea08c8478456fe062b6026922c6bb0","tokenExpiry":"1723900980","isRegistered":true,"firstName":"Anne","lastName":"O'Crigan","registeredAt":"1676208159","cohort":"FTRI 81"},{"email":"nmeacher2f@barnesandnoble.com","token":"fe1032812102bf0930a52971a39da65b9d92be03","tokenExpiry":"1711033160","isRegistered":true,"firstName":"Nisse","lastName":"Meacher","registeredAt":"1681639572","cohort":"LA 30"},{"email":"dtraill2g@tamu.edu","token":"356be8cf14a78b06cb741c6c1082a5b2639dc100","tokenExpiry":"1722195575","isRegistered":false,"firstName":"Dix","lastName":"Traill","registeredAt":"1688441678","cohort":"FTRI 76"},{"email":"vproske2h@newsvine.com","token":"674dfc2ddb23a74b43373f5d42b23d29016408c2","tokenExpiry":"1713842238","isRegistered":false,"firstName":"Verla","lastName":"Proske","registeredAt":"1688943295","cohort":"CTRI 27"},{"email":"pdahmke2i@diigo.com","token":"d165ca490f364a0c81f1c3cf44f7bc5bd314c483","tokenExpiry":"1712885460","isRegistered":false,"firstName":"Pennie","lastName":"Dahmke","registeredAt":"1705568448","cohort":"NYC 63"},{"email":"akilroy2j@elpais.com","token":"651b1e2b34363ee9eaeb35d884cacce571bb20d3","tokenExpiry":"1710647532","isRegistered":true,"firstName":"Anestassia","lastName":"Kilroy","registeredAt":"1707162650","cohort":"NYC 94"},{"email":"rvanelli2k@xing.com","token":"362b7aeeb1b86eeeeb751f0feb30446f38b3551a","tokenExpiry":"1700611810","isRegistered":true,"firstName":"Remus","lastName":"Vanelli","registeredAt":"1688468428","cohort":"WCRI 63"},{"email":"gtarbert2l@discovery.com","token":"47b989b8ef9a9640e1301246469e90468b0409b4","tokenExpiry":"1728367924","isRegistered":true,"firstName":"Gil","lastName":"Tarbert","registeredAt":"1685191965","cohort":"LA 88"},{"email":"ysmelley2m@twitpic.com","token":"d9a8b41e99f1fc724641283b275b61141086ecef","tokenExpiry":"1712733227","isRegistered":true,"firstName":"Yulma","lastName":"Smelley","registeredAt":"1715333795","cohort":"CTRI 80"},{"email":"tlongworth2n@engadget.com","token":"5261c5b65c8539a3affa90614190fcedb77f1fac","tokenExpiry":"1728250140","isRegistered":false,"firstName":"Timmy","lastName":"Longworth","registeredAt":"1709278351","cohort":"PTRI 57"},{"email":"amollatt2o@printfriendly.com","token":"4019b03e69e2362fbd1a10fce561eb60bdc16b99","tokenExpiry":"1724376365","isRegistered":true,"firstName":"Arthur","lastName":"Mollatt","registeredAt":"1708084127","cohort":"NYC 55"},{"email":"gtaylor2p@nps.gov","token":"16ce55d2ccf612dc3285cfdee894fb8064453a4b","tokenExpiry":"1727617372","isRegistered":false,"firstName":"Griffin","lastName":"Taylor","registeredAt":"1707031385","cohort":"ECRI 10"},{"email":"ostudholme2q@pcworld.com","token":"9d62938833da712a578ade3e54cb627996a5464e","tokenExpiry":"1702451012","isRegistered":true,"firstName":"Odelinda","lastName":"Studholme","registeredAt":"1674695487","cohort":"CTRI 9"},{"email":"aduffill2r@nbcnews.com","token":"8ccc9ddb9f92b0ee6848dd20ca7f3fab1d98fbb0","tokenExpiry":"1707417687","isRegistered":true,"firstName":"Ardith","lastName":"Duffill","registeredAt":"1693295088","cohort":"FTRI 28"}] \ No newline at end of file diff --git a/scripts/db/mockData/MOCK_USERS.json b/scripts/db/mockData/MOCK_USERS.json deleted file mode 100644 index f048cac4..00000000 --- a/scripts/db/mockData/MOCK_USERS.json +++ /dev/null @@ -1,709 +0,0 @@ -[ - { - "firstName": "Testy", - "lastName": "McTesterson", - "email": "tester@codehammers.com", - "profilePic": "https://www.codesmith.io/hubfs/Screen%20Shot%202024-06-10%20at%2010.46.24%20AM.png", - "password": "$2a$10$kc8M2Pp3YPQ/L0zuNiP8NO/ktM3be2G/Jvz7JgfHKNwisEEmI6HhC" - }, - { - "firstName": "Corine", - "lastName": "Tugwell", - "email": "ctugwell0@ovh.net", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$RHjqSxTGqGH3sJ5M8y1N/ONYdf0lW/wiS.1Np0ygzdLXV1.iKNWHW" - }, - { - "firstName": "Brody", - "lastName": "Cumpton", - "email": "bcumpton1@bluehost.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$5MCj99AUmJLR8vNusi/kKulhGujk0g9TNp2HnNNad0diDKr/voqx6" - }, - { - "firstName": "Moselle", - "lastName": "Duro", - "email": "mduro2@technorati.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$3g77AxfV5hxy.8T7ibcsFeAzj0.8XLQtyWZ8LXMV/r1xFffb6CrQ6" - }, - { - "firstName": "Winifred", - "lastName": "Carnelley", - "email": "wcarnelley3@ucsd.edu", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$YtgZAtramhBGFDYgd4WJm.O1aSGVY9XpW6c3EvmgF/r016wO8c6Kq" - }, - { - "firstName": "Marchelle", - "lastName": "Truin", - "email": "mtruin4@stumbleupon.com", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$/aPHxsmvntnLCoYx87M43eJ5emMDz5By06sCDBJw0rV7b4zGEDRY6" - }, - { - "firstName": "Cally", - "lastName": "Gisbey", - "email": "cgisbey5@squarespace.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$ilsSaThdTHnBlNAcgzO3XuGbV4U95jRfnHfK.0vgh8Ryv527n17IW" - }, - { - "firstName": "Arlina", - "lastName": "Moodie", - "email": "amoodie6@twitpic.com", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$.rndahfCenIT18WWTCOhn.GaSDoPsQJu.DqlPREIyuzqypAGcReKO" - }, - { - "firstName": "Phineas", - "lastName": "Coon", - "email": "pcoon7@hc360.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$HCmJy4bzQALHWoJGiDlLqe0uZNACP3QyligsCBs6YgkPcGvhWK6SK" - }, - { - "firstName": "Shurlock", - "lastName": "Tytcomb", - "email": "stytcomb8@google.it", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$FqL6UUoRp24Rr//9tRG18uN4QGUoggKZ1p78oeQZKJ6HnPgWEMNZe" - }, - { - "firstName": "Ermina", - "lastName": "Guyton", - "email": "eguyton9@blog.com", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$rMnbMAnBHkfzsyvcQktDzuHXs.cL43euEuC/sBqBloZdmETYV4Tra" - }, - { - "firstName": "Shelton", - "lastName": "Halwood", - "email": "shalwooda@sciencedirect.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$MZt/Qd/2CqKCCBuO/b3wI.gF4Y5Ggk6hb9s475rSc1UKWPXqzvusS" - }, - { - "firstName": "Nigel", - "lastName": "Clemenzo", - "email": "nclemenzob@fotki.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$wDWpM3JEnwGmaml0aTc7yO6Qqg1083sLQwpirYpc4kCA4jJRfytGW" - }, - { - "firstName": "Colver", - "lastName": "Oswell", - "email": "coswellc@wsj.com", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$GIVKx6GIDuuez2wyzQ1uKunCOLyk95cU1Cix3K.Apz31eXyk4qR1a" - }, - { - "firstName": "Saundra", - "lastName": "Normabell", - "email": "snormabelld@businessinsider.com", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$zanHPCuY87iOLnK8l.izQObTM5z.Lv.0NTP4CJUR6RO/UOcwVzw46" - }, - { - "firstName": "Grant", - "lastName": "Chasney", - "email": "gchasneye@mediafire.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$Zft06tsFJC0qa1cWhF8q4u29XSmdPd59l7A0NuwUZGyNDhOzJmHkO" - }, - { - "firstName": "Franni", - "lastName": "Chance", - "email": "fchancef@ted.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$v4piVmYED/yGy7Z02fIN1eeDjW3DWvHoMJkVIdKDe6xCuahM5XGxS" - }, - { - "firstName": "Clarance", - "lastName": "Meecher", - "email": "cmeecherg@addthis.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$XS0Bcgj6KKZ6/bO96j2Ci.tS2lQ4SwiWlwsZruORpp0bCDFswIEyK" - }, - { - "firstName": "Katharine", - "lastName": "Lancett", - "email": "klancetth@sfgate.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$WJfAa2JyWAeNTby65GBnI.k4tgBrVkNBsVhQHYIuv5o83TBmXP6VW" - }, - { - "firstName": "Margaret", - "lastName": "Dubber", - "email": "mdubberi@dropbox.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$k3/k6SSUAvw4qEBZAitTzOlQym0gFVcVQU4z88nEN0J96BwkUkah." - }, - { - "firstName": "Addy", - "lastName": "Fass", - "email": "afassj@vistaprint.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$rqjbsf2iTQmKu1nphUSiseQXyQkw0P5P7F4Wx0Mwug06Vvwtup5Ie" - }, - { - "firstName": "Sollie", - "lastName": "Puckinghorne", - "email": "spuckinghornek@topsy.com", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$hozq/j4uwMjwarUfJvwzE.8RYZVmMU5j.Oh54TV10QnPJtOSEAkA6" - }, - { - "firstName": "Xena", - "lastName": "Tomczynski", - "email": "xtomczynskil@ted.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$Rv1D7q1enZ8rYwGbeMRgKeelEc4Lpx0OjOUhNXKFb3KpZq3j/K50K" - }, - { - "firstName": "Harmonie", - "lastName": "Karpinski", - "email": "hkarpinskim@g.co", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$f1ISgk3vWVJUxAziAVPYy.3UBF9NohPeLwdT97X9rZPHQuLFZsWli" - }, - { - "firstName": "Marielle", - "lastName": "Crocket", - "email": "mcrocketn@craigslist.org", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$.jPCYnepe4Nwb5rv.kddHO1LkIw.q8cgd6DHk5SV8d60QHyOu5ylm" - }, - { - "firstName": "Ulrick", - "lastName": "Blasing", - "email": "ublasingo@yahoo.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$TtW5XG3xux16EANFLnYjqO5WxkKUPKVTVBW/cq1DWXsYLieazZkfm" - }, - { - "firstName": "Cheri", - "lastName": "Danielsson", - "email": "cdanielssonp@example.com", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$DI4MwyXAT3TIwQBbDUO3SenUmXSjF.WZFrNih6eMpzY6eg2uX9HQu" - }, - { - "firstName": "Durand", - "lastName": "Joron", - "email": "djoronq@google.cn", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$JnNpCVE0Nb46kM4Qtkbha.qQeYfK1HUFfWrSo1SGv758RvktY/8qO" - }, - { - "firstName": "Kristien", - "lastName": "Burgett", - "email": "kburgettr@kickstarter.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$d1/XXb1OflCvAnGE2Cd/gOB9G/EhjVjwPm89O5rTYa.m7jumCqteq" - }, - { - "firstName": "Kaia", - "lastName": "Fassmann", - "email": "kfassmanns@ted.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$yStUrrgR9Q2yg8TAv.IFTepba9OVQjnCCpYklDXNOPKvWQzm/f71W" - }, - { - "firstName": "Lockwood", - "lastName": "Moxham", - "email": "lmoxhamt@wikia.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$SunYJs.bPKUUtL1qGP0EOOaljWJA5rkwSV2eheBj4qAi8S2IsY.36" - }, - { - "firstName": "Tessie", - "lastName": "Sugden", - "email": "tsugdenu@npr.org", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$hKCgoJybjluN7YTcW3fDtuHGw9XZExEzP.SM9dS0/39mFi8AS4xvG" - }, - { - "firstName": "Rea", - "lastName": "Jeremiah", - "email": "rjeremiahv@wikispaces.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$wX974k1kacRzEfdHxGJd/.IIMrQnt/ZLeMfE/zHaexPQrweS4fNOm" - }, - { - "firstName": "Cassie", - "lastName": "Meadows", - "email": "cmeadowsw@smugmug.com", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$G.JEfN.EgUQv2lxHhuyP5.Fgz5yNuA.lGIocNiCqHqePbmyGq8mbq" - }, - { - "firstName": "Kelci", - "lastName": "Bastide", - "email": "kbastidex@latimes.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$tGExVET9Zoo.CiNeh9M6k.ulg8WoyFw26xlz0cZq2e5ZNbgfTE.Bu" - }, - { - "firstName": "Thurston", - "lastName": "Speechly", - "email": "tspeechlyy@plala.or.jp", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$PecBrxyFG0Ul/EqlBUKq7.lixy5WoSLvT6wMUUDY2WzTMwvFPvhyq" - }, - { - "firstName": "Silas", - "lastName": "Reyes", - "email": "sreyesz@google.co.jp", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$YjNYJGOUfv.Np8pkgjDyA.2XJ1YUDtux4H708Ia7ZYL9Mv5GHMUs2" - }, - { - "firstName": "Marley", - "lastName": "Boshard", - "email": "mboshard10@tiny.cc", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$s34llzRxpdigLFo0dO3Zp.JM9X3Bm2U.H1R3tNXNrieNoIfwWeHcy" - }, - { - "firstName": "Eb", - "lastName": "Dargie", - "email": "edargie11@artisteer.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$YKro.0iuOHI9KyY4.IQv9eSWtgeP/KQ9h3tKxPFxPBaaCzlj9gcba" - }, - { - "firstName": "Porter", - "lastName": "Paladini", - "email": "ppaladini12@deliciousdays.com", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$aKFXB4ZQTOX1nJUdjnFGmO/6eU/z3QCaKtvp51sQSpHdHDIsnoHqq" - }, - { - "firstName": "Dian", - "lastName": "Dackombe", - "email": "ddackombe13@ihg.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$m16Q41BtIR7PsL.cEp1qJ.2b4zCFRYcWR//CLZ70.BGeHb5BazpHe" - }, - { - "firstName": "Freedman", - "lastName": "Scrafton", - "email": "fscrafton14@posterous.com", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$UseDUfEbBuBVQosgK9hLyOzBIwiFGmhRiaRaBfmKF2oHyR/ptXL9S" - }, - { - "firstName": "Tabbitha", - "lastName": "Jolliffe", - "email": "tjolliffe15@bbb.org", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$/BRp.zCmtbUqrBpdfDjxH.fzzqooeJsgMSJj9tRLQV9jrG785mI3q" - }, - { - "firstName": "Jordon", - "lastName": "Ganley", - "email": "jganley16@geocities.jp", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$SpNKlyf82tnRWgiMVFGHnur2fyfeVIAfHG2BIsed/Hu5lvRYd6zaq" - }, - { - "firstName": "Annora", - "lastName": "Brigge", - "email": "abrigge17@joomla.org", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$fNPrRI/UzhvFJ1eOZKQNOe2SriLmDSoibNWPqKozgjnT13q3NQ5/O" - }, - { - "firstName": "Bethanne", - "lastName": "Osband", - "email": "bosband18@blinklist.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$db2.QwkRMc2UqnW.wbRv6uT2ZzGKGMruV/rZeVv/.ELxk0wSkGRa6" - }, - { - "firstName": "Hedda", - "lastName": "Tallquist", - "email": "htallquist19@cisco.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$e7REOMvBqIjEC1fDI0uLNOMkCJRZvhO4KdOYvtsoTmN/A0zC5ZoGq" - }, - { - "firstName": "Lynelle", - "lastName": "Grosvener", - "email": "lgrosvener1a@google.cn", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$bQgNEej3PToxLUTbeTEsuODYNcwlxAnks0PLKJa/AT4y1ounPuq2O" - }, - { - "firstName": "Lenee", - "lastName": "Pethybridge", - "email": "lpethybridge1b@chron.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$eCwUl.lf05F/Bop6vUElveEyM8pjYRg82Dq4DdUiVzqAcv5FHaRCG" - }, - { - "firstName": "Ninnette", - "lastName": "Maden", - "email": "nmaden1c@sciencedirect.com", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$ijlhLATjvzWv2ovikfDH/ufuoEFwqK9QNiryzymkB6LWAig2p8K3m" - }, - { - "firstName": "Jolynn", - "lastName": "Catenot", - "email": "jcatenot1d@oakley.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$aSzNb6A.kYflbnn/xwJoqOzCX9sIDCkNeMPw7zjVgEGJnht8/qX1i" - }, - { - "firstName": "Marabel", - "lastName": "Puleston", - "email": "mpuleston1e@utexas.edu", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$kDdrnGvJhkScD8smnhXGV.RNBbvMAaIcl2bGLg4VmIekVcReNtz7." - }, - { - "firstName": "Bryn", - "lastName": "Arias", - "email": "barias1f@flavors.me", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$ZajYO4RNsq8/qA9Jg1vNJ.lADYiuFDx3BB8rldJ32GOXqROluDfbi" - }, - { - "firstName": "Arni", - "lastName": "Jertz", - "email": "ajertz1g@tuttocitta.it", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$YLt1lVwcCc/3PiHd6UOsXevxvEiNbEjUq1eIfYxeJ8ngcRFCpX5hi" - }, - { - "firstName": "Maegan", - "lastName": "Mulhall", - "email": "mmulhall1h@wikipedia.org", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$Aif6H2Z.giCkMXGBxJX3TutzAvAuAJLijp6r.G4wQYzi/WW60sLaa" - }, - { - "firstName": "Nicolai", - "lastName": "Brugsma", - "email": "nbrugsma1i@4shared.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$GQIoJKuUvoZfHY.Z2YfRouNTnzI1GfJwperv6inTblhhLAShaViOu" - }, - { - "firstName": "Bryan", - "lastName": "Heffy", - "email": "bheffy1j@cbsnews.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$QlE4KlmsB3rlD4XZKABi0.BafpsCBdHddFtlZ2nYJyyj9tpF2jw5i" - }, - { - "firstName": "Donavon", - "lastName": "Osichev", - "email": "dosichev1k@pinterest.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$9JghLaPXIX4RoBxUq6umY.itdAgsBWFito4xcu2XdC5XTTn/ikKRq" - }, - { - "firstName": "Kennan", - "lastName": "Dugget", - "email": "kdugget1l@opensource.org", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$3DuJ6wsSdMsZk.7DcoTDU.cOMrl7cJ3T.xw.Qhu98KkOeZyJnAPn2" - }, - { - "firstName": "Paton", - "lastName": "Climance", - "email": "pclimance1m@webnode.com", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$GsRvHQHiFgafXSxx0lV9a.COTn6y7ccTXjtqaQrpGlObrUtv5pxHm" - }, - { - "firstName": "Caitrin", - "lastName": "McAllister", - "email": "cmcallister1n@ft.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$oemDl2Fl9xkIlQK4roEkvuPV8YlXJuR/QSLO2CuYixpspPn58c3IK" - }, - { - "firstName": "Sephira", - "lastName": "Kaming", - "email": "skaming1o@about.me", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$D9vgbSRRKKL9VF1h3yaAnuzXsi7C2A43Djd8G/FKJFK.coCXx4WTW" - }, - { - "firstName": "Fraser", - "lastName": "Londsdale", - "email": "flondsdale1p@freewebs.com", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$f6XFReXajluyek3Jzd.dL.uMeoEOZQUmeGzcdboxW203TMo7QYXne" - }, - { - "firstName": "Alyssa", - "lastName": "Bangham", - "email": "abangham1q@usgs.gov", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$0mqFf987WSqD2Dt6k9bvCucM2UrbCCYIfs0xl9LeCbV4s5bwhXGgC" - }, - { - "firstName": "Clarette", - "lastName": "Alcock", - "email": "calcock1r@amazonaws.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$QGDxhItZ39N0pDJNB/IOuu/EweEPoT9KlodGaJxhLMZIEhc0xmMqW" - }, - { - "firstName": "Lizbeth", - "lastName": "France", - "email": "lfrance1s@yahoo.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$LunBNZ8SvmtISZ92eEu.Xek8.vDQZQnDV0QZ7Eo20LxZuRzNquOlm" - }, - { - "firstName": "Abramo", - "lastName": "Sparkwell", - "email": "asparkwell1t@berkeley.edu", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$QYm1ge0tj0gSdDL7IRWEzeqqaenO6Zas9RhHKFYhnj8VStVeVW6gq" - }, - { - "firstName": "Darb", - "lastName": "Coen", - "email": "dcoen1u@prlog.org", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$1bhpvbesE0IVgwJnM4lqc.GfjG5FK0omsaaueVs/c08OIs3ebSxX." - }, - { - "firstName": "Gusty", - "lastName": "Besnardeau", - "email": "gbesnardeau1v@themeforest.net", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$6vCDDrNMFOZl5K5CM9KxROmEumfcGXqYU7tkg65yCAccqF7b9H1km" - }, - { - "firstName": "Randy", - "lastName": "Verriour", - "email": "rverriour1w@ebay.co.uk", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$ND9dRuKq/p0TyIXDyCXUhetI35HULYyCLtfvfba.wYHO9VlDCKq/e" - }, - { - "firstName": "Israel", - "lastName": "Canti", - "email": "icanti1x@businesswire.com", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$NHNl9.KpZB60jKCrqD2MG.y5y87LmabkqK.lrsFcmRCFOBYSLUjqG" - }, - { - "firstName": "Micky", - "lastName": "Dunseath", - "email": "mdunseath1y@miibeian.gov.cn", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$6uRJm/WXtPkWGA4W62HFU.RmEzyUu5siHS.ZsXiI.OXTZOCN.Rjzy" - }, - { - "firstName": "Gabi", - "lastName": "Hardcastle", - "email": "ghardcastle1z@weebly.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$cdZeQHxIqJCzkwQzUJpg9egznL4FVgm.n6exQ7VT4PfGrpzeNBAUO" - }, - { - "firstName": "Rakel", - "lastName": "Scothron", - "email": "rscothron20@yellowbook.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$rc.SQHRUkMcnmeutSbPEeeK8k6DVtEL6lW58Pc/ljrIC5/iYs5Dk." - }, - { - "firstName": "Gretel", - "lastName": "Sitford", - "email": "gsitford21@tinyurl.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$vgwSM.REDV6QIt0rNo9K5.riA7jke0nZC5Rc09Kaf0PgFYQkRhBli" - }, - { - "firstName": "Rosalinda", - "lastName": "Naisby", - "email": "rnaisby22@nationalgeographic.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$riw7asjBJdH3HFI/fNOHre05RD8Tn9ewNoVJBxYA.L3FB58aYdfE." - }, - { - "firstName": "Thaddus", - "lastName": "Waddell", - "email": "twaddell23@nymag.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$hahavWujiKjjPBYImkUA9e73YcfKBZeNVP4I.ezip6sEyQPVc8.cW" - }, - { - "firstName": "Nadia", - "lastName": "Zeale", - "email": "nzeale24@google.ru", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$N01TsCv2u6LBGhpHK8z8VOCRD2vG1sxRIuZYYlyX/4iEtA7mom9wW" - }, - { - "firstName": "Emmett", - "lastName": "Buckell", - "email": "ebuckell25@reddit.com", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$U16tvQU51kBO8HfIdCrGx.on4MEFOnt0a2.m51C7rOBIS0rzOf9eO" - }, - { - "firstName": "Lavinia", - "lastName": "Baume", - "email": "lbaume26@tinyurl.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$2So/b3QTY/PNvNWervUONeEETF2rviHpXrUrxnAnnnH2QZvTIh5gW" - }, - { - "firstName": "Janine", - "lastName": "Kitt", - "email": "jkitt27@wsj.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$QB9d3PmZ4mNopfy3RzOdC.O2OFnR8JEPsl2JQllkcnCyKfjFzMRvO" - }, - { - "firstName": "Beatrix", - "lastName": "Healey", - "email": "bhealey28@amazon.co.jp", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$r3VCaLaRVQx.CMUBVwBeo.QVhGKc8Z7TztHXIKPLZNuC9mL8ayxpu" - }, - { - "firstName": "Simone", - "lastName": "Buske", - "email": "sbuske29@soundcloud.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$sVfBQmixhBsO2UweyDGB.urBXwcbCs4/X8ed2UKbYlmnb6iagTcbC" - }, - { - "firstName": "Cristine", - "lastName": "Gaddesby", - "email": "cgaddesby2a@senate.gov", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$iLTB1MM2I1xWA3VL7kTe.OHv.IzSntFeoc.FDn8pWnOJgw3P00roO" - }, - { - "firstName": "Marta", - "lastName": "Daveren", - "email": "mdaveren2b@odnoklassniki.ru", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$TBTRKpaEEJyTh9FTw2h73uGeHyj7ZGazo7xi.cA48R69jbjbLY4di" - }, - { - "firstName": "Nanon", - "lastName": "Gligoraci", - "email": "ngligoraci2c@addthis.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$u/nIHSMhz9vSiWWzISARc.pAAtSUEPvSWY1pZHO4DG5Epc7t/DDsy" - }, - { - "firstName": "Donall", - "lastName": "Frapwell", - "email": "dfrapwell2d@hostgator.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$iHKNdye22EulFKSVN5.tNOcTpJlqu0O6acKJPwCCyOil1zF3FkdIy" - }, - { - "firstName": "Beverlee", - "lastName": "Bangham", - "email": "bbangham2e@tamu.edu", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$wXNZnEE9TL8tgeKuWKyKRubR/IgUjCmKZWTd9wc8sUjA8QZ93vthq" - }, - { - "firstName": "Englebert", - "lastName": "Bancroft", - "email": "ebancroft2f@ow.ly", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$EcjGdJhrox/tXFARNuuMmeBQubqJjgoXLq7eZYWo/er3C6gppLfby" - }, - { - "firstName": "Siegfried", - "lastName": "Castillou", - "email": "scastillou2g@reddit.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$DrOmLH.JF0oi6FR9IXr8VOmSHP0C/I9WZnuStZgrOUUi1dK/wlf0i" - }, - { - "firstName": "Marvin", - "lastName": "Cranke", - "email": "mcranke2h@marketwatch.com", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$.Wg0UV/Dmd/zViYP/OnvJ.X09ZBZY7BKMSiV9h7aq0DD9lRUreND6" - }, - { - "firstName": "Arne", - "lastName": "Rummin", - "email": "arummin2i@is.gd", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$AjZSO39N.UP3GjEXbSuU8.d5d9V1Y/8qK6mt1.QYgwgpKR07cyeIG" - }, - { - "firstName": "Seumas", - "lastName": "Feldberger", - "email": "sfeldberger2j@ning.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$2883OY2HM07TY6fqkKCI9OWKZEo6ZeE/RJpa3g3KzG6YnvQlGLljC" - }, - { - "firstName": "Hilda", - "lastName": "Worham", - "email": "hworham2k@mail.ru", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$kOlY/HxnObnwym4y0pIgoOFPKa9a8RL6XA3pDj.iFlIG44F3NXNgm" - }, - { - "firstName": "Winny", - "lastName": "O'Glessane", - "email": "woglessane2l@deviantart.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$IjXeIf6njEA1Kq/.zd0IFOzWWeBmKPfg1EQsMutjP08Yjdabx/PZe" - }, - { - "firstName": "Gwenora", - "lastName": "Agge", - "email": "gagge2m@unesco.org", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$vJ5BSyLvZliREEMdxLrPe.qHrV6XnUPRWZL25tp1J22604Wn5uCP." - }, - { - "firstName": "Piggy", - "lastName": "Torrisi", - "email": "ptorrisi2n@goodreads.com", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$E/yrtzHHJpaYFjb00b8sMO2IgW9H7vNUV9/C7V/VOZwAqquEX/q1m" - }, - { - "firstName": "Niki", - "lastName": "Glaysher", - "email": "nglaysher2o@kickstarter.com", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$3IuzlNTRGZcFzLhHhA7.TujKVstdPVzFPA/IUQxBUcZFCmWeb4rn." - }, - { - "firstName": "Pail", - "lastName": "Vasechkin", - "email": "pvasechkin2p@vk.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$nl9fW9EQWV37BP0MFeY5HuS1xZ64Lq.n4mPr5x0IML8JIuM5RRB46" - }, - { - "firstName": "Gav", - "lastName": "Renneke", - "email": "grenneke2q@hp.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$NzSQF086.xq.2E2jFkpY5O.qNJyVq2Fkd6iwAHKrFDuIx2G705cPO" - }, - { - "firstName": "Perle", - "lastName": "Rizziello", - "email": "prizziello2r@mashable.com", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$mYw63dkZFGwy4N8d5.8S2utcYeiiNwRRbUL9KyChIYpYudxekQ7KG" - } -] diff --git a/scripts/db/mongoInit/mongo-init.js b/scripts/db/mongoInit/mongo-init.js deleted file mode 100644 index 39813b6e..00000000 --- a/scripts/db/mongoInit/mongo-init.js +++ /dev/null @@ -1,22 +0,0 @@ -db = db.getSiblingDB('admin'); -db.auth(process.env.MONGO_INITDB_ROOT_USERNAME, process.env.MONGO_INITDB_ROOT_PASSWORD); - -db = db.getSiblingDB(process.env.MONGO_INITDB_DATABASE); -db.createUser({ - user: 'root', - pwd: 'testpass', - roles: [ - { - role: 'readWrite', - db: process.env.MONGO_INITDB_DATABASE, - }, - ], -}); - -db.createCollection('alumnis'); -db.createCollection('graduateinvitations'); -db.createCollection('users'); -db.createCollection('profiles'); -db.createCollection('forums'); -db.createCollection('threads'); -db.createCollection('posts'); diff --git a/scripts/db/mongoInit/seed-base-collections.js b/scripts/db/mongoInit/seed-base-collections.js deleted file mode 100644 index 4e2d3298..00000000 --- a/scripts/db/mongoInit/seed-base-collections.js +++ /dev/null @@ -1,19580 +0,0 @@ -console.log('๐ŸŒฑ Seeding base collections'); - -const mockAlumnis = [ - { - company: '1-800 Flowers', - name: 'Daniel Reilley', - email: 'dannyreilley@gmail.com', - linkedIn: 'https://www.linkedin.com/in/daniel-reilley/', - campus: 'LA', - cohort: '45', - jobTitle: 'Full-Stack Application Developer', - industry: 'Retail', - cities: ['Gilbert', 'Nashville', 'Paris'], - }, - { - company: '1Password', - name: 'William Quan Nguyen', - email: 'william.nguyen202103@gmail.com', - linkedIn: 'https://www.linkedin.com/in/william-nguyen202103/', - campus: 'PTRI', - cohort: '10', - jobTitle: 'Software Engineer intern', - industry: 'Security/Data Privacy', - cities: ['Dallas'], - }, - { - company: '1StopBedrooms', - name: 'David Yedid', - email: 'diyedid@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yedid/', - campus: 'NYC', - cohort: '15', - jobTitle: 'VP, Projects (working under CTO); and General Counsel', - industry: 'E-Commerce', - cities: ['Jersey City'], - }, - { - company: '1upHealth', - name: 'Robleh Farah', - email: 'farahrobleh1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/farahrobleh', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer', - industry: 'Health Tech', - cities: ['St. Louis'], - }, - { - company: '23andMe', - name: 'Jiwon Chung', - email: 'jiwon.chung07@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jchung07/', - campus: 'LA', - cohort: '48', - jobTitle: 'Software Engineer', - industry: 'Biotech', - cities: ['Riverside', 'Jacksonville', 'Irving'], - }, - { - company: '2U', - name: 'Rebecca Shesser', - email: 'rebeccashesser@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rebeccashesser/', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Anchorage', 'Honolulu', 'Scottsdale'], - }, - { - company: '98point6', - name: 'Avi Kerson', - email: 'avitacos@gmail.com', - linkedIn: 'https://www.linkedin.com/in/avi-kerson/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['Chandler', 'London'], - }, - { - company: 'AAA (Club Labs)', - name: 'Michael Chan', - email: 'mckchan13@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael-ck-chan/', - campus: 'PTRI', - cohort: '5', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: ['Baltimore', 'Aurora'], - }, - { - company: 'Aavia', - name: 'Wayland SIngh', - email: 'wmsingh@ucdavis.edu', - linkedIn: 'https://www.linkedin.com/in/wayland-singh/', - campus: 'NYOI', - cohort: '4', - jobTitle: 'Backend Engineer', - industry: 'Healthtech/Healthcare', - cities: ['Glendale', 'Toledo', 'Miami', 'Paris'], - }, - { - company: 'Abstract', - name: 'Tyler Kneidl', - email: 'tskneidl@gmail.com', - linkedIn: 'https://www.LinkedIn.com/in/tylerkneidl', - campus: 'NYC', - cohort: '25', - jobTitle: 'Full Stack Engineer', - industry: 'Software Development', - cities: ['Los Angeles', 'Scottsdale'], - }, - { - company: 'Accenture', - name: 'Adrian Reczek', - email: 'adrianwreczek@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adrian-reczek/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Full Stack Software Engineer, Senior Analyst', - industry: 'Consulting', - cities: ['Mexico City', 'Aurora'], - }, - { - company: 'Accenture', - name: 'Colin Roemer', - email: 'colin.roemer@gmail.com', - linkedIn: 'https://www.linkedin.com/in/colinroemer/', - campus: 'LA', - cohort: '23', - jobTitle: 'Node Microservices Engineer', - industry: '', - cities: ['Portland', 'Scottsdale', 'Oakland', 'Fresno'], - }, - { - company: 'Accenture', - name: 'Shamilah Faria', - email: 'shamilahfaria@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shamilah-faria/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Software Artisan', - industry: 'Technology', - cities: ['Mumbai'], - }, - { - company: 'Accrete AI', - name: 'Andrew Moy', - email: 'ajmoy35@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andrewmoy/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Full Stack Engineer', - industry: 'Artificial Intelligence', - cities: ['San Francisco', 'Glendale'], - }, - { - company: 'Acorns', - name: 'Zahaan Jasani', - email: 'zahaanjasani@gmail.com', - linkedIn: 'https://www.linkedin.com/in/zahaan-jasani-183913126/', - campus: 'LA', - cohort: '26', - jobTitle: 'Software Engineer II - Backend', - industry: 'Finance', - cities: ['Chandler', 'Sรฃo Paulo'], - }, - { - company: 'Acronis', - name: 'Paul Kim', - email: 'Khyunwoo1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/paulyjkim', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: '"Data Protection/ Cyber Security"', - cities: ['Chesapeake', 'Fort Worth', 'Denver', 'Kansas City'], - }, - { - company: 'ActiveCampaign', - name: 'Jacob Gillan', - email: 'jacobgillan9@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jacob-gillan/', - campus: 'FTRI / CTRI', - cohort: '15', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['San Francisco', 'Jacksonville', 'Mumbai'], - }, - { - company: 'Actuate', - name: 'Braddon Murphy', - email: 'braddonmurphy@gmail.com', - linkedIn: 'https://www.linkedin.com/in/braddonlee/', - campus: 'FTRI', - cohort: '6', - jobTitle: 'Software Engineer', - industry: 'Security', - cities: ['Winston-Salem', 'Tucson'], - }, - { - company: 'Acuity Brands', - name: 'Logan Coale', - email: 'lcoale@gmail.com', - linkedIn: 'https://www.linkedin.com/in/logancoale/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Senior Software Engineer', - industry: 'Industrial Lighting/IoT', - cities: ['Corpus Christi', 'Madison'], - }, - { - company: 'Adaptive Biotechnologies', - name: 'Conor Chinitz', - email: 'conorchinitz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/conorchinitz', - campus: 'FTRI', - cohort: '7', - jobTitle: 'Software Engineer III', - industry: 'Biotech', - cities: ['Gilbert'], - }, - { - company: 'Adobe - Frame.io', - name: 'Anna Brakowska', - email: 'anna.brakowska91@gmail.com', - linkedIn: 'https://www.linkedin.com/in/anna-brakowska/', - campus: 'NYC', - cohort: '7', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Toronto', 'Arlington'], - }, - { - company: 'Affirm', - name: 'Oscar Chan', - email: 'chanoscar0@gmail.com', - linkedIn: 'https://www.linkedin.com/in/occhan/', - campus: 'LA', - cohort: '26', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Cleveland', 'St. Petersburg', 'Albuquerque'], - }, - { - company: 'Age of Learning', - name: 'Brian Kwok', - email: 'brian.kwok15@gmail.com', - linkedIn: 'https://www.linkedin.com/in/briankwok15/', - campus: 'LA', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Education', - cities: ['Washington'], - }, - { - company: 'Age of Learning', - name: 'Tre Hultzen', - email: 'hultzentre@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tre-hultzen/', - campus: 'LA', - cohort: '45', - jobTitle: 'Web Services Engineer', - industry: 'Education', - cities: ['Honolulu'], - }, - { - company: 'Agua Caliente Casinos', - name: 'Mark Alexander', - email: 'markalexander72@gmail.com', - linkedIn: 'https://www.linkedin.com/in/marka772', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Web Developer', - industry: 'Gaming/eSports', - cities: ['Fort Wayne'], - }, - { - company: 'AI Insurance', - name: 'James Edwards III', - email: 'j.olden.edwards@gmail.com', - linkedIn: 'https://www.linkedin.com/in/james-edwards-547307242/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Riverside', 'Durham', 'Louisville'], - }, - { - company: 'Air Labs, Inc.', - name: 'Madison Brown', - email: 'mbrown3391@gmail.com', - linkedIn: 'https://www.linkedin.com/in/madisondbrown/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Sr. Software Engineer', - industry: 'Digital Asset Management', - cities: ['Atlanta', 'Jacksonville', 'Tampa', 'Washington'], - }, - { - company: 'Airtable', - name: 'Clara Kim', - email: 'clarayhkim96@gmail.com', - linkedIn: 'https://www.linkedin.com/in/clarakm/', - campus: 'LA', - cohort: '34', - jobTitle: 'Full-stack Engineer', - industry: 'SaaS', - cities: ['Baltimore', 'Seattle', 'Arlington', 'El Paso'], - }, - { - company: 'Ajmadison', - name: 'Shlomo porges', - email: 'porges.s@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shlomoporges/', - campus: 'NYC', - cohort: '10', - jobTitle: 'DB architect', - industry: 'Appliances', - cities: ['Denver', 'Paris'], - }, - { - company: 'Albert', - name: 'Will Bladon', - email: 'whbladon@gmail.com', - linkedIn: 'https://www.linkedin.com/in/will-bladon/', - campus: 'LA', - cohort: '40', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Jersey City', 'Phoenix', 'Scottsdale'], - }, - { - company: 'Alchemy', - name: 'Mathias Perfumo', - email: 'mathias.perfumo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mathiasperfumo', - campus: 'FTRI / CTRI', - cohort: '7', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Columbus'], - }, - { - company: 'Aledade', - name: 'Etana Kopin', - email: 'claws.33@gmail.com', - linkedIn: 'https://www.linkedin.com/in/egkopin/', - campus: 'PTRI', - cohort: '8', - jobTitle: 'Senior Software Engineer', - industry: 'Healthcare', - cities: ['Glendale', 'San Francisco'], - }, - { - company: 'Alethix', - name: 'Mark Dolan', - email: 'mark.dolan3@gmail.com', - linkedIn: 'https://www.linkedin.com/in/markdolan30/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Frontend Software Engineer', - industry: 'Government services', - cities: ['Scottsdale', 'Saint Paul'], - }, - { - company: 'Algolia', - name: 'Jacob Cole', - email: 'jacob.cole@gmail.com', - linkedIn: 'jacobcole34', - campus: 'PTRI', - cohort: '8', - jobTitle: 'Solutions Engineer', - industry: 'Software / Tech', - cities: ['Los Angeles'], - }, - { - company: 'Allen Institute', - name: 'Joseph Heffernan', - email: 'Interim17@gmail.com', - linkedIn: 'LinkedIn.com/in/Joseph-heffernan', - campus: 'LA / WCRI', - cohort: '53', - jobTitle: 'Software Engineer Front End', - industry: 'Biotech', - cities: ['Fort Worth', 'Jersey City', 'Portland'], - }, - { - company: 'Alleo.ai', - name: 'Rawan Al Bairouti', - email: 'rawan.bairouti@gmail.com', - linkedIn: 'linkedin.com/in/rawanbairouti', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Lead Developer ', - industry: 'Software Solutions/Developer Tools', - cities: ['Reno', 'Boston', 'Long Beach', 'Nashville'], - }, - { - company: 'Alloy', - name: 'Jacqueline Chang', - email: 'jqw.chang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jqw-chang/', - campus: 'NYC', - cohort: '7', - jobTitle: 'Software Engineer II', - industry: '', - cities: ['El Paso', 'Lincoln', 'Pittsburgh', 'Oklahoma City'], - }, - { - company: 'Alloy', - name: 'Sophie Nye', - email: 'sophie.nye@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gsophienye/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Software Engineer II', - industry: 'Fintech', - cities: ['Fort Wayne', 'Fresno', 'Memphis', 'Lincoln'], - }, - { - company: 'Allure Bridal', - name: 'Patrick Reid', - email: 'patrickjreid@gmail.com', - linkedIn: 'https://www.linkedin.com/in/patrickjreid/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Senior Solutions Engineer', - industry: 'Retail', - cities: ['Madison', 'El Paso'], - }, - { - company: 'Ally', - name: 'Oleksii Hordiienko', - email: 'alex.hord@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/oleksii-hordiienko/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Sr. Software Engineer', - industry: 'Fintech', - cities: ['Norfolk', 'Jersey City'], - }, - { - company: 'Ally', - name: 'Allison Jacobs', - email: 'allison-jacobs@outlook.com', - linkedIn: 'https://www.linkedin.com/in/allison-j', - campus: 'NYC', - cohort: '25', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: ['Scottsdale', 'Toronto', 'Long Beach'], - }, - { - company: 'Ally', - name: 'Connor Tracy', - email: 'Connortracy15@gmail.com', - linkedIn: 'https://www.linkedin.com/in/connortracy19', - campus: 'NYC', - cohort: '28', - jobTitle: 'Frontend Software Engineer', - industry: 'Fintech', - cities: ['Madison'], - }, - { - company: 'Ally', - name: 'Damien Evans', - email: 'damiensevans@gmail.com', - linkedIn: 'https://www.linkedin.com/in/damien-s-evans/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Principal Software Engineer', - industry: 'Fintech', - cities: ['Raleigh', 'Bakersfield', 'Baltimore'], - }, - { - company: 'Ally', - name: 'Mercedes Kalaizic', - email: 'Kalaizicmercedes@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mkalaizic/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Principal Software Engineer', - industry: 'Fintech', - cities: ['Anaheim', 'Oklahoma City'], - }, - { - company: 'Ally', - name: 'Richard Zhang', - email: 'rchzhng@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dickzhang/', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['San Francisco', 'Laredo'], - }, - { - company: 'Ally', - name: 'Garrett Weaver', - email: 'Uncommonweaver@gmail.com', - linkedIn: 'https://www.linkedin.com/in/g-weaver/', - campus: 'NYC', - cohort: '23', - jobTitle: 'API Developer', - industry: 'Fintech', - cities: ['Chesapeake', 'Houston', 'Arlington', 'Washington'], - }, - { - company: 'Alo Yoga', - name: 'Angie Chang', - email: 'angiechangpagne@gmail.com', - linkedIn: 'https://www.linkedin.com/in/angelsofwar', - campus: 'LA', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'E-Commerce/Fashion/Wellness/Mindfulness', - cities: ['Sydney'], - }, - { - company: 'AlphaSense', - name: 'Joe Pavlisko', - email: 'jpavlisko@protonmail.com', - linkedIn: 'https://www.linkedin.com/in/joe-pavlisko-11b74930/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Software Engineer', - industry: 'FinTech', - cities: ['Reno'], - }, - { - company: 'ALTEN GmbH', - name: 'Jay Wall', - email: 'walljayw@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hanswand/', - campus: 'LA', - cohort: '47', - jobTitle: 'Senior Consultant', - industry: 'Consultancy - Fintech, Manufacturing, Healthcare', - cities: ['Plano', 'Houston', 'Lincoln', 'Oakland'], - }, - { - company: 'Alteryx', - name: 'Miriam Feder', - email: 'mirfeder@gmail.com', - linkedIn: 'https://www.linkedin.com/in/miriam-feder', - campus: 'NYC', - cohort: '32', - jobTitle: 'Senior Software Engineer', - industry: 'Data Analytics', - cities: ['Boston', 'El Paso', 'Virginia Beach'], - }, - { - company: 'Altice USA', - name: 'Ola Adedoyin', - email: 'ola_adedoyin@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/oadedoyin/', - campus: 'NYC', - cohort: '15', - jobTitle: 'DevOps Engineering Manager', - industry: 'Communication and Media', - cities: ['Garland', 'Corpus Christi', 'Denver'], - }, - { - company: 'Amazon', - name: 'Amy Liang', - email: 'amyliangny@gmail.com', - linkedIn: 'https://www.linkedin.com/in/amyliang18/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Software Development Engineer', - industry: 'Software / Tech', - cities: ['Plano', 'Norfolk'], - }, - { - company: 'Amazon', - name: 'Anna Falvello', - email: 'anna.falvello@gmail.com', - linkedIn: 'https://www.linkedin.com/in/afalvello/', - campus: 'NYC', - cohort: '29', - jobTitle: 'SDEII', - industry: 'Ecommerce', - cities: ['Reno', 'Toledo', 'Fort Worth'], - }, - { - company: 'Amazon', - name: 'Anthony Valdez', - email: 'avaldez520@gmail.com', - linkedIn: 'https://www.linkedin.com/in/va1dez/', - campus: 'NYC', - cohort: '32', - jobTitle: 'SDE II (Full Stack)', - industry: 'Software / Tech', - cities: ['Fort Wayne', 'Toronto', 'Seattle'], - }, - { - company: 'Amazon', - name: 'Christopher LeBrett', - email: 'clebrett@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chris-lebrett/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Development Engineer', - industry: 'Software / Tech', - cities: ['Gilbert'], - }, - { - company: 'Amazon', - name: 'Christopher Wong', - email: 'cwong8257@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chriswong2/', - campus: 'NYC', - cohort: '7', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Norfolk', 'Oklahoma City', 'Newark', 'Memphis'], - }, - { - company: 'Amazon', - name: 'David Anderson', - email: 'dlande000@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dlande000/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Front-End Engineer', - industry: 'AWS / internet infrastructure', - cities: ['Sรฃo Paulo', 'Houston', 'Milwaukee'], - }, - { - company: 'Amazon', - name: 'Dillon Schriver', - email: 'dschriver9@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dillon-schriver/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Software Development Engineer II', - industry: 'Ecommerce', - cities: ['Gilbert'], - }, - { - company: 'Amazon', - name: 'Eelan Tung', - email: 'eelantung@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eelantung', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Development Engineer', - industry: 'Software / Tech', - cities: ['Las Vegas'], - }, - { - company: 'Amazon', - name: 'Jason Huang', - email: 'huang.jason999@gmail.com', - linkedIn: 'https://www.linkedin.com/in/huang-jason999/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Software Development Engineer II', - industry: 'Technology', - cities: ['Las Vegas'], - }, - { - company: 'Amazon', - name: 'Idan Michael', - email: 'idan.michael3@gmail.com', - linkedIn: 'https://www.linkedin.com/in/idanmichael/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Software Develpment Engineer', - industry: 'Cloud', - cities: ['Lubbock', 'Wichita'], - }, - { - company: 'Amazon', - name: 'Jacqueline Douglass', - email: 'jackie.douglass@icloud.com', - linkedIn: 'https://www.linkedin.com/in/jacqueline-douglass/', - campus: 'FTRI', - cohort: '2', - jobTitle: 'Front-End Engineer', - industry: 'e-commerce, cloud computing, digital streaming, and artificial intelligence.', - cities: ['Santa Ana', 'Honolulu', 'Virginia Beach'], - }, - { - company: 'Amazon', - name: 'James Kim', - email: 'james.minjae.97@gmail.com', - linkedIn: 'https://linkedin.com/in/jamesmjkim', - campus: 'PTRI', - cohort: '5', - jobTitle: 'Software Development Engineer 1', - industry: 'Software / Tech', - cities: ['Los Angeles', 'Garland', 'Lubbock', 'Fort Worth'], - }, - { - company: 'Amazon', - name: 'Luke Michals', - email: 'luke.michals@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '14', - jobTitle: 'Frontend Engineer II', - industry: 'Retail', - cities: ['Irving', 'Chula Vista', 'Fort Wayne', 'Mumbai'], - }, - { - company: 'Amazon', - name: 'Jennifer Song', - email: 'lumie.song@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lu0713/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Development Engineer II', - industry: 'Tech', - cities: ['North Las Vegas', 'Lexington', 'Laredo', 'Sรฃo Paulo'], - }, - { - company: 'Amazon', - name: 'Megan Nadkarni', - email: 'megan.nadkarni@gmail.com', - linkedIn: 'https://www.linkedin.com/in/megannadkarni/', - campus: 'LA', - cohort: '48', - jobTitle: 'Front End Engineer', - industry: 'Software / Tech', - cities: ['Oakland', 'Laredo'], - }, - { - company: 'Amazon', - name: 'Mark Washkewicz', - email: 'mwashkewicz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mark-washkewicz/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Development Engineer 1', - industry: 'Retail', - cities: ['Corpus Christi', 'Indianapolis'], - }, - { - company: 'Amazon', - name: 'Stephan Halarewicz', - email: 'shalarewicz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stephanhalarewicz/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Software Development Engineer, People Engine', - industry: 'Software / Tech', - cities: ['Colorado Springs', 'Norfolk', 'Anaheim'], - }, - { - company: 'Amazon', - name: 'Tanner Peterson', - email: 'tanpeterson@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tanner-peterson/', - campus: 'LA', - cohort: '46', - jobTitle: 'Front End Engineer', - industry: 'Cloud Services', - cities: ['Glendale'], - }, - { - company: 'Amazon', - name: 'Timothy Mai', - email: 'timothy.mai13@gmail.com', - linkedIn: 'https://www.linkedin.com/in/timothy-mai-459085b3/', - campus: 'LA', - cohort: '31', - jobTitle: 'Software Development Engineer I', - industry: 'Advertising', - cities: ['Madison'], - }, - { - company: 'Amazon', - name: 'Yogi Paturu', - email: 'ypaturu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yogi-paturu/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Software Development Engineer', - industry: 'Cloud', - cities: ['Albuquerque', 'Glendale', 'Jersey City'], - }, - { - company: 'Amazon', - name: 'Yale Yng-Wong', - email: 'yyngwong@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ywyw/', - campus: 'NYC', - cohort: '32', - jobTitle: 'SDE1', - industry: 'Advertising', - cities: ['San Diego', 'Stockton'], - }, - { - company: 'Amazon (AWS)', - name: 'Michael Weber', - email: 'michael.weber.jr@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael-weber-jr/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Software Development Engineer', - industry: 'Cloud Services', - cities: ['Chandler', 'Washington', 'Fort Wayne'], - }, - { - company: 'Amazon Prime Video', - name: 'Faraz Moallemi', - email: 'moallemifaraz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/farazmoallemi/', - campus: 'LA', - cohort: '44', - jobTitle: 'Software Development Engineer I', - industry: 'Big Tech', - cities: ['Stockton', 'Cincinnati', 'San Jose'], - }, - { - company: 'Amazon Web Services', - name: 'Daniel Forrester', - email: 'danielf216@gmail.com', - linkedIn: 'https://www.linkedin.com/in/danielforrester/', - campus: 'PTRI', - cohort: '5', - jobTitle: 'Cloud Application Architect', - industry: 'Cloud Services', - cities: ['Santa Ana', 'Nashville', 'Louisville', 'San Diego'], - }, - { - company: 'Amazon Web Services', - name: 'Lumie (Jen) Song', - email: 'lumie.song@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lu0713/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Development Engineer II', - industry: 'Software', - cities: ['Houston', 'Tulsa', 'Los Angeles'], - }, - { - company: 'Amazon Web Services', - name: 'Matthew Lee', - email: 'matthewcml6022@gmail.com', - linkedIn: 'https://www.linkedin.com/in/matthewcmlee/', - campus: 'LA', - cohort: '45', - jobTitle: 'Software Development Engineer', - industry: 'Web Services / Cloud Computing', - cities: ['Winston-Salem', 'Glendale'], - }, - { - company: 'Amazon Web Services', - name: 'Taylor Rodrigues', - email: 'taylor.d.rod33@gmail.com', - linkedIn: 'https://www.linkedin.com/in/taylorrodrigues/', - campus: 'LA', - cohort: '33', - jobTitle: 'Software Development Engineer I (L4)', - industry: 'Cloud Computing', - cities: ['Seattle', 'Newark', 'Mexico City'], - }, - { - company: 'Amazon Web Services (AWS)', - name: 'Raphael Bargues', - email: 'rbargues@gmail.com', - linkedIn: 'https://www.linkedin.com/in/raphael-bargues/', - campus: 'NYC', - cohort: '17', - jobTitle: 'Software Engineer', - industry: '', - cities: ['San Diego', 'Cleveland'], - }, - { - company: 'Amazon, AWS', - name: 'Jimmy Ngo', - email: 'jimmycngo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jimmycngo/', - campus: 'FTRI', - cohort: '2', - jobTitle: 'Software Development Engineer 1', - industry: 'cloud computing', - cities: ['Las Vegas', 'Newark', 'Raleigh', 'Glendale'], - }, - { - company: 'AMC Networks', - name: 'Wade Armstrong', - email: 'wade@wadearmstrong.com', - linkedIn: 'https://www.linkedin.com/in/wadearmstrong/', - campus: 'LA', - cohort: '5', - jobTitle: 'Director, Front-End Development', - industry: 'Entertainment', - cities: ['Fresno', 'Long Beach'], - }, - { - company: 'American Airlines(Contracted via BrookSource)', - name: 'Mariah Talicuran', - email: 'talicuran.mariah@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mariahtalicuran/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Associate React Developer', - industry: 'Other', - cities: ['Raleigh'], - }, - { - company: 'American Dawn', - name: 'Charlie Huang', - email: 'charliehuang913@gmail.com', - linkedIn: 'https://www.linkedin.com/in/huangcharlie', - campus: 'LA / WCRI', - cohort: '48', - jobTitle: 'Junior Software Engineer', - industry: 'Retail', - cities: ['Orlando', 'Colorado Springs'], - }, - { - company: 'American Express', - name: 'Dominic DiSalvo', - email: 'Dominicd17@gmail.com', - linkedIn: 'https://www.linkedin.com/mwlite/in/dominicdisalvo', - campus: 'FTRI', - cohort: '3', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Scottsdale'], - }, - { - company: 'American Express', - name: 'Jake Diorio', - email: 'jdiorio2393@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jake-diorio/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: 'Banking', - cities: ['Milwaukee', 'Washington'], - }, - { - company: 'American Express', - name: 'Kelvin Shamy', - email: 'kelvinshamy@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kelvinshamy/', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Gilbert', 'Denver'], - }, - { - company: 'American Express', - name: 'Rebecca Turk', - email: 'rebecca.e.turk@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rebeccaturk/', - campus: 'NYC', - cohort: '5', - jobTitle: 'Engineer I', - industry: '', - cities: ['Minneapolis'], - }, - { - company: 'American Express', - name: 'Victor He', - email: 'victorhe33@gmail.com', - linkedIn: 'www.linkedin.com/in/victorhe33', - campus: 'PTRI', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Washington', 'San Diego'], - }, - { - company: 'AmeriSave', - name: 'Andrew Pomatti', - email: 'ampomatti@gmail.com', - linkedIn: 'https://www.linkedin.com/in/drewpomatti/', - campus: 'LA', - cohort: '47', - jobTitle: 'Systems Engineer I', - industry: 'Real Estate', - cities: ['Houston', 'Dallas'], - }, - { - company: 'AmeriSave', - name: 'Jacob C Viesselman', - email: 'jacob.viesselman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jacobviesselman/', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: ['Portland', 'Saint Paul', 'Jacksonville', 'Reno'], - }, - { - company: 'Amerisave', - name: 'Norman Liu', - email: 'Normanliu91@gmail.com', - linkedIn: 'https://www.linkedin.com/in/norm-liu', - campus: 'PTRI', - cohort: '5', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Saint Paul', 'Colorado Springs', 'Glendale', 'Houston'], - }, - { - company: 'AmeriSave Mortgage Corporation', - name: 'Jason Chan', - email: 'Jason.chann91@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jason-chan1765/', - campus: 'FTRI', - cohort: '7', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: ['Sรฃo Paulo', 'Garland', 'Plano', 'Omaha'], - }, - { - company: 'AmeriSave Mortgage Corporation', - name: 'Michael Prince', - email: 'mgp2454@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael-prince', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['New York'], - }, - { - company: 'Ample, LLC', - name: 'Rudo Hengst', - email: 'rudohengst@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rhengst/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Lead Developer', - industry: 'Digital Marketing', - cities: ['Mesa', 'Wichita', 'Saint Paul'], - }, - { - company: 'Amplify', - name: 'Ekaterina Vasileva', - email: 'ekaterinavasileva768@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ekaterina-vasileva238/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Education', - cities: ['Sydney', 'North Las Vegas'], - }, - { - company: 'Amplify', - name: 'Biet Van Nguyen', - email: 'vanbietnguyen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/van-biet-nguyen-6879434a/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Software Engineer', - industry: 'Edtech', - cities: ['Portland', 'Philadelphia', 'Lexington', 'Cleveland'], - }, - { - company: 'Anaconda', - name: 'Rosio Reyes', - email: 'rosio_reyes@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/rosio-reyes-09b9a256/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Software Engineer', - industry: 'Computer Software', - cities: ['Albuquerque', 'Santa Ana'], - }, - { - company: 'Ancestry', - name: 'Miguel Garibay', - email: 'miguelgaribay93@gmail.com', - linkedIn: 'https://www.linkedin.com/in/miguel-garibay-mag/', - campus: 'LA', - cohort: '43', - jobTitle: 'Full Stack Software Engineer', - industry: 'Genealogy', - cities: ['Boston', 'Las Vegas', 'Sacramento', 'Phoenix'], - }, - { - company: 'Ancestry', - name: 'Schno Mozingo', - email: 'schno.mozingo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/schno-mozingo/', - campus: 'LA', - cohort: '12', - jobTitle: 'Senior Software Engineer', - industry: 'Geneology', - cities: ['Toledo', 'Lubbock'], - }, - { - company: 'Ancilia', - name: 'Clark Pang', - email: 'clarkcpang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/clarkpang/', - campus: 'LA / WCRI', - cohort: '56', - jobTitle: 'Software Engineer', - industry: 'Security', - cities: ['Fort Wayne', 'Los Angeles', 'Washington', 'Mesa'], - }, - { - company: 'Anheuser-Busch', - name: 'Brandon Bowers', - email: 'brandonbowers1234@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brandon-michael-bowers/', - campus: 'FTRI', - cohort: '3', - jobTitle: 'Senior Front-end React Developer', - industry: 'Beverages', - cities: ['Reno', 'Raleigh'], - }, - { - company: 'Annalect', - name: 'Carlos Peรฑa', - email: 'carlos.pena91@gmail.com', - linkedIn: 'https://www.linkedin.com/in/carlospena91', - campus: 'LA', - cohort: '39', - jobTitle: 'Front End Engineer', - industry: 'Advertisement and Media', - cities: ['Mesa', 'Sacramento'], - }, - { - company: 'Annalect', - name: 'Trent Currie', - email: 'trentdcurrie@gmail.com', - linkedIn: 'https://www.linkedin.com/in/trentdcurrie/', - campus: 'LA', - cohort: '39', - jobTitle: 'Front-End Engineer', - industry: 'Marketing', - cities: ['Aurora'], - }, - { - company: 'Apex Fintech Solutions', - name: 'Kevin Le', - email: 'lekevin2013@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kevinvu-le/', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Beijing', 'New York', 'Baltimore'], - }, - { - company: 'Apex Systems', - name: 'Anthony Martinez', - email: 'anthony@amartinez.cc', - linkedIn: 'https://www.linkedin.com/in/tony-mtz/', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer', - industry: 'Bank', - cities: ['Winston-Salem', 'Fort Wayne', 'Orlando', 'Anchorage'], - }, - { - company: 'Apollo GraphQL', - name: 'Joel Burton', - email: 'joeltburton@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joeltburton', - campus: 'LA', - cohort: '26', - jobTitle: 'Software Engineer', - industry: 'Technology', - cities: ['Boston', 'Santa Ana', 'Lincoln', 'Riverside'], - }, - { - company: 'Appfolio', - name: 'Erik Fisher', - email: 'efishr4@gmail.com', - linkedIn: 'https://www.linkedin.com/in/erik-fisher-53b9b6b3/', - campus: 'LA', - cohort: '24', - jobTitle: 'Software Engineer II', - industry: 'Aviation & Aerospace', - cities: ['Lincoln', 'Norfolk', 'Santa Ana', 'Kansas City'], - }, - { - company: 'Appfolio', - name: 'Michelle Holland', - email: 'michellebholland@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michellebholland/', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: ['Lincoln', 'Anaheim', 'New York', 'San Francisco'], - }, - { - company: 'AppFolio', - name: 'Timothy Barry', - email: 'tim.barry12@gmail.com', - linkedIn: 'https://www.linkedin.com/in/timothy-barry-se', - campus: 'FTRI', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: ['Toledo'], - }, - { - company: 'Apple', - name: 'Alexander Zhang', - email: 'azalexanderzhang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/zhang-alexander/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Software Engineer', - industry: 'Tech', - cities: ['Chesapeake', 'Jacksonville', 'Saint Paul'], - }, - { - company: 'Apple (via Ryzen)', - name: 'Dieu Huynh', - email: 'dieuhhuynh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dieu-huynh/', - campus: 'LA', - cohort: '42', - jobTitle: 'Frontend Engineer', - industry: 'Technology', - cities: ['Jacksonville', 'Paris', 'Raleigh', 'Indianapolis'], - }, - { - company: 'Applied Minds', - name: 'Michael Chiang', - email: 'michael.chiang.dev5@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael-chiang-dev5/', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'software engineer', - industry: 'Software / Tech', - cities: ['Colorado Springs', 'Mexico City'], - }, - { - company: 'AppOmni', - name: 'Ousman Diallo', - email: 'ordiallo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ousman-diallo/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Front End Engineer', - industry: 'Security', - cities: ['Fresno', 'Anchorage', 'Glendale'], - }, - { - company: "Arc'teryx", - name: 'Simon Grigenas', - email: 'grigenas@outlook.com', - linkedIn: 'https://www.linkedin.com/in/simon-grigenas/', - campus: 'NYC / ECRI', - cohort: '1', - jobTitle: 'Intermediate Web Applications Developer', - industry: 'Retail', - cities: ['Anchorage', 'Oklahoma City', 'Los Angeles'], - }, - { - company: 'Arcadia', - name: 'Adda Kridler', - email: 'addakridler@gmail.com', - linkedIn: 'https://www.linkedin.com/in/addakridler/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Software Engineer 1', - industry: 'Energy Tech', - cities: ['Denver'], - }, - { - company: 'Arcadia', - name: 'Cameron Baumgartner', - email: 'cameron.h.baumgartner@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cameronbaumgartner/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: 'Renewable Energy', - cities: ['Reno'], - }, - { - company: 'Arcadia', - name: 'Jehovany A Cruz', - email: 'howaboutjeho@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jehovany-cruz/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer', - industry: 'Energy - Renewable Energy', - cities: ['Santa Ana', 'North Las Vegas'], - }, - { - company: 'Arcadia', - name: 'Jason Liggayu', - email: 'jligg224@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jasonliggayu/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Full Stack Engineer', - industry: 'Renewable Energy', - cities: ['Seattle', 'San Jose'], - }, - { - company: 'Arcadia', - name: 'Kristen Althoff', - email: 'kristenwalthoff@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kristen-althoff-3a4765b9/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Full-Stack Software Engineer I', - industry: 'Software / Tech', - cities: ['Anchorage', 'Louisville'], - }, - { - company: 'Arcules', - name: 'Nico Flores', - email: 'floresni1996@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nicolasaflores/', - campus: 'LA', - cohort: '48', - jobTitle: 'Software Engineer', - industry: 'Cloud Services', - cities: ['Albuquerque', 'St. Petersburg', 'Mesa'], - }, - { - company: 'Arcules', - name: 'Patrick Allen', - email: 'patrick@ohana-app.io', - linkedIn: 'https://linkedin.com/in/patrickallendfs', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer', - industry: 'Cloud Video', - cities: ['Miami'], - }, - { - company: 'Armoire', - name: 'Katie Sandfort', - email: 'katie.sandfort@gmail.com', - linkedIn: 'https://www.linkedin.com/in/katie-sandfort/', - campus: 'LA / WCRI', - cohort: '55', - jobTitle: 'Software Engineer', - industry: 'Retail', - cities: ['Sydney', 'Sacramento', 'Chicago', 'Memphis'], - }, - { - company: 'Artsy', - name: 'Matt Jones', - email: 'matt.chris.jones@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mc-jones/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Senior Engineer 1 (Fullstack)', - industry: 'Art', - cities: ['Chula Vista'], - }, - { - company: 'Artyc', - name: 'Daniel Geiger', - email: 'daniel.w.geiger@gmail.com', - linkedIn: 'https://www.linkedin.com/in/danielwgeiger/', - campus: 'FTRI / CTRI', - cohort: '4', - jobTitle: 'Fullstack Engineer', - industry: 'Other', - cities: ['Corpus Christi', 'Honolulu', 'Pittsburgh', 'Scottsdale'], - }, - { - company: 'Arvest Bank', - name: 'Leilani Hernandez', - email: 'leilani.digame@gmail.com', - linkedIn: 'www.linkedin.com/in/lherna05', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Front End Developer', - industry: 'Fintech', - cities: ['London', 'Lubbock', 'Milwaukee', 'Sacramento'], - }, - { - company: 'Ash Wellness', - name: 'Andrew Rehrig', - email: 'arehrig@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andrew-rehrig/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Full Stack Engineer', - industry: 'Healthcare', - cities: ['Honolulu', 'Oklahoma City'], - }, - { - company: 'Asics', - name: 'Alexa Roberts', - email: 'alexarobertss@protonmail.com', - linkedIn: 'https://www.linkedin.com/in/alexarobertss', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Frontend Software Engineer', - industry: 'Software / Tech', - cities: ['Atlanta'], - }, - { - company: 'Aspiration', - name: 'Charles Gyer', - email: 'charlesgyer@gmail.com', - linkedIn: 'https://www.linkedin.com/in/charles-gyer/', - campus: 'PTRI', - cohort: '4', - jobTitle: 'Software Engineer, Backend', - industry: 'Green Fintech', - cities: ['Oklahoma City', 'Stockton'], - }, - { - company: 'Astra', - name: 'Jae Ryu', - email: 'rj.jaeryu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jaeryu/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Senior Software Engineer', - industry: 'Space-tech', - cities: ['Las Vegas', 'Fresno', 'Kansas City'], - }, - { - company: 'Asurion', - name: 'Jinseon Shin', - email: 'jinseonshin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jinseonshin/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Tech Insurance', - cities: ['Chula Vista', 'Laredo', 'Irvine', 'New York'], - }, - { - company: 'Asurion', - name: 'Shah Chaudri', - email: 'shah.pro.se@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shah-chaudri/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer 3', - industry: 'Tech Insurance', - cities: ['Wichita', 'Durham', 'New York', 'Newark'], - }, - { - company: 'Asurion', - name: 'Travis Woolston', - email: 'travis.ww@hotmail.com', - linkedIn: 'https://www.linkedin.com/in/traviswoolston/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: ['El Paso'], - }, - { - company: 'AT&T', - name: 'Alexander Kim', - email: 'akim3235@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexanderkim1/', - campus: 'LA', - cohort: '38', - jobTitle: 'Backend Software Engineer', - industry: 'Entertainment', - cities: ['Washington', 'Chula Vista'], - }, - { - company: 'AT&T', - name: 'Marc Doran', - email: 'doramm4408@gmail.com', - linkedIn: 'https://www.linkedin.com/in/marc-doran', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Database Developer', - industry: 'Telecommunications', - cities: ['Dallas', 'Stockton'], - }, - { - company: 'AT&T', - name: 'Alina Grafkina', - email: 'grafkina.production@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alinakyaw/', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Baltimore', 'New York', 'Gilbert', 'Lexington'], - }, - { - company: 'Athena Health', - name: 'Zach Pestaina', - email: 'zpestaina@gmail.com', - linkedIn: 'linkedin.com/zachpestaina/', - campus: 'NYC / ECRI', - cohort: '38', - jobTitle: 'Analytics Engineer', - industry: 'Healthcare', - cities: ['Glendale'], - }, - { - company: 'Atlassian', - name: 'Giao Tran', - email: 'contactgiaotran@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gd-tran/', - campus: 'LA', - cohort: '40', - jobTitle: 'Software Engineer P3', - industry: 'Project management?', - cities: ['Sydney'], - }, - { - company: 'Atlassian', - name: 'Dan Snyder', - email: 'dasnyder3@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dasnyder3/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: 'Tech', - cities: ['Detroit', 'Kansas City', 'Henderson', 'Long Beach'], - }, - { - company: 'Atlassian/ Trello', - name: 'Elizabeth Lotto', - email: 'fakeEmail1@fakeEmail.com', - linkedIn: 'https://www.linkedin.com/in/elizabethlotto/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer', - industry: 'Computer Software', - cities: ['Kansas City', 'Atlanta', 'Raleigh', 'San Francisco'], - }, - { - company: 'Atos Syntel (at Disney)', - name: 'Dakota Gilbreath', - email: 'dgilbrea92@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dakota-gilbreath/', - campus: 'LA', - cohort: '34', - jobTitle: 'Full Stack Developer', - industry: 'Entertainment', - cities: ['Detroit'], - }, - { - company: 'Attentive', - name: 'Sam Goldberg', - email: 'sgoldber61@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sgoldber61/', - campus: 'LA', - cohort: '27', - jobTitle: 'Software Engineer, Frontend - L4', - industry: 'E-commerce', - cities: ['Atlanta', 'Sacramento', 'Norfolk'], - }, - { - company: 'Attentive ', - name: 'Pravek Karwe', - email: 'pkarwe62@gmail.com', - linkedIn: - 'https://www.linkedin.com/in/pravek-karwe?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app', - campus: 'NYOI', - cohort: '7', - jobTitle: 'Senior Product Manager ', - industry: 'Marketing/Advertising', - cities: ['Baltimore', 'Chandler', 'Newark', 'Colorado Springs'], - }, - { - company: 'Audacy', - name: 'John Roman', - email: 'johnmroman33@gmail.com', - linkedIn: 'https://www.linkedin.com/in/john-m-roman/', - campus: 'NYC / ECRI', - cohort: '38', - jobTitle: 'Associate Software Engineer', - industry: 'Entertainment', - cities: ['New York', 'Berlin', 'Portland'], - }, - { - company: 'AuditBoard', - name: 'Alex Yu', - email: 'alexjihunyu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexjihunyu/', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer', - industry: 'FinTech', - cities: ['Detroit', 'London'], - }, - { - company: 'Autodesk', - name: 'Javan Ang', - email: 'javanamt@gmail.com', - linkedIn: 'https://www.linkedin.com/in/javanang/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Software Engineer', - industry: 'Software/Tech', - cities: ['Austin'], - }, - { - company: 'AutoFi', - name: 'Rocky Lin', - email: 'liangwen511@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rocky-lin/', - campus: 'NYC', - cohort: '14', - jobTitle: 'Senior Software Engineer', - industry: 'FinTech', - cities: ['Philadelphia', 'Las Vegas'], - }, - { - company: 'Ava', - name: 'Eden Shirin', - email: 'edenshirin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eden-shirin/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Software Engineer', - industry: 'Artificial Intelligence', - cities: ['San Jose', 'Charlotte', 'Memphis', 'Riverside'], - }, - { - company: 'Avant', - name: 'David Riley Burns', - email: 'drileyburns@gmail.com', - linkedIn: 'https://www.linkedin.com/in/drileyburns/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Software Engineer', - industry: 'Loans', - cities: ['Houston', 'Denver'], - }, - { - company: 'Avirtek', - name: 'Eliot L Nguyen', - email: 'eliotlefrin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ibeeliot', - campus: 'LA', - cohort: '34', - jobTitle: 'Front End Lead Developer', - industry: 'Cybersecurity', - cities: ['Albuquerque'], - }, - { - company: 'Avise', - name: 'Frank Norton', - email: 'jfnorton@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jfnorton32/', - campus: 'LA', - cohort: '37', - jobTitle: 'Full Stack Software Engineer', - industry: 'Fintech', - cities: ['Mexico City', 'San Francisco', 'Raleigh'], - }, - { - company: 'Avoma', - name: 'Kevin Chung', - email: 'kevin.c@me.com', - linkedIn: 'https://www.linkedin.com/in/kevc/', - campus: 'LA / WCRI', - cohort: '47', - jobTitle: 'Software Engineer - Frontend', - industry: 'Software / Tech', - cities: ['Toledo', 'Mexico City', 'Scottsdale', 'San Diego'], - }, - { - company: 'AVOXI', - name: 'Shirley Luu', - email: 'sh.rleyluu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/luu-shirley', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Full Stack Software Engineer', - industry: 'Business Tech/Enterprise Tech', - cities: ['Pittsburgh', 'Albuquerque'], - }, - { - company: 'Avvir', - name: 'Sharon Zhu', - email: 'sharonzhu.15@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sharonzhu/', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer II', - industry: 'Construction Tech', - cities: ['Wichita', 'Scottsdale'], - }, - { - company: 'AWS', - name: 'Blake Myrick', - email: 'blake.myrick@gmail.com', - linkedIn: 'https://www.linkedin.com/in/blake-myrick', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Software Development Engineer', - industry: 'Tech', - cities: ['Norfolk', 'Stockton', 'Beijing', 'Buffalo'], - }, - { - company: 'AWS', - name: 'George Jeng', - email: 'gjenga@icloud.com', - linkedIn: 'https://www.linkedin.com/in/gjenga', - campus: 'LA', - cohort: '49', - jobTitle: 'SDE1', - industry: 'Cloud Services', - cities: ['San Diego'], - }, - { - company: 'AWS', - name: 'Marc Burnie', - email: 'MarcABurnie@gmail.com', - linkedIn: 'https://www.linkedin.com/in/marcburnie', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Development Engineer II', - industry: 'Tech', - cities: ['San Antonio', 'Mesa', 'Bakersfield'], - }, - { - company: 'AWS', - name: 'Patty Qian', - email: 'patty.qian@gmail.com', - linkedIn: 'https://www.linkedin.com/in/patty-qian/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Development Engineer', - industry: 'Tech', - cities: ['Chandler'], - }, - { - company: 'Axim Geospatial', - name: 'Kevin Le', - email: 'kevinle1003@gmail.com', - linkedIn: 'https://www.linkedin.com/in/xkevinle/', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Software Developer', - industry: 'IT Services', - cities: ['Orlando', 'Cleveland', 'Las Vegas'], - }, - { - company: 'Axle Health', - name: 'Alexandra Ashcraft', - email: 'lash211@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexandra-ashcraft1/', - campus: 'FTRI / CTRI', - cohort: '17', - jobTitle: 'Software Engineer', - industry: 'Healthtech/Healthcare', - cities: ['Henderson', 'Corpus Christi', 'Chicago'], - }, - { - company: 'Axon', - name: 'Meng Ting Chiang', - email: 'a123deandean@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mengting-chiang/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer', - industry: 'Public Safety', - cities: ['Durham', 'Garland'], - }, - { - company: 'B-stock solutions', - name: 'Michael Feldman', - email: 'michaelfeldma1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael-feldman15/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Nodejs / microservices software engineer', - industry: 'E-commerce', - cities: ['Oklahoma City', 'Sรฃo Paulo', 'Gilbert', 'Washington'], - }, - { - company: 'Bach', - name: 'Abbey Campbell', - email: 'campbellabbeya@gmail.com', - linkedIn: 'https://www.linkedin.com/in/campbellabbeya/', - campus: 'LA', - cohort: '31', - jobTitle: 'Frontend Developer', - industry: "Entertainment? Wed-tech? lol idk it's pretty niche", - cities: ['Cincinnati'], - }, - { - company: 'BallerTV', - name: 'Jenessa Chapalamadugu', - email: 'jenessachap@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jenessachap/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Full Stack Engineer', - industry: 'Entertainment', - cities: ['Berlin'], - }, - { - company: 'Bank of America', - name: 'Ranisha Rafeeque Soopi Kalphantakath', - email: 'ranisharafeeque@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ranisha-rafeeque-s-k/', - campus: 'NYC', - cohort: '26', - jobTitle: 'AVP, Software Engineer', - industry: 'Fintech', - cities: ['Indianapolis'], - }, - { - company: 'Barstool Sports', - name: 'Daniel Nagano-Gerace', - email: 'dnaganog@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dnaganog/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Senior Backend Engineer', - industry: 'Media', - cities: ['Reno', 'Glendale', 'Denver', 'Nashville'], - }, - { - company: 'Bayer Crop Science (Neteffects)', - name: 'Jason Fricano', - email: 'jason.fricano@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jasonfricano/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Node / React Developer', - industry: 'Agricultural Science', - cities: ['Jacksonville', 'Irving'], - }, - { - company: 'Bayer Crop Sciences', - name: 'Stephen Budarz', - email: 'sbudarz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/steve-budarz/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Full Stack Engineer', - industry: 'Agriculture', - cities: ['Sรฃo Paulo', 'Toledo'], - }, - { - company: 'BD', - name: 'Annabelle Ni', - email: 'ann.j.ni@gmail.com', - linkedIn: 'https://www.linkedin.com/in/annabelleni/', - campus: 'FTRI / CTRI', - cohort: '17', - jobTitle: 'Software Engineer', - industry: 'Healthtech/Healthcare', - cities: ['Lexington', 'Las Vegas', 'Mesa'], - }, - { - company: 'Beacon Hill Staffing (Charter Communications)', - name: 'David Russo', - email: 'dr2378@gmail.com', - linkedIn: 'https://www.linkedin.com/in/russo-david', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Telecommunications', - cities: ['Sacramento', 'Houston'], - }, - { - company: 'Beacon Hill Staffing (working for Charter Communications)', - name: 'Jessica Balding', - email: 'jessica.r.balding@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jessica-balding/', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Full Stack Developer', - industry: 'Telecommunications', - cities: ['Orlando', 'Henderson', 'Irvine', 'Mumbai'], - }, - { - company: 'Beautycounter', - name: 'Mario Granberri', - email: 'mgranberri@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mgranberri/', - campus: 'LA', - cohort: '25', - jobTitle: 'Full stack software engineer', - industry: 'Compliance', - cities: ['Chula Vista'], - }, - { - company: 'Behavior Frontiers', - name: 'Chance Hernandez', - email: 'chance.hernandez24@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chance-hernandez/', - campus: 'LA', - cohort: '40', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['Jacksonville', 'Honolulu', 'Cincinnati', 'Milwaukee'], - }, - { - company: 'Bentobox', - name: 'Corey Van Splinter', - email: 'cvanspl1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/corey-van-splinter/', - campus: 'LA', - cohort: '39', - jobTitle: 'Senior Software Engineer', - industry: 'Hospitality', - cities: ['Durham', 'Fort Wayne', 'Minneapolis'], - }, - { - company: 'Bentobox', - name: 'Greg Dixon', - email: 'gdixon529@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gdixon529/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Engineer', - industry: 'Software', - cities: ['Sรฃo Paulo', 'Pittsburgh', 'Atlanta', 'Phoenix'], - }, - { - company: 'BentoBox', - name: 'Brian Liang', - email: 'liangbrian94@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brian-z-liang/', - campus: 'LA', - cohort: '43', - jobTitle: 'Product Support Engineer', - industry: 'Not sure', - cities: ['San Jose', 'Baltimore'], - }, - { - company: 'Berkadia', - name: 'Isaac Kittila', - email: 'isaac.kittila@gmail.com', - linkedIn: 'https://www.linkedin.com/in/isaac-kittila/', - campus: 'LA', - cohort: '39', - jobTitle: 'Associate Software Engineer', - industry: 'Commercial Real Estate', - cities: ['Chula Vista', 'Fort Worth'], - }, - { - company: 'Best Buy', - name: 'Alexander Hager', - email: 'alexhager19@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hager-alexander/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Front end Engineer', - industry: 'Data analytics', - cities: ['Atlanta', 'Phoenix'], - }, - { - company: 'Better.com', - name: 'Stefan Armijo', - email: 'stefan.armijo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stefanarmijo/', - campus: 'LA', - cohort: '21', - jobTitle: 'Sr. Software Engineer', - industry: '', - cities: ['Berlin', 'Plano'], - }, - { - company: 'BidWrangler', - name: 'Kylene Hohman', - email: 'kylenehohman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kylene-hohman', - campus: 'PTRI', - cohort: '5', - jobTitle: 'Full-Stack Developer', - industry: 'Auction Services', - cities: ['Lexington', 'Louisville', 'Durham'], - }, - { - company: 'Bigeye', - name: 'Dasha Kondratenko', - email: 'dashakondrattenko@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dasha-k/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer 1', - industry: 'Data quality', - cities: ['Louisville', 'Austin', 'Chula Vista', 'Oakland'], - }, - { - company: 'BigID', - name: 'Helen Regula', - email: 'hregula03@gmail.com', - linkedIn: 'https://www.linkedin.com/in/helenregula/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Senior Full Stack Software Engineer', - industry: 'Cyber Security', - cities: ['New York', 'Charlotte', 'Garland'], - }, - { - company: 'Bill.com', - name: 'Gordon Hui', - email: 'Maddogg612@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gordon-hui', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Software engineer 2 - Frontend', - industry: 'Fintech', - cities: ['Jacksonville', 'Sรฃo Paulo', 'Toronto', 'Chicago'], - }, - { - company: 'Bio-Rad Laboratories', - name: 'Tiffany Yang', - email: 'teefyang7857@gmail.com', - linkedIn: 'https://www.linkedin.com/in/teayang/', - campus: 'LA', - cohort: '21', - jobTitle: 'Software Engineer', - industry: 'Biotech', - cities: ['Chicago', 'Lexington'], - }, - { - company: 'BitGo', - name: 'Joe Kinney', - email: 'josephrkinney@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joekinney17/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Sรฃo Paulo', 'Reno'], - }, - { - company: 'Bitovi', - name: 'Edward Park', - email: 'edwardpark123@gmail.com', - linkedIn: 'https://www.linkedin.com/in/edwardparkwork/', - campus: 'LA', - cohort: '41', - jobTitle: 'Junior Developer and Consultant', - industry: 'Computer Software', - cities: ['El Paso'], - }, - { - company: 'BitPay', - name: 'Taven Shumaker', - email: 'tavensshumaker@gmail.com', - linkedIn: 'https://www.linkedin.com/in/taven-shumaker/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Denver', 'Riverside', 'Bakersfield', 'Pittsburgh'], - }, - { - company: 'Black Cape', - name: 'kyle saunders', - email: 'kylersaunders@gmail.com', - linkedIn: '/kylersaunders', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Chesapeake', 'Pittsburgh', 'Virginia Beach', 'Tulsa'], - }, - { - company: 'Blackrock', - name: 'Jiaxin Li', - email: 'jiaxin.li.gogo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lijiaxingogo/', - campus: 'NYC', - cohort: '22', - jobTitle: 'DevOps Engineer', - industry: '', - cities: ['Anaheim', 'Sรฃo Paulo', 'Greensboro', 'Tulsa'], - }, - { - company: 'Blackthorn Software', - name: 'Aalok Shah', - email: 'aalok.tsh@gmail.com', - linkedIn: '/kolashah', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Full Stack Software Engineer', - industry: 'Other', - cities: ['North Las Vegas', 'Greensboro', 'St. Petersburg'], - }, - { - company: 'Blackthorn.io', - name: 'Tristan Onfroy', - email: 'tonfroy90@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tristan-onfroy/', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Support Software Engineer', - industry: 'Software Solutions/Developer Tools', - cities: ['Houston', 'Memphis', 'Scottsdale'], - }, - { - company: 'Blend', - name: 'Peter Makhnatch', - email: 'p.makhnatch@gmail.com', - linkedIn: 'https://www.linkedin.com/in/petermakhnatch/', - campus: 'PTRI', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Long Beach', 'San Francisco'], - }, - { - company: 'Blink Health', - name: 'Matthew Digel', - email: 'Digel.matt@gmail.com', - linkedIn: 'https://www.linkedin.com/in/matt-digel', - campus: 'PTRI', - cohort: 'Beta', - jobTitle: 'Sr. Product Manager', - industry: 'Health Care Tech', - cities: ['Austin', 'Jacksonville'], - }, - { - company: 'Blizzard', - name: 'Christopher Washburn', - email: 'chris132128@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christopherwashburn/', - campus: 'LA', - cohort: '24', - jobTitle: 'Software Development Engineer', - industry: 'Insurance', - cities: ['Tucson', 'Philadelphia'], - }, - { - company: 'BlockFi', - name: 'Mohtasim Chowdhury', - email: 'mohtasim.hc@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mohtasimc/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Frontend Engineer', - industry: 'Fintech', - cities: ['New York'], - }, - { - company: 'BLOCKS', - name: 'Christopher C Carney', - email: 'ccarney51@gmail.com', - linkedIn: 'https://www.linkedin.com/mwlite/in/christopher-c-carney', - campus: 'NYC', - cohort: '24', - jobTitle: 'Senior Backend Engineer', - industry: 'Technology', - cities: ['Kansas City', 'Norfolk'], - }, - { - company: 'Bloom Medicinals', - name: 'Candie Hill', - email: 'can330330@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/candie-hill/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Jr Software Developer', - industry: 'Other', - cities: ['Saint Paul'], - }, - { - company: 'Bloomberg', - name: 'John Haberstroh', - email: 'haberstroh.john@gmail.com', - linkedIn: 'https://www.linkedin.com/in/johnhaberstroh/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Senior Fullstack Engineer', - industry: 'Financial,Software,Media,Data', - cities: ['Seattle', 'Colorado Springs'], - }, - { - company: 'Bloomberg', - name: 'James Maguire', - email: 'Jmaguire655@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Orlando'], - }, - { - company: 'Bloomberg', - name: 'Cedric Lee', - email: 'leeced@umich.edu', - linkedIn: 'https://www.linkedin.com/in/leeced/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: ['Laredo', 'Los Angeles', 'Austin'], - }, - { - company: 'Bloomberg', - name: 'Duke Lee', - email: 'leeduke90@gmail.com', - linkedIn: 'https://www.linkedin.com/in/duke-lee/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Software Engineer', - industry: 'Fin-Tech', - cities: ['Buffalo', 'Columbus', 'Glendale'], - }, - { - company: 'Bloomberg', - name: 'Michael Chin', - email: 'mikechin37@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael-9-chin/', - campus: 'NYC / ECRI', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Irving', 'Minneapolis'], - }, - { - company: 'Bloomberg Industry Group', - name: 'Neel Lakshman', - email: 'neelanjan.lakshman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/neel-lakshman/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Web Application Architect I', - industry: 'Other', - cities: ['Wichita', 'Phoenix', 'London', 'Charlotte'], - }, - { - company: 'Bloomberg L.P.', - name: 'Ariel Hyman', - email: 'a.o.hyman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ahyman0712/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Las Vegas', 'Raleigh', 'Atlanta', 'Kansas City'], - }, - { - company: 'Bloomberg LP', - name: 'Jinhee Choi', - email: 'jinhee.k.choi@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jinheekchoi/', - campus: 'LA', - cohort: '44', - jobTitle: 'Senior Software Engineer (Consultant)', - industry: 'Fintech', - cities: ['Santa Ana', 'Tucson'], - }, - { - company: 'Bloomboard', - name: 'Junie Hou', - email: 'selilac9@gmail.com', - linkedIn: 'https://www.linkedin.com/in/juniehou/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Charlotte', 'Oklahoma City', 'Lexington'], - }, - { - company: 'Blue Cross Blue Sheild of Florida', - name: 'Adam Rodriguez', - email: 'adamxrodriguez@gmail.com', - linkedIn: 'https://linkedin.com/in/adamrodriguez/', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Senior React Node Software Engineer', - industry: 'Healthcare', - cities: ['Oklahoma City', 'Miami', 'Cincinnati', 'Durham'], - }, - { - company: 'Blue Origin', - name: 'Sam VanTassel', - email: 'vantassel.sam@gmail.com', - linkedIn: 'https://www.linkedin.com/in/samvantassel/', - campus: 'LA', - cohort: '47', - jobTitle: 'Software Engineer I', - industry: 'Aerospace', - cities: ['Tucson', 'Lexington', 'Omaha'], - }, - { - company: 'Blueberry Pediatrics', - name: 'Lina Lee', - email: 'woorin.lee1524@gmail.com', - linkedIn: 'www.linkedin.com/in/lee-lina', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Full-Stack Software Engineer', - industry: 'Healthcare', - cities: ['Cleveland', 'Honolulu'], - }, - { - company: 'BlueStream Health', - name: 'Wei Huang', - email: 'wei.waye.huang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/wei-waye-huang/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Senior Software Engineer', - industry: 'Healthcare', - cities: ['New York', 'Fresno', 'Kansas City'], - }, - { - company: 'BlueVoyant', - name: 'Mahfuz Kabir', - email: 'mahfuzk@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mahfuzkabir/', - campus: 'NYC', - cohort: '4', - jobTitle: 'Software Engineer (Managed Security Services)', - industry: '', - cities: ['Aurora', 'Seattle'], - }, - { - company: 'BNY Mellon', - name: 'Ahsan Ali', - email: 'ali.ahsan95@gmail.com', - linkedIn: 'https://www.linkedin.com/in/greyali', - campus: 'FTRI / CTRI', - cohort: '12', - jobTitle: 'Senior Full Stack Developer', - industry: 'Fintech', - cities: ['Toronto', 'Jacksonville'], - }, - { - company: 'Bolt', - name: 'Chelsey Fewer', - email: 'chelsey.fewer@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chelsey-fewer/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Support Engineer', - industry: 'Ecommerce', - cities: ['Portland', 'Mexico City', 'Berlin', 'Fresno'], - }, - { - company: 'Booster', - name: 'Evelin Goldin', - email: 'evelinsaba1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/evelin-goldin/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Fullstack Software Engineer', - industry: 'Other', - cities: ['Virginia Beach'], - }, - { - company: 'Booz Allen Hamilton', - name: 'Sang Rea Han', - email: 'sxhanx@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sangreahan/', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Sr. Consultant', - industry: 'Consulting', - cities: ['Mesa'], - }, - { - company: 'Boulevard', - name: 'Ashley Austin', - email: 'aaustin86@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mraustin2u', - campus: 'LA', - cohort: '34', - jobTitle: 'Senior Associate Software Engineer', - industry: 'Business Management Tool', - cities: ['Newark', 'Stockton', 'Santa Ana', 'Gilbert'], - }, - { - company: 'Boxed', - name: 'Adam Goodman', - email: 'adamrgoodman1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adam-goodman1/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Backend Engineer I', - industry: 'e-commerce', - cities: ['London', 'Mesa', 'St. Louis', 'Oakland'], - }, - { - company: 'BP3', - name: 'Brian Jungk', - email: 'brian.jungk@outlook.com', - linkedIn: 'https://www.linkedin.com/in/brian-jungk/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Software Engineer', - industry: 'Consulting', - cities: ['Durham', 'Reno', 'Baltimore'], - }, - { - company: 'Brady Corporation', - name: 'Sean Flynn', - email: 'seanflynn5000@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sean-g-flynn', - campus: 'NYC / ECRI', - cohort: '38', - jobTitle: 'Web Developer', - industry: 'Business Tech/Enterprise Tech', - cities: ['Oklahoma City', 'Plano', 'Reno', 'Winston-Salem'], - }, - { - company: 'Branding Brand', - name: 'Andy Heng', - email: 'andyheng1095@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andy-heng/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Engineer', - industry: 'E-Commerce', - cities: ['Lexington'], - }, - { - company: 'Branding Brand', - name: 'Christian Wong', - email: 'ctcwong73@gmail.com', - linkedIn: 'https://www.linkedin.com/in/wong-christian/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Bakersfield', 'Oakland', 'Washington', 'El Paso'], - }, - { - company: 'Branding Brand', - name: 'Nobuhide Ajito', - email: 'Nobuhide95@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nobuhide-ajito/', - campus: 'LA', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Technology', - cities: ['Cleveland'], - }, - { - company: 'Bread Financial', - name: 'Cho Yee Win Aung', - email: 'choyeewinag@gmail.com', - linkedIn: 'https://www.linkedin.com/in/choyeewinaung/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer 1', - industry: 'Fintech', - cities: ['Riverside', 'Boston', 'Norfolk'], - }, - { - company: 'Brighter', - name: 'Elliot Kim', - email: 'elliot.kim@gmail.com', - linkedIn: 'https://www.linkedin.com/in/elliotjykim/', - campus: 'LA', - cohort: '24', - jobTitle: 'Full Stack Engineer', - industry: 'Gaming & Entertainment', - cities: ['Indianapolis', 'Chandler', 'Phoenix', 'Arlington'], - }, - { - company: 'Brighter (Cigna)', - name: 'David Marquess', - email: 'dave.marquess@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dave-marquess/', - campus: 'LA', - cohort: '25', - jobTitle: 'Senior Software Engineer', - industry: 'Cybersecurity', - cities: ['Albuquerque', 'Riverside'], - }, - { - company: 'Brightflow AI', - name: 'Erika Jung', - email: 'erika.h.jung@gmail.com', - linkedIn: 'https://www.linkedin.com/in/erikahjung/', - campus: 'LA / WCRI', - cohort: '56', - jobTitle: 'Software Engineer', - industry: 'IT Services', - cities: ['Long Beach', 'Irvine', 'San Diego'], - }, - { - company: 'Brillio', - name: 'Alexander Smith', - email: 'ajsmith925@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ajsmith925/', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer', - industry: 'Software Consulting', - cities: ['Sacramento', 'Honolulu', 'Glendale'], - }, - { - company: 'Brooksource, contracted to Northwestern Mutual', - name: 'Jessica Louie Lee', - email: 'jlouielee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jessllee/', - campus: 'LA', - cohort: '48', - jobTitle: - 'Backend Node Engineer with Brooksource, Full stack Engineer with Northwestern Mutual', - industry: 'Fintech', - cities: ['Mesa', 'Bakersfield', 'Newark', 'Plano'], - }, - { - company: 'BuildOps', - name: 'Muhammad Trad', - email: 'Muhammad.trad@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/muhammadtrad/', - campus: 'LA', - cohort: '37', - jobTitle: 'Senior Software Engineer', - industry: 'Commercial Real Estate', - cities: ['Toronto', 'Buffalo'], - }, - { - company: 'Business Alliance Financial Services (BAFS)', - name: 'Justin McKay', - email: 'justinmckay99@gmail.com', - linkedIn: 'https://www.linkedin.com/in/justinwmckay/', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Washington', 'Cleveland'], - }, - { - company: 'Business Alliance Financial Services, LLC', - name: 'Joe Bigelow', - email: 'joebigelow@protonmail.com', - linkedIn: 'https://www.linkedin.com/in/joe-bigelow', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer', - industry: 'Finance (Credit union service organization)', - cities: ['Irvine', 'Arlington', 'El Paso'], - }, - { - company: 'ButcherBox', - name: 'Maxwell Shick', - email: 'maxwellshick@gmail.com', - linkedIn: 'https://www.linkedin.com/in/maxwell-shick/', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Restaurant, Food, and Beverage', - cities: ['Colorado Springs'], - }, - { - company: 'Butterfly Network', - name: 'Akiko Hagio Dulaney', - email: 'akikoinhd@gmail.com', - linkedIn: 'https://www.linkedin.com/in/akiko-hagio-dulaney/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Web/API QA Automation Engineer', - industry: 'Healthtech', - cities: ['Toledo', 'Corpus Christi', 'Atlanta'], - }, - { - company: 'Butterfly Network', - name: 'Crystal (Crys) Lim', - email: 'crystal.joy.lim@gmail.com', - linkedIn: 'https://www.linkedin.com/in/crystallim/', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer II - Cloud Backend', - industry: 'Medical Equipment Manufacturing', - cities: ['Scottsdale'], - }, - { - company: 'C3 AI', - name: 'Shelby Cotton', - email: 'hello@shelbycotton.com', - linkedIn: 'https://linkedin.com/in/shelbycotton', - campus: 'NYC', - cohort: '23', - jobTitle: 'Forward Deployed Engineer', - industry: 'Artificial intelligence', - cities: ['Long Beach'], - }, - { - company: 'C3.AI', - name: 'Dominic Genuario', - email: 'dominicgenuario@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dominic-genuario/', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Forward Deployed Engineer', - industry: 'Artificial Intelligence', - cities: ['Boston', 'Jersey City'], - }, - { - company: 'Cadent', - name: 'William Yoon', - email: 'williamdyoon@gmail.com', - linkedIn: 'https://www.linkedin.com/in/williamdyoon/', - campus: 'LA', - cohort: '42', - jobTitle: 'Front End Engineer', - industry: 'TV Advertising', - cities: ['Omaha', 'Chandler', 'Chula Vista'], - }, - { - company: 'CafeMedia', - name: 'Jasper Narvil', - email: 'jaspernarvil@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jaspernarvil/', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Software Eng II', - industry: 'Software / Tech', - cities: ['Long Beach'], - }, - { - company: 'CAIS Group', - name: 'Anson Avellar', - email: 'anson@ansonavellar.com', - linkedIn: 'https://www.linkedin.com/in/ansonavellar/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Front End Developer (internally Associate)', - industry: 'Fintech', - cities: ['Greensboro', 'Henderson', 'Louisville'], - }, - { - company: 'Canadian Tire Corporation', - name: 'Ansel Andro Santos', - email: 'anselandrosantos@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ansel-santos', - campus: 'NYOI', - cohort: '3', - jobTitle: 'Manager, Advanced Measurement & Analytics', - industry: 'Data/Analytics/Cloud', - cities: ['Portland', 'North Las Vegas', 'Milwaukee', 'Reno'], - }, - { - company: 'Canary Connect', - name: 'Dillon Garrett', - email: 'dillon.garrett.dev@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dillon-garrett/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Front End Engineer', - industry: 'Home Security', - cities: ['Corpus Christi'], - }, - { - company: 'Capital Connect by JP Morgan', - name: 'Peter Baniuszewicz', - email: 'Baniuszewicz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/peter-ba/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Lubbock', 'Austin', 'New Orleans', 'St. Petersburg'], - }, - { - company: 'Capital One', - name: 'Adrian Inza-Cruz', - email: 'ainzacruz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adrian-inza-cruz/', - campus: 'LA', - cohort: '41', - jobTitle: 'Senior Associate Software Engineer', - industry: 'Fintech', - cities: ['Louisville'], - }, - { - company: 'Capital One', - name: 'Alexander Gurfinkel', - email: 'alexgurfinkel@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexandergurfinkel/', - campus: 'PTRI', - cohort: '5', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Nashville', 'Chandler', 'Reno', 'Columbus'], - }, - { - company: 'Capital One', - name: 'Jung Ho Lee', - email: 'alexxleee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jungholee27/', - campus: 'FTRI', - cohort: '1', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: ['Washington', 'Indianapolis', 'Oakland'], - }, - { - company: 'Capital One', - name: 'Allan MacLean', - email: 'allanpmaclean@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Las Vegas'], - }, - { - company: 'Capital One', - name: 'Alvin Ma', - email: 'alvin.ma95@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alvinrayma/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Mesa', 'Tampa', 'Virginia Beach'], - }, - { - company: 'Capital One', - name: 'Alvin Cheng', - email: 'alvincheng505@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alvin-cheng/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: 'Banking', - cities: ['Berlin', 'Bakersfield', 'Tokyo'], - }, - { - company: 'Capital One', - name: 'Allana Ordonez', - email: 'ayaordonez@gmail.com', - linkedIn: 'https://www.linkedin.com/in/allana-ordonez/', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer, Frontend', - industry: 'Banking/Fintech', - cities: ['Albuquerque', 'Raleigh', 'Arlington'], - }, - { - company: 'Capital One', - name: 'Brandon Miller', - email: 'bmiller1881@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brandon-j-miller', - campus: 'FTRI / CTRI', - cohort: '12', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: ['Chicago', 'Louisville'], - }, - { - company: 'Capital One', - name: 'Carson Chen', - email: 'carson.cy.chen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/carsoncychen/', - campus: 'NYC', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'IT', - cities: ['San Antonio', 'Louisville', 'Washington'], - }, - { - company: 'Capital One', - name: 'Carlos Botero-Vargas', - email: 'cbotero-vargas@outlook.com', - linkedIn: 'https://www.linkedin.com/in/carlosb-v/', - campus: 'FTRI', - cohort: '1', - jobTitle: 'Senior Software Engineer', - industry: 'Finance', - cities: ['Long Beach'], - }, - { - company: 'Capital One', - name: 'Jason Clark', - email: 'clarkjasonee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/clarkjasonee/', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: ['Kansas City'], - }, - { - company: 'Capital One', - name: 'Sina Kahrobaei', - email: 'cna.kahrobaei@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sinakahrobaei/', - campus: 'FTRI', - cohort: '6', - jobTitle: 'Senior Software Engineer (Full Stack)', - industry: 'Fintech', - cities: ['Chula Vista', 'Houston', 'Oklahoma City'], - }, - { - company: 'Capital One', - name: 'Christopher cheng', - email: 'Ctpcheng@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ctpcheng/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Senior Software Engineer, Front End', - industry: 'Fintech', - cities: ['Durham', 'Tulsa', 'Irving', 'Chula Vista'], - }, - { - company: 'Capital One', - name: 'Darren Chan', - email: 'darrenc3195@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dbchan/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Full Stack Software Engineer', - industry: 'Fintech', - cities: ['Albuquerque', 'Memphis', 'Miami', 'Omaha'], - }, - { - company: 'Capital One', - name: 'David Zhang', - email: 'davidnyc@umich.edu', - linkedIn: 'https://www.linkedin.com/in/davidnyc/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Fullstack Software Engineer', - industry: 'Finance', - cities: ['Fort Wayne', 'Berlin', 'Columbus'], - }, - { - company: 'Capital One', - name: 'Dani Almaraz', - email: 'dtalmaraz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dani-almaraz/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: ['Fort Wayne', 'El Paso', 'Memphis', 'Stockton'], - }, - { - company: 'Capital One', - name: 'Eugene Lee', - email: 'eugleenyc@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Santa Ana', 'Tulsa'], - }, - { - company: 'Capital One', - name: 'Nel Malikova', - email: 'gunelmalikova@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gmalikova/', - campus: 'NYC', - cohort: '10', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Tucson', 'Mesa', 'Albuquerque'], - }, - { - company: 'Capital One', - name: 'Hemwatie Persaud', - email: 'hemwatiecodes@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hemwatie/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'Banking', - cities: ['Buffalo', 'Norfolk'], - }, - { - company: 'Capital One', - name: 'Ian Madden', - email: 'ianfmadden@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ian-madden/', - campus: 'FTRI / CTRI', - cohort: '7', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: ['Mumbai', 'Tucson'], - }, - { - company: 'Capital One', - name: 'Jae Hyun Ha', - email: 'jaehyunha96@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jae-hyun-ha/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Software Engineer - backend', - industry: 'Fintech', - cities: ['Boston', 'Aurora', 'Scottsdale'], - }, - { - company: 'Capital One', - name: 'James Ma', - email: 'jamesma991@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jamesma1199/', - campus: 'FTRI', - cohort: '7', - jobTitle: 'Senior Associate Software Engineer', - industry: 'Fintech', - cities: ['Seattle'], - }, - { - company: 'Capital One', - name: 'Jennifer Chau', - email: 'jenniferchau512@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jenniferchau512/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Cincinnati', 'Irving', 'Corpus Christi'], - }, - { - company: 'Capital One', - name: 'Jin Oh', - email: 'jintoh613@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jintoh613/', - campus: 'LA', - cohort: '42', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: ['Anaheim', 'Mumbai'], - }, - { - company: 'Capital One', - name: 'John Li', - email: 'jli159@binghamton.edu', - linkedIn: 'https://www.linkedin.com/in/john-li7/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Fullstack Engineer', - industry: 'Banking', - cities: ['Berlin', 'Mesa', 'Paris'], - }, - { - company: 'Capital One', - name: 'Joseph Amos', - email: 'joeamos17@gmail.com', - linkedIn: 'linkedin.com/in/joe-amos', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Senior Associate Software Engineer', - industry: 'Software / Tech', - cities: ['Colorado Springs', 'Tucson', 'Santa Ana'], - }, - { - company: 'Capital One', - name: 'Johnny Chen', - email: 'johncschen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/johnnycschen/', - campus: 'LA', - cohort: '45', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Dallas'], - }, - { - company: 'Capital One', - name: 'Jonathan Chen', - email: 'jonathanchen832@gmail.com', - linkedIn: 'Https://linkedin.com/in/jonathan-hp-chen', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Full Stack Engineer', - industry: 'Fintech', - cities: ['Chesapeake'], - }, - { - company: 'Capital One', - name: 'June Culp', - email: 'juneculp1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/juneculp/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Senior Front End Engineer', - industry: 'Fintech', - cities: ['Phoenix'], - }, - { - company: 'Capital One', - name: 'Kristine Aguda', - email: 'kaguda03@gmail.com', - linkedIn: 'https://www.linkedin.com/kristine-aguda', - campus: 'LA', - cohort: '45', - jobTitle: 'Software Engineer, Full Stack', - industry: 'Fin tech', - cities: ['Paris', 'Irvine'], - }, - { - company: 'Capital One', - name: 'Kasthuri Menon', - email: 'kasthuri.menon1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kasthurimenon/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Senior Software Engineer', - industry: 'Banking/ Fintech', - cities: ['Corpus Christi'], - }, - { - company: 'Capital One', - name: 'Ken Litton', - email: 'kennethclitton@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ken-litton/', - campus: 'LA', - cohort: '43', - jobTitle: 'Backend Engineer, Senior Associate', - industry: 'Finance/Banking', - cities: ['Las Vegas'], - }, - { - company: 'Capital One', - name: 'Kevin Park-Lee', - email: 'kevin38424@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kevin38424/', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: ['Columbus', 'Tampa', 'Laredo'], - }, - { - company: 'Capital One', - name: 'Kellen Levy', - email: 'Kmalcolmlevy@gmail.com', - linkedIn: 'https://www.linked.com/in/kellenmlevy', - campus: 'FTRI', - cohort: '1', - jobTitle: 'Senior Associate Software Engineer', - industry: 'Fintech', - cities: ['San Diego', 'Virginia Beach', 'Washington'], - }, - { - company: 'Capital One', - name: 'Jason Lin', - email: 'lin.jasonp@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jplin/', - campus: 'FTRI', - cohort: '7', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Kansas City', 'Sรฃo Paulo', 'Sacramento', 'Corpus Christi'], - }, - { - company: 'Capital One', - name: 'Luke Cho', - email: 'luke.h.cho@gmail.com', - linkedIn: 'https://www.linkedin.com/in/luke-h-cho/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'Banking', - cities: ['Fort Worth', 'Las Vegas', 'Tucson', 'Norfolk'], - }, - { - company: 'Capital One', - name: 'Philip Kang', - email: 'm.philipkang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/pkmi/', - campus: 'NYC / ECRI', - cohort: '27', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Gilbert', 'Lubbock', 'Minneapolis', 'Sacramento'], - }, - { - company: 'Capital One', - name: 'Matthew Femia', - email: 'mattfemia1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mattfemia/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Las Vegas', 'Albuquerque', 'Baltimore'], - }, - { - company: 'Capital One', - name: 'May Li', - email: 'mayleeli1234@gmail.com', - linkedIn: 'https://www.linkedin.com/in/maysli', - campus: 'LA', - cohort: '44', - jobTitle: 'Fullstack Software Engineer', - industry: 'Fintech', - cities: ['Baltimore', 'Aurora', 'Fort Worth'], - }, - { - company: 'Capital One', - name: 'Matt von der Lippe', - email: 'mvdlippe@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mvdlippe/', - campus: 'FTRI', - cohort: '3', - jobTitle: 'Senior Associate Software Engineer - Backend', - industry: 'Fintech', - cities: ['Tucson', 'Jersey City', 'Philadelphia', 'Omaha'], - }, - { - company: 'Capital One', - name: 'Nathanael Tracy', - email: 'n.tracy@outlook.com', - linkedIn: 'https://www.linkedin.com/in/nathanael-tracy/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Senior Associate Software Engineer', - industry: 'Finance', - cities: ['Irving', 'Tokyo', 'Norfolk'], - }, - { - company: 'Capital One', - name: 'Nathan Yang', - email: 'nathan.yang16@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nathanmyang/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Sr. Associate Software Engineer (Full-Stack)', - industry: 'Business', - cities: ['Omaha', 'San Antonio'], - }, - { - company: 'Capital One', - name: 'Nicholas A Gonzalez', - email: 'nicholas.a.gonz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nicholasagonzalez/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Fullstack Engineer', - industry: 'Fintech', - cities: ['Mumbai', 'Dallas'], - }, - { - company: 'Capital One', - name: 'Patrick Slagle', - email: 'patrickryanslagle@gmail.com', - linkedIn: 'https://www.linkedin.com/in/patrickslagle/', - campus: 'LA', - cohort: '23', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Cleveland', 'Oklahoma City', 'New York'], - }, - { - company: 'Capital One', - name: 'Peter Van', - email: 'peterrvan@gmail.com', - linkedIn: 'https://www.linkedin.com/in/peter-van/', - campus: 'LA', - cohort: '43', - jobTitle: 'Front End Software Engineer', - industry: 'Financial Services', - cities: ['Gilbert', 'Beijing', 'Greensboro', 'Winston-Salem'], - }, - { - company: 'Capital One', - name: 'Rachel Patterson', - email: 'racheljpatterson@gmail.com', - linkedIn: 'https://www.linkedin.com/in/racheljpatterson/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Software Engineer, Full Stack', - industry: 'Banking/Fintech', - cities: ['Austin'], - }, - { - company: 'Capital One', - name: 'Quentin Rousset', - email: 'roussetquent1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/qrousset/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Sr Software Engineer Back-end', - industry: 'Fintech', - cities: ['Beijing', 'New York', 'Dallas', 'San Diego'], - }, - { - company: 'Capital One', - name: 'Ahad Rajput', - email: 'sachem2015@gmail.com', - linkedIn: 'https://www.linkedin.com/in/arajput96/', - campus: 'FTRI', - cohort: '3', - jobTitle: 'Senior Software Engineer', - industry: 'Finance/Fintech', - cities: ['San Diego', 'Tampa', 'Colorado Springs'], - }, - { - company: 'Capital One', - name: 'Sam Portelance', - email: 'sportelance1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sportelance/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Senior Associate Fullstack Engineer', - industry: 'Fintech', - cities: ['Arlington'], - }, - { - company: 'Capital One', - name: 'Stephen Kim', - email: 'stephenkim612@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stephenkim612/', - campus: 'LA', - cohort: '47', - jobTitle: 'Software Engineer, Fullstack', - industry: 'Finance', - cities: ['Virginia Beach'], - }, - { - company: 'Capital One', - name: 'Andrew Talle', - email: 'talle.andrew@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andrewtalle/', - campus: 'FTRI', - cohort: '6', - jobTitle: 'Backend Software Engineer', - industry: 'Fintech', - cities: ['Colorado Springs', 'Irvine'], - }, - { - company: 'Capital One', - name: 'Terrence Granger', - email: 'Terrence.granger@gmail.com', - linkedIn: 'https://www.linkedin.com/in/terrence-granger/', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: ['Denver', 'Mexico City'], - }, - { - company: 'Capital One', - name: 'Thomas Reeder', - email: 'thomaseugenereeder@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thomas-reeder/', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer, Full Stack', - industry: 'Banking', - cities: ['Greensboro', 'Kansas City', 'Toledo'], - }, - { - company: 'Capital One', - name: 'Trevor Leung', - email: 'trevorleeeung@gmail.com', - linkedIn: 'https://www.linkedin.com/in/trevleung/', - campus: 'LA', - cohort: '47', - jobTitle: 'Software Engineer, Full Stack', - industry: 'Finance/Banking', - cities: ['Mexico City', 'Glendale', 'Columbus', 'Omaha'], - }, - { - company: 'Capital One', - name: 'Vivian Wu', - email: 'Vivian.wu.here@gmail.com', - linkedIn: 'https://www.linkedin.com/in/viv-wu', - campus: 'LA', - cohort: '44', - jobTitle: 'Solutions Engineer', - industry: 'Healthcare fintech', - cities: ['San Diego', 'North Las Vegas', 'Austin'], - }, - { - company: 'Capital One', - name: 'Vicki Yang', - email: 'vwyangdev@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vwyang/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Senior Software Engineer', - industry: 'Financial Services', - cities: ['Laredo', 'Albuquerque', 'Columbus'], - }, - { - company: 'Capital One', - name: 'Walker Marsh', - email: 'walkermarsh9@gmail.com', - linkedIn: 'https://www.linkedin.com/in/WalkerVEMarsh/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Software Engineer, Full Stack', - industry: 'Fintech/ Banking', - cities: ['Greensboro', 'Philadelphia', 'Irvine', 'San Diego'], - }, - { - company: 'Capital One', - name: 'Kevin Richardson', - email: 'kevin@karcodes.com', - linkedIn: 'https://www.linkedin.com/in/kevinalexrichardson/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Senior Software Engineer', - industry: 'Other', - cities: ['Washington', 'Milwaukee'], - }, - { - company: 'Capital One', - name: 'Michael Benliyan', - email: 'michaelbenliyan@gmail.com', - linkedIn: 'michaelbenliyan', - campus: 'LA / WCRI', - cohort: '55', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: ['Stockton', 'Glendale', 'Toronto'], - }, - { - company: 'Capital One', - name: 'Nathan Cho', - email: 'nathan.y.cho@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nathanycho', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['London'], - }, - { - company: 'Capital One', - name: 'Martin Ng', - email: 'kamartinng@gmail.com', - linkedIn: 'https://www.linkedin.com/in/martinngsf/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Senior Full Stack Engineer', - industry: 'Fintech', - cities: ['Sacramento', 'Anchorage', 'Fort Worth'], - }, - { - company: 'Capital One', - name: 'Honghao sun', - email: 'sunhonghaoshh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/honghaosunmichael/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Senior Fullstack Engineer', - industry: 'Fintech', - cities: ['Sรฃo Paulo', 'Charlotte'], - }, - { - company: 'Capital One Bank', - name: 'Donald Cross', - email: 'derekcrosslu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/crossderek/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Front End Engineer', - industry: 'Finance', - cities: ['Tokyo', 'Anaheim'], - }, - { - company: 'Capital Rx', - name: 'Htin Linn Aung', - email: 'htinlinnag1993@gmail.com', - linkedIn: 'https://www.linkedin.com/in/htinlinnaung/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Senior Fullstack Software Engineer', - industry: 'Healthcare Tech', - cities: ['Reno', 'New York', 'Los Angeles', 'Phoenix'], - }, - { - company: 'Capital Rx', - name: 'Jin Qin', - email: 'jxq32@case.edu', - linkedIn: 'https://www.linkedin.com/in/jcqin/', - campus: 'FTRI', - cohort: '1', - jobTitle: 'Senior Fullstack Developer', - industry: 'Health Care', - cities: ['Virginia Beach', 'Portland', 'Chula Vista', 'Paris'], - }, - { - company: 'Caraway Health', - name: 'Gwendolyn (Gwen) Phillips', - email: 'gwen.phil@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gwen-phillips/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Full Stack Engineer', - industry: 'Healthcare', - cities: ['Chandler', 'Berlin', 'Aurora', 'Baltimore'], - }, - { - company: 'Carbon Mapper', - name: 'Zach Franz', - email: 'zachafranz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/zacharyfranz/', - campus: 'NYC', - cohort: '4', - jobTitle: 'Software Engineer', - industry: 'Research', - cities: ['Anchorage'], - }, - { - company: 'Care/of', - name: 'Jake Pino', - email: 'Jakepino@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/jake-pino', - campus: 'NYC', - cohort: '30', - jobTitle: 'Senior Software Engineer', - industry: 'Wellness', - cities: ['Minneapolis', 'Irving', 'Los Angeles'], - }, - { - company: 'Care/of', - name: 'Malika Butler', - email: 'missemmbutler@gmail.com', - linkedIn: 'https://www.linkedin.com/in/malikabutler', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Health tech', - cities: ['Denver', 'Memphis', 'Chula Vista'], - }, - { - company: 'CareDox', - name: 'Christine Choi', - email: 'christine.yj.choi@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christineyjchoi/', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Retail', - cities: ['Henderson', 'Chicago', 'Fresno', 'Anchorage'], - }, - { - company: 'Carrot Fertility', - name: 'Heather Barney', - email: 'heather.barney@gmail.com', - linkedIn: 'https://www.linkedin.com/in/heather-barney1/', - campus: 'PTRI', - cohort: '4', - jobTitle: 'Associate Software Engineer', - industry: 'Insurance', - cities: ['Omaha', 'Charlotte'], - }, - { - company: 'Cassian Solutions, Inc.', - name: 'Darin Ngau', - email: 'darin.ngau@gmail.com', - linkedIn: 'https://www.linkedin.com/in/darin-ngau/', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['Lubbock'], - }, - { - company: 'Cast & Crew', - name: 'Tianhao Yao', - email: 'mapleseventh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tianhao-yao-2021826a/', - campus: 'LA', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'Entertainment', - cities: ['Washington', 'Philadelphia', 'Las Vegas'], - }, - { - company: 'cast and crew', - name: 'Sam Selfridge', - email: 'sirclesam@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/sam-selfridge/', - campus: 'LA', - cohort: '28', - jobTitle: 'software engineer', - industry: 'fintech/entertainment', - cities: ['Anchorage', 'Newark', 'Irvine'], - }, - { - company: 'Cast.app', - name: 'Robert Maeda', - email: 'rob.maeda3@gmail.com', - linkedIn: 'https://www.linkedin.com/in/robert-maeda/', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Los Angeles'], - }, - { - company: 'Catchpoint', - name: 'Neyser Zana', - email: 'neyserj.zana@gmail.com', - linkedIn: 'https://www.linkedin.com/in/neyser-zana-860018152/', - campus: 'NYC', - cohort: '7', - jobTitle: 'Software Engineer II', - industry: 'Advertising', - cities: ['Bakersfield', 'Tampa'], - }, - { - company: 'Causebox', - name: 'Grace Kim', - email: 'gracekiim@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gracekiim/', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Engineer', - industry: 'Consumer products', - cities: ['Paris', 'Portland', 'Chicago', 'Cincinnati'], - }, - { - company: 'CB Insights', - name: 'Hazel Na', - email: 'hazel.na3@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hyeseon-na', - campus: 'NYC', - cohort: '27', - jobTitle: 'Software Engineer III - Frontend', - industry: 'business analytics platform', - cities: ['Bakersfield'], - }, - { - company: 'CBTS - CVS', - name: 'Chang Shuen Lee', - email: 'changshuen.lee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/daveelee/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Frontend Software Engineer', - industry: 'Health', - cities: ['Norfolk', 'Cleveland', 'Virginia Beach'], - }, - { - company: 'Cecelia Health', - name: 'Kwadwo Asamoah', - email: 'addoasa94@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kwadwoasamoah', - campus: 'NYC', - cohort: '12', - jobTitle: 'Front End Engineer', - industry: 'Health', - cities: ['Stockton'], - }, - { - company: 'Cedars-Sinai Cancer', - name: 'William Chu', - email: 'Williamchu9@gmail.com', - linkedIn: 'https://www.linkedin.com/in/williamchu9/', - campus: 'LA', - cohort: '49', - jobTitle: 'Software Engineer/Programming Analyst', - industry: 'Healthcare', - cities: ['Minneapolis', 'Jacksonville'], - }, - { - company: 'Cenith Innovations', - name: 'Serena Amos', - email: 'amos.serena17@gmail.com', - linkedIn: 'https://www.linkedin.com/in/serena-amos/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Software Engineer', - industry: 'Aerospace', - cities: ['Seattle', 'Colorado Springs', 'Austin', 'Gilbert'], - }, - { - company: 'Centene', - name: 'Serena Romano', - email: 'serenahromano2000@gmail.com', - linkedIn: 'https://www.linkedin.com/in/srom1/', - campus: 'NYC / ECRI', - cohort: '41', - jobTitle: 'Full Stack Developer', - industry: 'Healthtech/Healthcare', - cities: ['Santa Ana', 'Tulsa'], - }, - { - company: 'Cequint', - name: 'Carol Xia', - email: 'c.xia.98@gmail.com', - linkedIn: 'linkedin.com/in/carolxia2', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Software Development Engineer', - industry: 'Telecommunications', - cities: ['Scottsdale', 'Jersey City'], - }, - { - company: 'Cerebral', - name: 'Irine Kang', - email: 'irine.kang@codesmith.io', - linkedIn: 'https://www.linkedin.com/in/irinekang/', - campus: 'FTRI', - cohort: '6', - jobTitle: 'Full Stack Engineer II', - industry: 'Medicine', - cities: ['Henderson', 'Reno', 'Philadelphia'], - }, - { - company: 'CH Robinson', - name: 'Joseph Cheng', - email: 'josephcheng.y@gmail.com', - linkedIn: 'https://www.linkedin.com/in/josephcheng-y/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Engineer', - industry: 'Logistic', - cities: ['Santa Ana', 'San Francisco'], - }, - { - company: 'Chainalysis', - name: 'Natalia Vargas-Caba', - email: 'nvargas@gm.slc.edu', - linkedIn: 'https://www.linkedin.com/in/nataliavargascaba', - campus: 'NYC', - cohort: '17', - jobTitle: 'Technical Writer', - industry: 'Fintech', - cities: ['Saint Paul', 'Glendale'], - }, - { - company: 'Chainguard', - name: 'Felipe Ocampo', - email: 'felipe.aocampo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ocampofelipe/', - campus: 'LA / WCRI', - cohort: '56', - jobTitle: 'Web Developer', - industry: 'Marketing/Advertising', - cities: ['Nashville', 'Jersey City'], - }, - { - company: 'Chainlink', - name: 'Finley Decker', - email: 'finleydecker@gmail.com', - linkedIn: 'https://www.linkedin.com/in/finleydecker/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Software Engineer', - industry: 'Blockchain/Web3', - cities: ['Mesa', 'Indianapolis', 'Los Angeles'], - }, - { - company: 'Change Healthcare', - name: 'Bruce Wong', - email: 'dbrucewong@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dawong/', - campus: 'LA', - cohort: '29', - jobTitle: 'Senior Software Engineer', - industry: 'Healthcare', - cities: ['Honolulu', 'Toronto', 'Madison'], - }, - { - company: 'Change Healthcare', - name: 'Billy K Lee', - email: 'ucanfindbillie@gmail.com', - linkedIn: 'https://www.linkedin.com/in/billy-k-lee/', - campus: 'LA', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['Arlington', 'Anchorage'], - }, - { - company: 'Change Healthcare.', - name: 'Noah Lee', - email: 'no@hlee.me', - linkedIn: 'https://www.linkedin.com/in/justnoah/', - campus: 'LA', - cohort: '27', - jobTitle: 'Software Engineer.', - industry: 'Healthcare.', - cities: ['Lincoln'], - }, - { - company: 'Chargebacks911', - name: 'Chandni Patel', - email: 'chandnip6@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chandnip6/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Winston-Salem', 'San Francisco', 'Arlington', 'Philadelphia'], - }, - { - company: 'Chargebee Retention', - name: 'Abhi Krishnan', - email: 'krabhishaken@gmail.com', - linkedIn: 'https://www.linkedin.com/in/krabhishaken/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Senior Software Engineer', - industry: 'Subscription Tech', - cities: ['Berlin'], - }, - { - company: 'Chariot', - name: 'Weilan Cui', - email: 'weilanc@gmail.com', - linkedIn: 'https://www.linkedin.com/in/weilan-cui', - campus: 'NYC', - cohort: '24', - jobTitle: 'Founding engineer', - industry: 'Software as a service', - cities: ['Nashville', 'Beijing'], - }, - { - company: 'Charles River', - name: 'Josh Howard', - email: 'JoshHoward.Dev@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joshhowarddev/', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Full Stack Developer', - industry: 'Software / Tech', - cities: ['Sydney', 'Nashville'], - }, - { - company: 'Charles Schwab', - name: 'Troy Witonsky', - email: 'troywitonsky@gmail.com', - linkedIn: 'https://www.linkedin.com/in/troy-witonsky', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Enterprise Engineer', - industry: 'Fintech', - cities: ['Fort Worth', 'Arlington', 'Cincinnati'], - }, - { - company: 'Chattanooga Shooting Supplies', - name: 'Zach Hall', - email: 'zachh85@gmail.com', - linkedIn: 'linkedin.com/in/z-r-hall', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Senior Application Developer', - industry: 'Retail', - cities: ['Beijing', 'Boston', 'Mesa', 'Columbus'], - }, - { - company: 'Cheddar Media', - name: 'David Neuhaus', - email: 'david@neuha.us', - linkedIn: 'https://www.linkedin.com/in/dneuhaus/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Sr Software Engineer', - industry: 'Media / News', - cities: ['Henderson'], - }, - { - company: 'Chegg, Inc', - name: 'Kate Matthews', - email: 'katesmatthews@gmail.com', - linkedIn: 'https://www.linkedin.com/in/katesmatthews/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Software Engineer', - industry: 'EdTech', - cities: ['Minneapolis', 'Cleveland', 'Austin', 'Berlin'], - }, - { - company: 'Chewy', - name: 'Lucy Chi', - email: 'lucycchi@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chilucy/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Tech Consulting, Client is in HealthTech', - cities: ['Lexington', 'Corpus Christi', 'Toledo'], - }, - { - company: 'Chewy', - name: 'Joseph Nagy', - email: 'nagyjoseph29@gmail.com', - linkedIn: 'https://www.linkedin.com/in/josephmnagy/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'E-commerce', - cities: ['Henderson', 'Berlin', 'Irvine'], - }, - { - company: 'Chief', - name: 'Tim Ruszala', - email: 'truszala@gmail.com', - linkedIn: 'https://www.linkedin.com/in/timruszala/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Fullstack Software Engineer', - industry: 'Other', - cities: ['Minneapolis', 'Omaha'], - }, - { - company: 'Chipper Cash', - name: 'Sean Lee', - email: 'lee.sw.sean@gmail.com', - linkedIn: 'https://www.linkedin.com/in/seanleesw', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Mesa'], - }, - { - company: 'Choose Ketamine', - name: 'Eric Komatsu', - email: 'eric@cpgexperience.com', - linkedIn: 'https://www.linkedin.com/in/eric-komatsu/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Lead Engineer', - industry: 'Healthcare', - cities: ['Long Beach', 'Las Vegas'], - }, - { - company: 'Chopra Global', - name: 'Jonathon Gonzalez', - email: 'gonzalezjonathon55@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonathon-gonzalez/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Backend Engineer', - industry: 'Health & Wellness', - cities: ['Kansas City'], - }, - { - company: 'Chopra Global', - name: 'Josh Naso', - email: 'jnaso29@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joshnaso/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Web Developer', - industry: 'Meditation/self-care', - cities: ['Sรฃo Paulo', 'Santa Ana'], - }, - { - company: 'ChromaCode', - name: 'Edwin Menendez', - email: 'edwinjmenendez@gmail.com', - linkedIn: 'https://www.linkedin.com/in/edwinmenendez/', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Bio-Tech', - cities: ['Portland', 'Atlanta'], - }, - { - company: 'Chubb insurance', - name: 'Robert Hernandez', - email: 'Rob23Hernandez@gmail.com', - linkedIn: 'https://www.linkedin.com/in/robhernandeznyc/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: ['Saint Paul', 'Honolulu', 'Wichita', 'New Orleans'], - }, - { - company: 'Cigna', - name: 'JC Fernandez', - email: 'jorgecarlosfern@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jorge-carlos-fernandez/', - campus: 'LA', - cohort: '42', - jobTitle: 'Full Stack Engineer', - industry: 'Health Care', - cities: ['Chandler', 'Washington'], - }, - { - company: 'CIMx', - name: 'Christian Springer', - email: 'christian@christianspringer.com', - linkedIn: 'https://www.linkedin.com/in/christian-springer0/', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Charlotte', 'Arlington', 'Seattle', 'Cleveland'], - }, - { - company: 'CircleCI', - name: 'Ai Mi Bui', - email: 'Aimibui22@gmail.com', - linkedIn: 'https://www.linkedin.com/in/aimibui/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Software Engineer', - industry: 'Software', - cities: ['Cincinnati'], - }, - { - company: 'CircleCI', - name: 'Jeff Chen', - email: 'contact.jeffchen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jalexchen/', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Development Engineer', - industry: 'Tech', - cities: ['Plano', 'Fort Wayne'], - }, - { - company: 'CircleCI', - name: 'Tony Shen', - email: 'tshen815@live.com', - linkedIn: 'https://www.linkedin.com/in/tonyShen815/', - campus: 'LA', - cohort: '35', - jobTitle: 'Software Engineer', - industry: 'Computer Software/Tech', - cities: ['Seattle', 'Laredo', 'Mumbai', 'Garland'], - }, - { - company: 'CircleCI', - name: 'Tyler Sullberg', - email: 'tysullberg@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tyler-sullberg/', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Dev Ops', - cities: ['Seattle', 'Garland'], - }, - { - company: 'Cisco', - name: 'Laura Llano', - email: 'ldllano@gmail.com', - linkedIn: 'https://www.linkedin.com/in/laura-llano', - campus: 'NYC', - cohort: '26', - jobTitle: 'Software Engineering', - industry: 'Software / Tech', - cities: ['Bakersfield', 'Corpus Christi', 'New Orleans'], - }, - { - company: 'Cisco Systems, Inc.', - name: 'Egon Levy', - email: 'egonlevy@gmail.com', - linkedIn: 'https://www.linkedin.com/in/egon-levy-8b62aa1b0/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Senior Software Engineer', - industry: 'Computer Engineering', - cities: ['Tampa', 'Cleveland', 'Portland', 'New York'], - }, - { - company: 'Citi', - name: 'Max Heubel', - email: 'maxhuebel@gmail.com', - linkedIn: 'https://www.linkedin.com/in/max-heubel/', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Sr. Programmer Analyst', - industry: 'Fintech', - cities: ['Anchorage', 'Aurora'], - }, - { - company: 'Citi (Citicorp Credit Services, Inc.)', - name: 'Reland Boyle', - email: 'reland.boyle@gmail.com', - linkedIn: 'https://www.linkedin.com/in/relandboyle/', - campus: 'FTRI', - cohort: '4', - jobTitle: - 'Digital Software Engineer / Senior Analyst - C12, Assistant Vice President of Matrix Reportingโ€‹', - industry: 'Fintech', - cities: ['Oklahoma City', 'Winston-Salem', 'Lexington'], - }, - { - company: 'Cityblock', - name: 'Oluwajomiloju Olaode', - email: 'jojuolaode@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jojuolaode/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Senior Software Engineer', - industry: 'Healthcare', - cities: ['Saint Paul', 'Milwaukee', 'Chicago'], - }, - { - company: 'Civera', - name: 'Hank McGill', - email: 'henrymcgill@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hank-mcgill/', - campus: 'NYOI', - cohort: '4', - jobTitle: 'Data Engineering Fellow', - industry: 'Government', - cities: ['Oakland'], - }, - { - company: 'CivilGrid', - name: 'Jack Moorman', - email: 'johnmoormaniii@gmail.com', - linkedIn: 'www.linkedin.com/in/jack-moorman', - campus: 'FTRI / CTRI', - cohort: '14', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Phoenix', 'Long Beach', 'North Las Vegas'], - }, - { - company: 'Classy', - name: 'Kim Spicer', - email: 'Kspicerny@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kimberleyspicer/', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer', - industry: 'Software', - cities: ['Memphis', 'Toledo', 'Tampa'], - }, - { - company: 'Clear', - name: 'Nate Adams', - email: 'NathanielBAdams@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adamsnathaniel/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Software Engineer', - industry: 'Biometrics / Security services', - cities: ['Fort Wayne'], - }, - { - company: 'Clear Capital', - name: 'Sean Haverstock', - email: 'seanhaverstock@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sean-haverstock/', - campus: 'LA', - cohort: '37', - jobTitle: 'Associate Software Engineer', - industry: 'Fintech, Real Estate', - cities: ['San Antonio', 'Jersey City', 'El Paso'], - }, - { - company: 'Clevyr', - name: 'Michael Watson', - email: 'mdwatson988@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mdwatson988/', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Jr. Software Developer', - industry: 'Software / Tech', - cities: ['Miami', 'Atlanta', 'Nashville'], - }, - { - company: 'Clicktripz', - name: 'Bryan Bart', - email: 'bart.bryan.e@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bryan-bart/', - campus: 'LA', - cohort: '48', - jobTitle: 'Software Engineer', - industry: 'Travel Technology', - cities: ['Plano'], - }, - { - company: 'Clover', - name: 'Michael Trapani', - email: 'mtrapani27@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael-a-trapani/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Web Software Engineer', - industry: 'Software / Tech', - cities: ['Columbus', 'Lexington'], - }, - { - company: 'ClubLabs', - name: 'Natlyn Phomsavanh', - email: 'natlynp@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'Insurance/Travel', - cities: ['London', 'Portland', 'San Francisco', 'Chula Vista'], - }, - { - company: 'ClubLabs', - name: 'Talya Sasek', - email: 'talyaercag@gmail.com', - linkedIn: 'https://www.linkedin.com/in/talyasasek/', - campus: 'LA', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: ['Sacramento', 'Houston'], - }, - { - company: 'CoachEm', - name: 'Matthew Garza', - email: 'mattg614@gmail.com', - linkedIn: 'https://www.linkedin.com/in/garzamatte/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Full Stack Software Engineer', - industry: 'Software / Tech', - cities: ['Cincinnati', 'Mumbai', 'Memphis'], - }, - { - company: 'Coates Group', - name: 'Paul Kim', - email: 'paulkim0209@gmail.com', - linkedIn: 'https://www.linkedin.com/in/paul-kim-37735b217', - campus: 'NYC / ECRI', - cohort: '41', - jobTitle: 'Backend Engineer', - industry: 'Business Tech/Enterprise Tech', - cities: ['Irving', 'Baltimore'], - }, - { - company: 'Cobalt.io', - name: 'Karl Richards', - email: 'krichards175@gmail.com', - linkedIn: 'https://www.linkedin.com/in/krichards175/', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Data Engineer', - industry: 'Security', - cities: ['Tulsa', 'Colorado Springs', 'Santa Ana', 'Atlanta'], - }, - { - company: 'Cobble', - name: 'Matt Peters', - email: 'matt@mpeters.io', - linkedIn: 'https://www.linkedin.com/in/mattgpeters', - campus: 'NYC', - cohort: '16', - jobTitle: 'Frontend Engineer', - industry: 'Leisure, Travel & Tourism', - cities: ['Virginia Beach', 'Sydney', 'Mumbai', 'Cincinnati'], - }, - { - company: 'Code Climate', - name: 'Margaret Ma', - email: 'margaretma00@gmail.com', - linkedIn: 'https://www.linkedin.com/in/margaret-ma/', - campus: 'NYC', - cohort: '3', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Indianapolis', 'North Las Vegas', 'Sรฃo Paulo', 'New Orleans'], - }, - { - company: 'Coder', - name: 'Michael Smith', - email: 'throwawayclover@gmail.com', - linkedIn: 'www.linkedin.com/in/michael-eric-smith', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Software Engineer', - industry: 'Software Solutions/Developer Tools', - cities: ['Mesa', 'Honolulu', 'Columbus'], - }, - { - company: 'Codesmith', - name: 'Terry L. Tilley', - email: 'terryltilley@gmail.com', - linkedIn: 'https://www.linkedin.com/in/t-l-tilley/', - campus: 'LA', - cohort: '44', - jobTitle: 'Instruction Training Manager', - industry: 'Software/Tech', - cities: ['Sรฃo Paulo', 'Stockton', 'Oakland'], - }, - { - company: 'Cofebe', - name: 'Seong Choi', - email: 'choies921003@gmail.com', - linkedIn: 'https://www.linkedin.com/in/seongchoi/', - campus: 'LA', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Computer Software', - cities: ['Berlin', 'Reno', 'El Paso'], - }, - { - company: 'Cognizant', - name: 'Scott Burman', - email: 'Scottburs@gmail.com', - linkedIn: 'https://www.linkedin.com/in/scottburman847/', - campus: 'LA', - cohort: '39', - jobTitle: 'Senior Developer', - industry: 'Technology', - cities: ['Indianapolis', 'Tucson'], - }, - { - company: 'Cohere AI', - name: 'Zahara Aviv ', - email: 'zahara.aviv@gmail.com', - linkedIn: 'https://linkedIn.com/in/zahara-aviv', - campus: 'NYC / ECRI', - cohort: '38', - jobTitle: 'Senior Full Stack Engineer ', - industry: 'Artificial Intelligence', - cities: ['Denver', 'Chicago', 'Fresno', 'Boston'], - }, - { - company: 'CoinCircle', - name: 'Andrew Fuselier', - email: 'theandewlarry@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andrewfuselier/', - campus: 'LA', - cohort: '19', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Fort Worth'], - }, - { - company: 'Collective Health', - name: 'Daryl Foster', - email: 'dmafoster@gmail.com', - linkedIn: 'https://www.linkedin.com/in/darylfosterma/', - campus: 'LA', - cohort: '42', - jobTitle: 'Senior Frontend Engineer', - industry: 'Health Tech (Healthplan Administration for 1000 plus employee companies)', - cities: ['Tokyo', 'Laredo', 'Arlington', 'Mesa'], - }, - { - company: 'Colliers - Contract position through Hays', - name: 'Pauline Nguyen', - email: 'Paulinekpn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/paulineknguyen/', - campus: 'LA / WCRI', - cohort: '55', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: ['Reno', 'Toledo'], - }, - { - company: 'Comcast', - name: 'Brian Chiang', - email: 'brianchiang2008@gmail.com', - linkedIn: 'linkedin.com/in/brian-chiang4', - campus: 'LA / WCRI', - cohort: '48', - jobTitle: 'Software Engineer', - industry: 'Media', - cities: ['El Paso', 'Scottsdale', 'Jacksonville', 'Paris'], - }, - { - company: 'Comcast', - name: 'Darwin Sinchi', - email: 'dsinchi19@gmail.com', - linkedIn: 'https://www.linkedin.com/in/darwin-m-sinchi/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer', - industry: 'TeleCom', - cities: ['Bakersfield', 'Kansas City', 'Winston-Salem', 'Lexington'], - }, - { - company: 'Comcast', - name: 'Matthew Francis', - email: 'mbfrancis7@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mbfrancis7/', - campus: 'NYC', - cohort: '7', - jobTitle: 'Software Developer', - industry: '', - cities: ['Columbus', 'Philadelphia', 'Berlin'], - }, - { - company: 'Comcast', - name: 'Yong-Nicholas Alexander Kim', - email: 'yongnicholaskim@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yongnicholaskim/', - campus: 'NYC', - cohort: '7', - jobTitle: 'Node.js Engineer', - industry: 'Commercial Services', - cities: ['Madison', 'Raleigh', 'Irvine', 'Stockton'], - }, - { - company: 'CommonBond', - name: 'Nathan Bargers', - email: 'nbargers@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nathan-bargers/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Finance', - cities: ['Houston', 'Virginia Beach', 'Saint Paul', 'Wichita'], - }, - { - company: 'Community Attributes Inc', - name: 'Carter Long', - email: 'crlong7@gmail.com', - linkedIn: 'https://www.linkedin.com/in/carterrobertlong/', - campus: 'FTRI / CTRI', - cohort: '15', - jobTitle: 'Full Stack Developer', - industry: 'Consulting', - cities: ['Tampa', 'Austin'], - }, - { - company: 'Compass', - name: 'Casey Walker', - email: 'casey.e.walker@gmail.com', - linkedIn: 'https://www.linkedin.com/in/caseyewalker', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer II', - industry: 'Real Estate', - cities: ['San Diego', 'Tampa', 'Houston'], - }, - { - company: 'Compass', - name: 'Liam McBride', - email: 'liameno16@gmail.com', - linkedIn: 'https://www.linkedin.com/in/liamemcbride/', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: ['Omaha'], - }, - { - company: 'Compass', - name: 'Sierra Swaby', - email: 'Sierra.swaby@gmail.com', - linkedIn: 'https://www.linkedin.com/in/Sierra-swaby', - campus: 'NYC', - cohort: '12', - jobTitle: 'Creative Developer', - industry: 'Real Estate', - cities: ['Sรฃo Paulo', 'Oakland', 'Phoenix', 'Kansas City'], - }, - { - company: 'Compliancy Group', - name: 'Bruno Albero', - email: 'alberobruno@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alberobruno/', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['St. Louis', 'Charlotte', 'Chesapeake', 'Philadelphia'], - }, - { - company: 'Conagra Brands', - name: 'Scott Hallock', - email: 'scott.hallock@gmail.com', - linkedIn: 'https://www.linkedin.com/in/scottjhallock', - campus: 'FTRI / CTRI', - cohort: '16', - jobTitle: 'Senior Software Engineer', - industry: 'Food/Beverage/Restaurant', - cities: ['Oakland', 'Dallas', 'Lexington'], - }, - { - company: 'Concert Health', - name: 'Raubern Totanes', - email: 'rstotanes@g.ucla.edu', - linkedIn: 'https://www.linkedin.com/in/rauberntotanes/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Software Development Engineer', - industry: 'Health Tech', - cities: ['Laredo'], - }, - { - company: 'Contracting for Perspecta Labs via Roc Search via Precision Global Consulting', - name: 'Ben Mizel', - email: 'ben.mizel@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ben-mizel/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Back End Software Engineer', - industry: 'Defense', - cities: ['Sydney', 'Anaheim', 'St. Louis'], - }, - { - company: 'Core Business Technology', - name: 'Jason Hwang', - email: 'hwangja1019@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jason-jh-hwang/', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Associate Engineer', - industry: 'Fintech', - cities: ['Chesapeake', 'Stockton', 'Washington'], - }, - { - company: 'Core Digital Media', - name: 'Edward Greenberg', - email: 'ed.w.greenberg@gmail.com', - linkedIn: 'https://www.linkedin.com/in/edwgreenberg/', - campus: 'NYC', - cohort: '14', - jobTitle: 'Senior Web Developer', - industry: 'Software', - cities: ['Greensboro'], - }, - { - company: 'Cosm', - name: 'Shana Hoehn', - email: 'Shanahoehn@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer', - industry: 'Entertainment technology', - cities: ['New York', 'Garland'], - }, - { - company: 'Costa Farms LLC', - name: 'Ernesto Gonzalez', - email: 'egonzalez442@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ernesto-gonzalez123', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'Agriculture Science', - cities: ['Mesa', 'Irvine'], - }, - { - company: 'CoStar', - name: 'Prasad Pulaguntla', - email: 'prasad.pul@gmail.com', - linkedIn: 'https://www.linkedin.com/in/prasad-pulaguntla/', - campus: 'FTRI', - cohort: '2', - jobTitle: 'Lead Software Engineer', - industry: 'Commercial Real Estate', - cities: ['Jersey City', 'Fort Worth', 'Mumbai', 'Tokyo'], - }, - { - company: 'CoStar Group', - name: 'Alan Richardson', - email: 'alanrichardson723@gmail.com', - linkedIn: '', - campus: 'NYC / ECRI', - cohort: '29', - jobTitle: 'Associate Software Engineer', - industry: 'Real Estate', - cities: ['Toledo', 'Stockton'], - }, - { - company: 'CoStar Group', - name: 'Julian Kang', - email: 'julianswkang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/julianswkang', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Software Engineer II', - industry: 'Real Estate', - cities: ['Aurora', 'Oklahoma City', 'San Diego'], - }, - { - company: 'CoStar Group', - name: 'Kevin Berlanga', - email: 'kvnberlanga@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kevinberlanga/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Software Engineer II', - industry: 'Real Estate', - cities: ['Henderson', 'London'], - }, - { - company: 'CoStar Group', - name: 'Ruzeb Chowdhury', - email: 'ruzeb1996@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ruzebchowdhury/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Frontend Engineer', - industry: 'Commercial Real Estate', - cities: ['Jacksonville', 'Oklahoma City', 'Albuquerque', 'Berlin'], - }, - { - company: 'Coursetune', - name: 'John Maltese', - email: 'john.maltese@gmail.com', - linkedIn: 'https://www.linkedin.com/in/john-maltese/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Senior Software Engineer/Web App Architect', - industry: 'Software / Tech', - cities: ['Washington'], - }, - { - company: 'Courted', - name: 'Sett Hein', - email: 'settnaing199@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sett-hein/', - campus: 'FTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: ['Tulsa', 'Lincoln'], - }, - { - company: 'Cox Automotive', - name: 'Tarik Mokhtech', - email: 'tarik.mokhtech@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tarik-mokhtech/', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Software Engineer II', - industry: 'Automotive', - cities: ['Bakersfield', 'Tulsa', 'Plano'], - }, - { - company: 'Cox Automotive', - name: 'Tarik Mokhtech', - email: 'tarik.mokhtech@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tarik-mokhtech/', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Software Engineer II', - industry: 'Automotive', - cities: ['Lincoln', 'San Antonio', 'San Diego', 'Henderson'], - }, - { - company: 'Credera', - name: 'Nisa Lintakoon', - email: 'nisa.lintakoon@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nisalintakoon', - campus: 'FTRI', - cohort: '1', - jobTitle: 'Technology Solutions Consultant', - industry: 'Consulting', - cities: ['Glendale', 'Colorado Springs', 'Minneapolis', 'St. Louis'], - }, - { - company: 'Crescita', - name: 'Gordon Campbell', - email: 'gordonspencer.c@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '14', - jobTitle: 'Software Engineer', - industry: 'VC', - cities: ['Raleigh'], - }, - { - company: 'Cricket Health', - name: 'Lina Shin', - email: 'rxlina01@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rxlina/', - campus: 'LA', - cohort: '45', - jobTitle: 'Fullstack Software Engineer', - industry: 'Healthcare', - cities: ['Miami', 'Mexico City', 'Mesa'], - }, - { - company: 'Crisis Text Line', - name: 'Chan Choi', - email: 'chanychoi93@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chan-choi/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Software Engineer', - industry: 'Mental Health Services', - cities: ['Boston'], - }, - { - company: 'Crocs', - name: 'Mark Charles Smith', - email: 'markcharlessmith@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mark-charles-smith/', - campus: 'NYC / ECRI', - cohort: '31', - jobTitle: 'Senior React Developer', - industry: 'Consumer Goods: Fashion', - cities: ['Durham', 'Beijing', 'Buffalo', 'Nashville'], - }, - { - company: 'Crossbeam', - name: 'Harrison Cramer', - email: 'Harrisoncramer@gmail.com', - linkedIn: 'https://www.linkedin.com/in/harrison-cramer', - campus: 'NYC', - cohort: '27', - jobTitle: 'Software engineer', - industry: 'SaaS', - cities: ['Dallas', 'San Diego', 'Seattle', 'Atlanta'], - }, - { - company: 'Crossbeam', - name: 'Aryeh Kobrinsky', - email: 'shmaryeh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/aryehkobrinsky/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer', - industry: 'Data Analytics', - cities: ['Plano', 'Philadelphia', 'Riverside', 'Bakersfield'], - }, - { - company: 'Crossover Health', - name: 'Heather Friedman', - email: 'hfried25@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hgfriedman/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Senior Software Engineer', - industry: 'Health', - cities: ['Pittsburgh'], - }, - { - company: 'Crossover Health', - name: 'Taylor Riley Du', - email: 'taylor.r.du@gmail.com', - linkedIn: 'https://www.linkedin.com/in/taylordu/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['Scottsdale'], - }, - { - company: 'Crowdstrike', - name: 'yi bo (eddie) wang', - email: 'eddiewang12345@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eddie-wang2/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Software Developer', - industry: 'Cybersecurity', - cities: ['Arlington', 'Houston', 'Seattle'], - }, - { - company: 'Crowley', - name: 'Alina Gasperino', - email: 'alina.gasperino@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alinagasperino/', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Software Engineer III', - industry: 'Other', - cities: ['Saint Paul', 'Portland', 'Los Angeles'], - }, - { - company: 'Crown Sterling', - name: 'Shirin Davis', - email: 'Shirinlittle94@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '39', - jobTitle: 'Software engineer', - industry: 'Cryptography', - cities: ['Arlington'], - }, - { - company: 'CrunchyBananas', - name: 'Corey Morrison', - email: 'corey.neil.morrison@gmail.com', - linkedIn: 'https://www.linkedin.com/in/corey-morrison', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Consulting', - cities: ['Toronto', 'Santa Ana', 'Detroit', 'Chandler'], - }, - { - company: 'Crunchyroll', - name: 'Brit Lim', - email: 'britsta92@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brit-lim/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Full Stack Software Engineer', - industry: 'Entertainment', - cities: ['Beijing', 'Minneapolis'], - }, - { - company: 'CSI Interfusion', - name: 'Snow Bai', - email: 'xueapp@gmail.com', - linkedIn: 'https://www.linkedin.com/in/xuebaiprofile/', - campus: 'LA / WCRI', - cohort: '55', - jobTitle: 'Fullstack Engineer', - industry: 'Software / Tech', - cities: ['Cincinnati', 'Mesa'], - }, - { - company: 'Culture Biosciences', - name: 'Savitri Beaver', - email: 'savitribeaver@gmail.com', - linkedIn: 'https://www.linkedin.com/in/savitribeaver', - campus: 'FTRI', - cohort: '3', - jobTitle: 'Software Engineer I', - industry: 'Biotech', - cities: ['Bakersfield', 'Long Beach', 'Tulsa', 'Mesa'], - }, - { - company: 'Curia.ai', - name: 'Young Min Lee', - email: 'youngmineeh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/youngminlee-/', - campus: 'LA', - cohort: '48', - jobTitle: 'Senior Software Engineer', - industry: 'Healthcare, AI', - cities: ['Virginia Beach', 'Durham'], - }, - { - company: 'Currency', - name: 'Jason Wong', - email: 'jwaosnogn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jwong1995/', - campus: 'LA', - cohort: '25', - jobTitle: 'Full Stack Developer', - industry: '', - cities: ['Toronto', 'Louisville', 'Winston-Salem'], - }, - { - company: 'Cutover', - name: 'Paul Rhee', - email: 'youjun27@gmail.com', - linkedIn: 'https://www.linkedin.com/in/prheee', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Memphis', 'Raleigh', 'Fort Wayne'], - }, - { - company: 'CVS', - name: 'Mario Eldin', - email: 'marioeldin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/marioeldin/', - campus: 'LA', - cohort: '40', - jobTitle: 'Software Engineer', - industry: 'Health/Insurance', - cities: ['Aurora', 'Irvine'], - }, - { - company: 'CVS', - name: 'Vinh Chau', - email: 'vchau511@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vinh-chau/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Software Engineer', - industry: 'Pharmacy', - cities: ['San Jose'], - }, - { - company: 'CVS Health', - name: 'Connor Bovino', - email: 'connor.bovino@gmail.com', - linkedIn: 'https://www.linkedin.com/in/connor-bovino/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Fullstack Node.js Developer (Software Engineer)', - industry: 'Health', - cities: ['Louisville'], - }, - { - company: 'CVS Health', - name: 'Satyam sheth', - email: 'Snsheth55@gmail.com', - linkedIn: 'https://www.linkedin.com/in/satyamsheth55/', - campus: 'NYC', - cohort: '5', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['Madison'], - }, - { - company: 'CVS Health', - name: 'Windu Sayles', - email: 'Windu.Sayles@gmail.com', - linkedIn: 'https://www.linkedin.com/in/windusayles/', - campus: 'LA', - cohort: '40', - jobTitle: 'Full Stack Node Developer', - industry: 'Health', - cities: ['Long Beach', 'Winston-Salem'], - }, - { - company: 'CVS Health/ Aetna', - name: 'Miklos Kertesz', - email: 'mikloslkertesz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mikl%C3%B3s-kert%C3%A9sz/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Data Engineer - Web UI Engineer', - industry: 'health', - cities: ['Oakland', 'Tucson', 'Saint Paul'], - }, - { - company: 'Cyber Popup', - name: 'Stephen Fitzsimmons', - email: 'smf0211@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stephenfitzsimmons', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Lead Full Stack Engineer', - industry: 'Software / Tech', - cities: ['Oklahoma City', 'Oakland', 'Irvine'], - }, - { - company: 'Cybereason', - name: 'Phoebe Ermert', - email: 'phoebeermert@gmail.com', - linkedIn: 'https://www.linkedin.com/in/phoebe-ermert/', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Full Stack Engineer', - industry: 'Other', - cities: ['Anchorage', 'St. Louis'], - }, - { - company: 'Cyborg, Inc', - name: 'Jim Armbruster', - email: 'JMArmbruster@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jim-armbruster/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Full-Stack Engineer', - industry: 'Computer Software', - cities: ['Louisville'], - }, - { - company: 'Cyderes', - name: 'Giovanni Flores-Lovo', - email: 'giovanniflores.l@gmail.com', - linkedIn: 'https://www.linkedin.com/in/giovanni-flores-lovo-11a288232/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Engineer', - industry: 'Security', - cities: ['Indianapolis', 'Denver'], - }, - { - company: 'Dandy', - name: 'Aram Krakirian', - email: 'aramkrakirian@gmail.com', - linkedIn: 'https://www.linkedin.com/in/aram-krakirian/', - campus: 'LA', - cohort: '47', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Anchorage', 'San Diego', 'Honolulu'], - }, - { - company: 'Data Intelligence', - name: 'Jimmy Mei', - email: 'Jimmy27mei@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jimmymei/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Full Stack Engineer', - industry: 'Tech consultant', - cities: ['Garland', 'Irving', 'Reno', 'Greensboro'], - }, - { - company: 'Data Surge LLC', - name: 'Hang Xu', - email: 'hxu009@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hangxu09/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Data Engineer', - industry: 'Data solutions', - cities: ['Louisville', 'Riverside', 'Reno'], - }, - { - company: 'Databook', - name: 'Julie Wu', - email: 'scorp_only@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/yu-ting-w/', - campus: 'LA', - cohort: '40', - jobTitle: 'Sr Software Engineer', - industry: 'Sales', - cities: ['Lexington', 'Sรฃo Paulo', 'Jacksonville'], - }, - { - company: 'Datacoral', - name: 'Jae Park', - email: 'woojae.jay.park@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Fashion/E-Commerce', - cities: ['Seattle', 'Lubbock', 'Anchorage', 'Santa Ana'], - }, - { - company: 'Datametrics', - name: 'Luis Navarro', - email: 'pozhiin@hotmail.com', - linkedIn: 'https://www.linkedin.com/in/luis-e-navarro/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Frontend Developer', - industry: 'Software / Tech', - cities: ['Riverside', 'Stockton', 'Indianapolis'], - }, - { - company: 'DAZN', - name: 'Leonoor Rinke de Wit', - email: 'lrinkedewit@gmail.com', - linkedIn: 'https://www.linkedin.com/in/leonoorrinkedewit/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Backend Software Engineer', - industry: 'Media', - cities: ['Omaha', 'Indianapolis', 'Orlando'], - }, - { - company: 'DealPath', - name: 'Huy Bui', - email: 'huybui.sj@gmail.com', - linkedIn: 'https://www.linkedin.com/in/huyqbui/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: ['Madison', 'Sacramento'], - }, - { - company: 'Decent Labs', - name: 'Julia Collins', - email: 'Julia.col@protonmail.com', - linkedIn: 'https://www.linkedin.com/in/julia-col', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Full Stack Web3 Engineer', - industry: 'Crypto', - cities: ['Beijing', 'Fresno', 'Milwaukee'], - }, - { - company: 'Deloitte', - name: 'Justin Buckner', - email: 'jwbprofessional@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jbuild/', - campus: 'FTRI', - cohort: '3', - jobTitle: 'Consultant - front end developer', - industry: 'Consulting', - cities: ['Memphis', 'Chesapeake', 'Virginia Beach', 'Irving'], - }, - { - company: 'Delta Air Lines', - name: 'Joal Kim', - email: 'joalkims@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joal-kim', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Airline', - cities: ['Louisville', 'Jacksonville', 'Indianapolis'], - }, - { - company: 'DeltaMath', - name: 'Hannah McDowell', - email: 'hannah.mcdowell1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hannah-lisbeth-mcdowell/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Scottsdale', 'San Antonio', 'Mexico City', 'Omaha'], - }, - { - company: 'DeMark Analytics LLC', - name: 'SEUNGHO BAEK', - email: 'shbaek115@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Engineer', - industry: 'Software & Tech services', - cities: ['Jersey City', 'Fresno', 'Winston-Salem', 'Buffalo'], - }, - { - company: 'Dematic', - name: 'Liang Wen (Rocky) Lin', - email: 'liangwen511@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rocky-lin/', - campus: 'NYC', - cohort: '14', - jobTitle: 'Senior Software Engineer', - industry: 'Manufacturing and Distribution', - cities: ['Durham', 'Fort Wayne', 'Boston', 'Tokyo'], - }, - { - company: 'Dendi Software', - name: 'Ozair Ghulam', - email: 'Ozairghulam4@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ozair-ghulam', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Forward deployed software engineer', - industry: 'Healthcare', - cities: ['Raleigh'], - }, - { - company: 'Denizen', - name: 'Greg Domingue', - email: 'Greg.domingue1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/greg-domingue', - campus: 'LA', - cohort: '23', - jobTitle: 'Full Stack Software Engineer', - industry: 'International Banking', - cities: ['Phoenix', 'Las Vegas', 'Charlotte', 'Austin'], - }, - { - company: 'Density', - name: 'Timothy Weidinger', - email: 'timothy.weidinger@gmail.com', - linkedIn: 'https://www.linkedin.com/in/timweidinger/', - campus: 'NYC / ECRI', - cohort: '41', - jobTitle: 'Senior Full Stack Software Engineer', - industry: 'Data/Analytics/Cloud', - cities: ['Saint Paul', 'Washington', 'Chicago'], - }, - { - company: 'Derivco Sports', - name: 'Denny Temple', - email: 'denny.temple@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dentemple/', - campus: 'NYC', - cohort: '6', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Tulsa', 'Tampa', 'Beijing', 'Anaheim'], - }, - { - company: 'Destination Pet', - name: 'Nicholas Jordan Brush', - email: 'njbrush@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nicholas-j-brush?trk=people-guest_people_search-card', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer', - industry: 'Pet healthcare', - cities: ['North Las Vegas', 'Bakersfield', 'Anaheim'], - }, - { - company: 'DexCare', - name: 'Nhan Ly', - email: 'nhansense1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nhanly/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Healthtech', - cities: ['Houston', 'Scottsdale', 'San Francisco'], - }, - { - company: 'Diamond Web Services', - name: 'Ben Gummelt', - email: 'Camaromelt@gmail.com', - linkedIn: 'https://www.linkedin.com/in/benjamingummelt', - campus: 'LA', - cohort: '20', - jobTitle: 'Full stack software engineer', - industry: '', - cities: ['Henderson', 'Jersey City'], - }, - { - company: 'Diamond Web Services', - name: 'Gregory Palasciano', - email: 'greg.palasciano@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gregory-palasciano/', - campus: 'LA', - cohort: '36', - jobTitle: 'Fullstack Engineer', - industry: 'Entertainment/Consulting', - cities: ['Honolulu', 'Oakland', 'Atlanta'], - }, - { - company: 'Diamond Web Services', - name: 'Jonathan Perera', - email: 'Jon.p@codesmith.io', - linkedIn: 'https://www.linkedin.com/in/japerera/', - campus: 'LA', - cohort: '22', - jobTitle: 'Developer', - industry: '', - cities: ['Irvine'], - }, - { - company: 'Diana Health', - name: 'Jackson Dahl', - email: 'jacksondahl27@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jackson-dahl/', - campus: 'NYOI', - cohort: '4', - jobTitle: 'Full Stack Software Engineer', - industry: 'Healthtech/Healthcare', - cities: ['Fort Wayne', 'Seattle', 'Colorado Springs'], - }, - { - company: "Dick's Sporting Goods", - name: 'Brian Hon', - email: 'brianwhon@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brianwhon/', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Retail', - cities: ['Fresno', 'Lubbock'], - }, - { - company: 'DigiCert', - name: 'James M Espy II', - email: 'jespy2@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jamesespy/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'digital certificates / security', - cities: ['Lexington', 'North Las Vegas', 'Fort Worth'], - }, - { - company: 'Digilock', - name: 'Aaron Yang', - email: 'aaronyang024@gmail.com', - linkedIn: 'https://www.linkedin.com/in/aaronyang24/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Electronic Manufacturing', - cities: ['Sacramento', 'Aurora', 'London'], - }, - { - company: 'Digital Position', - name: 'Joe Beger', - email: 'jtbeger@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jtbeger/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Developer', - industry: 'SEO', - cities: ['Detroit'], - }, - { - company: 'DigitalOcean', - name: 'Natalia Vargas-Caba', - email: 'nvargascaba@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nataliavargascaba', - campus: 'NYC', - cohort: '17', - jobTitle: 'Technical Editor', - industry: 'Cloud service', - cities: ['Toronto', 'Glendale', 'Oakland'], - }, - { - company: 'Discord', - name: 'Jacob Richards', - email: 'jacob.richards33@gmail.com', - linkedIn: 'https://www.linkedin.com/in/palgorhythm/', - campus: 'LA', - cohort: '29', - jobTitle: 'Senior Software Engineer', - industry: 'Tech', - cities: ['New York', 'Corpus Christi', 'Chula Vista', 'Minneapolis'], - }, - { - company: 'Discovery', - name: 'adele calvo', - email: 'adelecalvo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adelecalvo/', - campus: 'NYC', - cohort: '9', - jobTitle: 'Software Engineer I, UI,', - industry: 'Blockchain', - cities: ['Albuquerque'], - }, - { - company: 'Discovery', - name: 'Sarah t Renshaw', - email: 'strenshaw@gmail.com', - linkedIn: 'https://linkedin.com/in/strenshaw/', - campus: 'NYC', - cohort: '2', - jobTitle: 'Software Engineer I', - industry: 'Music', - cities: ['London', 'Pittsburgh', 'Kansas City'], - }, - { - company: 'Disney Streaming', - name: 'Daniel Palumbo', - email: 'Drpalumbo17@gmail.com', - linkedIn: 'https://www.linkedin.com/in/daniel-palumbo-735715137', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Portland'], - }, - { - company: 'Disney Streaming', - name: 'Nat Heller', - email: 'nat.w.heller@gmail.com', - linkedIn: 'https://www.linkedin.com/in/natwheller/', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Entertainment', - cities: ['Long Beach'], - }, - { - company: 'Disney Streaming', - name: 'Frank Ma', - email: 'yurenfrankma@gmail.com', - linkedIn: 'https://www.linkedin.com/in/frankma2', - campus: 'LA', - cohort: '25', - jobTitle: 'Sr Frontend and Fullstack Engineer', - industry: 'Entertainment', - cities: ['Oakland'], - }, - { - company: 'Disney Streaming Services', - name: 'Casey Escovedo', - email: 'caseyjescovedo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/caseyescovedo/', - campus: 'LA', - cohort: '38', - jobTitle: 'Associate Software Engineer', - industry: 'Entertainment', - cities: ['Milwaukee', 'Mesa', 'San Francisco', 'Kansas City'], - }, - { - company: 'Disney Streaming Services', - name: 'Mark Marcelo', - email: 'markmarcelo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/markmarcelo/', - campus: 'LA', - cohort: '12', - jobTitle: 'Lead Software Engineer', - industry: 'Entertainment', - cities: ['Newark'], - }, - { - company: 'Disney Streaming Services', - name: 'Rachel Farley', - email: 'rachyl.farley@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rachel-farley/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Associate Software Engineer', - industry: 'Entertainment', - cities: ['Memphis', 'El Paso', 'Lexington'], - }, - { - company: 'Dispense', - name: 'Kerrianne Crawford', - email: 'kerriannercrawford@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kerriannercrawford/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Senior Software Engineer', - industry: 'Software / Tech', - cities: ['Chicago'], - }, - { - company: 'Distributed Machines, Inc.', - name: 'William LeGate', - email: 'codesmith@legate.me', - linkedIn: 'https://www.linkedin.com/in/william-legate/', - campus: 'LA', - cohort: '21', - jobTitle: 'CEO, Prediqt', - industry: 'Medical', - cities: ['Jacksonville', 'Newark'], - }, - { - company: 'DistroKid', - name: 'Jackson Tong', - email: 'jacksonktong@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jacksonktong/', - campus: 'LA', - cohort: '48', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Sรฃo Paulo', 'New York', 'Colorado Springs'], - }, - { - company: 'DMC Inc', - name: 'Shane Yao', - email: 'Shanexinyao@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shanexinyao/', - campus: 'NYC', - cohort: '3', - jobTitle: 'Senior Robotics Engineer', - industry: 'Crypto Fintech', - cities: ['Minneapolis'], - }, - { - company: 'Dollar Shave Club', - name: 'Vincent Nguyen', - email: 'gvincemail@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vnguyenucla/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer(Contract)', - industry: 'Products', - cities: ['Aurora'], - }, - { - company: 'Dollar Shave Club', - name: 'Ryan Trontz', - email: 'rtrontz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/trontz/', - campus: 'LA', - cohort: '22', - jobTitle: 'Software Engineer, Backend', - industry: '', - cities: ['Norfolk', 'Omaha'], - }, - { - company: 'Domio', - name: 'Neftali Dominguez', - email: 'n.l.dominguez23@gmail.com', - linkedIn: 'https://www.linkedin.com/in/neftalildominguez/', - campus: 'LA', - cohort: '30', - jobTitle: 'Back end engineer', - industry: 'apartment hotels', - cities: ['Santa Ana', 'Lincoln', 'El Paso', 'Los Angeles'], - }, - { - company: 'Doorcast', - name: 'James Bui', - email: 'Jamesmdang.bui@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jamesminhbui/', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Senior Fullstack Engineer', - industry: 'Real Estate', - cities: ['Chula Vista', 'San Francisco', 'Riverside', 'Fresno'], - }, - { - company: 'Doorkee', - name: 'Jarred Jack-Harewood', - email: 'jackhajb@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jarred-jack-harewood/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: ['El Paso', 'Saint Paul'], - }, - { - company: 'Dottid', - name: 'Brian Grosso', - email: 'bgro63@gmail.com', - linkedIn: 'https://www.linkedin.com/in/newarkBG/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech - Real Estate', - cities: ['Garland', 'Washington'], - }, - { - company: 'Dr Squatch', - name: 'Ben Cauffman', - email: 'Benjamincauffman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/benjamin-cauffman', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Full Stack Engineer', - industry: 'Retail', - cities: ['Oklahoma City'], - }, - { - company: 'DraftKings', - name: 'Jonnie Oak', - email: 'jonathan.oak28@gmail.com', - linkedIn: 'https://www.linkedin.com/in/oakj28/', - campus: 'LA', - cohort: '45', - jobTitle: 'Software Engineer', - industry: 'Fantasy Sports', - cities: ['Raleigh', 'North Las Vegas'], - }, - { - company: 'Dray Alliance', - name: 'Hayden Fithyan', - email: 'hayden@fithyan.com', - linkedIn: 'https://www.linkedin.com/in/fithyan/', - campus: 'LA', - cohort: '23', - jobTitle: 'Software Developer II', - industry: '', - cities: ['Glendale', 'Chicago'], - }, - { - company: 'Dray Alliance', - name: 'Joshua Wright', - email: 'jwrightbluj@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joshua-w-86758a121/', - campus: 'LA', - cohort: '23', - jobTitle: 'Software Engineer II', - industry: '', - cities: ['Houston'], - }, - { - company: 'Dreambox Learning', - name: 'Pei-Yun Chu', - email: 'pchu2018@gmail.com', - linkedIn: 'https://www.linkedin.com/in/pei-yun-chu/', - campus: 'PTRI', - cohort: '8', - jobTitle: 'Software Development Engineer - Frontend', - industry: 'Software / Tech', - cities: ['Arlington', 'Memphis', 'Seattle', 'Scottsdale'], - }, - { - company: 'Driven Deliveries', - name: 'Adam Stover', - email: 'adam.jacob.stover@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '31', - jobTitle: 'Software Engineer', - industry: 'Supply Chain & Logistics', - cities: ['Plano', 'Bakersfield', 'St. Petersburg'], - }, - { - company: 'Drizly', - name: 'Diego Vazquez', - email: 'diegovazquezny@gmail.com', - linkedIn: 'https://www.linkedin.com/in/diegovazquezny/', - campus: 'LA', - cohort: '21', - jobTitle: 'Jr. Software Engineer', - industry: 'Food & Beverages', - cities: ['Irvine', 'Sรฃo Paulo', 'Charlotte'], - }, - { - company: 'Dropbox', - name: 'Benjamin Kwak', - email: 'benjamin.h.kwak@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ben-kwak/', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Engineer, Product', - industry: 'Techonology Services', - cities: ['Buffalo', 'Philadelphia', 'Toledo', 'Scottsdale'], - }, - { - company: 'Dropbox', - name: 'Myounghan Chae', - email: 'chaekmh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chaekmh/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Software Engineer', - industry: 'Cloudtech', - cities: ['Berlin', 'Houston', 'Tulsa', 'San Francisco'], - }, - { - company: 'Dropbox', - name: 'Miguel Michel', - email: 'migmic93@gmail.com', - linkedIn: 'https://www.linkedin.com/in/miguel-michel/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Cloud Storage', - cities: ['Fort Worth', 'Sacramento', 'Tucson'], - }, - { - company: 'Dropps', - name: 'Sonny Nguyen', - email: 'sonnynguyen163@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sn163/', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Developer', - industry: 'Sustainable E-Commerce', - cities: ['San Antonio', 'Anaheim', 'Phoenix'], - }, - { - company: 'Dstillery', - name: 'Chai Lee', - email: 'imchai@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chai-lee-5a064649/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Software Engineer', - industry: 'Adtech', - cities: ['New York', 'Honolulu'], - }, - { - company: 'Dun & Bradstreet', - name: 'Jack Hall', - email: 'jackvincenthall@gmail.com', - linkedIn: 'https://linkedin.com/in/jackvhall', - campus: 'PTRI', - cohort: '4', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech, Data Analytics', - cities: ['Miami'], - }, - { - company: 'Dun & Bradstreet', - name: 'Scott Rosen', - email: 'scott.rosen14@gmail.com', - linkedIn: 'https://www.linkedin.com/in/scott-rosen/', - campus: 'LA', - cohort: '17', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Nashville', 'Lubbock'], - }, - { - company: 'dv01', - name: 'Michelle Herrera', - email: 'mesherrera@aol.com', - linkedIn: 'https://www.linkedin.com/in/mherreradev/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Senior Fullstack Engineer I', - industry: 'Fintech', - cities: ['Stockton'], - }, - { - company: 'Dynamic benchmarking', - name: 'andres jaramillo', - email: 'andresj89@live.com', - linkedIn: 'https://www.linkedin.com/in/andresjaramillo210/', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Software engineer', - industry: 'Software / Tech', - cities: ['Riverside', 'Paris', 'Mesa'], - }, - { - company: 'Earnest', - name: 'Kai Rilliet', - email: 'kairilliet@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kairilliet/', - campus: 'LA / WCRI', - cohort: '45', - jobTitle: 'Full Stack Software Engineer', - industry: 'Fintech', - cities: ['Raleigh', 'Austin', 'Los Angeles', 'Portland'], - }, - { - company: 'eBay', - name: 'Ryan Kim', - email: 'ryansukwookim@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tkdryan/', - campus: 'LA', - cohort: '33', - jobTitle: 'Software Engineer', - industry: 'ECcmmerce', - cities: ['Oklahoma City', 'San Francisco'], - }, - { - company: 'EBSCO', - name: 'Sankari Ayyaluru', - email: 'sankariayyaluru@gmail', - linkedIn: 'https://www.linkedin.com/in/sankari-ayyaluru/', - campus: 'LA / WCRI', - cohort: '48', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Reno'], - }, - { - company: 'Econify', - name: 'Jordan Kelly', - email: 'Jordan.w.kelly@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jordan-k-340257140/', - campus: 'NYC', - cohort: '17', - jobTitle: 'Software Engineer', - industry: 'Consulting', - cities: ['El Paso'], - }, - { - company: 'Econify', - name: 'Jovan Kelly', - email: 'fakeEmail2@fakeEmail.com', - linkedIn: 'https://www.linkedin.com/in/jovankelly', - campus: 'NYC', - cohort: '10', - jobTitle: 'Software developer', - industry: 'Media Consulting', - cities: ['Phoenix', 'San Diego', 'Santa Ana', 'Paris'], - }, - { - company: 'Edify Labs', - name: 'Scott McInnis', - email: 'scottalyst@gmail.com', - linkedIn: 'https://www.linkedin.com/in/scott-mcinnis/', - campus: 'LA', - cohort: '32', - jobTitle: 'Nodejs Developer', - industry: 'Customer Service', - cities: ['Wichita', 'Chicago', 'Scottsdale'], - }, - { - company: 'Edify Labs', - name: 'Tony Lei', - email: 'tony.lei003@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tony-lei/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'NodeJS Developer', - industry: 'Software / Tech', - cities: ['Oakland', 'Cleveland', 'Phoenix'], - }, - { - company: 'EDUrain', - name: 'Jacob Jurado', - email: 'jakejurado@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jakejurado', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'chief technology officer', - industry: 'Education/Edtech', - cities: ['Irving'], - }, - { - company: 'Egen', - name: 'Jonathan Escamilla', - email: 'jonathanescamilla1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jon-escamilla/', - campus: 'LA', - cohort: '36', - jobTitle: 'Associate Software Engineer', - industry: 'Tech (Builds solutions for companies - Typically Web Dev)', - cities: ['Gilbert'], - }, - { - company: 'Elder Research', - name: 'Ben Huang', - email: 'Byhuang4100@gmail.com', - linkedIn: 'byhuang4100', - campus: 'FTRI / CTRI', - cohort: '14', - jobTitle: 'Data Engineer', - industry: 'Artificial Intelligence', - cities: ['Chula Vista'], - }, - { - company: 'Elder Research Inc', - name: 'Nick Reardon', - email: 'nickjreardon@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nickjreardon/', - campus: 'PTRI', - cohort: '4', - jobTitle: 'Software Engineer', - industry: 'Consulting', - cities: ['Long Beach'], - }, - { - company: 'Elder Tree', - name: 'Stormi Hashimoto', - email: 'stormikhashimoto@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stormikph/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Software Engineer', - industry: 'NA', - cities: ['Laredo', 'Sรฃo Paulo', 'Boston'], - }, - { - company: 'eLink Design', - name: 'Tristan Krause', - email: 'yukiokrause@gmail.com', - linkedIn: 'https://www.linkedin.com/in/krausetristan/', - campus: 'FTRI / CTRI', - cohort: '17', - jobTitle: 'Web / Mobile Developer', - industry: 'Design', - cities: ['Jacksonville', 'Baltimore', 'New Orleans'], - }, - { - company: 'Elk Capital Markets', - name: 'Manuel Castro', - email: 'manuel.a.castro1992@gmail.com', - linkedIn: 'https://www.linkedin.com/in/manuel-castro-42466273', - campus: 'NYC', - cohort: '5', - jobTitle: 'Software Engineer', - industry: 'Finance', - cities: ['Tampa', 'Chicago'], - }, - { - company: 'Ellie Mae', - name: 'Karen Pinilla', - email: 'pinillakaren11@gmail.com', - linkedIn: 'https://www.linkedin.com/in/karen-pinilla/', - campus: 'LA', - cohort: '28', - jobTitle: 'Software Engineer I', - industry: 'Computer Software', - cities: ['Winston-Salem', 'Sydney'], - }, - { - company: 'eMoney', - name: 'Kenneth Hui', - email: 'kennethhui121@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kenneth-hui/', - campus: 'LA', - cohort: '45', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Los Angeles', 'Santa Ana', 'Beijing', 'Buffalo'], - }, - { - company: 'Empire Flippers', - name: 'Rob Wise', - email: 'robertwise1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/robertwise/', - campus: 'PTRI', - cohort: 'Beta', - jobTitle: 'Frontend Engineer', - industry: 'eCommerce', - cities: ['San Francisco', 'Kansas City', 'New Orleans', 'Virginia Beach'], - }, - { - company: 'Empowered Buildings', - name: 'Kevin Dooley', - email: 'kjdooley1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kjdooley1/', - campus: 'NYOI', - cohort: '1', - jobTitle: 'Full-Stack Software Developer', - industry: 'Real Estate', - cities: ['Tampa', 'Nashville', 'New Orleans'], - }, - { - company: 'Enlighten', - name: 'Jonathon Garber', - email: 'jgarber2675@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jgarber2675/', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Front End Software Engineer', - industry: 'Security', - cities: ['Stockton', 'Madison', 'Boston', 'Fresno'], - }, - { - company: 'Envoy', - name: 'Graham Pierce', - email: 'grahampiercenyc@gmail.com', - linkedIn: 'https://www.linkedin.com/in/graham-a-pierce/', - campus: 'FTRI', - cohort: '3', - jobTitle: 'Software Engineer', - industry: 'Workplace tech', - cities: ['Plano'], - }, - { - company: 'Enzo Digital', - name: 'Johnny Bryan', - email: 'johnnybryan21@gmail.com', - linkedIn: 'https://www.linkedin.com/in/johnnybryan/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Backend/API Engineer', - industry: 'Fintech', - cities: ['Oakland'], - }, - { - company: 'EolianVR', - name: 'Henry Halse', - email: 'henryhalse@gmail.com', - linkedIn: 'https://www.linkedin.com/in/henryhalse/', - campus: 'PTRI', - cohort: '8', - jobTitle: 'Backend Engineer', - industry: 'Other', - cities: ['Newark', 'Greensboro'], - }, - { - company: 'Epic Games', - name: 'Nahuel Arjona Tennerini', - email: 'nahuel.arjona.93@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nahuelarjonadev/', - campus: 'LA', - cohort: '29', - jobTitle: 'Game Systems Programmer', - industry: 'Video Games', - cities: ['Riverside', 'Philadelphia', 'Saint Paul'], - }, - { - company: 'Epic Games (Fortnite)', - name: 'Taylor T Morgan', - email: 'TaylorMorganTTM@gmail.com', - linkedIn: 'https://www.linkedin.com/in/taylormor77la/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Developer', - industry: 'Gaming', - cities: ['Arlington', 'San Antonio', 'Indianapolis'], - }, - { - company: 'Eqengineered', - name: 'William Ramirez', - email: 'willramirez630@gmail.com', - linkedIn: 'https://www.linkedin.com/in/willramirez528/', - campus: 'LA', - cohort: '43', - jobTitle: 'Senior Technical Consultant', - industry: 'Software Consulting Firm', - cities: ['Cleveland', 'San Diego', 'Bakersfield', 'Lexington'], - }, - { - company: 'Erdos Miller', - name: 'Michael Collier Grant', - email: 'DragonZSG@aol.com', - linkedIn: 'https://www.linkedin.com/in/michaelcolliergrant/', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Firmware Developer', - industry: 'Other', - cities: ['Chandler'], - }, - { - company: 'Ernst & Young', - name: 'Eduardo Maรญllo Conesa', - email: 'eduardomaillo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eduardomaillo/', - campus: 'NYC', - cohort: '2', - jobTitle: 'Senior Software Engineer', - industry: '', - cities: ['Paris', 'Santa Ana', 'Saint Paul'], - }, - { - company: 'Esri', - name: 'Gilbert Ramirez', - email: 'contemporarygil@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gillramirez/', - campus: 'LA', - cohort: '29', - jobTitle: 'Software Development Engineer', - industry: 'GIS', - cities: ['Fresno', 'St. Louis', 'Denver'], - }, - { - company: 'ESRI', - name: 'Evan Hilton', - email: 'ehilton1537@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ehilton1537/', - campus: 'LA', - cohort: '33', - jobTitle: 'Software Development Engineer', - industry: 'Geographic Information System', - cities: ['San Antonio'], - }, - { - company: 'Esri', - name: 'Elena Conn', - email: 'elenakconn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/elena-conn/', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineering Intern (end date 10/29/21)', - industry: 'Geospatial Engineering (GIS)', - cities: ['New York', 'Buffalo', 'Bakersfield'], - }, - { - company: 'Ethic', - name: 'Andrea Li', - email: 'andrea.li8341@hotmail.com', - linkedIn: 'https://www.linkedin.com/in/andrea-gli/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Frontend Engineer', - industry: 'Fintech', - cities: ['Garland'], - }, - { - company: 'Ethos Life', - name: 'Alan Lee', - email: 'lee.alan.c12@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alanlee12/', - campus: 'LA', - cohort: '35', - jobTitle: 'Software Engineer, Test', - industry: 'Insurance', - cities: ['Mesa'], - }, - { - company: 'etsy', - name: 'alfonso zamarripa', - email: 'alfonsozam93@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alfonsozamarripa/', - campus: 'NYC', - cohort: '31', - jobTitle: 'software engineer', - industry: 'Retail', - cities: ['Berlin', 'Seattle'], - }, - { - company: 'Even', - name: 'Claudio Santos', - email: 'claudiohbsantos@gmail.com', - linkedIn: 'https://www.linkedin.com/in/claudio-santos-5b8134207/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer I', - industry: 'Fintech', - cities: ['Fort Worth', 'Philadelphia'], - }, - { - company: 'Even Financial', - name: 'Andy Wong', - email: 'andywong.ny@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andywongdev', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Irving', 'Norfolk'], - }, - { - company: 'Eventbrite', - name: 'Ashley Pean', - email: 'pean.ashley@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ashley-pean/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Software Engineer II', - industry: 'Entertainment', - cities: ['Honolulu', 'Raleigh', 'Fort Worth'], - }, - { - company: 'EventHound', - name: 'Greg Shamalta', - email: 'gregshamalta@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/gregory-shamalta/', - campus: 'LA', - cohort: '23', - jobTitle: 'Founder', - industry: '', - cities: ['Chula Vista', 'Orlando'], - }, - { - company: 'everest', - name: 'Will Hack', - email: 'will.j.hack@gmail.com', - linkedIn: 'https://www.linkedin.com/in/willhack/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Full-Stack Engineer (Sr)', - industry: 'UX Design', - cities: ['Paris', 'Phoenix'], - }, - { - company: 'Everest, AI', - name: 'Jordan Long', - email: 'jlong4159@gmail.com', - linkedIn: 'www.linkedin.com/jlongtlw', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Winston-Salem'], - }, - { - company: 'Everfi', - name: 'Jacob Ory', - email: 'jacobtory@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/jacobory/', - campus: 'LA', - cohort: '30', - jobTitle: 'Frontend Engineer', - industry: 'Ed Tech', - cities: ['Irvine', 'Chicago', 'San Antonio', 'San Francisco'], - }, - { - company: 'Exabeam', - name: 'Lisa Tian', - email: 'lisatian8@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lisatian-/', - campus: 'LA / WCRI', - cohort: '53', - jobTitle: 'Software Engineer - UI', - industry: 'Security', - cities: ['Cincinnati', 'Orlando', 'Honolulu'], - }, - { - company: 'Exodus Movement Inc', - name: 'Lanre Makinde', - email: 'lanre.developer@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lanre-mark/', - campus: 'PTRI', - cohort: 'Beta', - jobTitle: 'Sr. Software Engineer', - industry: 'blockchain/cryptocurrency', - cities: ['Dallas'], - }, - { - company: 'Expedia Group', - name: 'Tang', - email: 'eytang8@gmail.com', - linkedIn: 'https://www.linkedin.com/mwlite/in/ttaanngg', - campus: 'LA', - cohort: '27', - jobTitle: 'Software Development Engineer II', - industry: 'Travel', - cities: ['Henderson', 'Boston', 'Louisville'], - }, - { - company: 'Extend', - name: 'Diane Wu', - email: 'dianewudw@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '14', - jobTitle: 'Backend Software Engineer', - industry: 'Insurance', - cities: ['Sacramento', 'Baltimore', 'Riverside'], - }, - { - company: 'Extensis', - name: 'Daniel Chang', - email: 'dkchang213@gmail.com', - linkedIn: 'https://www.linkedin.com/in/daniel-k-chang/', - campus: 'LA / WCRI', - cohort: '56', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['San Francisco', 'El Paso', 'Newark'], - }, - { - company: 'Facebook', - name: 'Ben Ray', - email: 'benray887@gmail.com', - linkedIn: 'https://www.linkedin.com/in/benray-/', - campus: 'NYC', - cohort: '14', - jobTitle: 'Rotational Engineer', - industry: 'Tech', - cities: ['Stockton', 'Sydney', 'Charlotte'], - }, - { - company: 'Facebook', - name: 'Jason Lee', - email: 'jason.dongyul.lee@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '42', - jobTitle: 'Full-Stack Engineer', - industry: 'Social Media/Networking', - cities: ['Las Vegas', 'St. Louis', 'London'], - }, - { - company: 'Facebook', - name: 'Jonathan Calvo Ramirez', - email: 'jono.calvo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonathan-calvo', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer', - industry: 'Social Media', - cities: ['New York', 'Mumbai', 'Las Vegas'], - }, - { - company: 'Facebook', - name: 'Rajeeb Banstola', - email: 'rajeebanstola@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rajeebbanstola/', - campus: 'NYC', - cohort: '14', - jobTitle: 'Fullstack Developer - Contract', - industry: 'Internet', - cities: ['New York', 'Chandler', 'Santa Ana'], - }, - { - company: 'Facebook', - name: 'Ricardo Cortez', - email: 'ricardodgers12@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rcortez88/', - campus: 'LA', - cohort: '44', - jobTitle: 'Full Stack Software Engineer', - industry: 'Social Media', - cities: ['Fort Worth', 'Tucson', 'Beijing'], - }, - { - company: 'Facebook', - name: 'Sean Grace', - email: 'seanmgrace@gmail.com', - linkedIn: 'https://www.linkedin.com/in/seanmgrace/', - campus: 'LA', - cohort: '44', - jobTitle: 'Full Stack Software Engineer', - industry: 'Tech', - cities: ['Lexington', 'Washington', 'Sรฃo Paulo', 'Chandler'], - }, - { - company: 'Facebook', - name: 'Shreshth Srivastava', - email: 'shreshthsrivastava2@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shreshth-srivastava/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Software Engineer', - industry: 'Social Media', - cities: ['Wichita', 'Fort Wayne', 'Newark', 'Corpus Christi'], - }, - { - company: 'Facebook (Meta)', - name: 'Eric Wilding', - email: 'eric.d.wilding@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eric-wilding/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Full Stack Software Engineer', - industry: 'Social Media', - cities: ['Orlando', 'Stockton'], - }, - { - company: 'Facebook (via K2Partners)', - name: 'Thanh Doan', - email: 'tdoan35@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ty-thanh-doan/', - campus: 'LA', - cohort: '42', - jobTitle: 'Full-Stack Engineer', - industry: 'Social Media', - cities: ['Las Vegas', 'San Antonio'], - }, - { - company: 'Facebook via TEK System', - name: 'Yoko Kawamoto', - email: 'yokokawamoto@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yokokawamoto/', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer', - industry: 'Social Media', - cities: ['Greensboro', 'Seattle', 'Austin', 'New Orleans'], - }, - { - company: 'Facebook/K2', - name: 'Charles Gutwirth', - email: 'charlesgutwirth@gmail.com', - linkedIn: 'https://www.linkedin.com/in/charles-gutwirth/', - campus: 'LA', - cohort: '45', - jobTitle: 'Full Stack Engineer', - industry: 'Social media', - cities: ['Detroit'], - }, - { - company: 'FactSet', - name: 'Ethan Sclarsky', - email: 'esclarsky@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ethan-sclarsky/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: ['Scottsdale', 'Las Vegas', 'Plano', 'Honolulu'], - }, - { - company: 'Fanatics, Inc', - name: 'Jonah Eidman', - email: 'jonah.eidman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonah-eidman/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Software Engineer II', - industry: 'Entertainment', - cities: ['Dallas', 'Glendale'], - }, - { - company: 'Fandango', - name: 'Ha-Rry Kim', - email: 'hari9497@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hkim9497/', - campus: 'LA', - cohort: '24', - jobTitle: 'Software Engineer I', - industry: '', - cities: ['Corpus Christi', 'Jacksonville', 'Saint Paul', 'Portland'], - }, - { - company: 'Fandango', - name: 'Ken Lam', - email: 'heiyeunl@gmail.com', - linkedIn: 'https://www.linkedin.com/in/heiyeunl/', - campus: 'LA', - cohort: '27', - jobTitle: 'Front end software engineer', - industry: 'Entertainment?', - cities: ['Denver', 'Santa Ana'], - }, - { - company: 'FanDuel', - name: 'Alex Haile', - email: 'ahaile923@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ahaile923/', - campus: 'FTRI', - cohort: '7', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Riverside', 'Plano'], - }, - { - company: 'Fanfix', - name: 'Dylan Hensel', - email: 'dylan@hensel.com', - linkedIn: 'https://www.linkedin.com/in/dylanhensel/', - campus: 'LA', - cohort: '38', - jobTitle: 'Senior Software Engineer', - industry: 'Entertainment', - cities: ['Chicago', 'Colorado Springs', 'Omaha'], - }, - { - company: 'Fanfix', - name: 'Jonathan Mavandi', - email: 'jonathan.mavandi@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jon-mavandi/', - campus: 'LA', - cohort: '26', - jobTitle: 'Software Engineer', - industry: 'Entertainment', - cities: ['Tokyo', 'Anchorage'], - }, - { - company: 'Fannie Mae', - name: 'Abhi Gullapalli', - email: 'aubertlone@gmail.com', - linkedIn: 'https://www.linkedin.com/in/viswagullapalli/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Cloud Engineer', - industry: 'Cloud Services', - cities: ['Kansas City', 'Reno'], - }, - { - company: 'Fantoons', - name: 'Hank McGill', - email: 'henrymcgill@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hank-mcgill/', - campus: 'NYOI', - cohort: '4', - jobTitle: 'Founding Full-Stack Software Engineer', - industry: 'Entertainment', - cities: ['Toledo'], - }, - { - company: 'Farm to People', - name: 'Katharine Angelopoulos', - email: 'katharine.angelopoulos@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kangelopoulos/', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Full Stack Developer', - industry: 'Restaurant, Food, and Beverage', - cities: ['London', 'Saint Paul', 'Paris', 'New Orleans'], - }, - { - company: 'Fashionphile', - name: 'Amy Yee', - email: 'amyyee1998@gmail.com', - linkedIn: 'https://www.linkedin.com/in/amyyee98/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'E-commerce', - cities: ['Omaha', 'Buffalo'], - }, - { - company: 'Fashionphile', - name: 'Gabriela Jardim Aquino', - email: 'gjardimaquino@gmail.com', - linkedIn: 'https://www.linkedin.com/in/aquinojardim/', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Fashion', - cities: ['San Jose', 'Saint Paul', 'Gilbert', 'Charlotte'], - }, - { - company: 'Fastly', - name: 'Angelo Chengcuenca', - email: 'amchengcuenca@gmail.com', - linkedIn: 'https://www.linkedin.com/in/angelotmchengcuenca/', - campus: 'FTRI / CTRI', - cohort: '14', - jobTitle: 'Software Development Engineer', - industry: 'Software / Tech', - cities: ['Riverside', 'Austin'], - }, - { - company: 'Fearless (fearless.tech)', - name: 'Faraz Akhtar', - email: 'fa8338@gmail.com', - linkedIn: 'https://www.linkedin.com/in/faraz22/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer II', - industry: 'Government Consulting', - cities: ['Virginia Beach', 'Aurora'], - }, - { - company: 'Feather', - name: 'Bryan Fong', - email: 'bryanfong.dev@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bryanfong-dev/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Software Engineer', - industry: 'Furniture Subscription', - cities: ['Detroit'], - }, - { - company: 'FeatureBase', - name: 'David Kagan', - email: 'David.kagan07@gmail.com', - linkedIn: 'David-kagan07', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Jr Software Engineer, Cloud', - industry: 'Cloud Services', - cities: ['Philadelphia'], - }, - { - company: 'Federal Reserve Bank', - name: 'Robert McHalffey', - email: 'R.mchalffey@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '26', - jobTitle: 'Software Engineer 4', - industry: 'Government/Banking', - cities: ['New York'], - }, - { - company: 'Federal Reserve Bank of NY', - name: 'Anthony Lee', - email: 'anthonylee2797@gmail.com', - linkedIn: 'https://www.linkedin.com/in/anthony-lee27/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Frontend Developer', - industry: 'Finance', - cities: ['St. Louis', 'Mexico City'], - }, - { - company: 'Ferguson', - name: 'Eric Hagen', - email: 'ericjameshagen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hagenforhire/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Pittsburgh'], - }, - { - company: 'Ferguson Enterprises', - name: 'James Ferrell', - email: 'James David.ferrell@ferguson.com', - linkedIn: 'https://www.linkedin.com/in/james-d-ferrell/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'E-commerce', - cities: ['Pittsburgh', 'Oakland'], - }, - { - company: 'Fictiv', - name: 'Cherie Zhong', - email: 'cheriemzhong@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cheriezhong/', - campus: 'LA', - cohort: '35', - jobTitle: 'Software Engineer', - industry: 'Manufacturing', - cities: ['Saint Paul', 'St. Louis', 'Henderson', 'Pittsburgh'], - }, - { - company: 'Fidelity Investments', - name: 'Eli Muir', - email: 'eli.t.muir@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eli-muir/', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Full Stack Engineer', - industry: 'Fintech', - cities: ['Toronto'], - }, - { - company: 'Fidelity Investments', - name: 'Christopher Jamali', - email: 'jamalichristopher@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chrisjamali/', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Senior Mobile Developer', - industry: 'Fintech', - cities: ['Irving', 'Gilbert', 'Honolulu'], - }, - { - company: 'Fin', - name: 'Matt Jiang', - email: 'mattljiang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mattljiang/', - campus: 'LA', - cohort: '40', - jobTitle: 'Product Engineer', - industry: 'SaaS', - cities: ['Long Beach', 'Los Angeles', 'Chandler', 'San Antonio'], - }, - { - company: 'Find my past', - name: 'Mitesh patel', - email: 'mit06@hotmail.com', - linkedIn: 'https://www.linkedin.com/in/miteshvjpatel', - campus: 'NYC', - cohort: '21', - jobTitle: 'Mid software engineer', - industry: 'genealogy', - cities: ['Madison'], - }, - { - company: 'FinDox Inc.', - name: 'Jhonatan Passalacqua', - email: 'jpascas@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jpassalacqua', - campus: 'PTRI', - cohort: 'Beta', - jobTitle: 'Senior Software Architect', - industry: 'Fintech', - cities: ['Fort Worth', 'Seattle', 'Santa Ana', 'Detroit'], - }, - { - company: 'Finra', - name: 'Yankun Song', - email: 'yankun.L.song@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yankunsong/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Data engineer', - industry: 'Fintech', - cities: ['Fresno', 'Albuquerque'], - }, - { - company: 'First American ', - name: 'Jen Lee', - email: 'jenleesj@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jenleesj', - campus: 'FTRI / CTRI', - cohort: '14', - jobTitle: 'Front End Software Engineer', - industry: 'Insurance', - cities: ['New Orleans'], - }, - { - company: 'First Help Financial', - name: 'Juliana Morrelli', - email: 'julianamorrelli28@gmail.com', - linkedIn: 'https://www.linkedin.com/in/julianamorrelli/', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Frontend Software Engineer', - industry: 'Fintech', - cities: ['Plano', 'Stockton'], - }, - { - company: 'First Republic Bank', - name: 'Nikhil Massand', - email: 'nikhil.massand@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nikhil-massand/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Banking', - cities: ['Los Angeles', 'Long Beach'], - }, - { - company: 'First Resonance', - name: 'Maxwell Reed', - email: 'mxjreed@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mxjrd/', - campus: 'LA', - cohort: '41', - jobTitle: 'Frontend Engineer', - industry: 'Manufacturing', - cities: ['Portland'], - }, - { - company: 'Fiserv', - name: 'Ozi Oztourk', - email: 'oztrkgzhn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ozi-oztourk', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Gilbert', 'Bakersfield', 'Tucson', 'Phoenix'], - }, - { - company: 'Fiserv.', - name: 'eddy zapata', - email: 'ecz001@live.com', - linkedIn: 'https://www.linkedin.com/in/eddy-zapata/', - campus: 'FTRI', - cohort: '2', - jobTitle: 'Software Development Engineer IV', - industry: 'Fintech', - cities: ['Louisville', 'Lexington', 'Berlin', 'Mesa'], - }, - { - company: 'Fitch Solutions', - name: 'Duane McFarlane', - email: 'Duanemcfarlane@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/duanemcfarlane/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'Entertainment', - cities: ['Arlington', 'Gilbert'], - }, - { - company: 'Flash Scientific Technology', - name: 'William Howard', - email: 'willh91@msn.com', - linkedIn: 'https://www.linkedin.com/in/wph91/', - campus: 'LA', - cohort: '21', - jobTitle: 'Lead Software Engineer', - industry: 'Meteorology/Environmental Science', - cities: ['Madison', 'Philadelphia', 'Irvine', 'Colorado Springs'], - }, - { - company: 'Flashpoint', - name: 'Robbie Gottlieb', - email: 'robbiegottlieb.dev@gmail.com', - linkedIn: 'https://www.linkedin.com/in/robbie-gottlieb/', - campus: 'NYC / ECRI', - cohort: '1', - jobTitle: 'Security', - industry: 'Software / Tech', - cities: ['Newark'], - }, - { - company: 'Flexion', - name: 'Cameron Walls', - email: 'cwalls45@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cameron-walls45/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Full Stack Software Developer', - industry: 'Consulting, the project I am working on is in the Education industry', - cities: ['Madison', 'London'], - }, - { - company: 'FlightAware', - name: 'Robert Yang', - email: 'rob.yang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/robwyang/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Senior Software Engineer', - industry: 'Aviation', - cities: ['Baltimore', 'Laredo'], - }, - { - company: 'Flock Safety', - name: 'Rocio Infante', - email: 'Rocio.infante417@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Public Safety', - cities: ['El Paso', 'Anaheim'], - }, - { - company: 'Flock Safety', - name: 'Hunter Shaw', - email: 'hu.shaw215@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hshaw215/', - campus: 'NYC / ECRI', - cohort: '40', - jobTitle: 'Software Engineer II', - industry: 'Other', - cities: ['Chicago', 'Corpus Christi', 'Lincoln', 'Colorado Springs'], - }, - { - company: 'FloQast', - name: 'Stephanie Chiu', - email: 'stephaniekchiu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stephanie-chiu-/', - campus: 'LA', - cohort: '32', - jobTitle: 'Software Engineer I', - industry: 'Fintech', - cities: ['Las Vegas', 'San Francisco', 'Tokyo', 'Miami'], - }, - { - company: 'FloQast', - name: 'Khaile Tran', - email: 'khailetran94@gmail.com', - linkedIn: 'linkedin.com/in/khailetran', - campus: 'FTRI / CTRI', - cohort: '16', - jobTitle: 'Software Engineer I', - industry: 'Other', - cities: ['Minneapolis', 'Tampa', 'Beijing', 'Oakland'], - }, - { - company: 'Florence Healthcare', - name: 'Bill Greco', - email: 'wgreco13@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bill-greco/', - campus: 'NYC', - cohort: '32', - jobTitle: 'Senior Full Stack Software Engineer', - industry: 'Healthcare', - cities: ['Lubbock'], - }, - { - company: 'FNS, Inc.', - name: 'Shinhae Na', - email: 'shinhaena@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shinhaena-stella/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Software Engineer', - industry: 'Retail', - cities: ['Mumbai', 'Denver', 'Memphis'], - }, - { - company: 'Foodpanda', - name: 'Josh Kim', - email: 'joshua940308@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sungtae/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Frontend software engineer', - industry: 'Food tech', - cities: ['Portland', 'Corpus Christi', 'Kansas City'], - }, - { - company: 'Forma', - name: 'Jay Lim', - email: 'jaymlim93@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jaylim218/', - campus: 'LA', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'Human Resources', - cities: ['Wichita', 'Bakersfield', 'Seattle', 'Tulsa'], - }, - { - company: 'Formation', - name: 'Stella Liao', - email: 'stellaliao.01@gmail.com', - linkedIn: 'https://www.linkedin.com/feed/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Engineer', - industry: 'Education', - cities: ['Indianapolis', 'Mexico City', 'Oakland'], - }, - { - company: 'Formidable', - name: 'Juan Hart', - email: 'juanhart1@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '12', - jobTitle: 'Software Engineer III', - industry: 'Consultancy', - cities: ['San Antonio'], - }, - { - company: 'Fortress Information Security', - name: 'Keith Lisiak', - email: 'bball.coach@icloud.com', - linkedIn: 'https://www.linkedin.com/in/keithlisiak/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: 'Security', - cities: ['Chula Vista', 'Garland', 'Toronto'], - }, - { - company: 'Forward Financing', - name: 'Shanon Lee', - email: 'shanonlee541@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shanonlee541/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Associate Software Engineer', - industry: 'Fintech', - cities: ['Madison'], - }, - { - company: 'Forward Slope Inc.', - name: 'Ilija Bibic', - email: 'ibibic2@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ilija-bibic', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Charlotte', 'Madison'], - }, - { - company: 'Forward Slope, Inc.', - name: 'Thang Thai', - email: 'thaithangt@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thang-thai/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Santa Ana'], - }, - { - company: 'FourKites', - name: 'Anthony Stanislaus', - email: 'anthonystanislaus1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/anthonystanislaus/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Oklahoma City'], - }, - { - company: 'Fox Corporation', - name: 'James Edwards', - email: 'digitalmediapro7@gmail.com', - linkedIn: 'https://www.linkedin.com/in/digital9/', - campus: 'LA', - cohort: '19', - jobTitle: 'Senior Full Stack Software Engineer (Frontend)', - industry: '', - cities: ['Mexico City'], - }, - { - company: 'Freewheel', - name: 'Hubert Lin', - email: 'huberthflin@gmail.com', - linkedIn: 'https://www.linkedin.com/feed/', - campus: 'NYC', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'IT', - cities: ['Oakland', 'Beijing', 'Cincinnati', 'Boston'], - }, - { - company: 'Frontier Communications', - name: 'Josh Cretella', - email: 'jcrtll@protonmail.com', - linkedIn: 'https://www.linkedin.com/in/josh-cretella', - campus: 'LA', - cohort: '45', - jobTitle: 'Backend Developer', - industry: 'Telecoms', - cities: ['Charlotte', 'Mumbai', 'Columbus'], - }, - { - company: 'Frozen Dessert Supplies', - name: 'Ethan McRae', - email: 'ethanmcrae0@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ethanmcrae/', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Senior Developer', - industry: 'Consumer Goods: Retail (general)', - cities: ['Stockton', 'El Paso', 'Tokyo', 'Sacramento'], - }, - { - company: 'Fulcrum', - name: 'Valerie Huang', - email: 'valeriewhuang@gmail.com', - linkedIn: 'https://www.linkedin.com/mwlite/in/valeriewhuang', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Software Engineer', - industry: 'Manufacturing', - cities: ['Berlin', 'Durham', 'Scottsdale'], - }, - { - company: 'fulcrumpro', - name: 'Nicole Du', - email: 'Nicoleduu@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Developer', - industry: 'Manufacturing', - cities: ['Honolulu', 'Tokyo', 'Seattle', 'Houston'], - }, - { - company: 'Full In Partners', - name: 'Kevin HoEun Lee', - email: 'kevin.hoeun.lee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kevinhoeunlee/', - campus: 'LA', - cohort: '50', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Sydney'], - }, - { - company: 'Funimation', - name: 'Justin Joseph', - email: 'jrayjoseph@gmail.com', - linkedIn: 'https://www.linkedin.com/mwlite/in/jrayjoseph', - campus: 'LA', - cohort: '32', - jobTitle: 'Backend Software Engineer', - industry: 'Entertainment', - cities: ['Charlotte', 'Mexico City', 'New York'], - }, - { - company: 'Fusion Medical Staffing', - name: 'Kelsey Graner', - email: 'Kels.graner@gmail.com', - linkedIn: 'LinkedIn.com/Kelsey-graner', - campus: 'LA / WCRI', - cohort: '54', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['Indianapolis', 'Raleigh', 'Las Vegas'], - }, - { - company: 'Fusion Medical Staffing', - name: 'Krisette Odegard', - email: 'kmodeg@gmail.com', - linkedIn: 'https://linkedin.com/in/krisette', - campus: 'LA / WCRI', - cohort: '53', - jobTitle: 'Software Developer', - industry: 'Healthcare', - cities: ['Laredo', 'Corpus Christi', 'Miami'], - }, - { - company: 'Futuralis', - name: 'Rex Osariemen', - email: 'rexosariemen@gmail.com', - linkedIn: 'https://linkedin/in/rexosariemen', - campus: 'NYC', - cohort: '15', - jobTitle: 'Software Engineer', - industry: 'IT', - cities: ['Arlington'], - }, - { - company: 'G-Research', - name: 'Sigele Nickerson-Adams', - email: 'sigeleakosua@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sigelenickersonadams', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Software Engineer', - industry: 'Research', - cities: ['Cincinnati', 'Tampa', 'Colorado Springs', 'Honolulu'], - }, - { - company: 'Gaia Platform', - name: 'Jorge Fernandez', - email: 'jcferna1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jorge-carlos-fernandez', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Developer', - industry: 'Automation', - cities: ['Henderson', 'Pittsburgh', 'Honolulu'], - }, - { - company: 'Gallery Media Group', - name: 'Kristiina Eelnurme', - email: 'kristiina.eelnurme@gmail.com', - linkedIn: 'https://www.linkedin.com/in/Kristiina-eelnurme/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Frontend Engineer', - industry: 'Media', - cities: ['Plano'], - }, - { - company: 'GameOn Technology', - name: 'Jeffrey Kim', - email: 'kimjeffrey96@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jeffrey-kim-79810112a/', - campus: 'NYC', - cohort: '6', - jobTitle: 'Frontend, Software Engineer', - industry: 'Tech', - cities: ['Cincinnati', 'Saint Paul', 'Tucson'], - }, - { - company: 'GAN Integrity', - name: 'Erik Larsen', - email: 'erik.w.larsen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/erik-w-larsen', - campus: 'NYC', - cohort: '3', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Berlin'], - }, - { - company: 'Gap', - name: 'Khayal Alasgarov', - email: 'alaskarov.khayal@gmail.com', - linkedIn: 'https://www.linkedin.com/in/khayal-alasgaroff', - campus: 'LA', - cohort: '44', - jobTitle: 'React/JavaScript Developer', - industry: 'Clothing', - cities: ['Irvine', 'Los Angeles'], - }, - { - company: 'Gap', - name: 'Wesley Appleget', - email: 'wesget182@gmail.com', - linkedIn: 'https://www.linkedin.com/in/wesley-appleget/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Full Stack Engineer', - industry: 'Retail', - cities: ['Plano', 'Portland', 'Milwaukee', 'Glendale'], - }, - { - company: 'Gap Inc.', - name: 'Cole Redfearn', - email: 'coleredfearn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/coleredfearn/', - campus: 'LA', - cohort: '41', - jobTitle: 'UI Developer', - industry: 'Clothing/E-Commerce', - cities: ['New York', 'Corpus Christi', 'London', 'Reno'], - }, - { - company: 'Gap inc.', - name: 'Nayan Parmar', - email: 'nparmar84@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nparmar1', - campus: 'LA', - cohort: '44', - jobTitle: 'Software Engineer', - industry: 'eCommerce', - cities: ['Detroit'], - }, - { - company: 'Gartner-L2', - name: 'Jonathan P Schwartz', - email: 'jonathanschwartz30@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonathanpschwartz/', - campus: 'NYC', - cohort: '7', - jobTitle: 'Front-End Lead', - industry: '', - cities: ['Kansas City', 'Garland', 'Seattle'], - }, - { - company: 'Gatheround', - name: 'Andrew Widjaja', - email: 'andrewdwidjaja@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andrew-widjaja/', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Phoenix', 'Jacksonville', 'Milwaukee', 'Nashville'], - }, - { - company: 'GE Aviation', - name: 'Nathan Richardson', - email: 'nathan.richardson94@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nathan-p-richardson/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Fullstack Developer', - industry: 'Aerospace', - cities: ['Washington', 'Bakersfield', 'Minneapolis'], - }, - { - company: 'Geneoscopy', - name: 'Steve Schlepphorst', - email: 'steve.schlepphorst@gmail.com', - linkedIn: 'https://www.linkedin.com/in/schlepphorst/', - campus: 'FTRI / CTRI', - cohort: '17', - jobTitle: 'Senior Software Engineer I', - industry: 'Healthtech/Healthcare', - cities: ['Jersey City', 'Toledo', 'Scottsdale'], - }, - { - company: 'Genomic Prediction', - name: 'Rebecca Miller', - email: 'beemills@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rebeccamiller19/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Frontend Engineer', - industry: 'Biotech', - cities: ['Glendale'], - }, - { - company: 'Ghostery', - name: 'Leury Rodriguez', - email: 'leuryr07@gmail.com', - linkedIn: 'https://www.linkedin.com/in/leury-rodriguez/', - campus: 'NYC', - cohort: '8', - jobTitle: 'Jr. Software Engineer', - industry: 'Internet', - cities: ['Riverside', 'Irving', 'Columbus', 'Norfolk'], - }, - { - company: 'Giglabs, Inc.', - name: 'Tyler Pohn', - email: 'tylerpohn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tylerpohn/', - campus: 'FTRI / CTRI', - cohort: '5', - jobTitle: 'Software Engineer', - industry: 'Blockchain/Web3', - cities: ['Lubbock', 'Memphis'], - }, - { - company: 'Giglabs.io', - name: 'Daniel Nguyen', - email: 'dannguyen1191@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/danlord-nguyen/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Software Engineer (Node)', - industry: 'Blockchain, Media and Entertainment', - cities: ['Tulsa', 'Phoenix'], - }, - { - company: 'Github', - name: 'Sabrina Goldfarb', - email: 's.goldfarb2@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sabrinagoldfarb/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Software Engineer II', - industry: 'Tech', - cities: ['Arlington', 'Riverside'], - }, - { - company: 'glimpse.ai', - name: 'Ryan Lim', - email: 'ryanlim301@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ryanlim3/', - campus: 'LA', - cohort: '46', - jobTitle: 'Full Stack Engineer', - industry: 'Information Technology', - cities: ['Durham', 'Memphis', 'Albuquerque'], - }, - { - company: 'Gluware', - name: 'Abid Ramay', - email: 'abidramay@gmail.com', - linkedIn: 'https://www.linkedin.com/in/aramay/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Fort Worth', 'San Antonio'], - }, - { - company: 'GOAT Group', - name: 'Jordan Deleon', - email: 'jordanscottdeleon@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jordan-deleon/', - campus: 'LA', - cohort: '35', - jobTitle: 'Software Engineer II', - industry: 'E-commerce', - cities: ['San Antonio', 'Mexico City'], - }, - { - company: 'GoBolt', - name: 'Kyo Ku', - email: 'kyosan.ku34@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kyosan-ku/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Software Developer II', - industry: 'Logistics Technology', - cities: ['Paris', 'Washington'], - }, - { - company: 'GoDaddy', - name: 'Joyce Lo', - email: 'joycemanning@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joycelo/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer', - industry: 'Internet', - cities: ['Santa Ana', 'Honolulu', 'San Jose'], - }, - { - company: 'GoDaddy', - name: 'Kristina Wallen', - email: 'KristinaKWallen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kristina-wallen/', - campus: 'LA', - cohort: '46', - jobTitle: 'Senior Software Development Engineer', - industry: 'Software / Tech', - cities: ['North Las Vegas'], - }, - { - company: 'GoFundMe', - name: 'Colin McCarthy', - email: 'colinhmccarthy@gmail.com', - linkedIn: 'https://www.linkedin.com/in/colinhmccarthy/', - campus: 'LA', - cohort: '21', - jobTitle: 'Software Engineer', - industry: 'Crowdfunding/fundraising', - cities: ['Anaheim', 'Toledo'], - }, - { - company: 'Golden Hippo', - name: 'Mauricio Castro', - email: 'mauricio.a.castro7@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mauricioacastro/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Senior Full Stack Developer', - industry: 'Advertising', - cities: ['St. Petersburg', 'Toronto', 'Saint Paul', 'Houston'], - }, - { - company: 'Goldman Sachs', - name: 'Alfredo Alpizar', - email: 'fredo.alpizar@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alfredoalpizar/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Associate Software Engineer', - industry: 'Finance / Banking', - cities: ['Virginia Beach', 'Anchorage'], - }, - { - company: 'Goldman Sachs', - name: 'Peyton Pedersen', - email: 'pedersen0819@gmail.com', - linkedIn: 'https://www.linkedin.com/in/peyton-pedersen/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Analyst', - industry: 'Fintech', - cities: ['Pittsburgh', 'Phoenix', 'Beijing', 'Fort Wayne'], - }, - { - company: 'Goldman Sachs', - name: 'Stephen Budarz', - email: 'sbudarz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/steve-budarz/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Vice President', - industry: 'Finance', - cities: ['Portland'], - }, - { - company: 'Goldschmitt & Associates', - name: 'Kirk Shin', - email: 'shin.kirk@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kirkshin/', - campus: 'LA', - cohort: '31', - jobTitle: 'Frontend Developer', - industry: 'Government contractor', - cities: ['San Jose', 'Atlanta'], - }, - { - company: 'GoodPup', - name: 'Eric Wells', - email: 'epiqu1n@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ewells2275/', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Baltimore', 'Mumbai', 'Arlington'], - }, - { - company: 'GoodRX', - name: 'Byron Jay Inocencio', - email: 'jay.byron@gmail.com', - linkedIn: 'https://www.linkedin.com/in/binocencio/', - campus: 'LA', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'Healthcare, Med-tech, Telemedecine', - cities: ['Tulsa', 'Cleveland', 'Kansas City', 'Chesapeake'], - }, - { - company: 'GoodRx', - name: 'Mike Richards', - email: 'mike@madebymtr.com', - linkedIn: 'https://www.linkedin.com/in/madebymtr/', - campus: 'LA', - cohort: '11', - jobTitle: 'Senior Frontend Engineer', - industry: 'Healthcare', - cities: ['Virginia Beach', 'Portland', 'Washington'], - }, - { - company: 'Google', - name: 'Andie Ritter', - email: 'A.k.rittr@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andieritter/', - campus: 'LA', - cohort: '34', - jobTitle: 'Software Engineer', - industry: 'Business Intelligence', - cities: ['San Antonio', 'Aurora'], - }, - { - company: 'Google', - name: 'Ben Hawley', - email: 'benhawley0@gmail.com', - linkedIn: 'https://www.linkedin.com/in/benchawley/', - campus: 'NYC', - cohort: '4', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Berlin', 'Irving', 'Colorado Springs'], - }, - { - company: 'Google', - name: 'Brett Beekley', - email: 'brettbeekley@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brettbeekley/', - campus: 'LA', - cohort: '15', - jobTitle: 'Senior Software Engineer, Site Reliability Engineering', - industry: 'Technology', - cities: ['Reno', 'Cincinnati', 'Nashville'], - }, - { - company: 'Google', - name: 'Cameron Greer', - email: 'camgreer01@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cameron-greer/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer - Level 3', - industry: 'Technology', - cities: ['El Paso', 'Norfolk', 'Anaheim'], - }, - { - company: 'Google', - name: 'Christian Padilla', - email: 'christianepadilla@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christianedwardpadilla/', - campus: 'NYC', - cohort: '10', - jobTitle: 'Software Engineer (L3)', - industry: 'Frontend Mobile Development', - cities: ['Denver', 'Garland', 'Reno', 'St. Petersburg'], - }, - { - company: 'Google', - name: 'Crystal Pederson', - email: 'crystalpederson88@gmail.com', - linkedIn: 'https://www.linkedin.com/in/crystalpederson/', - campus: 'PTRI', - cohort: '5', - jobTitle: 'Software Engineer (Frontend III)', - industry: 'Software / Tech', - cities: ['Sydney'], - }, - { - company: 'Google', - name: 'Edwin Lee', - email: 'edjl1289@gmail.com', - linkedIn: 'https://www.linkedin.com/in/edwinlee89/', - campus: 'LA', - cohort: '45', - jobTitle: 'Software Engineer', - industry: 'Cloud Service', - cities: ['St. Petersburg', 'Cincinnati'], - }, - { - company: 'Google', - name: 'Ian Geckeler', - email: 'ikcgeckeler@gmail.com', - linkedIn: 'https://www.linkedin.com/in/iangeckeler/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Software Engineer', - industry: 'Adtech', - cities: ['Kansas City', 'St. Louis', 'Mesa'], - }, - { - company: 'Google', - name: 'Jeff Kang', - email: 'jeffreyrkang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jeffreyrkang/', - campus: 'LA', - cohort: '21', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Winston-Salem', 'San Jose'], - }, - { - company: 'Google', - name: 'Jenae Pennie', - email: 'jenaepen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jenae-pennie/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Software Engineer', - industry: 'Tech', - cities: ['Fresno', 'San Diego'], - }, - { - company: 'Google', - name: 'Jonathan Tam', - email: 'jktam336@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jktam/', - campus: 'LA', - cohort: '47', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Tokyo', 'San Antonio', 'Philadelphia'], - }, - { - company: 'Google', - name: 'Miguel Gonzalez', - email: 'MiguelGonzalez@alumni.upenn.edu', - linkedIn: 'https://www.linkedin.com/in/miguel-gonzalez96/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Software Engineer - Search Engine Privacy', - industry: 'Tech', - cities: ['Mexico City'], - }, - { - company: 'Google', - name: 'Nak Young Kim', - email: 'nydkim@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nak-young-kim/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer', - industry: 'Social Media', - cities: ['Henderson', 'Denver'], - }, - { - company: 'Google', - name: 'Patrick Liu', - email: 'patrickliu.hhs@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ptrkl/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Software Engineer', - industry: 'Tech', - cities: ['Lubbock'], - }, - { - company: 'Google', - name: 'Swetha Kunda', - email: 'swethakunda@gmail.com', - linkedIn: 'https://www.linkedin.com/in/swethakunda/', - campus: 'FTRI', - cohort: '6', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Gilbert', 'Tucson'], - }, - { - company: 'Google', - name: 'Cecilia Yena Choi', - email: 'yenachoi95@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ceciliayenachoi/', - campus: 'LA', - cohort: '34', - jobTitle: 'Software Engineer', - industry: 'Tech', - cities: ['Chandler'], - }, - { - company: 'Google Cloud', - name: 'Sarah Heacock', - email: 'sarahheacock03@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sarah-heacock/', - campus: 'NYC', - cohort: '2', - jobTitle: 'Software Engineer', - industry: 'Tech', - cities: ['Glendale', 'Louisville'], - }, - { - company: 'GoSite', - name: 'Alexander Young', - email: 'youngalexj00@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexander-young-7aabb7122/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Full Stack Engineer', - industry: 'Digital Services', - cities: ['Fort Wayne', 'Aurora'], - }, - { - company: 'Govini', - name: 'Aaron Bumanglag', - email: 'aaron.k.bumanglag@gmail.com', - linkedIn: 'https://linkedin.com/akbuma', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Decision Science', - cities: ['Irving', 'Chandler', 'North Las Vegas', 'Honolulu'], - }, - { - company: 'Grailed', - name: 'Eugene Chen', - email: 'chen.eugene19@gmail.com', - linkedIn: 'https://www.linkedin.com/in/canopeia', - campus: 'NYC', - cohort: '8', - jobTitle: 'Junior Software Engineer', - industry: 'HR tech', - cities: ['Miami', 'Arlington', 'Jacksonville', 'Atlanta'], - }, - { - company: 'Grailed', - name: 'Danni Ballena', - email: 'danni.ballena@gmail.com', - linkedIn: 'https://www.linkedin.com/in/danni-ballena/', - campus: 'LA', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Entertainment', - cities: ['Sรฃo Paulo', 'Fresno', 'Colorado Springs'], - }, - { - company: 'Granular', - name: 'Charles Ryu', - email: 'charles.ryu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/charcharryu', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer', - industry: 'Agriculture Tech', - cities: ['Toledo', 'Wichita'], - }, - { - company: 'Graphika', - name: 'Sam Carlile', - email: 'sam@samkc.me', - linkedIn: 'https://LinkedIn.com/in/samkcarlile', - campus: 'NYC', - cohort: '21', - jobTitle: 'Full Stack Engineer', - industry: 'Research & Analytics', - cities: ['Saint Paul', 'Plano', 'St. Louis', 'Reno'], - }, - { - company: 'Green Street Advisors', - name: 'Joshua Nordstrom', - email: 'joshua@jdnordstrom.com', - linkedIn: 'https://www.linkedin.com/in/jdnordy/', - campus: 'LA', - cohort: '34', - jobTitle: 'Technology Associate', - industry: 'Real Estate', - cities: ['Norfolk', 'Jacksonville', 'Denver', 'Arlington'], - }, - { - company: 'Greenphire', - name: 'Nicholas Krug', - email: 'n.e.krug@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nicholas-e-krug', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Application Developer III', - industry: 'Healthcare', - cities: ['Las Vegas'], - }, - { - company: 'Greentech Financial Solutions', - name: 'Justin Hicks', - email: 'justinhickswork@gmail.com', - linkedIn: 'https://www.linkedin.com/in/justinlhicks/', - campus: 'LA / WCRI', - cohort: '48', - jobTitle: 'Engineer', - industry: 'Fintech', - cities: ['Miami', 'Cincinnati', 'Nashville', 'Henderson'], - }, - { - company: 'Grid Networks', - name: 'Trine Medina', - email: 'trinemedina@gmail.com', - linkedIn: 'www.linkedin.com/in/trinemedina', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Lincoln', 'Tulsa', 'Arlington', 'Mexico City'], - }, - { - company: 'Gro Intelligence', - name: 'Damian Lim', - email: 'limd96@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lim-damian/', - campus: 'FTRI', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Agriculture Science', - cities: ['Miami'], - }, - { - company: 'Gro-Intelligence', - name: 'David Bernstein', - email: 'dxbernstein@gmail.com', - linkedIn: 'https://www.linkedin.com/in/davidsamuelbernstein/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Software Engineer (API/Data Visualization Team)', - industry: 'Agricultural Analytics', - cities: ['Dallas', 'El Paso', 'Paris'], - }, - { - company: 'Groove Jones', - name: 'Kristopher Sorensen', - email: 'Krismsorensen@gmail.com', - linkedIn: 'Linkedin/in/kris-sorensen', - campus: 'FTRI / CTRI', - cohort: '7', - jobTitle: 'Senior WebXR Developer', - industry: 'Other', - cities: ['St. Louis', 'Gilbert', 'Washington'], - }, - { - company: 'GuideMe Solutions', - name: 'David Nadler', - email: 'Davidnadler9637@gmail.com', - linkedIn: 'https://www.linkedin.com/in/davenads/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Technical Consultant', - industry: 'Digital Adoption Software', - cities: ['Dallas'], - }, - { - company: 'Gulfstream', - name: 'Chris Hicks', - email: 'chrishicks430@gmail.com', - linkedIn: 'Www.LinkedIn.com/in/chrishicks430', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Application Developer', - industry: 'Aerospace', - cities: ['Toronto', 'Memphis'], - }, - { - company: 'Guy Carpenter', - name: 'Dennis Palomo', - email: 'dennispalomo@icloud.com', - linkedIn: 'https://linkedin.com/in/dennispalomo', - campus: 'NYC', - cohort: '27', - jobTitle: 'Developer', - industry: 'Insurance', - cities: ['Detroit', 'Oklahoma City', 'Lincoln'], - }, - { - company: 'HackerOne', - name: 'Catherine Chiu', - email: 'catherinechiuu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cchiu2/', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Engineer II', - industry: 'Cybersecurity', - cities: ['Seattle', 'Colorado Springs', 'Honolulu', 'Arlington'], - }, - { - company: 'HackerOne', - name: 'Serena Kuo', - email: 'hello@serenakuo.com', - linkedIn: 'https://www.linkedin.com/in/serenakuo/', - campus: 'LA', - cohort: '37', - jobTitle: 'Senior Software Engineer', - industry: 'Computer Safety', - cities: ['Virginia Beach', 'Lexington', 'St. Petersburg'], - }, - { - company: 'HackerOne', - name: 'Haejin Jo', - email: 'swe.haejin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/haejinjo', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Engineer', - industry: 'Cybersecurity', - cities: ['Chicago'], - }, - { - company: 'Halo Investing', - name: 'Gareth Leake', - email: 'gfleake@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gareth-leake/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'Finance', - cities: ['Irvine', 'Anchorage'], - }, - { - company: 'Handshake', - name: 'Annie Shin', - email: 'annieshin51@gmail.com', - linkedIn: 'https://www.linkedin.com/in/annieshinn/', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer, Platform Services Team', - industry: 'Recruiting', - cities: ['Durham'], - }, - { - company: 'Handshake', - name: 'Chase Benjamin', - email: 'chasebenjamin6@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chase-benjamin300/', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Growth Engineer', - industry: 'Other', - cities: ['Milwaukee', 'Sydney'], - }, - { - company: 'Handshake', - name: 'Jeffrey Lu', - email: 'hi@jeffreyclu.com', - linkedIn: 'https://www.linkedin.com/in/jeffreyclu/', - campus: 'PTRI', - cohort: 'Beta', - jobTitle: 'Software Engineer', - industry: 'Education', - cities: ['Anchorage', 'Corpus Christi', 'Orlando'], - }, - { - company: 'Handshake', - name: 'Joel Pratt', - email: 'pratt.joel@gmail.com', - linkedIn: 'https://www.linkedin.com/in/pratt-joel/', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Riverside', 'Kansas City'], - }, - { - company: 'Harbor.ai', - name: 'Rodolfo Guzman', - email: 'Rodolfoguzman147@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rodolfo-guzman-59249594/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Full Stack Developer', - industry: 'Insurance Tech', - cities: ['Mexico City', 'Louisville'], - }, - { - company: 'Harness Inc.', - name: 'Tran McFarland Nguyen', - email: 'tranviolin@me.com', - linkedIn: 'https://www.linkedin.com/in/tranmcfarlandnguyen/', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Senior UX Designer', - industry: 'Software / Tech', - cities: ['Scottsdale', 'Wichita'], - }, - { - company: 'Harver', - name: 'Will Robinson', - email: 'wrobinson91@gmail.com', - linkedIn: 'https://www.linkedin.com/in/wrobinson91', - campus: 'NYC', - cohort: '12', - jobTitle: 'Fullstack Engineer', - industry: 'Applicant Tracking Software', - cities: ['Columbus', 'Austin'], - }, - { - company: 'Health Note', - name: 'Jeffrey Sul', - email: 'jeffsul97@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jsul/', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer', - industry: 'Medical CRM', - cities: ['San Francisco', 'Chandler', 'Detroit', 'Arlington'], - }, - { - company: 'Healthcare.com', - name: 'Stephen Jue', - email: 'steve.h.jue@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stephen-jue09/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Software Engineer - Front End', - industry: 'Other', - cities: ['Cleveland', 'Gilbert'], - }, - { - company: 'Healthgrades', - name: 'Joel K. Perkins', - email: 'Joel.climbs@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joelkperkins/', - campus: 'LA', - cohort: '24', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Omaha'], - }, - { - company: 'Hearst', - name: 'Josh Roberts', - email: 'josh@quantumspot.io', - linkedIn: 'https://www.linkedin.com/in/joshrobertsv2/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Lead Frontend Engineer', - industry: 'Media', - cities: ['Orlando', 'Saint Paul', 'Chesapeake'], - }, - { - company: 'Hearst', - name: 'Rob Nobile', - email: 'robert.nobile@gmail.com', - linkedIn: 'https://www.linkedin.com/in/robnobile/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer', - industry: 'Media', - cities: ['Raleigh', 'Tucson'], - }, - { - company: 'Hearst Newspaper', - name: 'Kevin Sarchi', - email: 'kevinsarchi@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/kevin-sarchi/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Associate Software Engineer', - industry: 'Media', - cities: ['Jersey City', 'Norfolk', 'Seattle', 'Boston'], - }, - { - company: 'Hearth', - name: 'Vince Ho', - email: 'vinceho022@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vinceho022/', - campus: 'LA', - cohort: '40', - jobTitle: 'Backend Engineer', - industry: 'Fintech', - cities: ['New Orleans', 'San Antonio', 'Durham'], - }, - { - company: 'Heartland ', - name: 'Lloyd Bistany', - email: 'lloydbistany@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lloyd-bistany', - campus: 'NYOI', - cohort: '3', - jobTitle: 'Software Developer ', - industry: 'Business Tech/Enterprise Tech', - cities: ['Sydney', 'Sรฃo Paulo', 'Irving', 'Madison'], - }, - { - company: 'Helix', - name: 'Robert Crocker', - email: 'robert@vizsimply.com', - linkedIn: 'https://www.linkedin.com/in/robertcrocker/', - campus: 'PTRI', - cohort: '4', - jobTitle: 'Data Visualization Engineer', - industry: 'Bio Tech', - cities: ['Tampa', 'Winston-Salem', 'Riverside'], - }, - { - company: 'Hertz', - name: 'Michael Costello', - email: 'mcostello91@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mcostello-swe/', - campus: 'FTRI / CTRI', - cohort: '12', - jobTitle: 'Software Engineer', - industry: 'Automotive', - cities: ['Raleigh', 'New York', 'Anchorage', 'Tokyo'], - }, - { - company: 'Highnote', - name: 'Trevor Carr', - email: 'trevor.a.carr@gmail.com', - linkedIn: 'https://www.linkedin.com/in/carr-trevor/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Software', - cities: ['Stockton'], - }, - { - company: 'Hilton', - name: 'Andrei Cabrera', - email: 'andrei.cabrera@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andrei-cabrera/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Backend Software Engineer', - industry: 'Entertainment', - cities: ['Seattle', 'Columbus', 'Anchorage'], - }, - { - company: 'Hilton', - name: 'Nick Andreala', - email: 'nandreala@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nickandreala/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Front-End Software Engineer', - industry: 'Hospitality', - cities: ['Durham', 'Washington', 'New Orleans', 'Oklahoma City'], - }, - { - company: 'Hilton', - name: 'Conor Sexton', - email: 'sextonc@me.com', - linkedIn: 'https://www.linkedin.com/in/sextonc/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Render Tier Engineer', - industry: 'Hospitality', - cities: ['Garland'], - }, - { - company: 'Hinge Health', - name: 'Ahsan Rao', - email: 'ahsan.ijaz.rao@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ahsan-rao/', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Software Engineer - Full-Stack', - industry: 'Healthcare', - cities: ['El Paso', 'Greensboro', 'Philadelphia', 'St. Louis'], - }, - { - company: 'Hinge Health', - name: 'Evan King', - email: 'evanking112@gmail.com', - linkedIn: 'https://www.linkedin.com/in/evanking11/', - campus: 'LA', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Healthcare Technology', - cities: ['Indianapolis'], - }, - { - company: 'Hinge Health', - name: 'Vanessa Lutz', - email: 'vanessayplutz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vanessa-lutz', - campus: 'FTRI', - cohort: '2', - jobTitle: 'Software Engineer', - industry: 'Health', - cities: ['Portland', 'Chesapeake', 'Baltimore'], - }, - { - company: 'Hireology', - name: 'Stella Baek', - email: 'seungyeon1008@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stellabaek/', - campus: 'LA / WCRI', - cohort: '54', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Madison'], - }, - { - company: 'HiTactics/ ZH Solutions Inc.', - name: 'Sidhi Gosain', - email: 'sidhigosain@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sidhi-gosain/', - campus: 'LA', - cohort: '22', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Aurora', 'Baltimore'], - }, - { - company: 'HiThrive', - name: 'Zack Daniels', - email: 'Zackdanielsnyc@gmail.com', - linkedIn: 'https://www.linkedin.com/in/zackdanielsnyc/', - campus: 'LA', - cohort: '49', - jobTitle: 'Full stack software engineer', - industry: 'Other', - cities: ['Los Angeles', 'Atlanta', 'Oakland', 'Seattle'], - }, - { - company: 'Hive', - name: 'Max Latoche', - email: 'max.latoche@gmail.com', - linkedIn: 'https://www.linkedin.com/in/maxlatoche/', - campus: 'NYC', - cohort: '2', - jobTitle: 'Senior Software Engineer', - industry: 'Tech', - cities: ['Toronto', 'Fresno', 'Reno', 'Milwaukee'], - }, - { - company: 'Hive Technologies Inc', - name: 'Lilah August', - email: 'lilahraeaugust@gmail.com', - linkedIn: 'https://www.linkedin.com/lilahaugust', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Software Engineer', - industry: 'Automotive', - cities: ['Tulsa', 'Lexington'], - }, - { - company: 'HOF Capital', - name: 'Frank Hu', - email: 'frank.junhu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/frankjunhu/', - campus: 'NYC', - cohort: '2', - jobTitle: 'Venture Analyst', - industry: '', - cities: ['Albuquerque', 'Los Angeles', 'Wichita'], - }, - { - company: 'Home Depot', - name: 'Hannah Santoyo', - email: 'hannah.santoyo7@gmail.com', - linkedIn: 'linkedin.com/in/hannah-santoyo', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Fullstack Software Engineer', - industry: 'Retail', - cities: ['Honolulu', 'Nashville', 'Buffalo', 'Norfolk'], - }, - { - company: 'Honey (PayPal)', - name: 'Jenny Hai', - email: 'jenny.hai420@gmail.com', - linkedIn: 'https://www.linkedin.com/in/Jenny-hai/', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer II', - industry: 'Fintech / Ecommerce', - cities: ['Charlotte', 'Fresno', 'Fort Wayne', 'Henderson'], - }, - { - company: 'Hooray Agency', - name: 'Aris Razuri', - email: 'arazuli4@gmail.com', - linkedIn: 'https://www.linkedin.com/in/aris-razuri/', - campus: 'LA', - cohort: '34', - jobTitle: 'Junior Frontend Developer', - industry: 'Marketing & Advertising', - cities: ['Phoenix', 'North Las Vegas'], - }, - { - company: 'Hopin', - name: 'Linda Wishingrad', - email: 'linda.wishingrad@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lindawishingrad/', - campus: 'LA', - cohort: '33', - jobTitle: 'Front End Engineer', - industry: 'Tech', - cities: ['Chandler'], - }, - { - company: 'Hopin', - name: 'Rachel Yoo', - email: 'yoo.rache@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rachel-yoo/', - campus: 'LA', - cohort: '33', - jobTitle: 'Frontend Engineer', - industry: 'Online Events Platform', - cities: ['Mesa', 'Irving'], - }, - { - company: 'Hopkins', - name: 'Nicole Abramowski', - email: 'nabramow@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nicoleabramowski/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Senior Full Stack Engineer', - industry: 'Law', - cities: ['Los Angeles', 'Miami'], - }, - { - company: 'HotPyp', - name: 'Kendall Lu', - email: 'kendall.luu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kendall-lu/', - campus: 'LA', - cohort: '31', - jobTitle: 'Front End Software Engineer', - industry: 'Cyber Security', - cities: ['Portland'], - }, - { - company: 'Howl', - name: 'Adam Allison', - email: 'allisonadam81@gmail.com', - linkedIn: 'https://www.linkedin.com/in/allisonadam81/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Full Stack Software Engineer', - industry: 'Other', - cities: ['Anchorage', 'Madison', 'Jersey City'], - }, - { - company: 'Howl', - name: 'Ryan Wallace', - email: 'ryanwallace1396@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rwallie/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Software Engineer', - industry: 'Media', - cities: ['Atlanta'], - }, - { - company: 'Hoylu', - name: 'Judy Song', - email: 'judysongg@gmail.com', - linkedIn: 'https://www.linkedin.com/in/judysongg/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Boston', 'Saint Paul'], - }, - { - company: 'HqO', - name: 'Shadman Khan', - email: 'shadmankhan.825@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shadmanmkhan/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Senior Software Engineer', - industry: 'Tenant Experience Platform/Commercial Real Estate', - cities: ['Cincinnati', 'Chesapeake', 'Phoenix', 'Minneapolis'], - }, - { - company: 'HubSpot', - name: 'Michael Caballero', - email: 'caballeromichaelus@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael-caballero-a48b0b211/', - campus: 'LA', - cohort: '42', - jobTitle: 'Senior Software Engineer I', - industry: 'Software', - cities: ['Stockton'], - }, - { - company: 'Human Interest', - name: 'Paulo Choi', - email: 'Paulinho@hey.com', - linkedIn: 'https://www.linkedin.com/in/paulochoi', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: ['Aurora', 'Mesa', 'Mumbai'], - }, - { - company: 'Humana', - name: 'Jeffery Richardson', - email: 'Jeffery.erichardson03@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jefferyrichardsonii', - campus: 'FTRI / CTRI', - cohort: '12', - jobTitle: 'Senior Software Engineer', - industry: 'Insurance', - cities: ['Honolulu'], - }, - { - company: 'HumanQ', - name: 'Aya Moosa', - email: 'ayamoosa1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ayamoosa/', - campus: 'LA / WCRI', - cohort: '55', - jobTitle: 'Full Stack Developer', - industry: 'Other', - cities: ['Reno', 'Scottsdale', 'Dallas'], - }, - { - company: 'Hunter Strategy', - name: 'Rankin Draa', - email: 'rankindraa@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rankin-draa/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Application Developer', - industry: 'IT Services', - cities: ['Lubbock', 'Newark', 'Tokyo', 'Scottsdale'], - }, - { - company: 'Hy-Vee', - name: 'Daniel An', - email: 'da568@georgetown.edu', - linkedIn: 'https://www.linkedin.com/in/d-an96/', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Restaurant, Food, and Beverage', - cities: ['Baltimore'], - }, - { - company: 'Hy-Vee', - name: 'Paul Perez', - email: 'pau.per92@gmail.com', - linkedIn: 'https://www.linkedin.com/in/perezp92', - campus: 'NYC / ECRI', - cohort: '31', - jobTitle: 'Software Engineer II', - industry: 'Restaurant, Food, and Beverage', - cities: ['New York', 'Minneapolis', 'Fresno'], - }, - { - company: 'Hyliion', - name: 'Gordon Yu', - email: 'gordon@gordonyu.com', - linkedIn: 'https://www.linkedin.com/in/gordonu/', - campus: 'LA', - cohort: '16', - jobTitle: 'Senior Full Stack Engineer', - industry: 'Electric Vehicles', - cities: ['St. Louis', 'New York', 'Aurora'], - }, - { - company: 'Hypergiant', - name: 'Abu Fofanah', - email: 'Bubakarrr@gmail.com', - linkedIn: 'https://www.linkedin.com/in/Abu-Fofanah/', - campus: 'LA', - cohort: '41', - jobTitle: 'Senior Frontend Developer', - industry: 'Technology', - cities: ['St. Petersburg', 'Toronto', 'Corpus Christi', 'Lincoln'], - }, - { - company: 'Hyperproof', - name: 'Tai Nguyen', - email: 'ndhuutai1@gmail.com', - linkedIn: '', - campus: 'PTRI', - cohort: 'Beta', - jobTitle: 'Software Engineer', - industry: 'Compliance Operations', - cities: ['Fort Worth', 'Kansas City'], - }, - { - company: 'Hyster-Yale Group', - name: 'Patrick Mojica', - email: 'patrickmojica@gmail.com', - linkedIn: 'https://www.linkedin.com/in/patrick-mojica/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Software Engineer II - Emerging Technology', - industry: 'Automotive', - cities: ['Omaha', 'Greensboro', 'Anchorage', 'Riverside'], - }, - { - company: 'IAPP', - name: 'Wanlu Ding', - email: 'wanlu.ding@gmail.com', - linkedIn: 'https://www.linkedin.com/in/wanlu-ding/', - campus: 'NYC / ECRI', - cohort: '42', - jobTitle: 'Fullstack software engineer (Contractor)', - industry: 'Consulting', - cities: ['Toledo', 'New York'], - }, - { - company: 'IBI Group', - name: 'wisdom liu', - email: 'wliu1290@gmail.com', - linkedIn: 'https://www.linkedin.com/in/wisdom-liu/', - campus: 'LA', - cohort: '27', - jobTitle: 'Software Developer', - industry: 'Architectural Services', - cities: ['Phoenix', 'Baltimore', 'Pittsburgh', 'San Jose'], - }, - { - company: 'IBM', - name: 'Annette Lin', - email: 'al261310@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alin10/', - campus: 'NYC', - cohort: '9', - jobTitle: 'Software engineer, backend', - industry: 'IT', - cities: ['Anaheim', 'Newark', 'Houston'], - }, - { - company: 'IBM', - name: 'Jimmy Deng', - email: 'Jdeng619@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/zhijimmydeng/', - campus: 'LA', - cohort: '30', - jobTitle: 'Software Developer - Cloud Software Developer', - industry: 'Sales? Tbh idk', - cities: ['Chandler'], - }, - { - company: 'IBM', - name: 'Kyle Jurassic', - email: 'kjurassic@protonmail.com', - linkedIn: 'https://www.linkedin.com/in/kylejurassic/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Cloud Engineer', - industry: 'Technology', - cities: ['Atlanta', 'Sรฃo Paulo', 'Durham', 'Chicago'], - }, - { - company: 'IBM', - name: 'Nader Almogazy', - email: 'nader73107@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nader-almogazy-97603080/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Tech', - cities: ['Santa Ana', 'Denver', 'Raleigh', 'Plano'], - }, - { - company: 'IBM', - name: 'Brian Bui', - email: 'umius.brian@gmail.com', - linkedIn: 'https://www.linkedin.com/in/umius-brian/', - campus: 'LA', - cohort: '35', - jobTitle: 'Cloud Engineer', - industry: 'Information Technology & Services', - cities: ['Henderson', 'Riverside'], - }, - { - company: 'IBM', - name: 'Vessy Shestorkina', - email: 'v.shestorkina@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shestorkina/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Full Stack Developer', - industry: 'Technology & Consulting', - cities: ['San Francisco', 'Stockton'], - }, - { - company: 'Icetec Energy Services', - name: 'Nicholas Ly', - email: 'lynick14@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nicholasly/', - campus: 'FTRI / CTRI', - cohort: '15', - jobTitle: 'Senior Applications Engineer', - industry: 'Other', - cities: ['Bakersfield', 'Dallas'], - }, - { - company: 'ICF', - name: 'David Cheng', - email: 'davidzcheng@protonmail.com', - linkedIn: 'https://www.linkedin.com/in/davidzcheng/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Software Engineer', - industry: 'Consulting', - cities: ['Scottsdale', 'Sacramento', 'Gilbert', 'Mexico City'], - }, - { - company: 'ICF', - name: 'Gwen Phillips', - email: 'gwen.phil@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gwen-phillips/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Frontend Developer', - industry: 'Consulting', - cities: ['Gilbert', 'Columbus'], - }, - { - company: 'IDEMIA', - name: 'David Conrad Friesen', - email: 'conrad.friesen@pm.me', - linkedIn: 'https://www.linkedin.com/in/conrad-friesen/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Software Engineer I', - industry: 'Software / Tech', - cities: ['Lubbock'], - }, - { - company: 'Idemia', - name: 'Tommy Edmunds', - email: 'tommyedmunds5@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tommy-edmunds-a91aa41a9/', - campus: 'FTRI', - cohort: '2', - jobTitle: 'Software Engineer', - industry: 'Security', - cities: ['New York', 'Tampa'], - }, - { - company: 'iHeartMedia', - name: 'Genevieve Annable', - email: 'genevieveannable@gmail.com', - linkedIn: 'https://www.linkedin.com/in/genevieveannable/', - campus: 'LA', - cohort: '47', - jobTitle: 'Full-Stack Engineer', - industry: 'Entertainment', - cities: ['Colorado Springs', 'Paris'], - }, - { - company: 'iHeartMedia', - name: 'Alexa Nunes', - email: 'alexaraenunes@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexanunes/', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Software Engineer', - industry: 'News/Entertainment/Streaming Platforms', - cities: ['Santa Ana', 'Newark', 'Albuquerque'], - }, - { - company: 'iHeartRadio', - name: 'Serhii Kaistrenko', - email: 'skaistrenko@gmail.com', - linkedIn: 'https://www.linkedin.com/in/skaistrenko/', - campus: 'NYC', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Hospitality', - cities: ['Indianapolis', 'Lincoln'], - }, - { - company: 'Impending Bloom', - name: 'William Magee', - email: 'wmagee03@gmail.com', - linkedIn: 'https://www.linkedin.com/in/william-magee-22a677181/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Data Engineer', - industry: 'Fintech', - cities: ['New Orleans', 'Plano'], - }, - { - company: 'Inari', - name: 'Kelly Dekitani', - email: 'kellydekitani@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kelly-dekitani/', - campus: 'LA', - cohort: '33', - jobTitle: 'Full Stack Engineer', - industry: 'Biotech/Agriculture', - cities: ['Riverside', 'Jersey City'], - }, - { - company: 'Inbrace', - name: 'Jim Yoon', - email: 'jimyoon90@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jimkyoon', - campus: 'LA', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Health', - cities: ['Lincoln', 'Newark', 'Columbus'], - }, - { - company: 'Industrious', - name: 'Bryan Li', - email: 'Bryan.li@foxmail.com', - linkedIn: 'https://www.linkedin.com/in/bbbryan14/', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Tokyo', 'Washington'], - }, - { - company: 'Infinite Computer Solutions', - name: 'Brianna Sookhoo', - email: 'brianna.sookhoo24@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brianna-sookhoo/', - campus: 'LA', - cohort: '35', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['Glendale', 'Tampa'], - }, - { - company: 'Influent', - name: 'Adam Berri', - email: 'adamberri123@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adamberri/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Software Engineer 1', - industry: 'Social Media', - cities: ['Seattle', 'Chicago', 'Washington'], - }, - { - company: 'Influx Data', - name: 'Grace Spletzer', - email: 'gracespletzer05@gmail.com', - linkedIn: 'https://www.linkedin.com/in/grace-spletzer/', - campus: 'LA', - cohort: '36', - jobTitle: 'Engineer I', - industry: 'Database service', - cities: ['Buffalo', 'Miami', 'Philadelphia', 'Newark'], - }, - { - company: 'InfluxData', - name: 'Bill OConnell', - email: 'wdoconnell@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bill-oconnell/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'SaaS', - cities: ['Oklahoma City'], - }, - { - company: 'Infor', - name: 'Olga Naumova', - email: 'leliknaum@gmail.com', - linkedIn: 'https://www.linkedin.com/in/onaumova/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'software', - cities: ['Henderson', 'London', 'Riverside'], - }, - { - company: 'Infosys', - name: 'Honghao Sun', - email: 'ilovepuffseven@gmail.com', - linkedIn: 'https://www.linkedin.com/in/honghaosunmichael/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Technical lead', - industry: 'IT Services', - cities: ['Long Beach', 'Denver', 'Berlin', 'Jacksonville'], - }, - { - company: 'Infosys', - name: 'Reuben Kirsh', - email: 'reubenakirsh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/reubenkirsh/', - campus: 'LA', - cohort: '41', - jobTitle: 'Technology Analyst', - industry: 'Tech', - cities: ['North Las Vegas', 'Fort Wayne', 'San Diego', 'Toronto'], - }, - { - company: 'Infosys', - name: 'Samuel Ratemo', - email: 'Sratemo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/samuelratemo/', - campus: 'LA', - cohort: '24', - jobTitle: 'Technology lead -US', - industry: 'Entertainment', - cities: ['Honolulu', 'San Jose', 'Corpus Christi', 'Paris'], - }, - { - company: 'Inhance Digital', - name: 'Brian Chiang', - email: 'chiangbri@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ch-brian/', - campus: 'LA', - cohort: '34', - jobTitle: 'Software Engineer', - industry: 'Marketing', - cities: ['Detroit'], - }, - { - company: 'Initiative', - name: 'Brian Cheng', - email: 'Chengbrian24@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brian-cheng24/', - campus: 'LA', - cohort: '45', - jobTitle: 'Full Stack Developer', - industry: 'Media Agency', - cities: ['Virginia Beach', 'El Paso'], - }, - { - company: 'INLT', - name: 'Andrew Wong', - email: 'andwong91@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andwong91/', - campus: 'LA', - cohort: '23', - jobTitle: 'Full Stack Developer', - industry: '', - cities: ['Mumbai', 'Charlotte', 'Virginia Beach', 'Mexico City'], - }, - { - company: 'Inman', - name: 'David Kim', - email: 'scriptura7773@gmail.com', - linkedIn: 'https://www.linkedin.com/in/davidkim7773/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Developer', - industry: 'Real Estate', - cities: ['Seattle', 'Scottsdale', 'Philadelphia', 'Milwaukee'], - }, - { - company: 'Innovative Defense Technologies', - name: 'Daniel Pietsch', - email: 'drpietsch14@gmail.com', - linkedIn: 'https://www.linkedin.com/in/danielpietsch14/', - campus: 'NYOI', - cohort: '1', - jobTitle: 'Associate Software Engineer', - industry: 'Other', - cities: ['Fort Wayne', 'Anchorage', 'Virginia Beach'], - }, - { - company: 'InRhythm', - name: 'Altai Chiang', - email: 'altai.chiang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/altaic/', - campus: 'NYC', - cohort: '8', - jobTitle: 'Senior Software Engineer', - industry: 'Consulting', - cities: ['Saint Paul'], - }, - { - company: 'InRhythm', - name: 'Eric Marcatoma', - email: 'ericmarc159@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ericmarc159/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Software Engineer', - industry: 'Information Technology & Services', - cities: ['Fort Wayne'], - }, - { - company: 'InRhythm', - name: 'Benjamin Johnson', - email: 'johnsben002@gmail.com', - linkedIn: 'https://www.linkedin.com/in/johnsben002/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Software Engineer: Web Accessibility', - industry: 'Consulting', - cities: ['Saint Paul'], - }, - { - company: 'InRhythm', - name: 'Johnson Che', - email: 'Johnson.Che01@gmail.com', - linkedIn: 'https://www.linkedin.com/in/johnsonche/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Consulting', - cities: ['Lubbock', 'Mumbai', 'Orlando'], - }, - { - company: 'InRhythm', - name: 'Wai Fai Lau', - email: 'wlau8088@gmail.com', - linkedIn: 'https://www.linkedin.com/in/wai-fai-lau/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Software Engineer', - industry: 'Software Consulting', - cities: ['Detroit'], - }, - { - company: 'Insider, Inc.', - name: 'Michael Lauri', - email: 'michael.lauri@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mlauri/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer II', - industry: 'Online Media', - cities: ['Anaheim', 'Reno', 'Honolulu', 'Norfolk'], - }, - { - company: 'Insider, Inc.', - name: 'Mitchel Severe', - email: 'mitchelsevere@gmail.com', - linkedIn: 'https://www.linkedin.com/in/misevere/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Software Engineer III', - industry: 'Digital Media', - cities: ['Saint Paul', 'Seattle', 'Greensboro', 'Virginia Beach'], - }, - { - company: 'Insight Global', - name: 'Lucas Mobley', - email: 'Lucas.W.Mobley@Gmail.com', - linkedIn: 'https://www.linkedin.com/in/lucasmobley/', - campus: 'LA', - cohort: '41', - jobTitle: 'Front End Developer', - industry: 'Entertainment', - cities: ['Fresno', 'Tampa'], - }, - { - company: 'Insight Global (contract for Nike)', - name: 'Dave Franz', - email: 'davefranz@me.com', - linkedIn: 'https://www.linkedin.com/in/dave-franz/', - campus: 'LA', - cohort: '33', - jobTitle: 'Senior Full-Stack Automation Developer', - industry: 'athletic footwear and apparel', - cities: ['Scottsdale'], - }, - { - company: 'Insight Global Consulting', - name: 'Andrew Kessinger', - email: 'andrew.kessinger@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '27', - jobTitle: 'React developer', - industry: 'Consulting', - cities: ['Fort Wayne', 'New York', 'Garland'], - }, - { - company: 'Instride', - name: 'Jayvee Aspa', - email: 'jayvee.aspa@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jayveeaspa/', - campus: 'LA', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Education', - cities: ['Las Vegas', 'Washington'], - }, - { - company: 'Integral', - name: 'Anna Larouche', - email: 'alarouche@gmail.com', - linkedIn: 'https://www.linkedin.com/in/anna-larouche/', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Full-stack Engineer', - industry: 'Healthcare', - cities: ['Arlington', 'Atlanta', 'San Jose'], - }, - { - company: 'Intelepeer', - name: 'Colton Robbins', - email: 'coltondr@gmail.com', - linkedIn: 'https://www.linkedin.com/in/c-robbins/', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Developer', - industry: 'Other', - cities: ['San Francisco', 'San Jose', 'Garland', 'Santa Ana'], - }, - { - company: 'Intellective', - name: 'Dennis Lopez', - email: 'dnnis.lpz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dennis-lopezsb/', - campus: 'LA', - cohort: '40', - jobTitle: 'Full-Stack Developer', - industry: 'Internet', - cities: ['Santa Ana', 'Sacramento'], - }, - { - company: 'Intent Media', - name: 'Denali DeMots', - email: 'denali.demots@gmail.com', - linkedIn: 'https://www.linkedin.com/in/denali-demots/', - campus: 'NYC', - cohort: '3', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Sacramento', 'Sydney', 'Jacksonville', 'Beijing'], - }, - { - company: 'Interactive Brokers', - name: 'Luke McInerney', - email: 'mciluke@gmail.com', - linkedIn: 'https://www.linkedin.com/in/luke-mcinerney/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Oklahoma City', 'El Paso', 'Chesapeake', 'Tampa'], - }, - { - company: 'Intercom', - name: 'Michael Colley', - email: 'michael.e.colley@googlemail.com', - linkedIn: 'https://www.linkedin.com/in/michaelecolley/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Product Engineer', - industry: 'SaaS, business creation services', - cities: ['Stockton', 'Durham', 'Albuquerque'], - }, - { - company: 'International association of the better business bureau', - name: 'Giovanni Rodriguez', - email: 'Gjrod16@gmail.com', - linkedIn: - 'https://www.linkedin.com/in/giovanni-rodriguez2?trk=public_profile_browsemap&challengeId=AQFtoT_NoFD3KAAAAYkntGZKTiNfC60o4v2Z4zYAnz_4_KDTQUBD7ql40SFHKBenfzE9c6FBwiMar6V09FHeEqmjVS1EAfJ7Ag&submissionId=3cc6cd5a-1812-6f17-7ceb-2e5c0f6f3658&challengeSource=AgFf2bVUVWWRnwAAAYkntJ9Q3ysytHHh91YXaw8gQiFJEKewOYeYX6rLjYNFhlQ&challegeType=AgGCPMxM5AqqqwAAAYkntJ9TeXuuC8zmVgvrjuLxi773fqd8_2_50rU&memberId=AgFbJ9qnK0duCgAAAYkntJ9WYBoUAlgShMkO190TrWZI9XA&recognizeDevice=AgGnKEfL32RWyAAAAYkntJ9aHRqgkhTAzFQoMuIEWQbDY5Tac0sU', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Full Stack Developer', - industry: 'Other', - cities: ['Los Angeles', 'Laredo', 'Oklahoma City', 'Winston-Salem'], - }, - { - company: 'International Business Machines', - name: 'Michael Evans', - email: 'amike.evans@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael-evans-8278b865/', - campus: 'NYC', - cohort: '14', - jobTitle: 'Lead Full Stack Developer', - industry: 'Computer Software', - cities: ['Las Vegas', 'Lexington', 'Jacksonville'], - }, - { - company: 'Intrinsic Enterprises', - name: 'Jasmine A Gonzalez', - email: 'jasminezalez@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jasminezalez/', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Portland', 'Berlin', 'Toledo', 'Irving'], - }, - { - company: 'Intuit', - name: 'Daria Bondarenko', - email: 'dan4ik18@gmail.com', - linkedIn: 'https://www.linkedin.com/in/daria-b/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer', - industry: 'Enterprise Software', - cities: ['San Francisco', 'Gilbert'], - }, - { - company: 'Intuit', - name: 'Davide Molino', - email: 'davidemmolino@gmail.com', - linkedIn: 'https://www.linkedin.com/in/davide-molino/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer III', - industry: 'Technology', - cities: ['Henderson', 'Columbus'], - }, - { - company: 'Intuit', - name: 'Manjeet Kaur', - email: 'manjeet175@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kaurmanjeet/', - campus: 'NYC', - cohort: '5', - jobTitle: 'Senior Frontend Engineer', - industry: '', - cities: ['Mesa'], - }, - { - company: 'Intuit', - name: 'Matthew Marchand', - email: 'matthew.marchand.93@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mnmarchand/', - campus: 'LA', - cohort: '40', - jobTitle: 'Software Engineer II', - industry: 'Fintech', - cities: ['Las Vegas', 'Santa Ana'], - }, - { - company: 'intuit', - name: 'Yevgeniy Skroznikov', - email: 'yevskro@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yevgeniyskroznikov/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Software Engineer II', - industry: 'Enterprise software', - cities: ['Albuquerque', 'Cincinnati', 'Raleigh'], - }, - { - company: 'InvestCloud', - name: 'Curtis Lovrak', - email: 'curtislovrak@gmail.com', - linkedIn: 'https://www.linkedin.com/in/curtislovrak/', - campus: 'NYOI', - cohort: '4', - jobTitle: 'UI Developer', - industry: 'Fintech', - cities: ['Fort Worth', 'Minneapolis'], - }, - { - company: 'Invisory', - name: 'Thomas Kady', - email: 'thomas.kady@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thomas-kady/', - campus: 'FTRI / CTRI', - cohort: '14', - jobTitle: 'Software Developer', - industry: 'Cloud Services', - cities: ['Henderson', 'Tampa', 'Raleigh'], - }, - { - company: 'IP.com', - name: 'Matthew Miller', - email: 'matthewjohnmiller2020@gmail.com', - linkedIn: 'https://www.linkedin.com/in/matthew-miller2020/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Baltimore', 'Oklahoma City'], - }, - { - company: 'Iridium Satellite LLC', - name: 'Lyam Hunt', - email: 'lyamnhunt@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lyamhunt/', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Software Developer II', - industry: 'Telecommunications', - cities: ['Scottsdale', 'Irvine'], - }, - { - company: 'IronNet Cybersecurity', - name: 'Daniel Stein', - email: 'danlikesbikes@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dangineer/', - campus: 'LA', - cohort: '33', - jobTitle: 'Senior UI/UX Developer', - industry: 'Computer and Network Security', - cities: ['London', 'Arlington', 'Tampa'], - }, - { - company: 'ISAT Total Support', - name: 'Anthony Le', - email: 'anthonyle910@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/anthonyle910/', - campus: 'LA / WCRI', - cohort: '58', - jobTitle: 'Full Stack Developer', - industry: 'Other', - cities: ['Reno', 'Tokyo'], - }, - { - company: 'Isobar', - name: 'Anthony Torrero', - email: 'Anthonyduarteee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/anthony-duarte-4b8798159/', - campus: 'LA', - cohort: '41', - jobTitle: 'Frontend Developer', - industry: 'Creative Agency', - cities: ['Colorado Springs', 'Kansas City'], - }, - { - company: 'Isobar', - name: 'James Gary', - email: 'jim@jamesgary.com', - linkedIn: 'https://www.linkedin.com/in/james-gary/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Senior Front End Developer', - industry: 'Media', - cities: ['Las Vegas'], - }, - { - company: 'iStrategyLabs', - name: 'Brittany Miltenberger', - email: 'brittany.miltenberger@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brittanywm/', - campus: 'LA', - cohort: '23', - jobTitle: 'Senior Web Developer', - industry: '', - cities: ['Raleigh', 'Omaha', 'St. Louis'], - }, - { - company: 'Itential', - name: 'Chao Zhong Yu', - email: 'ChaoY91@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/czyu/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Kansas City', 'Nashville'], - }, - { - company: 'Ivy Energy', - name: 'Gavin Crews', - email: 'Gcrews1894@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gavincrews/', - campus: 'LA', - cohort: '39', - jobTitle: 'Frontend Engineer', - industry: 'Solar', - cities: ['Madison', 'Mesa', 'Austin', 'Fresno'], - }, - { - company: 'Ivy Energy', - name: 'Nicolas Pita', - email: 'pitanicolase@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nicolaspita/', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Developer', - industry: 'Clean Energy', - cities: ['Sรฃo Paulo'], - }, - { - company: 'Jam City', - name: 'Tony Ito-Cole', - email: 'tonyitocole@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tony-ito-cole/', - campus: 'LA', - cohort: '34', - jobTitle: 'Platform Engineer', - industry: 'Mobile Gaming', - cities: ['Lubbock', 'Sacramento'], - }, - { - company: 'Janus Health', - name: 'Benjamin Michareune', - email: 'ben.michareune@Gmail.com', - linkedIn: 'https://www.linkedin.com/in/benmichareune', - campus: 'FTRI / CTRI', - cohort: '7', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['Sacramento'], - }, - { - company: 'Janus Healthcare', - name: 'Simon Lee', - email: 'simonlee1125@gmail.com', - linkedIn: 'https://www.linkedin.com/in/simonhlee/', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Software Engineer II', - industry: 'Healthcare', - cities: ['Jacksonville', 'Aurora', 'Las Vegas'], - }, - { - company: 'Jasper (AI)', - name: 'Marcellies Pettiford', - email: 'marcellies@pettifords.xyz', - linkedIn: 'https://www.linkedin.com/in/marcellies-pettiford/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Software Engineer II', - industry: 'Software / Tech', - cities: ['Lincoln', 'Beijing', 'Mexico City', 'San Diego'], - }, - { - company: 'Jogg', - name: 'Alex Kolb', - email: 'akolb981@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexanderjkolb/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Detroit', 'Gilbert', 'Colorado Springs', 'Fresno'], - }, - { - company: 'JP Morgan', - name: 'jonathan k coe', - email: 'jon.coe@codesmith.io', - linkedIn: 'https://www.linkedin.com/in/jonathan-k-coe/', - campus: 'NYC', - cohort: '4', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Chandler', 'Corpus Christi'], - }, - { - company: 'JP Morgan', - name: 'Jimmy Tran', - email: 'jvtran48@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jimmytran48/', - campus: 'NYC / ECRI', - cohort: '40', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: ['Arlington', 'Atlanta', 'Charlotte'], - }, - { - company: 'JP Morgan / Chase', - name: 'Wayne Wilcox', - email: 'wilcox_wayne@hotmail.com', - linkedIn: 'https://www.linkedin.com/in/wayne-wilcox/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Junior Developer Associate', - industry: 'Fintech', - cities: ['Seattle', 'Baltimore', 'Virginia Beach'], - }, - { - company: 'JP Morgan Chase', - name: 'David Behmoaras', - email: 'dbehmoaras@gmail.com', - linkedIn: 'https://www.linkedin.com/in/david-behmoaras/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Tampa', 'El Paso', 'Riverside', 'Austin'], - }, - { - company: 'JP Morgan Chase', - name: 'Howard Na', - email: 'howardna317@gmail.com', - linkedIn: 'https://www.linkedin.com/in/howard-na-jr/', - campus: 'LA', - cohort: '26', - jobTitle: 'Software Engineer', - industry: 'Media', - cities: ['Indianapolis', 'Buffalo', 'Los Angeles', 'Orlando'], - }, - { - company: 'JP Morgan Chase', - name: 'Stewart Elmore', - email: 'stewart.elmore@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stewart-elmore/', - campus: 'NYC / ECRI', - cohort: '31', - jobTitle: 'Associate Software Engineer', - industry: 'Fintech', - cities: ['Kansas City', 'Durham', 'New Orleans'], - }, - { - company: 'JP Morgan Chase & Co', - name: 'Parker Steinberg', - email: 'parker.s52@gmail.com', - linkedIn: 'https://www.linkedin.com/in/parker-steinberg/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Omaha'], - }, - { - company: 'JP Morgan Chase & Co.', - name: 'Jimmy Chen', - email: 'jimmychen12249@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jimchn/', - campus: 'NYC', - cohort: '17', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Washington'], - }, - { - company: 'JP Morgan Chase & Co.', - name: 'Mike Oโ€™Donnell', - email: 'michaelodonnell18@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michaelodonnell18', - campus: 'NYC', - cohort: '28', - jobTitle: 'Full Stack Developer', - industry: 'Banking', - cities: ['Reno', 'Portland'], - }, - { - company: 'JPMChase', - name: 'Adam Wilson', - email: 'aswilson87@gmail.com', - linkedIn: 'https://www.linkedin.com/in/aswilson87/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Associate Engineer', - industry: 'Finance', - cities: ['Washington', 'Mexico City'], - }, - { - company: 'JPMorgan', - name: 'Winford Lin', - email: 'linwinford@gmail.com', - linkedIn: 'https://www.linkedin.com/in/winfordlin/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer II', - industry: 'Fintech', - cities: ['Tokyo', 'Aurora', 'Cincinnati', 'Chicago'], - }, - { - company: 'JPMorgan Chase', - name: 'Adam White', - email: 'adamkarnwhite@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adam-karn-white', - campus: 'NYC / ECRI', - cohort: '31', - jobTitle: 'Senior Associate Software Engineer', - industry: 'Fintech', - cities: ['Anchorage', 'Toronto'], - }, - { - company: 'JPMorgan Chase', - name: 'Adrian Uesugui', - email: 'auesugui@gmail.com', - linkedIn: 'https://www.linkedin.com/in/auesugui/', - campus: 'LA', - cohort: '46', - jobTitle: 'Associate Software Engineer', - industry: 'Fintech', - cities: ['Phoenix', 'San Diego', 'Charlotte'], - }, - { - company: 'JPMorgan Chase', - name: 'John Donovan ', - email: 'jodonovan845@gmail.com', - linkedIn: 'https://www.linkedin.com/in/john-d-donovan', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Software Engineer - Associate II', - industry: 'Software / Tech', - cities: ['Philadelphia', 'Oakland', 'Dallas', 'Durham'], - }, - { - company: 'JPMorgan Chase & Co', - name: 'Jo Huang', - email: 'johuangx@gmail.com', - linkedIn: 'https://www.linkedin.com/in/johuangx/', - campus: 'NYOI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Berlin'], - }, - { - company: 'JPMorgan Chase & Co.', - name: 'Stanley Huang', - email: 'iamstanleyhuang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stanleyhuang16/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Tulsa', 'Boston', 'New Orleans', 'Phoenix'], - }, - { - company: 'JPMorgan Chase & Co.', - name: 'Terence Petersen', - email: 'robo.terence@gmail.com', - linkedIn: 'https://www.linkedin.com/in/terence-petersen/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Associate Software Engineer', - industry: 'Merchant Services', - cities: ['Paris', 'Miami', 'Detroit'], - }, - { - company: 'Juniper Behavioral Health', - name: 'Kelvin Cuesta', - email: 'kelvinscuesta@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kelvinscuesta/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['Dallas'], - }, - { - company: 'Justworks', - name: 'Shelby Neuman', - email: 'shelbydneuman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shelbyneuman/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Indianapolis', 'Virginia Beach', 'San Diego'], - }, - { - company: 'JustWorks Labs', - name: 'Sophia Huttner', - email: 'sophjean@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sophia-huttner/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Frontend Software Engineer', - industry: 'HR Suite', - cities: ['Anaheim', 'San Antonio', 'Irving'], - }, - { - company: 'Karr Barth Administrators', - name: 'Loralyn Milcarek', - email: 'loralyn.milcarek@gmail.com', - linkedIn: 'https://www.linkedin.com/in/loralyn-milcarek/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Developer', - industry: 'Other', - cities: ['Aurora'], - }, - { - company: 'Keller Williams Realty, Inc', - name: 'Brent Speight', - email: 'brentjosephspeight@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brent-speight/', - campus: 'LA', - cohort: '44', - jobTitle: 'Software Engineer', - industry: 'Realty', - cities: ['Sรฃo Paulo', 'Irvine'], - }, - { - company: 'Kelley Blue Book (Cox Automotive)', - name: 'Ryan Bender', - email: 'rdbender@me.com', - linkedIn: 'https://www.linkedin.com/in/rdbender', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer I', - industry: 'Automotive', - cities: ['Mesa'], - }, - { - company: 'Kevel', - name: 'Adam Joesten', - email: 'adamjoesten@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adamjoesten/', - campus: 'LA', - cohort: '40', - jobTitle: 'Senior Software Engineer (SDE II)', - industry: 'Adtech', - cities: ['San Antonio'], - }, - { - company: 'Key Bank (Laurel Road)', - name: 'Eric Pham', - email: 'ericpham36@gmail.com', - linkedIn: 'https://www.linkedin.com/in/epstylesoflife/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Senior Full Stack Engineer', - industry: 'Fintech', - cities: ['Los Angeles'], - }, - { - company: 'Kibanx', - name: 'Celeste Knopf', - email: 'celesteknopf@gmail.com', - linkedIn: 'https://www.linkedin.com/in/celesteknopf/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Front End Engineer', - industry: 'Real Estate', - cities: ['Detroit'], - }, - { - company: 'Kin + Carta', - name: 'Eric Olaya', - email: 'ericolaya@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eric-olaya/', - campus: 'FTRI', - cohort: '3', - jobTitle: 'Software Engineer', - industry: 'Tech Consulting', - cities: ['Lexington', 'Winston-Salem'], - }, - { - company: 'Kindo', - name: 'Hannah Bernstein', - email: 'hbern00@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bernstein-hannah/', - campus: 'LA / WCRI', - cohort: '53', - jobTitle: 'Software Engineer', - industry: 'Artificial Intelligence', - cities: ['Albuquerque'], - }, - { - company: 'Kitman Labs', - name: 'Gregory Levine-Rozenvayn', - email: 'Grisha617@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gregory-levine-rozenvayn', - campus: 'NYC', - cohort: '24', - jobTitle: 'Senior Software Engineer, Frontend', - industry: 'Sports data science', - cities: ['St. Louis', 'Long Beach'], - }, - { - company: 'Klarna', - name: 'Natalie Vick', - email: 'vicknatalie@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vicknatalie/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Senior Frontend Engineer', - industry: 'Ecommerce', - cities: ['Atlanta'], - }, - { - company: 'Klaviyo', - name: 'Amy Chen', - email: 'aechen46@gmail.com', - linkedIn: 'https://www.linkedin.com/in/amyechen/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Marketing Technology', - cities: ['Buffalo'], - }, - { - company: 'Klaviyo', - name: 'Elinor Weissberg', - email: 'elinorthw@gmail.com', - linkedIn: 'https://www.linkedin.com/in/elinorweissberg/', - campus: 'NYOI', - cohort: '5', - jobTitle: 'Software Engineer II', - industry: 'Marketing/Advertising', - cities: ['Chicago'], - }, - { - company: 'Knotel', - name: 'Rocky Liao', - email: 'rliao3613@gmail.com', - linkedIn: 'https://linkedin.com/in/seemsrocky', - campus: 'NYC', - cohort: '12', - jobTitle: 'Software engineer', - industry: 'Real Estate', - cities: ['Chesapeake', 'Toledo', 'Aurora', 'Las Vegas'], - }, - { - company: 'Knowable', - name: 'Alex Sanhueza', - email: 'alexrsanhueza@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alex-sanhueza/', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Development Engineer II (Front end)', - industry: 'Legal Services', - cities: ['Miami', 'Colorado Springs', 'Fort Worth', 'Minneapolis'], - }, - { - company: 'Komodo Health', - name: 'Ju Kim', - email: 'juhyuns98@gmail.com', - linkedIn: '', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Engineer, Applications', - industry: 'Healthcare', - cities: ['Phoenix', 'Austin'], - }, - { - company: 'Konami Gaming', - name: 'Aidan Noble-Goodman', - email: 'anoblegoodman@gmail.com', - linkedIn: 'www.linkedin.com/anoblegoodman', - campus: 'LA', - cohort: '28', - jobTitle: 'Software Engineer II', - industry: 'Gaming/casino management software', - cities: ['Chicago', 'Paris', 'Lexington', 'Mexico City'], - }, - { - company: 'Kroger', - name: 'John Wong', - email: 'johnwong4150@gmail.com', - linkedIn: 'https://www.linkedin.com/in/john-wong-fongching/', - campus: 'LA / WCRI', - cohort: '43', - jobTitle: 'Web Platform Engineer', - industry: 'Retail', - cities: ['Beijing', 'Honolulu'], - }, - { - company: 'Kroger', - name: 'Jason Seidler', - email: 'jsonseidler@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jason-seidler/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Senior Front End Developer', - industry: 'Retail', - cities: ['Newark'], - }, - { - company: 'Kroger', - name: 'Kevin MacCoy', - email: 'kmaccoy@fau.edu', - linkedIn: 'https://www.linkedin.com/in/kevin-maccoy/', - campus: 'FTRI', - cohort: '1', - jobTitle: 'Backend Engineer', - industry: 'Other', - cities: ['Omaha', 'Buffalo', 'Garland', 'Anchorage'], - }, - { - company: 'Kroger', - name: 'Elise McConnell', - email: 'elisemcconnell11@gmail.com', - linkedIn: 'www.linkedin.com/in/elisemcconnell', - campus: 'FTRI / CTRI', - cohort: '12', - jobTitle: 'Software Engineer', - industry: 'Retail', - cities: ['Austin', 'Louisville', 'Jacksonville', 'Lubbock'], - }, - { - company: 'Kryptowire', - name: 'Michael Ross', - email: 'michaelalross@gmail.com', - linkedIn: 'https://linkedin.com/in/michaelalross', - campus: 'LA', - cohort: '45', - jobTitle: 'Software Engineer II', - industry: 'DevSecOps', - cities: ['Greensboro'], - }, - { - company: 'KyckGlobal', - name: 'Joseph Lee', - email: 'josephemlee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/josephjslee/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Cleveland'], - }, - { - company: 'Kyte Dynamics, Inc.', - name: 'Lawrence Yeh', - email: 'lawyeh391@gmail.com', - linkedIn: 'linkedin.com/in/lawyeh', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Cleveland', 'Sรฃo Paulo', 'Philadelphia', 'New York'], - }, - { - company: 'LA County', - name: 'Vu Duong', - email: 'vthanhd@gmail.com', - linkedIn: 'www.linkedin.com/in/vu-duong', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Application Developer II', - industry: 'Government', - cities: ['Cleveland', 'Louisville', 'Chicago'], - }, - { - company: 'LaaSie.ai', - name: 'Tyler Sayles', - email: 'saylestyler@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tylersayles/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Full stack Engineer', - industry: 'Marketing', - cities: ['Oakland'], - }, - { - company: 'Lab49', - name: 'Eric Tacher', - email: 'erictacher@gmail.com', - linkedIn: 'https://www.linkedin.com/in/erictacher/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Web UI Engineer', - industry: 'Fintech Consulting', - cities: ['Mesa', 'Boston'], - }, - { - company: 'Lasso Marketing', - name: 'Andy Tsou', - email: 'tsou.andy@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andy-tsou/', - campus: 'LA', - cohort: '45', - jobTitle: 'Integration Engineer', - industry: 'Health Care Marketing', - cities: ['Greensboro', 'Sacramento', 'Indianapolis'], - }, - { - company: 'LastPass', - name: 'E Kathuria', - email: 'e@kathuria.dev', - linkedIn: 'https://www.linkedin.com/in/ekathuria', - campus: 'NYC', - cohort: '32', - jobTitle: 'Front End Engineer', - industry: 'Software / Tech', - cities: ['Oklahoma City', 'Henderson', 'Bakersfield'], - }, - { - company: 'Lattitude', - name: 'Carolyn Zheng', - email: 'ruxinzheng01@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ruxinzhengswe/', - campus: 'LA / WCRI', - cohort: '57', - jobTitle: 'Software Engineer', - industry: 'Marketing/Advertising', - cities: ['Cleveland'], - }, - { - company: 'Launch Darkly', - name: 'Samuel Kim', - email: 'samuyyy@gmail.com', - linkedIn: 'https://www.linkedin.com/in/samuy/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Software Engineer (Backend)', - industry: 'Developer Tools', - cities: ['Jacksonville', 'Glendale', 'Tampa'], - }, - { - company: 'Lawmatics', - name: 'Omar Rana', - email: 'omar_rana93@hotmail.com', - linkedIn: 'https://www.linkedin.com/in/orana1/', - campus: 'LA', - cohort: '45', - jobTitle: 'Full Stack Engineer', - industry: 'CRM for law firms', - cities: ['Paris', 'Chesapeake'], - }, - { - company: 'Leadpages', - name: 'Evan McNeely', - email: 'evanmcneely@me.com', - linkedIn: 'https://www.linkedin.com/in/evanmcneely/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Software Engineer II', - industry: 'Marketing', - cities: ['Fort Worth'], - }, - { - company: 'Leaf Group (Society6)', - name: 'Oliver Roldan', - email: 'oproldan01@gmail.com', - linkedIn: '', - campus: 'LA / WCRI', - cohort: '40', - jobTitle: 'Frontend Engineer', - industry: 'Other', - cities: ['Detroit'], - }, - { - company: 'LeaseLock', - name: 'Kara Chisholm', - email: 'kkchisholm@gmail.com', - linkedIn: 'https://www.linkedin.com/in/karachisholm/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: ['Stockton', 'Fresno', 'Oklahoma City', 'Chandler'], - }, - { - company: 'LedgerX', - name: 'Abaas Khorrami', - email: 'abaas.khorrami@gmail.com', - linkedIn: 'https://www.linkedin.com/in/abaas-khorrami/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Senior Frontend Engineer', - industry: 'Fintech', - cities: ['Long Beach', 'Berlin', 'Sydney'], - }, - { - company: 'LegacyScape', - name: 'Cassidy Johnson', - email: 'cassidyrose56@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cassidy-r-johnson/', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Irving', 'Paris', 'Omaha', 'Fort Wayne'], - }, - { - company: 'LegalZoom', - name: 'Henry Park', - email: 'codedenma@gmail.com', - linkedIn: 'https://www.linkedin.com/in/henrytpark/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Software Engineer II, Product Experiences', - industry: 'Other', - cities: ['Saint Paul', 'Irving', 'El Paso'], - }, - { - company: 'Lendbuzz Inc.', - name: 'Quoc Do', - email: 'dlaquoc1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dlaquoc/', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Full Stack Engineer Co-op (Internship)', - industry: 'Automotive', - cities: ['Corpus Christi'], - }, - { - company: 'Lessen Inc', - name: 'Davette Bryan', - email: 'davettejones11@gmail.com', - linkedIn: 'https://www.linkedin.com/in/davette-bryan/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Jr. Software Engineer', - industry: 'Real Estate', - cities: ['Houston', 'Atlanta'], - }, - { - company: 'Lever', - name: 'Aiden Blinn', - email: 'apblinn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/aidenblinn/', - campus: 'FTRI', - cohort: '7', - jobTitle: 'Integrations Engineer', - industry: 'IT Services', - cities: ['Tucson', 'Lexington', 'Mumbai'], - }, - { - company: 'Lever', - name: 'Jae Lee', - email: 'jaelee213@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jaelee213/', - campus: 'LA', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Recruiting', - cities: ['Gilbert', 'Louisville', 'Sydney'], - }, - { - company: 'Lever', - name: 'Sophia Sam', - email: 'sophia.sam96@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sophia-sam', - campus: 'FTRI', - cohort: '7', - jobTitle: 'Software Engineer II', - industry: 'Software / Tech', - cities: ['Louisville', 'Phoenix', 'Washington', 'Kansas City'], - }, - { - company: 'Lexis Nexis', - name: 'Danny Martinez', - email: 'codesmith@jdanielmartinez.com', - linkedIn: 'https://www.linkedin.com/in/jdanielmartinez/', - campus: 'LA', - cohort: '42', - jobTitle: 'GraphQL Full Stack Developer', - industry: 'Paralegal', - cities: ['Portland', 'Sacramento', 'El Paso', 'Chandler'], - }, - { - company: 'LexisNexis', - name: 'Graham Albachten', - email: 'albachteng@gmail.com', - linkedIn: 'https://www.linkedin.com/in/graham-albachten-00162a52/', - campus: 'FTRI', - cohort: '1', - jobTitle: 'GraphQL Full Stack Developer', - industry: 'Legal', - cities: ['Chula Vista', 'Philadelphia', 'Norfolk', 'Charlotte'], - }, - { - company: 'Lexmark', - name: 'Luke Roberts', - email: 'luke.roberts089@gmail.com', - linkedIn: 'https://www.linkedin.com/in/luke-roberts0/', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Fort Wayne', 'El Paso'], - }, - { - company: 'Liberty Maritime', - name: 'Garrett Layden', - email: 'garlayden@gmail.com', - linkedIn: 'https://linkedin.com/in/garrett-layden', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Full Stack Developer', - industry: 'Other', - cities: ['San Antonio', 'Arlington', 'Memphis'], - }, - { - company: 'Liberty Mutual', - name: 'Bryan Kim', - email: 'bkim0826@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bkimmm/', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: ['Los Angeles', 'Buffalo', 'Houston', 'Riverside'], - }, - { - company: 'Liberty Mutual', - name: 'Cristian De Los Rios', - email: 'Cris2595@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cristian-dlr/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: ['Newark', 'Buffalo', 'Virginia Beach'], - }, - { - company: 'Liberty Mutual', - name: 'Patrick Sullivan', - email: 'patrick@jsullivan.org', - linkedIn: 'https://www.linkedin.com/in/patrick-j-m-sullivan/', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: ['Oakland', 'Washington', 'Omaha'], - }, - { - company: 'Liberty Mutual', - name: 'Robert Tipton', - email: 'robbytiptontol@gmail.com', - linkedIn: 'https://www.linkedin.com/in/robert-tipton/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: ['Atlanta'], - }, - { - company: 'Liberty Mutual', - name: 'Tyler Jameson Martinez', - email: 'tm6002005@gmail.com', - linkedIn: 'https://www.linkedin.com/mwlite/in/tylerjamesonmartinez', - campus: 'LA', - cohort: '43', - jobTitle: 'Software engineer', - industry: 'Insurance', - cities: ['Garland', 'Wichita'], - }, - { - company: 'LifeOmic', - name: 'Chloe Courtois', - email: 'crc.courtois@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chloe-courtois-3337a210b/', - campus: 'FTRI', - cohort: '7', - jobTitle: 'Associate Software Engineer', - industry: 'Healthcare', - cities: ['Pittsburgh'], - }, - { - company: 'Limble CMMS', - name: 'Josh Merrell', - email: 'joshmerrell.us@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joshmerrell/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Software Developer III', - industry: 'Software / Tech', - cities: ['Detroit'], - }, - { - company: 'Linguabee', - name: 'Connor Gillis', - email: 'connoregillis@gmail.com', - linkedIn: 'https://www.linkedin.com/in/connor-gillis/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Front End Software Engineer', - industry: 'Interpreting', - cities: ['Bakersfield'], - }, - { - company: 'LinkedIn', - name: 'Ethan Yeh', - email: 'Ethanhwyeh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ethanhwyeh/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Full Stack Software Engineer', - industry: 'Professional Networking', - cities: ['Fresno', 'Henderson', 'Mumbai', 'Honolulu'], - }, - { - company: 'LinkedIn', - name: 'Douglas Yao', - email: 'doug.yao@gmail.com', - linkedIn: 'https://www.linkedin.com/in/douglas-yao/', - campus: 'FTRI / CTRI', - cohort: '16', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Sacramento', 'Irvine', 'Oakland', 'San Jose'], - }, - { - company: 'Linus Health', - name: 'Tommy Song', - email: 'Tommysong123@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Health tech', - cities: ['New York', 'Oklahoma City', 'Fort Worth', 'Lubbock'], - }, - { - company: 'LiquidPixels', - name: 'Christian Looff', - email: 'ctnguy10@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christian-looff/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['San Francisco'], - }, - { - company: 'Literably', - name: 'Tiffany Wong', - email: 'Wongt1227@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tiffanywong149', - campus: 'NYC / ECRI', - cohort: '42', - jobTitle: 'Junior Software Engineer', - industry: 'Education/Edtech', - cities: ['Corpus Christi', 'New Orleans'], - }, - { - company: 'Little Cinema', - name: 'Kenny Ma', - email: 'Kennyjjma@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '15', - jobTitle: 'Front End Engineer', - industry: 'Entertainment', - cities: ['Honolulu', 'Toledo', 'Austin'], - }, - { - company: 'Littlebits', - name: 'Jinsung Park', - email: 'js.lia.park@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jsliapark/', - campus: 'NYC', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Beauty/Cosmetic', - cities: ['Berlin', 'Los Angeles', 'Newark'], - }, - { - company: 'Live Nation', - name: 'Colin Gibson', - email: 'colingibs@gmail.com', - linkedIn: 'https://www.linkedin.com/in/colin--gibson/', - campus: 'LA', - cohort: '44', - jobTitle: 'Software Development Engineer', - industry: 'Real Estate', - cities: ['Plano', 'Paris', 'Washington'], - }, - { - company: 'Lively Video', - name: 'Mark Miller', - email: 'markmmiller825@gmail.com', - linkedIn: 'https://www.linkedin.com/in/markmanuelmiller/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Senior Software Engineer', - industry: 'Entertainment/education', - cities: ['Corpus Christi'], - }, - { - company: 'LivePerson', - name: 'Geoffrey Lin', - email: 'geoffrey.s.lin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/geoff-lin/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'Computer Software', - cities: ['Reno', 'St. Petersburg', 'Miami', 'Tampa'], - }, - { - company: 'LivePerson', - name: 'Taihyun (Ray) Lee', - email: 'taihyun.ray.lee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/taihyun-ray-lee/', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software Development Engineer', - industry: 'Software (SAAS)', - cities: ['Arlington', 'Chandler'], - }, - { - company: 'LivePerson', - name: 'Taihyun Lee', - email: 'th9061@gmail.com', - linkedIn: 'https://www.linkedin.com/in/taihyun-ray-lee', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software Development Engineer', - industry: 'Entertainment', - cities: ['Henderson', 'Miami'], - }, - { - company: 'LogicMonitor', - name: 'Jessica Vaughan', - email: 'jessicavaughan820@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jessicavaughan820/', - campus: 'LA', - cohort: '30', - jobTitle: 'frontend developer', - industry: 'SaaS', - cities: ['Tampa'], - }, - { - company: 'Lokavant', - name: 'Eric Peng', - email: 'tzerpeng@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eric-peng-jojo/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: 'Information Technology & Services', - cities: ['Buffalo', 'Irving'], - }, - { - company: 'Lonesdale Invest', - name: 'Coral Fussman', - email: 'coralfussman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/coral-fussman-21721538/', - campus: 'FTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Madison'], - }, - { - company: 'Longtail Studios', - name: 'Daniel Steinbrook', - email: 'steinbrookdaniel@gmail.com', - linkedIn: 'https://www.linkedin.com/in/daniel-steinbrook/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Developer - AI Models Integration', - industry: 'Software / Tech', - cities: ['San Francisco', 'Phoenix', 'Plano', 'Chandler'], - }, - { - company: 'Loop', - name: 'Olivia Hodel', - email: 'ohodel16@gmail.com', - linkedIn: 'https://www.linkedin.com/in/olivia-hodel/', - campus: 'NYC / ECRI', - cohort: '39', - jobTitle: 'Associate Software Engineer', - industry: 'Other', - cities: ['Mumbai', 'Tulsa'], - }, - { - company: 'Lord, Abbett & Co. LLC', - name: 'Vince Chin', - email: 'vincech@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vincech/', - campus: 'PTRI', - cohort: '5', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['London'], - }, - { - company: 'Los Alamos National Laboratory', - name: 'James Howat', - email: 'james@howat.dev', - linkedIn: 'LinkedIn.com/in/jamesbhowat', - campus: 'FTRI / CTRI', - cohort: '12', - jobTitle: 'Software Developer 2', - industry: 'Security', - cities: ['St. Louis'], - }, - { - company: 'Lotic AI', - name: 'Adam Blackwell', - email: 'blackwell.ada@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adam-blackwell-85918595/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Software Engineer', - industry: 'Mental Health', - cities: ['Chesapeake'], - }, - { - company: 'Low Associates', - name: 'William Robson', - email: 'will.robson19@gmail.com', - linkedIn: 'https://www.linkedin.com/in/william-k-robson/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Full Stack Developer', - industry: 'Software / Tech', - cities: ['Indianapolis', 'New Orleans'], - }, - { - company: 'Lowes', - name: 'Joshuah Edwards', - email: 'joshuah.edwards@proton.me', - linkedIn: 'linkedin.com/in/joshuah-edwards/', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'Retail', - cities: ['Tucson', 'Norfolk', 'Mumbai', 'Wichita'], - }, - { - company: 'Lumi AI', - name: 'Ryan Hastings', - email: 'rhaasti@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rhaasti/', - campus: 'NYOI', - cohort: '4', - jobTitle: 'Front-End Engineer (six month contract-to-hire)', - industry: 'Artificial Intelligence/Machine Learning', - cities: ['Jersey City'], - }, - { - company: 'Lumifi', - name: 'Ryan Gause', - email: 'Ryan.g.gause.3@gmail.com', - linkedIn: 'LinkedIn.com/in/ryangause', - campus: 'PTRI', - cohort: '9', - jobTitle: 'Software Developer II', - industry: 'Security', - cities: ['New York'], - }, - { - company: 'Lunchbox', - name: 'Judy Tan', - email: 'judytan86@gmail.com', - linkedIn: 'https://www.linkedin.com/in/judy-tan93/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Frontend Engineer', - industry: 'Food Industry', - cities: ['Tucson', 'Fort Wayne', 'Corpus Christi'], - }, - { - company: 'LVRG', - name: 'Gary Slootskiy', - email: 'garyslootskiy@gmail.com', - linkedIn: 'https://linkedin.com/in/garyslootskiy', - campus: 'NYC', - cohort: '21', - jobTitle: 'Senior Software Engineer', - industry: 'Supply Chain Management', - cities: ['Nashville'], - }, - { - company: 'Lytx', - name: 'Miller Johnston', - email: 'miller.johnston17@gmail.com', - linkedIn: 'linkedin.com/in/miller-johnston', - campus: 'FTRI / CTRI', - cohort: '6', - jobTitle: 'Software Engineer II', - industry: 'Automotive', - cities: ['New Orleans', 'New York'], - }, - { - company: 'M Science', - name: 'Celena Chan', - email: 'celenachan@gmail.com', - linkedIn: 'https://www.linkedin.com/in/celenachan', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Columbus'], - }, - { - company: 'Madison Logic', - name: 'Richie Edwards', - email: 'richie00edwards@gmail.com', - linkedIn: 'https://www.linkedin.com/in/richieedwards/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Full Stack Engineer', - industry: 'Marketing', - cities: ['Baltimore', 'Beijing', 'Dallas', 'Tokyo'], - }, - { - company: 'Maestro', - name: 'Jacob Banks', - email: 'jacobjeffreybanks@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jacobjbanks/', - campus: 'LA', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Media/Entertainment', - cities: ['Wichita'], - }, - { - company: 'Magic Leap', - name: 'Randy Reyes', - email: 'rqreyes@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rqreyes/', - campus: 'LA', - cohort: '31', - jobTitle: 'Front-End Software Engineer', - industry: 'Augmented Reality', - cities: ['Anchorage', 'Pittsburgh', 'Bakersfield', 'Durham'], - }, - { - company: 'MagMutual', - name: 'Mark Yencheske', - email: 'markyencheske@gmail.com', - linkedIn: 'https://www.linkedin.com/in/markyencheske/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: ['Portland'], - }, - { - company: 'Magnite', - name: 'John Madrigal', - email: 'johnmadrigal17@gmail.com', - linkedIn: 'https://www.linkedin.com/in/john-r-madrigal/', - campus: 'LA', - cohort: '37', - jobTitle: 'Front End Software Development Engineer', - industry: 'Adtech', - cities: ['New York', 'Albuquerque', 'Berlin'], - }, - { - company: 'Mailchimp/Intuit', - name: 'Albert Han', - email: 'albert.h1231@gmail.com', - linkedIn: 'https://www.linkedin.com/in/albert-han1', - campus: 'LA', - cohort: '47', - jobTitle: 'SWE II', - industry: 'Marketing/financial management', - cities: ['Chicago', 'Newark', 'Plano'], - }, - { - company: 'Mailchimp/Intuit', - name: 'Gerry Bong', - email: 'ggbong734@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gerry-bong/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Houston', 'Fort Wayne', 'Miami', 'San Francisco'], - }, - { - company: 'Maisonette', - name: 'Heidi Kim', - email: 'heidiyoora@gmail.com', - linkedIn: 'https://www.linkedin.com/in/heidiykim/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: 'E-commerce', - cities: ['Tokyo', 'London', 'Jersey City', 'Pittsburgh'], - }, - { - company: 'Major League Baseball', - name: 'Steven Rosas', - email: 'srosas20@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rosassteven/', - campus: 'NYC', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Sports', - cities: ['Honolulu'], - }, - { - company: 'MakerBot', - name: 'Anthony R Toreson', - email: 'anthony.toreson@gmail.com', - linkedIn: 'https://www.linkedin.com/in/atoreson/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Senior Software Engineer', - industry: 'Hardware manufacturer (3d printers)', - cities: ['New Orleans', 'Lubbock', 'Irving'], - }, - { - company: 'ManageGo', - name: 'Bo Peng', - email: 'bopeng95@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bopeng95/', - campus: 'NYC', - cohort: '10', - jobTitle: 'Software Developer', - industry: 'Real Estate', - cities: ['Cleveland', 'Raleigh', 'Stockton', 'Glendale'], - }, - { - company: 'Manatee', - name: 'Raivyno Sutrisno', - email: 'yessysutter@gmail.com', - linkedIn: 'https://www.linkedin.com/in/raivyno-sutrisno/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['Cleveland', 'Bakersfield', 'Saint Paul'], - }, - { - company: 'Mantium', - name: 'Steve Hong', - email: 'swe.stevehong@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stevehong-swe/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Artificial Intelligence', - cities: ['Aurora'], - }, - { - company: 'MANTL', - name: 'Lourent Flores', - email: 'lourent.flores@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lourent-flores/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Full stack Engineer', - industry: 'Fintech', - cities: ['Aurora', 'Los Angeles', 'Chicago'], - }, - { - company: 'MANTL', - name: 'TJ Wetmore', - email: 'Thomas.j.wetmore@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tjwetmore/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Irvine', 'Charlotte'], - }, - { - company: 'Mantra Health', - name: 'Konrad Kopko', - email: 'konradkopko1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/konradkopko/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'HealthTech', - cities: ['Louisville', 'Colorado Springs'], - }, - { - company: 'Maple.Finance', - name: 'Thomas Harper', - email: 'tommyrharper@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thomas-robert-harper/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Senior Software Engineer', - industry: 'Blockchain/Web3', - cities: ['Sacramento', 'Stockton'], - }, - { - company: 'Mariana Tek', - name: 'Owen Eldridge', - email: 'oweneldridge7@gmail.com', - linkedIn: 'https://www.LinkedIn.com/in/owen-eldridge', - campus: 'NYC', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Fitness Center Saas', - cities: ['Oklahoma City', 'San Diego', 'Jacksonville', 'Newark'], - }, - { - company: 'MarineSitu', - name: 'Emily Paine', - email: 'erpaine@gmail.com', - linkedIn: 'https://www.linkedin.com/in/emily-paine1/', - campus: 'FTRI / CTRI', - cohort: '12', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Houston', 'Winston-Salem', 'Atlanta'], - }, - { - company: 'Mark43', - name: 'Kadir Gundogdu', - email: 'kadirgund@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kadirgund/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer', - industry: 'Law Enforcement', - cities: ['Winston-Salem', 'Tampa'], - }, - { - company: 'Mark43', - name: 'Sophie Nye', - email: 'sophie.nye@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '12', - jobTitle: 'Software engineer', - industry: 'Itโ€™s software for first responders, not sure what industry that is', - cities: ['Greensboro', 'Mesa', 'Winston-Salem'], - }, - { - company: 'Marsh Mclennan', - name: 'Mina Koo', - email: 'minalunakoo@gmail.com', - linkedIn: 'linkedin.com/in/minakoo', - campus: 'NYC / ECRI', - cohort: '30', - jobTitle: 'Developer', - industry: 'Insurance', - cities: ['Raleigh', 'Toledo', 'Phoenix'], - }, - { - company: 'MAS Medical Staffing', - name: 'Jeffrey Schrock', - email: 'rhythmmagi@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jmschrock/', - campus: 'NYC', - cohort: '4', - jobTitle: 'React Software Engineer', - industry: 'FinTech', - cities: ['Louisville'], - }, - { - company: 'MassMutual', - name: 'Ausar English', - email: 'ausareenglish@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ausarenglish/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Fullstack Developer', - industry: 'Financial Services/Insurance', - cities: ['London'], - }, - { - company: 'MassMutual', - name: 'Bryanna DeJesus', - email: 'bryanna.dejesus@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bryannadejesus/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Full Stack Developer', - industry: 'Insurance', - cities: ['San Francisco'], - }, - { - company: 'MasterCard', - name: 'Abigail Gerig', - email: 'abigail.gerig@gmail.com', - linkedIn: 'https://www.linkedin.com/in/abigail-gerig/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: ['Omaha', 'Tokyo', 'Paris', 'North Las Vegas'], - }, - { - company: 'Mastercard', - name: 'Edwin Lin', - email: 'Edwinlim@gmail.com', - linkedIn: 'https://www.linkedin.com/in/edwinlin/', - campus: 'NYC', - cohort: '14', - jobTitle: 'JavaScript Engineer', - industry: 'Payment card', - cities: ['Henderson'], - }, - { - company: 'Mavis', - name: 'Aalayah-Lynn Olaes', - email: 'olaesaalayah@gmail.com', - linkedIn: 'linkedin.com/in/aalayaholaes', - campus: 'NYC / ECRI', - cohort: '40', - jobTitle: 'Software Engineer', - industry: 'Automotive', - cities: ['Chula Vista'], - }, - { - company: 'Mavis Tire', - name: 'Peter Kennedy', - email: 'Ptkennedy9@gmail.com', - linkedIn: 'https://www.linkedin.com/peter-kennedy', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Full Stack Software Engineer ', - industry: 'Automotive', - cities: ['Wichita', 'Aurora', 'Las Vegas'], - }, - { - company: 'Mavis Tires', - name: 'Jessica Davila', - email: 'jdav92@gmail.com', - linkedIn: 'https://www.linkedin.com/feed/', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Senior Full Stack Engineer', - industry: 'Automotive', - cities: ['New York', 'Boston', 'Los Angeles', 'St. Louis'], - }, - { - company: 'Maya Health', - name: 'Danny Byrne', - email: 'danny.byrne.dev@gmail.com', - linkedIn: 'https://www.linkedin.com/in/danny-byrne-la/', - campus: 'LA', - cohort: '30', - jobTitle: 'Front End Engineer', - industry: 'Psychedelic Health', - cities: ['Paris'], - }, - { - company: 'Maze', - name: 'Henry Black', - email: 'blackhaj@gmail.com', - linkedIn: 'https://www.linkedin.com/in/henryblack1/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Full Stack Engineer', - industry: 'Design', - cities: ['Winston-Salem', 'Albuquerque', 'Oakland'], - }, - { - company: 'McGraw Hill', - name: 'Kristin Green', - email: 'kngreen@umich.edu', - linkedIn: 'https://www.linkedin.com/in/kristin-green-101902a4/', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Orlando', 'Mumbai', 'Newark', 'Corpus Christi'], - }, - { - company: 'Mcgraw Hill', - name: 'Richard Guo', - email: 'richardguo11@gmail.com', - linkedIn: 'https://www.linkedin.com/in/richardyguo/', - campus: 'LA / WCRI', - cohort: '46', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Durham', 'Austin'], - }, - { - company: 'McGraw-Hill Education', - name: 'Victor Wang', - email: 'vwang4536@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vwang4536', - campus: 'LA', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Consulting and technology services', - cities: ['Oakland', 'Irvine', 'Seattle', 'Boston'], - }, - { - company: 'McKinsey & Company', - name: 'Em Podhorcer', - email: 'epithe@gmail.com', - linkedIn: 'https://www.linkedin.com/feed/', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Engineer I', - industry: 'Consulting', - cities: ['Detroit', 'Phoenix', 'Wichita', 'San Francisco'], - }, - { - company: 'McKinsey & Company', - name: 'Matthew Yeon', - email: 'yeon34387@gmail.com', - linkedIn: 'https://www.linkedin.com/in/matthew-yeon/', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Software Engineer', - industry: 'Consulting', - cities: ['Detroit', 'Minneapolis'], - }, - { - company: 'MDCalc', - name: 'Jonah Wilkof', - email: 'wilkof.jonah@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonahwilkof/', - campus: 'NYC', - cohort: '7', - jobTitle: 'Software Engineer', - industry: 'Fintech, Payment Processing', - cities: ['Denver'], - }, - { - company: 'Medal.tv', - name: 'Joseph Heinz', - email: 'joeheinz99@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joseph-heinz1/', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Full Stack Engineer', - industry: 'Gaming', - cities: ['Bakersfield', 'Fort Wayne', 'Las Vegas'], - }, - { - company: 'MediaMonks NYC', - name: 'Case Simmons', - email: 'casesimmons@pm.me', - linkedIn: 'https://www.linkedin.com/mwlite/in/case-simmons', - campus: 'LA', - cohort: '38', - jobTitle: 'Creative Technologist', - industry: 'Digital Production', - cities: ['Berlin'], - }, - { - company: 'Mediaocean', - name: 'Parker Keller', - email: 'parkerkeller@gmail.com', - linkedIn: 'https://www.linkedin.com/in/parkerkeller/', - campus: 'LA', - cohort: '28', - jobTitle: 'Senior Software Engineer', - industry: 'Advertising & Marketing', - cities: ['Wichita', 'Greensboro'], - }, - { - company: 'Medical Informatics Engineering', - name: 'Keifer Alan Beck', - email: 'keiferbeck@gmail.com', - linkedIn: 'https://www.linkedin.com/in/k-alan-beck', - campus: 'FTRI / CTRI', - cohort: '16', - jobTitle: 'Fullstack Developer', - industry: 'Healthtech/Healthcare', - cities: ['Tucson', 'Chula Vista', 'Indianapolis', 'Lincoln'], - }, - { - company: 'Medidata', - name: 'Wontae Han', - email: 'wontaeh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/wontaeh/', - campus: 'NYC', - cohort: '4', - jobTitle: 'Frontend Engineer', - industry: '', - cities: ['Arlington', 'Mumbai', 'Plano'], - }, - { - company: 'Medium', - name: 'Keiran Carpen', - email: 'keirancarpen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/keirancarpen/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Senior Full Stack Engineer, Trust & Safety', - industry: 'Online publishing platform', - cities: ['Greensboro', 'Colorado Springs', 'Las Vegas', 'Virginia Beach'], - }, - { - company: 'Medly Pharmacy', - name: 'Austin Ruby', - email: 'austinjruby@gmail.com', - linkedIn: 'https://www.linkedin.com/in/austinjruby/', - campus: 'NYC', - cohort: '14', - jobTitle: 'Software Engineer I', - industry: 'Healthcare', - cities: ['Irvine', 'Boston'], - }, - { - company: 'MedMen', - name: 'Brendan Morrell', - email: 'brendanmorrell@gmail.com', - linkedIn: 'https://linkedin.com/in/brendanmorrell', - campus: 'LA', - cohort: '22', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Milwaukee', 'Lexington'], - }, - { - company: 'Meltwater', - name: 'Richard Lam', - email: 'rlam108994@gmail.com', - linkedIn: 'https://www.linkedin.com/in/richardlam108/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: 'Digital Media Intelligence', - cities: ['San Jose', 'St. Louis', 'Charlotte', 'Sรฃo Paulo'], - }, - { - company: 'MeltWater', - name: 'Sebastian Damazo', - email: 'sebastiandamazo1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ernesto-sebastian-damazo', - campus: 'LA', - cohort: '42', - jobTitle: 'Backend software engineer level 2', - industry: 'Software as a Service', - cities: ['North Las Vegas', 'Aurora'], - }, - { - company: 'Memorial Sloan Kettering', - name: 'David Zhang', - email: 'davidzhang8828@gmail.com', - linkedIn: 'https://www.linkedin.com/in/davdjz/', - campus: 'NYC', - cohort: '17', - jobTitle: 'Advanced Software Developer', - industry: 'Healthcare', - cities: ['Gilbert'], - }, - { - company: 'Memorial Sloan Kettering', - name: 'Phillip Yoo', - email: 'phillipyoo.218@gmail.com', - linkedIn: 'https://www.linkedin.com/in/phillipyoo218/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Bioinformatics Software Engineer I', - industry: 'Healthcare', - cities: ['Philadelphia', 'Tampa', 'San Antonio'], - }, - { - company: 'Memorial Sloan Kettering Cancer Center', - name: 'Raymond Kwan', - email: 'kwanvm@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rkwn/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Frontend Software Engineer', - industry: 'Health', - cities: ['Lubbock', 'Omaha', 'Berlin'], - }, - { - company: 'Memorial Sloan Kettering Cancer Center', - name: 'Natsuki Wada', - email: 'wachka06@gmail.com', - linkedIn: 'https://www.linkedin.com/in/natsukiwada/', - campus: 'FTRI', - cohort: '3', - jobTitle: 'Software Engineer II', - industry: 'Healthcare', - cities: ['Mesa', 'Milwaukee', 'Durham'], - }, - { - company: 'Mento', - name: 'James Highsmith', - email: 'me@jameshighsmith.com', - linkedIn: 'https://www.linkedin.com/in/jameshighsmith/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Lead Fullstack Engineer', - industry: 'HR', - cities: ['Philadelphia'], - }, - { - company: 'Mentorcam', - name: 'Stephen Rivas', - email: 'Stephen.Anthony.rivas@gmail.com', - linkedIn: 'https://linkedin.com/in/stephenscript', - campus: 'NYOI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Louisville', 'Berlin'], - }, - { - company: 'Mentra', - name: 'Mathew Hultquist', - email: 'mathew.j.hultquist@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mjhult/', - campus: 'PTRI', - cohort: '9', - jobTitle: 'Senior Full Stack Engineer', - industry: 'Software / Tech', - cities: ['San Antonio', 'Nashville', 'Saint Paul', 'Oakland'], - }, - { - company: 'Merck', - name: 'Jin Yoo', - email: 'iyoojin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/iyoojin/', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['Glendale', 'Tucson'], - }, - { - company: 'Meredith', - name: 'Kai Evans', - email: 'kaijosefevans@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonathan-jim-ramirez/', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer', - industry: 'Media Agency', - cities: ['Toledo'], - }, - { - company: 'Mess', - name: 'Anne-lise Emig', - email: 'anneliseemig@gmail.com', - linkedIn: 'linkedin.com/in/anneliseemig', - campus: 'FTRI / CTRI', - cohort: '15', - jobTitle: 'Junior Web Developer', - industry: 'Marketing', - cities: ['Albuquerque', 'Madison', 'Virginia Beach'], - }, - { - company: 'Meta', - name: 'Carlos Lovera', - email: 'Calovera@bu.edu', - linkedIn: '', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Partner Engineer', - industry: 'Fintech', - cities: ['Nashville', 'Detroit', 'Albuquerque', 'Tokyo'], - }, - { - company: 'Meta', - name: 'Jonathan Jim Ramirez', - email: 'jramirezor.91@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonathan-jim-ramirez/', - campus: 'PTRI', - cohort: '0', - jobTitle: 'Data Engineer', - industry: 'Social Media + VR', - cities: ['Albuquerque', 'Dallas', 'Irvine'], - }, - { - company: 'Meta', - name: 'Karandeep Ahluwalia', - email: 'karandeepahluwalia@gmail.com', - linkedIn: 'https://www.linkedin.com/in/karandeepahluwalia97/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Software Engineer', - industry: 'Technology', - cities: ['Albuquerque', 'Sรฃo Paulo'], - }, - { - company: 'Meta', - name: 'Tom Herrmann', - email: 'Tomherrmannd@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thomasherrmann1/', - campus: 'NYC', - cohort: '14', - jobTitle: 'Software engineer - E4', - industry: '', - cities: ['Corpus Christi', 'Durham'], - }, - { - company: 'Metecs', - name: 'Justin Lee Kirk', - email: 'justinleekirk@gmail.com', - linkedIn: 'https://www.linkedin.com/in/justinleekirk/', - campus: 'LA', - cohort: '48', - jobTitle: 'Software Engineer', - industry: 'Research', - cities: ['New York', 'Washington', 'Virginia Beach', 'Portland'], - }, - { - company: 'Metric5', - name: 'Alex Kang', - email: 'akang0408@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alex-kang/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Software Engineer', - industry: 'Information Technology & Services', - cities: ['Raleigh', 'Gilbert'], - }, - { - company: 'Metrolina Greenhouses', - name: 'Stefan Jordan', - email: 'sjordan2010@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stefan-w-jordan', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Frontend Software Engineer', - industry: 'Agriculture Science', - cities: ['Albuquerque', 'Gilbert', 'Beijing'], - }, - { - company: 'Microsoft', - name: 'Alonso Garza', - email: 'alonsogarza6@gmail.com', - linkedIn: 'https://www.linkedin.com/in/e-alonso-garza/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer II', - industry: 'Software', - cities: ['Madison', 'Gilbert', 'Long Beach', 'Boston'], - }, - { - company: 'Microsoft', - name: 'Bernie Green', - email: 'bgreen280@gmail.com', - linkedIn: 'https://www.linkedin.com/in/berniegreen/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Sydney', 'Toledo'], - }, - { - company: 'Microsoft', - name: 'Brad Morgan', - email: 'bkmorgan3@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bkmorgan3/', - campus: 'LA', - cohort: '31', - jobTitle: 'UI Engineer', - industry: 'Tech', - cities: ['Greensboro'], - }, - { - company: 'Microsoft', - name: 'Brandi Richardson', - email: 'brandi.jrichardson@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brandi-richardson-28295158/', - campus: 'LA', - cohort: '40', - jobTitle: 'Software Engineer ll', - industry: 'Computer Software', - cities: ['Winston-Salem', 'New Orleans', 'Colorado Springs', 'Houston'], - }, - { - company: 'Microsoft', - name: 'Brian Hong', - email: 'brianhhong96@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brianhhong', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer', - industry: 'Cloud', - cities: ['Chula Vista'], - }, - { - company: 'Microsoft', - name: 'Georgina Carr', - email: 'carre.georgina@gmail.com', - linkedIn: 'https://www.linkedin.com/in/georginacarr/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Software Engineer, Contract', - industry: 'tech', - cities: ['Garland', 'Glendale', 'Oakland', 'Reno'], - }, - { - company: 'Microsoft', - name: 'Andrew Dunne', - email: 'Drewdunne88@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andrew-dunne-7620bb84', - campus: 'LA / WCRI', - cohort: '53', - jobTitle: 'Senior Automation Engineer', - industry: 'Gaming', - cities: ['Chesapeake', 'Lexington'], - }, - { - company: 'Microsoft', - name: 'Griffin Roger Mccartney Silver', - email: 'griffinrogersilver@gmail.com', - linkedIn: 'https://www.linkedin.com/in/griffin-silver/', - campus: 'LA / WCRI', - cohort: '43', - jobTitle: 'Cloud Support Engineer', - industry: 'IT Services', - cities: ['Mesa', 'Oakland'], - }, - { - company: 'Microsoft', - name: 'Rella Cruz', - email: 'rellas.email@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rella/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Software Engineer Apprentice (LEAP Program)', - industry: 'Computer Technology', - cities: ['Minneapolis', 'San Jose'], - }, - { - company: 'Microsoft', - name: 'Silvia Kemp Miranda', - email: 'silvia.kemp@gmail.com', - linkedIn: 'https://www.linkedin.com/in/silviakmiranda/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Technical Program Manager', - industry: 'Technology', - cities: ['Tampa', 'Tulsa', 'Anaheim', 'Orlando'], - }, - { - company: 'Microsoft', - name: 'Timothy Jung', - email: 'timjj92@gmail.com', - linkedIn: 'www.linkedin.com/in/timjj92', - campus: 'LA', - cohort: '32', - jobTitle: 'Software Development Engineer', - industry: 'Cloud computing', - cities: ['Detroit', 'Omaha', 'Paris', 'Anaheim'], - }, - { - company: 'Microsoft', - name: 'Tjolanda "Sully" Sullivan', - email: 'tjolanda.sullivan@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tjolanda-sullivan/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer', - industry: 'Cloud Storage', - cities: ['Columbus', 'Norfolk', 'Arlington'], - }, - { - company: 'Microsoft', - name: 'William kencel', - email: 'Wkencel1@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '40', - jobTitle: 'React/react native/full stack engineer', - industry: 'Device payment system', - cities: ['Minneapolis'], - }, - { - company: 'Microsoft Leap Apprenticeship Program (via Aerotek)', - name: 'Roseanne Damasco', - email: 'rosedamasco@gmail.com', - linkedIn: 'https://www.linkedin.com/in/roseannedamasco/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer', - industry: 'Computer Software', - cities: ['Norfolk', 'Las Vegas'], - }, - { - company: 'Mighty', - name: 'Jakob Kousholt', - email: 'jakobjk@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jakobjk/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Software Engineer', - industry: 'Consumer Services', - cities: ['Mumbai', 'Oakland'], - }, - { - company: 'MightyHive', - name: 'Alyso Swerdloff', - email: 'alysonswerdloff@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alyson-swerdloff/', - campus: 'NYC', - cohort: '8', - jobTitle: 'Technical Solutions Engineer', - industry: 'Insurance/ cybersecurity', - cities: ['Corpus Christi', 'Pittsburgh'], - }, - { - company: 'Mimecast', - name: 'Tim Ruszala', - email: 'truszala@gmail.com', - linkedIn: 'https://www.linkedin.com/in/timruszala/', - campus: 'NYC', - cohort: '32', - jobTitle: 'Senior Software Engineer', - industry: 'Security', - cities: ['Omaha', 'Oakland', 'Denver', 'San Francisco'], - }, - { - company: 'MindBody', - name: 'Charlie Malave', - email: 'malavecharles@gmail.com', - linkedIn: 'https://www.linkedin.com/in/charlesmalave/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Software Engineer', - industry: 'Fitness Tech', - cities: ['Long Beach'], - }, - { - company: 'Mindbody ClassPass', - name: 'Christina Son', - email: 'christinason17@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christinason17/', - campus: 'FTRI / CTRI', - cohort: '7', - jobTitle: 'Software Engineer I', - industry: 'Fitness/Wellness', - cities: ['Irvine'], - }, - { - company: 'MindCloud', - name: 'Emily Chu', - email: 'lin.emily.chu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lin-chu/', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Junior Software Engineer', - industry: 'Software / Tech', - cities: ['Saint Paul', 'Los Angeles', 'Mumbai'], - }, - { - company: 'Mindstrong', - name: 'Chon Hou Ho', - email: 'chonhouh@gmail.com', - linkedIn: 'https://www.linkedin.com/mwlite/in/chon-hou-ho', - campus: 'FTRI', - cohort: '6', - jobTitle: 'Software Engineer I, Full Stack', - industry: 'Healthcare', - cities: ['St. Louis', 'Lexington'], - }, - { - company: 'Mirror.xyz', - name: 'Nathaniel Grossman', - email: 'nathanielbensongrossman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nathanielgrossman/', - campus: 'LA', - cohort: '22', - jobTitle: 'Software Engineer', - industry: 'Education', - cities: ['San Antonio', 'Los Angeles', 'Buffalo', 'Boston'], - }, - { - company: 'Mission Lane', - name: 'Ali Elhawary', - email: 'Alielhawary123@gmail.com', - linkedIn: '', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Mesa', 'Anaheim'], - }, - { - company: 'Mission Lane', - name: 'Esther Cho', - email: 'xesthercho@gmail.com', - linkedIn: 'https://www.linkedin.com/in/esther-cho/', - campus: 'LA', - cohort: '49', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Houston', 'Mesa', 'Greensboro', 'Milwaukee'], - }, - { - company: 'Mitchell Martin', - name: 'Jonathan Barenboim', - email: 'Jonathan.Barenboim@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonathan-barenboim/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: ['Tucson', 'San Diego', 'Wichita'], - }, - { - company: 'MJH Life Sciences', - name: 'Arthur Sato', - email: 'swatto12@gmail.com', - linkedIn: 'https://www.linkedin.com/in/arthursato', - campus: 'NYC', - cohort: '25', - jobTitle: 'React Developer', - industry: 'Health Care Media', - cities: ['Las Vegas', 'New Orleans', 'Milwaukee'], - }, - { - company: 'MKTG', - name: 'Garrett Lee', - email: 'geewai.lee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/geewailee/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Senior Software Developer', - industry: 'Marketing', - cities: ['Dallas'], - }, - { - company: 'MNTN', - name: 'Chris Franz', - email: 'chrisfranz@mac.com', - linkedIn: 'https://www.linkedin.com/in/chris--franz/', - campus: 'LA', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Advertising', - cities: ['Los Angeles', 'Tokyo', 'North Las Vegas'], - }, - { - company: 'MNTN', - name: 'Timothy Kachler', - email: 'kachler@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tkachler', - campus: 'LA', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Advertising', - cities: ['Fresno', 'St. Petersburg', 'Toronto'], - }, - { - company: 'MNTN', - name: 'Bryan Trang', - email: 'bryanltrang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bryanltrang/', - campus: 'LA / WCRI', - cohort: '58', - jobTitle: 'Fullstack Software Engineer', - industry: 'Other', - cities: ['Louisville', 'Sydney'], - }, - { - company: 'Moment House', - name: 'Hoon Choi', - email: 'vhchoi@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '10', - jobTitle: 'Sr. Software eng', - industry: 'Entertainment', - cities: ['Boston'], - }, - { - company: 'MongoDB', - name: 'Cris Newsome', - email: 'crisnewsome@outlook.com', - linkedIn: 'https://linkedin.com/in/crisnewsome', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer II', - industry: 'Tech?', - cities: ['Tucson', 'Irvine', 'Honolulu'], - }, - { - company: 'Monument', - name: 'Midori Yang', - email: 'midoki.yang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/midori-yang/', - campus: 'NYC', - cohort: '19', - jobTitle: '', - industry: 'Healthcare', - cities: ['Chula Vista'], - }, - { - company: "Moody's Analytics", - name: 'Alan Ye', - email: 'alye13@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alan-ye-008/', - campus: 'PTRI', - cohort: '4', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Jacksonville', 'Scottsdale', 'Pittsburgh', 'El Paso'], - }, - { - company: "Moody's Analytics", - name: 'Cara Dibdin', - email: 'cdibdin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cara-dibdin/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Senior Software Engineer', - industry: 'Finance', - cities: ['Raleigh', 'Greensboro', 'Virginia Beach'], - }, - { - company: 'Morgan Stanley', - name: 'Jackie Lin', - email: 'jackie.lin128@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jackielin12/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Developer', - industry: 'Finance', - cities: ['Mumbai', 'Plano', 'Sydney'], - }, - { - company: 'Morning Consult', - name: 'Lucas Lima Taffo', - email: 'lucas.taffo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lucastaffo/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Software Engineer II', - industry: 'Decision Intelligence', - cities: ['Plano', 'Tokyo', 'Jacksonville'], - }, - { - company: 'Mothership', - name: 'Carlos Perez', - email: 'crperez@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cpereztoro/', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Freight', - cities: ['Toronto', 'Jacksonville', 'Irving', 'Miami'], - }, - { - company: 'Motion Intelligence', - name: 'Russell F Hayward', - email: 'russdawg44@gmail.com', - linkedIn: 'https://www.linkedin.com/in/russell-hayward/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Cloud Developer', - industry: 'Automotive', - cities: ['El Paso', 'Raleigh', 'Henderson'], - }, - { - company: 'mPulse Mobile', - name: 'Devon Vaccarino', - email: 'devonev92@gmail.com', - linkedIn: 'https://www.linkedin.com/in/devon-vaccarino/', - campus: 'LA', - cohort: '30', - jobTitle: 'Mid Software Engineer', - industry: 'Health Communications', - cities: ['Scottsdale'], - }, - { - company: 'MRI-Simmons', - name: 'Dan Lin', - email: 'dannlin91@gmail.com', - linkedIn: 'https://www.linkedin.com/in/danlin91/', - campus: 'NYC', - cohort: '20', - jobTitle: 'UI Developer', - industry: 'Data Consumer', - cities: ['Omaha', 'Fort Wayne'], - }, - { - company: 'MUFG', - name: 'Parker Hutcheson', - email: 'pdhutcheson@gmail.com', - linkedIn: 'https://www.linkedin.com/in/parkerhutcheson/', - campus: 'FTRI / CTRI', - cohort: '4', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Anchorage', 'Fort Worth', 'London', 'Omaha'], - }, - { - company: 'Mulberry Technology', - name: 'Mia Kang', - email: 'fakeEmail3@fakeEmail.com', - linkedIn: 'https://www.linkedin.com/in/mia-kang/', - campus: 'PTRI', - cohort: '5', - jobTitle: 'Associate Engineer', - industry: 'Fintech', - cities: ['Berlin', 'Saint Paul', 'Beijing'], - }, - { - company: 'Multi Media, LLC', - name: 'Cameron Fitz', - email: 'hellocameronfitz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cameron-lee-fitz/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Product Manager, Growth', - industry: 'Entertainment', - cities: ['Stockton', 'Columbus', 'Miami'], - }, - { - company: 'Munera', - name: 'Yuehao Wong', - email: 'yuehaowong@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yuehaowong/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Full Stack Developer', - industry: 'Other', - cities: ['Denver', 'Kansas City', 'Mesa', 'Wichita'], - }, - { - company: 'Musee Archives', - name: 'Walter David DeVault', - email: 'wdd4services@outlook.com', - linkedIn: 'https://www.linkedin.com/in/walter-devault', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Full-Stack Software Engineer', - industry: 'Media', - cities: ['Lincoln', 'El Paso', 'Chandler'], - }, - { - company: 'MX', - name: 'Harlan Evans', - email: 'harlanevans5@gmail.com', - linkedIn: 'https://www.linkedin.com/mwlite/in/harlan-evans', - campus: 'LA', - cohort: '40', - jobTitle: 'Front end Software engineer (mid-sr)', - industry: 'Fintech', - cities: ['St. Petersburg', 'Tulsa', 'Sacramento', 'North Las Vegas'], - }, - { - company: 'MX', - name: 'Mike Coker', - email: 'mbcoker100@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mike-coker/', - campus: 'LA', - cohort: '35', - jobTitle: 'Backend JavaScript Engineer', - industry: 'Fintech', - cities: ['Cleveland', 'Nashville', 'Garland', 'Chandler'], - }, - { - company: 'Naked Development', - name: 'Cayla Co', - email: 'caylasco@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cayla-co/', - campus: 'FTRI', - cohort: '6', - jobTitle: 'Senior Full Stack Developer', - industry: 'Digital Advertising', - cities: ['Los Angeles', 'Memphis', 'Irvine'], - }, - { - company: 'Namely', - name: 'Yujin kang', - email: 'ykang7858@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'SaaS / HR startup', - cities: ['Kansas City', 'Scottsdale', 'Indianapolis'], - }, - { - company: 'Narmi', - name: 'Derek Lam', - email: 'derekquoc@gmail.com', - linkedIn: 'https://www.linkedin.com/in/derekqlam/', - campus: 'LA', - cohort: '40', - jobTitle: 'Solutions Engineer', - industry: 'Fintech', - cities: ['Irvine', 'Chicago', 'Cincinnati'], - }, - { - company: 'Narrativ', - name: 'Lisa Han', - email: 'jjlisahan@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lisajjhan/', - campus: 'NYC', - cohort: '17', - jobTitle: 'Software Engineer', - industry: 'E-commerce', - cities: ['Stockton', 'Tampa'], - }, - { - company: 'National Grid', - name: 'Edward Deng', - email: 'edeng4237@gmail.com', - linkedIn: 'https://www.linkedin.com/in/edwarddeng-/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: 'Utilities', - cities: ['Gilbert', 'Winston-Salem', 'Virginia Beach', 'Berlin'], - }, - { - company: 'Navitus', - name: 'Young Kim', - email: 'young.kim770@gmail.com', - linkedIn: 'https://www.linkedin.com/in/young-j-kim', - campus: 'FTRI / CTRI', - cohort: '12', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['Wichita', 'San Francisco'], - }, - { - company: 'NBA', - name: 'Cecily Jansen', - email: 'cecilyjansen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cecily-j/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Associate Front-End Engineer', - industry: 'Sports & Entertainment Media', - cities: ['Boston', 'Greensboro'], - }, - { - company: 'NBCUniversal', - name: 'Sam Arnold', - email: 'sam.arnold72@gmail.com', - linkedIn: 'https://www.linkedin.com/in/samarnold723/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Software Engineer II', - industry: 'Entertainment', - cities: ['Detroit', 'Chicago', 'Saint Paul', 'Paris'], - }, - { - company: 'NBCUniversal Media', - name: 'Jimmy Phong', - email: 'jayacados@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jphongmph/', - campus: 'LA', - cohort: '35', - jobTitle: 'Senior Software Engineer', - industry: 'Media and Entertainment', - cities: ['San Antonio', 'Garland', 'Chandler', 'Saint Paul'], - }, - { - company: 'NCR', - name: 'Bryan Chau', - email: 'chaubryan@hotmail.com', - linkedIn: 'https://www.linkedin.com/in/chaubryan1', - campus: 'LA / WCRI', - cohort: '47', - jobTitle: 'SW Engineer III', - industry: 'IT Services', - cities: ['Pittsburgh', 'Philadelphia', 'Portland', 'San Jose'], - }, - { - company: 'NEC', - name: 'Stacey Lee', - email: 'staceyjlee18@gmail.com', - linkedIn: 'https://www.linkedin.com/in/staceyjhlee/', - campus: 'FTRI / CTRI', - cohort: '16', - jobTitle: 'Full Stack Engineer', - industry: 'Business Tech/Enterprise Tech', - cities: ['Dallas', 'Plano', 'Long Beach', 'Denver'], - }, - { - company: 'Neiro AI', - name: 'Daria Mordvinov', - email: 'daria.mordvinov@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dariamordvinov/', - campus: 'NYOI', - cohort: '1', - jobTitle: 'Frontend Engineer', - industry: 'Artificial Intelligence', - cities: ['Norfolk', 'Jersey City'], - }, - { - company: 'Nelnet', - name: 'Zach Brucker', - email: 'zach.brucker@gmail.com', - linkedIn: 'https://www.linkedin.com/in/zachbrucker/', - campus: 'LA', - cohort: '41', - jobTitle: 'Full-Stack Developer', - industry: 'Fintech', - cities: ['Sacramento', 'Toledo', 'Bakersfield'], - }, - { - company: 'Neo.Tax', - name: 'Lindsay Baird', - email: 'lindsay.a.baird@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lindsaybaird/', - campus: 'LA', - cohort: '45', - jobTitle: 'Full-Stack Software Engineer', - industry: 'Fintech', - cities: ['Kansas City', 'San Jose', 'Baltimore'], - }, - { - company: 'Neo.tax', - name: 'Miguel Hernandez', - email: 'miguelh72@outlook.com', - linkedIn: 'https://www.linkedin.com/in/miguelh72/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Senior Full-Stack Software Engineer', - industry: 'Fintech', - cities: ['Arlington', 'Anchorage', 'Honolulu'], - }, - { - company: 'Nespresso', - name: 'Raymond Huang', - email: 'raymond.huang1011@gmail.com', - linkedIn: 'https://www.linkedin.com/in/raymondhuang95/', - campus: 'NYC / ECRI', - cohort: '31', - jobTitle: 'Associate Front-End Developer', - industry: 'Other', - cities: ['Washington'], - }, - { - company: 'Netflix', - name: 'Josie Glore', - email: 'Josieglore@gmail.com', - linkedIn: 'https://www.linkedin.com/in/josie-glore/', - campus: 'LA', - cohort: '25', - jobTitle: 'Technologist', - industry: 'Fashion', - cities: ['Aurora', 'Nashville'], - }, - { - company: 'Netflix', - name: 'Sagar Velagala', - email: 'sagar.velagala@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sagarvelagala/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Sr. Analytics Engineer', - industry: 'Software / Tech', - cities: ['Anchorage'], - }, - { - company: 'Netflix', - name: 'Victoria Adnet', - email: 'victoria.adnet@gmail.com', - linkedIn: 'https://www.linkedin.com/in/victoria-lellis/', - campus: 'LA', - cohort: '29', - jobTitle: 'Technologist', - industry: 'Entertainment', - cities: ['El Paso', 'Las Vegas', 'Cincinnati'], - }, - { - company: 'Netskope', - name: 'Mariya Eyges', - email: 'mariya.sf@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mariya-eyges-8511131/', - campus: 'PTRI', - cohort: 'Beta', - jobTitle: 'Software Engineer', - industry: 'Security Cloud', - cities: ['Cleveland', 'Gilbert'], - }, - { - company: 'Neulion', - name: 'Myles Green', - email: 'mylescorygreen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/myles-c-green/', - campus: 'NYC', - cohort: '4', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Seattle', 'Phoenix'], - }, - { - company: 'New York Institute of Technology College of Osteopathic Medicine', - name: 'Justin Ribarich', - email: 'jribarich98@gmail.com', - linkedIn: 'https://www.linkedin.com/in/justin-ribarich', - campus: 'NYOI', - cohort: '2', - jobTitle: 'Full Stack Developer', - industry: 'Education/Edtech', - cities: ['Plano', 'Reno', 'Chicago', 'Beijing'], - }, - { - company: 'Newsela', - name: 'Anthony Terruso', - email: 'aterruso@gmail.com', - linkedIn: 'https://www.linkedin.com/in/anthony-w-terruso/', - campus: 'NYC', - cohort: '7', - jobTitle: 'Senior Web Application Developer', - industry: '', - cities: ['Bakersfield', 'Albuquerque'], - }, - { - company: 'Nexient', - name: 'James Kolotouros', - email: 'dkolotouros1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jameskolotouros', - campus: 'NYC', - cohort: '22', - jobTitle: 'Software Developer II', - industry: 'Tech', - cities: ['Cleveland', 'Minneapolis'], - }, - { - company: 'Nexient', - name: 'Gaber Mowiena', - email: 'gaber.abouelsoud@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gabermowiena/', - campus: 'NYC', - cohort: '9', - jobTitle: 'Frontend Developer', - industry: 'Tech products', - cities: ['Gilbert', 'Lexington'], - }, - { - company: 'Nexstar Media Group', - name: 'Beckett Hanan', - email: 'beckett.hanan@gmail.com', - linkedIn: 'https://www.linkedin.com/in/becketthanan/', - campus: 'PTRI', - cohort: 'Beta', - jobTitle: 'Front End Software Engineer', - industry: 'Media', - cities: ['El Paso', 'Cincinnati', 'Chandler', 'Cleveland'], - }, - { - company: 'NextGen Healthcare', - name: 'Samuel Tran', - email: 'samwell.tran@gmail.com', - linkedIn: 'https://www.linkedin.com/in/samuel-tran-836448231/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Software Engineer II', - industry: 'Healthcare', - cities: ['El Paso'], - }, - { - company: 'NextME', - name: 'Linh Tran', - email: 'linhtanl51@gmail.com', - linkedIn: 'https://www.linkedin.com/in/linhatran', - campus: 'LA', - cohort: '40', - jobTitle: 'Senior Software Engineer', - industry: 'Management', - cities: ['Louisville', 'Las Vegas', 'Wichita'], - }, - { - company: 'NFL', - name: 'Michael Blanchard', - email: 'michael.james.blanchard@gmail.com', - linkedIn: 'https://www.linkedin.com/in/miblanchard12/', - campus: 'LA', - cohort: '7', - jobTitle: 'Director of Engineering - Platform', - industry: 'Media / Sports', - cities: ['New York', 'Seattle', 'New Orleans'], - }, - { - company: 'Niantic', - name: 'Oliver Zhang', - email: 'zezang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/oliver-zhang91', - campus: 'PTRI', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Riverside', 'Anchorage', 'Colorado Springs', 'Garland'], - }, - { - company: 'Nielsen', - name: 'Alexander Tu', - email: 'alexandertu95@gmail.com', - linkedIn: 'https://www.linkedin.com/in/atu816', - campus: 'FTRI / CTRI', - cohort: '12', - jobTitle: 'Senior Software Engineer', - industry: 'Business Analytics', - cities: ['Laredo', 'Tucson', 'Tulsa'], - }, - { - company: 'Nielsen', - name: 'Diana Kim', - email: 'ruslanovna.kim@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ruslanovna/', - campus: 'NYC / ECRI', - cohort: '31', - jobTitle: 'Software Engineer II', - industry: 'Business Analytics', - cities: ['Anchorage', 'Cleveland'], - }, - { - company: 'Nielsen Sports', - name: 'Karina Illesova', - email: 'karin.illesova@gmail.com', - linkedIn: 'https://www.linkedin.com/in/karin-illesova/', - campus: 'LA', - cohort: '41', - jobTitle: 'Sr Software Engineer', - industry: 'Information Technology & Services', - cities: ['St. Louis', 'Corpus Christi'], - }, - { - company: 'Nike', - name: 'adrian Sun', - email: 'Adriansun2@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adrian-sun', - campus: 'LA', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Travel', - cities: ['Cleveland', 'Lexington', 'Miami'], - }, - { - company: 'Nimble', - name: 'Zachary Daniels', - email: 'Zackdanielsnyc@gmail.com', - linkedIn: 'LinkedIn.com/in/zackdanielsnyc', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Baltimore', 'Glendale'], - }, - { - company: 'Nobel.AI', - name: 'Kate Chanthakaew', - email: 'kubkate@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kate-chanthakaew/', - campus: 'LA', - cohort: '36', - jobTitle: 'Full Stack Engineer', - industry: 'Scientist R&D', - cities: ['Seattle', 'Fresno', 'Anchorage'], - }, - { - company: 'Noblr Insurance', - name: 'Brian Taylor', - email: 'brian.taylor818@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brianwtaylor/', - campus: 'LA', - cohort: '22', - jobTitle: 'Software Engineer', - industry: 'Health', - cities: ['Detroit'], - }, - { - company: 'Nomad Health', - name: 'Julia Bakerink', - email: 'juliabakerink@gmail.com', - linkedIn: 'https://www.linkedin.com/in/juliabakerink/', - campus: 'LA', - cohort: '48', - jobTitle: 'Fullstack Software Engineer', - industry: 'Healthcare', - cities: ['Sydney', 'Toledo', 'Glendale'], - }, - { - company: 'Nomad Health', - name: 'Neftali Dominguez', - email: 'n.l.dominguez23@gmail.com', - linkedIn: 'https://www.linkedin.com/in/neftalildominguez/', - campus: 'LA', - cohort: '30', - jobTitle: 'Senior Software Engineer', - industry: 'Health', - cities: ['Irving', 'Corpus Christi', 'Tokyo', 'Tampa'], - }, - { - company: 'Nordstrom', - name: 'Vicki Lee', - email: 'leevicki01@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vlee022/', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer', - industry: 'E-Commerce / Fashion', - cities: ['Buffalo', 'Minneapolis'], - }, - { - company: 'Nordstrom', - name: 'Sohee Lee', - email: 'soheelee1985@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sohee419/', - campus: 'LA', - cohort: '46', - jobTitle: 'Engineer 2', - industry: 'Fintech', - cities: ['Reno'], - }, - { - company: 'Nordstrom Rack | HauteLook', - name: 'Robb Eastman', - email: 'ereastman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/robbeastman/', - campus: 'LA', - cohort: '31', - jobTitle: 'Software Engineer I, Web', - industry: 'Fashion', - cities: ['Miami', 'Toledo', 'Baltimore'], - }, - { - company: 'Noria Water Technologies', - name: 'Umair Shafiq', - email: 'umairshafiqprof@gmail.com', - linkedIn: 'https://www.linkedin.com/in/umair-w-shafiq/', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Associate Developer', - industry: 'Other', - cities: ['Raleigh'], - }, - { - company: 'North American Bancard', - name: 'Edward Chow', - email: 'Pdphybrid@gmail.com', - linkedIn: 'https://www.linkedin.com/in/edkchow/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Full Stack Engineer', - industry: 'Fintech', - cities: ['Fort Wayne', 'Detroit', 'Riverside'], - }, - { - company: 'Northflank', - name: 'Emma Genesen', - email: 'genesen.emma@gmail.com', - linkedIn: 'https://www.linkedin.com/in/emma-genesen/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Head of Developer Marketing', - industry: 'Cloud Services', - cities: ['Anaheim', 'Houston', 'Glendale', 'Chula Vista'], - }, - { - company: 'Northrop Grumman', - name: 'David Lopez', - email: 'd7lopez@gmail.com', - linkedIn: 'https://www.linkedin.com/in/david-michael-lopez/', - campus: 'NYC / ECRI', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Aerospace', - cities: ['Baltimore'], - }, - { - company: 'Northrop Grumman', - name: 'Michael Way', - email: 'mjway01@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michaeljway/', - campus: 'PTRI', - cohort: '10', - jobTitle: 'Cognitive Software Engineer', - industry: 'Aerospace', - cities: ['Baltimore'], - }, - { - company: 'Northspyre', - name: 'Vaughn Sulit', - email: 'bvaughnsulit@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bvaughnsulit/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Full Stack Engineer', - industry: 'Real Estate', - cities: ['El Paso'], - }, - { - company: 'Northwestern Mutual', - name: 'Hussein Hamade', - email: 'hamade.hussein00@gmail.com', - linkedIn: 'https://www.linkedin.com/in/husseinhamade1/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Software Engineer (P2 - Midlevel)', - industry: 'Fintech', - cities: ['Virginia Beach'], - }, - { - company: 'Northwestern Mutual', - name: 'Jake Policano', - email: 'jdpolicano@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jacob-policano/', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: ['Greensboro'], - }, - { - company: 'Northwestern Mutual', - name: 'Max Lee', - email: 'maxolee23@gmail.com', - linkedIn: 'https://www.linkedin.com/in/max-lee1', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Full Stack Software Engineer', - industry: 'Fintech', - cities: ['Fort Wayne'], - }, - { - company: 'Northwestern Mutual', - name: 'Vince Nguyen', - email: 'vince.g.nguyen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vince-nguyen/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Full Stack Software Engineer', - industry: 'Fintech/Insurance', - cities: ['Mexico City'], - }, - { - company: 'Northwestern Mutual', - name: 'Warren Harrison Tait', - email: 'warrenhtait@gmail.com', - linkedIn: 'https://www.linkedin.com/in/warrenhtait/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Full Stack Software Engineer', - industry: 'Fintech', - cities: ['Bakersfield', 'Plano'], - }, - { - company: 'Not currently employed in tech/as a dev', - name: 'Evan Deam', - email: 'ebdeam@gmail.com', - linkedIn: 'https://www.linkedin.com/in/evandeam/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Registered Nurse', - industry: 'Healthtech/Healthcare', - cities: ['Glendale'], - }, - { - company: 'Notion', - name: 'Marissa Lafontant', - email: 'marissa.lafontant@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mlafontant/', - campus: 'NYC', - cohort: '2', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Boston', 'Albuquerque', 'Tampa', 'Miami'], - }, - { - company: 'Nousot', - name: 'Winslow Taylor', - email: 'winslow.benjamin.taylor@gmail.com', - linkedIn: 'https://www.linkedin.com/in/winslow-taylor/', - campus: 'FTRI', - cohort: '6', - jobTitle: 'Advance Associate', - industry: 'IT, SaaS', - cities: ['Plano', 'Santa Ana', 'Stockton', 'Newark'], - }, - { - company: 'Noyo', - name: 'Jonathan Mendoza', - email: 'j.d.mendoza415@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonathan-mendoza1', - campus: 'LA', - cohort: '41', - jobTitle: 'L1 Engineer', - industry: 'Heath care', - cities: ['Stockton', 'Berlin', 'New York'], - }, - { - company: 'NPR', - name: 'Alex Mannix', - email: 'alexleemannix@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alex-mannix-53015668/', - campus: 'NYC', - cohort: '5', - jobTitle: 'Junior Software Engineer', - industry: '', - cities: ['Chesapeake'], - }, - { - company: 'NPR', - name: 'Jordan Grubb', - email: 'imjordangrubb@gmail.com', - linkedIn: 'https://www.linkedin.com/in/j-grubb/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Software Engineer', - industry: 'Subscriptions', - cities: ['San Francisco', 'Madison'], - }, - { - company: 'NPR', - name: 'Samantha Wessel', - email: 'samantha.n.wessel@gmail.com', - linkedIn: 'https://www.linkedin.com/in/samantha-wessel/', - campus: 'LA', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'News Media', - cities: ['Plano'], - }, - { - company: 'NU Borders', - name: 'Ryan Tumel', - email: 'rtumel123@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ryan-tumel/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Information Technology & Services', - cities: ['Austin'], - }, - { - company: 'NWEA', - name: 'Celene Chang', - email: 'Celene Chang', - linkedIn: 'https://www.linkedin.com/in/celenecchang/', - campus: 'LA', - cohort: '48', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['London', 'Jacksonville', 'Glendale', 'Lubbock'], - }, - { - company: 'NYU Langone Health', - name: 'Alexander Lin', - email: 'alexanderlin164@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexander-lin-8aab79167/', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Developer 1', - industry: 'Healthtech/Healthcare', - cities: ['Dallas', 'Atlanta', 'Virginia Beach', 'San Antonio'], - }, - { - company: 'O POSITIV', - name: 'Jonah Lin', - email: 'jjonah.lin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/linjonah/', - campus: 'LA', - cohort: '33', - jobTitle: 'Software Engineer (eCommerce)', - industry: 'E-commerce', - cities: ['Fresno', 'San Jose', 'Virginia Beach'], - }, - { - company: 'ObvioHealth', - name: 'Joshua Jordan', - email: 'josh.r.jordan@gmail.com', - linkedIn: 'https://www.linkedin.com/in/josh-r-jordan/', - campus: 'NYC / ECRI', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Biotech', - cities: ['Saint Paul', 'Reno', 'North Las Vegas', 'Denver'], - }, - { - company: 'OceanX', - name: 'Jun Lee', - email: 'jushuworld@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jushuworld/', - campus: 'LA', - cohort: '29', - jobTitle: 'Full Stack Developer', - industry: 'E-commerce', - cities: ['Sรฃo Paulo'], - }, - { - company: 'Ocrolus', - name: 'Daniel Shu', - email: 'shudaniel95@gmail.com', - linkedIn: 'https://www.linkedin.com/in/danielshu/', - campus: 'NYC', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Blockchain', - cities: ['San Jose', 'Anchorage'], - }, - { - company: 'Octane Lending', - name: 'Christian Paul Ejercito', - email: 'chris.paul.ejercito@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christian-paul-ejercito/', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer II', - industry: 'Fintech', - cities: ['Arlington', 'Mexico City'], - }, - { - company: 'Odie Pet Insurance', - name: 'Nicholas Echols', - email: 'nechols87@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nickechols87/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Senior Software Engineer', - industry: '', - cities: ['Nashville'], - }, - { - company: 'ODME Solutions', - name: 'Jackqueline Nguyen', - email: 'jackquelineanguyen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jackquelinenguyen/', - campus: 'LA / WCRI', - cohort: '54', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Garland'], - }, - { - company: 'Okta', - name: 'Sterling Deng', - email: 'sterlingdeng@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sterling-deng/', - campus: 'LA', - cohort: '27', - jobTitle: 'Software Engineer', - industry: 'SaaS - Security', - cities: ['Jacksonville'], - }, - { - company: 'Olive AI', - name: 'Saejin Kang', - email: 'saejin.kang1004@gmail.com', - linkedIn: 'https://www.linkedin.com/in/saejinkang1004/', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['Wichita'], - }, - { - company: 'Olivine Inc', - name: 'Yirou Chen', - email: 'yirou.zm@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yirouchen/', - campus: 'PTRI', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Gilbert', 'Minneapolis', 'Chula Vista', 'Columbus'], - }, - { - company: 'Ollie', - name: 'Brynn Sakell', - email: 'brynnsakell@gmail.com', - linkedIn: 'www.linkedin.com/in/brynnsakell', - campus: 'NYOI', - cohort: '1', - jobTitle: 'Software Engineer, Front End', - industry: 'Other', - cities: ['Anaheim', 'Minneapolis', 'Tucson'], - }, - { - company: 'Omaze', - name: 'Rachel Kim', - email: 'rayykim323@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rayykim/', - campus: 'LA', - cohort: '31', - jobTitle: 'Software Engineer', - industry: 'Fundraising', - cities: ['Milwaukee'], - }, - { - company: 'OneSignal', - name: 'Dean Ohashi', - email: 'd.n.ohashi@gmail.com', - linkedIn: 'https://www.linkedin.com/in/deanohashi/', - campus: 'LA', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'MarTech', - cities: ['Raleigh', 'Toronto', 'Tokyo', 'Virginia Beach'], - }, - { - company: 'OneTrack.AI', - name: 'Alexander Martinez', - email: 'alexmartinez7184@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexander-martinez415/', - campus: 'LA / WCRI', - cohort: '53', - jobTitle: 'Implementation Support Engineer', - industry: 'Artificial Intelligence', - cities: ['San Antonio', 'Columbus', 'Lincoln', 'Irving'], - }, - { - company: 'OneView', - name: 'Sean Yoo', - email: 'yooys87@gmail.com', - linkedIn: 'https://www.linkedin.com/in/seanyyoo/', - campus: 'LA', - cohort: '43', - jobTitle: 'Full Stack Developer', - industry: 'ECommerce', - cities: ['Austin', 'Plano'], - }, - { - company: 'Onyx Team at JP Morgan Chase', - name: 'Dwayne Richards', - email: 'dwaynerichards@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dnkrichards', - campus: 'NYC / ECRI', - cohort: '24', - jobTitle: 'Senior Blockchain Engineer', - industry: 'Blockchain/Web3', - cities: ['Pittsburgh'], - }, - { - company: 'Oomph', - name: 'Rob Mosher', - email: 'rob@robmosher.com', - linkedIn: 'https://www.linkedin.com/in/rob-mosher-it/', - campus: 'NYOI', - cohort: '1', - jobTitle: 'Senior Software Engineer', - industry: 'Software / Tech', - cities: ['Minneapolis', 'New Orleans'], - }, - { - company: 'OpenFin', - name: 'Elliott Burr', - email: 'elliottnburr@gmail.com', - linkedIn: 'https://www.linkedin.com/in/elliott-burr/', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Tulsa', 'Scottsdale', 'Chandler', 'Mesa'], - }, - { - company: 'Openfin', - name: 'Hina Khalid', - email: 'k.hinaa87@gmail.com', - linkedIn: '', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Software engineer', - industry: 'Fintech', - cities: ['Tampa', 'Tulsa', 'Long Beach', 'San Diego'], - }, - { - company: 'Opentrons', - name: 'Geovanni Alarcon', - email: 'geovannialarcon92@gmail.com', - linkedIn: 'https://www.linkedin.com/in/geo-alarcon/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Biotech, Robotics', - cities: ['Cincinnati'], - }, - { - company: 'Opentrons', - name: 'Jamey Huffnagle', - email: 'mjhuffnagle@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jamey-huffnagle/', - campus: 'NYOI', - cohort: '3', - jobTitle: 'Senior Software Engineer', - industry: 'Biotech', - cities: ['Tokyo', 'San Jose'], - }, - { - company: 'Optimize Health', - name: 'Kim Mai Nguyen', - email: 'kim.mai.e.nguyen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nkmai/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['Sรฃo Paulo'], - }, - { - company: 'Optum', - name: 'Austin Johnson', - email: 'austinlovesworking@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lovesworking/', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Full stack dev', - industry: 'Healthcare', - cities: ['Newark', 'London'], - }, - { - company: 'Oscar Health', - name: 'Brian Kang', - email: 'brkang1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thebriankang/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Software Engineer (E2)', - industry: 'Health', - cities: ['Paris'], - }, - { - company: 'Oscar Health', - name: 'Brian Kang', - email: 'brkang1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thebriankang/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Software Engineer (E2)', - industry: 'Health', - cities: ['Santa Ana', 'Boston'], - }, - { - company: 'Oscar Health', - name: 'Sergey Zeygerman', - email: 'sergey@zeygerman.com', - linkedIn: 'https://www.linkedin.com/in/sergey-zeygerman/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Software Engineer, Web & Mobile', - industry: 'Insurance', - cities: ['Tulsa', 'Irving', 'Seattle'], - }, - { - company: 'OTG Experience', - name: 'Chang Cai', - email: 'Chang.Cai@pm.me', - linkedIn: 'https://www.linkedin.com/in/chang-c-cai/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Typescript NodeJS Senior Engineer', - industry: 'Hospitality', - cities: ['Sydney', 'Baltimore'], - }, - { - company: 'Other World Computing', - name: 'Miles Wright', - email: 'mileswright818@gmail.com', - linkedIn: 'https://www.linkedin.com/in/miles-m-wright/', - campus: 'LA / WCRI', - cohort: '45', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Fort Wayne', 'Austin'], - }, - { - company: 'Ouraring', - name: 'Jenna Hamza', - email: 'jennashamza@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jennahamza', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Full Stack Developer', - industry: 'Other', - cities: ['Chicago', 'London', 'North Las Vegas', 'Henderson'], - }, - { - company: 'Outside Analytics', - name: 'Timeo Williams', - email: 'timeo.j.williams@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '24', - jobTitle: 'FullStack Software Engineer', - industry: 'Analytics, Defense', - cities: ['Anaheim', 'Irving'], - }, - { - company: 'Ovis Technologies', - name: 'Andrew Lovato', - email: 'andrew.lovato@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andrew-lovato/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Senior Full Stack Developer', - industry: 'Fintech', - cities: ['Lexington'], - }, - { - company: 'Ovis Technologies', - name: 'David Soerensen', - email: 'Dsoerensen28@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '18', - jobTitle: 'Senior Fullstack Developer', - industry: 'Fintech', - cities: ['Henderson', 'Gilbert', 'Cincinnati', 'Anaheim'], - }, - { - company: 'OwnerIQ Inc.', - name: 'Alejandro Romero', - email: 'alexrom789@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alejandromromero/', - campus: 'NYC', - cohort: '4', - jobTitle: 'Software Engineer', - industry: '', - cities: ['San Antonio', 'Henderson'], - }, - { - company: 'Ownet', - name: 'Ari bengiyat', - email: 'ari@aribengiyat.com', - linkedIn: 'https://www.linkedin.com/in/ari-bengiyat', - campus: 'NYOI', - cohort: '2', - jobTitle: 'Senior Software Engineer', - industry: 'Media', - cities: ['Chicago'], - }, - { - company: 'Palmetto', - name: 'Fan Shao', - email: 'fanny.shao18@gmail.com', - linkedIn: 'https://www.linkedin.com/in/fan-shao/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Software Engineer', - industry: 'Renewable Energy', - cities: ['Madison'], - }, - { - company: 'Panda Express', - name: 'Krystal Chen', - email: 'Kcrystalchen@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '31', - jobTitle: 'Software developer', - industry: 'Restaurant', - cities: ['Cleveland', 'Anaheim'], - }, - { - company: 'Paperless Parts', - name: 'Scott Campbell', - email: 'thisisscottcampbell@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thisisscottcampbell/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Contract Manufacturing', - cities: ['Charlotte', 'Oklahoma City', 'San Diego'], - }, - { - company: 'Paragon Application Systems', - name: 'Autumn Wallen', - email: 'mymail1269@gmail.com', - linkedIn: 'https://www.linkedin.com/in/autumn-wallen/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Software Engineer II', - industry: 'Fintech', - cities: ['Cleveland'], - }, - { - company: 'Paramount+', - name: 'Todd Alexander', - email: 'todd.alexander@me.com', - linkedIn: 'https://www.linkedin.com/in/toddalex/', - campus: 'LA', - cohort: '35', - jobTitle: 'Senior SWE', - industry: 'Entertainment', - cities: ['Irvine', 'Lubbock'], - }, - { - company: 'Paramount++', - name: 'Evan Emenegger', - email: 'evanemenegger@gmail.com', - linkedIn: 'https://www.linkedin.com/in/evan-emenegger/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Software Engineer, Frontend', - industry: 'Entertainment', - cities: ['Atlanta'], - }, - { - company: 'Parative', - name: 'Mariko Iwata', - email: 'mariko.iwata@gmail.com', - linkedIn: 'https://www.linkedin.com/in/marikoiwata/', - campus: 'PTRI', - cohort: '9', - jobTitle: 'Senior Front End Engineer', - industry: 'Sales', - cities: ['Chula Vista', 'Lexington', 'Corpus Christi'], - }, - { - company: 'Passage.io', - name: 'Yusuf Nevruz Olmez', - email: 'nvrz@windowslive.com', - linkedIn: 'https://www.linkedin.com/in/nevruzolmez', - campus: 'NYC / ECRI', - cohort: '33', - jobTitle: 'Full Stack Developer', - industry: 'Blockchain/Web3', - cities: ['Boston', 'Fort Wayne'], - }, - { - company: 'PassiveLogic', - name: 'Tanner Hesterman', - email: 'tannerhesterman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tannerhesterman/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Junior Software Engineer', - industry: 'Software / Tech', - cities: ['Santa Ana', 'Seattle'], - }, - { - company: 'PavCon', - name: 'Bradley Woolf', - email: 'bradleymwoolf@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bradley-woolf/', - campus: 'LA', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Federal Defense', - cities: ['St. Louis', 'Philadelphia'], - }, - { - company: 'Pavemint', - name: 'Vivian Cermeno', - email: 'vcermeno6@gmail.com', - linkedIn: 'https://www.linkedin.com/in/viviancermeno/', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Parking', - cities: ['Winston-Salem', 'Mexico City'], - }, - { - company: 'Pax8', - name: 'Steve Frend', - email: 'stevefrend1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stevefrend/', - campus: 'LA', - cohort: '35', - jobTitle: 'Software Engineer II', - industry: 'Cloud services', - cities: ['Dallas', 'Lexington', 'Atlanta', 'Greensboro'], - }, - { - company: 'Paypal', - name: 'Cynthia Franqui', - email: 'cynthiafranqui@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cynthiafranqui/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer II', - industry: 'Fintech', - cities: ['Anchorage'], - }, - { - company: 'Paypal', - name: 'Stanley Huang', - email: 'Huang.stan@icloud.com', - linkedIn: '', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer II (T23)', - industry: 'electronic Payment/ financial services', - cities: ['Cleveland', 'Tucson'], - }, - { - company: 'PayPal', - name: 'Jason Yu', - email: 'jasonyu@hotmail.com', - linkedIn: 'https://www.linkedin.com/in/json-yu/', - campus: 'LA', - cohort: '32', - jobTitle: 'Software Engineer 2', - industry: 'Fintech', - cities: ['Boston', 'Irvine'], - }, - { - company: 'PayPal', - name: 'Jorge Espinoza', - email: 'jorge.e.espinoza.57@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jorge-e-espinoza1/', - campus: 'FTRI', - cohort: '3', - jobTitle: 'Software Engineer I', - industry: 'Fintech', - cities: ['Toledo', 'Saint Paul'], - }, - { - company: 'PayPal', - name: 'Qwen Ballard', - email: 'qwen.ballard@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mqballard/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Full Stack Developer', - industry: 'Fintech', - cities: ['Arlington', 'Laredo'], - }, - { - company: 'PayPal (Happy Returns)', - name: 'Lawrence Han', - email: 'lawrencehan3@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lawrence-han/', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer', - industry: 'Logistics', - cities: ['Columbus', 'Lincoln'], - }, - { - company: 'PayPal Inc.', - name: 'Darryl Amour', - email: 'darryl.amour@gmail.com', - linkedIn: 'https://www.linkedin.com/in/darryl-amour/', - campus: 'LA', - cohort: '25', - jobTitle: 'Engineering Manager, Software Development 2', - industry: 'Fintech', - cities: ['Baltimore', 'Tokyo', 'Las Vegas', 'Cincinnati'], - }, - { - company: 'Payscale', - name: 'Truett Davis', - email: 'truett.davis@gmail.com', - linkedIn: 'https://www.linkedin.com/in/truett-davis', - campus: 'NYOI', - cohort: '3', - jobTitle: 'Software Engineer II', - industry: 'Software / Tech', - cities: ['San Diego', 'Columbus', 'Washington', 'Phoenix'], - }, - { - company: 'Peacock', - name: 'Eli Gallipoli', - email: 'eligallipoli317@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eli-gallipoli/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Fullstack Developer - Video Software Engineering', - industry: 'Video Streaming', - cities: ['Tulsa'], - }, - { - company: 'Peatix', - name: 'Yula Ko', - email: 'larkspury.k@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yulako/', - campus: 'NYC', - cohort: '17', - jobTitle: 'Software Engineer', - industry: 'Entertainment', - cities: ['Jersey City'], - }, - { - company: 'Peloton', - name: 'Lorenzo Guevara', - email: 'joselorenzo.guevara@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lorenzoguevara/', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer', - industry: 'Tech/Health & Wellness', - cities: ['Oklahoma City', 'Mesa', 'Fort Wayne', 'Chula Vista'], - }, - { - company: 'Penny Mac', - name: 'Edward Roh', - email: 'eroh@rubiconproject.com', - linkedIn: 'https://www.linkedin.com/in/edwardroh/', - campus: 'LA', - cohort: '24', - jobTitle: 'Front End Lead Engineer', - industry: 'Sports?', - cities: ['Baltimore', 'Chesapeake'], - }, - { - company: 'PennyMac', - name: 'Cornelius Phanthanh', - email: 'corneliusphanthanh@gmail.com', - linkedIn: 'www.linkedin.com/in/corneliusphanthanh', - campus: 'LA', - cohort: '33', - jobTitle: 'Full Stack (UI/UX) Senior Application Developer', - industry: 'Loan/Mortgage', - cities: ['Virginia Beach', 'Pittsburgh', 'Houston'], - }, - { - company: 'Penumbra', - name: 'Abigail Gjurich', - email: 'amgjurich@gmail.com', - linkedIn: 'https://www.linkedin.com/in/abigail-gjurich/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Front End Engineer', - industry: 'Medical', - cities: ['San Diego'], - }, - { - company: 'Penumbra, Inc.', - name: 'Junaid Ahmed', - email: 'junaid7ahmed96@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ahmedjnd/', - campus: 'NYOI', - cohort: '3', - jobTitle: 'Full Stack Engineer', - industry: 'Healthtech/Healthcare', - cities: ['San Diego', 'Arlington'], - }, - { - company: 'Peraton', - name: 'Andrew Jung', - email: 'andrewjung89@icloud.com', - linkedIn: 'https://www.linkedin.com/in/sjung80/', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Cyber Software Engineer', - industry: 'Public Safety', - cities: ['Seattle', 'Tampa', 'Fresno'], - }, - { - company: 'PGA Tour', - name: 'Rami Abdelghafar', - email: 'ramabdel12@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ramiabdelghafar/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Software Engineer', - industry: 'Digital', - cities: ['Memphis', 'Indianapolis', 'Denver'], - }, - { - company: 'PGi', - name: 'Zi Hao He', - email: 'germanychinaaustralia@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/zi-hao-he/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer I', - industry: 'Video', - cities: ['Denver'], - }, - { - company: 'PGS', - name: 'Yi Sun', - email: 'timyisun@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yi-sun-swe/', - campus: 'PTRI', - cohort: '10', - jobTitle: 'Senior Software Engineer', - industry: 'Energy/Cleantech/Greentech', - cities: ['Anaheim', 'Portland'], - }, - { - company: 'PhotoShelter', - name: 'Julia Ieshtokina', - email: 'julia.ieshtokina@gmail.com', - linkedIn: 'https://www.linkedin.com/in/julia-ieshtokina/', - campus: 'NYC', - cohort: '5', - jobTitle: 'Software Automation Engineer', - industry: '', - cities: ['Kansas City', 'Sรฃo Paulo', 'Minneapolis'], - }, - { - company: 'Picarro', - name: 'Sรฉbastien Fauque', - email: 'Sbfauque@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sebastienfauque', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Software engineer', - industry: 'Green tech', - cities: ['Jacksonville'], - }, - { - company: 'Pie Insurance', - name: 'Alex Wolinsky', - email: 'alexwolinsky1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alex-wolinsky/', - campus: 'LA', - cohort: '40', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: ['Toledo', 'St. Petersburg'], - }, - { - company: 'Pima County', - name: 'Jake Kazi', - email: 'kazijake@gmail.com', - linkedIn: 'linkedin.com/in/jakekazi', - campus: 'PTRI', - cohort: '7', - jobTitle: 'IT Applications Engineer', - industry: 'Other', - cities: ['Santa Ana', 'Aurora', 'Tulsa'], - }, - { - company: 'Pinterest', - name: 'Edar Liu', - email: 'liuedar@gmail.com', - linkedIn: 'https://www.linkedin.com/in/liuedar/', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer L4', - industry: 'Social Media', - cities: ['Nashville', 'Mesa'], - }, - { - company: 'Pitzer College', - name: 'Kurt Crandall', - email: 'kcrandall67@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kurtcrandall', - campus: 'LA / WCRI', - cohort: '47', - jobTitle: 'Web Developer', - industry: 'Other', - cities: ['Chesapeake', 'New Orleans', 'Colorado Springs'], - }, - { - company: 'Place Exchange', - name: 'Wesley Jia', - email: 'wesleyjia34@gmail.com', - linkedIn: 'https://www.linkedin.com/in/wesleyjia/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Advertising', - cities: ['Anaheim', 'San Francisco', 'Los Angeles', 'Jersey City'], - }, - { - company: 'Plaid', - name: 'Nicolas Ferretti', - email: 'nf96@cornell.edu', - linkedIn: 'https://www.linkedin.com/in/nicolas-ferretti/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Mexico City', 'Colorado Springs'], - }, - { - company: 'Platform Science', - name: 'Daniel Aurand', - email: 'Daurand303@gmail.com', - linkedIn: 'https://www.linkedin.com/in/daniel-aurand/', - campus: 'PTRI', - cohort: '7', - jobTitle: 'software development engineer - FMS', - industry: 'Automotive', - cities: ['Tampa', 'Minneapolis'], - }, - { - company: 'Playstation', - name: 'Bryan Santos', - email: 'brymsantos@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bryan-santos/', - campus: 'LA', - cohort: '49', - jobTitle: 'Software Engineer II', - industry: 'Gaming', - cities: ['Scottsdale'], - }, - { - company: 'PlayStation', - name: 'Jackqueline Nguyen', - email: 'jackquelineanguyen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jackquelinenguyen/', - campus: 'LA / WCRI', - cohort: '54', - jobTitle: 'Senior Software Engineer', - industry: 'Gaming', - cities: ['Indianapolis'], - }, - { - company: 'PlayVs', - name: 'Alyvia Moss', - email: 'alyvialmoss@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alyviam/', - campus: 'LA', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'E-Sports', - cities: ['Tulsa', 'Jacksonville', 'Riverside', 'Lubbock'], - }, - { - company: 'Plum', - name: 'Nattie Chan', - email: 'nattie.chan@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nattiechan/', - campus: 'LA / WCRI', - cohort: '56', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Beijing', 'Henderson', 'Fort Wayne'], - }, - { - company: 'Pluralsight', - name: 'Ronak Hirpara', - email: 'ronakh130@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ronak-hirpara/', - campus: 'NYC', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Education', - cities: ['Long Beach'], - }, - { - company: 'Pluralsight', - name: 'Stephanie Wood', - email: 'wood.steph@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stephaniewood22/', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'EdTech', - cities: ['Tokyo', 'St. Louis', 'North Las Vegas', 'Houston'], - }, - { - company: 'Plutoshift', - name: 'Alex Bednarek', - email: 'alexbednarek4@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alex-bednarek/', - campus: 'NYC', - cohort: '16', - jobTitle: 'Backend Engineer', - industry: 'Internet/AI/Energy', - cities: ['Newark', 'Chandler'], - }, - { - company: 'Podsights', - name: 'Emily Krebs', - email: 'erkrebs@gmail.com', - linkedIn: 'https://www.linkedin.com/in/emilyrkrebs/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: 'Podcast Analytics', - cities: ['El Paso', 'Boston', 'Milwaukee', 'Oklahoma City'], - }, - { - company: 'PointsBet', - name: 'Joseph Eisele', - email: 'eisele.joseph1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joseph-eisele/', - campus: 'LA', - cohort: '29', - jobTitle: 'Front-end Engineering Consultant', - industry: 'Sports Betting', - cities: ['Columbus'], - }, - { - company: 'PokerAtlas', - name: 'Patrick S. Young', - email: 'patrick.shaffer.young@gmail.com', - linkedIn: 'https://www.linkedin.com/in/patrick-s-young/', - campus: 'LA', - cohort: '31', - jobTitle: 'Frontend Engineer', - industry: 'Entertainment', - cities: ['Toronto'], - }, - { - company: 'Policygenius', - name: 'Christopher Bosserman', - email: 'christopherpbosserman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christopherpbosserman/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: ['Toronto', 'Pittsburgh', 'Wichita'], - }, - { - company: 'Policygenius', - name: 'Kelly Porter', - email: 'kporter101@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kporter101/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: ['Madison'], - }, - { - company: 'Poll Everywhere', - name: 'Samuel Filip', - email: 'samjfilip@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sam-filip/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Full Stack Integrations Engineer', - industry: 'IT Services', - cities: ['North Las Vegas', 'Gilbert', 'Houston'], - }, - { - company: 'Poloniex', - name: 'Sunit Bhalotia', - email: 'sunit.bh@gmail.com', - linkedIn: 'linkedin.com/in/sunitb/', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Senior Software Engineer, Web', - industry: 'Blockchain/Web3', - cities: ['Tampa', 'Chula Vista', 'Scottsdale'], - }, - { - company: 'Polyture', - name: 'Dieu Huynh', - email: 'dieu@dieuhuynh.com', - linkedIn: 'https://www.linkedin.com/in/dieu-huynh', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer', - industry: 'Data Analytics', - cities: ['Louisville', 'San Jose', 'Winston-Salem', 'Oklahoma City'], - }, - { - company: 'Polyture', - name: 'Evan Grobar', - email: 'egrobar@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '33', - jobTitle: 'Software Engineer', - industry: 'Data Analysis', - cities: ['San Jose', 'Cincinnati', 'Glendale', 'Fort Worth'], - }, - { - company: 'Pondurance', - name: 'Nancy Dao', - email: 'nancyddao@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '33', - jobTitle: 'Front End Software Engineer', - industry: 'Security', - cities: ['Laredo'], - }, - { - company: 'Postman', - name: 'Jonathan Haviv', - email: 'jonathandhaviv@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonathanhaviv/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Garland', 'Jersey City', 'Cincinnati', 'Long Beach'], - }, - { - company: 'Potato', - name: 'Kiril Christov', - email: 'kiril.christov@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kchristov/', - campus: 'LA', - cohort: '32', - jobTitle: 'Full stack engineer', - industry: 'Technology', - cities: ['Santa Ana', 'Beijing', 'Albuquerque'], - }, - { - company: 'Power Digital', - name: 'Feiyi Wu', - email: 'freyawu10@gmail.com', - linkedIn: 'https://www.linkedin.com/in/freya-wu/', - campus: 'LA', - cohort: '45', - jobTitle: 'Jr. Software Engineer', - industry: 'Marketing', - cities: ['Jersey City'], - }, - { - company: 'Prescriptive Data', - name: 'Nathan Le Master', - email: 'nlemaster47@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nathan-le-master/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Frontend Developer', - industry: 'Building Management', - cities: ['Saint Paul', 'Scottsdale', 'Greensboro'], - }, - { - company: 'Priceline', - name: 'Tommy Liang', - email: 'tommyliangsays@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mrtommyliang/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer - Frontend', - industry: 'Travel', - cities: ['Long Beach', 'Paris'], - }, - { - company: 'PRIME', - name: 'Andrew Park', - email: 'andrewchanwonpark@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andrew-c-park/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Shopify Developer', - industry: 'Restaurant, Food, and Beverage', - cities: ['Denver', 'St. Louis'], - }, - { - company: 'Prime Therapeutics', - name: 'Dennis Cheung', - email: 'dennis.kh.cheung@gmail.com', - linkedIn: 'https://www.linkedin.com/in/denniskhcheung/', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Senior Software Engineer', - industry: 'Healthcare', - cities: ['Sรฃo Paulo', 'Beijing', 'Buffalo', 'London'], - }, - { - company: 'Principal Financial Group', - name: 'Stephen Lee', - email: 'stphn.l.nyc@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stphnl/', - campus: 'NYOI', - cohort: '2', - jobTitle: 'Software Engineer II', - industry: 'Insurance', - cities: ['Seattle', 'San Antonio', 'Kansas City'], - }, - { - company: 'ProdataKey', - name: 'William Murphy', - email: 'w.williamjmurphy@gmail.com', - linkedIn: 'https://www.linkedin.com/in/w-william-j-murphy/', - campus: 'FTRI / CTRI', - cohort: '15', - jobTitle: 'Software Engineer', - industry: 'Business Tech/Enterprise Tech', - cities: ['Austin', 'St. Louis', 'New York'], - }, - { - company: 'Proov (MFB Fertility)', - name: 'Brian Pham', - email: 'br.pham13@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brpham13/', - campus: 'LA / WCRI', - cohort: '53', - jobTitle: 'Frontend Engineer', - industry: 'Healthcare', - cities: ['Memphis', 'Sacramento'], - }, - { - company: 'Prosper Marketplace', - name: 'David Levien', - email: 'david.levien1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dlev01/', - campus: 'LA', - cohort: '28', - jobTitle: 'Senior Software Engineer', - industry: '', - cities: ['Beijing', 'San Antonio', 'Riverside'], - }, - { - company: 'Providence Health & Services', - name: 'Jared Weiss', - email: 'weissjmw@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jaredmweiss/', - campus: 'NYC', - cohort: '2', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Irvine', 'El Paso'], - }, - { - company: 'Prudential Financial', - name: 'Michael Lam', - email: 'mlamchamkee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mlamchamkee/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Director, Tech Lead', - industry: 'Insurance', - cities: ['El Paso', 'Aurora'], - }, - { - company: 'Prudential Financial', - name: 'Perla Royer', - email: 'perlaroyerc@gmail.com', - linkedIn: 'https://www.linkedin.com/in/perlaroyerc/', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Columbus', 'Chesapeake', 'Long Beach'], - }, - { - company: 'Purpose Investments', - name: 'Anika Mustafiz', - email: 'munikamustafiz89@gmail.com', - linkedIn: 'https://www.linkedin.com/in/anikamustafiz-lillies/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Full Stack Developer', - industry: 'Fintech/Insurance software', - cities: ['Buffalo'], - }, - { - company: 'Q2', - name: 'Justin Poirier', - email: 'poirierj94@gmail.com', - linkedIn: 'https://www.linkedin.com/in/justincpoirier', - campus: 'NYC / ECRI', - cohort: '40', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Beijing', 'Norfolk', 'Detroit', 'Mexico City'], - }, - { - company: 'QLogic LLC.', - name: 'Joe Cervino', - email: 'jciv.public@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '6', - jobTitle: 'Senior Associate - Node Engineer', - industry: '', - cities: ['Indianapolis', 'Chicago'], - }, - { - company: 'Qrypt', - name: 'Vinit Patel', - email: 'za.vinit@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vinit-za/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Cryptography', - cities: ['Chesapeake', 'Omaha'], - }, - { - company: 'Qualleta Inc / StartPlaying.Games', - name: 'Brian Hayashi', - email: 'BrianMHayashi@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brianmakiohayashi/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Entertainment', - cities: ['London', 'Los Angeles'], - }, - { - company: 'Quantgene', - name: 'Peter Fasula', - email: 'peter.fasula@gmail.com', - linkedIn: 'https://www.linkedin.com/in/petefasula/', - campus: 'NYC', - cohort: '3', - jobTitle: 'Sr. Full Stack Software Engineer', - industry: '', - cities: ['Gilbert', 'Tokyo', 'Houston'], - }, - { - company: 'Quantiphi, Inc', - name: 'Alura Chung-Mehdi', - email: 'aluracm@gmail.com', - linkedIn: 'linkedin.com/alura-chungmehdi', - campus: 'FTRI', - cohort: '1', - jobTitle: 'Software Developer', - industry: 'Conversational AI', - cities: ['San Antonio', 'Sydney', 'Las Vegas'], - }, - { - company: 'Quantum Metric', - name: 'Justin Blalock', - email: 'justin.m.blalock@gmail.com', - linkedIn: 'https://www.linkedin.com/in/justinmblalock/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Customer Success Engineer', - industry: 'Technology', - cities: ['Virginia Beach'], - }, - { - company: 'Railbird', - name: 'Justin Paige', - email: 'justinpaige3@gmail.com', - linkedIn: 'https://www.linkedin.com/in/justin-paige/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Cleveland', 'Raleigh', 'Chandler', 'Sacramento'], - }, - { - company: 'Rainmaker Games', - name: 'Julia Collins', - email: 'Julia.col@protonmail.com', - linkedIn: '', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Lead Frontend Engineer (Web3)', - industry: 'Blockchain baby', - cities: ['Washington'], - }, - { - company: 'Rally Health', - name: 'Stefan Pougatchev', - email: 'Stefan.Pougatchev@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stefanpougatchev/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer II', - industry: 'Health/Insurance', - cities: ['Jersey City', 'Miami'], - }, - { - company: 'Raytheon Technologies', - name: 'Troy Prejusa', - email: 'prejusa.troy@gmail.com', - linkedIn: 'https://www.linkedin.com/in/troyprejusa/', - campus: 'LA / WCRI', - cohort: '54', - jobTitle: 'Software Engineer II', - industry: 'Aerospace', - cities: ['Lincoln', 'Corpus Christi', 'Tampa', 'Cincinnati'], - }, - { - company: 'Ready Responders', - name: 'Joel Rivera', - email: 'realjoelrivera@gmail.com', - linkedIn: 'https://www.linkedin.com/in/RealJoelRivera', - campus: 'NYC', - cohort: '11', - jobTitle: 'React Developer', - industry: 'Healthcare', - cities: ['Scottsdale', 'Beijing', 'Cincinnati', 'Phoenix'], - }, - { - company: 'Record360', - name: 'Abby Chao', - email: 'abigail.chao@gmail.com', - linkedIn: 'https://www.linkedin.com/in/abbychao/', - campus: 'NYC', - cohort: '12', - jobTitle: 'CEO', - industry: 'Rental Inspection', - cities: ['Memphis', 'Houston', 'Fresno'], - }, - { - company: 'Recurate', - name: 'PJ Bannon', - email: 'bannon.pj@gmail.com', - linkedIn: 'https://www.linkedin.com/in/paulbannon/', - campus: 'NYOI', - cohort: '3', - jobTitle: 'Frontend Engineer', - industry: 'Retail', - cities: ['Tampa', 'Denver', 'Oklahoma City', 'Bakersfield'], - }, - { - company: 'Recurate', - name: 'Andrew Altman', - email: 'andrewaltman@outlook.com', - linkedIn: 'https://www.linkedin.com/in/andrewaltman1/', - campus: 'NYOI', - cohort: '3', - jobTitle: 'Lead Frontend Engineer', - industry: 'Business Tech/Enterprise Tech', - cities: ['San Francisco', 'New York', 'Indianapolis'], - }, - { - company: 'Red Bull North America', - name: 'Catherine Larcheveque', - email: 'clarcheveque14@gmail.com', - linkedIn: 'https://www.linkedin.com/in/clarcheveque', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Automation Engineer', - industry: 'Restaurant, Food, and Beverage', - cities: ['Seattle'], - }, - { - company: 'Reddit', - name: 'Jessikeรฉ Campbell-Walker', - email: 'jessikeecw@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jessikeecampbellwalker/', - campus: 'LA', - cohort: '34', - jobTitle: 'Junior Front End Engineer', - industry: 'Internet Media', - cities: ['Mesa', 'Austin'], - }, - { - company: 'Redox', - name: 'Jacquelyn Whitworth', - email: 'jackie.whitworth@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jackiewhitworth/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Full Stack Engineer', - industry: 'Healthcare', - cities: ['Chicago', 'Raleigh'], - }, - { - company: 'Redwood Coding Academy', - name: 'Alexander Landeros', - email: 'Alexander.Landeros1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexander-landeros/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Dev Instructor', - industry: 'Edtech', - cities: ['Mexico City'], - }, - { - company: 'REEF', - name: 'Linda Everswick', - email: 'lindaeverswick@gmail.com', - linkedIn: 'https://www.linkedin.com/linda-everswick/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Front end engineer', - industry: 'Real Estate', - cities: ['Anaheim', 'Long Beach'], - }, - { - company: 'Remine', - name: 'JJ Friedman', - email: 'friedmanjarred@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jj-friedman/', - campus: 'LA', - cohort: '33', - jobTitle: 'Software Engineer II - Web/Mobile', - industry: 'PropTech', - cities: ['Charlotte', 'Chandler', 'San Jose', 'Corpus Christi'], - }, - { - company: 'Remote', - name: 'Bianca Picasso', - email: 'bianca.picasso@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bianca-picasso/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Engineer I', - industry: 'Research', - cities: ['Lexington', 'Philadelphia', 'Toledo', 'Saint Paul'], - }, - { - company: 'Rent the Runway', - name: 'Rebecca Schell', - email: 'Rebeccaschell503@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rschelly/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Senior Front End Engineer', - industry: 'Fashion', - cities: ['Oklahoma City', 'Plano'], - }, - { - company: 'Republic Services', - name: 'Lauren Acrich', - email: 'acrich.lauren@gmail.com', - linkedIn: 'https://www.linkedin.com/in/laurenacrich/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Full Stack Software Engineer', - industry: 'Other', - cities: ['Madison', 'Wichita', 'San Antonio'], - }, - { - company: 'Republic Services', - name: 'Nicholas Smith', - email: 'nicktsmith7@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nicholastaylorsmith/', - campus: 'LA', - cohort: '23', - jobTitle: 'Senior Front End Developer', - industry: '', - cities: ['Pittsburgh', 'Mumbai'], - }, - { - company: 'Rescale', - name: 'Kushal Talele', - email: 'kushal.talele@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kushaltalele/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Software Engineer', - industry: 'Cloud computing', - cities: ['Anchorage', 'Baltimore'], - }, - { - company: 'Research Corporation of the University of Hawaii', - name: 'Chris Fryer', - email: 'chris@hifryer.com', - linkedIn: 'linkedin.com/in/cjfryer', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Software Engineer Apprentice', - industry: 'Other', - cities: ['Berlin', 'Lubbock'], - }, - { - company: 'ResMed', - name: 'Jackie He', - email: 'jackie.he98@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jackie-he/', - campus: 'LA / WCRI', - cohort: '53', - jobTitle: 'Fullstack App SWE', - industry: 'Healthcare', - cities: ['Winston-Salem', 'Garland', 'Chula Vista', 'Virginia Beach'], - }, - { - company: 'Restaurant Brand International (RBI)', - name: 'Christian Niedermayer', - email: 'sdchrisn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christian-niedermayer/', - campus: 'LA', - cohort: '27', - jobTitle: 'Full Stack Software Engineer', - industry: 'Food', - cities: ['Memphis'], - }, - { - company: 'Resy (AMEX)', - name: 'Jonathan Cespedes', - email: 'jmilescespedes@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonathancespedes/', - campus: 'NYC', - cohort: '7', - jobTitle: 'Senior Front-End Engineer', - industry: 'Restaurant, Food, Beverage', - cities: ['Omaha', 'Arlington', 'St. Petersburg'], - }, - { - company: 'Reveel Group', - name: 'Jin Soo (John) Lim', - email: 'jinsoolim1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jinsoolim', - campus: 'NYC', - cohort: '21', - jobTitle: 'Frontend Developer', - industry: 'Logistics & Supply Chain', - cities: ['Madison', 'New York', 'Minneapolis', 'San Diego'], - }, - { - company: 'Revel', - name: 'Kayliegh Hill', - email: 'kayliegh.hill@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kayliegh-hill/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Full Stack Engineer', - industry: 'Renewables & Environment', - cities: ['Santa Ana', 'London'], - }, - { - company: 'Reverb', - name: 'Grace Park', - email: 'gracepark01@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '20', - jobTitle: 'software engineer', - industry: 'ecommerce', - cities: ['Houston', 'Saint Paul'], - }, - { - company: 'Revolution Prep', - name: 'Max Weisenberger', - email: 'germanbluemax@gmail.com', - linkedIn: 'https://www.linkedin.com/in/maxweisen/', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer', - industry: 'Education', - cities: ['El Paso', 'Toledo'], - }, - { - company: 'RF-Smart', - name: 'Michael Snyder', - email: 'msnyder1992@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michaelcharlessnyder/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'JavaScript Applications Developer', - industry: 'Software / Tech', - cities: ['Denver', 'Miami', 'Tulsa'], - }, - { - company: 'Rice University', - name: 'Thasanee Puttamadilok', - email: 'meow3525@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thasanee-p-686125243/', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Front End Software Engineer', - industry: 'Research', - cities: ['Saint Paul', 'Charlotte', 'Long Beach'], - }, - { - company: 'Rightway', - name: 'Dylan Feldman', - email: 'dfeldman24@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dylan-feldman/', - campus: 'LA', - cohort: '45', - jobTitle: 'Software engineer', - industry: 'Healthcare navigation', - cities: ['Mesa'], - }, - { - company: 'Riot Games', - name: 'Pauline Chang', - email: 'paulseonchang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/pskchang/', - campus: 'LA', - cohort: '22', - jobTitle: 'Associate Software Engineer', - industry: '', - cities: ['Philadelphia', 'St. Louis', 'Detroit', 'Riverside'], - }, - { - company: 'RIPL', - name: 'Jared Veltsos', - email: 'Veltsos.jared@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jaredveltsos/', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Chicago'], - }, - { - company: 'Rivian', - name: 'Luis Lo', - email: 'kwun.man.lo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/luis-lo/', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Engineer', - industry: 'Electric Vehicle', - cities: ['Chandler', 'Charlotte', 'Philadelphia'], - }, - { - company: 'Rivian', - name: 'Matthew Salvador', - email: 'matthew.jsalvador@gmail.com', - linkedIn: 'https://www.linkedin.com/in/matthewsalvador/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Full Stack Software Engineer II', - industry: 'Automotive', - cities: ['Baltimore', 'Houston'], - }, - { - company: 'Rivian', - name: 'Stacy Learn', - email: 'sslearn07@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stacy-learn/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Software Engineer II', - industry: 'Automotive', - cities: ['Beijing'], - }, - { - company: 'Rivian', - name: 'Thomas Lutz', - email: 'tlutz65@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thomas-j-lutz/', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Automotive', - cities: ['Los Angeles', 'Oakland', 'Long Beach', 'Jersey City'], - }, - { - company: 'Rocket Auto', - name: 'Tommy Han', - email: 'tommy.han.cs@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tommy-han-cs/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Senior Javascript Software Engineer', - industry: 'Fintech', - cities: ['Lubbock', 'Jersey City', 'Saint Paul'], - }, - { - company: 'Rocksbox', - name: 'Ece Isenbike Ozalp', - email: 'eceiozalp@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eceiozalp', - campus: 'PTRI', - cohort: '4', - jobTitle: 'Software Engineer', - industry: 'Jewelry Ecommerce', - cities: ['Irvine', 'New York'], - }, - { - company: 'RockStep Solutions', - name: 'Matthew McGowan', - email: 'matthew.c.mcgowan@gmail.com', - linkedIn: 'https://www.linkedin.com/in/matthewcharlesmcgowan/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Software Release Manager', - industry: 'Software / Tech', - cities: ['Reno'], - }, - { - company: 'Rohirrim', - name: 'Alex Corlin', - email: 'alex.corlin6@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alex-corlin/', - campus: 'FTRI / CTRI', - cohort: '7', - jobTitle: 'Full Stack Engineer', - industry: 'Artificial Intelligence', - cities: ['Minneapolis', 'Fort Wayne'], - }, - { - company: 'Rohirrim', - name: 'Simon Chen', - email: 'simonchn160@gmail.com', - linkedIn: 'https://www.linkedin.com/in/simonchen7/', - campus: 'FTRI / CTRI', - cohort: '7', - jobTitle: 'Full Stack Engineer', - industry: 'Artificial Intelligence', - cities: ['Orlando', 'Colorado Springs'], - }, - { - company: 'Roivant', - name: 'Jamie Schiff', - email: 'jamie.abrams.schiff@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jamie-schiff/', - campus: 'NYC / ECRI', - cohort: '1', - jobTitle: 'Technology Analyst', - industry: 'Biotech', - cities: ['Cleveland', 'Chandler', 'Honolulu', 'Sydney'], - }, - { - company: 'Rokt', - name: 'Michael Hoang', - email: 'michaelhoang781@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michaelhoang1/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Frontend Software Engineer', - industry: 'Digital Advertising/E-commerce', - cities: ['Houston', 'Orlando'], - }, - { - company: 'Roll', - name: 'Eric Choy', - email: 'echoy20@gmail.com', - linkedIn: 'https://www.linkedin.com/in/silly-turtle/', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: ['Long Beach', 'St. Petersburg', 'San Jose'], - }, - { - company: 'Roll', - name: 'Marlon Wiprud', - email: 'Marlonwiprud1@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software engineer', - industry: 'Entertainment', - cities: ['Los Angeles', 'Gilbert', 'Sacramento'], - }, - { - company: 'Roll', - name: 'Marlon Wiprud', - email: 'Marlonwiprud1@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Search and ads', - cities: ['Phoenix', 'Toronto', 'Honolulu'], - }, - { - company: 'Rose Digital', - name: 'Chet (ChetBABY!) Hay', - email: 'chet.hay@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chethay/', - campus: 'LA', - cohort: '28', - jobTitle: 'Jr. Frontend Engineer', - industry: 'Digital Agency/Client Services', - cities: ['Toronto', 'Louisville', 'Saint Paul'], - }, - { - company: 'Rose Digital', - name: 'Linda Harrison', - email: 'lindafaithharrison@gmail.com', - linkedIn: 'https://linkedin.com/in/lindafharrison/', - campus: 'NYC', - cohort: '3', - jobTitle: 'Junior Software Engineer', - industry: '', - cities: ['Reno'], - }, - { - company: 'Ruggable', - name: 'Benjamin Lee Morrison', - email: 'newben.hd@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hdlmorrison/', - campus: 'LA', - cohort: '31', - jobTitle: 'Sr. Software Engineer', - industry: 'Commerce', - cities: ['Jacksonville', 'Toledo'], - }, - { - company: 'Ruggable', - name: 'Andrew Nguyen', - email: 'nguyen.andrewkh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andrew-knguyen/', - campus: 'LA', - cohort: '29', - jobTitle: 'Sr. Front-End Engineer', - industry: 'E-Commerce', - cities: ['Boston'], - }, - { - company: 'Ruggable', - name: 'Steven Jung', - email: 'stehyjung@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stehyjung/', - campus: 'LA', - cohort: '28', - jobTitle: 'Front End Engineer', - industry: 'E-Commerce', - cities: ['Plano', 'New Orleans'], - }, - { - company: 'Rush Enterprises', - name: 'Eric Saldivar', - email: 'esaldivar1214@gmail.com', - linkedIn: 'https://www.linkedin.com/in/esaldivar1214/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Software Engineer', - industry: 'Automative', - cities: ['St. Louis', 'Kansas City', 'Mexico City', 'Buffalo'], - }, - { - company: 'S&P Global', - name: 'Samantha Warrick', - email: 'samanthawarrick@gmail.com', - linkedIn: 'www.linkedin.com/samantha-warrick', - campus: 'LA / WCRI', - cohort: '54', - jobTitle: 'Front End Software Engineer', - industry: 'Marketing', - cities: ['Seattle', 'Virginia Beach', 'Detroit', 'Lubbock'], - }, - { - company: 'Saggezza', - name: 'Albert Chen', - email: 'albert.chen@nyu.edu', - linkedIn: 'https://www.linkedin.com/in/albert-m-chen/', - campus: 'NYC', - cohort: '2', - jobTitle: 'Full-stack Analytics Engineer', - industry: 'Big Data, Analytics', - cities: ['Sacramento', 'Buffalo'], - }, - { - company: 'Salesforce', - name: 'Jennifer Courtner', - email: 'jmichele.courtner@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jcourtner/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Full Stack Engineer', - industry: 'B2B', - cities: ['Oakland', 'Colorado Springs'], - }, - { - company: 'San Francisco State University', - name: 'Paul Valderama', - email: 'pvalderama@gmail.com', - linkedIn: 'https://www.linkedin.com/in/paulvalderama/', - campus: 'LA / WCRI', - cohort: '22', - jobTitle: 'Senior Web and Mobile Developer', - industry: 'Software / Tech', - cities: ['Long Beach', 'Virginia Beach', 'Stockton', 'Tokyo'], - }, - { - company: 'SAP', - name: 'Charlie Maloney', - email: 'charliemaloney200@gmail.com', - linkedIn: 'https://www.linkedin.com/in/charlie-maloney/', - campus: 'LA', - cohort: '35', - jobTitle: 'Front End Developer', - industry: 'Enterprise Software', - cities: ['Corpus Christi', 'Raleigh', 'Greensboro', 'San Francisco'], - }, - { - company: 'SAP', - name: 'Sylvia Liu', - email: 'sylvs.liu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/liusylvia949/', - campus: 'LA', - cohort: '46', - jobTitle: 'Frontend Software Engineer', - industry: 'Business Software', - cities: ['Columbus', 'Charlotte'], - }, - { - company: 'Sayari', - name: 'SEAN YALDA', - email: 'seanyalda@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sean-yalda/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Senior Full Stack Developer', - industry: 'Data Intelligence', - cities: ['Phoenix', 'Berlin'], - }, - { - company: 'Sayari Labs', - name: 'Michael Gower', - email: 'GowerMikey@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mikeygower/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Senior Full Stack Engineer', - industry: 'Financial Data', - cities: ['Fort Wayne', 'St. Petersburg', 'Louisville', 'North Las Vegas'], - }, - { - company: 'Scale Computing', - name: 'Jason Charles de vera', - email: 'jasoncdevera@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jason-charles-de-vera/', - campus: 'FTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Cloud Technology', - cities: ['Winston-Salem'], - }, - { - company: 'Scale Computing', - name: 'Connor Dillon', - email: 'connordillon06@gmail.com', - linkedIn: 'https://www.linkedin.com/in/connor-dillon/', - campus: 'FTRI / CTRI', - cohort: '16', - jobTitle: 'Software Development Engineer', - industry: 'Business Tech/Enterprise Tech', - cities: ['Austin', 'Jacksonville'], - }, - { - company: 'Science', - name: 'Michelle Leong', - email: 'leong.michellew@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michelle-w-leong/', - campus: 'LA / WCRI', - cohort: '56', - jobTitle: 'Software Engineer', - industry: 'Biotech', - cities: ['Corpus Christi', 'Washington'], - }, - { - company: 'Science 37', - name: 'Tristan Schoenfeld', - email: 'tristans7@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tristan-schoenfeld/', - campus: 'LA', - cohort: '26', - jobTitle: 'Sr. Frontend Engineer', - industry: 'Research', - cities: ['St. Louis'], - }, - { - company: 'ScienceLogic', - name: 'Nick Kruckenberg', - email: 'nkruckenberg@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nicholaskruckenberg/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Engineer', - industry: 'AIOps, IT monitoring and automation', - cities: ['Cincinnati', 'San Diego', 'Albuquerque'], - }, - { - company: 'SciTec', - name: 'Forest Everest Leigh', - email: 'theforestleigh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/forestleigh/', - campus: 'LA / WCRI', - cohort: '53', - jobTitle: 'Senior Software Engineer', - industry: 'Other', - cities: ['Sรฃo Paulo', 'Tulsa', 'Oklahoma City'], - }, - { - company: 'SDL', - name: 'Jamar Dawson', - email: 'Dawsonjamar@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '30', - jobTitle: 'Front End Engineer (Mid Level)', - industry: 'Translation', - cities: ['Tucson', 'Memphis'], - }, - { - company: 'SEAT:CODE', - name: 'Andrรฉs Gutiรฉrrez Ramรญrez', - email: 'agfeynman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/andresgutierrezramirez/', - campus: 'PTRI', - cohort: '5', - jobTitle: 'Senior Fullstack Engineer', - industry: 'Software / Tech', - cities: ['North Las Vegas', 'Dallas', 'Philadelphia'], - }, - { - company: 'Second Wave Technologies', - name: 'Nicholas Suzuki', - email: 'nicholassuzuki@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/nicholas-j-suzuki/', - campus: 'FTRI / CTRI', - cohort: '5', - jobTitle: 'Software Engineer', - industry: 'Consulting', - cities: ['Detroit', 'New York', 'Oklahoma City'], - }, - { - company: 'SecureSeniorConnections', - name: 'Timothy', - email: 'tim.atapagra@gmail.com', - linkedIn: 'https://www.linkedin.com/in/timpagra/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Software Developer', - industry: 'Hospitals', - cities: ['Plano', 'Riverside', 'Glendale'], - }, - { - company: 'Seed Health', - name: 'John SaeHwan Lee', - email: 'john.saehwan.lee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/john-saehwan-lee/', - campus: 'NYC / ECRI', - cohort: '39', - jobTitle: 'Fullstack Software Engineer I', - industry: 'Fitness/Wellness', - cities: ['Durham', 'Scottsdale', 'Henderson'], - }, - { - company: 'SeedFi', - name: 'Peter Millspaugh', - email: 'peterdgmillspaugh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/peter-millspaugh/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Oakland', 'Chandler', 'Phoenix'], - }, - { - company: 'Seedfi', - name: 'Stephen Grable', - email: 'stephengrable@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stephen-grable/', - campus: 'NYC', - cohort: '3', - jobTitle: 'Senior Software Engineer', - industry: 'Finance', - cities: ['Fort Worth'], - }, - { - company: 'SEL', - name: 'Jace Crowe', - email: 'jace.crowe@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jacecrowe/', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Software Engineer - Front End', - industry: 'Energy/Cleantech/Greentech', - cities: ['North Las Vegas', 'Buffalo'], - }, - { - company: 'Send Out Carda', - name: 'Chris romano', - email: 'Chrispaulromano@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '15', - jobTitle: 'Front end engineer', - industry: 'Not sure: itโ€™s a subscription service for designing hallmark style cards', - cities: ['Tokyo', 'Saint Paul'], - }, - { - company: 'SENSE Chat', - name: 'Donte Nall', - email: 'donte.nall@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '25', - jobTitle: 'Senior Mobile Developer', - industry: 'Consulting', - cities: ['Detroit'], - }, - { - company: 'Sensei', - name: 'Kevin Fey', - email: 'kevinfey@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kevin-fey/', - campus: 'LA', - cohort: '37', - jobTitle: 'Senior Frontend Engineer', - industry: 'Wellness', - cities: ['Stockton', 'Newark', 'Henderson'], - }, - { - company: 'SequinAR', - name: 'Wyatt Bell', - email: 'wcbell51@gmail.com', - linkedIn: 'https://www.linkedin.com/in/wyatt-bell1/', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Engineer', - industry: 'Augmented Reality, Entertainment', - cities: ['Greensboro', 'Tulsa'], - }, - { - company: 'ServiceTrade', - name: 'Robert Beier', - email: 'robert.f.beier@gmail.com', - linkedIn: 'https://www.linkedin.com/in/robert-f-beier/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Software Engineer II', - industry: 'Contractor Software', - cities: ['Indianapolis'], - }, - { - company: 'Setsail Marketing', - name: 'Kirsten Milic', - email: 'kirsten.milic@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kirsten-milic/', - campus: 'LA / WCRI', - cohort: '57', - jobTitle: 'Software Engineer', - industry: 'Marketing/Advertising', - cities: ['New York', 'Houston', 'Greensboro', 'Santa Ana'], - }, - { - company: 'Sev1Tech', - name: 'Adam Vanek', - email: 'atvanek@gmail.com', - linkedIn: 'https://www.linkedin.com/in/atvanek/', - campus: 'FTRI / CTRI', - cohort: '15', - jobTitle: 'Full Stack Developer', - industry: 'Government', - cities: ['Paris', 'Toronto', 'Long Beach'], - }, - { - company: 'Shadow Health', - name: 'Khandker Islam', - email: 'khandker.islam46@gmail.com', - linkedIn: 'https://www.linkedin.com/in/khandkerislam/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Software Engineer II', - industry: 'Virtual Reality Education', - cities: ['Seattle'], - }, - { - company: 'SharpenCX', - name: 'Anu Sharma', - email: 'anu.le.pau@gmail.com', - linkedIn: 'https://www.linkedin.com/in/anulepau', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Senior Full Stack Developer', - industry: 'Software / Tech', - cities: ['Pittsburgh', 'Sacramento', 'Baltimore', 'Saint Paul'], - }, - { - company: 'Sherwin Williams', - name: 'Seamus Ryan', - email: 'd.seamus.ryan@outlook.com', - linkedIn: 'https://www.linkedin.com/in/dseamusryan/', - campus: 'LA', - cohort: '39', - jobTitle: 'React Developer', - industry: 'Consumer', - cities: ['Toronto', 'Chandler', 'St. Petersburg'], - }, - { - company: 'Shift', - name: 'Ralph Salazar', - email: 'ralph.slzr@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ralph-salazar', - campus: 'NYC', - cohort: '2', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Wichita', 'Indianapolis', 'Cincinnati'], - }, - { - company: 'Showtime', - name: 'Dan Teng', - email: 'danwteng@gmail.com', - linkedIn: 'https://www.linkedin.com/feed/', - campus: 'NYC', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Entertainment', - cities: ['Fort Wayne', 'Boston'], - }, - { - company: 'Shut Up & Write!', - name: 'Anthony Al-Rifai', - email: 'anthonyalrifai@gmail.com', - linkedIn: 'https://www.linkedin.com/in/anthony-al-rifai/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Full Stack Developer', - industry: 'Events', - cities: ['Paris', 'Sรฃo Paulo', 'Chandler'], - }, - { - company: 'Shutterstock', - name: 'Ari Shoham', - email: 'arishoham@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ari-shoham/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Software Engineer III', - industry: 'Photography', - cities: ['Mumbai'], - }, - { - company: 'Shutterstock', - name: 'Eli Davis', - email: 'eli.davis42@gmail.com', - linkedIn: 'https://www.linkedin.com/in/elidavis42/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Sรฃo Paulo', 'Charlotte'], - }, - { - company: 'Shutterstock', - name: 'Michael Pay', - email: 'michael.edward.pay@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael-edward-pay/', - campus: 'LA', - cohort: '46', - jobTitle: 'SDET III', - industry: 'Entertainment', - cities: ['Lubbock'], - }, - { - company: 'Shutterstock, Inc.', - name: 'Jake B Douglas', - email: 'jbrandondouglas@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '11', - jobTitle: 'Software Engineer, Projects', - industry: 'Tech? stock photography?', - cities: ['Portland', 'Anaheim'], - }, - { - company: 'Sidecar Health', - name: 'Sumin Kim', - email: 'ppsm920@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ppsm920/', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer', - industry: 'Healthcare / insurance', - cities: ['Sacramento', 'Stockton'], - }, - { - company: 'Sierra Nevada Corporation', - name: 'Matthew Xing', - email: 'matthew.xing@gmail.com', - linkedIn: 'https://www.linkedin.com/in/matthew-xing/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Software Engineer II - Space Systems', - industry: 'Other', - cities: ['Oklahoma City', 'Durham', 'Reno'], - }, - { - company: 'Signos', - name: 'Rebecca Anderson', - email: 'randersonviolin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rebecca--anderson/', - campus: 'NYC / ECRI', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['Greensboro'], - }, - { - company: 'SigTech', - name: 'Robert Howton', - email: 'robert.f.howton@gmail.com', - linkedIn: 'https://www.linkedin.com/in/roberthowton/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Fullstack Software Engineer', - industry: 'Fintech', - cities: ['Orlando', 'Durham'], - }, - { - company: 'SimpliSafe', - name: 'Cindy Chau', - email: 'cindychau38@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cindychau38/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Engineer II', - industry: 'Security', - cities: ['Plano', 'Fort Wayne', 'Anaheim'], - }, - { - company: 'Simplr', - name: 'Grigor Minasyan', - email: 'grigorminasyan1998@gmail.com', - linkedIn: 'https://www.linkedin.com/in/grigor-minasyan', - campus: 'FTRI', - cohort: '1', - jobTitle: 'Front end engineer', - industry: 'Customer service software', - cities: ['Garland', 'El Paso'], - }, - { - company: 'SimplyWise', - name: 'Justin Jaeger', - email: 'jjustinjaeger@gmail.com', - linkedIn: 'https://www.linkedin.com/in/justin-jaeger/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Software Engineer', - industry: 'Cloud storage', - cities: ['New York', 'Long Beach', 'Laredo', 'Toledo'], - }, - { - company: 'Sinclair Broadcast Group', - name: 'Michael Filoramo', - email: 'mlfiloramo@gmail.com', - linkedIn: 'linkedin.com/in/michael-filoramo/', - campus: 'PTRI', - cohort: '6', - jobTitle: 'Full Stack Software Engineer III', - industry: 'Media', - cities: ['Chicago', 'Sรฃo Paulo', 'Columbus'], - }, - { - company: 'Sinclair Broadcast Group', - name: 'David Beame', - email: 'dbeame291@gmail.com', - linkedIn: 'https://www.linkedin.com/in/david-beame/', - campus: 'LA / WCRI', - cohort: '55', - jobTitle: 'Associate Software Developer', - industry: 'Media', - cities: ['Gilbert', 'Fort Worth', 'Orlando'], - }, - { - company: 'Sinclair Broadcasting', - name: 'Joshua Reed', - email: 'joshreed104@gmail.com', - linkedIn: 'https://www.linkedin.com/in/josh-a-reed/', - campus: 'LA / WCRI', - cohort: '54', - jobTitle: 'Associate Development Engineer', - industry: 'Telecommunications', - cities: ['Minneapolis', 'Gilbert', 'Cincinnati', 'Norfolk'], - }, - { - company: 'Singa', - name: 'Paul Kassar', - email: 'p.kassar@hotmail.com', - linkedIn: 'https://www.linkedin.com/in/paulkassar/', - campus: 'NYC', - cohort: '3', - jobTitle: 'Engineer', - industry: 'Outdoor Recreation', - cities: ['Long Beach', 'Lubbock', 'Corpus Christi', 'Las Vegas'], - }, - { - company: 'SiriusXM', - name: 'Ben Brower', - email: 'Bbrower1293@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ben-brower-80660073', - campus: 'NYC', - cohort: '21', - jobTitle: 'Software Engineer III', - industry: 'Entertainment', - cities: ['Laredo'], - }, - { - company: 'Skechers', - name: 'Christopher Saavedra', - email: 'cssaavedra56@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chrisssaavedra/', - campus: 'LA', - cohort: '22', - jobTitle: 'Front end engineer', - industry: 'Retail/Manufacturing', - cities: ['Garland', 'Denver', 'San Francisco', 'Sydney'], - }, - { - company: 'Skematic', - name: 'Christina Or', - email: 'OR.CHRISTINA27@GMAIL.COM', - linkedIn: 'https://www.linkedin.com/in/christina-or', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Long Beach', 'Lexington', 'Glendale'], - }, - { - company: 'Sketch and Etch', - name: 'Kenny Lee', - email: 'kenkiblee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kennethkiboklee/', - campus: 'LA / WCRI', - cohort: '46', - jobTitle: 'Founding Engineer', - industry: 'Retail', - cities: ['Irvine', 'Laredo', 'Milwaukee', 'Anaheim'], - }, - { - company: 'SKF USA', - name: 'Steve Canavan', - email: 'stevenrosscanavan@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stevencanavan/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Front End Developer', - industry: 'Manufacturing', - cities: ['Winston-Salem', 'Mexico City'], - }, - { - company: 'Skillshare Inc.', - name: 'Chris Lung', - email: 'c.lung95@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chris-lung-5b69b2ba/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Edtech', - cities: ['Colorado Springs', 'Buffalo'], - }, - { - company: 'Skillstorm, contracting at Bank of America', - name: 'Adam Singer', - email: 'Spincycle01@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/adsing/', - campus: 'NYC', - cohort: '10', - jobTitle: 'Application Programmer', - industry: 'Fintech', - cities: ['Pittsburgh', 'Washington', 'Miami'], - }, - { - company: 'Skout Cybersecurity', - name: 'Garrett James', - email: 'garrettjames55@gmail.com', - linkedIn: 'https://www.linkedin.com/in/garrett-lamar-james/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Senior Software Engineer', - industry: 'Cybersecurity', - cities: ['Chandler', 'Anaheim', 'Scottsdale', 'Orlando'], - }, - { - company: 'Sky Betting and Gaming / Flutter Entertainment', - name: 'Robert Drake', - email: 'rmdrake8@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rmdrake8/', - campus: 'NYC / ECRI', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Sports/Sports betting', - cities: ['Honolulu', 'Gilbert', 'Buffalo'], - }, - { - company: 'Skylark Travel', - name: 'Giuseppe Valentino', - email: 'zepvalue@gmail.com', - linkedIn: 'https://www.linkedin.com/in/zepvalue/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Senior Full Stack Developer', - industry: 'Travel', - cities: ['Omaha', 'Tampa', 'Lexington', 'New Orleans'], - }, - { - company: 'Skylight', - name: 'Michael Lu', - email: 'michaellu213@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael-lu/', - campus: 'LA', - cohort: '27', - jobTitle: 'Full Stack Engineer', - industry: 'Consumer Goods', - cities: ['Indianapolis', 'Milwaukee'], - }, - { - company: 'Slalom', - name: 'Angela Franco', - email: 'angelajfranco18@gmail.com', - linkedIn: 'https://www.linkedin.com/in/angela-j-franco', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer (Consultant)', - industry: 'Consulting', - cities: ['Baltimore', 'Jacksonville'], - }, - { - company: 'slalom', - name: 'Sara Kivikas', - email: 'sarakivikas@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sara-kivikas/', - campus: 'LA', - cohort: '49', - jobTitle: 'Software Engineer', - industry: 'Consulting', - cities: ['San Jose'], - }, - { - company: 'Slang.ai', - name: 'Kevin Luo', - email: 'luokev1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kevinluo117/', - campus: 'NYC', - cohort: '17', - jobTitle: 'Software Engineer', - industry: 'Customer Service', - cities: ['Chicago', 'Wichita', 'Louisville'], - }, - { - company: 'SlyEco', - name: 'Nicolas Jackson', - email: 'nicolasljax@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nicjax/', - campus: 'NYOI', - cohort: '2', - jobTitle: 'Lead Software Engineer', - industry: 'Energy/Cleantech/Greentech', - cities: ['San Diego'], - }, - { - company: 'Smarkets', - name: 'Nicholas Healy', - email: 'nickrhealy@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nick-r-healy', - campus: 'LA', - cohort: '36', - jobTitle: 'Frontend Engineer', - industry: 'Fintech', - cities: ['Omaha', 'Lubbock', 'Detroit'], - }, - { - company: 'Smartbiz', - name: 'Dennis Lopez', - email: 'dnnis.lpz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dennis-lopezsb/', - campus: 'LA', - cohort: '40', - jobTitle: 'Frontend Engineer', - industry: 'Fintech', - cities: ['Oklahoma City', 'Washington', 'Jersey City'], - }, - { - company: 'Smartrr', - name: 'Jeffrey Zheng', - email: 'zhengj98@outlook.com', - linkedIn: 'https://www.linkedin.com/in/jefzheng/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Software Developer', - industry: 'SaaS', - cities: ['Chandler', 'San Jose'], - }, - { - company: 'SmartSheet', - name: 'Isaiah Delgado', - email: 'Isaiah.del621@gmail.com', - linkedIn: 'https://www.linkedin.com/in/isaiahdel/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Software Engineer I', - industry: 'Computer Hardware & Software', - cities: ['Oklahoma City', 'Long Beach', 'Austin', 'Mesa'], - }, - { - company: 'SmartThings', - name: 'Samuel Carrasco', - email: 'Samhcarrasco@gmail.com', - linkedIn: 'https://www.linkedin.com/in/samuelhcarrasco', - campus: 'NYC', - cohort: '31', - jobTitle: 'Associate Software Engineer', - industry: 'Software / Tech', - cities: ['Jacksonville', 'Beijing', 'Miami', 'Laredo'], - }, - { - company: 'Snag Films', - name: 'Muhammad Sheikh', - email: 'muhammad.sheikh93@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/mhsheikh/', - campus: 'NYC', - cohort: '3', - jobTitle: 'Software Developer', - industry: '', - cities: ['Detroit', 'San Diego', 'Colorado Springs'], - }, - { - company: 'Snap eHealth', - name: 'Jordan Hisel', - email: 'hiseljm@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jordan-h-3b7686121/', - campus: 'LA', - cohort: '45', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['Chula Vista', 'Fresno', 'Fort Worth'], - }, - { - company: 'Snap Inc', - name: 'Christopher Guizzetti', - email: 'guizzettic@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christopherguizzetti', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Entertainment', - cities: ['Madison', 'Jersey City', 'Corpus Christi'], - }, - { - company: 'Snap Inc', - name: 'Madeline Doctor', - email: 'madelinemdoctor@gmail.com', - linkedIn: 'https://www.linkedin.com/in/madeline-doctor/', - campus: 'NYOI', - cohort: '1', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Norfolk', 'Los Angeles'], - }, - { - company: 'Snap Inc.', - name: 'Kirsten Yoon', - email: 'kirstenyoon@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kirstenyoon', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer', - industry: 'camera, social media', - cities: ['Tampa', 'Madison'], - }, - { - company: 'Socialive', - name: 'Alexander Infante', - email: 'alexinfante17@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexander-infante/', - campus: 'LA', - cohort: '35', - jobTitle: 'Platform Engineer', - industry: 'Video Streaming', - cities: ['Lubbock', 'Fresno', 'Houston'], - }, - { - company: 'SoftWriters', - name: 'Jane You', - email: 'janeyou94@gmail.com', - linkedIn: 'linkedin.com/in/janeyou94', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Garland'], - }, - { - company: 'Sojo', - name: 'Irina Khafizova', - email: 'irinakhafi@gmail.com', - linkedIn: 'https://www.linkedin.com/in/irina-khafizova/', - campus: 'NYC / ECRI', - cohort: '38', - jobTitle: 'Frontend software engineer', - industry: 'Hospitality', - cities: ['Henderson', 'Lubbock', 'Garland', 'New York'], - }, - { - company: 'Solera Health', - name: 'Joel Park', - email: 'Joelpark97@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joelprkk/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['Denver', 'Tulsa', 'Oklahoma City', 'Irvine'], - }, - { - company: 'Solid State Scientific Corporation', - name: 'Tadd LeRocque', - email: 't.lerocque@gmail.com', - linkedIn: 'https://www.linkedin.com/in/taddlerocque/', - campus: 'NYC / ECRI', - cohort: '40', - jobTitle: 'DevOps Software Developer', - industry: 'Data/Analytics/Cloud', - cities: ['St. Petersburg', 'Tokyo', 'Virginia Beach', 'Wichita'], - }, - { - company: 'Solo', - name: 'Carly Yarnell', - email: 'carly.yarnell21@gmail.com', - linkedIn: 'https://www.linkedin.com/in/carly-yarnell/', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Santa Ana'], - }, - { - company: 'Solvent', - name: 'Adam Seery', - email: 'acseery@gmail.com', - linkedIn: 'www.linkedin.com/in/adam-seery', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Miami', 'Los Angeles', 'Washington', 'St. Louis'], - }, - { - company: 'SOMA Global', - name: 'Adam Moore', - email: 'moore76sc@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adam-moore-se/', - campus: 'FTRI', - cohort: '6', - jobTitle: 'Platform Engineer', - industry: 'Public Safety', - cities: ['Sacramento', 'Orlando', 'Beijing'], - }, - { - company: 'Sonos', - name: 'Austin Andrews', - email: 'austinandrews@berkeley.edu', - linkedIn: 'https://www.linkedin.com/in/austinandrews17', - campus: 'FTRI', - cohort: '7', - jobTitle: 'Release Engineer', - industry: 'Software / Tech', - cities: ['Riverside', 'Atlanta'], - }, - { - company: 'Sonos', - name: 'Alexander Nance', - email: 'balexn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/balexandernance', - campus: 'NYC', - cohort: '23', - jobTitle: 'Senior Software Engineer', - industry: 'Consumer Electronics', - cities: ['Charlotte', 'Atlanta', 'Nashville', 'Houston'], - }, - { - company: 'Sonr', - name: 'Ian Judd', - email: 'Iankimjudd@gmail.com', - linkedIn: 'https://www.linkedin.com/in/iankjudd/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Full Stack Developer', - industry: 'Web3', - cities: ['Winston-Salem', 'St. Louis', 'Durham', 'Chicago'], - }, - { - company: 'Sourcepoint Technologies', - name: 'Adam straus', - email: 'a.straus1@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '18', - jobTitle: 'Software Engineer', - industry: 'SaaS', - cities: ['Toledo'], - }, - { - company: 'Southern California Edison (via Sharp Decisions)', - name: 'Jie Yun (Catherine) Cheng', - email: 'chengjieyun59@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cat-cheng/', - campus: 'LA', - cohort: '33', - jobTitle: 'Sr. Full Stack Developer', - industry: 'Energy', - cities: ['Denver', 'San Diego'], - }, - { - company: 'SparkCognition', - name: 'Harvey Nguyen', - email: 'harveynwynn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/harveynwynn/', - campus: 'LA', - cohort: '47', - jobTitle: 'Software Engineer II', - industry: 'Artificial intelligence', - cities: ['Indianapolis', 'Pittsburgh', 'Mexico City'], - }, - { - company: 'SparrowFi', - name: 'Alex Barbazan', - email: 'Agbarbazan@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Dallas'], - }, - { - company: 'Spatial Data Logic', - name: 'Thomas Lukasiewicz', - email: 'tlukasiewicz89@gmail.com', - linkedIn: 'https://www.linkedin.com/feed/', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Oakland', 'Sacramento', 'Beijing'], - }, - { - company: 'Spearmint', - name: 'Chloe Aribo', - email: 'chloearibo92@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chloe-aribo/', - campus: 'LA', - cohort: '33', - jobTitle: 'Senior Software Engineer', - industry: 'Security', - cities: ['Chicago'], - }, - { - company: 'SpecTrust', - name: 'Tehya Rassman', - email: 'tehyaarassman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tehya-rassman/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Software Engineer', - industry: 'Cybercrime', - cities: ['San Jose', 'Kansas City', 'Madison', 'Honolulu'], - }, - { - company: 'Specturm', - name: 'Sanjay Lavingia', - email: 'SanjayLavingia@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sanjay-lavingia/', - campus: 'LA', - cohort: '38', - jobTitle: 'Software Engineer', - industry: 'Telecom', - cities: ['Raleigh', 'Colorado Springs', 'Mesa'], - }, - { - company: 'Spirent Communications', - name: 'Dylan Bury', - email: 'dylanbury@protonmail.com', - linkedIn: 'https://www.linkedin.com/in/dylanbury/', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer', - industry: 'Telecommunications', - cities: ['Mesa', 'Minneapolis', 'Detroit'], - }, - { - company: 'Splash Financial', - name: 'Bahram Bagherzadeh', - email: 'bjbagher@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bbagher/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Senior Software Engineer', - industry: 'Finance', - cities: ['Seattle'], - }, - { - company: 'Splunk', - name: 'Caroline Kimball', - email: 'kimballcaroline@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kimballcaroline/', - campus: 'NYC / ECRI', - cohort: '37', - jobTitle: 'Software Engineer', - industry: 'Security/Data Privacy', - cities: ['Virginia Beach', 'New York', 'St. Louis'], - }, - { - company: 'Spotify', - name: 'Aaron Bart-Addison', - email: 'abaddison16@gmail.com', - linkedIn: 'https://www.linkedin.com/in/abaddison16/', - campus: 'NYC', - cohort: '6', - jobTitle: 'Web Engineer II', - industry: '', - cities: ['Atlanta'], - }, - { - company: 'Spotify', - name: 'Amanda Flink', - email: 'avflinkette@gmail.com', - linkedIn: 'https://www.linkedin.com/in/amandaflink/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Senior Web Engineer', - industry: 'Entertainment', - cities: ['Sรฃo Paulo', 'Lexington', 'Oklahoma City', 'Indianapolis'], - }, - { - company: 'Spotify', - name: 'Chris Kopcow', - email: 'ckopcow@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christopherkopcow/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Technical Writer', - industry: 'Entertainment', - cities: ['Jersey City', 'Gilbert'], - }, - { - company: 'Spotify', - name: 'Trevor Gray', - email: 'trevor.m.gray@outlook.com', - linkedIn: 'https://www.linkedin.com/mwlite/in/trev-gray', - campus: 'FTRI', - cohort: '7', - jobTitle: 'Frontend Engineer', - industry: 'Entertainment', - cities: ['Phoenix'], - }, - { - company: 'Spring Health', - name: 'Kassandra Meyer', - email: 'kassandram022@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kassandram/', - campus: 'LA', - cohort: '31', - jobTitle: 'Frontend Engineer', - industry: 'Healthcare', - cities: ['Chicago', 'North Las Vegas', 'Henderson'], - }, - { - company: 'SpringHealth', - name: 'Matthew Huang', - email: 'matthewhuang24@gmail.com', - linkedIn: 'https://www.linkedin.com/in/matthew-huang/', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['Columbus', 'Orlando', 'San Diego'], - }, - { - company: 'Spruce', - name: 'Edward Ryan', - email: '15ryane@gmail.com', - linkedIn: 'https://www.linkedin.com/in/edward-ryan/', - campus: 'LA', - cohort: '27', - jobTitle: 'Software Engineer', - industry: 'Hospitality Services', - cities: ['Lexington', 'Fort Wayne'], - }, - { - company: 'SPS Health', - name: 'Mark Teets', - email: 'markteets@gmail.com', - linkedIn: 'https://www.linkedin.com/in/markteets/', - campus: 'FTRI / CTRI', - cohort: '15', - jobTitle: 'Application Developer', - industry: 'Healthtech/Healthcare', - cities: ['Mesa', 'Sรฃo Paulo'], - }, - { - company: 'Spur Reply', - name: 'Jeffrey Pettis', - email: 'jeffrey.pettis@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jeffreypettis/', - campus: 'PTRI', - cohort: '9', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: ['Virginia Beach', 'Tokyo', 'Chula Vista'], - }, - { - company: 'Square', - name: 'Christopher Akinrinade', - email: 'chris.akinrinade@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christopher-akinrinade/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Charlotte', 'Omaha', 'Norfolk'], - }, - { - company: 'Square', - name: 'Juan Espinoza', - email: 'espinozajuan562@gmail.com', - linkedIn: 'https://www.linkedin.com/in/espinoza-juan/', - campus: 'LA', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Lexington', 'Detroit'], - }, - { - company: 'Square Root, Inc.', - name: 'Angel Vega', - email: 'angelvega85@gmail.com', - linkedIn: 'https://www.linkedin.com/in/angel-e-vega', - campus: 'LA', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Information Technology', - cities: ['Fresno', 'Chicago', 'Indianapolis'], - }, - { - company: 'STA Group', - name: 'Gabriel Machado', - email: 'bielchristo@hotmail.com', - linkedIn: '', - campus: 'LA', - cohort: '42', - jobTitle: 'UI Engineer', - industry: 'Consulting', - cities: ['New Orleans', 'Washington', 'Las Vegas', 'Oklahoma City'], - }, - { - company: 'Stacked Invest', - name: 'Ross Lamerson', - email: 'ross.lamerson@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lamerson28/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Software Engineer - Front End', - industry: 'Cryptocurrency / Fintech', - cities: ['Tucson', 'Anaheim', 'Cincinnati'], - }, - { - company: 'Standard Bots', - name: 'Arshia Masih', - email: 'arshia.masih@gmail.com', - linkedIn: 'https://www.linkedin.com/in/arshiamasih/', - campus: 'LA', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Robotics / Industrial Automation', - cities: ['Jersey City', 'Austin'], - }, - { - company: 'Starbucks', - name: 'Sam Carter', - email: 'sammahcarter@gmail.com', - linkedIn: 'https://linkedin.com/in/cartersamj', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Software Engineer', - industry: 'Restaurant, Food, and Beverage', - cities: ['Philadelphia'], - }, - { - company: 'Stardust', - name: 'James Tu', - email: 'tu.james@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jamestu2000/', - campus: 'LA', - cohort: '21', - jobTitle: 'Full Stack Engineer', - industry: '', - cities: ['Portland'], - }, - { - company: 'State Farm', - name: 'James Manahan', - email: 'manahanjames@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/jamesmanahan/', - campus: 'LA', - cohort: '34', - jobTitle: 'Software Developer', - industry: 'Insurance', - cities: ['Houston', 'Jersey City'], - }, - { - company: 'Steel Perlot', - name: 'Morris Kolman', - email: 'morristskolman@gmail.com', - linkedIn: 'linkedin.com/in/morrykolman', - campus: 'NYOI', - cohort: '2', - jobTitle: 'Initiative Lead: Social Media', - industry: 'Software / Tech', - cities: ['Raleigh', 'Madison', 'Greensboro', 'Arlington'], - }, - { - company: 'SteelHouse', - name: 'Jordan Betzer', - email: 'jordanbetzer@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jordanbetzer/', - campus: 'LA', - cohort: '26', - jobTitle: 'Software Engineer - Backend', - industry: 'Healthcare', - cities: ['Denver', 'Toledo', 'Arlington', 'Austin'], - }, - { - company: 'SteelHouse', - name: 'Taylor Burrington', - email: 'taylor.burrington@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Ad Tech', - cities: ['Jersey City'], - }, - { - company: 'Stem Disintermedia Inc.', - name: 'Mia Huynh', - email: 'mia@stem.is', - linkedIn: 'https://www.linkedin.com/in/miamyhuynh/', - campus: 'LA', - cohort: '22', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Atlanta'], - }, - { - company: 'Storyblocks', - name: 'Eric Gomez', - email: 'Ergomez0201@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eric-gomez', - campus: 'LA / WCRI', - cohort: '48', - jobTitle: 'Senior Software Engineer', - industry: 'Software / Tech', - cities: ['North Las Vegas', 'Dallas', 'Aurora'], - }, - { - company: 'Streamlit', - name: 'Sam Haar', - email: 'samhaar@gmail.com', - linkedIn: 'https://www.linkedin.com/in/samhaar/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Software Engineer', - industry: 'ML / Data / Open Source', - cities: ['Long Beach', 'Tucson', 'Detroit'], - }, - { - company: 'Stride', - name: 'Kaitlin Zhang', - email: 'Kaitlin.Zhang@owasp.org', - linkedIn: 'https://www.linkedin.com/in/kaizengrowth/', - campus: 'FTRI', - cohort: '9', - jobTitle: 'Software Engineer, Writer/Instructor', - industry: 'Software / Tech', - cities: ['Minneapolis'], - }, - { - company: 'Stride Health, Inc.', - name: 'Ben Kwak', - email: 'benjamin.h.kwak@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ben-kwak/', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Engineer, Full Stack', - industry: 'Insurance', - cities: ['Kansas City', 'Baltimore', 'Chandler'], - }, - { - company: 'Strider Technologies ', - name: 'Timothy Chang ', - email: 'timchang87@gmail.com', - linkedIn: 'https://www.linkedin.com/in/timchang87', - campus: 'PTRI', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Las Vegas', 'Denver', 'El Paso', 'Detroit'], - }, - { - company: 'Stroz Friedberg', - name: 'Madalyn Baehre', - email: 'mmbaehre@gmail.com', - linkedIn: 'https://www.linkedin.com/in/madalynbaehre/', - campus: 'LA', - cohort: '20', - jobTitle: 'Full-Stack Software Developer', - industry: '', - cities: ['London'], - }, - { - company: 'Stuff', - name: 'Joseph Toledano', - email: 'joseph.a.toledano@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joetoledano/', - campus: 'NYC', - cohort: '23', - jobTitle: 'Software Developer', - industry: 'On-Demand Work', - cities: ['Anchorage', 'Oakland', 'Winston-Salem'], - }, - { - company: 'Stuller, Inc.', - name: 'Sarah Moosa', - email: '14sbethm@gmail.com', - linkedIn: 'https://linkedin.com/in/sarah-e-moosa', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Full Stack Developer', - industry: 'Retail', - cities: ['Phoenix', 'San Francisco'], - }, - { - company: 'Stylitics', - name: 'Tania Lind', - email: 'tania.o.lind@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lind-tania/', - campus: 'LA', - cohort: '39', - jobTitle: 'Senior Frontend Engineer', - industry: 'Fashion', - cities: ['Glendale', 'Atlanta'], - }, - { - company: 'Suki AI', - name: 'Edward Shei', - email: 'edwardshei@gmail.com', - linkedIn: 'https://www.linkedin.com/in/edwardshei/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Engineer', - industry: 'Medical Transcription', - cities: ['Indianapolis', 'Anchorage', 'Tokyo'], - }, - { - company: 'Surfside', - name: 'Alec Below', - email: 'alecbelow@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '17', - jobTitle: 'Software Engineer - Platform Integration', - industry: 'Advertising', - cities: ['Denver', 'Durham'], - }, - { - company: 'Suuchi.com', - name: 'David Kim', - email: 'davidkim024@gmail.com', - linkedIn: 'https://www.linkedin.com/in/davidkim024/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Senior Full Stack Engineer', - industry: 'Manufacturing', - cities: ['Seattle', 'Fresno', 'Paris'], - }, - { - company: 'Sweetgreen', - name: 'Emilia Brizuela-Nothaft', - email: 'emiliacarmel@gmail.com', - linkedIn: 'https://www.linkedin.com/in/emilia-brizuela-nothaft/', - campus: 'LA', - cohort: '26', - jobTitle: 'Software Engineer', - industry: 'Food', - cities: ['Buffalo', 'Dallas'], - }, - { - company: 'Sweetgreen', - name: 'Melody Chai', - email: 'melodychai2@gmail.com', - linkedIn: 'https://www.linkedin.com/in/melodychai/', - campus: 'LA', - cohort: '26', - jobTitle: 'Engineer I', - industry: 'Fast Casual Dining', - cities: ['Phoenix'], - }, - { - company: 'Swisher International, Inc', - name: 'John Howell', - email: 'tsjohnnyh@gmail.com', - linkedIn: 'https://www.linkedin.com/in/johnny-r-howell/', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'eCommerce Development Supervisor', - industry: 'Other', - cities: ['Detroit', 'Virginia Beach', 'St. Petersburg', 'Miami'], - }, - { - company: 'Swoon', - name: 'Tyler Wilson', - email: 'wilsontyler95@gmail.com', - linkedIn: 'https://www.linkedin.com/in/twilsontech', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['Saint Paul', 'Honolulu', 'Bakersfield', 'Nashville'], - }, - { - company: 'Synapse FI', - name: 'Mike Huynh', - email: 'mhuynh517@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mikehuynh28/', - campus: 'LA', - cohort: '28', - jobTitle: 'Front-End Engineer II', - industry: 'Fintech', - cities: ['Oklahoma City'], - }, - { - company: 'T-Mobile', - name: 'Khang Sabre-Nguyen', - email: 'Klsabren.7@gmail.com', - linkedIn: 'https://www.linkedin.com/in/khang-sabre-nguyen/', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Software Engineer', - industry: 'Telecommunications', - cities: ['Saint Paul', 'Houston'], - }, - { - company: 'T-mobile', - name: 'Miaowen Zeng', - email: 'zmw0525@gmail.com', - linkedIn: 'www.linkedin.com/in/miaowen-zeng', - campus: 'FTRI / CTRI', - cohort: '7', - jobTitle: 'Associate Software Engineer', - industry: 'Telecommunications', - cities: ['Portland', 'Madison'], - }, - { - company: 'T. Rowe Price', - name: 'Liam Fontes', - email: 'liamfontes1244@gmail.com', - linkedIn: 'https://www.linkedin.com/in/liam-fontes/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Associate Software Engineer', - industry: 'Fintech', - cities: ['Glendale', 'Gilbert', 'Corpus Christi'], - }, - { - company: 'T. Rowe Price', - name: 'Robert Du', - email: 'robert.c.du@gmail.com', - linkedIn: 'https://www.linkedin.com/in/robert-du/', - campus: 'NYC', - cohort: '26', - jobTitle: 'Mid-Level Software Engineer (contract-to-hire)', - industry: 'Fintech', - cities: ['Glendale', 'Toledo'], - }, - { - company: 'Tailored Brands', - name: 'Viet Nguyen', - email: 'n.vietqb@gmail.com', - linkedIn: 'https://www.linkedin.com/in/viet-nguyen-2280491b2/', - campus: 'LA', - cohort: '45', - jobTitle: 'UI Engineer', - industry: 'Retail', - cities: ['Irvine', 'Sรฃo Paulo', 'Orlando'], - }, - { - company: 'Take Command Health', - name: 'Katie Janzen', - email: 'katiekennerjanzen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/katie-janzen/', - campus: 'NYC', - cohort: '32', - jobTitle: 'Front End Developer', - industry: 'Insurance', - cities: ['New York', 'Cleveland', 'Houston', 'Memphis'], - }, - { - company: 'Talage', - name: 'Parker Hutcheson', - email: 'pdhutcheson@gmail.com', - linkedIn: 'https://www.linkedin.com/in/parkerhutcheson/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Senior Software Engineer', - industry: 'Insurtech', - cities: ['San Jose', 'Jersey City', 'Corpus Christi'], - }, - { - company: 'Tallied', - name: 'Abeer Faizan', - email: 'abeerfaizan@gmail.com', - linkedIn: 'https://www.linkedin.com/in/abeerfaizan/', - campus: 'LA', - cohort: '47', - jobTitle: 'Software Engineer 2', - industry: 'Financial Services & Digital Payments', - cities: ['Fresno', 'Tucson', 'Philadelphia', 'Nashville'], - }, - { - company: 'Tandem Chat (Tandem Communications Inc.)', - name: 'John Jongsun Suh', - email: 'john.jongsun.suh@pm.me', - linkedIn: 'https://linkedin.com/in/john-jongsun-suh', - campus: 'LA', - cohort: '44', - jobTitle: 'Software Engineer', - industry: 'Communication/Productivity Software', - cities: ['Oklahoma City', 'Beijing', 'Laredo', 'St. Petersburg'], - }, - { - company: 'Tapestry', - name: 'Natalie Umanzor', - email: 'umanzor2949@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nmczormick/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'E-Commerce', - cities: ['Minneapolis', 'Washington'], - }, - { - company: 'Target', - name: 'Courtney Doss', - email: '777.catalyst@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '40', - jobTitle: 'Software Engineer', - industry: 'Retail', - cities: ['Long Beach'], - }, - { - company: 'Tatari', - name: 'Natalie Klein', - email: 'natklein3@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nataliesklein/', - campus: 'LA', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'TV ads', - cities: ['Tucson', 'Milwaukee'], - }, - { - company: 'TaxNow', - name: 'Tanner Lyon', - email: 'Tannerhlyon@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tannerhlyon', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Software Engineer', - industry: 'Business Tech/Enterprise Tech', - cities: ['San Diego', 'Seattle'], - }, - { - company: 'TaxSlayer', - name: 'Katherine Marrow', - email: 'kmcromer1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/katherine-marrow/', - campus: 'PTRI', - cohort: '9', - jobTitle: 'Full Stack Developer', - industry: 'Other', - cities: ['Winston-Salem'], - }, - { - company: 'Teachers Pay Teachers', - name: 'Courtney Kwong', - email: 'cwkwong95@gmail.com', - linkedIn: 'https://www.linkedin.com/in/courtneywkwong/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Full Stack Engineer', - industry: 'Media', - cities: ['Irvine', 'Tulsa'], - }, - { - company: 'Tech Holding', - name: 'Pablo Lee', - email: 'lee.pablo.e@gmail.com', - linkedIn: 'https://linkedin.com/in/pablo-lee/', - campus: 'LA', - cohort: '24', - jobTitle: 'Software Engineer', - industry: 'Media & Advertisement', - cities: ['Atlanta', 'Cleveland', 'Columbus'], - }, - { - company: 'TechEmpower', - name: 'Nick Stillman', - email: 'nick.edward.stillman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nick-e-stillman/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Programmer I', - industry: 'Software Development/Consulting', - cities: ['Baltimore', 'Chesapeake', 'Anchorage'], - }, - { - company: 'Technergetics', - name: 'Cody Schexnider', - email: 'codydschexnider@gmail.com', - linkedIn: 'https://www.linkedin.com/in/schexnider/', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Junior Software Engineer', - industry: 'Software / Tech', - cities: ['Reno', 'Sydney', 'Miami'], - }, - { - company: 'Technergetics', - name: 'Angel Giron', - email: 'angel.c.giron1@gmail.con', - linkedIn: 'https://www.linkedin.com/in/acgiron/', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Oakland', 'Nashville'], - }, - { - company: 'TEKsystems for AMEX', - name: 'Connor Rose Delisle', - email: 'connorrose.delisle@gmail.com', - linkedIn: 'https://www.linkedin.com/in/connorrosedelisle/', - campus: 'LA', - cohort: '37', - jobTitle: 'Developer', - industry: 'Banking', - cities: ['Tampa'], - }, - { - company: 'Teleport', - name: 'Cole Styron', - email: 'colestyron@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cole-styron/', - campus: 'LA', - cohort: '40', - jobTitle: 'Software Engineer II', - industry: 'Tech', - cities: ['San Francisco', 'Lexington'], - }, - { - company: 'Tempus', - name: 'Eterna tsai', - email: 'One.eternity@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eterna/', - campus: 'NYC', - cohort: '7', - jobTitle: 'Software engineer', - industry: '', - cities: ['Wichita', 'Houston', 'Paris', 'Honolulu'], - }, - { - company: 'Tend', - name: 'Christopher Johnson', - email: 'cjbeats@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thecjjohnson/', - campus: 'LA', - cohort: '39', - jobTitle: 'Junior Software Developer', - industry: 'Dentistry', - cities: ['Phoenix'], - }, - { - company: 'Terminus', - name: 'Jonathan Ascencio', - email: 'Jonascencio1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonascencio/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Engineer', - industry: 'Marketing Tevh', - cities: ['San Francisco'], - }, - { - company: 'The Action Network', - name: 'Diana Li', - email: 'dianalicarrasco@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dianalicarrasco/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Software Engineer II', - industry: 'Entertainment', - cities: ['Colorado Springs', 'Greensboro', 'Honolulu', 'Memphis'], - }, - { - company: 'The Action Network', - name: 'Mahmoud Hmaidi', - email: 'mhmaidi789@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mahmoud-hmaidi-mo/', - campus: 'LA', - cohort: '42', - jobTitle: 'Software Engineer II', - industry: 'Entertainment', - cities: ['Scottsdale', 'Lincoln', 'St. Petersburg'], - }, - { - company: 'The Charles Stark Draper Laboratory, Inc.', - name: 'Kelsey Flynn', - email: 'flynn.kelseyelizabeth@gmail.com', - linkedIn: 'www.linkedin.com/in/kelseyeflynn/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Member of Technical Staff in Fullstack Web Group', - industry: 'Research', - cities: ['Nashville', 'Charlotte', 'Oklahoma City', 'Baltimore'], - }, - { - company: 'The Coates Group', - name: 'Brandon Tran', - email: 'btran140@gmail.com', - linkedIn: 'https://www.linkedin.com/in/btran140', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Typescript Full Stack Engineer', - industry: 'Software / Tech', - cities: ['Lincoln', 'Gilbert'], - }, - { - company: 'The Cru', - name: 'Brooke Luro', - email: 'lurob@me.com', - linkedIn: 'https://www.linkedin.com/in/brooke-luro-4413046a/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Software Engineer', - industry: 'Professional Training & Coaching', - cities: ['Boston', 'Oakland', 'Toronto', 'Detroit'], - }, - { - company: 'The Edge Treatment Center', - name: 'Joey Ma', - email: 'joeyma@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joeyma/', - campus: 'LA / WCRI', - cohort: '47', - jobTitle: 'Web Developer', - industry: 'Healthcare', - cities: ['Winston-Salem', 'Toronto', 'Kansas City', 'North Las Vegas'], - }, - { - company: 'The Farm Project', - name: 'Quoc Bui', - email: 'quocbui@gmail.com', - linkedIn: 'https://www.linkedin.com/in/buiquoc/', - campus: 'LA', - cohort: '26', - jobTitle: 'Lead Web UI Engineer?', - industry: 'Telecommunications', - cities: ['Winston-Salem'], - }, - { - company: 'The Farmerโ€™s Dog', - name: 'Willem Rosenthal', - email: 'willemrosenthal@gmail.com', - linkedIn: 'https://www.linkedin.com/in/willem-rosenthal', - campus: 'NYOI', - cohort: '1', - jobTitle: 'Software Engineer III', - industry: 'Other', - cities: ['Toledo', 'El Paso'], - }, - { - company: 'the guarantors', - name: 'Dmitriy Levy', - email: 'dmitriylevy01@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dmitriy-levy/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Colorado Springs', 'New Orleans', 'Glendale'], - }, - { - company: 'The Home Depot', - name: 'Eric Han', - email: 'eric.j.h92@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eric-j-han/', - campus: 'LA / WCRI', - cohort: '48', - jobTitle: 'Front-End Developer', - industry: 'Retail', - cities: ['Jacksonville', 'Tulsa', 'Aurora', 'Plano'], - }, - { - company: 'The Home Depot', - name: 'Max Nikitin', - email: 'teachandtravelcn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/maxnikitin23/', - campus: 'LA', - cohort: '40', - jobTitle: 'Full Stack Software Engineer', - industry: 'Construction/retail', - cities: ['Dallas', 'Seattle', 'Corpus Christi'], - }, - { - company: 'The New York Times', - name: 'Karl Eden', - email: 'karl94e@gmail.com', - linkedIn: 'www.linkedin.com/in/karleden', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Software Engineer', - industry: 'News/Entertainment/Streaming Platforms', - cities: ['Denver', 'San Diego', 'Cincinnati'], - }, - { - company: 'The New Yorker', - name: 'Julien Devlin', - email: 'juliendevlin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/juliendevlin/', - campus: 'NYC / ECRI', - cohort: '38', - jobTitle: 'Software Developer', - industry: 'News/Entertainment/Streaming Platforms', - cities: ['Pittsburgh', 'Bakersfield'], - }, - { - company: 'The Perlman Clinic', - name: 'Louis Sheid', - email: 'louisxsheid@gmail.com', - linkedIn: 'https://www.linkedin.com/in/louisxsheid/', - campus: 'LA', - cohort: '36', - jobTitle: 'Full Stack Developer', - industry: 'Healthcare', - cities: ['Irving', 'Chula Vista', 'Phoenix'], - }, - { - company: 'The Prospector Theater', - name: 'Kelly Cuevas', - email: 'cuev73@live.com', - linkedIn: 'https://www.linkedin.com/in/kelly-cuevas/', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Lead Frontend Engineer', - industry: 'Social Impact/Nonprofit', - cities: ['Miami', 'Louisville', 'Henderson', 'Oklahoma City'], - }, - { - company: 'The Trevor Project / Tecnolochicas Pro', - name: 'Miranda Jaramillo Morales', - email: 'mirandajaramillomorales@gmail.com', - linkedIn: 'https://www.linkedin.com/in/miranda-jaramillo/', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Software Engineer II / Software Engineering Mentor', - industry: 'Software / Tech', - cities: ['San Antonio'], - }, - { - company: 'The Walt Disney Company', - name: 'Gabriel Machado', - email: 'bielchristo@hotmail.com', - linkedIn: 'https://www.linkedin.com/in/bielchristo/', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer', - industry: 'Entertainment', - cities: ['London', 'Boston', 'Madison', 'Norfolk'], - }, - { - company: 'The Walt Disney Company', - name: 'Ryan London', - email: 'ryel590@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ryanlondon/', - campus: 'LA', - cohort: '18', - jobTitle: 'Senior Software Engineer', - industry: 'IT', - cities: ['Tokyo', 'Toronto', 'Wichita'], - }, - { - company: 'The Walt Disney Company', - name: 'Shane Taylor', - email: 'shaneallantaylor@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shane-allan-taylor/', - campus: 'LA', - cohort: '27', - jobTitle: 'Software Engineer', - industry: 'Entertainment/Media', - cities: ['Long Beach', 'Chula Vista', 'Virginia Beach', 'Tokyo'], - }, - { - company: 'The Walt Disney Company', - name: 'Yurii Shchyrba', - email: 'yurashchyrba@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yuriishchyrba/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Software Engineer II', - industry: 'Software / Tech', - cities: ['Las Vegas'], - }, - { - company: 'The Washington Post', - name: 'Christelle Desire', - email: 'Cdesire20@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christelle-desire/', - campus: 'LA', - cohort: '39', - jobTitle: 'Full stack engineer', - industry: 'Newsroom', - cities: ['Lexington', 'Stockton', 'Newark', 'Cincinnati'], - }, - { - company: 'The Wing', - name: 'Xaria Kirtikar', - email: 'xariak91@gmail.com', - linkedIn: 'https://www.linkedin.com/in/xaria/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Engineer', - industry: 'Co-working spaces', - cities: ['Indianapolis'], - }, - { - company: 'The X Company', - name: 'Roy Quintana', - email: 'rolandquintana1991@gmail.com', - linkedIn: 'https://www.linkedin.com/in/royquintana/', - campus: 'LA', - cohort: '28', - jobTitle: 'Senior Software Engineer', - industry: 'Real Estate', - cities: ['San Francisco', 'Sรฃo Paulo', 'Louisville', 'Washington'], - }, - { - company: 'TheMuse', - name: 'Franklin pinnock', - email: 'pinnockf@gmail.com', - linkedIn: 'https://www.linkedin.com/in/pinnockf/', - campus: 'NYC', - cohort: '9', - jobTitle: 'Full-Stack Engineer', - industry: 'Robotics', - cities: ['Austin', 'London'], - }, - { - company: 'Thomson Reuters', - name: 'Li Cheng', - email: 'lilybearcheng@gmail.com', - linkedIn: 'https://www.linkedin.com/in/li-cheng-76890540/', - campus: 'LA / WCRI', - cohort: '50', - jobTitle: 'Integration Engineer', - industry: 'IT Services', - cities: ['Lubbock', 'Pittsburgh'], - }, - { - company: 'ThreeKit', - name: 'Alison Fay', - email: 'aliglass13@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alison-fay/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Wichita', 'Pittsburgh', 'El Paso', 'Aurora'], - }, - { - company: 'Thriveworks', - name: 'Alma Eyre', - email: 'aselunar@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alma-eyre/', - campus: 'NYC / ECRI', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['North Las Vegas'], - }, - { - company: 'Thriveworks', - name: 'Charissa Ramirez', - email: 'chawissa@gmail.com', - linkedIn: 'https://linkedin.com/in/chawissa', - campus: 'NYC / ECRI', - cohort: '32', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['Scottsdale'], - }, - { - company: 'Ticket Bridge', - name: 'Travis Frank', - email: 'travis@travismfrank.com', - linkedIn: 'https://www.linkedin.com/in/travis-m-frank/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Founder', - industry: 'Live Events', - cities: ['Boston'], - }, - { - company: 'TikTok', - name: 'James Cross', - email: 'jamespvcross@gmail.com', - linkedIn: 'https://www.linkedin.com/in/james-p-cross1/', - campus: 'NYC', - cohort: '28', - jobTitle: 'Software Engineer', - industry: 'Social Media', - cities: ['London', 'Cincinnati'], - }, - { - company: 'TikTok', - name: 'Jason Speare', - email: 'jcspeare@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jason-speare', - campus: 'LA', - cohort: '41', - jobTitle: 'Site Reliability Engineer', - industry: 'Video Social Networking', - cities: ['St. Petersburg', 'San Antonio'], - }, - { - company: 'Tinder', - name: 'Harrison Nam', - email: 'harrison.j.nam@gmail.com', - linkedIn: 'https://www.linkedin.com/in/harrison-nam/', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer', - industry: 'Social', - cities: ['Honolulu', 'Pittsburgh'], - }, - { - company: 'Tinder', - name: 'Harrison Nam', - email: 'harrison.j.nam@gmail.com', - linkedIn: 'https://www.linkedin.com/in/harrison-nam/', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer II, Web Development', - industry: 'Dating', - cities: ['Sรฃo Paulo'], - }, - { - company: 'Tinder', - name: 'Serge Vartanov', - email: 'vartanov.s@gmail.com', - linkedIn: 'https://www.linkedin.com/in/svartanov/', - campus: 'LA', - cohort: '24', - jobTitle: 'Senior Backend Engineer', - industry: '', - cities: ['Anaheim', 'Tucson', 'Mesa', 'St. Petersburg'], - }, - { - company: 'Tixologi', - name: 'Mark Nichting', - email: 'mtnichting@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mark-nichting/', - campus: 'LA / WCRI', - cohort: '53', - jobTitle: 'Frontend Engineer', - industry: 'Blockchain/Web3', - cities: ['Honolulu', 'Lincoln', 'St. Petersburg', 'Nashville'], - }, - { - company: 'Toast Inc', - name: 'Denys Dekhtiarenko', - email: 'dekhtiarenko.d@gmail.com', - linkedIn: 'https://www.linkedin.com/in/denysdekhtiarenko/', - campus: 'NYC', - cohort: '18', - jobTitle: 'Software Engineer II', - industry: 'Restaurant software', - cities: ['Mexico City', 'Bakersfield', 'Winston-Salem', 'Raleigh'], - }, - { - company: 'TodayTix Group', - name: 'Xiao Li', - email: 'lixtong@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lixiaotong/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Associate Software Engineer', - industry: 'Entertainment', - cities: ['Louisville', 'Raleigh', 'Norfolk', 'Charlotte'], - }, - { - company: 'TomoCredit', - name: 'Ramtin Khoee', - email: 'Ramtin.khoee@gmail.com', - linkedIn: 'https://www.linkedin.com/mwlite/in/ramtinkhoee', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Fort Worth'], - }, - { - company: 'Topologe (working with the Air Force)', - name: 'Joseph Michael Corrado', - email: 'joeyycorrss@gmail.com', - linkedIn: 'https://www.linkedin.com/in/josephmichaelcorrado/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Senior Software Engineer', - industry: 'Web Dev for Air Force', - cities: ['Orlando'], - }, - { - company: 'Tortus', - name: 'Victor To', - email: 'victorto123@gmail.com', - linkedIn: 'https://www.linkedin.com/in/victorto1/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer', - industry: 'Real Estate Tech', - cities: ['Wichita', 'Oklahoma City', 'Scottsdale'], - }, - { - company: 'Toucan', - name: 'Isaac Durand', - email: 'isaac.durand@gmail.com', - linkedIn: 'https://www.linkedin.com/in/isaacdurand', - campus: 'LA', - cohort: '5', - jobTitle: 'Senior Engineer II', - industry: '', - cities: ['Wichita', 'Virginia Beach', 'Anaheim'], - }, - { - company: 'Toucan', - name: 'Jane Kim', - email: 'jane.minhyung.kim@gmail.com', - linkedIn: 'https://www.linkedin.com/in/janeminhyungkim/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Software Engineer', - industry: 'Education tools', - cities: ['Cleveland'], - }, - { - company: 'Toyota', - name: 'Melanie Forbes', - email: 'mforbes12@gmail.com', - linkedIn: 'https://www.linkedin.com/in/melanie-forbes-/', - campus: 'FTRI / CTRI', - cohort: '12', - jobTitle: 'Software Engineer', - industry: 'Automotive', - cities: ['Newark'], - }, - { - company: 'Toyota', - name: 'Emily Hoang', - email: 'ethlin4@gmail.com', - linkedIn: 'https://www.linkedin.com/in/emilyhoang', - campus: 'FTRI / CTRI', - cohort: '14', - jobTitle: 'Software Engineer', - industry: 'Automotive', - cities: ['Oklahoma City'], - }, - { - company: 'TradeAlly', - name: 'Adepeju Orefejo', - email: 'adepeju.kayode@gmail.com', - linkedIn: 'https://www.linkedin.com/adepeju-orefejo', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Backend Engineer', - industry: 'Software / Tech', - cities: ['Saint Paul'], - }, - { - company: 'Travelers Companies Inc.', - name: 'Dylan Li', - email: 'dyli797@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dli107/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Software Engineer', - industry: 'Insurance', - cities: ['Sรฃo Paulo', 'Henderson', 'Memphis'], - }, - { - company: 'Trend micro', - name: 'Daniel Balistocky', - email: 'thestinx@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dannyb1983', - campus: 'LA', - cohort: '41', - jobTitle: 'Software engineer', - industry: 'Web security', - cities: ['Madison', 'Denver'], - }, - { - company: 'TreviPay', - name: 'Utkarsh Uppal', - email: 'utkarshuppal@gmial.com', - linkedIn: 'https://www.linkedin.com/in/utkarshuppal/', - campus: 'LA / WCRI', - cohort: '55', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: ['Omaha', 'St. Louis'], - }, - { - company: 'Tribe Labs Inc.', - name: 'Alexander Landeros', - email: 'alexander.landeros1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alexander-landeros/', - campus: 'LA', - cohort: '38', - jobTitle: 'Frontend Software Engineer', - industry: 'Communication Tech', - cities: ['Denver', 'Milwaukee'], - }, - { - company: 'Trineo', - name: 'Rebecca Viner', - email: 'rtviner@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rtviner/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Engineer II', - industry: 'Software Consultancy', - cities: ['Sacramento', 'North Las Vegas', 'Albuquerque', 'Henderson'], - }, - { - company: 'Tripadvisor', - name: 'Jake Bradbeer', - email: 'jakebradbeer@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jacobbradbeer/', - campus: 'LA', - cohort: '49', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Pittsburgh', 'Buffalo', 'Wichita'], - }, - { - company: 'TripleLift', - name: 'Arron Nestor', - email: 'arronnestor@gmail.com', - linkedIn: 'https://www.linkedin.com/in/arron-nestor/', - campus: 'PTRI', - cohort: '2', - jobTitle: 'Cloud Infrastructure Engineer', - industry: 'Ad-Tech', - cities: ['Fort Wayne', 'San Jose', 'Louisville'], - }, - { - company: 'Triplelift', - name: 'Kia Colbert', - email: 'colber16@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kiacolbert/', - campus: 'NYC', - cohort: '9', - jobTitle: 'Engineer I', - industry: 'Social Impact', - cities: ['Fort Worth'], - }, - { - company: 'True Tickets', - name: 'Alesi-Andreya Ladas', - email: 'alesiladas@gmail.com', - linkedIn: 'https://www.linkedin.com/in/alesiladas/', - campus: 'NYC', - cohort: '3', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Irving', 'San Antonio', 'Raleigh', 'Chicago'], - }, - { - company: 'TrueCar', - name: 'Calvin Cao', - email: 'jtcao430@gmail.com', - linkedIn: 'https://www.linkedin.com/in/calvincao9/', - campus: 'LA', - cohort: '48', - jobTitle: 'Software Engineer II', - industry: 'Marketing', - cities: ['Stockton', 'Durham', 'Washington'], - }, - { - company: 'TrueCar', - name: 'Zac Haluza', - email: 'zac.haluza@gmail.com', - linkedIn: 'https://www.linkedin.com/in/zhaluza/', - campus: 'NYC', - cohort: '17', - jobTitle: 'Software Engineer', - industry: 'Automotive', - cities: ['Fort Wayne', 'Indianapolis', 'Lincoln'], - }, - { - company: 'trueface.ai', - name: 'Sam Siye Yu', - email: 'yudataguy@gmail.com', - linkedIn: 'https://www.linkedin.com/in/yusiye/', - campus: 'LA', - cohort: '27', - jobTitle: 'full stack developer', - industry: 'computer vision', - cities: ['London'], - }, - { - company: 'Truepill', - name: 'Justin Baik', - email: 'bij3377@gmail.com', - linkedIn: 'https://www.linkedin.com/in/justin-baik/', - campus: 'LA', - cohort: '42', - jobTitle: 'Associate Software Engineer', - industry: 'Health Tech', - cities: ['Glendale', 'Arlington', 'Corpus Christi'], - }, - { - company: 'Truepill', - name: 'Jonah Stewart', - email: 'jonahlstewart@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jonahlstewart/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Associate Software Engineer - Backend', - industry: 'Healthtech', - cities: ['Fort Worth', 'Baltimore', 'San Antonio', 'Dallas'], - }, - { - company: 'Turbonomic', - name: 'Tyler Hurtt', - email: 'TylerAdamHurtt@gmail.com', - linkedIn: 'https://www.linkedin.com/in/TylerHurtt/', - campus: 'LA', - cohort: '34', - jobTitle: 'Senior Software Engineer', - industry: 'Cloud & Network Monitoring', - cities: ['North Las Vegas', 'Albuquerque'], - }, - { - company: 'Twilio', - name: 'Christopher Docuyanan', - email: 'Christophejd@gmail.com', - linkedIn: 'https://www.linkedin.com/in/cjdocuyanan/', - campus: 'LA', - cohort: '40', - jobTitle: 'Software Engineer (Personas R&D)', - industry: 'Communications', - cities: ['Toronto', 'Columbus', 'Jacksonville', 'Virginia Beach'], - }, - { - company: 'Twitch', - name: 'Alice Wong', - email: 'alice.sky.wong@gmail.com', - linkedIn: 'https://www.linkedin.com/in/wong-alice/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Frontend Engineer', - industry: 'IoT', - cities: ['Oklahoma City', 'Philadelphia'], - }, - { - company: 'Two Barrels LLC', - name: 'Ryan Rambaran', - email: 'ryanrambaran.fl@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ryan-rambaran/', - campus: 'PTRI', - cohort: '4', - jobTitle: 'Front End Developer', - industry: 'Software / Tech', - cities: ['Philadelphia', 'Berlin', 'Anaheim', 'Memphis'], - }, - { - company: 'Two Six Labs', - name: 'Kevin Nam', - email: 'Kevinjnam@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '31', - jobTitle: 'Software Engineer - Front End', - industry: 'Cybersecurity', - cities: ['Chesapeake', 'Paris', 'St. Louis'], - }, - { - company: 'TwoSix Labs', - name: 'Darren Napier', - email: 'darren.napier5@gmail.com', - linkedIn: 'https://www.linkedin.com/in/darrencnapier/', - campus: 'LA', - cohort: '31', - jobTitle: 'Jr. Frontend Developer', - industry: 'Government', - cities: ['Anchorage', 'Los Angeles'], - }, - { - company: 'TwoThirtySix Labs', - name: 'Tayvon Wright', - email: 'tayvonwright@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tayvon-wright/', - campus: 'NYC', - cohort: '10', - jobTitle: 'Backend Engineer', - industry: 'Crypto', - cities: ['Tucson', 'Paris'], - }, - { - company: 'Uber', - name: 'Michael Noah', - email: 'mnoah1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mnoah/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Software Engineer II', - industry: 'Transportation', - cities: ['Phoenix'], - }, - { - company: 'UiPath', - name: 'Eric Rodgers', - email: 'ericerodgers@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/erodgers/', - campus: 'NYC', - cohort: '31', - jobTitle: 'Software Engineer (SE1)', - industry: 'Software / Tech', - cities: ['Scottsdale', 'Philadelphia', 'Indianapolis', 'Oakland'], - }, - { - company: 'Umbra', - name: 'Joey Friedman', - email: 'friedman.joey@gmail.com', - linkedIn: 'https://www.linkedin.com/in/joseph-friedman-803803149/', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Software Engineer', - industry: 'Aerospace', - cities: ['Cincinnati', 'San Francisco'], - }, - { - company: 'Uncommon Schools', - name: 'Taryn A Cunha', - email: 'taryn.cunha@gmail.com', - linkedIn: 'LinkedIn.com/in/taryncunha', - campus: 'NYC / ECRI', - cohort: '34', - jobTitle: 'Integrationโ€™s Developer', - industry: 'Other', - cities: ['Baltimore', 'Plano'], - }, - { - company: 'Unify Consulting', - name: 'Gibran Haq', - email: 'gibran.haq57@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gibran-haq/', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Senior Consultant', - industry: 'Consulting', - cities: ['Santa Ana', 'Riverside', 'Colorado Springs', 'Chula Vista'], - }, - { - company: 'Uniphore', - name: 'Vince Vu', - email: 'vince.hvu@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vin-vu/', - campus: 'LA', - cohort: '42', - jobTitle: 'Full Stack Developer', - industry: 'Conversational Service Automation', - cities: ['Laredo', 'Saint Paul', 'Milwaukee', 'Anchorage'], - }, - { - company: 'Unit21', - name: 'Nicole Ip', - email: 'nicole@unit21.ai', - linkedIn: '', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer', - industry: 'AI / ML', - cities: ['Tulsa', 'Santa Ana', 'Tokyo', 'Mesa'], - }, - { - company: 'United Airlines', - name: 'Jordan Jeter', - email: 'jeter.education@gmail.com', - linkedIn: 'linkedin.com/in/jordanrjeter', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Developer - IT', - industry: 'Aerospace', - cities: ['Stockton', 'Plano', 'Atlanta', 'Bakersfield'], - }, - { - company: 'United Power', - name: 'Clifford Harvey', - email: 'cliffharvey06@gmail.com', - linkedIn: 'https://www.linkedin.com/in/clifford-harvey/', - campus: 'LA', - cohort: '16', - jobTitle: 'Sr Fullstack Developer', - industry: '', - cities: ['Orlando', 'Bakersfield', 'Milwaukee', 'Glendale'], - }, - { - company: 'United States Cold Storage Inc', - name: 'Glen Kasoff', - email: 'glen.kasoff@gmail.com', - linkedIn: 'https://www.linkedin.com/in/glen-kasoff', - campus: 'PTRI', - cohort: '7', - jobTitle: 'Software Developer ERP', - industry: 'Other', - cities: ['Paris', 'Greensboro', 'Scottsdale', 'Nashville'], - }, - { - company: 'University of California', - name: 'Justin Wouters', - email: 'justinwouters@gmail.com', - linkedIn: 'Https://www.linkedin.com/in/justinwouters', - campus: 'FTRI / CTRI', - cohort: '9', - jobTitle: 'Junior application developer', - industry: 'Other', - cities: ['Norfolk', 'Glendale'], - }, - { - company: 'University of Chicago, Center for the Art of East Asia', - name: 'Greg Panciera', - email: 'gregpanciera@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gregpanciera', - campus: 'LA', - cohort: '36', - jobTitle: 'Web Developer', - industry: 'Art', - cities: ['Lubbock', 'Corpus Christi'], - }, - { - company: 'Unqork', - name: 'Donald Blanc', - email: 'Donaldblanc1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/donald-b/', - campus: 'NYC', - cohort: '11', - jobTitle: 'Senior Software Engineer', - industry: 'Tech', - cities: ['Denver', 'El Paso', 'Colorado Springs'], - }, - { - company: 'Unum ID', - name: 'Allison Roderiques', - email: 'aeroderiques@gmail.com', - linkedIn: 'https://www.linkedin.com/in/allison-roderiques/', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Full Stack Developer', - industry: 'Other', - cities: ['Nashville', 'Boston'], - }, - { - company: 'Uphold', - name: 'Chelsea Harris', - email: 'chelseaharris137@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chelseaharris23/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Frontend Engineer', - industry: 'Crypto', - cities: ['El Paso'], - }, - { - company: 'Upkeep', - name: 'Elie Baik', - email: 'semsemm810@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sae-min-baik', - campus: 'LA', - cohort: '34', - jobTitle: 'Software Engineer', - industry: 'CRM', - cities: ['Chandler', 'Long Beach', 'Nashville', 'Aurora'], - }, - { - company: 'UST', - name: 'Dhruv Thota', - email: 'dthota8@gmail.com', - linkedIn: 'https://linkedin.com/in/dhruv-thota', - campus: 'NYC / ECRI', - cohort: '36', - jobTitle: 'Software Engineer', - industry: 'Software Solutions/Developer Tools', - cities: ['Jersey City', 'Scottsdale', 'San Francisco', 'Seattle'], - }, - { - company: 'VacationRenter', - name: 'Michele Moody', - email: 'moody.lillian@gmail.com', - linkedIn: 'https://www.linkedin.com/in/milmoody/', - campus: 'LA', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Travel', - cities: ['Glendale', 'Oakland', 'Mumbai'], - }, - { - company: 'Valor Performance', - name: 'Marco Tulio Gonzalez', - email: 'marco.t.gonzalez15@gmail.com', - linkedIn: 'https://www.linkedin.com/in/marcogonzalez2015/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Senior Software Engineer', - industry: 'Other', - cities: ['San Antonio', 'Houston', 'Riverside'], - }, - { - company: 'VanGo', - name: 'Nicolas Venegas', - email: 'nicolasvenegasparker@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nicolas-venegas-parker/', - campus: 'LA', - cohort: '30', - jobTitle: 'Mobile Software Engineer', - industry: 'Consumer / Transportation', - cities: ['Minneapolis', 'North Las Vegas'], - }, - { - company: 'Vanguard', - name: 'Ian Kila', - email: 'ian.nie.kila@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ian-kila', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Application Developer', - industry: 'Software / Tech', - cities: ['Philadelphia', 'Lexington', 'Winston-Salem', 'Cleveland'], - }, - { - company: 'Vanguard', - name: 'Carolina Bonitatis', - email: 'carolina@bonitat.is', - linkedIn: 'https://www.linkedin.com/in/carolina-bonitatis/', - campus: 'NYC / ECRI', - cohort: '42', - jobTitle: 'Application Developer', - industry: 'Other', - cities: ['Boston', 'Tucson'], - }, - { - company: 'Vantage Point Consulting, Inc.', - name: 'Constance Cho', - email: 'chcho87@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chcho2/', - campus: 'NYC', - cohort: '21', - jobTitle: 'Full Stack Engineer', - industry: 'Consulting', - cities: ['New York'], - }, - { - company: 'Vaulted Oak', - name: 'Alfred Sta. Iglesia', - email: 'a.sta.iglesia@gmail.com', - linkedIn: 'https://www.linkedin.com/in/astaiglesia/', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer + Solutions Architect', - industry: 'E-Commerce', - cities: ['Gilbert', 'Milwaukee'], - }, - { - company: 'VedaPointe', - name: 'Michelle Chang', - email: 'michelle.kelly.chang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michellekchang/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Software Developer', - industry: 'Healthcare', - cities: ['Tokyo'], - }, - { - company: 'Vercel', - name: 'Jueun Grace Yun', - email: 'graceyunn@gmail.com', - linkedIn: 'https://www.linkedin.com/in/gracejueunyun/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Gaming hardware', - cities: ['Raleigh', 'Cincinnati', 'Chesapeake'], - }, - { - company: 'Verily Life Sciences', - name: 'Michael Geismar', - email: 'mikelafobe@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/michael-geismar/', - campus: 'FTRI', - cohort: '2', - jobTitle: 'Software Engineer', - industry: 'Life Sciences', - cities: ['Chicago', 'New Orleans', 'Chandler', 'Beijing'], - }, - { - company: 'Veritext', - name: 'Shawn Convery', - email: 'shawnmconvery@gmail.com', - linkedIn: 'https://www.linkedin.com/in/shawnconvery1/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Software Engineer', - industry: 'Law', - cities: ['Virginia Beach', 'London', 'Lubbock', 'Scottsdale'], - }, - { - company: 'Veritext', - name: 'Storm Ross', - email: 'stormaross@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stormaross/', - campus: 'NYC', - cohort: '27', - jobTitle: 'Backend Developer', - industry: 'Legal', - cities: ['Winston-Salem', 'Fresno'], - }, - { - company: 'Verizon Media Platform', - name: 'Leonard Kee', - email: 'leonardwkee@gmail.com', - linkedIn: 'https://www.linkedin.com/in/thiskeeword/', - campus: 'LA', - cohort: '4', - jobTitle: 'Software Development Engineer II', - industry: 'Media', - cities: ['Philadelphia', 'El Paso', 'Memphis', 'Dallas'], - }, - { - company: 'Vertalo', - name: 'Phillip Bannister', - email: 'phillip.kbannister@Gmail.com', - linkedIn: 'https://www.linkedin.com/in/phillipkekoabannister/', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Memphis', 'Paris'], - }, - { - company: 'Verys', - name: 'Ray Yao', - email: 'rocaray51@gmail.com', - linkedIn: 'https://www.linkedin.com/in/raymondyao51/', - campus: 'LA', - cohort: '27', - jobTitle: 'Software Developer', - industry: 'Consulting/Contracting Agency', - cities: ['Greensboro', 'Portland'], - }, - { - company: 'Verys', - name: 'Ted Min', - email: 'tedtaemin@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '41', - jobTitle: 'Senior Software Engineer', - industry: 'Consulting', - cities: ['Miami', 'Cleveland', 'Mexico City', 'Milwaukee'], - }, - { - company: 'View, Inc.', - name: 'Eric Lee', - email: 'emlee54@gmail.com', - linkedIn: 'https://www.linkedin.com/in/errc-lee/', - campus: 'LA', - cohort: '45', - jobTitle: 'Software Engineer, Front-End', - industry: 'Software / Tech', - cities: ['New York', 'Saint Paul', 'Los Angeles', 'Seattle'], - }, - { - company: 'Violet', - name: 'Johanna Merluza', - email: 'johanna.merluza@gmail.com', - linkedIn: 'https://www.linkedin.com/in/johannamerluza/', - campus: 'FTRI / CTRI', - cohort: '13', - jobTitle: 'Senior Full Stack Engineer', - industry: 'Software / Tech', - cities: ['Fresno'], - }, - { - company: 'Virga Labs', - name: 'Vance McGrady', - email: 'vancemcgrady@gmail.com', - linkedIn: 'https://www.linkedin.com/in/vancemcgrady/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Application Developer', - industry: 'Data Analytics', - cities: ['Fresno'], - }, - { - company: 'Virgin Hyperloop One', - name: 'Justin Fung', - email: 'justincaseyfung@gmail.com', - linkedIn: 'https://www.linkedin.com/in/citrusvanilla/', - campus: 'LA', - cohort: '30', - jobTitle: 'Front-End Developer', - industry: 'Transportation', - cities: ['Pittsburgh', 'Honolulu', 'Madison', 'Fresno'], - }, - { - company: 'Virgin Orbit', - name: 'Arkadiy Nigay', - email: 'ark234@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ark234', - campus: 'LA', - cohort: '23', - jobTitle: 'Full Stack Developer', - industry: 'Aerospace', - cities: ['Chandler'], - }, - { - company: 'Virgin Orbit', - name: 'Eric McCorkle', - email: 'ericm.mccorkle@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eric-mccorkle/', - campus: 'LA', - cohort: '48', - jobTitle: 'Full Stack Developer', - industry: 'Aerospace', - cities: ['Henderson'], - }, - { - company: 'Virtru', - name: 'Jake Van Vorhis', - email: 'vanvorhisjake@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jakedoublev/', - campus: 'PTRI', - cohort: '5', - jobTitle: 'Senior Full Stack Engineer', - industry: 'Security', - cities: ['Paris', 'San Francisco', 'Detroit', 'Lincoln'], - }, - { - company: 'Visa', - name: 'Bryan Mooyeong Lee', - email: 'mylee1995@gmail.com', - linkedIn: 'https://www.linkedin.com/bryanm-lee', - campus: 'NYC', - cohort: '12', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Winston-Salem', 'Chandler', 'El Paso'], - }, - { - company: 'VMware', - name: 'Maureen Onchiri', - email: 'onchirimaureen1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/maureenonchiri/', - campus: 'NYC', - cohort: '24', - jobTitle: 'Software Engineer', - industry: 'Tech', - cities: ['Winston-Salem', 'Bakersfield', 'Fort Worth', 'Minneapolis'], - }, - { - company: 'Volta Charging', - name: 'Maximilian Gonzalez', - email: 'thamaxlg@gmail.com', - linkedIn: 'https://www.linkedin.com/in/maximiliangonzalez/', - campus: 'LA', - cohort: '29', - jobTitle: 'Full Stack Software Engineer, Cloud Platform', - industry: 'Transportation', - cities: ['Pittsburgh', 'Minneapolis', 'Saint Paul', 'Henderson'], - }, - { - company: 'VS Media Inc', - name: 'Patrick Hu', - email: 'patrickhu91@gmail.com', - linkedIn: 'https://www.LinkedIn.com/in/patrickhu91', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'JavaScript Developer', - industry: 'Entertainment', - cities: ['Omaha', 'Irvine', 'Greensboro', 'Madison'], - }, - { - company: 'VTS', - name: 'Andy Koh', - email: 'yk567@cornell.edu', - linkedIn: 'https://www.linkedin.com/in/andersonkoh/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Engineer, Platform', - industry: 'Commercial Real Estate', - cities: ['Plano', 'St. Petersburg', 'Oakland', 'Glendale'], - }, - { - company: 'W.L. Gore & Associates', - name: 'Amir Marcel', - email: 'amirmarcel@yahoo.com', - linkedIn: 'https://www.linkedin.com/in/amir-marcel', - campus: 'LA', - cohort: '39', - jobTitle: 'Backend Developer', - industry: 'Manufacturing', - cities: ['Atlanta', 'Austin', 'Orlando'], - }, - { - company: 'Wag Labs Inc', - name: 'William Adamowicz', - email: 'william.adamowicz@gmail.com', - linkedIn: 'https://www.linkedin.com/in/williamadamowicz/', - campus: 'LA', - cohort: '24', - jobTitle: 'Software Engineer', - industry: 'Pet Care', - cities: ['San Francisco', 'Jacksonville', 'Orlando'], - }, - { - company: 'Walgreens', - name: 'Ed Cho', - email: 'edcho720@gmail.com', - linkedIn: 'https://www.linkedin.com/in/edcho720/', - campus: 'FTRI / CTRI', - cohort: '12', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Phoenix'], - }, - { - company: 'Walmart', - name: 'ChunHao Zheng', - email: 'chz062009@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chunhz/', - campus: 'NYC / ECRI', - cohort: '35', - jobTitle: 'Software Engineer II', - industry: 'Marketing', - cities: ['Orlando', 'St. Louis'], - }, - { - company: 'Walmart', - name: 'Eddy Kwon', - email: 'eddykwon0@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eddykwon/', - campus: 'NYC', - cohort: '29', - jobTitle: 'Software Engineer', - industry: 'Retail', - cities: ['Norfolk', 'Atlanta'], - }, - { - company: 'Walmart - Store No. 8', - name: 'Starvon Washington', - email: 'staronejazz@yahoo.com', - linkedIn: '', - campus: 'LA', - cohort: '19', - jobTitle: 'Software Engineer', - industry: '', - cities: ['London', 'Berlin', 'Chula Vista'], - }, - { - company: 'Walmart Global Tech', - name: 'Tao Chen', - email: 'xtc2008@gmail.com', - linkedIn: 'https://www.linkedin.com/in/xtc2008', - campus: 'NYC', - cohort: '31', - jobTitle: 'Senior Software Engineer', - industry: 'Health and Wellness', - cities: ['North Las Vegas', 'Charlotte', 'Tokyo'], - }, - { - company: 'Walmart Labs', - name: 'Brian Barr', - email: 'Brian.Barr23@gmail.com', - linkedIn: 'https://www.linkedin.com/in/barrbrian/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Senior Backend Engineer (Node)', - industry: 'FinTech (?)', - cities: ['Stockton', 'Omaha'], - }, - { - company: 'Walmart Labs', - name: 'Stephanie Fong', - email: 'stfongg@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stephaniefong08/', - campus: 'LA', - cohort: '24', - jobTitle: 'Software Engineer', - industry: '', - cities: ['Newark', 'Indianapolis'], - }, - { - company: 'Warby Parker', - name: 'Sanaya Mirpuri', - email: 'ssmirpuri@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sanayamirpuri/', - campus: 'NYC', - cohort: '22', - jobTitle: 'BackendSoftware Engineer II', - industry: 'Retail', - cities: ['Atlanta'], - }, - { - company: 'Warner Bros Discovery', - name: 'Mark Shin (Shino)', - email: 'pe.markshin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/markshins/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Software Development Engineer II', - industry: 'Entertainment', - cities: ['Anaheim'], - }, - { - company: 'WASH', - name: 'Kevin Park', - email: 'xkevinpark@gmail.com', - linkedIn: 'https://www.linkedin.com/in/xkevinpark/', - campus: 'LA', - cohort: '42', - jobTitle: 'Software UI Engineer', - industry: 'Electronics', - cities: ['Washington', 'Wichita', 'Fresno'], - }, - { - company: 'Wash Laundry Systems', - name: 'Harmon Huynh', - email: 'harmon.huynh@outlook.com', - linkedIn: 'https://www.linkedin.com/in/harmon-huynh/', - campus: 'LA', - cohort: '26', - jobTitle: 'Senior Software Engineer', - industry: 'Consumer Services', - cities: ['Portland', 'Sacramento', 'Milwaukee'], - }, - { - company: 'Watsco', - name: 'Romelo Gilbert', - email: 'romelogilbert@gmail.com', - linkedIn: 'https://www.linkedin.com/in/romelo-gilbert', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'HVAC distributor', - cities: ['Tokyo', 'Chula Vista', 'Atlanta'], - }, - { - company: 'Wayfair', - name: 'Dylan Bergstrom', - email: 'contact.dylanbergstrom@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dylan-bergstrom', - campus: 'LA', - cohort: '23', - jobTitle: 'Software Engineer L1', - industry: 'E-Commerce', - cities: ['Sacramento', 'London', 'Milwaukee', 'Raleigh'], - }, - { - company: 'Wayfair', - name: 'Jay Cogen', - email: 'jaycog44@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jaycogen/', - campus: 'LA', - cohort: '26', - jobTitle: 'Software Engineer II', - industry: 'Fintech', - cities: ['Tulsa', 'Oakland'], - }, - { - company: 'Wayfair', - name: 'Bryan Lee', - email: 'mylee1995@gmail.com', - linkedIn: 'https://www.linkedin.com/in/bryanm-lee/', - campus: 'NYC', - cohort: '12', - jobTitle: 'Software Engineer Intern', - industry: 'E-Commerce', - cities: ['Las Vegas'], - }, - { - company: 'WayScript', - name: 'Bren Yamaguchi', - email: 'Yamaguchibren@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brenyamaguchi/', - campus: 'LA', - cohort: '36', - jobTitle: 'Front End Software Engineer', - industry: 'Developer Tools', - cities: ['Detroit', 'Tampa', 'Sacramento', 'Durham'], - }, - { - company: 'WayUp', - name: 'Angela Scerbo', - email: 'amscerbo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/angelascerbo/', - campus: 'NYC', - cohort: '2', - jobTitle: 'Frontend Software Engineer', - industry: '', - cities: ['Orlando', 'Oakland'], - }, - { - company: 'Weill Cornell Medicine', - name: 'Zoew McGrath', - email: 'Zoewmcgrath@outlook.com', - linkedIn: '', - campus: 'FTRI', - cohort: '5', - jobTitle: 'Web Developer', - industry: 'Healthcare', - cities: ['Indianapolis', 'Corpus Christi', 'Phoenix'], - }, - { - company: 'WELL Health', - name: 'Elise Bare', - email: 'elisebare@gmail.com', - linkedIn: 'https://www.linkedin.com/in/elisebare/', - campus: 'LA', - cohort: '39', - jobTitle: 'Software Engineer, Front End', - industry: 'Healtchare', - cities: ['Nashville'], - }, - { - company: 'Well Health', - name: 'Janis Hernandez', - email: 'Janis11546@gmail.com', - linkedIn: 'https://www.linkedin.com/in/janis-h/', - campus: 'LA', - cohort: '39', - jobTitle: 'Mid-level Frontend Engineer', - industry: 'Health', - cities: ['Gilbert', 'Anchorage'], - }, - { - company: 'Well Health', - name: 'Jesus Vargas', - email: 'jmodestov@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jesusmvargas/', - campus: 'LA', - cohort: '38', - jobTitle: 'Frontend Software Engineer', - industry: 'Health Tech', - cities: ['Henderson', 'Tulsa', 'Jersey City', 'Philadelphia'], - }, - { - company: 'Well Health', - name: 'Michael Wang', - email: 'michaelwawang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/michael--wang/', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer (Backend)', - industry: 'Health Tech', - cities: ['Chandler'], - }, - { - company: 'Well Health', - name: 'Eric Stallings', - email: 'stallings.eric@gmail.com', - linkedIn: 'https://www.linkedin.com/in/EricStallings/', - campus: 'LA', - cohort: '30', - jobTitle: 'Software Engineer', - industry: 'Healthcare', - cities: ['Anchorage', 'Pittsburgh'], - }, - { - company: 'Wellio', - name: 'Rachel Park', - email: 'rachelpark.dev@gmail.com', - linkedIn: 'https://www.linkedin.com/in/rachelparkdev/', - campus: 'NYC', - cohort: '13', - jobTitle: 'Senior Software Engineer', - industry: 'Foodtech', - cities: ['St. Petersburg', 'San Francisco'], - }, - { - company: 'Wells Fargo', - name: 'Taylor Davis', - email: 'Taylor.davis7@live.com', - linkedIn: 'https://www.linkedin.com/in/taylordavis7', - campus: 'LA', - cohort: '41', - jobTitle: 'Software Engineer', - industry: 'Fintech', - cities: ['Berlin'], - }, - { - company: 'Western Psychological Services (WPS)', - name: 'Justin Stoddard', - email: 'jgstoddard@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jgstoddard/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Microservices Engineer', - industry: 'Health Tech', - cities: ['Chicago', 'Lexington'], - }, - { - company: 'WeWork', - name: 'Maung Maung Lay (Raphael Ram)', - email: 'ramraphael@gmail.com', - linkedIn: 'https://www.linkedin.com/in/raphaelram/', - campus: 'NYC', - cohort: '8', - jobTitle: 'Software Engineer', - industry: 'Real Estate / Hospitality', - cities: ['Mumbai', 'San Jose'], - }, - { - company: 'Whisper', - name: 'Kevin Mui', - email: 'kmui.work@gmail.com', - linkedIn: 'https://www.linkedin.com/in/kevin-mui1/', - campus: 'LA', - cohort: '24', - jobTitle: 'Server Developer', - industry: '', - cities: ['Cleveland'], - }, - { - company: 'William Hill', - name: 'Chris Flannery', - email: 'chriswillsflannery@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chriswillsflannery/', - campus: 'NYC', - cohort: '14', - jobTitle: 'Frontend Software Engineer', - industry: 'Sports/Entertainment', - cities: ['San Antonio'], - }, - { - company: 'William Hill', - name: 'Matt Greenberg', - email: 'mattagreenberg1@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mattagreenberg/', - campus: 'NYC', - cohort: '24', - jobTitle: 'front end software engineer', - industry: 'casino', - cities: ['Jersey City'], - }, - { - company: 'Willow Servicing', - name: 'Ian Grepo', - email: 'iangrapeo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ian-grepo/', - campus: 'LA / WCRI', - cohort: '51', - jobTitle: 'Software Engineer', - industry: 'Real Estate', - cities: ['Austin', 'Sacramento', 'Mexico City'], - }, - { - company: 'Windfall Data', - name: 'Bruno Portela', - email: 'bportela@pm.me', - linkedIn: 'https://www.linkedin.com/in/bgp/', - campus: 'LA', - cohort: '42', - jobTitle: 'Senior Full Stack Engineer', - industry: 'Fintech, ML, AI', - cities: ['Anaheim', 'Houston', 'Tulsa', 'New York'], - }, - { - company: 'Windhover Labs', - name: 'Alex McPhail', - email: 'mcphail.alex@gmail.com', - linkedIn: 'www.linkedin.com/in/mcphail-alex', - campus: 'LA / WCRI', - cohort: '53', - jobTitle: 'Software Engineer', - industry: 'Aerospace', - cities: ['San Diego', 'San Antonio', 'Sydney', 'Cleveland'], - }, - { - company: 'Wiselayer', - name: 'Eric Lemay', - email: 'ericrogerlemay@gmail.com', - linkedIn: '', - campus: 'NYC / ECRI', - cohort: '31', - jobTitle: 'Software Engineer', - industry: 'Business Analytics', - cities: ['Laredo', 'Oklahoma City', 'Cleveland'], - }, - { - company: 'Wiser Solutions', - name: 'Alex Hersler', - email: 'alex@alexhersler.com', - linkedIn: 'https://www.linkedin.com/in/alex-hersler/', - campus: 'LA / WCRI', - cohort: '48', - jobTitle: 'Software Engineer II', - industry: 'Data Analytics', - cities: ['Mesa', 'London', 'Lubbock'], - }, - { - company: 'Wix.com', - name: 'Kenny shen', - email: 'kenny.shen313@gmail.com', - linkedIn: '', - campus: 'NYC', - cohort: '27', - jobTitle: 'Solutions Engineer', - industry: 'Software / Tech', - cities: ['Tucson', 'Tampa'], - }, - { - company: 'Wizely Finance', - name: 'Erik Cox', - email: 'erikbcox@gmail.com', - linkedIn: 'https://www.linkedin.com/in/erikbcox/', - campus: 'LA', - cohort: '22', - jobTitle: 'Senior Full Stack Developer', - industry: '', - cities: ['Boston', 'Fresno', 'Irvine', 'Scottsdale'], - }, - { - company: 'WorkDay', - name: 'Tu Pham', - email: 'toopham@gmail.com', - linkedIn: 'https://www.linkedin.com/in/toopham/', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Development Engineer', - industry: 'FinTech, HR', - cities: ['Buffalo', 'Stockton', 'Norfolk', 'Lubbock'], - }, - { - company: 'WorkFusion', - name: 'Matt Meigs', - email: 'mattmeigs@gmail.com', - linkedIn: 'https://www.linkedin.com/in/matt-meigs/', - campus: 'NYC', - cohort: '20', - jobTitle: 'Front-End Developer', - industry: 'Intelligent Automation', - cities: ['Jacksonville', 'Santa Ana'], - }, - { - company: 'WorkRamp', - name: 'Lex Choi', - email: 'lexchoi3@gmail.com', - linkedIn: 'https://www.linkedin.com/in/lexchoi3/', - campus: 'LA', - cohort: '40', - jobTitle: 'Internal Tools/Customer Support Engineer', - industry: 'SaaS', - cities: ['New Orleans', 'Atlanta', 'Minneapolis'], - }, - { - company: 'World Wide Technology', - name: 'Christopher Davis', - email: 'chdavis0917@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chris-davis0917', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'JavaScript Developer - Material Planning', - industry: 'IT Services', - cities: ['Paris', 'Tokyo', 'El Paso'], - }, - { - company: 'World Wide Technology', - name: 'Crystal Agoncillo', - email: 'crystal.agoncillo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/agoncillo/', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Full Stack Developer', - industry: 'IT Services', - cities: ['Stockton', 'Tucson', 'Newark'], - }, - { - company: 'World Wide Technology', - name: 'Stephanie Page', - email: 'stephanieelainepage@gmail.com', - linkedIn: 'https://www.linkedin.com/in/stephanie-page-atx/', - campus: 'FTRI / CTRI', - cohort: '11', - jobTitle: 'Associate Developer', - industry: 'Consulting', - cities: ['Tucson', 'Austin', 'Raleigh'], - }, - { - company: 'World Wide Technology', - name: 'Brett Guidry', - email: 'guidry.brett@gmail.com', - linkedIn: 'https://www.linkedin.com/in/brett-guidry504/', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Software Engineer', - industry: 'IT Services', - cities: ['North Las Vegas', 'Miami', 'Anchorage', 'Newark'], - }, - { - company: 'WPROMOTE', - name: 'Nay Linn', - email: 'naylinn.pkv@gmail.com', - linkedIn: 'https://www.linkedin.com/in/nay-linn/', - campus: 'NYC', - cohort: '19', - jobTitle: 'Software Engineer', - industry: 'Digital Marketing', - cities: ['Kansas City', 'Reno', 'Minneapolis', 'Anchorage'], - }, - { - company: 'WQA', - name: 'Victor Martins', - email: 'martinsvictor287@gmail.com', - linkedIn: 'https://www.linkedin.com/in/victormartinsfemi', - campus: 'LA / WCRI', - cohort: '59', - jobTitle: 'Software Develooper', - industry: 'Consulting', - cities: ['Tucson', 'Winston-Salem'], - }, - { - company: 'WW(formally Weight Watchers)', - name: 'Mika Todd', - email: 'mikataressatodd@gmail.com', - linkedIn: 'https://www.linkedin.com/in/mika-todd', - campus: 'LA', - cohort: '43', - jobTitle: 'Software Engineer', - industry: 'Health and Wellness', - cities: ['Tulsa', 'Louisville', 'Mexico City', 'Philadelphia'], - }, - { - company: 'Wyze', - name: 'Jason Victor', - email: 'jason.victor26@gmail.com', - linkedIn: '', - campus: 'LA', - cohort: '38', - jobTitle: 'Jr. Front End Engineer', - industry: 'IoT', - cities: ['Lexington', 'Raleigh', 'Sรฃo Paulo', 'Stockton'], - }, - { - company: 'Xandr', - name: 'Billy Hepfinger', - email: 'bhepfing@gmail.com', - linkedIn: 'https://www.linkedin.com/in/billy-hepfinger', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer II', - industry: 'Advertising / Telecom', - cities: ['Honolulu', 'Buffalo', 'Washington', 'Long Beach'], - }, - { - company: 'Xandr', - name: 'Whit Rooke', - email: 'whit.rooke@gmail.com', - linkedIn: 'https://www.linkedin.com/in/whit-rooke/', - campus: 'NYC', - cohort: '25', - jobTitle: 'Software Engineer', - industry: 'Adtech', - cities: ['Mumbai', 'Arlington'], - }, - { - company: 'Xinova', - name: 'Clariz Mariano', - email: 'clariz.mariano@gmail.com', - linkedIn: 'https://www.linkedin.com/in/clarmariano/', - campus: 'LA', - cohort: '22', - jobTitle: 'Software Engineer 2', - industry: '', - cities: ['Kansas City'], - }, - { - company: 'Xtivia', - name: 'Anthony Lo', - email: '87.anthonylo@gmail.com', - linkedIn: 'https://www.linkedin.com/in/anthonyelo/', - campus: 'LA / WCRI', - cohort: '52', - jobTitle: 'Jr. UI Developer', - industry: 'IT Services', - cities: ['Plano', 'San Antonio', 'Tulsa'], - }, - { - company: 'Yahoo', - name: 'DeriAnte Sinclair', - email: 'deriante.sinclair@gmail.com', - linkedIn: 'https://www.linkedin.com/in/deriante-sinclair/', - campus: 'LA / WCRI', - cohort: '49', - jobTitle: 'Software Apps Engineer I', - industry: 'Software / Tech', - cities: ['Corpus Christi', 'Paris', 'St. Louis', 'Glendale'], - }, - { - company: 'Yahoo', - name: 'Tom Curtin', - email: 'thisistomcurtin@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tfcurtin/', - campus: 'PTRI', - cohort: '3', - jobTitle: 'Software Engineer', - industry: 'Other', - cities: ['Sacramento'], - }, - { - company: 'Yale New Haven Health', - name: 'Aileen Chan Miranda', - email: 'aileenchany@gmail.com', - linkedIn: 'https://www.linkedin.com/in/aileen-chanmiranda/', - campus: 'FTRI / CTRI', - cohort: '8', - jobTitle: 'Web Developer', - industry: 'Healthtech/Healthcare', - cities: ['Honolulu'], - }, - { - company: 'Yext', - name: 'Allen Xie', - email: 'axie0320@gmail.com', - linkedIn: 'https://www.linkedin.com/in/axie0320/', - campus: 'PTRI', - cohort: '4', - jobTitle: 'Software Engineer', - industry: 'Software / Tech', - cities: ['Colorado Springs'], - }, - { - company: 'YMCA Retirement Fund', - name: 'Anna Konstantinovich', - email: 'anna@anreko.design', - linkedIn: 'https://www.linkedin.com/in/anna-konstantinovich/', - campus: 'NYC', - cohort: '15', - jobTitle: "UX Designer & Developer (It's complicated - let me know if you want more details)", - industry: 'Financial Services', - cities: ['Minneapolis', 'Long Beach', 'Cleveland', 'Kansas City'], - }, - { - company: 'Zeal', - name: 'Jason Lee', - email: 'jasonmlee1020@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jasonjml/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Engineer II', - industry: 'Fintech', - cities: ['Chesapeake', 'Raleigh'], - }, - { - company: 'Zealthy', - name: 'Kennan Budnik', - email: 'kobudnik@gmail.com', - linkedIn: 'https://linkedin.com/in/kobudnik', - campus: 'NYOI', - cohort: '2', - jobTitle: 'Software Engineer II', - industry: 'Healthtech/Healthcare', - cities: ['Anchorage', 'Chesapeake'], - }, - { - company: 'ZenBusiness', - name: 'Adam Sheff', - email: 'adamisheff@gmail.com', - linkedIn: 'https://www.linkedin.com/in/adam-sheff/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Software Engineer', - industry: 'Entrepreneurship', - cities: ['San Diego', 'Charlotte', 'Newark'], - }, - { - company: 'ZenBusiness', - name: 'Christie Herring', - email: 'clherring@gmail.com', - linkedIn: 'https://www.linkedin.com/in/christie-herring/', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer II', - industry: 'SaaS, business creation services', - cities: ['Corpus Christi', 'Lubbock', 'Philadelphia'], - }, - { - company: 'Zenefits', - name: 'Tobey Forsman', - email: 'tobeyforsman@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tobeyforsman/', - campus: 'LA', - cohort: '42', - jobTitle: 'Senior Software Engineer', - industry: 'Software/Tech', - cities: ['Omaha', 'Raleigh', 'Paris', 'New York'], - }, - { - company: 'zephyrx', - name: 'Brian Haller', - email: 'brian@brianhaller.com', - linkedIn: 'https://www.linkedin.com/in/brianjhaller/', - campus: 'NYC', - cohort: '14', - jobTitle: 'Software Engineer', - industry: 'med tech', - cities: ['Indianapolis', 'San Jose', 'Paris'], - }, - { - company: 'ZeroPW', - name: 'Tammy Tan', - email: 'tammytan1912@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tammytan1/', - campus: 'NYC', - cohort: '15', - jobTitle: 'Frontend Engineer', - industry: 'Computer & Network Security', - cities: ['Oklahoma City', 'Plano'], - }, - { - company: 'Zest AI', - name: 'Ronelle Caguioa', - email: 'ronelle.caguioa@gmail.com', - linkedIn: 'https://www.linkedin.com/in/ronellecaguioa/', - campus: 'LA', - cohort: '36', - jobTitle: 'Senior Software Engineer', - industry: 'Fintech', - cities: ['San Francisco'], - }, - { - company: 'Zeta Global', - name: 'Chris Tang', - email: 'chrisjtang@gmail.com', - linkedIn: 'https://www.linkedin.com/in/chrisjtang', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer', - industry: 'Data', - cities: ['Sydney', 'Columbus', 'Detroit'], - }, - { - company: 'Zillow', - name: 'Cary L Chan', - email: 'caryLchan@gmail.com', - linkedIn: 'https://www.linkedin.com/in/carylchan/', - campus: 'LA', - cohort: '35', - jobTitle: 'Full Stack Engineer', - industry: 'Entertainment', - cities: ['Jacksonville', 'Sydney', 'Tokyo'], - }, - { - company: 'Zillow', - name: 'Hien Nguyen', - email: 'hien.qqnguyen@gmail.com', - linkedIn: 'https://www.linkedin.com/in/hienqn/', - campus: 'LA', - cohort: '37', - jobTitle: 'Software Engineer', - industry: 'Entertainment', - cities: ['Irvine', 'Beijing', 'Chandler', 'Philadelphia'], - }, - { - company: 'Zillow Group', - name: 'Logan Thies', - email: 'logan.thies@icloud.com', - linkedIn: 'https://www.linkedin.com/in/loganthies137/', - campus: 'PTRI', - cohort: '1', - jobTitle: 'Software Development Engineer', - industry: 'Real Estate', - cities: ['Phoenix', 'Lincoln', 'North Las Vegas'], - }, - { - company: 'Zip', - name: 'Chase Walters', - email: 'cwwalters@fastmail.com', - linkedIn: 'https://www.linkedin.com/in/charleswwalters/', - campus: 'FTRI / CTRI', - cohort: '10', - jobTitle: 'Founding Software Engineer', - industry: 'Security', - cities: ['El Paso', 'Toledo'], - }, - { - company: 'Zipcar', - name: 'Sean Smith', - email: 'smith.seanm17@gmail.com', - linkedIn: 'https://www.linkedin.com/in/sean-smith17/', - campus: 'LA', - cohort: '36', - jobTitle: 'Software Engineer (Front End)', - industry: 'Transportation', - cities: ['Long Beach', 'Los Angeles'], - }, - { - company: 'Zipdrug', - name: 'Tolga Mizrakci', - email: 'tolgamizrakci@gmail.com', - linkedIn: 'https://www.linkedin.com/in/tolga-mizrakci/', - campus: 'NYC', - cohort: '10', - jobTitle: 'Senior Software Engineer', - industry: 'Health Care', - cities: ['El Paso', 'Dallas'], - }, - { - company: 'ZipRecruiter', - name: 'Ryan Lee', - email: 'rynklee@gmail.com', - linkedIn: 'https://linkedin.com/in/rynklee', - campus: 'LA', - cohort: '46', - jobTitle: 'Software Engineer III', - industry: 'Other', - cities: ['Mexico City', 'Irving'], - }, - { - company: 'Zoetis', - name: 'Eileen Cho', - email: 'eileenaracho@gmail.com', - linkedIn: 'https://www.linkedin.com/in/eileenaracho/', - campus: 'LA / WCRI', - cohort: '56', - jobTitle: 'Data Systems Engineer', - industry: 'Other', - cities: ['Oakland', 'Fort Wayne', 'Chula Vista'], - }, - { - company: 'Zogo Finance', - name: 'Derek Miller', - email: 'dsymiller@gmail.com', - linkedIn: 'https://www.linkedin.com/in/dsymiller/', - campus: 'NYC', - cohort: '22', - jobTitle: 'Full Stack Engineer', - industry: 'education, financial services, banking', - cities: ['Philadelphia', 'Memphis', 'Mesa'], - }, - { - company: 'Zoom Video Communications', - name: 'Jason Jones', - email: 'Jasonroyjones@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jasonroyjones', - campus: 'LA', - cohort: '33', - jobTitle: 'Software Development Engineer', - industry: 'Telecommunications', - cities: ['Madison', 'Laredo', 'San Jose'], - }, - { - company: 'Zywave', - name: 'Jacob Davis', - email: 'jacob.drew.davis@gmail.com', - linkedIn: 'https://www.linkedin.com/in/jacob-drew-davis/', - campus: 'FTRI', - cohort: '4', - jobTitle: 'Senior DevSecOps Engineer', - industry: 'Software / Tech', - cities: ['Buffalo', 'Berlin', 'Irvine'], - }, -]; - -const mockGraduteInvitions = [ - { - email: 'acarradice0@gravatar.com', - token: '541658530c351ab19011dc5a1cc7f796eb9fd388', - tokenExpiry: '1714386955', - isRegistered: true, - firstName: 'Alonso', - lastName: 'Carradice', - registeredAt: '1677124950', - cohort: 'LA 44', - }, - { - email: 'wbleaden1@usgs.gov', - token: '8ce87b99dc305ef8272b2261a73539156a2a4b11', - tokenExpiry: '1703047259', - isRegistered: false, - firstName: 'Wilton', - lastName: 'Bleaden', - registeredAt: '1710588748', - cohort: 'CTRI 21', - }, - { - email: 'ghalso2@jalbum.net', - token: '19e7fd479b1310e00940ac610b6d3731699224b3', - tokenExpiry: '1708125337', - isRegistered: true, - firstName: 'Gannon', - lastName: 'Halso', - registeredAt: '1685884782', - cohort: 'PTRI 25', - }, - { - email: 'dgrinter3@amazon.com', - token: '15639748a71a12b6c5b2a9e715aca9ff092877ae', - tokenExpiry: '1719655502', - isRegistered: false, - firstName: 'Doralynn', - lastName: 'Grinter', - registeredAt: '1693987127', - cohort: 'WCRI 64', - }, - { - email: 'wweatherley4@phoca.cz', - token: 'bc2b71d4fbd3ed3de0a0022aa21bbed4f851c755', - tokenExpiry: '1699687351', - isRegistered: true, - firstName: 'Winn', - lastName: 'Weatherley', - registeredAt: '1710066414', - cohort: 'FTRI 93', - }, - { - email: 'hregis5@dailymail.co.uk', - token: '01aa9782932b7772770b0c4eae54787dea5f9638', - tokenExpiry: '1719748549', - isRegistered: true, - firstName: 'Hermon', - lastName: 'Regis', - registeredAt: '1694142909', - cohort: 'ECRI 49', - }, - { - email: 'crousby6@apache.org', - token: '22ce1f16d86aa9b601a6bd044d3bbc455b4f36e2', - tokenExpiry: '1721465604', - isRegistered: false, - firstName: 'Cordie', - lastName: 'Rousby', - registeredAt: '1682025913', - cohort: 'FTRI 6', - }, - { - email: 'mriseborough7@clickbank.net', - token: '3fad65274e7439c2c0a35200295c46977020885f', - tokenExpiry: '1706069183', - isRegistered: false, - firstName: 'Maureene', - lastName: 'Riseborough', - registeredAt: '1686092791', - cohort: 'FTRI 91', - }, - { - email: 'olawson8@washington.edu', - token: '39b226afbd4282124dd31b9dd3243cb7e0b1f596', - tokenExpiry: '1704307416', - isRegistered: false, - firstName: 'Orelle', - lastName: 'Lawson', - registeredAt: '1689333880', - cohort: 'FTRI 92', - }, - { - email: 'jemer9@constantcontact.com', - token: 'dbc7e41297546ad0d7a437abc4573ad5ac36dd2c', - tokenExpiry: '1710382524', - isRegistered: false, - firstName: 'Jess', - lastName: 'Emer', - registeredAt: '1688557374', - cohort: 'PTRI 64', - }, - { - email: 'mtubblesa@nifty.com', - token: 'a664d8ee7cd56a9ce2963eae874da9c65fcd2361', - tokenExpiry: '1719286527', - isRegistered: true, - firstName: 'Mariel', - lastName: 'Tubbles', - registeredAt: '1679623674', - cohort: 'PTRI 10', - }, - { - email: 'pkeightleyb@webnode.com', - token: '3c78dccda8c878bb7dea64431e5811b2a75af184', - tokenExpiry: '1714278643', - isRegistered: true, - firstName: 'Perice', - lastName: 'Keightley', - registeredAt: '1690276231', - cohort: 'WCRI 53', - }, - { - email: 'efalcusc@mapy.cz', - token: '184efd9e68dbe020111734f78303742a65c1fd15', - tokenExpiry: '1718471384', - isRegistered: false, - firstName: 'Eula', - lastName: 'Falcus', - registeredAt: '1708142836', - cohort: 'CTRI 97', - }, - { - email: 'jbaldinid@simplemachines.org', - token: '26f1e984850651b64779d36d31af27602c8e714b', - tokenExpiry: '1704480185', - isRegistered: true, - firstName: 'Jacqui', - lastName: 'Baldini', - registeredAt: '1692681038', - cohort: 'NYC 68', - }, - { - email: 'snorthridgee@macromedia.com', - token: '801d95108e35ccce2fe3b290803de8637d65959e', - tokenExpiry: '1715200469', - isRegistered: true, - firstName: 'Scottie', - lastName: 'Northridge', - registeredAt: '1691263603', - cohort: 'PTRI 6', - }, - { - email: 'dhedgerf@shareasale.com', - token: 'd681aa42bf9f2371c60c05754a93fd1dc860fec8', - tokenExpiry: '1727580488', - isRegistered: false, - firstName: 'Dorie', - lastName: 'Hedger', - registeredAt: '1687226473', - cohort: 'NYC 89', - }, - { - email: 'nskeeng@yellowbook.com', - token: 'fadb33e7532fdce703106043931f2a6f15f88bc3', - tokenExpiry: '1721509297', - isRegistered: false, - firstName: 'Nadia', - lastName: 'Skeen', - registeredAt: '1695484577', - cohort: 'ECRI 23', - }, - { - email: 'mgroomh@samsung.com', - token: '8df1430be1cc296c94155b06a79a1e24d12b16ad', - tokenExpiry: '1698531018', - isRegistered: true, - firstName: 'Mickie', - lastName: 'Groom', - registeredAt: '1691239049', - cohort: 'WCRI 50', - }, - { - email: 'lkupiszi@liveinternet.ru', - token: '1740f0be8a449176d15c33a65a5c3bc011cc0f07', - tokenExpiry: '1707223534', - isRegistered: true, - firstName: 'Leticia', - lastName: 'Kupisz', - registeredAt: '1683211294', - cohort: 'NYC 58', - }, - { - email: 'bdeanj@mlb.com', - token: '7f27fa69908e6aa17e28f425de5fcc57f0eeedc0', - tokenExpiry: '1717798784', - isRegistered: false, - firstName: 'Babb', - lastName: 'Dean', - registeredAt: '1686342997', - cohort: 'ECRI 72', - }, - { - email: 'blilleyk@blogs.com', - token: '7fb8c075412d11bebc0ba1aeca86bb08393f136b', - tokenExpiry: '1721551606', - isRegistered: false, - firstName: 'Burtie', - lastName: 'Lilley', - registeredAt: '1679902087', - cohort: 'NYC 25', - }, - { - email: 'dwoodlandl@dailymotion.com', - token: '774c9ed5bf04f259139e1c14b9446c818f83ec2a', - tokenExpiry: '1721916987', - isRegistered: true, - firstName: 'Dorelle', - lastName: 'Woodland', - registeredAt: '1717510004', - cohort: 'LA 45', - }, - { - email: 'bdunlapm@dropbox.com', - token: '0ddfcd5aee883c68ff7a7a704a406998d3b95a64', - tokenExpiry: '1697506453', - isRegistered: false, - firstName: 'Burk', - lastName: 'Dunlap', - registeredAt: '1680396642', - cohort: 'NYC 8', - }, - { - email: 'cdarreln@newyorker.com', - token: '53488dd01c43dfa1d596c7964a4d2f534dc8ead5', - tokenExpiry: '1724607931', - isRegistered: false, - firstName: 'Cecilius', - lastName: 'Darrel', - registeredAt: '1706643899', - cohort: 'ECRI 83', - }, - { - email: 'bbudcocko@va.gov', - token: 'efb168a15a3096e53d12ae9f80569d8d557c4493', - tokenExpiry: '1701718041', - isRegistered: true, - firstName: 'Brod', - lastName: 'Budcock', - registeredAt: '1676443900', - cohort: 'NYC 8', - }, - { - email: 'bthickinp@ibm.com', - token: '8e4af5f631de12544c44ed442d50aafb83204a44', - tokenExpiry: '1711888928', - isRegistered: false, - firstName: 'Bayard', - lastName: 'Thickin', - registeredAt: '1695590750', - cohort: 'ECRI 97', - }, - { - email: 'llarringtonq@sakura.ne.jp', - token: '9951ab34e301c226be2b63b1e3f6b61e7ca6f178', - tokenExpiry: '1706943537', - isRegistered: true, - firstName: 'Lorenza', - lastName: 'Larrington', - registeredAt: '1683278978', - cohort: 'WCRI 26', - }, - { - email: 'rstantonr@mashable.com', - token: 'e5cd7ddfdfb812f47184272328b5510c9d8887b9', - tokenExpiry: '1707981578', - isRegistered: true, - firstName: 'Ranna', - lastName: 'Stanton', - registeredAt: '1694102332', - cohort: 'ECRI 50', - }, - { - email: 'scowdroys@umich.edu', - token: '43315d4d9b75715104ee90104db03bf430b78fb1', - tokenExpiry: '1705880075', - isRegistered: false, - firstName: 'Silvan', - lastName: 'Cowdroy', - registeredAt: '1698398807', - cohort: 'LA 55', - }, - { - email: 'pskirlingt@4shared.com', - token: '85d7af1fdd70f8fd165a014e08b7a4b3963ac044', - tokenExpiry: '1716827794', - isRegistered: false, - firstName: 'Pepita', - lastName: 'Skirling', - registeredAt: '1703077019', - cohort: 'CTRI 60', - }, - { - email: 'bspensleyu@indiatimes.com', - token: '597d4be98c6ed3ab97f2301c6da3ee55d69033ed', - tokenExpiry: '1715899465', - isRegistered: true, - firstName: 'Brinna', - lastName: 'Spensley', - registeredAt: '1690415190', - cohort: 'LA 65', - }, - { - email: 'lblaisv@networksolutions.com', - token: 'b7502e54d2a16983c2ffab259798841eec4e8272', - tokenExpiry: '1705285133', - isRegistered: true, - firstName: 'Leta', - lastName: 'Blais', - registeredAt: '1704030885', - cohort: 'LA 75', - }, - { - email: 'olehuquetw@privacy.gov.au', - token: 'd368e4882e0e66e2c93020c54534bb56ff2d9d52', - tokenExpiry: '1721342625', - isRegistered: true, - firstName: 'Onfre', - lastName: 'Le Huquet', - registeredAt: '1700655434', - cohort: 'CTRI 79', - }, - { - email: 'cedworthiex@yelp.com', - token: '8cb9209121c6007c214e4d7bc010190ee2bdd22a', - tokenExpiry: '1701803096', - isRegistered: false, - firstName: 'Cairistiona', - lastName: 'Edworthie', - registeredAt: '1695427010', - cohort: 'NYC 26', - }, - { - email: 'jchongy@cpanel.net', - token: '239edcea2ff7a2c73af428692f85be9b2ffab43f', - tokenExpiry: '1725107146', - isRegistered: true, - firstName: 'Jonas', - lastName: 'Chong', - registeredAt: '1700604074', - cohort: 'CTRI 51', - }, - { - email: 'emintoz@statcounter.com', - token: '4fdd3aae97ec4a7d44202cbfe5034517d0f00ebc', - tokenExpiry: '1720135279', - isRegistered: true, - firstName: 'Ezra', - lastName: 'Minto', - registeredAt: '1701904952', - cohort: 'FTRI 17', - }, - { - email: 'vlicari10@businessweek.com', - token: '752025d65cc509ae58038fa039654c7c5ccff278', - tokenExpiry: '1718335874', - isRegistered: false, - firstName: 'Virgina', - lastName: 'Licari', - registeredAt: '1708284774', - cohort: 'ECRI 91', - }, - { - email: 'rlambrick11@netscape.com', - token: '38e604f9dd47c6468ab3d4104d8dbc9f6968bfd8', - tokenExpiry: '1714756935', - isRegistered: true, - firstName: 'Rickert', - lastName: 'Lambrick', - registeredAt: '1678948854', - cohort: 'WCRI 64', - }, - { - email: 'jmadner12@boston.com', - token: '6f81c343c0ee4efec0c7d3359ec562dfdd26bdfd', - tokenExpiry: '1715296843', - isRegistered: true, - firstName: 'Jesselyn', - lastName: 'Madner', - registeredAt: '1685889400', - cohort: 'WCRI 93', - }, - { - email: 'ptest13@ovh.net', - token: '81d623ebdd75de31900eaeefd2f8f6d82e5de0f8', - tokenExpiry: '1708108205', - isRegistered: false, - firstName: 'Peirce', - lastName: 'Test', - registeredAt: '1678201051', - cohort: 'PTRI 45', - }, - { - email: 'swalcher14@hc360.com', - token: '824b906fd32c063d19ac0413a25ed88b366b400c', - tokenExpiry: '1706535307', - isRegistered: true, - firstName: 'Saraann', - lastName: 'Walcher', - registeredAt: '1710539027', - cohort: 'CTRI 14', - }, - { - email: 'gbank15@live.com', - token: '0e265dea03b6dd81279caee70688ffc3e4aac84d', - tokenExpiry: '1709350549', - isRegistered: true, - firstName: 'Giff', - lastName: 'Bank', - registeredAt: '1685242746', - cohort: 'WCRI 8', - }, - { - email: 'rallmen16@ask.com', - token: 'ed6593ece367f7a7dc24f97bd2f6f0842f14c0c4', - tokenExpiry: '1718707719', - isRegistered: false, - firstName: 'Ronny', - lastName: 'Allmen', - registeredAt: '1687899673', - cohort: 'NYC 66', - }, - { - email: 'kyarrow17@fastcompany.com', - token: 'd7cf565a92803a64d2cee30653696e1d1a6378b9', - tokenExpiry: '1701602996', - isRegistered: true, - firstName: 'Kimmi', - lastName: 'Yarrow', - registeredAt: '1691124672', - cohort: 'WCRI 75', - }, - { - email: 'pshepard18@fc2.com', - token: '9210e18a7553812264f0de3dc1dfdfd149a98b78', - tokenExpiry: '1721087332', - isRegistered: false, - firstName: 'Portia', - lastName: 'Shepard', - registeredAt: '1672585642', - cohort: 'NYC 11', - }, - { - email: 'egook19@yale.edu', - token: 'bb6e13b3f037f856d1bb9608fd0c621d6a2a91de', - tokenExpiry: '1720577150', - isRegistered: false, - firstName: 'Emlen', - lastName: 'Gook', - registeredAt: '1683775506', - cohort: 'NYC 94', - }, - { - email: 'drocks1a@yandex.ru', - token: 'e8a818868eba93a6c8ec66475111de0443dc1bb9', - tokenExpiry: '1703012938', - isRegistered: false, - firstName: 'Debee', - lastName: 'Rocks', - registeredAt: '1706023454', - cohort: 'PTRI 57', - }, - { - email: 'vdhennin1b@webmd.com', - token: 'a38dcb44964ee25e8a6dec9154038d5d9938a87a', - tokenExpiry: '1699587212', - isRegistered: false, - firstName: 'Valina', - lastName: 'Dhennin', - registeredAt: '1681065096', - cohort: 'WCRI 59', - }, - { - email: 'dcheasman1c@123-reg.co.uk', - token: '94b64ff354e2f9fa7c8a037923bfa8b2dd866eeb', - tokenExpiry: '1697933422', - isRegistered: false, - firstName: 'Dwayne', - lastName: 'Cheasman', - registeredAt: '1683418150', - cohort: 'ECRI 77', - }, - { - email: 'ngladhill1d@bravesites.com', - token: 'd1e4e372f411f9b7078f2a40a97c922e29cc77d7', - tokenExpiry: '1718918519', - isRegistered: false, - firstName: 'Nellie', - lastName: 'Gladhill', - registeredAt: '1688963480', - cohort: 'PTRI 75', - }, - { - email: 'elivzey1e@yandex.ru', - token: '2b1e273101fd6f2762a922de2b5da38bcc106e0a', - tokenExpiry: '1709220017', - isRegistered: true, - firstName: 'Eziechiele', - lastName: 'Livzey', - registeredAt: '1681975403', - cohort: 'WCRI 1', - }, - { - email: 'smingasson1f@geocities.jp', - token: '11b06aee7ad84b24658444456a578d207869e512', - tokenExpiry: '1728292948', - isRegistered: true, - firstName: 'Sallyanne', - lastName: 'Mingasson', - registeredAt: '1683913073', - cohort: 'NYC 6', - }, - { - email: 'hpattullo1g@cocolog-nifty.com', - token: 'f2006654fe52c91bb6953933346a297da119c8c5', - tokenExpiry: '1724940391', - isRegistered: true, - firstName: 'Heall', - lastName: 'Pattullo', - registeredAt: '1679673540', - cohort: 'WCRI 99', - }, - { - email: 'ascarlan1h@businessinsider.com', - token: '9cff46cacb3a30c7b3b3b54f277e0aab630d45c4', - tokenExpiry: '1721464700', - isRegistered: true, - firstName: 'Amaleta', - lastName: 'Scarlan', - registeredAt: '1712701940', - cohort: 'CTRI 35', - }, - { - email: 'zlawlance1i@gmpg.org', - token: 'bcb5ce7157e175a16358d596e508c2db76cfc1bc', - tokenExpiry: '1722208526', - isRegistered: true, - firstName: 'Zonda', - lastName: 'Lawlance', - registeredAt: '1701924480', - cohort: 'PTRI 70', - }, - { - email: 'lromney1j@independent.co.uk', - token: 'b85fe93921acfd5cf8d12b574dd3b47e4018e436', - tokenExpiry: '1713504543', - isRegistered: false, - firstName: 'Livvy', - lastName: 'Romney', - registeredAt: '1704174160', - cohort: 'PTRI 26', - }, - { - email: 'ballardyce1k@dell.com', - token: '0f8a9aac15a71fa742c39d3096542281589366b8', - tokenExpiry: '1718762499', - isRegistered: true, - firstName: 'Brockie', - lastName: 'Allardyce', - registeredAt: '1679041128', - cohort: 'CTRI 36', - }, - { - email: 'jatthowe1l@omniture.com', - token: 'aca52ba0413382dde47301aeadf43a363e9997ba', - tokenExpiry: '1698166033', - isRegistered: false, - firstName: 'Jaquelyn', - lastName: 'Atthowe', - registeredAt: '1707608705', - cohort: 'FTRI 20', - }, - { - email: 'bguerre1m@ftc.gov', - token: '7b1dd8462dbfad6cea9dad31f7261fef4ec8be95', - tokenExpiry: '1718130214', - isRegistered: true, - firstName: 'Barn', - lastName: 'Guerre', - registeredAt: '1716202221', - cohort: 'NYC 13', - }, - { - email: 'cmillions1n@domainmarket.com', - token: '5f6819ad846a8ea3e0880dd7fd17c7e1e2b55d90', - tokenExpiry: '1706426083', - isRegistered: false, - firstName: 'Carina', - lastName: 'Millions', - registeredAt: '1698636752', - cohort: 'LA 40', - }, - { - email: 'mgrigorini1o@pinterest.com', - token: '355d05a947933941c88073a12e6787e4e3199b2d', - tokenExpiry: '1719008606', - isRegistered: true, - firstName: 'Micaela', - lastName: 'Grigorini', - registeredAt: '1674400482', - cohort: 'ECRI 40', - }, - { - email: 'fredwin1p@lulu.com', - token: 'dd3f9f8550968f560e0beddeeb22e6ed345b66f3', - tokenExpiry: '1720847163', - isRegistered: false, - firstName: 'Fran', - lastName: 'Redwin', - registeredAt: '1690182467', - cohort: 'WCRI 74', - }, - { - email: 'kfirmager1q@vistaprint.com', - token: 'dc439fab416b534d3f1691e2b5afa1cb67879d76', - tokenExpiry: '1709501604', - isRegistered: true, - firstName: 'Kalina', - lastName: 'Firmager', - registeredAt: '1696473707', - cohort: 'LA 58', - }, - { - email: 'lblyth1r@dion.ne.jp', - token: 'a10da796c88d8b7cf9fb78132bf8ec674f2ccf6e', - tokenExpiry: '1702709120', - isRegistered: true, - firstName: 'Lurline', - lastName: 'Blyth', - registeredAt: '1693114651', - cohort: 'FTRI 40', - }, - { - email: 'jstowte1s@pbs.org', - token: 'f1f937e0689f1bc5c2c2c586282f591e7f65d53b', - tokenExpiry: '1724992951', - isRegistered: true, - firstName: 'Julianne', - lastName: 'Stowte', - registeredAt: '1680965284', - cohort: 'ECRI 33', - }, - { - email: 'tpatrie1t@economist.com', - token: '650aaa0e6787da810abff83ac7745809a1cda53f', - tokenExpiry: '1718005232', - isRegistered: true, - firstName: 'Tierney', - lastName: 'Patrie', - registeredAt: '1702385719', - cohort: 'FTRI 44', - }, - { - email: 'gsherborne1u@ustream.tv', - token: '37cfac40e6796b28a9f5887a0f7ce0bfc8ac4ecb', - tokenExpiry: '1713943470', - isRegistered: false, - firstName: 'Gerladina', - lastName: 'Sherborne', - registeredAt: '1711728496', - cohort: 'NYC 82', - }, - { - email: 'pfarress1v@amazonaws.com', - token: 'bf080b5bb70d6c0a44ce68a8ab8a88e042b19cc1', - tokenExpiry: '1711916219', - isRegistered: true, - firstName: 'Phil', - lastName: 'Farress', - registeredAt: '1693852128', - cohort: 'LA 77', - }, - { - email: 'eallsop1w@deviantart.com', - token: '1a5bea6e3a65ac46f6e21680ca0ba34f5e2122f2', - tokenExpiry: '1701094713', - isRegistered: false, - firstName: 'Elisha', - lastName: 'Allsop', - registeredAt: '1713801737', - cohort: 'LA 52', - }, - { - email: 'cskipton1x@4shared.com', - token: '45278d736abab31f911da7c843e62b524b65c4f4', - tokenExpiry: '1722876760', - isRegistered: false, - firstName: 'Carline', - lastName: 'Skipton', - registeredAt: '1702155150', - cohort: 'WCRI 40', - }, - { - email: 'mnorthridge1y@google.com.au', - token: '62f61c162c2ccffc5edcbdfdd02ec45cf1c39376', - tokenExpiry: '1706595173', - isRegistered: false, - firstName: 'Mia', - lastName: 'Northridge', - registeredAt: '1681630387', - cohort: 'WCRI 72', - }, - { - email: 'ifriedenbach1z@last.fm', - token: 'bd680ad939d973c3e0010ec7a2a2f1921fecc19d', - tokenExpiry: '1718623836', - isRegistered: true, - firstName: 'Isaiah', - lastName: 'Friedenbach', - registeredAt: '1702230245', - cohort: 'WCRI 0', - }, - { - email: 'tdulton20@sitemeter.com', - token: 'f2f3b6b7c83a606cf8cbef085140c25683e80a46', - tokenExpiry: '1725180112', - isRegistered: true, - firstName: 'Tallulah', - lastName: 'Dulton', - registeredAt: '1689429264', - cohort: 'PTRI 76', - }, - { - email: 'besherwood21@amazon.com', - token: 'c3beb14a7cd4e9fd4834cdf6594413ed971c01f3', - tokenExpiry: '1706079008', - isRegistered: false, - firstName: 'Bel', - lastName: 'Esherwood', - registeredAt: '1712417366', - cohort: 'ECRI 52', - }, - { - email: 'akiley22@cpanel.net', - token: 'd2b06ea8d9e4a572cee6d4e2681f67f00894ad56', - tokenExpiry: '1724941587', - isRegistered: true, - firstName: 'Anatol', - lastName: 'Kiley', - registeredAt: '1714539754', - cohort: 'FTRI 51', - }, - { - email: 'cmeth23@zimbio.com', - token: '8c4a90e9eb572a8dcfb306cc5c26d30387590e28', - tokenExpiry: '1727396000', - isRegistered: true, - firstName: 'Corabel', - lastName: 'Meth', - registeredAt: '1682784205', - cohort: 'WCRI 86', - }, - { - email: 'sterrill24@behance.net', - token: '03eddbc6485cdd42c8f5cac45e249f6cdb7400eb', - tokenExpiry: '1723586241', - isRegistered: false, - firstName: 'Shae', - lastName: 'Terrill', - registeredAt: '1687562944', - cohort: 'LA 76', - }, - { - email: 'dmahedy25@wix.com', - token: 'ce05349faa503dc55d9038773796038a7c8df560', - tokenExpiry: '1717922995', - isRegistered: false, - firstName: 'Dotty', - lastName: 'Mahedy', - registeredAt: '1703040599', - cohort: 'NYC 93', - }, - { - email: 'sattiwill26@wsj.com', - token: 'a09c0f90af57af5b39b94cd83d208ffb25111ccb', - tokenExpiry: '1723749405', - isRegistered: false, - firstName: 'Salaidh', - lastName: 'Attiwill', - registeredAt: '1710531917', - cohort: 'FTRI 14', - }, - { - email: 'bbomb27@cmu.edu', - token: 'a196221355ed403ad250ccebf4b4019028b1de19', - tokenExpiry: '1716626869', - isRegistered: true, - firstName: 'Billi', - lastName: 'Bomb', - registeredAt: '1703618131', - cohort: 'FTRI 72', - }, - { - email: 'bbedells28@lycos.com', - token: '31d50e34784504d1ed2ba0fe979c98c64beaf408', - tokenExpiry: '1721657038', - isRegistered: true, - firstName: 'Burty', - lastName: 'Bedells', - registeredAt: '1703325382', - cohort: 'LA 47', - }, - { - email: 'dlemin29@nhs.uk', - token: 'b3f374ec819cae31abc03d8d4fd606182994b61c', - tokenExpiry: '1726394947', - isRegistered: false, - firstName: 'De', - lastName: 'Lemin', - registeredAt: '1712314981', - cohort: 'NYC 50', - }, - { - email: 'mdraco2a@shinystat.com', - token: '106220c3f67863ec7b60efa5d818a9615f1f6ae8', - tokenExpiry: '1709423735', - isRegistered: true, - firstName: 'Morgen', - lastName: 'Draco', - registeredAt: '1683637999', - cohort: 'CTRI 77', - }, - { - email: 'ugrassin2b@ucoz.com', - token: '0bfe9f83752600b459f9299ef15aeff6e2403feb', - tokenExpiry: '1707725381', - isRegistered: true, - firstName: 'Urban', - lastName: 'Grassin', - registeredAt: '1710071474', - cohort: 'CTRI 54', - }, - { - email: 'aatto2c@va.gov', - token: 'd918b6a21507a3b203a595b174084d1bcbfd8643', - tokenExpiry: '1714845693', - isRegistered: false, - firstName: 'Archy', - lastName: 'Atto', - registeredAt: '1712043526', - cohort: 'NYC 62', - }, - { - email: 'lmurfill2d@earthlink.net', - token: '1cfa1580520273a41a6101c1c40d9387a8240e15', - tokenExpiry: '1724471765', - isRegistered: true, - firstName: 'Lothaire', - lastName: 'Murfill', - registeredAt: '1704133684', - cohort: 'CTRI 43', - }, - { - email: 'aocrigan2e@ezinearticles.com', - token: '7c84c138aaea08c8478456fe062b6026922c6bb0', - tokenExpiry: '1723900980', - isRegistered: true, - firstName: 'Anne', - lastName: "O'Crigan", - registeredAt: '1676208159', - cohort: 'NYC 98', - }, - { - email: 'nmeacher2f@barnesandnoble.com', - token: 'fe1032812102bf0930a52971a39da65b9d92be03', - tokenExpiry: '1711033160', - isRegistered: true, - firstName: 'Nisse', - lastName: 'Meacher', - registeredAt: '1681639572', - cohort: 'FTRI 86', - }, - { - email: 'dtraill2g@tamu.edu', - token: '356be8cf14a78b06cb741c6c1082a5b2639dc100', - tokenExpiry: '1722195575', - isRegistered: false, - firstName: 'Dix', - lastName: 'Traill', - registeredAt: '1688441678', - cohort: 'FTRI 19', - }, - { - email: 'vproske2h@newsvine.com', - token: '674dfc2ddb23a74b43373f5d42b23d29016408c2', - tokenExpiry: '1713842238', - isRegistered: false, - firstName: 'Verla', - lastName: 'Proske', - registeredAt: '1688943295', - cohort: 'WCRI 25', - }, - { - email: 'pdahmke2i@diigo.com', - token: 'd165ca490f364a0c81f1c3cf44f7bc5bd314c483', - tokenExpiry: '1712885460', - isRegistered: false, - firstName: 'Pennie', - lastName: 'Dahmke', - registeredAt: '1705568448', - cohort: 'FTRI 75', - }, - { - email: 'akilroy2j@elpais.com', - token: '651b1e2b34363ee9eaeb35d884cacce571bb20d3', - tokenExpiry: '1710647532', - isRegistered: true, - firstName: 'Anestassia', - lastName: 'Kilroy', - registeredAt: '1707162650', - cohort: 'ECRI 91', - }, - { - email: 'rvanelli2k@xing.com', - token: '362b7aeeb1b86eeeeb751f0feb30446f38b3551a', - tokenExpiry: '1700611810', - isRegistered: true, - firstName: 'Remus', - lastName: 'Vanelli', - registeredAt: '1688468428', - cohort: 'FTRI 29', - }, - { - email: 'gtarbert2l@discovery.com', - token: '47b989b8ef9a9640e1301246469e90468b0409b4', - tokenExpiry: '1728367924', - isRegistered: true, - firstName: 'Gil', - lastName: 'Tarbert', - registeredAt: '1685191965', - cohort: 'CTRI 29', - }, - { - email: 'ysmelley2m@twitpic.com', - token: 'd9a8b41e99f1fc724641283b275b61141086ecef', - tokenExpiry: '1712733227', - isRegistered: true, - firstName: 'Yulma', - lastName: 'Smelley', - registeredAt: '1715333795', - cohort: 'FTRI 42', - }, - { - email: 'tlongworth2n@engadget.com', - token: '5261c5b65c8539a3affa90614190fcedb77f1fac', - tokenExpiry: '1728250140', - isRegistered: false, - firstName: 'Timmy', - lastName: 'Longworth', - registeredAt: '1709278351', - cohort: 'PTRI 29', - }, - { - email: 'amollatt2o@printfriendly.com', - token: '4019b03e69e2362fbd1a10fce561eb60bdc16b99', - tokenExpiry: '1724376365', - isRegistered: true, - firstName: 'Arthur', - lastName: 'Mollatt', - registeredAt: '1708084127', - cohort: 'FTRI 64', - }, - { - email: 'gtaylor2p@nps.gov', - token: '16ce55d2ccf612dc3285cfdee894fb8064453a4b', - tokenExpiry: '1727617372', - isRegistered: false, - firstName: 'Griffin', - lastName: 'Taylor', - registeredAt: '1707031385', - cohort: 'WCRI 51', - }, - { - email: 'ostudholme2q@pcworld.com', - token: '9d62938833da712a578ade3e54cb627996a5464e', - tokenExpiry: '1702451012', - isRegistered: true, - firstName: 'Odelinda', - lastName: 'Studholme', - registeredAt: '1674695487', - cohort: 'LA 2', - }, - { - email: 'aduffill2r@nbcnews.com', - token: '8ccc9ddb9f92b0ee6848dd20ca7f3fab1d98fbb0', - tokenExpiry: '1707417687', - isRegistered: true, - firstName: 'Ardith', - lastName: 'Duffill', - registeredAt: '1693295088', - cohort: 'FTRI 50', - }, -]; - -const mockUsers = [ - { - firstName: 'Testy', - lastName: 'McTesterson', - email: 'tester@codehammers.com', - profilePic: - 'https://www.codesmith.io/hubfs/Screen%20Shot%202024-06-10%20at%2010.46.24%20AM.png', - password: '$2a$10$kc8M2Pp3YPQ/L0zuNiP8NO/ktM3be2G/Jvz7JgfHKNwisEEmI6HhC', - }, - { - firstName: 'Corine', - lastName: 'Tugwell', - email: 'ctugwell0@ovh.net', - profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', - password: '$2a$10$RHjqSxTGqGH3sJ5M8y1N/ONYdf0lW/wiS.1Np0ygzdLXV1.iKNWHW', - }, - { - firstName: 'Brody', - lastName: 'Cumpton', - email: 'bcumpton1@bluehost.com', - profilePic: 'https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg', - password: '$2a$10$5MCj99AUmJLR8vNusi/kKulhGujk0g9TNp2HnNNad0diDKr/voqx6', - }, - { - firstName: 'Moselle', - lastName: 'Duro', - email: 'mduro2@technorati.com', - profilePic: 'https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png', - password: '$2a$10$3g77AxfV5hxy.8T7ibcsFeAzj0.8XLQtyWZ8LXMV/r1xFffb6CrQ6', - }, - { - firstName: 'Winifred', - lastName: 'Carnelley', - email: 'wcarnelley3@ucsd.edu', - profilePic: - 'https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827', - password: '$2a$10$YtgZAtramhBGFDYgd4WJm.O1aSGVY9XpW6c3EvmgF/r016wO8c6Kq', - }, - { - firstName: 'Marchelle', - lastName: 'Truin', - email: 'mtruin4@stumbleupon.com', - profilePic: 'https://www.codesmith.io/hubfs/Gabriela%20%20Small.png', - password: '$2a$10$/aPHxsmvntnLCoYx87M43eJ5emMDz5By06sCDBJw0rV7b4zGEDRY6', - }, - { - firstName: 'Cally', - lastName: 'Gisbey', - email: 'cgisbey5@squarespace.com', - profilePic: 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', - password: '$2a$10$ilsSaThdTHnBlNAcgzO3XuGbV4U95jRfnHfK.0vgh8Ryv527n17IW', - }, - { - firstName: 'Arlina', - lastName: 'Moodie', - email: 'amoodie6@twitpic.com', - profilePic: 'https://www.codesmith.io/hubfs/Gabriela%20%20Small.png', - password: '$2a$10$.rndahfCenIT18WWTCOhn.GaSDoPsQJu.DqlPREIyuzqypAGcReKO', - }, - { - firstName: 'Phineas', - lastName: 'Coon', - email: 'pcoon7@hc360.com', - profilePic: 'https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg', - password: '$2a$10$HCmJy4bzQALHWoJGiDlLqe0uZNACP3QyligsCBs6YgkPcGvhWK6SK', - }, - { - firstName: 'Shurlock', - lastName: 'Tytcomb', - email: 'stytcomb8@google.it', - profilePic: - 'https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720', - password: '$2a$10$FqL6UUoRp24Rr//9tRG18uN4QGUoggKZ1p78oeQZKJ6HnPgWEMNZe', - }, - { - firstName: 'Ermina', - lastName: 'Guyton', - email: 'eguyton9@blog.com', - profilePic: - 'https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg', - password: '$2a$10$rMnbMAnBHkfzsyvcQktDzuHXs.cL43euEuC/sBqBloZdmETYV4Tra', - }, - { - firstName: 'Shelton', - lastName: 'Halwood', - email: 'shalwooda@sciencedirect.com', - profilePic: 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', - password: '$2a$10$MZt/Qd/2CqKCCBuO/b3wI.gF4Y5Ggk6hb9s475rSc1UKWPXqzvusS', - }, - { - firstName: 'Nigel', - lastName: 'Clemenzo', - email: 'nclemenzob@fotki.com', - profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', - password: '$2a$10$wDWpM3JEnwGmaml0aTc7yO6Qqg1083sLQwpirYpc4kCA4jJRfytGW', - }, - { - firstName: 'Colver', - lastName: 'Oswell', - email: 'coswellc@wsj.com', - profilePic: - 'https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg', - password: '$2a$10$GIVKx6GIDuuez2wyzQ1uKunCOLyk95cU1Cix3K.Apz31eXyk4qR1a', - }, - { - firstName: 'Saundra', - lastName: 'Normabell', - email: 'snormabelld@businessinsider.com', - profilePic: - 'https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg', - password: '$2a$10$zanHPCuY87iOLnK8l.izQObTM5z.Lv.0NTP4CJUR6RO/UOcwVzw46', - }, - { - firstName: 'Grant', - lastName: 'Chasney', - email: 'gchasneye@mediafire.com', - profilePic: - 'https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4', - password: '$2a$10$Zft06tsFJC0qa1cWhF8q4u29XSmdPd59l7A0NuwUZGyNDhOzJmHkO', - }, - { - firstName: 'Franni', - lastName: 'Chance', - email: 'fchancef@ted.com', - profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', - password: '$2a$10$v4piVmYED/yGy7Z02fIN1eeDjW3DWvHoMJkVIdKDe6xCuahM5XGxS', - }, - { - firstName: 'Clarance', - lastName: 'Meecher', - email: 'cmeecherg@addthis.com', - profilePic: 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', - password: '$2a$10$XS0Bcgj6KKZ6/bO96j2Ci.tS2lQ4SwiWlwsZruORpp0bCDFswIEyK', - }, - { - firstName: 'Katharine', - lastName: 'Lancett', - email: 'klancetth@sfgate.com', - profilePic: 'https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg', - password: '$2a$10$WJfAa2JyWAeNTby65GBnI.k4tgBrVkNBsVhQHYIuv5o83TBmXP6VW', - }, - { - firstName: 'Margaret', - lastName: 'Dubber', - email: 'mdubberi@dropbox.com', - profilePic: - 'https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720', - password: '$2a$10$k3/k6SSUAvw4qEBZAitTzOlQym0gFVcVQU4z88nEN0J96BwkUkah.', - }, - { - firstName: 'Addy', - lastName: 'Fass', - email: 'afassj@vistaprint.com', - profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', - password: '$2a$10$rqjbsf2iTQmKu1nphUSiseQXyQkw0P5P7F4Wx0Mwug06Vvwtup5Ie', - }, - { - firstName: 'Sollie', - lastName: 'Puckinghorne', - email: 'spuckinghornek@topsy.com', - profilePic: 'https://www.codesmith.io/hubfs/Gabriela%20%20Small.png', - password: '$2a$10$hozq/j4uwMjwarUfJvwzE.8RYZVmMU5j.Oh54TV10QnPJtOSEAkA6', - }, - { - firstName: 'Xena', - lastName: 'Tomczynski', - email: 'xtomczynskil@ted.com', - profilePic: 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', - password: '$2a$10$Rv1D7q1enZ8rYwGbeMRgKeelEc4Lpx0OjOUhNXKFb3KpZq3j/K50K', - }, - { - firstName: 'Harmonie', - lastName: 'Karpinski', - email: 'hkarpinskim@g.co', - profilePic: 'https://www.codesmith.io/hubfs/Gabriela%20%20Small.png', - password: '$2a$10$f1ISgk3vWVJUxAziAVPYy.3UBF9NohPeLwdT97X9rZPHQuLFZsWli', - }, - { - firstName: 'Marielle', - lastName: 'Crocket', - email: 'mcrocketn@craigslist.org', - profilePic: - 'https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png', - password: '$2a$10$.jPCYnepe4Nwb5rv.kddHO1LkIw.q8cgd6DHk5SV8d60QHyOu5ylm', - }, - { - firstName: 'Ulrick', - lastName: 'Blasing', - email: 'ublasingo@yahoo.com', - profilePic: - 'https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png', - password: '$2a$10$TtW5XG3xux16EANFLnYjqO5WxkKUPKVTVBW/cq1DWXsYLieazZkfm', - }, - { - firstName: 'Cheri', - lastName: 'Danielsson', - email: 'cdanielssonp@example.com', - profilePic: - 'https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827', - password: '$2a$10$DI4MwyXAT3TIwQBbDUO3SenUmXSjF.WZFrNih6eMpzY6eg2uX9HQu', - }, - { - firstName: 'Durand', - lastName: 'Joron', - email: 'djoronq@google.cn', - profilePic: 'https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png', - password: '$2a$10$JnNpCVE0Nb46kM4Qtkbha.qQeYfK1HUFfWrSo1SGv758RvktY/8qO', - }, - { - firstName: 'Kristien', - lastName: 'Burgett', - email: 'kburgettr@kickstarter.com', - profilePic: 'https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg', - password: '$2a$10$d1/XXb1OflCvAnGE2Cd/gOB9G/EhjVjwPm89O5rTYa.m7jumCqteq', - }, - { - firstName: 'Kaia', - lastName: 'Fassmann', - email: 'kfassmanns@ted.com', - profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', - password: '$2a$10$yStUrrgR9Q2yg8TAv.IFTepba9OVQjnCCpYklDXNOPKvWQzm/f71W', - }, - { - firstName: 'Lockwood', - lastName: 'Moxham', - email: 'lmoxhamt@wikia.com', - profilePic: - 'https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png', - password: '$2a$10$SunYJs.bPKUUtL1qGP0EOOaljWJA5rkwSV2eheBj4qAi8S2IsY.36', - }, - { - firstName: 'Tessie', - lastName: 'Sugden', - email: 'tsugdenu@npr.org', - profilePic: - 'https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg', - password: '$2a$10$hKCgoJybjluN7YTcW3fDtuHGw9XZExEzP.SM9dS0/39mFi8AS4xvG', - }, - { - firstName: 'Rea', - lastName: 'Jeremiah', - email: 'rjeremiahv@wikispaces.com', - profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', - password: '$2a$10$wX974k1kacRzEfdHxGJd/.IIMrQnt/ZLeMfE/zHaexPQrweS4fNOm', - }, - { - firstName: 'Cassie', - lastName: 'Meadows', - email: 'cmeadowsw@smugmug.com', - profilePic: - 'https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827', - password: '$2a$10$G.JEfN.EgUQv2lxHhuyP5.Fgz5yNuA.lGIocNiCqHqePbmyGq8mbq', - }, - { - firstName: 'Kelci', - lastName: 'Bastide', - email: 'kbastidex@latimes.com', - profilePic: - 'https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720', - password: '$2a$10$tGExVET9Zoo.CiNeh9M6k.ulg8WoyFw26xlz0cZq2e5ZNbgfTE.Bu', - }, - { - firstName: 'Thurston', - lastName: 'Speechly', - email: 'tspeechlyy@plala.or.jp', - profilePic: - 'https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg', - password: '$2a$10$PecBrxyFG0Ul/EqlBUKq7.lixy5WoSLvT6wMUUDY2WzTMwvFPvhyq', - }, - { - firstName: 'Silas', - lastName: 'Reyes', - email: 'sreyesz@google.co.jp', - profilePic: 'https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg', - password: '$2a$10$YjNYJGOUfv.Np8pkgjDyA.2XJ1YUDtux4H708Ia7ZYL9Mv5GHMUs2', - }, - { - firstName: 'Marley', - lastName: 'Boshard', - email: 'mboshard10@tiny.cc', - profilePic: - 'https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png', - password: '$2a$10$s34llzRxpdigLFo0dO3Zp.JM9X3Bm2U.H1R3tNXNrieNoIfwWeHcy', - }, - { - firstName: 'Eb', - lastName: 'Dargie', - email: 'edargie11@artisteer.com', - profilePic: - 'https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4', - password: '$2a$10$YKro.0iuOHI9KyY4.IQv9eSWtgeP/KQ9h3tKxPFxPBaaCzlj9gcba', - }, - { - firstName: 'Porter', - lastName: 'Paladini', - email: 'ppaladini12@deliciousdays.com', - profilePic: - 'https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg', - password: '$2a$10$aKFXB4ZQTOX1nJUdjnFGmO/6eU/z3QCaKtvp51sQSpHdHDIsnoHqq', - }, - { - firstName: 'Dian', - lastName: 'Dackombe', - email: 'ddackombe13@ihg.com', - profilePic: - 'https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png', - password: '$2a$10$m16Q41BtIR7PsL.cEp1qJ.2b4zCFRYcWR//CLZ70.BGeHb5BazpHe', - }, - { - firstName: 'Freedman', - lastName: 'Scrafton', - email: 'fscrafton14@posterous.com', - profilePic: - 'https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg', - password: '$2a$10$UseDUfEbBuBVQosgK9hLyOzBIwiFGmhRiaRaBfmKF2oHyR/ptXL9S', - }, - { - firstName: 'Tabbitha', - lastName: 'Jolliffe', - email: 'tjolliffe15@bbb.org', - profilePic: 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', - password: '$2a$10$/BRp.zCmtbUqrBpdfDjxH.fzzqooeJsgMSJj9tRLQV9jrG785mI3q', - }, - { - firstName: 'Jordon', - lastName: 'Ganley', - email: 'jganley16@geocities.jp', - profilePic: 'https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png', - password: '$2a$10$SpNKlyf82tnRWgiMVFGHnur2fyfeVIAfHG2BIsed/Hu5lvRYd6zaq', - }, - { - firstName: 'Annora', - lastName: 'Brigge', - email: 'abrigge17@joomla.org', - profilePic: - 'https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4', - password: '$2a$10$fNPrRI/UzhvFJ1eOZKQNOe2SriLmDSoibNWPqKozgjnT13q3NQ5/O', - }, - { - firstName: 'Bethanne', - lastName: 'Osband', - email: 'bosband18@blinklist.com', - profilePic: 'https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png', - password: '$2a$10$db2.QwkRMc2UqnW.wbRv6uT2ZzGKGMruV/rZeVv/.ELxk0wSkGRa6', - }, - { - firstName: 'Hedda', - lastName: 'Tallquist', - email: 'htallquist19@cisco.com', - profilePic: 'https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png', - password: '$2a$10$e7REOMvBqIjEC1fDI0uLNOMkCJRZvhO4KdOYvtsoTmN/A0zC5ZoGq', - }, - { - firstName: 'Lynelle', - lastName: 'Grosvener', - email: 'lgrosvener1a@google.cn', - profilePic: 'https://www.codesmith.io/hubfs/Gabriela%20%20Small.png', - password: '$2a$10$bQgNEej3PToxLUTbeTEsuODYNcwlxAnks0PLKJa/AT4y1ounPuq2O', - }, - { - firstName: 'Lenee', - lastName: 'Pethybridge', - email: 'lpethybridge1b@chron.com', - profilePic: 'https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png', - password: '$2a$10$eCwUl.lf05F/Bop6vUElveEyM8pjYRg82Dq4DdUiVzqAcv5FHaRCG', - }, - { - firstName: 'Ninnette', - lastName: 'Maden', - email: 'nmaden1c@sciencedirect.com', - profilePic: 'https://www.codesmith.io/hubfs/Gabriela%20%20Small.png', - password: '$2a$10$ijlhLATjvzWv2ovikfDH/ufuoEFwqK9QNiryzymkB6LWAig2p8K3m', - }, - { - firstName: 'Jolynn', - lastName: 'Catenot', - email: 'jcatenot1d@oakley.com', - profilePic: - 'https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720', - password: '$2a$10$aSzNb6A.kYflbnn/xwJoqOzCX9sIDCkNeMPw7zjVgEGJnht8/qX1i', - }, - { - firstName: 'Marabel', - lastName: 'Puleston', - email: 'mpuleston1e@utexas.edu', - profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', - password: '$2a$10$kDdrnGvJhkScD8smnhXGV.RNBbvMAaIcl2bGLg4VmIekVcReNtz7.', - }, - { - firstName: 'Bryn', - lastName: 'Arias', - email: 'barias1f@flavors.me', - profilePic: - 'https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg', - password: '$2a$10$ZajYO4RNsq8/qA9Jg1vNJ.lADYiuFDx3BB8rldJ32GOXqROluDfbi', - }, - { - firstName: 'Arni', - lastName: 'Jertz', - email: 'ajertz1g@tuttocitta.it', - profilePic: - 'https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827', - password: '$2a$10$YLt1lVwcCc/3PiHd6UOsXevxvEiNbEjUq1eIfYxeJ8ngcRFCpX5hi', - }, - { - firstName: 'Maegan', - lastName: 'Mulhall', - email: 'mmulhall1h@wikipedia.org', - profilePic: - 'https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg', - password: '$2a$10$Aif6H2Z.giCkMXGBxJX3TutzAvAuAJLijp6r.G4wQYzi/WW60sLaa', - }, - { - firstName: 'Nicolai', - lastName: 'Brugsma', - email: 'nbrugsma1i@4shared.com', - profilePic: 'https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg', - password: '$2a$10$GQIoJKuUvoZfHY.Z2YfRouNTnzI1GfJwperv6inTblhhLAShaViOu', - }, - { - firstName: 'Bryan', - lastName: 'Heffy', - email: 'bheffy1j@cbsnews.com', - profilePic: - 'https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png', - password: '$2a$10$QlE4KlmsB3rlD4XZKABi0.BafpsCBdHddFtlZ2nYJyyj9tpF2jw5i', - }, - { - firstName: 'Donavon', - lastName: 'Osichev', - email: 'dosichev1k@pinterest.com', - profilePic: 'https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png', - password: '$2a$10$9JghLaPXIX4RoBxUq6umY.itdAgsBWFito4xcu2XdC5XTTn/ikKRq', - }, - { - firstName: 'Kennan', - lastName: 'Dugget', - email: 'kdugget1l@opensource.org', - profilePic: - 'https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg', - password: '$2a$10$3DuJ6wsSdMsZk.7DcoTDU.cOMrl7cJ3T.xw.Qhu98KkOeZyJnAPn2', - }, - { - firstName: 'Paton', - lastName: 'Climance', - email: 'pclimance1m@webnode.com', - profilePic: 'https://www.codesmith.io/hubfs/Gabriela%20%20Small.png', - password: '$2a$10$GsRvHQHiFgafXSxx0lV9a.COTn6y7ccTXjtqaQrpGlObrUtv5pxHm', - }, - { - firstName: 'Caitrin', - lastName: 'McAllister', - email: 'cmcallister1n@ft.com', - profilePic: - 'https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4', - password: '$2a$10$oemDl2Fl9xkIlQK4roEkvuPV8YlXJuR/QSLO2CuYixpspPn58c3IK', - }, - { - firstName: 'Sephira', - lastName: 'Kaming', - email: 'skaming1o@about.me', - profilePic: 'https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png', - password: '$2a$10$D9vgbSRRKKL9VF1h3yaAnuzXsi7C2A43Djd8G/FKJFK.coCXx4WTW', - }, - { - firstName: 'Fraser', - lastName: 'Londsdale', - email: 'flondsdale1p@freewebs.com', - profilePic: - 'https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg', - password: '$2a$10$f6XFReXajluyek3Jzd.dL.uMeoEOZQUmeGzcdboxW203TMo7QYXne', - }, - { - firstName: 'Alyssa', - lastName: 'Bangham', - email: 'abangham1q@usgs.gov', - profilePic: - 'https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720', - password: '$2a$10$0mqFf987WSqD2Dt6k9bvCucM2UrbCCYIfs0xl9LeCbV4s5bwhXGgC', - }, - { - firstName: 'Clarette', - lastName: 'Alcock', - email: 'calcock1r@amazonaws.com', - profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', - password: '$2a$10$QGDxhItZ39N0pDJNB/IOuu/EweEPoT9KlodGaJxhLMZIEhc0xmMqW', - }, - { - firstName: 'Lizbeth', - lastName: 'France', - email: 'lfrance1s@yahoo.com', - profilePic: 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', - password: '$2a$10$LunBNZ8SvmtISZ92eEu.Xek8.vDQZQnDV0QZ7Eo20LxZuRzNquOlm', - }, - { - firstName: 'Abramo', - lastName: 'Sparkwell', - email: 'asparkwell1t@berkeley.edu', - profilePic: 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', - password: '$2a$10$QYm1ge0tj0gSdDL7IRWEzeqqaenO6Zas9RhHKFYhnj8VStVeVW6gq', - }, - { - firstName: 'Darb', - lastName: 'Coen', - email: 'dcoen1u@prlog.org', - profilePic: - 'https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720', - password: '$2a$10$1bhpvbesE0IVgwJnM4lqc.GfjG5FK0omsaaueVs/c08OIs3ebSxX.', - }, - { - firstName: 'Gusty', - lastName: 'Besnardeau', - email: 'gbesnardeau1v@themeforest.net', - profilePic: 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', - password: '$2a$10$6vCDDrNMFOZl5K5CM9KxROmEumfcGXqYU7tkg65yCAccqF7b9H1km', - }, - { - firstName: 'Randy', - lastName: 'Verriour', - email: 'rverriour1w@ebay.co.uk', - profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', - password: '$2a$10$ND9dRuKq/p0TyIXDyCXUhetI35HULYyCLtfvfba.wYHO9VlDCKq/e', - }, - { - firstName: 'Israel', - lastName: 'Canti', - email: 'icanti1x@businesswire.com', - profilePic: - 'https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827', - password: '$2a$10$NHNl9.KpZB60jKCrqD2MG.y5y87LmabkqK.lrsFcmRCFOBYSLUjqG', - }, - { - firstName: 'Micky', - lastName: 'Dunseath', - email: 'mdunseath1y@miibeian.gov.cn', - profilePic: - 'https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4', - password: '$2a$10$6uRJm/WXtPkWGA4W62HFU.RmEzyUu5siHS.ZsXiI.OXTZOCN.Rjzy', - }, - { - firstName: 'Gabi', - lastName: 'Hardcastle', - email: 'ghardcastle1z@weebly.com', - profilePic: - 'https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4', - password: '$2a$10$cdZeQHxIqJCzkwQzUJpg9egznL4FVgm.n6exQ7VT4PfGrpzeNBAUO', - }, - { - firstName: 'Rakel', - lastName: 'Scothron', - email: 'rscothron20@yellowbook.com', - profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', - password: '$2a$10$rc.SQHRUkMcnmeutSbPEeeK8k6DVtEL6lW58Pc/ljrIC5/iYs5Dk.', - }, - { - firstName: 'Gretel', - lastName: 'Sitford', - email: 'gsitford21@tinyurl.com', - profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', - password: '$2a$10$vgwSM.REDV6QIt0rNo9K5.riA7jke0nZC5Rc09Kaf0PgFYQkRhBli', - }, - { - firstName: 'Rosalinda', - lastName: 'Naisby', - email: 'rnaisby22@nationalgeographic.com', - profilePic: - 'https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png', - password: '$2a$10$riw7asjBJdH3HFI/fNOHre05RD8Tn9ewNoVJBxYA.L3FB58aYdfE.', - }, - { - firstName: 'Thaddus', - lastName: 'Waddell', - email: 'twaddell23@nymag.com', - profilePic: 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', - password: '$2a$10$hahavWujiKjjPBYImkUA9e73YcfKBZeNVP4I.ezip6sEyQPVc8.cW', - }, - { - firstName: 'Nadia', - lastName: 'Zeale', - email: 'nzeale24@google.ru', - profilePic: 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', - password: '$2a$10$N01TsCv2u6LBGhpHK8z8VOCRD2vG1sxRIuZYYlyX/4iEtA7mom9wW', - }, - { - firstName: 'Emmett', - lastName: 'Buckell', - email: 'ebuckell25@reddit.com', - profilePic: 'https://www.codesmith.io/hubfs/Gabriela%20%20Small.png', - password: '$2a$10$U16tvQU51kBO8HfIdCrGx.on4MEFOnt0a2.m51C7rOBIS0rzOf9eO', - }, - { - firstName: 'Lavinia', - lastName: 'Baume', - email: 'lbaume26@tinyurl.com', - profilePic: - 'https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720', - password: '$2a$10$2So/b3QTY/PNvNWervUONeEETF2rviHpXrUrxnAnnnH2QZvTIh5gW', - }, - { - firstName: 'Janine', - lastName: 'Kitt', - email: 'jkitt27@wsj.com', - profilePic: - 'https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4', - password: '$2a$10$QB9d3PmZ4mNopfy3RzOdC.O2OFnR8JEPsl2JQllkcnCyKfjFzMRvO', - }, - { - firstName: 'Beatrix', - lastName: 'Healey', - email: 'bhealey28@amazon.co.jp', - profilePic: 'https://www.codesmith.io/hubfs/Gabriela%20%20Small.png', - password: '$2a$10$r3VCaLaRVQx.CMUBVwBeo.QVhGKc8Z7TztHXIKPLZNuC9mL8ayxpu', - }, - { - firstName: 'Simone', - lastName: 'Buske', - email: 'sbuske29@soundcloud.com', - profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', - password: '$2a$10$sVfBQmixhBsO2UweyDGB.urBXwcbCs4/X8ed2UKbYlmnb6iagTcbC', - }, - { - firstName: 'Cristine', - lastName: 'Gaddesby', - email: 'cgaddesby2a@senate.gov', - profilePic: - 'https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827', - password: '$2a$10$iLTB1MM2I1xWA3VL7kTe.OHv.IzSntFeoc.FDn8pWnOJgw3P00roO', - }, - { - firstName: 'Marta', - lastName: 'Daveren', - email: 'mdaveren2b@odnoklassniki.ru', - profilePic: 'https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png', - password: '$2a$10$TBTRKpaEEJyTh9FTw2h73uGeHyj7ZGazo7xi.cA48R69jbjbLY4di', - }, - { - firstName: 'Nanon', - lastName: 'Gligoraci', - email: 'ngligoraci2c@addthis.com', - profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', - password: '$2a$10$u/nIHSMhz9vSiWWzISARc.pAAtSUEPvSWY1pZHO4DG5Epc7t/DDsy', - }, - { - firstName: 'Donall', - lastName: 'Frapwell', - email: 'dfrapwell2d@hostgator.com', - profilePic: 'https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg', - password: '$2a$10$iHKNdye22EulFKSVN5.tNOcTpJlqu0O6acKJPwCCyOil1zF3FkdIy', - }, - { - firstName: 'Beverlee', - lastName: 'Bangham', - email: 'bbangham2e@tamu.edu', - profilePic: - 'https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827', - password: '$2a$10$wXNZnEE9TL8tgeKuWKyKRubR/IgUjCmKZWTd9wc8sUjA8QZ93vthq', - }, - { - firstName: 'Englebert', - lastName: 'Bancroft', - email: 'ebancroft2f@ow.ly', - profilePic: 'https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg', - password: '$2a$10$EcjGdJhrox/tXFARNuuMmeBQubqJjgoXLq7eZYWo/er3C6gppLfby', - }, - { - firstName: 'Siegfried', - lastName: 'Castillou', - email: 'scastillou2g@reddit.com', - profilePic: - 'https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png', - password: '$2a$10$DrOmLH.JF0oi6FR9IXr8VOmSHP0C/I9WZnuStZgrOUUi1dK/wlf0i', - }, - { - firstName: 'Marvin', - lastName: 'Cranke', - email: 'mcranke2h@marketwatch.com', - profilePic: - 'https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg', - password: '$2a$10$.Wg0UV/Dmd/zViYP/OnvJ.X09ZBZY7BKMSiV9h7aq0DD9lRUreND6', - }, - { - firstName: 'Arne', - lastName: 'Rummin', - email: 'arummin2i@is.gd', - profilePic: 'https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg', - password: '$2a$10$AjZSO39N.UP3GjEXbSuU8.d5d9V1Y/8qK6mt1.QYgwgpKR07cyeIG', - }, - { - firstName: 'Seumas', - lastName: 'Feldberger', - email: 'sfeldberger2j@ning.com', - profilePic: 'https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg', - password: '$2a$10$2883OY2HM07TY6fqkKCI9OWKZEo6ZeE/RJpa3g3KzG6YnvQlGLljC', - }, - { - firstName: 'Hilda', - lastName: 'Worham', - email: 'hworham2k@mail.ru', - profilePic: 'https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg', - password: '$2a$10$kOlY/HxnObnwym4y0pIgoOFPKa9a8RL6XA3pDj.iFlIG44F3NXNgm', - }, - { - firstName: 'Winny', - lastName: "O'Glessane", - email: 'woglessane2l@deviantart.com', - profilePic: 'https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg', - password: '$2a$10$IjXeIf6njEA1Kq/.zd0IFOzWWeBmKPfg1EQsMutjP08Yjdabx/PZe', - }, - { - firstName: 'Gwenora', - lastName: 'Agge', - email: 'gagge2m@unesco.org', - profilePic: - 'https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720', - password: '$2a$10$vJ5BSyLvZliREEMdxLrPe.qHrV6XnUPRWZL25tp1J22604Wn5uCP.', - }, - { - firstName: 'Piggy', - lastName: 'Torrisi', - email: 'ptorrisi2n@goodreads.com', - profilePic: - 'https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827', - password: '$2a$10$E/yrtzHHJpaYFjb00b8sMO2IgW9H7vNUV9/C7V/VOZwAqquEX/q1m', - }, - { - firstName: 'Niki', - lastName: 'Glaysher', - email: 'nglaysher2o@kickstarter.com', - profilePic: 'https://www.codesmith.io/hubfs/Gabriela%20%20Small.png', - password: '$2a$10$3IuzlNTRGZcFzLhHhA7.TujKVstdPVzFPA/IUQxBUcZFCmWeb4rn.', - }, - { - firstName: 'Pail', - lastName: 'Vasechkin', - email: 'pvasechkin2p@vk.com', - profilePic: - 'https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720', - password: '$2a$10$nl9fW9EQWV37BP0MFeY5HuS1xZ64Lq.n4mPr5x0IML8JIuM5RRB46', - }, - { - firstName: 'Gav', - lastName: 'Renneke', - email: 'grenneke2q@hp.com', - profilePic: - 'https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720', - password: '$2a$10$NzSQF086.xq.2E2jFkpY5O.qNJyVq2Fkd6iwAHKrFDuIx2G705cPO', - }, - { - firstName: 'Perle', - lastName: 'Rizziello', - email: 'prizziello2r@mashable.com', - profilePic: - 'https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg', - password: '$2a$10$mYw63dkZFGwy4N8d5.8S2utcYeiiNwRRbUL9KyChIYpYudxekQ7KG', - }, -]; - -const mockForums = [ - { - title: 'Code Crunch & Job Hunt: Battle Logs', - description: - 'Share your epic (or tragic) tales from the job search battlefield. Did you bravely conquer the coding test, or did it conquer you?', - }, - { - title: 'Debugging My Resume', - description: - 'Need help squashing those pesky resume bugs? Post your CV here and let the community help you refactor it into a job offer magnet.', - }, - { - title: 'Interview Nightmares & Dream Jobs', - description: - 'Spill the beans on your worst interview disasters and celebrate those rare moments when it actually went well. Misery loves company, and so do success stories!', - }, - { - title: 'HR: Humans or Robots?', - description: - 'Ever wonder if that HR person was a cleverly disguised bot? Share your weirdest and most robotic interactions with hiring departments.', - }, - { - title: 'Salary Negotiation: The Boss Fight', - description: - 'Tips, tricks, and epic fails from the final boss battle of job hunting: salary negotiations. Did you get the loot or just a consolation prize?', - }, - { - title: 'Coding Challenge Gauntlet', - description: - 'Post and discuss the coding challenges that made you cry, laugh, or question your career choices. Help others survive the gauntlet!', - }, - { - title: 'Office Buzzwords & Bingo', - description: - 'Share and decipher the latest buzzwords and jargon from job postings and interviews. Bonus points for the most absurd phrases.', - }, - { - title: 'Side Projects & Procrastination', - description: - 'Brag about your side projects or confess how theyโ€™re really just elaborate ways to procrastinate. Either way, weโ€™re impressed!', - }, - { - title: 'LinkedIn Lamentations', - description: - "Rant and rave about the peculiarities of LinkedIn. Endorsements, random connection requests, and the mysterious 'we found your profile' emails.", - }, - { - title: 'Rejected & Dejected: Therapy Sessions', - description: - 'A safe space to vent about job rejections and support each other through the emotional rollercoaster of the job hunt. Cookies and virtual hugs provided.', - }, -]; - -console.log('๐ŸŒฑ Seeding Alumni Collection...'); -db.alumnis.insertMany(mockAlumnis); -console.log('๐Ÿ Seeding Alumni Collection Successful!'); - -console.log('๐ŸŒฑ Seeding GraduateInvitations Collection...'); -db.graduateinvitations.insertMany(mockGraduteInvitions); -console.log('๐Ÿ Seeding GraduateInvitations Collection Successful!'); - -console.log('๐ŸŒฑ Seeding Users Collection...'); -db.users.insertMany(mockUsers); -console.log('๐Ÿ Seeding Users Collection Successful!'); - -console.log('๐ŸŒฑ Seeding Forums Collection...'); -db.forums.insertMany(mockForums); -console.log('๐Ÿ Seeding Forums Collection Successful!'); diff --git a/scripts/db/mongoInit/seed-reference-collections.js b/scripts/db/mongoInit/seed-reference-collections.js deleted file mode 100644 index 7bf1bdfa..00000000 --- a/scripts/db/mongoInit/seed-reference-collections.js +++ /dev/null @@ -1,1350 +0,0 @@ -console.log('๐ŸŒฑ Seeding Profiles Collection...'); - -const users = db.users.find().toArray(); -const forums = db.forums.find().toArray(); - -const cohorts = ['LA', 'NYC', 'ECRI', 'PTRI', 'WCRI', 'FTRI', 'CTRI']; - -const cohortNumRange = 100; - -const professionalSummaryOptions = [ - 'Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.', - 'Backend engineer specializing in designing and optimizing database architectures for high-performance applications.', - 'Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.', - 'DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.', - 'Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.', - 'Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.', - 'AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.', - 'Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.', - 'Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.', - 'Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.', -]; - -const skillOptions = [ - 'JavaScript', - 'Python', - 'Java', - 'C++', - 'C#', - 'Ruby', - 'HTML', - 'CSS', - 'SQL', - 'NoSQL', - 'Git', - 'Agile Development', - 'Scrum', - 'RESTful APIs', - 'GraphQL', - 'Docker', - 'Kubernetes', - 'CI/CD', - 'AWS', - 'Azure', - 'Google Cloud Platform', - 'Machine Learning', - 'Deep Learning', - 'Data Science', - 'Big Data', - 'Microservices', - 'Serverless Architecture', - 'Mobile Development', - 'iOS Development', - 'Android Development', - 'React', - 'Angular', - 'Vue.js', - 'Node.js', - 'Django', - 'Flask', - 'Spring Boot', - 'Laravel', - 'ASP.NET', - 'Blockchain', - 'Cybersecurity', - 'Unit Testing', - 'Integration Testing', - 'System Design', - 'Database Design', - 'Software Architecture', - 'Performance Optimization', - 'DevOps', - 'Continuous Deployment', - 'TDD (Test-Driven Development)', - 'BDD (Behavior-Driven Development)', - 'Graph Databases', - 'WebSockets', - 'Event-Driven Architecture', - 'Functional Programming', - 'Object-Oriented Programming', - 'SaaS (Software as a Service)', - 'PaaS (Platform as a Service)', - 'FaaS (Function as a Service)', - 'User Experience (UX) Design', - 'User Interface (UI) Design', - 'Version Control', - 'Automated Testing', - 'Code Review', - 'Pair Programming', - 'Cloud Computing', - 'Containerization', - 'Infrastructure as Code', - 'API Development', - 'API Integration', - 'ETL (Extract, Transform, Load)', - 'Data Warehousing', - 'Data Visualization', - 'Natural Language Processing', - 'Robotic Process Automation', - 'Edge Computing', - 'IoT (Internet of Things)', - 'AR/VR (Augmented/Virtual Reality)', - 'Quantum Computing', - 'Reactive Programming', - 'Concurrency', - 'Parallel Computing', - 'Graph Theory', - 'Algorithm Design', - 'Design Patterns', - 'Refactoring', - 'Legacy Code Management', - 'Technical Writing', - 'Project Management', - 'Communication Skills', - 'Problem-Solving', - 'Critical Thinking', - 'Time Management', - 'Collaboration', - 'Leadership', -]; - -const jobTitleOptions = [ - 'Software Engineer', - 'Senior Software Engineer', - 'Lead Software Engineer', - 'Principal Software Engineer', - 'Junior Software Engineer', - 'Software Developer', - 'Backend Developer', - 'Frontend Developer', - 'Full Stack Developer', - 'DevOps Engineer', - 'Site Reliability Engineer', - 'Mobile Developer', - 'iOS Developer', - 'Android Developer', - 'Web Developer', - 'Embedded Systems Engineer', - 'Data Engineer', - 'Machine Learning Engineer', - 'AI Engineer', - 'Data Scientist', - 'Cloud Engineer', - 'Security Engineer', - 'QA Engineer', - 'Automation Engineer', - 'Test Engineer', - 'Software Architect', - 'Technical Lead', - 'Engineering Manager', - 'Technical Program Manager', - 'Product Manager', -]; - -const companyOptions = [ - 'Google', - 'Apple', - 'Microsoft', - 'Amazon', - 'Facebook', - 'Twitter', - 'Tesla', - 'Netflix', - 'Adobe', - 'Intel', - 'NVIDIA', - 'Oracle', - 'IBM', - 'Salesforce', - 'Cisco', - 'Uber', - 'Airbnb', - 'Lyft', - 'Spotify', - 'Snapchat', - 'Dropbox', - 'PayPal', - 'Square', - 'Shopify', - 'Zoom', - 'Slack', - 'Red Hat', - 'Atlassian', - 'GitHub', - 'LinkedIn', - 'Pinterest', - 'Stripe', - 'Twilio', - 'Asana', - 'Qualcomm', - 'VMware', - 'Palantir', - 'Coinbase', - 'Robinhood', - 'Snowflake', - 'ServiceNow', - 'Workday', - 'DocuSign', - 'Okta', - 'Datadog', - 'HubSpot', - 'DoorDash', - 'Epic Games', - 'EA (Electronic Arts)', - 'Activision Blizzard', -]; - -const collegeOptions = [ - 'Harvard University', - 'Stanford University', - 'Massachusetts Institute of Technology (MIT)', - 'California Institute of Technology (Caltech)', - 'University of California, Berkeley', - 'University of Oxford', - 'University of Cambridge', - 'Princeton University', - 'Columbia University', - 'University of Chicago', - 'Yale University', - 'University of Pennsylvania', - 'University of California, Los Angeles (UCLA)', - 'Johns Hopkins University', - 'University of Southern California', - 'Duke University', - 'Cornell University', - 'Northwestern University', - 'University of Michigan', - 'New York University (NYU)', - 'Carnegie Mellon University', - 'University of Toronto', - 'University of Washington', - 'University College London (UCL)', - 'Imperial College London', - 'London School of Economics and Political Science (LSE)', - 'University of Edinburgh', - 'University of British Columbia', - 'University of Texas at Austin', - 'Georgia Institute of Technology', - 'University of Melbourne', - 'University of Sydney', - 'Australian National University', - 'University of Queensland', - 'University of New South Wales (UNSW Sydney)', - 'McGill University', - 'University of Montreal', - 'University of Alberta', - 'ETH Zurich - Swiss Federal Institute of Technology', - 'EPFL - ร‰cole Polytechnique Fรฉdรฉrale de Lausanne', - 'University of Tokyo', - 'Kyoto University', - 'Seoul National University', - 'National University of Singapore (NUS)', - 'Nanyang Technological University (NTU)', - 'Peking University', - 'Tsinghua University', - 'Fudan University', - 'Shanghai Jiao Tong University', - 'Hong Kong University of Science and Technology (HKUST)', - 'University of Hong Kong (HKU)', - 'Chinese University of Hong Kong (CUHK)', - 'University of California, San Diego (UCSD)', - 'University of California, Santa Barbara (UCSB)', - 'University of Illinois at Urbana-Champaign', - 'University of Wisconsin-Madison', - 'University of Minnesota', - 'University of Florida', - 'University of Maryland, College Park', - 'Ohio State University', - 'Pennsylvania State University', - 'University of North Carolina at Chapel Hill', - 'Purdue University', - 'University of Virginia', - 'Vanderbilt University', - 'Rice University', - 'Emory University', - 'Washington University in St. Louis', - 'Brown University', - 'University of Notre Dame', - 'Georgetown University', - 'Boston University', - 'University of Miami', - 'University of Rochester', - 'Case Western Reserve University', - 'University of Colorado Boulder', - 'University of Utah', - 'University of Arizona', - 'University of Iowa', - 'Indiana University Bloomington', - 'Michigan State University', - 'Rutgers University', - 'University of Pittsburgh', - 'University of Delaware', - 'University of Connecticut', - 'University of Kansas', - 'University of Oregon', - 'University of Tennessee', - 'University of South Carolina', - 'Clemson University', - 'University of Oklahoma', - 'University of Kentucky', - 'University of Nebraska-Lincoln', - 'University of Houston', - 'University of Georgia', - 'University of Missouri', - 'University of Massachusetts Amherst', - 'University of Vermont', - 'Syracuse University', - 'Brigham Young University', -]; - -const degreeOptions = [ - 'High School Diploma', - 'Associate Degree', - "Bachelor's Degree", - 'Bachelor of Arts (BA)', - 'Bachelor of Science (BS)', - 'Bachelor of Fine Arts (BFA)', - 'Bachelor of Business Administration (BBA)', - 'Bachelor of Engineering (BE)', - 'Bachelor of Technology (BTech)', - "Master's Degree", - 'Master of Arts (MA)', - 'Master of Science (MS)', - 'Master of Business Administration (MBA)', - 'Master of Fine Arts (MFA)', - 'Master of Engineering (ME)', - 'Master of Technology (MTech)', - 'Master of Public Administration (MPA)', - 'Master of Public Health (MPH)', - 'Master of Social Work (MSW)', - 'Master of Education (MEd)', - 'Doctoral Degree', - 'Doctor of Philosophy (PhD)', - 'Doctor of Education (EdD)', - 'Doctor of Business Administration (DBA)', - 'Doctor of Medicine (MD)', - 'Doctor of Dental Surgery (DDS)', - 'Doctor of Dental Medicine (DMD)', - 'Doctor of Veterinary Medicine (DVM)', - 'Juris Doctor (JD)', - 'Doctor of Pharmacy (PharmD)', - 'Professional Degree', - 'Postdoctoral Research', - 'Certificate Program', - 'Diploma Program', - 'Trade School Certification', - 'Technical School Certification', - 'Continuing Education', - 'Professional Development', - 'Executive Education', -]; - -const fieldOfStudyOptions = [ - 'Computer Science', - 'Electrical Engineering', - 'Mechanical Engineering', - 'Civil Engineering', - 'Chemical Engineering', - 'Biomedical Engineering', - 'Aerospace Engineering', - 'Environmental Engineering', - 'Information Technology', - 'Data Science', - 'Physics', - 'Mathematics', - 'Statistics', - 'Chemistry', - 'Biology', - 'Biochemistry', - 'Psychology', - 'Sociology', - 'Anthropology', - 'Political Science', - 'Economics', - 'Finance', - 'Business Administration', - 'Marketing', - 'Accounting', - 'Management', - 'International Relations', - 'History', - 'Philosophy', - 'English Literature', - 'Linguistics', - 'Journalism', - 'Communication Studies', - 'Education', - 'Law', - 'Public Health', - 'Nursing', - 'Medicine', - 'Dentistry', - 'Pharmacy', - 'Veterinary Medicine', - 'Architecture', - 'Urban Planning', - 'Fine Arts', - 'Music', - 'Theater', - 'Film Studies', - 'Graphic Design', - 'Interior Design', -]; - -const projectOptions = [ - { - name: 'CodeBot', - description: 'Automated code generation tool using AI for faster development cycles.', - link: 'https://github.com/username/codebot', - }, - { - name: 'DataCrunch', - description: 'Real-time data analytics platform for extracting insights from big data.', - link: 'https://github.com/username/datacrunch', - }, - { - name: 'CloudGuard', - description: 'Advanced cloud security suite ensuring data protection and compliance.', - link: 'https://github.com/username/cloudguard', - }, - { - name: 'RoboVision', - description: 'AI-powered computer vision system for object detection and recognition.', - link: 'https://github.com/username/robovision', - }, - { - name: 'CryptoTrack', - description: 'Blockchain-based cryptocurrency portfolio tracker for investors.', - link: 'https://github.com/username/cryptotrack', - }, - { - name: 'SmartHomeHub', - description: 'Centralized home automation system integrating IoT devices for smart living.', - link: 'https://github.com/username/smarthomehub', - }, - { - name: 'HealthLink', - description: 'Telemedicine platform connecting patients with healthcare providers remotely.', - link: 'https://github.com/username/healthlink', - }, - { - name: 'AugmentWorks', - description: 'Augmented reality application for enhancing workplace productivity and training.', - link: 'https://github.com/username/augmentworks', - }, - { - name: 'GenomeQuest', - description: 'Genomic data analysis tool for researchers and bioinformaticians.', - link: 'https://github.com/username/genomequest', - }, - { - name: 'NetPlanner', - description: - 'Network infrastructure planning software for optimizing bandwidth and efficiency.', - link: 'https://github.com/username/netplanner', - }, - { - name: 'VoiceAssistant', - description: 'Voice-controlled personal assistant using natural language processing.', - link: 'https://github.com/username/voiceassistant', - }, - { - name: 'EcoTech', - description: 'Environmental monitoring and conservation app with real-time data visualization.', - link: 'https://github.com/username/ecotech', - }, - { - name: 'SecureChat', - description: 'End-to-end encrypted messaging app ensuring user privacy and security.', - link: 'https://github.com/username/securechat', - }, - { - name: 'VirtualTour', - description: 'Virtual reality tour application for immersive travel experiences.', - link: 'https://github.com/username/virtualtour', - }, - { - name: 'CodeAnalyzer', - description: 'Static code analysis tool for detecting bugs and code quality improvements.', - link: 'https://github.com/username/codeanalyzer', - }, - { - name: 'SmartInventory', - description: 'Inventory management system with RFID and IoT integration for tracking assets.', - link: 'https://github.com/username/smartinventory', - }, - { - name: 'LearnHub', - description: - 'Online learning platform offering courses on various subjects with interactive content.', - link: 'https://github.com/username/learnhub', - }, - { - name: 'HealthMonitor', - description: - 'Personal health monitoring app with AI-driven analytics and wearable device integration.', - link: 'https://github.com/username/healthmonitor', - }, - { - name: 'JobFinder', - description: - 'Job search and application management platform with personalized recommendations.', - link: 'https://github.com/username/jobfinder', - }, - { - name: 'SmartGrid', - description: 'Smart grid technology for efficient energy distribution and consumption.', - link: 'https://github.com/username/smartgrid', - }, - { - name: 'RoboTrader', - description: 'Algorithmic trading platform for automated stock market analysis and trading.', - link: 'https://github.com/username/robotrader', - }, - { - name: 'SocialConnect', - description: 'Social media integration platform for managing multiple social accounts.', - link: 'https://github.com/username/socialconnect', - }, - { - name: 'TourismApp', - description: - 'Mobile application for tourists providing travel guides and local recommendations.', - link: 'https://github.com/username/tourismapp', - }, - { - name: 'SmartMirror', - description: - 'Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.', - link: 'https://github.com/username/smartmirror', - }, - { - name: 'VirtualMarket', - description: - 'Virtual reality shopping experience allowing users to browse and buy products online.', - link: 'https://github.com/username/virtualmarket', - }, - { - name: 'CodeReview', - description: 'Collaborative code review platform with annotations and feedback features.', - link: 'https://github.com/username/codereview', - }, - { - name: 'AIAssistant', - description: 'Artificial intelligence assistant for managing tasks, scheduling, and reminders.', - link: 'https://github.com/username/aiassistant', - }, - { - name: 'SecureBackup', - description: 'Encrypted cloud backup solution ensuring secure storage and data protection.', - link: 'https://github.com/username/securebackup', - }, - { - name: 'SmartCarPark', - description: - 'Smart parking management system using IoT sensors for efficient parking space utilization.', - link: 'https://github.com/username/smartcarpark', - }, - { - name: 'HomeSecurity', - description: - 'Home security system with video surveillance, motion detection, and alarm integration.', - link: 'https://github.com/username/homesecurity', - }, - { - name: 'EduTech', - description: - 'Educational technology platform offering virtual classrooms and interactive learning tools.', - link: 'https://github.com/username/edutech', - }, - { - name: 'EventPlanner', - description: 'Event management and planning software for organizing and coordinating events.', - link: 'https://github.com/username/eventplanner', - }, - { - name: 'SmartFarm', - description: - 'Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.', - link: 'https://github.com/username/smartfarm', - }, - { - name: 'MediCare', - description: - 'Medical appointment scheduling and patient management system for healthcare providers.', - link: 'https://github.com/username/medicare', - }, - { - name: 'FoodDelivery', - description: - 'Online food delivery platform connecting restaurants with customers for food ordering.', - link: 'https://github.com/username/fooddelivery', - }, - { - name: 'AIChatbot', - description: 'AI-powered chatbot for customer support and interactive communication.', - link: 'https://github.com/username/aichatbot', - }, - { - name: 'SmartCity', - description: - 'Integrated urban management system using IoT and data analytics for smart city initiatives.', - link: 'https://github.com/username/smartcity', - }, - { - name: 'VirtualAssistant', - description: - 'Virtual assistant software for voice command-based tasks and personal assistance.', - link: 'https://github.com/username/virtualassistant', - }, - { - name: 'SmartLearning', - description: 'AI-driven personalized learning platform with adaptive learning algorithms.', - link: 'https://github.com/username/smartlearning', - }, - { - name: 'RecruitmentAI', - description: 'AI-powered recruitment platform for matching candidates with job opportunities.', - link: 'https://github.com/username/recruitmentai', - }, - { - name: 'CloudStorage', - description: 'Cloud storage service with file synchronization and sharing capabilities.', - link: 'https://github.com/username/cloudstorage', - }, - { - name: 'TravelGuide', - description: - 'Interactive travel guide application providing travel tips and destination insights.', - link: 'https://github.com/username/travelguide', - }, - { - name: 'SmartWatch', - description: - 'Smart wearable device with health monitoring, fitness tracking, and notification features.', - link: 'https://github.com/username/smartwatch', - }, - { - name: 'ARNavigation', - description: - 'Augmented reality navigation app for real-time directions and location-based information.', - link: 'https://github.com/username/arnavigation', - }, - { - name: 'CryptoWallet', - description: - 'Cryptocurrency wallet application for securely storing and managing digital assets.', - link: 'https://github.com/username/cryptowallet', - }, - { - name: 'CodeOptimizer', - description: - 'AI-driven code optimization tool for improving software performance and efficiency.', - link: 'https://github.com/username/codeoptimizer', - }, -]; - -const testimonialOptions = [ - { - from: 'Alice Johnson', - relation: 'Manager at TechSolutions Inc.', - text: "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", - }, - { - from: 'David Smith', - relation: 'Colleague at InnovateTech Ltd.', - text: 'Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.', - }, - { - from: 'Emily Brown', - relation: 'Client at GlobalSoft Solutions', - text: "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", - }, - { - from: 'Daniel Lee', - relation: 'Project Manager at Digital Dynamics', - text: "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", - }, - { - from: 'Olivia White', - relation: 'Tech Lead at Cloud Innovations', - text: "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", - }, - { - from: 'Sophia Martinez', - relation: 'Director of Engineering at FutureTech', - text: "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", - }, - { - from: 'Ethan Taylor', - relation: 'Co-founder at StartupX', - text: "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", - }, - { - from: 'Isabella Clark', - relation: 'HR Manager at TechFusion', - text: "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", - }, - { - from: 'Noah Rodriguez', - relation: 'Product Owner at AgileSoft', - text: "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", - }, - { - from: 'Aiden Walker', - relation: 'CTO at Innovate Solutions', - text: "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", - }, - { - from: 'Liam Harris', - relation: 'Lead Developer at CloudTech', - text: "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - }, - { - from: 'Emma Thompson', - relation: 'Manager at DataTech Solutions', - text: "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", - }, - { - from: 'Lucas Miller', - relation: 'CTO at InnovateTech Ltd.', - text: "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", - }, - { - from: 'Sophie Turner', - relation: 'Project Manager at Digital Dynamics', - text: "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - }, - { - from: 'Emma Watson', - relation: 'Director of Engineering at FutureTech', - text: "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - }, - { - from: 'Oliver Jackson', - relation: 'HR Manager at TechFusion', - text: "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - }, - { - from: 'Sophia Brown', - relation: 'Product Owner at AgileSoft', - text: "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - }, - { - from: 'Ethan Green', - relation: 'CTO at Innovate Solutions', - text: "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - }, - { - from: 'Mia Davis', - relation: 'Lead Developer at CloudTech', - text: "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", - }, - { - from: 'Noah Wilson', - relation: 'Manager at DataTech Solutions', - text: "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - }, - { - from: 'Ava Miller', - relation: 'CTO at InnovateTech Ltd.', - text: "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", - }, - { - from: 'Sophia Turner', - relation: 'Project Manager at Digital Dynamics', - text: "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - }, - { - from: 'Ella Watson', - relation: 'Director of Engineering at FutureTech', - text: "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - }, - { - from: 'Oliver Jackson', - relation: 'HR Manager at TechFusion', - text: "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - }, - { - from: 'Sophia Brown', - relation: 'Product Owner at AgileSoft', - text: "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - }, - { - from: 'Ethan Green', - relation: 'CTO at Innovate Solutions', - text: "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - }, - { - from: 'Mia Davis', - relation: 'Lead Developer at CloudTech', - text: "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", - }, - { - from: 'Noah Wilson', - relation: 'Manager at DataTech Solutions', - text: "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - }, - { - from: 'Ava Miller', - relation: 'CTO at InnovateTech Ltd.', - text: "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", - }, - { - from: 'Sophia Turner', - relation: 'Project Manager at Digital Dynamics', - text: "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - }, - { - from: 'Ella Watson', - relation: 'Director of Engineering at FutureTech', - text: "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - }, - { - from: 'Oliver Jackson', - relation: 'HR Manager at TechFusion', - text: "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - }, - { - from: 'Sophia Brown', - relation: 'Product Owner at AgileSoft', - text: "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - }, - { - from: 'Ethan Green', - relation: 'CTO at Innovate Solutions', - text: "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - }, - { - from: 'Mia Davis', - relation: 'Lead Developer at CloudTech', - text: "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", - }, -]; - -const bootcampOptions = [ - 'Codesmith', - 'Le Wagon', - 'App Academy', - 'General Assembly', - 'Flatiron School', - 'Fullstack Academy', - 'Hack Reactor', - 'Coding Dojo', - 'Ironhack', - 'Thinkful', - 'BrainStation', - 'Lambda School', - 'The Tech Academy', - 'CareerFoundry', - 'Makers Academy', - 'Tech Elevator', - 'DevMountain', - 'Galvanize', - 'Nucamp', - 'Springboard', - 'Kenzie Academy', -]; - -const personBioOptions = [ - 'Passionate software engineer with a love for solving complex problems and building scalable applications.', - 'Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.', - 'Experienced in both frontend and backend development, with a focus on creating elegant and efficient solutions.', - 'Enthusiastic about open-source contributions and collaborating with diverse teams to deliver impactful projects.', - 'Driven by a curiosity for innovation and a commitment to delivering high-quality software solutions.', - 'Detail-oriented developer with a strong foundation in algorithms and data structures.', - 'Committed to writing clean, maintainable code that meets rigorous performance standards.', - 'Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.', - 'Adaptable problem solver who thrives in dynamic, fast-paced environments.', - "Passionate about building inclusive and accessible software that improves people's lives.", - 'Experienced in Agile methodologies, with a track record of delivering projects on time and within budget.', - 'Devoted to fostering a collaborative team environment and mentoring junior developers.', - 'Strong analytical thinker with a knack for troubleshooting and resolving complex technical issues.', - 'Proactive learner constantly exploring emerging technologies and trends in the software industry.', - 'Focused on creating seamless user experiences through intuitive interface design and interaction.', - 'Experienced in deploying and maintaining applications on cloud platforms like AWS and Azure.', - 'Passionate about leveraging data-driven insights to optimize software performance and user engagement.', - 'Dedicated to upholding best practices in software engineering, including testing, code reviews, and version control.', - 'Skilled in working with cross-functional teams to deliver innovative software solutions that exceed expectations.', - 'Experienced in building scalable microservices architectures and integrating third-party APIs.', - 'Adept at optimizing SQL and NoSQL databases for performance and scalability.', - 'Committed to ensuring software security and compliance with industry standards and regulations.', - 'Passionate about improving codebase efficiency through refactoring and performance tuning.', - 'Enthusiastic about exploring the intersection of technology and social impact.', - 'Skilled in UX/UI design principles, with a focus on creating intuitive and visually appealing interfaces.', - 'Proven ability to lead technical projects from inception to successful deployment and maintenance.', - 'Innovative thinker with a track record of proposing and implementing creative solutions to technical challenges.', - 'Advocate for diversity and inclusion in the tech industry, fostering a welcoming and supportive workplace culture.', - 'Experienced in international collaboration and remote work, with a strong appreciation for cultural diversity.', - 'Driven by a passion for problem-solving and a commitment to continuous professional development.', - 'Committed to ethical software development practices and promoting transparency in technology.', - 'Skilled in conducting technical workshops and seminars to share knowledge and mentor aspiring developers.', - 'Passionate about contributing to the tech community through open-source projects and knowledge sharing.', - 'Experienced in rapid prototyping and iterative development methodologies.', - 'Focused on delivering user-centric solutions that address real-world needs and challenges.', -]; - -const randomIndex = (arr) => Math.floor(Math.random() * arr.length); - -const createRandomCohort = () => { - return `${cohorts[randomIndex(cohorts)]} ${Math.floor(Math.random() * cohortNumRange)}`; -}; - -const createRandomDates = () => { - const rawDate = Date.now() - Math.floor(Math.random()) * 1000 * 60 * 60 * 24 * 365 * 10; - return [ - new Date(rawDate), - new Date(rawDate + Math.floor(Math.random() * 1000 * 60 * 60 * 24 * 365 * 4)), - ]; -}; - -const createRandomSkillArray = () => { - const randomSkills = []; - const randoNum = Math.floor(Math.random() * 20); - if (randoNum === 0) return randomSkills; - - for (let i = 0; i < randoNum; i++) { - const randoIndex = randomIndex(skillOptions); - - if (randomSkills.includes(skillOptions[randoIndex])) continue; - else randomSkills.push(skillOptions[randoIndex]); - } - - return randomSkills; -}; - -const createRandomPosition = () => { - return { - title: jobTitleOptions[randomIndex(jobTitleOptions)], - company: companyOptions[randomIndex(companyOptions)], - }; -}; - -const createPastPositions = () => { - const pastPositions = []; - const randoNum = Math.floor(Math.random() * 5); - if (randoNum === 0) return pastPositions; - for (let i = 0; i <= randoNum; i++) { - const dates = createRandomDates(); - pastPositions.push({ - ...createRandomPosition(), - startDate: dates[0], - endDate: dates[1], - }); - } - return pastPositions; -}; - -const createRandomEducation = () => { - const education = []; - const num = Math.floor(Math.random() * 4) + 1; - for (let i = 0; i < num; i++) { - const dates = createRandomDates(); - education.push({ - institution: collegeOptions[randomIndex(collegeOptions)], - degree: degreeOptions[randomIndex(degreeOptions)], - fieldOfStudy: fieldOfStudyOptions[randomIndex(fieldOfStudyOptions)], - startDate: dates[0], - endDate: dates[1], - }); - } - return education; -}; - -const createRandomProjects = () => { - const projects = []; - let numProjects = Math.floor(Math.random() * 5); - if (numProjects === 0) return projects; - for (let i = 0; i <= numProjects; i++) { - projects.push(projectOptions[randomIndex(projectOptions)]); - } - return projects; -}; - -const createTestimonials = () => { - const testimonials = []; - const numTestimonials = Math.floor(Math.random() * 5); - if (numTestimonials === 0) return testimonials; - for (let i = 0; i <= numTestimonials; i++) { - testimonials.push(testimonialOptions[randomIndex(testimonialOptions)]); - } - return testimonials; -}; - -const generateProfile = (userDoc) => { - return { - user: userDoc._id, - firstName: userDoc.firstName, - lastName: userDoc.lastName, - profilePhoto: userDoc.profilePic, - cohort: createRandomCohort(), - graduationYear: createRandomDates()[0].getUTCFullYear(), - email: userDoc.email, - linkedInProfile: `https://www.linkedin.com/in/${userDoc.firstName + '-' + userDoc.lastName + '-fake'}`, - professionalSummary: professionalSummaryOptions[randomIndex(professionalSummaryOptions)], - skills: createRandomSkillArray(), - specializations: createRandomSkillArray(), - careerInformation: { - currentPosition: createRandomPosition(), - pastPositions: createPastPositions(), - }, - education: createRandomEducation(), - projects: createRandomProjects(), - personalBio: personBioOptions[randomIndex(personBioOptions)], - testimonials: createTestimonials(), - socialMediaLinks: { - twitter: - Math.random() > 0.5 - ? `https://x.com/${userDoc.firstName + '-' + userDoc.lastName}-fake` - : undefined, - blog: - Math.random() > 0.5 - ? `https://www.${userDoc.firstName + '-' + userDoc.lastName}-fake-blog.com` - : undefined, - other: - Math.random() > 0.5 - ? [`https://www.instagram.com/${userDoc.firstName + '-' + userDoc.lastName}-fake`] - : undefined, - }, - availabilityForNetworking: Math.random() > 0.4 ? true : false, - bootcampExperience: bootcampOptions[randomIndex(bootcampOptions)], - }; -}; - -const profiles = users.map((u) => generateProfile(u)); - -db.profiles.insertMany(profiles); - -console.log('๐Ÿ Seeding Profiles Collection Successful!'); - -console.log('๐ŸŒฑ Seeding Threads Collection...'); - -const threadOptions = [ - { - title: 'Best IDEs for Web Development?', - content: - "I'm exploring different IDE options for web development. What are your recommendations and why? Looking for suggestions on both free and paid IDEs.", - }, - { - title: 'How to Improve Code Review Process?', - content: - "Seeking advice on optimizing our team's code review process. What tools and practices do you use to ensure effective code reviews and maintain code quality?", - }, - { - title: 'Career Advice: Frontend vs Backend?', - content: - 'Considering specializing in either frontend or backend development. What are the pros and cons of each? Which path offers better career opportunities?', - }, - { - title: 'Introduction to Docker Containers', - content: - "New to Docker and containers? Let's discuss the basics, benefits, and practical applications of Docker in software development and deployment.", - }, - { - title: 'JavaScript Frameworks Comparison', - content: - 'Comparing popular JavaScript frameworks like React, Angular, and Vue.js. Share your experiences, strengths, and weaknesses of each framework.', - }, - { - title: 'Tips for Effective Debugging', - content: - 'Share your best practices and tools for debugging complex issues in software development. How do you approach troubleshooting and resolving bugs?', - }, - { - title: 'Remote Work: Challenges and Solutions', - content: - 'Discussing the challenges faced while working remotely and sharing strategies to stay productive, maintain communication, and foster team collaboration.', - }, - { - title: 'Machine Learning for Beginners', - content: - "New to machine learning? Let's explore foundational concepts, resources, and hands-on tutorials to get started with machine learning projects.", - }, - { - title: 'Continuous Integration and Deployment (CI/CD)', - content: - 'Exploring CI/CD pipelines, best practices, and tools for automating software delivery processes. Share your experiences and tips for implementing CI/CD.', - }, - { - title: 'Interview Preparation Tips', - content: - 'Preparing for software engineering interviews? Discussing strategies, common interview questions, and resources to ace technical interviews.', - }, - { - title: 'Frontend Performance Optimization Techniques', - content: - 'Exploring strategies and tools to optimize frontend performance. Share tips on reducing page load times, improving rendering efficiency, and optimizing assets.', - }, - { - title: 'Backend Architecture Best Practices', - content: - 'Discussing best practices for designing scalable and resilient backend architectures. How do you ensure high availability and fault tolerance?', - }, - { - title: 'Version Control: Git Tips and Tricks', - content: - 'Share your favorite Git commands, workflows, and best practices for version control. How do you handle branching, merging, and code collaboration?', - }, - { - title: 'Agile Development: Scrum vs Kanban', - content: - 'Comparing Scrum and Kanban methodologies for Agile software development. Which approach works better for your team and why?', - }, - { - title: 'Python vs Java: Which is Better for Backend Development?', - content: - 'Debating the pros and cons of Python and Java for backend development. Share your experiences and preferences in choosing a backend programming language.', - }, - { - title: 'Tips for Building Scalable Microservices', - content: - 'Discussing architectural patterns, communication protocols, and deployment strategies for building scalable microservices architectures.', - }, - { - title: 'Data Structures and Algorithms: Best Resources', - content: - 'Sharing recommended resources, books, and online courses for learning data structures and algorithms. What are your favorite learning materials?', - }, - { - title: 'Web Security: Best Practices and Tools', - content: - 'Discussing security vulnerabilities, best practices, and tools for securing web applications. How do you protect against common web attacks?', - }, - { - title: 'UX/UI Design Principles for Developers', - content: - 'Exploring UX/UI design principles and best practices for developers. How can developers contribute to creating user-friendly and visually appealing interfaces?', - }, - { - title: 'Cloud Computing: AWS vs Azure', - content: - 'Comparing Amazon Web Services (AWS) and Microsoft Azure cloud platforms. Which platform do you prefer for hosting and deploying your applications?', - }, - { - title: 'Blockchain Technology: Applications and Use Cases', - content: - 'Exploring real-world applications and use cases of blockchain technology beyond cryptocurrencies. How is blockchain transforming industries?', - }, - { - title: 'Artificial Intelligence: Ethics and Implications', - content: - 'Discussing ethical considerations and societal implications of AI technologies. How can we ensure responsible AI development and deployment?', - }, - { - title: 'Mobile App Development Trends for 2024', - content: - 'Predicting and discussing emerging trends and technologies in mobile app development for the upcoming year. What trends are shaping the mobile app landscape?', - }, - { - title: 'Open Source Contributions: Getting Started', - content: - 'Tips and advice for beginners on how to get started with contributing to open-source projects. What are the benefits of open-source contributions?', - }, - { - title: 'Big Data Analytics: Tools and Techniques', - content: - 'Exploring tools, frameworks, and techniques for analyzing and deriving insights from large datasets. How do you handle big data challenges?', - }, - { - title: 'Tech Career Transition: Tips and Success Stories', - content: - 'Sharing success stories, tips, and advice for transitioning into a tech career from a non-technical background. How did you make the leap?', - }, - { - title: 'Cybersecurity Threats: Prevention and Response', - content: - 'Discussing common cybersecurity threats and strategies for prevention and incident response. How do you secure your applications and data?', - }, - { - title: 'Cloud Native Applications: Architecture and Benefits', - content: - 'Exploring the architecture and benefits of cloud-native applications. How do you design and deploy applications for cloud environments?', - }, - { - title: 'AR/VR Development: Tools and Platforms', - content: - 'Discussing tools, platforms, and development techniques for creating augmented reality (AR) and virtual reality (VR) applications.', - }, - { - title: 'Data Privacy Regulations: Compliance Challenges', - content: - 'Navigating data privacy regulations and compliance challenges in software development. How do you ensure GDPR and CCPA compliance?', - }, - { - title: 'Full Stack Development: Best Practices', - content: - 'Best practices, tools, and frameworks for mastering full-stack development. How do you balance frontend and backend development responsibilities?', - }, - { - title: 'Serverless Computing: Benefits and Use Cases', - content: - 'Exploring the benefits, use cases, and challenges of serverless computing architectures. How do you leverage serverless for scalable applications?', - }, - { - title: 'Tech Startups: Lessons Learned and Tips', - content: - 'Sharing lessons learned, success stories, and practical tips for launching and scaling tech startups. What challenges did you face?', - }, - { - title: 'Open Source Projects: Contributions and Impact', - content: - 'Discussing the impact of open-source projects on the tech industry and society. How can open-source initiatives drive innovation and collaboration?', - }, - { - title: 'Software Testing: Strategies and Automation', - content: - 'Strategies, tools, and best practices for software testing and test automation. How do you ensure comprehensive test coverage and quality?', - }, - { - title: 'API Design: Best Practices and Guidelines', - content: - 'Exploring best practices, design patterns, and guidelines for designing robust and developer-friendly APIs. What makes a good API?', - }, - { - title: 'Tech Conferences: Recommendations and Reviews', - content: - 'Discussing upcoming tech conferences, workshops, and events. Share your recommendations and reviews of past conferences.', - }, - { - title: 'Software Development Methodologies: Agile vs Waterfall', - content: - 'Comparing Agile and Waterfall methodologies for software development. Which approach suits your project and team dynamics?', - }, - { - title: 'AI in Healthcare: Applications and Innovations', - content: - 'Exploring AI applications and innovations in the healthcare industry. How is AI transforming patient care and medical research?', - }, - { - title: 'Code Quality Metrics and Tools', - content: - 'Measuring code quality and implementing metrics. Discussing tools and practices for maintaining high-quality codebases.', - }, - { - title: 'Blockchain Development Platforms: Ethereum vs Hyperledger', - content: - 'Comparing Ethereum and Hyperledger as blockchain development platforms. Which platform is suitable for different use cases?', - }, - { - title: 'Tech Diversity and Inclusion: Initiatives and Impact', - content: - 'Discussing initiatives and strategies for promoting diversity and inclusion in the tech industry. How can we create more inclusive workplaces?', - }, - { - title: 'AI Ethics: Bias, Accountability, and Transparency', - content: - 'Exploring ethical considerations in AI development, including bias mitigation, accountability frameworks, and transparency practices.', - }, - { - title: 'Game Development: Engines, Tools, and Challenges', - content: - 'Discussing game development engines, tools, and challenges. Share your experiences in creating interactive and immersive gaming experiences.', - }, -]; - -const createThreads = (users, forums, numThreads) => { - const threads = []; - for (let i = 0; i <= numThreads; i++) { - const dates = Math.random() > 0.3 ? createRandomDates() : [undefined, undefined]; - threads.push({ - ...threadOptions[randomIndex(threadOptions)], - user: users[randomIndex(users)]._id, - forum: forums[randomIndex(forums)]._id, - createdAt: dates[0], - updatedAt: dates[1], - }); - } - return threads; -}; - -const mockThreads = createThreads(users, forums, 30); - -db.threads.insertMany(mockThreads); - -console.log('๐Ÿ Seeding Threads Collection Successful!'); - -console.log('๐ŸŒฑ Seeding Posts Collection...'); - -const postContentOptions = [ - "I'm new to web development. Can anyone recommend a good beginner-friendly JavaScript framework?", - 'What are your favorite VS Code extensions for productivity? Looking to optimize my workflow.', - 'Discussing the pros and cons of using NoSQL databases like MongoDB versus traditional SQL databases.', - 'How do you handle software architecture design in agile development? Share your strategies and experiences.', - 'Exploring the role of microservices in modern software architectures. What are the benefits and challenges?', - 'Share your experiences with continuous integration and deployment tools like Jenkins and GitLab CI/CD.', - 'Tips for optimizing frontend performance in large-scale web applications? What techniques do you use?', - 'How important is unit testing in your development workflow? Discussing the impact on code quality.', - 'Seeking advice on transitioning from frontend to full-stack development. What skills should I focus on?', - 'Comparing popular cloud providers for hosting web applications: AWS, Azure, and Google Cloud Platform.', - 'Discussing the best practices for securing RESTful APIs. How do you protect against common vulnerabilities?', - 'Share your insights on DevOps culture and its impact on software development teams.', - 'What are the essential skills for a successful software engineering career in the next decade?', - 'Debating the future of AI and its potential impact on industries like healthcare and finance.', - 'Exploring the benefits of using TypeScript in large-scale JavaScript applications. Is it worth the learning curve?', - 'How do you approach code reviews in your team? Share your process for constructive feedback and improvement.', - 'Discussing the adoption of serverless architecture in enterprise applications. What are the use cases?', - 'Seeking recommendations for online platforms or courses to learn data science and machine learning.', - 'What are your favorite design patterns for building scalable backend systems? Discussing architecture.', - 'Tips for building responsive and accessible user interfaces in web development. Best practices?', - 'Exploring the challenges of scaling applications globally. How do you design for international users?', - 'How can blockchain technology revolutionize industries beyond finance? Discussing real-world applications.', - 'Share your experiences with remote team collaboration tools like Slack, Zoom, and Microsoft Teams.', - 'What are the key factors to consider when choosing a tech stack for a new startup project?', - 'Discussing the evolution of programming languages and their impact on software development practices.', - 'Tips for managing technical debt in software projects. How do you prioritize and refactor?', - 'Seeking advice on transitioning from academia to industry as a software engineer. What are the challenges?', - 'Exploring the role of AI in enhancing cybersecurity measures. How can AI algorithms detect threats?', - 'How do you approach refactoring legacy codebases? Share your strategies for modernization.', - 'Discussing the benefits of adopting agile methodologies in non-software development teams.', - 'Share your favorite resources for staying updated with the latest tech trends and industry news.', - 'How can developers contribute to open-source projects? Discussing the impact of community contributions.', - 'Tips for effective project management in software development teams. How do you ensure deadlines are met?', - 'Seeking advice on preparing for technical interviews at top tech companies. What are common interview questions?', - 'Discussing the ethics of AI in decision-making processes. How can we ensure fairness and accountability?', - 'What are the emerging trends in mobile app development? Discussing technologies like Flutter and React Native.', - 'How do you balance feature development with technical debt reduction in agile development?', - 'Exploring the challenges of implementing AI-driven chatbots in customer service applications.', - 'What are your strategies for improving team productivity and motivation in remote work environments?', - 'Tips for building scalable and maintainable frontend architectures. How do you structure your codebase?', - 'Seeking advice on building a personal brand as a software engineer. How can networking help career growth?', - 'Discussing the impact of IoT on everyday life and its implications for software developers.', - 'How can AI and machine learning be leveraged to enhance personalized user experiences in applications?', - 'Exploring the benefits of adopting a microservices architecture over monolithic applications.', - 'What are your thoughts on the future of cybersecurity in the era of AI and automation?', - 'Tips for optimizing database performance in high-traffic web applications. Best practices?', - 'Discussing the challenges and benefits of implementing blockchain technology in supply chain management.', - 'How do you approach designing intuitive user interfaces? Share your UX/UI design principles.', -]; - -const createPosts = (users, threads, numPosts) => { - const posts = []; - for (let i = 0; i <= numPosts; i++) { - const dates = Math.random() > 0.6 ? createRandomDates() : [undefined, undefined]; - posts.push({ - thread: threads[randomIndex(threads)]._id, - user: users[randomIndex(users)]._id, - content: postContentOptions[randomIndex(postContentOptions)], - createdAt: dates[0], - updatedAt: dates[1], - }); - } - return posts; -}; - -const threads = db.threads.find().toArray(); - -const mockPosts = createPosts(users, threads, 50); - -db.posts.insertMany(mockPosts); - -console.log('๐Ÿ Seeding Posts Collection Successful!'); diff --git a/scripts/db/seed.sh b/scripts/db/seed.sh deleted file mode 100644 index de47bf46..00000000 --- a/scripts/db/seed.sh +++ /dev/null @@ -1,86 +0,0 @@ -#!/usr/bin/bash - -# Color variables -RED="\033[1;3;31m" -ORANGE="\033[1;3;38;5;208m" -GREEN="\033[1;3;32m" -CORNBLUE="\033[1;3;38;5;69m" -NC='\033[0m' # No color - -echo -e "\n${GREEN}Seeding MongoDB with Dev Data${NC}" - -MONGO_USER=root -MONGO_PWD=testpass -MONGO_HOST=ch-mongo-dev -MONGO_DB="ch-testdb" -MONGO_URI="mongodb://${MONGO_HOST}:27017" -IMPORT_STATUS=0 - -# echo -e "\n${CORNBLUE}Seeding Alumni Collection...${NC}\n" -# # mongoimport --username root --password testpass --uri ${MONGO_URI} --collection Alumni --type json --file ./usr/src/data/MOCK_ALUMNI.json -# mongoimport --drop --collection=Alumni ${MONGO_URI} /tmp/data/MOCK_ALUMNI.json -# IMPORT_STATUS=$? - -# if [[ $IMPORT_STATUS != 0 ]]; then -# echo -e "\n${RED}Alumni seeding failed!${NC}\n" -# exit 1 -# fi - -# echo -e "\n${CORNBLUE}Seeding GraduationInvitations Collection...${NC}\n" -# mongoimport --username $MONGO_USER --password $MONGO_PWD --uri $MONGO_URI --collection GraduationInvitations --type json --file ./usr/src/data/MOCK_GRADUATION_INVITATIONS.json -# IMPORT_STATUS=$? -# if [[ $IMPORT_STATUS != 0 ]]; then -# echo -e "\n${RED}GraduationInvitations seeding failed!${NC}\n" -# exit 1 -# fi -echo -e "\n${CORNBLUE}JSON Directory: ${PWD}tmp/data/MOCK_USERS.json${NC}\n" - -echo -e "\n${CORNBLUE}Seeding Users Collection...${NC}\n" -# mongoimport --username $MONGO_USER --password $MONGO_PWD --uri $MONGO_URI --collection Users --type json --file ./usr/src/data/MOCK_USERS.json -mongoimport --username "${MONGO_USER}" --password "${MONGO_PWD}" --uri "${MONGO_URI}" --authenticationDatabase "${MONGO_DB}" --db "${MONGO_DB}" --drop --collection Users --type json --file /tmp/data/MOCK_USERS.json -IMPORT_STATUS=$? - -echo -e "\n${RED} Users: IMPORT_STATUS = ${IMPORT_STATUS}${NC}\n" - -if [[ $IMPORT_STATUS != 0 ]]; then - echo -e "\n${RED}Users seeding failed!${NC}\n" - exit 1 -fi - -# echo -e "\n${CORNBLUE}Seeding Profiles Collection...${NC}\n" -# mongoimport --username $MONGO_USER --password $MONGO_PWD --uri $MONGO_URI --collection Profiles --type json --file ./usr/src/data/MOCK_PROFILES.json -# IMPORT_STATUS=$? -# if [[ $IMPORT_STATUS != 0 ]]; then -# echo -e "\n${RED}Profiles seeding failed!${NC}\n" -# exit 1 -# fi - -# echo -e "\n${CORNBLUE}Seeding Forums Collection...${NC}\n" -# mongoimport --username $MONGO_USER --password $MONGO_PWD --uri $MONGO_URI --collection Forums --type json --file ./usr/src/data/MOCK_FORUMS.json -# IMPORT_STATUS=$? -# if [[ $IMPORT_STATUS != 0 ]]; then -# echo -e "\n${RED}Forums seeding failed!${NC}\n" -# exit 1 -# fi - -# echo -e "\n${CORNBLUE}Seeding Threads Collection...${NC}\n" -# mongoimport --username $MONGO_USER --password $MONGO_PWD --uri $MONGO_URI --collection Threads --type json --file ./usr/src/data/MOCK_THREADS.json -# IMPORT_STATUS=$? -# if [[ $IMPORT_STATUS != 0 ]]; then -# echo -e "\n${RED}Threads seeding failed!${NC}\n" -# exit 1 -# fi - -# echo -e "\n${CORNBLUE}Seeding Posts Collection...${NC}\n" -# mongoimport --username $MONGO_USER --password $MONGO_PWD --uri $MONGO_URI --collection Posts --type json --file ./usr/src/data/MOCK_POSTS.json -# IMPORT_STATUS=$? -# if [[ $IMPORT_STATUS != 0 ]]; then -# echo -e "\n${RED}Posts seeding failed!${NC}\n" -# exit 1 -# fi - -echo -e "\n${ORANGE}Muting logs for ch-mongo-dev...${NC}\n" -mongod --quiet --logpath /dev/null - -echo -e "\n${GREEN}Seeding Complete! Have fun!${NC}\n" -exit 0 \ No newline at end of file From fb1430d9b67df31d2b6ce4239596f8343727bff6 Mon Sep 17 00:00:00 2001 From: seantokuzo Date: Fri, 14 Jun 2024 17:36:42 -0700 Subject: [PATCH 04/25] update to include mongo dev container --- docker-compose-dev.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/docker-compose-dev.yml b/docker-compose-dev.yml index 85ccf635..9f570d45 100644 --- a/docker-compose-dev.yml +++ b/docker-compose-dev.yml @@ -12,10 +12,7 @@ services: environment: - NODE_ENV=development - JWT_SECRET=${JWT_SECRET} - - MONGO_URI=mongodb://root:testpass@ch-mongo-dev:27017/ch-testdb - - MONGO_USER=root - - MONGO_PASSWORD=testpass - - MONGO_DB=ch-testdb + - MONGO_URI=mongodb://root:rootPass@ch-mongo-dev:27017/ch-testdb depends_on: - ch-mongo-dev command: npm run dev-ts @@ -27,12 +24,14 @@ services: ports: - 27017:27017 environment: - MONGO_INITDB_DATABASE: ch-testdb - MONGO_INITDB_ROOT_USERNAME: admin - MONGO_INITDB_ROOT_PASSWORD: adminpassword + - MONGO_INITDB_DATABASE=ch-testdb + - MONGO_INITDB_ROOT_USERNAME=admin + - MONGO_INITDB_ROOT_PASSWORD=adminpassword + - MONGO_HOST=ch-mongo-dev + - MONGO_USER=root + - MONGO_USER_PWD=rootPass volumes: - - ./scripts/db/mongoInit/:/docker-entrypoint-initdb.d - - ./scripts/db/mockData:/tmp/data + - ./scripts/db/mongo-dev-init/:/docker-entrypoint-initdb.d - mongo-dev-volume:/data/db command: mongod --quiet --logpath /dev/null volumes: From 4e3c657acfaf768a69a4fed2d60bd4cd0f9c7306 Mon Sep 17 00:00:00 2001 From: seantokuzo Date: Fri, 14 Jun 2024 17:37:06 -0700 Subject: [PATCH 05/25] add dev db seeding data and scripts --- scripts/db/mongo-dev-init/MOCK_ALUMNI.json | 33875 ++++++++++++++++ scripts/db/mongo-dev-init/MOCK_FORUMS.json | 142 + .../MOCK_GRADUATE_INVITATIONS.json | 2402 ++ scripts/db/mongo-dev-init/MOCK_POSTS.json | 971 + scripts/db/mongo-dev-init/MOCK_PROFILES.json | 17341 ++++++++ scripts/db/mongo-dev-init/MOCK_THREADS.json | 622 + scripts/db/mongo-dev-init/MOCK_USERS.json | 1719 + scripts/db/mongo-dev-init/mongo-init.js | 33 + scripts/db/mongo-dev-init/seed.sh | 85 + 9 files changed, 57190 insertions(+) create mode 100644 scripts/db/mongo-dev-init/MOCK_ALUMNI.json create mode 100644 scripts/db/mongo-dev-init/MOCK_FORUMS.json create mode 100644 scripts/db/mongo-dev-init/MOCK_GRADUATE_INVITATIONS.json create mode 100644 scripts/db/mongo-dev-init/MOCK_POSTS.json create mode 100644 scripts/db/mongo-dev-init/MOCK_PROFILES.json create mode 100644 scripts/db/mongo-dev-init/MOCK_THREADS.json create mode 100644 scripts/db/mongo-dev-init/MOCK_USERS.json create mode 100644 scripts/db/mongo-dev-init/mongo-init.js create mode 100644 scripts/db/mongo-dev-init/seed.sh diff --git a/scripts/db/mongo-dev-init/MOCK_ALUMNI.json b/scripts/db/mongo-dev-init/MOCK_ALUMNI.json new file mode 100644 index 00000000..4e048f00 --- /dev/null +++ b/scripts/db/mongo-dev-init/MOCK_ALUMNI.json @@ -0,0 +1,33875 @@ +[ + { + "company": "1-800 Flowers", + "name": "Daniel Reilley", + "email": "dannyreilley@gmail.com", + "linkedIn": "https://www.linkedin.com/in/daniel-reilley/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Full-Stack Application Developer", + "industry": "Retail", + "cities": ["Las Vegas", "Nashville"], + "_id": { + "$oid": "666cbc3240af7b375e35212a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "1Password", + "name": "William Quan Nguyen", + "email": "william.nguyen202103@gmail.com", + "linkedIn": "https://www.linkedin.com/in/william-nguyen202103/", + "campus": "PTRI", + "cohort": "10", + "jobTitle": "Software Engineer intern", + "industry": "Security/Data Privacy", + "cities": ["Aurora"], + "_id": { + "$oid": "666cbc3240af7b375e35212b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "1StopBedrooms", + "name": "David Yedid", + "email": "diyedid@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yedid/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "VP, Projects (working under CTO); and General Counsel", + "industry": "E-Commerce", + "cities": ["Saint Paul", "Henderson"], + "_id": { + "$oid": "666cbc3240af7b375e35212c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "1upHealth", + "name": "Robleh Farah", + "email": "farahrobleh1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/farahrobleh", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer", + "industry": "Health Tech", + "cities": ["Tulsa", "Bakersfield", "Washington", "Lubbock"], + "_id": { + "$oid": "666cbc3240af7b375e35212d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "23andMe", + "name": "Jiwon Chung", + "email": "jiwon.chung07@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jchung07/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Software Engineer", + "industry": "Biotech", + "cities": ["North Las Vegas", "Miami", "Garland"], + "_id": { + "$oid": "666cbc3240af7b375e35212e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "2U", + "name": "Rebecca Shesser", + "email": "rebeccashesser@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rebeccashesser/", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Mesa", "Memphis", "Tulsa"], + "_id": { + "$oid": "666cbc3240af7b375e35212f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "98point6", + "name": "Avi Kerson", + "email": "avitacos@gmail.com", + "linkedIn": "https://www.linkedin.com/in/avi-kerson/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Omaha", "Corpus Christi"], + "_id": { + "$oid": "666cbc3240af7b375e352130" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "AAA (Club Labs)", + "name": "Michael Chan", + "email": "mckchan13@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael-ck-chan/", + "campus": "PTRI", + "cohort": "5", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["Riverside", "Charlotte", "Madison", "Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e352131" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "Aavia", + "name": "Wayland SIngh", + "email": "wmsingh@ucdavis.edu", + "linkedIn": "https://www.linkedin.com/in/wayland-singh/", + "campus": "NYOI", + "cohort": "4", + "jobTitle": "Backend Engineer", + "industry": "Healthtech/Healthcare", + "cities": ["Jersey City", "Tokyo", "Fort Wayne"], + "_id": { + "$oid": "666cbc3240af7b375e352132" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "Abstract", + "name": "Tyler Kneidl", + "email": "tskneidl@gmail.com", + "linkedIn": "https://www.LinkedIn.com/in/tylerkneidl", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Full Stack Engineer", + "industry": "Software Development", + "cities": ["Glendale", "Philadelphia"], + "_id": { + "$oid": "666cbc3240af7b375e352133" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "Accenture", + "name": "Adrian Reczek", + "email": "adrianwreczek@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adrian-reczek/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Full Stack Software Engineer, Senior Analyst", + "industry": "Consulting", + "cities": ["North Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e352134" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "Accenture", + "name": "Colin Roemer", + "email": "colin.roemer@gmail.com", + "linkedIn": "https://www.linkedin.com/in/colinroemer/", + "campus": "LA", + "cohort": "23", + "jobTitle": "Node Microservices Engineer", + "industry": "", + "cities": ["Honolulu", "Sacramento"], + "_id": { + "$oid": "666cbc3240af7b375e352135" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "Accenture", + "name": "Shamilah Faria", + "email": "shamilahfaria@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shamilah-faria/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Software Artisan", + "industry": "Technology", + "cities": ["Portland", "San Diego"], + "_id": { + "$oid": "666cbc3240af7b375e352136" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "Accrete AI", + "name": "Andrew Moy", + "email": "ajmoy35@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andrewmoy/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Full Stack Engineer", + "industry": "Artificial Intelligence", + "cities": ["Austin"], + "_id": { + "$oid": "666cbc3240af7b375e352137" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "Acorns", + "name": "Zahaan Jasani", + "email": "zahaanjasani@gmail.com", + "linkedIn": "https://www.linkedin.com/in/zahaan-jasani-183913126/", + "campus": "LA", + "cohort": "26", + "jobTitle": "Software Engineer II - Backend", + "industry": "Finance", + "cities": ["Laredo"], + "_id": { + "$oid": "666cbc3240af7b375e352138" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "Acronis", + "name": "Paul Kim", + "email": "Khyunwoo1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/paulyjkim", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "\"Data Protection/ Cyber Security\"", + "cities": ["London", "Mumbai"], + "_id": { + "$oid": "666cbc3240af7b375e352139" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "ActiveCampaign", + "name": "Jacob Gillan", + "email": "jacobgillan9@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jacob-gillan/", + "campus": "FTRI / CTRI", + "cohort": "15", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Louisville", "Detroit", "Pittsburgh", "Norfolk"], + "_id": { + "$oid": "666cbc3240af7b375e35213a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "Actuate", + "name": "Braddon Murphy", + "email": "braddonmurphy@gmail.com", + "linkedIn": "https://www.linkedin.com/in/braddonlee/", + "campus": "FTRI", + "cohort": "6", + "jobTitle": "Software Engineer", + "industry": "Security", + "cities": ["Anchorage", "Baltimore", "New Orleans", "Tokyo"], + "_id": { + "$oid": "666cbc3240af7b375e35213b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "Acuity Brands", + "name": "Logan Coale", + "email": "lcoale@gmail.com", + "linkedIn": "https://www.linkedin.com/in/logancoale/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Senior Software Engineer", + "industry": "Industrial Lighting/IoT", + "cities": ["Chula Vista"], + "_id": { + "$oid": "666cbc3240af7b375e35213c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "Adaptive Biotechnologies", + "name": "Conor Chinitz", + "email": "conorchinitz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/conorchinitz", + "campus": "FTRI", + "cohort": "7", + "jobTitle": "Software Engineer III", + "industry": "Biotech", + "cities": ["Honolulu"], + "_id": { + "$oid": "666cbc3240af7b375e35213d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "Adobe - Frame.io", + "name": "Anna Brakowska", + "email": "anna.brakowska91@gmail.com", + "linkedIn": "https://www.linkedin.com/in/anna-brakowska/", + "campus": "NYC", + "cohort": "7", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["San Jose", "Philadelphia", "Milwaukee", "Washington"], + "_id": { + "$oid": "666cbc3240af7b375e35213e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "Affirm", + "name": "Oscar Chan", + "email": "chanoscar0@gmail.com", + "linkedIn": "https://www.linkedin.com/in/occhan/", + "campus": "LA", + "cohort": "26", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Honolulu", "Anchorage", "Chula Vista"], + "_id": { + "$oid": "666cbc3240af7b375e35213f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "Age of Learning", + "name": "Brian Kwok", + "email": "brian.kwok15@gmail.com", + "linkedIn": "https://www.linkedin.com/in/briankwok15/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Education", + "cities": ["Denver", "Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e352140" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "Age of Learning", + "name": "Tre Hultzen", + "email": "hultzentre@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tre-hultzen/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Web Services Engineer", + "industry": "Education", + "cities": ["Houston", "Garland", "Toledo", "Gilbert"], + "_id": { + "$oid": "666cbc3240af7b375e352141" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "Agua Caliente Casinos", + "name": "Mark Alexander", + "email": "markalexander72@gmail.com", + "linkedIn": "https://www.linkedin.com/in/marka772", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Web Developer", + "industry": "Gaming/eSports", + "cities": ["Madison"], + "_id": { + "$oid": "666cbc3240af7b375e352142" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "AI Insurance", + "name": "James Edwards III", + "email": "j.olden.edwards@gmail.com", + "linkedIn": "https://www.linkedin.com/in/james-edwards-547307242/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Henderson", "San Francisco"], + "_id": { + "$oid": "666cbc3240af7b375e352143" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.239Z" + }, + "__v": 0 + }, + { + "company": "Air Labs, Inc.", + "name": "Madison Brown", + "email": "mbrown3391@gmail.com", + "linkedIn": "https://www.linkedin.com/in/madisondbrown/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Sr. Software Engineer", + "industry": "Digital Asset Management", + "cities": ["Sรฃo Paulo", "Louisville", "Virginia Beach"], + "_id": { + "$oid": "666cbc3240af7b375e352144" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Airtable", + "name": "Clara Kim", + "email": "clarayhkim96@gmail.com", + "linkedIn": "https://www.linkedin.com/in/clarakm/", + "campus": "LA", + "cohort": "34", + "jobTitle": "Full-stack Engineer", + "industry": "SaaS", + "cities": ["Chesapeake"], + "_id": { + "$oid": "666cbc3240af7b375e352145" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Ajmadison", + "name": "Shlomo porges", + "email": "porges.s@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shlomoporges/", + "campus": "NYC", + "cohort": "10", + "jobTitle": "DB architect", + "industry": "Appliances", + "cities": ["Austin", "Kansas City", "Jacksonville", "Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e352146" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Albert", + "name": "Will Bladon", + "email": "whbladon@gmail.com", + "linkedIn": "https://www.linkedin.com/in/will-bladon/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Plano", "San Diego", "Madison", "Buffalo"], + "_id": { + "$oid": "666cbc3240af7b375e352147" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Alchemy", + "name": "Mathias Perfumo", + "email": "mathias.perfumo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mathiasperfumo", + "campus": "FTRI / CTRI", + "cohort": "7", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Newark", "New York", "Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e352148" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Aledade", + "name": "Etana Kopin", + "email": "claws.33@gmail.com", + "linkedIn": "https://www.linkedin.com/in/egkopin/", + "campus": "PTRI", + "cohort": "8", + "jobTitle": "Senior Software Engineer", + "industry": "Healthcare", + "cities": ["Aurora"], + "_id": { + "$oid": "666cbc3240af7b375e352149" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Alethix", + "name": "Mark Dolan", + "email": "mark.dolan3@gmail.com", + "linkedIn": "https://www.linkedin.com/in/markdolan30/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Frontend Software Engineer", + "industry": "Government services", + "cities": ["Sรฃo Paulo", "Madison", "Oklahoma City", "Phoenix"], + "_id": { + "$oid": "666cbc3240af7b375e35214a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Algolia", + "name": "Jacob Cole", + "email": "jacob.cole@gmail.com", + "linkedIn": "jacobcole34", + "campus": "PTRI", + "cohort": "8", + "jobTitle": "Solutions Engineer", + "industry": "Software / Tech", + "cities": ["Aurora", "Washington", "Irving", "Laredo"], + "_id": { + "$oid": "666cbc3240af7b375e35214b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Allen Institute", + "name": "Joseph Heffernan", + "email": "Interim17@gmail.com", + "linkedIn": "LinkedIn.com/in/Joseph-heffernan", + "campus": "LA / WCRI", + "cohort": "53", + "jobTitle": "Software Engineer Front End", + "industry": "Biotech", + "cities": ["Austin"], + "_id": { + "$oid": "666cbc3240af7b375e35214c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Alleo.ai", + "name": "Rawan Al Bairouti", + "email": "rawan.bairouti@gmail.com", + "linkedIn": "linkedin.com/in/rawanbairouti", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Lead Developer", + "industry": "Software Solutions/Developer Tools", + "cities": ["Raleigh", "Henderson", "Lexington", "Honolulu"], + "_id": { + "$oid": "666cbc3240af7b375e35214d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Alloy", + "name": "Jacqueline Chang", + "email": "jqw.chang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jqw-chang/", + "campus": "NYC", + "cohort": "7", + "jobTitle": "Software Engineer II", + "industry": "", + "cities": ["San Diego", "Minneapolis", "Louisville"], + "_id": { + "$oid": "666cbc3240af7b375e35214e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Alloy", + "name": "Sophie Nye", + "email": "sophie.nye@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gsophienye/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Software Engineer II", + "industry": "Fintech", + "cities": ["Fresno"], + "_id": { + "$oid": "666cbc3240af7b375e35214f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Allure Bridal", + "name": "Patrick Reid", + "email": "patrickjreid@gmail.com", + "linkedIn": "https://www.linkedin.com/in/patrickjreid/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Senior Solutions Engineer", + "industry": "Retail", + "cities": ["Greensboro", "Arlington", "Kansas City"], + "_id": { + "$oid": "666cbc3240af7b375e352150" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Ally", + "name": "Oleksii Hordiienko", + "email": "alex.hord@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/oleksii-hordiienko/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Sr. Software Engineer", + "industry": "Fintech", + "cities": ["Mexico City"], + "_id": { + "$oid": "666cbc3240af7b375e352151" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Ally", + "name": "Allison Jacobs", + "email": "allison-jacobs@outlook.com", + "linkedIn": "https://www.linkedin.com/in/allison-j", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Tucson", "Gilbert"], + "_id": { + "$oid": "666cbc3240af7b375e352152" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Ally", + "name": "Connor Tracy", + "email": "Connortracy15@gmail.com", + "linkedIn": "https://www.linkedin.com/in/connortracy19", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Frontend Software Engineer", + "industry": "Fintech", + "cities": ["New Orleans", "El Paso", "Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e352153" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Ally", + "name": "Damien Evans", + "email": "damiensevans@gmail.com", + "linkedIn": "https://www.linkedin.com/in/damien-s-evans/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Principal Software Engineer", + "industry": "Fintech", + "cities": ["San Jose", "Berlin", "Bakersfield", "Fort Worth"], + "_id": { + "$oid": "666cbc3240af7b375e352154" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Ally", + "name": "Mercedes Kalaizic", + "email": "Kalaizicmercedes@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mkalaizic/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Principal Software Engineer", + "industry": "Fintech", + "cities": ["Glendale", "Sรฃo Paulo"], + "_id": { + "$oid": "666cbc3240af7b375e352155" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Ally", + "name": "Richard Zhang", + "email": "rchzhng@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dickzhang/", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Buffalo", "Paris", "Dallas"], + "_id": { + "$oid": "666cbc3240af7b375e352156" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Ally", + "name": "Garrett Weaver", + "email": "Uncommonweaver@gmail.com", + "linkedIn": "https://www.linkedin.com/in/g-weaver/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "API Developer", + "industry": "Fintech", + "cities": ["Riverside", "Sydney", "Jacksonville", "Dallas"], + "_id": { + "$oid": "666cbc3240af7b375e352157" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Alo Yoga", + "name": "Angie Chang", + "email": "angiechangpagne@gmail.com", + "linkedIn": "https://www.linkedin.com/in/angelsofwar", + "campus": "LA", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "E-Commerce/Fashion/Wellness/Mindfulness", + "cities": ["Newark", "Chula Vista", "Washington"], + "_id": { + "$oid": "666cbc3240af7b375e352158" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "AlphaSense", + "name": "Joe Pavlisko", + "email": "jpavlisko@protonmail.com", + "linkedIn": "https://www.linkedin.com/in/joe-pavlisko-11b74930/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Software Engineer", + "industry": "FinTech", + "cities": ["Garland", "Seattle", "Milwaukee", "Albuquerque"], + "_id": { + "$oid": "666cbc3240af7b375e352159" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "ALTEN GmbH", + "name": "Jay Wall", + "email": "walljayw@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hanswand/", + "campus": "LA", + "cohort": "47", + "jobTitle": "Senior Consultant", + "industry": "Consultancy - Fintech, Manufacturing, Healthcare", + "cities": ["Lincoln"], + "_id": { + "$oid": "666cbc3240af7b375e35215a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Alteryx", + "name": "Miriam Feder", + "email": "mirfeder@gmail.com", + "linkedIn": "https://www.linkedin.com/in/miriam-feder", + "campus": "NYC", + "cohort": "32", + "jobTitle": "Senior Software Engineer", + "industry": "Data Analytics", + "cities": ["Plano", "Anchorage"], + "_id": { + "$oid": "666cbc3240af7b375e35215b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Altice USA", + "name": "Ola Adedoyin", + "email": "ola_adedoyin@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/oadedoyin/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "DevOps Engineering Manager", + "industry": "Communication and Media", + "cities": ["San Francisco", "Irving", "Mexico City"], + "_id": { + "$oid": "666cbc3240af7b375e35215c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Amy Liang", + "email": "amyliangny@gmail.com", + "linkedIn": "https://www.linkedin.com/in/amyliang18/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Software Development Engineer", + "industry": "Software / Tech", + "cities": ["Cleveland", "Boston", "Denver", "Mumbai"], + "_id": { + "$oid": "666cbc3240af7b375e35215d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Anna Falvello", + "email": "anna.falvello@gmail.com", + "linkedIn": "https://www.linkedin.com/in/afalvello/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "SDEII", + "industry": "Ecommerce", + "cities": ["Philadelphia", "Lincoln", "Mumbai"], + "_id": { + "$oid": "666cbc3240af7b375e35215e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Anthony Valdez", + "email": "avaldez520@gmail.com", + "linkedIn": "https://www.linkedin.com/in/va1dez/", + "campus": "NYC", + "cohort": "32", + "jobTitle": "SDE II (Full Stack)", + "industry": "Software / Tech", + "cities": ["Virginia Beach", "Winston-Salem"], + "_id": { + "$oid": "666cbc3240af7b375e35215f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Christopher LeBrett", + "email": "clebrett@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chris-lebrett/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Development Engineer", + "industry": "Software / Tech", + "cities": ["Baltimore", "Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e352160" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Christopher Wong", + "email": "cwong8257@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chriswong2/", + "campus": "NYC", + "cohort": "7", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Greensboro", "San Francisco"], + "_id": { + "$oid": "666cbc3240af7b375e352161" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "David Anderson", + "email": "dlande000@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dlande000/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Front-End Engineer", + "industry": "AWS / internet infrastructure", + "cities": ["Tokyo", "Paris"], + "_id": { + "$oid": "666cbc3240af7b375e352162" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Dillon Schriver", + "email": "dschriver9@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dillon-schriver/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Software Development Engineer II", + "industry": "Ecommerce", + "cities": ["Tucson", "Louisville", "Philadelphia", "Denver"], + "_id": { + "$oid": "666cbc3240af7b375e352163" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Eelan Tung", + "email": "eelantung@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eelantung", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Development Engineer", + "industry": "Software / Tech", + "cities": ["Omaha", "Mexico City"], + "_id": { + "$oid": "666cbc3240af7b375e352164" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Jason Huang", + "email": "huang.jason999@gmail.com", + "linkedIn": "https://www.linkedin.com/in/huang-jason999/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Software Development Engineer II", + "industry": "Technology", + "cities": ["Laredo", "Bakersfield", "St. Petersburg", "Tulsa"], + "_id": { + "$oid": "666cbc3240af7b375e352165" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Idan Michael", + "email": "idan.michael3@gmail.com", + "linkedIn": "https://www.linkedin.com/in/idanmichael/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Software Develpment Engineer", + "industry": "Cloud", + "cities": ["Lexington", "Tucson", "Colorado Springs"], + "_id": { + "$oid": "666cbc3240af7b375e352166" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Jacqueline Douglass", + "email": "jackie.douglass@icloud.com", + "linkedIn": "https://www.linkedin.com/in/jacqueline-douglass/", + "campus": "FTRI", + "cohort": "2", + "jobTitle": "Front-End Engineer", + "industry": "e-commerce, cloud computing, digital streaming, and artificial intelligence.", + "cities": ["Louisville"], + "_id": { + "$oid": "666cbc3240af7b375e352167" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "James Kim", + "email": "james.minjae.97@gmail.com", + "linkedIn": "https://linkedin.com/in/jamesmjkim", + "campus": "PTRI", + "cohort": "5", + "jobTitle": "Software Development Engineer 1", + "industry": "Software / Tech", + "cities": ["Tampa", "Fort Worth", "Chesapeake", "Reno"], + "_id": { + "$oid": "666cbc3240af7b375e352168" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Luke Michals", + "email": "luke.michals@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "14", + "jobTitle": "Frontend Engineer II", + "industry": "Retail", + "cities": ["Columbus", "Las Vegas", "Reno"], + "_id": { + "$oid": "666cbc3240af7b375e352169" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Jennifer Song", + "email": "lumie.song@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lu0713/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Development Engineer II", + "industry": "Tech", + "cities": ["Wichita", "Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e35216a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Megan Nadkarni", + "email": "megan.nadkarni@gmail.com", + "linkedIn": "https://www.linkedin.com/in/megannadkarni/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Front End Engineer", + "industry": "Software / Tech", + "cities": ["Toronto", "Aurora", "Irvine", "Buffalo"], + "_id": { + "$oid": "666cbc3240af7b375e35216b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Mark Washkewicz", + "email": "mwashkewicz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mark-washkewicz/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Development Engineer 1", + "industry": "Retail", + "cities": ["Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e35216c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Stephan Halarewicz", + "email": "shalarewicz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stephanhalarewicz/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Software Development Engineer, People Engine", + "industry": "Software / Tech", + "cities": ["Honolulu", "Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e35216d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Tanner Peterson", + "email": "tanpeterson@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tanner-peterson/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Front End Engineer", + "industry": "Cloud Services", + "cities": ["Arlington"], + "_id": { + "$oid": "666cbc3240af7b375e35216e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Timothy Mai", + "email": "timothy.mai13@gmail.com", + "linkedIn": "https://www.linkedin.com/in/timothy-mai-459085b3/", + "campus": "LA", + "cohort": "31", + "jobTitle": "Software Development Engineer I", + "industry": "Advertising", + "cities": ["Paris", "Long Beach"], + "_id": { + "$oid": "666cbc3240af7b375e35216f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Yogi Paturu", + "email": "ypaturu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yogi-paturu/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Software Development Engineer", + "industry": "Cloud", + "cities": ["Mesa"], + "_id": { + "$oid": "666cbc3240af7b375e352170" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Yale Yng-Wong", + "email": "yyngwong@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ywyw/", + "campus": "NYC", + "cohort": "32", + "jobTitle": "SDE1", + "industry": "Advertising", + "cities": ["St. Petersburg", "Gilbert"], + "_id": { + "$oid": "666cbc3240af7b375e352171" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon (AWS)", + "name": "Michael Weber", + "email": "michael.weber.jr@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael-weber-jr/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Software Development Engineer", + "industry": "Cloud Services", + "cities": ["St. Petersburg", "Lubbock", "Berlin"], + "_id": { + "$oid": "666cbc3240af7b375e352172" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon Prime Video", + "name": "Faraz Moallemi", + "email": "moallemifaraz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/farazmoallemi/", + "campus": "LA", + "cohort": "44", + "jobTitle": "Software Development Engineer I", + "industry": "Big Tech", + "cities": ["Minneapolis"], + "_id": { + "$oid": "666cbc3240af7b375e352173" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon Web Services", + "name": "Daniel Forrester", + "email": "danielf216@gmail.com", + "linkedIn": "https://www.linkedin.com/in/danielforrester/", + "campus": "PTRI", + "cohort": "5", + "jobTitle": "Cloud Application Architect", + "industry": "Cloud Services", + "cities": ["Kansas City", "Winston-Salem"], + "_id": { + "$oid": "666cbc3240af7b375e352174" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon Web Services", + "name": "Lumie (Jen) Song", + "email": "lumie.song@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lu0713/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Development Engineer II", + "industry": "Software", + "cities": ["Austin", "Glendale", "Louisville", "Orlando"], + "_id": { + "$oid": "666cbc3240af7b375e352175" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon Web Services", + "name": "Matthew Lee", + "email": "matthewcml6022@gmail.com", + "linkedIn": "https://www.linkedin.com/in/matthewcmlee/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Software Development Engineer", + "industry": "Web Services / Cloud Computing", + "cities": ["Jersey City", "Fort Wayne", "Lubbock", "San Jose"], + "_id": { + "$oid": "666cbc3240af7b375e352176" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon Web Services", + "name": "Taylor Rodrigues", + "email": "taylor.d.rod33@gmail.com", + "linkedIn": "https://www.linkedin.com/in/taylorrodrigues/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Software Development Engineer I (L4)", + "industry": "Cloud Computing", + "cities": ["Sacramento"], + "_id": { + "$oid": "666cbc3240af7b375e352177" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon Web Services (AWS)", + "name": "Raphael Bargues", + "email": "rbargues@gmail.com", + "linkedIn": "https://www.linkedin.com/in/raphael-bargues/", + "campus": "NYC", + "cohort": "17", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Winston-Salem"], + "_id": { + "$oid": "666cbc3240af7b375e352178" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amazon, AWS", + "name": "Jimmy Ngo", + "email": "jimmycngo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jimmycngo/", + "campus": "FTRI", + "cohort": "2", + "jobTitle": "Software Development Engineer 1", + "industry": "cloud computing", + "cities": ["Berlin", "Mexico City", "San Diego", "Chandler"], + "_id": { + "$oid": "666cbc3240af7b375e352179" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "AMC Networks", + "name": "Wade Armstrong", + "email": "wade@wadearmstrong.com", + "linkedIn": "https://www.linkedin.com/in/wadearmstrong/", + "campus": "LA", + "cohort": "5", + "jobTitle": "Director, Front-End Development", + "industry": "Entertainment", + "cities": ["Gilbert", "Washington"], + "_id": { + "$oid": "666cbc3240af7b375e35217a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "American Airlines(Contracted via BrookSource)", + "name": "Mariah Talicuran", + "email": "talicuran.mariah@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mariahtalicuran/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Associate React Developer", + "industry": "Other", + "cities": ["Anchorage", "Riverside", "Kansas City", "Denver"], + "_id": { + "$oid": "666cbc3240af7b375e35217b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "American Dawn", + "name": "Charlie Huang", + "email": "charliehuang913@gmail.com", + "linkedIn": "https://www.linkedin.com/in/huangcharlie", + "campus": "LA / WCRI", + "cohort": "48", + "jobTitle": "Junior Software Engineer", + "industry": "Retail", + "cities": ["Winston-Salem", "Madison", "San Francisco"], + "_id": { + "$oid": "666cbc3240af7b375e35217c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "American Express", + "name": "Dominic DiSalvo", + "email": "Dominicd17@gmail.com", + "linkedIn": "https://www.linkedin.com/mwlite/in/dominicdisalvo", + "campus": "FTRI", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Buffalo", "Reno", "Indianapolis", "Mexico City"], + "_id": { + "$oid": "666cbc3240af7b375e35217d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "American Express", + "name": "Jake Diorio", + "email": "jdiorio2393@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jake-diorio/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "Banking", + "cities": ["Nashville", "Albuquerque", "Cleveland", "St. Louis"], + "_id": { + "$oid": "666cbc3240af7b375e35217e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "American Express", + "name": "Kelvin Shamy", + "email": "kelvinshamy@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kelvinshamy/", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Sรฃo Paulo", "Oakland", "Bakersfield"], + "_id": { + "$oid": "666cbc3240af7b375e35217f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "American Express", + "name": "Rebecca Turk", + "email": "rebecca.e.turk@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rebeccaturk/", + "campus": "NYC", + "cohort": "5", + "jobTitle": "Engineer I", + "industry": "", + "cities": ["Detroit", "San Diego", "Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e352180" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "American Express", + "name": "Victor He", + "email": "victorhe33@gmail.com", + "linkedIn": "www.linkedin.com/in/victorhe33", + "campus": "PTRI", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Omaha", "Baltimore", "Irvine", "New York"], + "_id": { + "$oid": "666cbc3240af7b375e352181" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "AmeriSave", + "name": "Andrew Pomatti", + "email": "ampomatti@gmail.com", + "linkedIn": "https://www.linkedin.com/in/drewpomatti/", + "campus": "LA", + "cohort": "47", + "jobTitle": "Systems Engineer I", + "industry": "Real Estate", + "cities": ["Aurora"], + "_id": { + "$oid": "666cbc3240af7b375e352182" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "AmeriSave", + "name": "Jacob C Viesselman", + "email": "jacob.viesselman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jacobviesselman/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Houston", "Cincinnati"], + "_id": { + "$oid": "666cbc3240af7b375e352183" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amerisave", + "name": "Norman Liu", + "email": "Normanliu91@gmail.com", + "linkedIn": "https://www.linkedin.com/in/norm-liu", + "campus": "PTRI", + "cohort": "5", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Milwaukee", "Jersey City", "Durham", "London"], + "_id": { + "$oid": "666cbc3240af7b375e352184" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "AmeriSave Mortgage Corporation", + "name": "Jason Chan", + "email": "Jason.chann91@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jason-chan1765/", + "campus": "FTRI", + "cohort": "7", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Buffalo", "Nashville"], + "_id": { + "$oid": "666cbc3240af7b375e352185" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "AmeriSave Mortgage Corporation", + "name": "Michael Prince", + "email": "mgp2454@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael-prince", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Anchorage", "Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e352186" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Ample, LLC", + "name": "Rudo Hengst", + "email": "rudohengst@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rhengst/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Lead Developer", + "industry": "Digital Marketing", + "cities": ["Laredo"], + "_id": { + "$oid": "666cbc3240af7b375e352187" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amplify", + "name": "Ekaterina Vasileva", + "email": "ekaterinavasileva768@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ekaterina-vasileva238/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Education", + "cities": ["Toronto", "Phoenix"], + "_id": { + "$oid": "666cbc3240af7b375e352188" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.240Z" + }, + "__v": 0 + }, + { + "company": "Amplify", + "name": "Biet Van Nguyen", + "email": "vanbietnguyen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/van-biet-nguyen-6879434a/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Software Engineer", + "industry": "Edtech", + "cities": ["Denver", "North Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e352189" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Anaconda", + "name": "Rosio Reyes", + "email": "rosio_reyes@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/rosio-reyes-09b9a256/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "Computer Software", + "cities": ["Miami", "Jersey City", "Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e35218a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Ancestry", + "name": "Miguel Garibay", + "email": "miguelgaribay93@gmail.com", + "linkedIn": "https://www.linkedin.com/in/miguel-garibay-mag/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Full Stack Software Engineer", + "industry": "Genealogy", + "cities": ["St. Petersburg", "Riverside", "Buffalo", "Garland"], + "_id": { + "$oid": "666cbc3240af7b375e35218b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Ancestry", + "name": "Schno Mozingo", + "email": "schno.mozingo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/schno-mozingo/", + "campus": "LA", + "cohort": "12", + "jobTitle": "Senior Software Engineer", + "industry": "Geneology", + "cities": ["Chandler", "Chula Vista", "New Orleans"], + "_id": { + "$oid": "666cbc3240af7b375e35218c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Ancilia", + "name": "Clark Pang", + "email": "clarkcpang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/clarkpang/", + "campus": "LA / WCRI", + "cohort": "56", + "jobTitle": "Software Engineer", + "industry": "Security", + "cities": ["Fort Worth", "Charlotte"], + "_id": { + "$oid": "666cbc3240af7b375e35218d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Anheuser-Busch", + "name": "Brandon Bowers", + "email": "brandonbowers1234@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brandon-michael-bowers/", + "campus": "FTRI", + "cohort": "3", + "jobTitle": "Senior Front-end React Developer", + "industry": "Beverages", + "cities": ["Riverside", "Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e35218e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Annalect", + "name": "Carlos Peรฑa", + "email": "carlos.pena91@gmail.com", + "linkedIn": "https://www.linkedin.com/in/carlospena91", + "campus": "LA", + "cohort": "39", + "jobTitle": "Front End Engineer", + "industry": "Advertisement and Media", + "cities": ["Irving", "Santa Ana"], + "_id": { + "$oid": "666cbc3240af7b375e35218f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Annalect", + "name": "Trent Currie", + "email": "trentdcurrie@gmail.com", + "linkedIn": "https://www.linkedin.com/in/trentdcurrie/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Front-End Engineer", + "industry": "Marketing", + "cities": ["Chesapeake"], + "_id": { + "$oid": "666cbc3240af7b375e352190" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Apex Fintech Solutions", + "name": "Kevin Le", + "email": "lekevin2013@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kevinvu-le/", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Omaha"], + "_id": { + "$oid": "666cbc3240af7b375e352191" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Apex Systems", + "name": "Anthony Martinez", + "email": "anthony@amartinez.cc", + "linkedIn": "https://www.linkedin.com/in/tony-mtz/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer", + "industry": "Bank", + "cities": ["Sรฃo Paulo"], + "_id": { + "$oid": "666cbc3240af7b375e352192" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Apollo GraphQL", + "name": "Joel Burton", + "email": "joeltburton@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joeltburton", + "campus": "LA", + "cohort": "26", + "jobTitle": "Software Engineer", + "industry": "Technology", + "cities": ["Dallas", "Omaha", "Houston", "Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e352193" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Appfolio", + "name": "Erik Fisher", + "email": "efishr4@gmail.com", + "linkedIn": "https://www.linkedin.com/in/erik-fisher-53b9b6b3/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Software Engineer II", + "industry": "Aviation & Aerospace", + "cities": ["London", "Chicago", "St. Petersburg", "Fort Wayne"], + "_id": { + "$oid": "666cbc3240af7b375e352194" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Appfolio", + "name": "Michelle Holland", + "email": "michellebholland@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michellebholland/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Newark"], + "_id": { + "$oid": "666cbc3240af7b375e352195" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "AppFolio", + "name": "Timothy Barry", + "email": "tim.barry12@gmail.com", + "linkedIn": "https://www.linkedin.com/in/timothy-barry-se", + "campus": "FTRI", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Tulsa", "Lubbock"], + "_id": { + "$oid": "666cbc3240af7b375e352196" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Apple", + "name": "Alexander Zhang", + "email": "azalexanderzhang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/zhang-alexander/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Software Engineer", + "industry": "Tech", + "cities": ["El Paso", "Chesapeake", "Phoenix"], + "_id": { + "$oid": "666cbc3240af7b375e352197" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Apple (via Ryzen)", + "name": "Dieu Huynh", + "email": "dieuhhuynh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dieu-huynh/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Frontend Engineer", + "industry": "Technology", + "cities": ["Corpus Christi"], + "_id": { + "$oid": "666cbc3240af7b375e352198" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Applied Minds", + "name": "Michael Chiang", + "email": "michael.chiang.dev5@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael-chiang-dev5/", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "software engineer", + "industry": "Software / Tech", + "cities": ["Arlington", "Newark"], + "_id": { + "$oid": "666cbc3240af7b375e352199" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "AppOmni", + "name": "Ousman Diallo", + "email": "ordiallo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ousman-diallo/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Front End Engineer", + "industry": "Security", + "cities": ["Raleigh"], + "_id": { + "$oid": "666cbc3240af7b375e35219a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Arc'teryx", + "name": "Simon Grigenas", + "email": "grigenas@outlook.com", + "linkedIn": "https://www.linkedin.com/in/simon-grigenas/", + "campus": "NYC / ECRI", + "cohort": "1", + "jobTitle": "Intermediate Web Applications Developer", + "industry": "Retail", + "cities": ["Dallas"], + "_id": { + "$oid": "666cbc3240af7b375e35219b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Arcadia", + "name": "Adda Kridler", + "email": "addakridler@gmail.com", + "linkedIn": "https://www.linkedin.com/in/addakridler/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Software Engineer 1", + "industry": "Energy Tech", + "cities": ["Portland", "London", "Mesa", "Jacksonville"], + "_id": { + "$oid": "666cbc3240af7b375e35219c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Arcadia", + "name": "Cameron Baumgartner", + "email": "cameron.h.baumgartner@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cameronbaumgartner/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "Renewable Energy", + "cities": ["Berlin", "Houston"], + "_id": { + "$oid": "666cbc3240af7b375e35219d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Arcadia", + "name": "Jehovany A Cruz", + "email": "howaboutjeho@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jehovany-cruz/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer", + "industry": "Energy - Renewable Energy", + "cities": ["Fresno"], + "_id": { + "$oid": "666cbc3240af7b375e35219e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Arcadia", + "name": "Jason Liggayu", + "email": "jligg224@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jasonliggayu/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Full Stack Engineer", + "industry": "Renewable Energy", + "cities": ["Sรฃo Paulo"], + "_id": { + "$oid": "666cbc3240af7b375e35219f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Arcadia", + "name": "Kristen Althoff", + "email": "kristenwalthoff@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kristen-althoff-3a4765b9/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Full-Stack Software Engineer I", + "industry": "Software / Tech", + "cities": ["Lincoln", "Columbus", "Boston"], + "_id": { + "$oid": "666cbc3240af7b375e3521a0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Arcules", + "name": "Nico Flores", + "email": "floresni1996@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nicolasaflores/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Software Engineer", + "industry": "Cloud Services", + "cities": ["Saint Paul", "Orlando", "Fort Worth", "Oakland"], + "_id": { + "$oid": "666cbc3240af7b375e3521a1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Arcules", + "name": "Patrick Allen", + "email": "patrick@ohana-app.io", + "linkedIn": "https://linkedin.com/in/patrickallendfs", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer", + "industry": "Cloud Video", + "cities": ["Omaha", "New Orleans", "Stockton", "Reno"], + "_id": { + "$oid": "666cbc3240af7b375e3521a2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Armoire", + "name": "Katie Sandfort", + "email": "katie.sandfort@gmail.com", + "linkedIn": "https://www.linkedin.com/in/katie-sandfort/", + "campus": "LA / WCRI", + "cohort": "55", + "jobTitle": "Software Engineer", + "industry": "Retail", + "cities": ["Anchorage", "Mumbai", "Long Beach", "Cincinnati"], + "_id": { + "$oid": "666cbc3240af7b375e3521a3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Artsy", + "name": "Matt Jones", + "email": "matt.chris.jones@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mc-jones/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Senior Engineer 1 (Fullstack)", + "industry": "Art", + "cities": ["Indianapolis", "Minneapolis", "Pittsburgh"], + "_id": { + "$oid": "666cbc3240af7b375e3521a4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Artyc", + "name": "Daniel Geiger", + "email": "daniel.w.geiger@gmail.com", + "linkedIn": "https://www.linkedin.com/in/danielwgeiger/", + "campus": "FTRI / CTRI", + "cohort": "4", + "jobTitle": "Fullstack Engineer", + "industry": "Other", + "cities": ["Dallas", "Corpus Christi"], + "_id": { + "$oid": "666cbc3240af7b375e3521a5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Arvest Bank", + "name": "Leilani Hernandez", + "email": "leilani.digame@gmail.com", + "linkedIn": "www.linkedin.com/in/lherna05", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Front End Developer", + "industry": "Fintech", + "cities": ["Louisville", "Mumbai", "San Francisco", "Garland"], + "_id": { + "$oid": "666cbc3240af7b375e3521a6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Ash Wellness", + "name": "Andrew Rehrig", + "email": "arehrig@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andrew-rehrig/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Full Stack Engineer", + "industry": "Healthcare", + "cities": ["Riverside", "Houston", "Miami", "Corpus Christi"], + "_id": { + "$oid": "666cbc3240af7b375e3521a7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Asics", + "name": "Alexa Roberts", + "email": "alexarobertss@protonmail.com", + "linkedIn": "https://www.linkedin.com/in/alexarobertss", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Frontend Software Engineer", + "industry": "Software / Tech", + "cities": ["Chesapeake", "Columbus", "Berlin"], + "_id": { + "$oid": "666cbc3240af7b375e3521a8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Aspiration", + "name": "Charles Gyer", + "email": "charlesgyer@gmail.com", + "linkedIn": "https://www.linkedin.com/in/charles-gyer/", + "campus": "PTRI", + "cohort": "4", + "jobTitle": "Software Engineer, Backend", + "industry": "Green Fintech", + "cities": ["Anaheim", "Phoenix", "San Antonio"], + "_id": { + "$oid": "666cbc3240af7b375e3521a9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Astra", + "name": "Jae Ryu", + "email": "rj.jaeryu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jaeryu/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Senior Software Engineer", + "industry": "Space-tech", + "cities": ["Houston", "Bakersfield", "Santa Ana", "Cleveland"], + "_id": { + "$oid": "666cbc3240af7b375e3521aa" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Asurion", + "name": "Jinseon Shin", + "email": "jinseonshin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jinseonshin/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Tech Insurance", + "cities": ["Riverside", "Norfolk", "Cleveland"], + "_id": { + "$oid": "666cbc3240af7b375e3521ab" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Asurion", + "name": "Shah Chaudri", + "email": "shah.pro.se@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shah-chaudri/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer 3", + "industry": "Tech Insurance", + "cities": ["Sacramento", "Philadelphia"], + "_id": { + "$oid": "666cbc3240af7b375e3521ac" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Asurion", + "name": "Travis Woolston", + "email": "travis.ww@hotmail.com", + "linkedIn": "https://www.linkedin.com/in/traviswoolston/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["Mexico City", "Beijing", "Washington"], + "_id": { + "$oid": "666cbc3240af7b375e3521ad" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "AT&T", + "name": "Alexander Kim", + "email": "akim3235@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexanderkim1/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Backend Software Engineer", + "industry": "Entertainment", + "cities": ["Buffalo", "Beijing", "Glendale", "Garland"], + "_id": { + "$oid": "666cbc3240af7b375e3521ae" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "AT&T", + "name": "Marc Doran", + "email": "doramm4408@gmail.com", + "linkedIn": "https://www.linkedin.com/in/marc-doran", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Database Developer", + "industry": "Telecommunications", + "cities": ["Baltimore", "Chicago", "Albuquerque"], + "_id": { + "$oid": "666cbc3240af7b375e3521af" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "AT&T", + "name": "Alina Grafkina", + "email": "grafkina.production@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alinakyaw/", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Minneapolis", "Sydney", "New Orleans"], + "_id": { + "$oid": "666cbc3240af7b375e3521b0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Athena Health", + "name": "Zach Pestaina", + "email": "zpestaina@gmail.com", + "linkedIn": "linkedin.com/zachpestaina/", + "campus": "NYC / ECRI", + "cohort": "38", + "jobTitle": "Analytics Engineer", + "industry": "Healthcare", + "cities": ["San Jose"], + "_id": { + "$oid": "666cbc3240af7b375e3521b1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Atlassian", + "name": "Giao Tran", + "email": "contactgiaotran@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gd-tran/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Software Engineer P3", + "industry": "Project management?", + "cities": ["Chicago", "Louisville"], + "_id": { + "$oid": "666cbc3240af7b375e3521b2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Atlassian", + "name": "Dan Snyder", + "email": "dasnyder3@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dasnyder3/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "Tech", + "cities": ["Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e3521b3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Atlassian/ Trello", + "name": "Elizabeth Lotto", + "email": "fakeEmail1@fakeEmail.com", + "linkedIn": "https://www.linkedin.com/in/elizabethlotto/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer", + "industry": "Computer Software", + "cities": ["Mesa"], + "_id": { + "$oid": "666cbc3240af7b375e3521b4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Atos Syntel (at Disney)", + "name": "Dakota Gilbreath", + "email": "dgilbrea92@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dakota-gilbreath/", + "campus": "LA", + "cohort": "34", + "jobTitle": "Full Stack Developer", + "industry": "Entertainment", + "cities": ["Laredo", "Baltimore", "Newark", "London"], + "_id": { + "$oid": "666cbc3240af7b375e3521b5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Attentive", + "name": "Sam Goldberg", + "email": "sgoldber61@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sgoldber61/", + "campus": "LA", + "cohort": "27", + "jobTitle": "Software Engineer, Frontend - L4", + "industry": "E-commerce", + "cities": ["Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e3521b6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Attentive", + "name": "Pravek Karwe", + "email": "pkarwe62@gmail.com", + "linkedIn": "https://www.linkedin.com/in/pravek-karwe?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app", + "campus": "NYOI", + "cohort": "7", + "jobTitle": "Senior Product Manager", + "industry": "Marketing/Advertising", + "cities": ["El Paso", "Austin", "Boston", "Oakland"], + "_id": { + "$oid": "666cbc3240af7b375e3521b7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Audacy", + "name": "John Roman", + "email": "johnmroman33@gmail.com", + "linkedIn": "https://www.linkedin.com/in/john-m-roman/", + "campus": "NYC / ECRI", + "cohort": "38", + "jobTitle": "Associate Software Engineer", + "industry": "Entertainment", + "cities": ["Cincinnati", "Lincoln", "Gilbert", "Austin"], + "_id": { + "$oid": "666cbc3240af7b375e3521b8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "AuditBoard", + "name": "Alex Yu", + "email": "alexjihunyu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexjihunyu/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer", + "industry": "FinTech", + "cities": ["Sacramento", "Miami", "Irving", "Raleigh"], + "_id": { + "$oid": "666cbc3240af7b375e3521b9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Autodesk", + "name": "Javan Ang", + "email": "javanamt@gmail.com", + "linkedIn": "https://www.linkedin.com/in/javanang/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Software Engineer", + "industry": "Software/Tech", + "cities": ["St. Louis", "Nashville", "Cleveland", "Sacramento"], + "_id": { + "$oid": "666cbc3240af7b375e3521ba" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "AutoFi", + "name": "Rocky Lin", + "email": "liangwen511@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rocky-lin/", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Senior Software Engineer", + "industry": "FinTech", + "cities": ["Beijing", "Gilbert"], + "_id": { + "$oid": "666cbc3240af7b375e3521bb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Ava", + "name": "Eden Shirin", + "email": "edenshirin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eden-shirin/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Software Engineer", + "industry": "Artificial Intelligence", + "cities": ["St. Louis", "Winston-Salem", "Chesapeake"], + "_id": { + "$oid": "666cbc3240af7b375e3521bc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Avant", + "name": "David Riley Burns", + "email": "drileyburns@gmail.com", + "linkedIn": "https://www.linkedin.com/in/drileyburns/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Software Engineer", + "industry": "Loans", + "cities": ["Irving", "Madison", "Arlington"], + "_id": { + "$oid": "666cbc3240af7b375e3521bd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Avirtek", + "name": "Eliot L Nguyen", + "email": "eliotlefrin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ibeeliot", + "campus": "LA", + "cohort": "34", + "jobTitle": "Front End Lead Developer", + "industry": "Cybersecurity", + "cities": ["Jersey City"], + "_id": { + "$oid": "666cbc3240af7b375e3521be" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Avise", + "name": "Frank Norton", + "email": "jfnorton@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jfnorton32/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Full Stack Software Engineer", + "industry": "Fintech", + "cities": ["Tokyo", "Arlington", "Winston-Salem"], + "_id": { + "$oid": "666cbc3240af7b375e3521bf" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Avoma", + "name": "Kevin Chung", + "email": "kevin.c@me.com", + "linkedIn": "https://www.linkedin.com/in/kevc/", + "campus": "LA / WCRI", + "cohort": "47", + "jobTitle": "Software Engineer - Frontend", + "industry": "Software / Tech", + "cities": ["Los Angeles"], + "_id": { + "$oid": "666cbc3240af7b375e3521c0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "AVOXI", + "name": "Shirley Luu", + "email": "sh.rleyluu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/luu-shirley", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Full Stack Software Engineer", + "industry": "Business Tech/Enterprise Tech", + "cities": ["Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e3521c1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Avvir", + "name": "Sharon Zhu", + "email": "sharonzhu.15@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sharonzhu/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer II", + "industry": "Construction Tech", + "cities": ["Cleveland", "Charlotte", "Chesapeake", "Tucson"], + "_id": { + "$oid": "666cbc3240af7b375e3521c2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "AWS", + "name": "Blake Myrick", + "email": "blake.myrick@gmail.com", + "linkedIn": "https://www.linkedin.com/in/blake-myrick", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Software Development Engineer", + "industry": "Tech", + "cities": ["Seattle", "San Francisco", "Pittsburgh", "Sรฃo Paulo"], + "_id": { + "$oid": "666cbc3240af7b375e3521c3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "AWS", + "name": "George Jeng", + "email": "gjenga@icloud.com", + "linkedIn": "https://www.linkedin.com/in/gjenga", + "campus": "LA", + "cohort": "49", + "jobTitle": "SDE1", + "industry": "Cloud Services", + "cities": ["Chandler", "Santa Ana"], + "_id": { + "$oid": "666cbc3240af7b375e3521c4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "AWS", + "name": "Marc Burnie", + "email": "MarcABurnie@gmail.com", + "linkedIn": "https://www.linkedin.com/in/marcburnie", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Development Engineer II", + "industry": "Tech", + "cities": ["Raleigh", "Corpus Christi"], + "_id": { + "$oid": "666cbc3240af7b375e3521c5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "AWS", + "name": "Patty Qian", + "email": "patty.qian@gmail.com", + "linkedIn": "https://www.linkedin.com/in/patty-qian/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Development Engineer", + "industry": "Tech", + "cities": ["Chula Vista"], + "_id": { + "$oid": "666cbc3240af7b375e3521c6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Axim Geospatial", + "name": "Kevin Le", + "email": "kevinle1003@gmail.com", + "linkedIn": "https://www.linkedin.com/in/xkevinle/", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Software Developer", + "industry": "IT Services", + "cities": ["Glendale", "Fort Wayne"], + "_id": { + "$oid": "666cbc3240af7b375e3521c7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Axle Health", + "name": "Alexandra Ashcraft", + "email": "lash211@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexandra-ashcraft1/", + "campus": "FTRI / CTRI", + "cohort": "17", + "jobTitle": "Software Engineer", + "industry": "Healthtech/Healthcare", + "cities": ["Minneapolis", "Sydney", "Jersey City"], + "_id": { + "$oid": "666cbc3240af7b375e3521c8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.242Z" + }, + "__v": 0 + }, + { + "company": "Axon", + "name": "Meng Ting Chiang", + "email": "a123deandean@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mengting-chiang/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer", + "industry": "Public Safety", + "cities": ["San Antonio", "Plano"], + "_id": { + "$oid": "666cbc3240af7b375e3521c9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "B-stock solutions", + "name": "Michael Feldman", + "email": "michaelfeldma1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael-feldman15/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Nodejs / microservices software engineer", + "industry": "E-commerce", + "cities": ["North Las Vegas", "Lexington"], + "_id": { + "$oid": "666cbc3240af7b375e3521ca" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Bach", + "name": "Abbey Campbell", + "email": "campbellabbeya@gmail.com", + "linkedIn": "https://www.linkedin.com/in/campbellabbeya/", + "campus": "LA", + "cohort": "31", + "jobTitle": "Frontend Developer", + "industry": "Entertainment? Wed-tech? lol idk it's pretty niche", + "cities": ["Berlin"], + "_id": { + "$oid": "666cbc3240af7b375e3521cb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "BallerTV", + "name": "Jenessa Chapalamadugu", + "email": "jenessachap@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jenessachap/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Full Stack Engineer", + "industry": "Entertainment", + "cities": ["Sacramento"], + "_id": { + "$oid": "666cbc3240af7b375e3521cc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Bank of America", + "name": "Ranisha Rafeeque Soopi Kalphantakath", + "email": "ranisharafeeque@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ranisha-rafeeque-s-k/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "AVP, Software Engineer", + "industry": "Fintech", + "cities": ["Kansas City", "Raleigh", "Miami"], + "_id": { + "$oid": "666cbc3240af7b375e3521cd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Barstool Sports", + "name": "Daniel Nagano-Gerace", + "email": "dnaganog@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dnaganog/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Senior Backend Engineer", + "industry": "Media", + "cities": ["Mumbai", "Tokyo", "Sydney", "Long Beach"], + "_id": { + "$oid": "666cbc3240af7b375e3521ce" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Bayer Crop Science (Neteffects)", + "name": "Jason Fricano", + "email": "jason.fricano@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jasonfricano/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Node / React Developer", + "industry": "Agricultural Science", + "cities": ["Chesapeake"], + "_id": { + "$oid": "666cbc3240af7b375e3521cf" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Bayer Crop Sciences", + "name": "Stephen Budarz", + "email": "sbudarz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/steve-budarz/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Full Stack Engineer", + "industry": "Agriculture", + "cities": ["Seattle", "St. Petersburg"], + "_id": { + "$oid": "666cbc3240af7b375e3521d0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "BD", + "name": "Annabelle Ni", + "email": "ann.j.ni@gmail.com", + "linkedIn": "https://www.linkedin.com/in/annabelleni/", + "campus": "FTRI / CTRI", + "cohort": "17", + "jobTitle": "Software Engineer", + "industry": "Healthtech/Healthcare", + "cities": ["Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e3521d1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Beacon Hill Staffing (Charter Communications)", + "name": "David Russo", + "email": "dr2378@gmail.com", + "linkedIn": "https://www.linkedin.com/in/russo-david", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Telecommunications", + "cities": ["Chandler", "Oklahoma City", "San Francisco", "Scottsdale"], + "_id": { + "$oid": "666cbc3240af7b375e3521d2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Beacon Hill Staffing (working for Charter Communications)", + "name": "Jessica Balding", + "email": "jessica.r.balding@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jessica-balding/", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Full Stack Developer", + "industry": "Telecommunications", + "cities": ["Washington"], + "_id": { + "$oid": "666cbc3240af7b375e3521d3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Beautycounter", + "name": "Mario Granberri", + "email": "mgranberri@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mgranberri/", + "campus": "LA", + "cohort": "25", + "jobTitle": "Full stack software engineer", + "industry": "Compliance", + "cities": ["Greensboro"], + "_id": { + "$oid": "666cbc3240af7b375e3521d4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Behavior Frontiers", + "name": "Chance Hernandez", + "email": "chance.hernandez24@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chance-hernandez/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e3521d5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Bentobox", + "name": "Corey Van Splinter", + "email": "cvanspl1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/corey-van-splinter/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Senior Software Engineer", + "industry": "Hospitality", + "cities": ["Henderson", "Saint Paul", "Oakland", "Garland"], + "_id": { + "$oid": "666cbc3240af7b375e3521d6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Bentobox", + "name": "Greg Dixon", + "email": "gdixon529@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gdixon529/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Engineer", + "industry": "Software", + "cities": ["Norfolk", "Jacksonville", "Aurora", "Reno"], + "_id": { + "$oid": "666cbc3240af7b375e3521d7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "BentoBox", + "name": "Brian Liang", + "email": "liangbrian94@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brian-z-liang/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Product Support Engineer", + "industry": "Not sure", + "cities": ["Houston"], + "_id": { + "$oid": "666cbc3240af7b375e3521d8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Berkadia", + "name": "Isaac Kittila", + "email": "isaac.kittila@gmail.com", + "linkedIn": "https://www.linkedin.com/in/isaac-kittila/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Associate Software Engineer", + "industry": "Commercial Real Estate", + "cities": ["Lincoln", "Irvine", "Kansas City"], + "_id": { + "$oid": "666cbc3240af7b375e3521d9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Best Buy", + "name": "Alexander Hager", + "email": "alexhager19@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hager-alexander/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Front end Engineer", + "industry": "Data analytics", + "cities": ["Las Vegas", "Dallas", "Philadelphia", "Raleigh"], + "_id": { + "$oid": "666cbc3240af7b375e3521da" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Better.com", + "name": "Stefan Armijo", + "email": "stefan.armijo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stefanarmijo/", + "campus": "LA", + "cohort": "21", + "jobTitle": "Sr. Software Engineer", + "industry": "", + "cities": ["New Orleans"], + "_id": { + "$oid": "666cbc3240af7b375e3521db" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "BidWrangler", + "name": "Kylene Hohman", + "email": "kylenehohman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kylene-hohman", + "campus": "PTRI", + "cohort": "5", + "jobTitle": "Full-Stack Developer", + "industry": "Auction Services", + "cities": ["Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e3521dc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Bigeye", + "name": "Dasha Kondratenko", + "email": "dashakondrattenko@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dasha-k/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer 1", + "industry": "Data quality", + "cities": ["Colorado Springs", "St. Petersburg"], + "_id": { + "$oid": "666cbc3240af7b375e3521dd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "BigID", + "name": "Helen Regula", + "email": "hregula03@gmail.com", + "linkedIn": "https://www.linkedin.com/in/helenregula/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Senior Full Stack Software Engineer", + "industry": "Cyber Security", + "cities": ["Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e3521de" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Bill.com", + "name": "Gordon Hui", + "email": "Maddogg612@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gordon-hui", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Software engineer 2 - Frontend", + "industry": "Fintech", + "cities": ["Milwaukee", "Berlin", "Phoenix"], + "_id": { + "$oid": "666cbc3240af7b375e3521df" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Bio-Rad Laboratories", + "name": "Tiffany Yang", + "email": "teefyang7857@gmail.com", + "linkedIn": "https://www.linkedin.com/in/teayang/", + "campus": "LA", + "cohort": "21", + "jobTitle": "Software Engineer", + "industry": "Biotech", + "cities": ["Indianapolis", "Plano", "Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e3521e0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "BitGo", + "name": "Joe Kinney", + "email": "josephrkinney@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joekinney17/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Minneapolis", "Memphis", "Cincinnati", "Kansas City"], + "_id": { + "$oid": "666cbc3240af7b375e3521e1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Bitovi", + "name": "Edward Park", + "email": "edwardpark123@gmail.com", + "linkedIn": "https://www.linkedin.com/in/edwardparkwork/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Junior Developer and Consultant", + "industry": "Computer Software", + "cities": ["Berlin", "Portland", "Reno"], + "_id": { + "$oid": "666cbc3240af7b375e3521e2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "BitPay", + "name": "Taven Shumaker", + "email": "tavensshumaker@gmail.com", + "linkedIn": "https://www.linkedin.com/in/taven-shumaker/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Pittsburgh", "Paris", "Tampa", "Stockton"], + "_id": { + "$oid": "666cbc3240af7b375e3521e3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Black Cape", + "name": "kyle saunders", + "email": "kylersaunders@gmail.com", + "linkedIn": "/kylersaunders", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Cincinnati", "Norfolk", "New Orleans", "Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e3521e4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Blackrock", + "name": "Jiaxin Li", + "email": "jiaxin.li.gogo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lijiaxingogo/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "DevOps Engineer", + "industry": "", + "cities": ["Gilbert", "Indianapolis", "Lincoln", "Anaheim"], + "_id": { + "$oid": "666cbc3240af7b375e3521e5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Blackthorn Software", + "name": "Aalok Shah", + "email": "aalok.tsh@gmail.com", + "linkedIn": "/kolashah", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Full Stack Software Engineer", + "industry": "Other", + "cities": ["Virginia Beach", "Henderson", "San Jose", "Chesapeake"], + "_id": { + "$oid": "666cbc3240af7b375e3521e6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Blackthorn.io", + "name": "Tristan Onfroy", + "email": "tonfroy90@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tristan-onfroy/", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Support Software Engineer", + "industry": "Software Solutions/Developer Tools", + "cities": ["St. Petersburg", "Orlando", "Omaha"], + "_id": { + "$oid": "666cbc3240af7b375e3521e7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Blend", + "name": "Peter Makhnatch", + "email": "p.makhnatch@gmail.com", + "linkedIn": "https://www.linkedin.com/in/petermakhnatch/", + "campus": "PTRI", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Milwaukee"], + "_id": { + "$oid": "666cbc3240af7b375e3521e8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Blink Health", + "name": "Matthew Digel", + "email": "Digel.matt@gmail.com", + "linkedIn": "https://www.linkedin.com/in/matt-digel", + "campus": "PTRI", + "cohort": "Beta", + "jobTitle": "Sr. Product Manager", + "industry": "Health Care Tech", + "cities": ["Oakland", "North Las Vegas", "Toledo"], + "_id": { + "$oid": "666cbc3240af7b375e3521e9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Blizzard", + "name": "Christopher Washburn", + "email": "chris132128@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christopherwashburn/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Software Development Engineer", + "industry": "Insurance", + "cities": ["Tampa", "Berlin", "Winston-Salem", "Anaheim"], + "_id": { + "$oid": "666cbc3240af7b375e3521ea" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "BlockFi", + "name": "Mohtasim Chowdhury", + "email": "mohtasim.hc@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mohtasimc/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Frontend Engineer", + "industry": "Fintech", + "cities": ["New York", "Beijing", "Cleveland"], + "_id": { + "$oid": "666cbc3240af7b375e3521eb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "BLOCKS", + "name": "Christopher C Carney", + "email": "ccarney51@gmail.com", + "linkedIn": "https://www.linkedin.com/mwlite/in/christopher-c-carney", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Senior Backend Engineer", + "industry": "Technology", + "cities": ["Jersey City", "Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e3521ec" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Bloom Medicinals", + "name": "Candie Hill", + "email": "can330330@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/candie-hill/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Jr Software Developer", + "industry": "Other", + "cities": ["Toronto", "Oklahoma City"], + "_id": { + "$oid": "666cbc3240af7b375e3521ed" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Bloomberg", + "name": "John Haberstroh", + "email": "haberstroh.john@gmail.com", + "linkedIn": "https://www.linkedin.com/in/johnhaberstroh/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Senior Fullstack Engineer", + "industry": "Financial,Software,Media,Data", + "cities": ["Chula Vista"], + "_id": { + "$oid": "666cbc3240af7b375e3521ee" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Bloomberg", + "name": "James Maguire", + "email": "Jmaguire655@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["London"], + "_id": { + "$oid": "666cbc3240af7b375e3521ef" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Bloomberg", + "name": "Cedric Lee", + "email": "leeced@umich.edu", + "linkedIn": "https://www.linkedin.com/in/leeced/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Chandler"], + "_id": { + "$oid": "666cbc3240af7b375e3521f0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Bloomberg", + "name": "Duke Lee", + "email": "leeduke90@gmail.com", + "linkedIn": "https://www.linkedin.com/in/duke-lee/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "Fin-Tech", + "cities": ["Madison", "Portland"], + "_id": { + "$oid": "666cbc3240af7b375e3521f1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Bloomberg", + "name": "Michael Chin", + "email": "mikechin37@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael-9-chin/", + "campus": "NYC / ECRI", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Memphis", "Garland", "Las Vegas", "San Antonio"], + "_id": { + "$oid": "666cbc3240af7b375e3521f2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Bloomberg Industry Group", + "name": "Neel Lakshman", + "email": "neelanjan.lakshman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/neel-lakshman/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Web Application Architect I", + "industry": "Other", + "cities": ["Virginia Beach", "Cincinnati", "Nashville"], + "_id": { + "$oid": "666cbc3240af7b375e3521f3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Bloomberg L.P.", + "name": "Ariel Hyman", + "email": "a.o.hyman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ahyman0712/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Laredo"], + "_id": { + "$oid": "666cbc3240af7b375e3521f4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Bloomberg LP", + "name": "Jinhee Choi", + "email": "jinhee.k.choi@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jinheekchoi/", + "campus": "LA", + "cohort": "44", + "jobTitle": "Senior Software Engineer (Consultant)", + "industry": "Fintech", + "cities": ["Arlington", "San Antonio", "Sรฃo Paulo"], + "_id": { + "$oid": "666cbc3240af7b375e3521f5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Bloomboard", + "name": "Junie Hou", + "email": "selilac9@gmail.com", + "linkedIn": "https://www.linkedin.com/in/juniehou/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Jacksonville", "Omaha", "Lexington", "Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e3521f6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Blue Cross Blue Sheild of Florida", + "name": "Adam Rodriguez", + "email": "adamxrodriguez@gmail.com", + "linkedIn": "https://linkedin.com/in/adamrodriguez/", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Senior React Node Software Engineer", + "industry": "Healthcare", + "cities": ["Irving", "Louisville", "Anchorage", "Detroit"], + "_id": { + "$oid": "666cbc3240af7b375e3521f7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Blue Origin", + "name": "Sam VanTassel", + "email": "vantassel.sam@gmail.com", + "linkedIn": "https://www.linkedin.com/in/samvantassel/", + "campus": "LA", + "cohort": "47", + "jobTitle": "Software Engineer I", + "industry": "Aerospace", + "cities": ["Chesapeake", "Atlanta", "San Jose", "Henderson"], + "_id": { + "$oid": "666cbc3240af7b375e3521f8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Blueberry Pediatrics", + "name": "Lina Lee", + "email": "woorin.lee1524@gmail.com", + "linkedIn": "www.linkedin.com/in/lee-lina", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Full-Stack Software Engineer", + "industry": "Healthcare", + "cities": ["San Antonio", "St. Louis", "Seattle"], + "_id": { + "$oid": "666cbc3240af7b375e3521f9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "BlueStream Health", + "name": "Wei Huang", + "email": "wei.waye.huang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/wei-waye-huang/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Senior Software Engineer", + "industry": "Healthcare", + "cities": ["Kansas City", "San Jose", "New Orleans", "Washington"], + "_id": { + "$oid": "666cbc3240af7b375e3521fa" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "BlueVoyant", + "name": "Mahfuz Kabir", + "email": "mahfuzk@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mahfuzkabir/", + "campus": "NYC", + "cohort": "4", + "jobTitle": "Software Engineer (Managed Security Services)", + "industry": "", + "cities": ["Louisville"], + "_id": { + "$oid": "666cbc3240af7b375e3521fb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "BNY Mellon", + "name": "Ahsan Ali", + "email": "ali.ahsan95@gmail.com", + "linkedIn": "https://www.linkedin.com/in/greyali", + "campus": "FTRI / CTRI", + "cohort": "12", + "jobTitle": "Senior Full Stack Developer", + "industry": "Fintech", + "cities": ["Nashville", "Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e3521fc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Bolt", + "name": "Chelsey Fewer", + "email": "chelsey.fewer@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chelsey-fewer/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Support Engineer", + "industry": "Ecommerce", + "cities": ["Riverside", "Long Beach", "Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e3521fd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Booster", + "name": "Evelin Goldin", + "email": "evelinsaba1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/evelin-goldin/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Fullstack Software Engineer", + "industry": "Other", + "cities": ["Phoenix", "Detroit"], + "_id": { + "$oid": "666cbc3240af7b375e3521fe" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Booz Allen Hamilton", + "name": "Sang Rea Han", + "email": "sxhanx@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sangreahan/", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Sr. Consultant", + "industry": "Consulting", + "cities": ["Charlotte"], + "_id": { + "$oid": "666cbc3240af7b375e3521ff" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Boulevard", + "name": "Ashley Austin", + "email": "aaustin86@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mraustin2u", + "campus": "LA", + "cohort": "34", + "jobTitle": "Senior Associate Software Engineer", + "industry": "Business Management Tool", + "cities": ["St. Louis", "Tucson", "Boston"], + "_id": { + "$oid": "666cbc3240af7b375e352200" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Boxed", + "name": "Adam Goodman", + "email": "adamrgoodman1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adam-goodman1/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Backend Engineer I", + "industry": "e-commerce", + "cities": ["Santa Ana", "Detroit"], + "_id": { + "$oid": "666cbc3240af7b375e352201" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "BP3", + "name": "Brian Jungk", + "email": "brian.jungk@outlook.com", + "linkedIn": "https://www.linkedin.com/in/brian-jungk/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Software Engineer", + "industry": "Consulting", + "cities": ["Wichita", "Beijing", "Berlin"], + "_id": { + "$oid": "666cbc3240af7b375e352202" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Brady Corporation", + "name": "Sean Flynn", + "email": "seanflynn5000@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sean-g-flynn", + "campus": "NYC / ECRI", + "cohort": "38", + "jobTitle": "Web Developer", + "industry": "Business Tech/Enterprise Tech", + "cities": ["Dallas", "Paris", "Albuquerque"], + "_id": { + "$oid": "666cbc3240af7b375e352203" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Branding Brand", + "name": "Andy Heng", + "email": "andyheng1095@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andy-heng/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Engineer", + "industry": "E-Commerce", + "cities": ["Oakland", "Memphis", "Toronto", "Beijing"], + "_id": { + "$oid": "666cbc3240af7b375e352204" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Branding Brand", + "name": "Christian Wong", + "email": "ctcwong73@gmail.com", + "linkedIn": "https://www.linkedin.com/in/wong-christian/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Charlotte"], + "_id": { + "$oid": "666cbc3240af7b375e352205" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Branding Brand", + "name": "Nobuhide Ajito", + "email": "Nobuhide95@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nobuhide-ajito/", + "campus": "LA", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Technology", + "cities": ["Minneapolis", "Buffalo", "Philadelphia"], + "_id": { + "$oid": "666cbc3240af7b375e352206" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Bread Financial", + "name": "Cho Yee Win Aung", + "email": "choyeewinag@gmail.com", + "linkedIn": "https://www.linkedin.com/in/choyeewinaung/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer 1", + "industry": "Fintech", + "cities": ["Kansas City"], + "_id": { + "$oid": "666cbc3240af7b375e352207" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Brighter", + "name": "Elliot Kim", + "email": "elliot.kim@gmail.com", + "linkedIn": "https://www.linkedin.com/in/elliotjykim/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Full Stack Engineer", + "industry": "Gaming & Entertainment", + "cities": ["Paris"], + "_id": { + "$oid": "666cbc3240af7b375e352208" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Brighter (Cigna)", + "name": "David Marquess", + "email": "dave.marquess@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dave-marquess/", + "campus": "LA", + "cohort": "25", + "jobTitle": "Senior Software Engineer", + "industry": "Cybersecurity", + "cities": ["Tucson"], + "_id": { + "$oid": "666cbc3240af7b375e352209" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Brightflow AI", + "name": "Erika Jung", + "email": "erika.h.jung@gmail.com", + "linkedIn": "https://www.linkedin.com/in/erikahjung/", + "campus": "LA / WCRI", + "cohort": "56", + "jobTitle": "Software Engineer", + "industry": "IT Services", + "cities": ["El Paso", "Portland", "Phoenix", "Gilbert"], + "_id": { + "$oid": "666cbc3240af7b375e35220a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Brillio", + "name": "Alexander Smith", + "email": "ajsmith925@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ajsmith925/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer", + "industry": "Software Consulting", + "cities": ["Columbus", "Orlando", "Lubbock", "Indianapolis"], + "_id": { + "$oid": "666cbc3240af7b375e35220b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Brooksource, contracted to Northwestern Mutual", + "name": "Jessica Louie Lee", + "email": "jlouielee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jessllee/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Backend Node Engineer with Brooksource, Full stack Engineer with Northwestern Mutual", + "industry": "Fintech", + "cities": ["Chesapeake", "Chula Vista", "Long Beach"], + "_id": { + "$oid": "666cbc3240af7b375e35220c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "BuildOps", + "name": "Muhammad Trad", + "email": "Muhammad.trad@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/muhammadtrad/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Senior Software Engineer", + "industry": "Commercial Real Estate", + "cities": ["Newark", "Tulsa", "Reno", "Cleveland"], + "_id": { + "$oid": "666cbc3240af7b375e35220d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Business Alliance Financial Services (BAFS)", + "name": "Justin McKay", + "email": "justinmckay99@gmail.com", + "linkedIn": "https://www.linkedin.com/in/justinwmckay/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Omaha", "Anaheim", "Washington", "Virginia Beach"], + "_id": { + "$oid": "666cbc3240af7b375e35220e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Business Alliance Financial Services, LLC", + "name": "Joe Bigelow", + "email": "joebigelow@protonmail.com", + "linkedIn": "https://www.linkedin.com/in/joe-bigelow", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer", + "industry": "Finance (Credit union service organization)", + "cities": ["Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e35220f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "ButcherBox", + "name": "Maxwell Shick", + "email": "maxwellshick@gmail.com", + "linkedIn": "https://www.linkedin.com/in/maxwell-shick/", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Restaurant, Food, and Beverage", + "cities": ["Arlington", "Tampa"], + "_id": { + "$oid": "666cbc3240af7b375e352210" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Butterfly Network", + "name": "Akiko Hagio Dulaney", + "email": "akikoinhd@gmail.com", + "linkedIn": "https://www.linkedin.com/in/akiko-hagio-dulaney/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Web/API QA Automation Engineer", + "industry": "Healthtech", + "cities": ["Garland", "Norfolk", "Sydney"], + "_id": { + "$oid": "666cbc3240af7b375e352211" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Butterfly Network", + "name": "Crystal (Crys) Lim", + "email": "crystal.joy.lim@gmail.com", + "linkedIn": "https://www.linkedin.com/in/crystallim/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer II - Cloud Backend", + "industry": "Medical Equipment Manufacturing", + "cities": ["Pittsburgh"], + "_id": { + "$oid": "666cbc3240af7b375e352212" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "C3 AI", + "name": "Shelby Cotton", + "email": "hello@shelbycotton.com", + "linkedIn": "https://linkedin.com/in/shelbycotton", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Forward Deployed Engineer", + "industry": "Artificial intelligence", + "cities": ["Pittsburgh"], + "_id": { + "$oid": "666cbc3240af7b375e352213" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "C3.AI", + "name": "Dominic Genuario", + "email": "dominicgenuario@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dominic-genuario/", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Forward Deployed Engineer", + "industry": "Artificial Intelligence", + "cities": ["Buffalo", "Lexington", "Fresno"], + "_id": { + "$oid": "666cbc3240af7b375e352214" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Cadent", + "name": "William Yoon", + "email": "williamdyoon@gmail.com", + "linkedIn": "https://www.linkedin.com/in/williamdyoon/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Front End Engineer", + "industry": "TV Advertising", + "cities": ["Mesa"], + "_id": { + "$oid": "666cbc3240af7b375e352215" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "CafeMedia", + "name": "Jasper Narvil", + "email": "jaspernarvil@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jaspernarvil/", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Software Eng II", + "industry": "Software / Tech", + "cities": ["Las Vegas", "Tulsa", "Mexico City"], + "_id": { + "$oid": "666cbc3240af7b375e352216" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "CAIS Group", + "name": "Anson Avellar", + "email": "anson@ansonavellar.com", + "linkedIn": "https://www.linkedin.com/in/ansonavellar/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Front End Developer (internally Associate)", + "industry": "Fintech", + "cities": ["Gilbert", "Portland", "Aurora"], + "_id": { + "$oid": "666cbc3240af7b375e352217" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Canadian Tire Corporation", + "name": "Ansel Andro Santos", + "email": "anselandrosantos@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ansel-santos", + "campus": "NYOI", + "cohort": "3", + "jobTitle": "Manager, Advanced Measurement & Analytics", + "industry": "Data/Analytics/Cloud", + "cities": ["Winston-Salem", "New Orleans", "Memphis"], + "_id": { + "$oid": "666cbc3240af7b375e352218" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Canary Connect", + "name": "Dillon Garrett", + "email": "dillon.garrett.dev@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dillon-garrett/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Front End Engineer", + "industry": "Home Security", + "cities": ["Milwaukee", "Paris", "Anchorage", "Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e352219" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Capital Connect by JP Morgan", + "name": "Peter Baniuszewicz", + "email": "Baniuszewicz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/peter-ba/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Minneapolis"], + "_id": { + "$oid": "666cbc3240af7b375e35221a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Adrian Inza-Cruz", + "email": "ainzacruz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adrian-inza-cruz/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Senior Associate Software Engineer", + "industry": "Fintech", + "cities": ["Dallas", "Long Beach"], + "_id": { + "$oid": "666cbc3240af7b375e35221b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Alexander Gurfinkel", + "email": "alexgurfinkel@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexandergurfinkel/", + "campus": "PTRI", + "cohort": "5", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Long Beach", "Milwaukee", "San Diego", "Omaha"], + "_id": { + "$oid": "666cbc3240af7b375e35221c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Jung Ho Lee", + "email": "alexxleee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jungholee27/", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Paris", "Mumbai", "Corpus Christi"], + "_id": { + "$oid": "666cbc3240af7b375e35221d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Allan MacLean", + "email": "allanpmaclean@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Sacramento", "Chesapeake", "Fresno"], + "_id": { + "$oid": "666cbc3240af7b375e35221e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Alvin Ma", + "email": "alvin.ma95@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alvinrayma/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Oakland", "Austin"], + "_id": { + "$oid": "666cbc3240af7b375e35221f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Alvin Cheng", + "email": "alvincheng505@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alvin-cheng/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "Banking", + "cities": ["Portland"], + "_id": { + "$oid": "666cbc3240af7b375e352220" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Allana Ordonez", + "email": "ayaordonez@gmail.com", + "linkedIn": "https://www.linkedin.com/in/allana-ordonez/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer, Frontend", + "industry": "Banking/Fintech", + "cities": ["Corpus Christi", "Chula Vista", "Raleigh"], + "_id": { + "$oid": "666cbc3240af7b375e352221" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Brandon Miller", + "email": "bmiller1881@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brandon-j-miller", + "campus": "FTRI / CTRI", + "cohort": "12", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e352222" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Carson Chen", + "email": "carson.cy.chen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/carsoncychen/", + "campus": "NYC", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "IT", + "cities": ["Santa Ana", "Greensboro"], + "_id": { + "$oid": "666cbc3240af7b375e352223" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Carlos Botero-Vargas", + "email": "cbotero-vargas@outlook.com", + "linkedIn": "https://www.linkedin.com/in/carlosb-v/", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "Senior Software Engineer", + "industry": "Finance", + "cities": ["Long Beach", "Toledo", "Lexington"], + "_id": { + "$oid": "666cbc3240af7b375e352224" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.243Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Jason Clark", + "email": "clarkjasonee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/clarkjasonee/", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Irving"], + "_id": { + "$oid": "666cbc3240af7b375e352225" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Sina Kahrobaei", + "email": "cna.kahrobaei@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sinakahrobaei/", + "campus": "FTRI", + "cohort": "6", + "jobTitle": "Senior Software Engineer (Full Stack)", + "industry": "Fintech", + "cities": ["Jersey City", "Colorado Springs", "Stockton", "St. Petersburg"], + "_id": { + "$oid": "666cbc3240af7b375e352226" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Christopher cheng", + "email": "Ctpcheng@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ctpcheng/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Senior Software Engineer, Front End", + "industry": "Fintech", + "cities": ["Atlanta", "Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e352227" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Darren Chan", + "email": "darrenc3195@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dbchan/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Full Stack Software Engineer", + "industry": "Fintech", + "cities": ["Plano", "Minneapolis", "Paris"], + "_id": { + "$oid": "666cbc3240af7b375e352228" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "David Zhang", + "email": "davidnyc@umich.edu", + "linkedIn": "https://www.linkedin.com/in/davidnyc/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Fullstack Software Engineer", + "industry": "Finance", + "cities": ["North Las Vegas", "Seattle", "Colorado Springs", "Mumbai"], + "_id": { + "$oid": "666cbc3240af7b375e352229" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Dani Almaraz", + "email": "dtalmaraz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dani-almaraz/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Pittsburgh"], + "_id": { + "$oid": "666cbc3240af7b375e35222a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Eugene Lee", + "email": "eugleenyc@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Atlanta", "Pittsburgh", "San Diego", "Omaha"], + "_id": { + "$oid": "666cbc3240af7b375e35222b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Nel Malikova", + "email": "gunelmalikova@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gmalikova/", + "campus": "NYC", + "cohort": "10", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Orlando", "Gilbert"], + "_id": { + "$oid": "666cbc3240af7b375e35222c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Hemwatie Persaud", + "email": "hemwatiecodes@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hemwatie/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "Banking", + "cities": ["Reno", "Sydney", "Newark", "Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e35222d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Ian Madden", + "email": "ianfmadden@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ian-madden/", + "campus": "FTRI / CTRI", + "cohort": "7", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Nashville"], + "_id": { + "$oid": "666cbc3240af7b375e35222e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Jae Hyun Ha", + "email": "jaehyunha96@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jae-hyun-ha/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Software Engineer - backend", + "industry": "Fintech", + "cities": ["Columbus", "Baltimore", "Henderson"], + "_id": { + "$oid": "666cbc3240af7b375e35222f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "James Ma", + "email": "jamesma991@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jamesma1199/", + "campus": "FTRI", + "cohort": "7", + "jobTitle": "Senior Associate Software Engineer", + "industry": "Fintech", + "cities": ["Oakland"], + "_id": { + "$oid": "666cbc3240af7b375e352230" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Jennifer Chau", + "email": "jenniferchau512@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jenniferchau512/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Norfolk", "Irving"], + "_id": { + "$oid": "666cbc3240af7b375e352231" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Jin Oh", + "email": "jintoh613@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jintoh613/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Las Vegas", "Tulsa", "Greensboro", "Scottsdale"], + "_id": { + "$oid": "666cbc3240af7b375e352232" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "John Li", + "email": "jli159@binghamton.edu", + "linkedIn": "https://www.linkedin.com/in/john-li7/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Fullstack Engineer", + "industry": "Banking", + "cities": ["Sรฃo Paulo"], + "_id": { + "$oid": "666cbc3240af7b375e352233" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Joseph Amos", + "email": "joeamos17@gmail.com", + "linkedIn": "linkedin.com/in/joe-amos", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Senior Associate Software Engineer", + "industry": "Software / Tech", + "cities": ["Reno", "Paris", "El Paso", "Fort Wayne"], + "_id": { + "$oid": "666cbc3240af7b375e352234" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Johnny Chen", + "email": "johncschen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/johnnycschen/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e352235" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Jonathan Chen", + "email": "jonathanchen832@gmail.com", + "linkedIn": "Https://linkedin.com/in/jonathan-hp-chen", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Full Stack Engineer", + "industry": "Fintech", + "cities": ["Indianapolis", "San Antonio", "Stockton"], + "_id": { + "$oid": "666cbc3240af7b375e352236" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "June Culp", + "email": "juneculp1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/juneculp/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Senior Front End Engineer", + "industry": "Fintech", + "cities": ["Sydney", "Greensboro", "Fort Worth"], + "_id": { + "$oid": "666cbc3240af7b375e352237" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Kristine Aguda", + "email": "kaguda03@gmail.com", + "linkedIn": "https://www.linkedin.com/kristine-aguda", + "campus": "LA", + "cohort": "45", + "jobTitle": "Software Engineer, Full Stack", + "industry": "Fin tech", + "cities": ["Winston-Salem"], + "_id": { + "$oid": "666cbc3240af7b375e352238" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Kasthuri Menon", + "email": "kasthuri.menon1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kasthurimenon/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Senior Software Engineer", + "industry": "Banking/ Fintech", + "cities": ["Denver", "Cleveland", "Raleigh", "Pittsburgh"], + "_id": { + "$oid": "666cbc3240af7b375e352239" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Ken Litton", + "email": "kennethclitton@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ken-litton/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Backend Engineer, Senior Associate", + "industry": "Finance/Banking", + "cities": ["Arlington", "Laredo", "San Antonio"], + "_id": { + "$oid": "666cbc3240af7b375e35223a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Kevin Park-Lee", + "email": "kevin38424@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kevin38424/", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Tulsa", "Irving", "Pittsburgh", "Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e35223b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Kellen Levy", + "email": "Kmalcolmlevy@gmail.com", + "linkedIn": "https://www.linked.com/in/kellenmlevy", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "Senior Associate Software Engineer", + "industry": "Fintech", + "cities": ["Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e35223c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Jason Lin", + "email": "lin.jasonp@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jplin/", + "campus": "FTRI", + "cohort": "7", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Paris", "Bakersfield"], + "_id": { + "$oid": "666cbc3240af7b375e35223d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Luke Cho", + "email": "luke.h.cho@gmail.com", + "linkedIn": "https://www.linkedin.com/in/luke-h-cho/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "Banking", + "cities": ["Columbus", "Madison"], + "_id": { + "$oid": "666cbc3240af7b375e35223e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Philip Kang", + "email": "m.philipkang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/pkmi/", + "campus": "NYC / ECRI", + "cohort": "27", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Albuquerque", "St. Louis", "Houston"], + "_id": { + "$oid": "666cbc3240af7b375e35223f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Matthew Femia", + "email": "mattfemia1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mattfemia/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Virginia Beach"], + "_id": { + "$oid": "666cbc3240af7b375e352240" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "May Li", + "email": "mayleeli1234@gmail.com", + "linkedIn": "https://www.linkedin.com/in/maysli", + "campus": "LA", + "cohort": "44", + "jobTitle": "Fullstack Software Engineer", + "industry": "Fintech", + "cities": ["Chesapeake"], + "_id": { + "$oid": "666cbc3240af7b375e352241" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Matt von der Lippe", + "email": "mvdlippe@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mvdlippe/", + "campus": "FTRI", + "cohort": "3", + "jobTitle": "Senior Associate Software Engineer - Backend", + "industry": "Fintech", + "cities": ["Oklahoma City"], + "_id": { + "$oid": "666cbc3240af7b375e352242" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Nathanael Tracy", + "email": "n.tracy@outlook.com", + "linkedIn": "https://www.linkedin.com/in/nathanael-tracy/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Senior Associate Software Engineer", + "industry": "Finance", + "cities": ["Las Vegas", "Chicago", "Nashville", "Detroit"], + "_id": { + "$oid": "666cbc3240af7b375e352243" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Nathan Yang", + "email": "nathan.yang16@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nathanmyang/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Sr. Associate Software Engineer (Full-Stack)", + "industry": "Business", + "cities": ["Raleigh"], + "_id": { + "$oid": "666cbc3240af7b375e352244" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Nicholas A Gonzalez", + "email": "nicholas.a.gonz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nicholasagonzalez/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Fullstack Engineer", + "industry": "Fintech", + "cities": ["Mesa", "Chicago"], + "_id": { + "$oid": "666cbc3240af7b375e352245" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Patrick Slagle", + "email": "patrickryanslagle@gmail.com", + "linkedIn": "https://www.linkedin.com/in/patrickslagle/", + "campus": "LA", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Chesapeake", "Henderson", "Albuquerque"], + "_id": { + "$oid": "666cbc3240af7b375e352246" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Peter Van", + "email": "peterrvan@gmail.com", + "linkedIn": "https://www.linkedin.com/in/peter-van/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Front End Software Engineer", + "industry": "Financial Services", + "cities": ["Irvine", "Fresno", "Gilbert", "Indianapolis"], + "_id": { + "$oid": "666cbc3240af7b375e352247" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Rachel Patterson", + "email": "racheljpatterson@gmail.com", + "linkedIn": "https://www.linkedin.com/in/racheljpatterson/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Software Engineer, Full Stack", + "industry": "Banking/Fintech", + "cities": ["Anaheim"], + "_id": { + "$oid": "666cbc3240af7b375e352248" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Quentin Rousset", + "email": "roussetquent1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/qrousset/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Sr Software Engineer Back-end", + "industry": "Fintech", + "cities": ["Long Beach", "Chula Vista"], + "_id": { + "$oid": "666cbc3240af7b375e352249" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Ahad Rajput", + "email": "sachem2015@gmail.com", + "linkedIn": "https://www.linkedin.com/in/arajput96/", + "campus": "FTRI", + "cohort": "3", + "jobTitle": "Senior Software Engineer", + "industry": "Finance/Fintech", + "cities": ["Mexico City", "Charlotte", "Honolulu", "Louisville"], + "_id": { + "$oid": "666cbc3240af7b375e35224a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Sam Portelance", + "email": "sportelance1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sportelance/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Senior Associate Fullstack Engineer", + "industry": "Fintech", + "cities": ["Las Vegas", "Fort Worth"], + "_id": { + "$oid": "666cbc3240af7b375e35224b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Stephen Kim", + "email": "stephenkim612@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stephenkim612/", + "campus": "LA", + "cohort": "47", + "jobTitle": "Software Engineer, Fullstack", + "industry": "Finance", + "cities": ["Chicago", "Miami"], + "_id": { + "$oid": "666cbc3240af7b375e35224c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Andrew Talle", + "email": "talle.andrew@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andrewtalle/", + "campus": "FTRI", + "cohort": "6", + "jobTitle": "Backend Software Engineer", + "industry": "Fintech", + "cities": ["Laredo", "Irvine", "Raleigh"], + "_id": { + "$oid": "666cbc3240af7b375e35224d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Terrence Granger", + "email": "Terrence.granger@gmail.com", + "linkedIn": "https://www.linkedin.com/in/terrence-granger/", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Durham"], + "_id": { + "$oid": "666cbc3240af7b375e35224e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Thomas Reeder", + "email": "thomaseugenereeder@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thomas-reeder/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer, Full Stack", + "industry": "Banking", + "cities": ["Saint Paul"], + "_id": { + "$oid": "666cbc3240af7b375e35224f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Trevor Leung", + "email": "trevorleeeung@gmail.com", + "linkedIn": "https://www.linkedin.com/in/trevleung/", + "campus": "LA", + "cohort": "47", + "jobTitle": "Software Engineer, Full Stack", + "industry": "Finance/Banking", + "cities": ["Minneapolis", "Saint Paul"], + "_id": { + "$oid": "666cbc3240af7b375e352250" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Vivian Wu", + "email": "Vivian.wu.here@gmail.com", + "linkedIn": "https://www.linkedin.com/in/viv-wu", + "campus": "LA", + "cohort": "44", + "jobTitle": "Solutions Engineer", + "industry": "Healthcare fintech", + "cities": ["Lubbock", "Colorado Springs", "Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e352251" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Vicki Yang", + "email": "vwyangdev@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vwyang/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Senior Software Engineer", + "industry": "Financial Services", + "cities": ["Stockton", "Charlotte", "Reno"], + "_id": { + "$oid": "666cbc3240af7b375e352252" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Walker Marsh", + "email": "walkermarsh9@gmail.com", + "linkedIn": "https://www.linkedin.com/in/WalkerVEMarsh/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Software Engineer, Full Stack", + "industry": "Fintech/ Banking", + "cities": ["Omaha", "Toledo", "Gilbert", "Austin"], + "_id": { + "$oid": "666cbc3240af7b375e352253" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Kevin Richardson", + "email": "kevin@karcodes.com", + "linkedIn": "https://www.linkedin.com/in/kevinalexrichardson/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Senior Software Engineer", + "industry": "Other", + "cities": ["Cincinnati", "Jersey City"], + "_id": { + "$oid": "666cbc3240af7b375e352254" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Michael Benliyan", + "email": "michaelbenliyan@gmail.com", + "linkedIn": "michaelbenliyan", + "campus": "LA / WCRI", + "cohort": "55", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Anchorage", "El Paso"], + "_id": { + "$oid": "666cbc3240af7b375e352255" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Nathan Cho", + "email": "nathan.y.cho@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nathanycho", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Tampa"], + "_id": { + "$oid": "666cbc3240af7b375e352256" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Martin Ng", + "email": "kamartinng@gmail.com", + "linkedIn": "https://www.linkedin.com/in/martinngsf/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Fintech", + "cities": ["Phoenix"], + "_id": { + "$oid": "666cbc3240af7b375e352257" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Honghao sun", + "email": "sunhonghaoshh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/honghaosunmichael/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Senior Fullstack Engineer", + "industry": "Fintech", + "cities": ["Irving", "Oklahoma City", "Madison"], + "_id": { + "$oid": "666cbc3240af7b375e352258" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital One Bank", + "name": "Donald Cross", + "email": "derekcrosslu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/crossderek/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Front End Engineer", + "industry": "Finance", + "cities": ["Austin", "Washington", "Mesa", "Wichita"], + "_id": { + "$oid": "666cbc3240af7b375e352259" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital Rx", + "name": "Htin Linn Aung", + "email": "htinlinnag1993@gmail.com", + "linkedIn": "https://www.linkedin.com/in/htinlinnaung/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Senior Fullstack Software Engineer", + "industry": "Healthcare Tech", + "cities": ["Fort Wayne"], + "_id": { + "$oid": "666cbc3240af7b375e35225a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Capital Rx", + "name": "Jin Qin", + "email": "jxq32@case.edu", + "linkedIn": "https://www.linkedin.com/in/jcqin/", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "Senior Fullstack Developer", + "industry": "Health Care", + "cities": ["Toledo", "Los Angeles", "Austin", "Bakersfield"], + "_id": { + "$oid": "666cbc3240af7b375e35225b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Caraway Health", + "name": "Gwendolyn (Gwen) Phillips", + "email": "gwen.phil@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gwen-phillips/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Full Stack Engineer", + "industry": "Healthcare", + "cities": ["Philadelphia", "San Antonio", "Tulsa"], + "_id": { + "$oid": "666cbc3240af7b375e35225c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Carbon Mapper", + "name": "Zach Franz", + "email": "zachafranz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/zacharyfranz/", + "campus": "NYC", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "Research", + "cities": ["Laredo", "Colorado Springs"], + "_id": { + "$oid": "666cbc3240af7b375e35225d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Care/of", + "name": "Jake Pino", + "email": "Jakepino@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/jake-pino", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Senior Software Engineer", + "industry": "Wellness", + "cities": ["Orlando", "Mexico City", "Gilbert"], + "_id": { + "$oid": "666cbc3240af7b375e35225e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Care/of", + "name": "Malika Butler", + "email": "missemmbutler@gmail.com", + "linkedIn": "https://www.linkedin.com/in/malikabutler", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Health tech", + "cities": ["Sydney"], + "_id": { + "$oid": "666cbc3240af7b375e35225f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "CareDox", + "name": "Christine Choi", + "email": "christine.yj.choi@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christineyjchoi/", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Retail", + "cities": ["Garland", "Tucson", "Reno", "Milwaukee"], + "_id": { + "$oid": "666cbc3240af7b375e352260" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Carrot Fertility", + "name": "Heather Barney", + "email": "heather.barney@gmail.com", + "linkedIn": "https://www.linkedin.com/in/heather-barney1/", + "campus": "PTRI", + "cohort": "4", + "jobTitle": "Associate Software Engineer", + "industry": "Insurance", + "cities": ["Aurora", "Kansas City"], + "_id": { + "$oid": "666cbc3240af7b375e352261" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Cassian Solutions, Inc.", + "name": "Darin Ngau", + "email": "darin.ngau@gmail.com", + "linkedIn": "https://www.linkedin.com/in/darin-ngau/", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Virginia Beach"], + "_id": { + "$oid": "666cbc3240af7b375e352262" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Cast & Crew", + "name": "Tianhao Yao", + "email": "mapleseventh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tianhao-yao-2021826a/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "Entertainment", + "cities": ["Reno"], + "_id": { + "$oid": "666cbc3240af7b375e352263" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "cast and crew", + "name": "Sam Selfridge", + "email": "sirclesam@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/sam-selfridge/", + "campus": "LA", + "cohort": "28", + "jobTitle": "software engineer", + "industry": "fintech/entertainment", + "cities": ["Lubbock", "St. Petersburg", "Beijing"], + "_id": { + "$oid": "666cbc3240af7b375e352264" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Cast.app", + "name": "Robert Maeda", + "email": "rob.maeda3@gmail.com", + "linkedIn": "https://www.linkedin.com/in/robert-maeda/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Denver", "El Paso"], + "_id": { + "$oid": "666cbc3240af7b375e352265" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Catchpoint", + "name": "Neyser Zana", + "email": "neyserj.zana@gmail.com", + "linkedIn": "https://www.linkedin.com/in/neyser-zana-860018152/", + "campus": "NYC", + "cohort": "7", + "jobTitle": "Software Engineer II", + "industry": "Advertising", + "cities": ["Honolulu", "Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e352266" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Causebox", + "name": "Grace Kim", + "email": "gracekiim@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gracekiim/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Engineer", + "industry": "Consumer products", + "cities": ["San Jose", "Philadelphia"], + "_id": { + "$oid": "666cbc3240af7b375e352267" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "CB Insights", + "name": "Hazel Na", + "email": "hazel.na3@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hyeseon-na", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Software Engineer III - Frontend", + "industry": "business analytics platform", + "cities": ["Orlando"], + "_id": { + "$oid": "666cbc3240af7b375e352268" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "CBTS - CVS", + "name": "Chang Shuen Lee", + "email": "changshuen.lee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/daveelee/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Frontend Software Engineer", + "industry": "Health", + "cities": ["Tampa", "Lincoln"], + "_id": { + "$oid": "666cbc3240af7b375e352269" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Cecelia Health", + "name": "Kwadwo Asamoah", + "email": "addoasa94@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kwadwoasamoah", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Front End Engineer", + "industry": "Health", + "cities": ["Portland"], + "_id": { + "$oid": "666cbc3240af7b375e35226a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Cedars-Sinai Cancer", + "name": "William Chu", + "email": "Williamchu9@gmail.com", + "linkedIn": "https://www.linkedin.com/in/williamchu9/", + "campus": "LA", + "cohort": "49", + "jobTitle": "Software Engineer/Programming Analyst", + "industry": "Healthcare", + "cities": ["Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e35226b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Cenith Innovations", + "name": "Serena Amos", + "email": "amos.serena17@gmail.com", + "linkedIn": "https://www.linkedin.com/in/serena-amos/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Software Engineer", + "industry": "Aerospace", + "cities": ["Memphis", "Wichita", "San Francisco", "St. Petersburg"], + "_id": { + "$oid": "666cbc3240af7b375e35226c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Centene", + "name": "Serena Romano", + "email": "serenahromano2000@gmail.com", + "linkedIn": "https://www.linkedin.com/in/srom1/", + "campus": "NYC / ECRI", + "cohort": "41", + "jobTitle": "Full Stack Developer", + "industry": "Healthtech/Healthcare", + "cities": ["Gilbert"], + "_id": { + "$oid": "666cbc3240af7b375e35226d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Cequint", + "name": "Carol Xia", + "email": "c.xia.98@gmail.com", + "linkedIn": "linkedin.com/in/carolxia2", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Software Development Engineer", + "industry": "Telecommunications", + "cities": ["Chandler", "Virginia Beach", "New York"], + "_id": { + "$oid": "666cbc3240af7b375e35226e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Cerebral", + "name": "Irine Kang", + "email": "irine.kang@codesmith.io", + "linkedIn": "https://www.linkedin.com/in/irinekang/", + "campus": "FTRI", + "cohort": "6", + "jobTitle": "Full Stack Engineer II", + "industry": "Medicine", + "cities": ["Oakland", "Saint Paul"], + "_id": { + "$oid": "666cbc3240af7b375e35226f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "CH Robinson", + "name": "Joseph Cheng", + "email": "josephcheng.y@gmail.com", + "linkedIn": "https://www.linkedin.com/in/josephcheng-y/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Engineer", + "industry": "Logistic", + "cities": ["Sรฃo Paulo", "Anchorage", "Riverside", "Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e352270" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Chainalysis", + "name": "Natalia Vargas-Caba", + "email": "nvargas@gm.slc.edu", + "linkedIn": "https://www.linkedin.com/in/nataliavargascaba", + "campus": "NYC", + "cohort": "17", + "jobTitle": "Technical Writer", + "industry": "Fintech", + "cities": ["Philadelphia"], + "_id": { + "$oid": "666cbc3240af7b375e352271" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Chainguard", + "name": "Felipe Ocampo", + "email": "felipe.aocampo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ocampofelipe/", + "campus": "LA / WCRI", + "cohort": "56", + "jobTitle": "Web Developer", + "industry": "Marketing/Advertising", + "cities": ["Riverside", "Anaheim", "Mesa"], + "_id": { + "$oid": "666cbc3240af7b375e352272" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Chainlink", + "name": "Finley Decker", + "email": "finleydecker@gmail.com", + "linkedIn": "https://www.linkedin.com/in/finleydecker/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Software Engineer", + "industry": "Blockchain/Web3", + "cities": ["Irving", "North Las Vegas", "Glendale", "Plano"], + "_id": { + "$oid": "666cbc3240af7b375e352273" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Change Healthcare", + "name": "Bruce Wong", + "email": "dbrucewong@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dawong/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Senior Software Engineer", + "industry": "Healthcare", + "cities": ["Anchorage"], + "_id": { + "$oid": "666cbc3240af7b375e352274" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Change Healthcare", + "name": "Billy K Lee", + "email": "ucanfindbillie@gmail.com", + "linkedIn": "https://www.linkedin.com/in/billy-k-lee/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Chicago", "Mexico City", "Madison", "Memphis"], + "_id": { + "$oid": "666cbc3240af7b375e352275" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Change Healthcare.", + "name": "Noah Lee", + "email": "no@hlee.me", + "linkedIn": "https://www.linkedin.com/in/justnoah/", + "campus": "LA", + "cohort": "27", + "jobTitle": "Software Engineer.", + "industry": "Healthcare.", + "cities": ["Chicago", "Anchorage", "Irvine", "Lincoln"], + "_id": { + "$oid": "666cbc3240af7b375e352276" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Chargebacks911", + "name": "Chandni Patel", + "email": "chandnip6@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chandnip6/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Houston"], + "_id": { + "$oid": "666cbc3240af7b375e352277" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Chargebee Retention", + "name": "Abhi Krishnan", + "email": "krabhishaken@gmail.com", + "linkedIn": "https://www.linkedin.com/in/krabhishaken/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Senior Software Engineer", + "industry": "Subscription Tech", + "cities": ["Paris", "Detroit", "Kansas City"], + "_id": { + "$oid": "666cbc3240af7b375e352278" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Chariot", + "name": "Weilan Cui", + "email": "weilanc@gmail.com", + "linkedIn": "https://www.linkedin.com/in/weilan-cui", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Founding engineer", + "industry": "Software as a service", + "cities": ["Scottsdale", "Raleigh", "Beijing"], + "_id": { + "$oid": "666cbc3240af7b375e352279" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Charles River", + "name": "Josh Howard", + "email": "JoshHoward.Dev@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joshhowarddev/", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Full Stack Developer", + "industry": "Software / Tech", + "cities": ["Raleigh", "Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e35227a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Charles Schwab", + "name": "Troy Witonsky", + "email": "troywitonsky@gmail.com", + "linkedIn": "https://www.linkedin.com/in/troy-witonsky", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Enterprise Engineer", + "industry": "Fintech", + "cities": ["Lexington", "Buffalo"], + "_id": { + "$oid": "666cbc3240af7b375e35227b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Chattanooga Shooting Supplies", + "name": "Zach Hall", + "email": "zachh85@gmail.com", + "linkedIn": "linkedin.com/in/z-r-hall", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Senior Application Developer", + "industry": "Retail", + "cities": ["North Las Vegas", "Riverside", "Las Vegas", "Jacksonville"], + "_id": { + "$oid": "666cbc3240af7b375e35227c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Cheddar Media", + "name": "David Neuhaus", + "email": "david@neuha.us", + "linkedIn": "https://www.linkedin.com/in/dneuhaus/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Sr Software Engineer", + "industry": "Media / News", + "cities": ["Reno", "Arlington", "Fresno", "Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e35227d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Chegg, Inc", + "name": "Kate Matthews", + "email": "katesmatthews@gmail.com", + "linkedIn": "https://www.linkedin.com/in/katesmatthews/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Software Engineer", + "industry": "EdTech", + "cities": ["Gilbert", "Honolulu", "Madison"], + "_id": { + "$oid": "666cbc3240af7b375e35227e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Chewy", + "name": "Lucy Chi", + "email": "lucycchi@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chilucy/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Tech Consulting, Client is in HealthTech", + "cities": ["Sydney"], + "_id": { + "$oid": "666cbc3240af7b375e35227f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Chewy", + "name": "Joseph Nagy", + "email": "nagyjoseph29@gmail.com", + "linkedIn": "https://www.linkedin.com/in/josephmnagy/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "E-commerce", + "cities": ["Memphis", "Omaha", "Honolulu", "San Jose"], + "_id": { + "$oid": "666cbc3240af7b375e352280" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Chief", + "name": "Tim Ruszala", + "email": "truszala@gmail.com", + "linkedIn": "https://www.linkedin.com/in/timruszala/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Fullstack Software Engineer", + "industry": "Other", + "cities": ["Boston", "Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e352281" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Chipper Cash", + "name": "Sean Lee", + "email": "lee.sw.sean@gmail.com", + "linkedIn": "https://www.linkedin.com/in/seanleesw", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Honolulu", "Irvine", "Laredo", "Toledo"], + "_id": { + "$oid": "666cbc3240af7b375e352282" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Choose Ketamine", + "name": "Eric Komatsu", + "email": "eric@cpgexperience.com", + "linkedIn": "https://www.linkedin.com/in/eric-komatsu/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Lead Engineer", + "industry": "Healthcare", + "cities": ["Chesapeake", "London"], + "_id": { + "$oid": "666cbc3240af7b375e352283" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Chopra Global", + "name": "Jonathon Gonzalez", + "email": "gonzalezjonathon55@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonathon-gonzalez/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Backend Engineer", + "industry": "Health & Wellness", + "cities": ["Norfolk", "Toronto", "Chula Vista", "Beijing"], + "_id": { + "$oid": "666cbc3240af7b375e352284" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Chopra Global", + "name": "Josh Naso", + "email": "jnaso29@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joshnaso/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Web Developer", + "industry": "Meditation/self-care", + "cities": ["Honolulu", "Henderson"], + "_id": { + "$oid": "666cbc3240af7b375e352285" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "ChromaCode", + "name": "Edwin Menendez", + "email": "edwinjmenendez@gmail.com", + "linkedIn": "https://www.linkedin.com/in/edwinmenendez/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Bio-Tech", + "cities": ["San Antonio", "Paris", "Mumbai"], + "_id": { + "$oid": "666cbc3240af7b375e352286" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Chubb insurance", + "name": "Robert Hernandez", + "email": "Rob23Hernandez@gmail.com", + "linkedIn": "https://www.linkedin.com/in/robhernandeznyc/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["Jacksonville", "Portland", "Bakersfield", "Long Beach"], + "_id": { + "$oid": "666cbc3240af7b375e352287" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "Cigna", + "name": "JC Fernandez", + "email": "jorgecarlosfern@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jorge-carlos-fernandez/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Full Stack Engineer", + "industry": "Health Care", + "cities": ["Oakland", "Albuquerque", "Berlin", "Corpus Christi"], + "_id": { + "$oid": "666cbc3240af7b375e352288" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "CIMx", + "name": "Christian Springer", + "email": "christian@christianspringer.com", + "linkedIn": "https://www.linkedin.com/in/christian-springer0/", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Fort Worth", "Boston", "Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e352289" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "CircleCI", + "name": "Ai Mi Bui", + "email": "Aimibui22@gmail.com", + "linkedIn": "https://www.linkedin.com/in/aimibui/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "Software", + "cities": ["Toledo", "Gilbert"], + "_id": { + "$oid": "666cbc3240af7b375e35228a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "CircleCI", + "name": "Jeff Chen", + "email": "contact.jeffchen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jalexchen/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Development Engineer", + "industry": "Tech", + "cities": ["Lubbock", "Buffalo", "Tucson", "Detroit"], + "_id": { + "$oid": "666cbc3240af7b375e35228b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "CircleCI", + "name": "Tony Shen", + "email": "tshen815@live.com", + "linkedIn": "https://www.linkedin.com/in/tonyShen815/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Software Engineer", + "industry": "Computer Software/Tech", + "cities": ["Oakland", "Toledo", "New Orleans"], + "_id": { + "$oid": "666cbc3240af7b375e35228c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.244Z" + }, + "__v": 0 + }, + { + "company": "CircleCI", + "name": "Tyler Sullberg", + "email": "tysullberg@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tyler-sullberg/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Dev Ops", + "cities": ["Milwaukee", "Wichita", "Winston-Salem"], + "_id": { + "$oid": "666cbc3240af7b375e35228d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Cisco", + "name": "Laura Llano", + "email": "ldllano@gmail.com", + "linkedIn": "https://www.linkedin.com/in/laura-llano", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Software Engineering", + "industry": "Software / Tech", + "cities": ["Oakland", "Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e35228e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Cisco Systems, Inc.", + "name": "Egon Levy", + "email": "egonlevy@gmail.com", + "linkedIn": "https://www.linkedin.com/in/egon-levy-8b62aa1b0/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Senior Software Engineer", + "industry": "Computer Engineering", + "cities": ["Memphis", "Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e35228f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Citi", + "name": "Max Heubel", + "email": "maxhuebel@gmail.com", + "linkedIn": "https://www.linkedin.com/in/max-heubel/", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Sr. Programmer Analyst", + "industry": "Fintech", + "cities": ["Greensboro"], + "_id": { + "$oid": "666cbc3240af7b375e352290" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Citi (Citicorp Credit Services, Inc.)", + "name": "Reland Boyle", + "email": "reland.boyle@gmail.com", + "linkedIn": "https://www.linkedin.com/in/relandboyle/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Digital Software Engineer / Senior Analyst - C12, Assistant Vice President of Matrix Reportingโ€‹", + "industry": "Fintech", + "cities": ["San Jose"], + "_id": { + "$oid": "666cbc3240af7b375e352291" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Cityblock", + "name": "Oluwajomiloju Olaode", + "email": "jojuolaode@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jojuolaode/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Senior Software Engineer", + "industry": "Healthcare", + "cities": ["St. Louis", "Dallas", "Winston-Salem", "Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e352292" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Civera", + "name": "Hank McGill", + "email": "henrymcgill@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hank-mcgill/", + "campus": "NYOI", + "cohort": "4", + "jobTitle": "Data Engineering Fellow", + "industry": "Government", + "cities": ["Garland", "Raleigh", "Phoenix"], + "_id": { + "$oid": "666cbc3240af7b375e352293" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "CivilGrid", + "name": "Jack Moorman", + "email": "johnmoormaniii@gmail.com", + "linkedIn": "www.linkedin.com/in/jack-moorman", + "campus": "FTRI / CTRI", + "cohort": "14", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Honolulu"], + "_id": { + "$oid": "666cbc3240af7b375e352294" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Classy", + "name": "Kim Spicer", + "email": "Kspicerny@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kimberleyspicer/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer", + "industry": "Software", + "cities": ["Fresno", "Houston"], + "_id": { + "$oid": "666cbc3240af7b375e352295" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Clear", + "name": "Nate Adams", + "email": "NathanielBAdams@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adamsnathaniel/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Software Engineer", + "industry": "Biometrics / Security services", + "cities": ["Mexico City", "Colorado Springs", "Honolulu"], + "_id": { + "$oid": "666cbc3240af7b375e352296" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Clear Capital", + "name": "Sean Haverstock", + "email": "seanhaverstock@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sean-haverstock/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Associate Software Engineer", + "industry": "Fintech, Real Estate", + "cities": ["Oklahoma City", "Philadelphia", "El Paso", "Plano"], + "_id": { + "$oid": "666cbc3240af7b375e352297" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Clevyr", + "name": "Michael Watson", + "email": "mdwatson988@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mdwatson988/", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Jr. Software Developer", + "industry": "Software / Tech", + "cities": ["El Paso", "Minneapolis", "Fort Wayne", "Madison"], + "_id": { + "$oid": "666cbc3240af7b375e352298" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Clicktripz", + "name": "Bryan Bart", + "email": "bart.bryan.e@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bryan-bart/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Software Engineer", + "industry": "Travel Technology", + "cities": ["Dallas", "Toledo", "Lexington", "Norfolk"], + "_id": { + "$oid": "666cbc3240af7b375e352299" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Clover", + "name": "Michael Trapani", + "email": "mtrapani27@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael-a-trapani/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Web Software Engineer", + "industry": "Software / Tech", + "cities": ["Tulsa", "Saint Paul", "San Jose", "Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e35229a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "ClubLabs", + "name": "Natlyn Phomsavanh", + "email": "natlynp@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "Insurance/Travel", + "cities": ["Wichita", "Berlin", "Norfolk", "Reno"], + "_id": { + "$oid": "666cbc3240af7b375e35229b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "ClubLabs", + "name": "Talya Sasek", + "email": "talyaercag@gmail.com", + "linkedIn": "https://www.linkedin.com/in/talyasasek/", + "campus": "LA", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["Riverside", "Toledo", "Houston"], + "_id": { + "$oid": "666cbc3240af7b375e35229c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "CoachEm", + "name": "Matthew Garza", + "email": "mattg614@gmail.com", + "linkedIn": "https://www.linkedin.com/in/garzamatte/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Full Stack Software Engineer", + "industry": "Software / Tech", + "cities": ["Chesapeake", "Cincinnati", "Stockton", "El Paso"], + "_id": { + "$oid": "666cbc3240af7b375e35229d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Coates Group", + "name": "Paul Kim", + "email": "paulkim0209@gmail.com", + "linkedIn": "https://www.linkedin.com/in/paul-kim-37735b217", + "campus": "NYC / ECRI", + "cohort": "41", + "jobTitle": "Backend Engineer", + "industry": "Business Tech/Enterprise Tech", + "cities": ["Colorado Springs", "Tokyo", "Cleveland", "Miami"], + "_id": { + "$oid": "666cbc3240af7b375e35229e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Cobalt.io", + "name": "Karl Richards", + "email": "krichards175@gmail.com", + "linkedIn": "https://www.linkedin.com/in/krichards175/", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Data Engineer", + "industry": "Security", + "cities": ["Toronto", "Paris", "Henderson", "Virginia Beach"], + "_id": { + "$oid": "666cbc3240af7b375e35229f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Cobble", + "name": "Matt Peters", + "email": "matt@mpeters.io", + "linkedIn": "https://www.linkedin.com/in/mattgpeters", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Frontend Engineer", + "industry": "Leisure, Travel & Tourism", + "cities": ["Chesapeake", "Corpus Christi", "Austin"], + "_id": { + "$oid": "666cbc3240af7b375e3522a0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Code Climate", + "name": "Margaret Ma", + "email": "margaretma00@gmail.com", + "linkedIn": "https://www.linkedin.com/in/margaret-ma/", + "campus": "NYC", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Denver", "Greensboro", "Chandler", "Honolulu"], + "_id": { + "$oid": "666cbc3240af7b375e3522a1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Coder", + "name": "Michael Smith", + "email": "throwawayclover@gmail.com", + "linkedIn": "www.linkedin.com/in/michael-eric-smith", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Software Engineer", + "industry": "Software Solutions/Developer Tools", + "cities": ["Denver", "Irvine", "Louisville", "St. Petersburg"], + "_id": { + "$oid": "666cbc3240af7b375e3522a2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Codesmith", + "name": "Terry L. Tilley", + "email": "terryltilley@gmail.com", + "linkedIn": "https://www.linkedin.com/in/t-l-tilley/", + "campus": "LA", + "cohort": "44", + "jobTitle": "Instruction Training Manager", + "industry": "Software/Tech", + "cities": ["Scottsdale", "Louisville", "Charlotte"], + "_id": { + "$oid": "666cbc3240af7b375e3522a3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Cofebe", + "name": "Seong Choi", + "email": "choies921003@gmail.com", + "linkedIn": "https://www.linkedin.com/in/seongchoi/", + "campus": "LA", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Computer Software", + "cities": ["Dallas", "Jersey City", "San Antonio"], + "_id": { + "$oid": "666cbc3240af7b375e3522a4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Cognizant", + "name": "Scott Burman", + "email": "Scottburs@gmail.com", + "linkedIn": "https://www.linkedin.com/in/scottburman847/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Senior Developer", + "industry": "Technology", + "cities": ["Los Angeles", "Fort Wayne"], + "_id": { + "$oid": "666cbc3240af7b375e3522a5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Cohere AI", + "name": "Zahara Aviv", + "email": "zahara.aviv@gmail.com", + "linkedIn": "https://linkedIn.com/in/zahara-aviv", + "campus": "NYC / ECRI", + "cohort": "38", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Artificial Intelligence", + "cities": ["Tucson", "Jacksonville", "Chesapeake", "Raleigh"], + "_id": { + "$oid": "666cbc3240af7b375e3522a6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "CoinCircle", + "name": "Andrew Fuselier", + "email": "theandewlarry@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andrewfuselier/", + "campus": "LA", + "cohort": "19", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["San Antonio", "Charlotte", "Colorado Springs"], + "_id": { + "$oid": "666cbc3240af7b375e3522a7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Collective Health", + "name": "Daryl Foster", + "email": "dmafoster@gmail.com", + "linkedIn": "https://www.linkedin.com/in/darylfosterma/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Senior Frontend Engineer", + "industry": "Health Tech (Healthplan Administration for 1000 plus employee companies)", + "cities": ["Memphis", "Chesapeake", "Los Angeles"], + "_id": { + "$oid": "666cbc3240af7b375e3522a8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Colliers - Contract position through Hays", + "name": "Pauline Nguyen", + "email": "Paulinekpn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/paulineknguyen/", + "campus": "LA / WCRI", + "cohort": "55", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Riverside", "Tokyo", "Mumbai"], + "_id": { + "$oid": "666cbc3240af7b375e3522a9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Comcast", + "name": "Brian Chiang", + "email": "brianchiang2008@gmail.com", + "linkedIn": "linkedin.com/in/brian-chiang4", + "campus": "LA / WCRI", + "cohort": "48", + "jobTitle": "Software Engineer", + "industry": "Media", + "cities": ["Louisville"], + "_id": { + "$oid": "666cbc3240af7b375e3522aa" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Comcast", + "name": "Darwin Sinchi", + "email": "dsinchi19@gmail.com", + "linkedIn": "https://www.linkedin.com/in/darwin-m-sinchi/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer", + "industry": "TeleCom", + "cities": ["Minneapolis"], + "_id": { + "$oid": "666cbc3240af7b375e3522ab" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Comcast", + "name": "Matthew Francis", + "email": "mbfrancis7@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mbfrancis7/", + "campus": "NYC", + "cohort": "7", + "jobTitle": "Software Developer", + "industry": "", + "cities": ["Gilbert", "Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e3522ac" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Comcast", + "name": "Yong-Nicholas Alexander Kim", + "email": "yongnicholaskim@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yongnicholaskim/", + "campus": "NYC", + "cohort": "7", + "jobTitle": "Node.js Engineer", + "industry": "Commercial Services", + "cities": ["San Antonio", "Cincinnati", "Scottsdale"], + "_id": { + "$oid": "666cbc3240af7b375e3522ad" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "CommonBond", + "name": "Nathan Bargers", + "email": "nbargers@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nathan-bargers/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Finance", + "cities": ["Tulsa", "El Paso"], + "_id": { + "$oid": "666cbc3240af7b375e3522ae" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Community Attributes Inc", + "name": "Carter Long", + "email": "crlong7@gmail.com", + "linkedIn": "https://www.linkedin.com/in/carterrobertlong/", + "campus": "FTRI / CTRI", + "cohort": "15", + "jobTitle": "Full Stack Developer", + "industry": "Consulting", + "cities": ["Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e3522af" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Compass", + "name": "Casey Walker", + "email": "casey.e.walker@gmail.com", + "linkedIn": "https://www.linkedin.com/in/caseyewalker", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer II", + "industry": "Real Estate", + "cities": ["St. Petersburg"], + "_id": { + "$oid": "666cbc3240af7b375e3522b0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Compass", + "name": "Liam McBride", + "email": "liameno16@gmail.com", + "linkedIn": "https://www.linkedin.com/in/liamemcbride/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Chula Vista", "New Orleans"], + "_id": { + "$oid": "666cbc3240af7b375e3522b1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Compass", + "name": "Sierra Swaby", + "email": "Sierra.swaby@gmail.com", + "linkedIn": "https://www.linkedin.com/in/Sierra-swaby", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Creative Developer", + "industry": "Real Estate", + "cities": ["Mumbai"], + "_id": { + "$oid": "666cbc3240af7b375e3522b2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Compliancy Group", + "name": "Bruno Albero", + "email": "alberobruno@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alberobruno/", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Saint Paul"], + "_id": { + "$oid": "666cbc3240af7b375e3522b3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Conagra Brands", + "name": "Scott Hallock", + "email": "scott.hallock@gmail.com", + "linkedIn": "https://www.linkedin.com/in/scottjhallock", + "campus": "FTRI / CTRI", + "cohort": "16", + "jobTitle": "Senior Software Engineer", + "industry": "Food/Beverage/Restaurant", + "cities": ["New York"], + "_id": { + "$oid": "666cbc3240af7b375e3522b4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Concert Health", + "name": "Raubern Totanes", + "email": "rstotanes@g.ucla.edu", + "linkedIn": "https://www.linkedin.com/in/rauberntotanes/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Software Development Engineer", + "industry": "Health Tech", + "cities": ["Aurora", "Lubbock", "Washington"], + "_id": { + "$oid": "666cbc3240af7b375e3522b5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Contracting for Perspecta Labs via Roc Search via Precision Global Consulting", + "name": "Ben Mizel", + "email": "ben.mizel@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ben-mizel/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Back End Software Engineer", + "industry": "Defense", + "cities": ["Wichita", "Winston-Salem", "Lubbock"], + "_id": { + "$oid": "666cbc3240af7b375e3522b6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Core Business Technology", + "name": "Jason Hwang", + "email": "hwangja1019@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jason-jh-hwang/", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Associate Engineer", + "industry": "Fintech", + "cities": ["Riverside", "Cleveland", "Scottsdale", "Albuquerque"], + "_id": { + "$oid": "666cbc3240af7b375e3522b7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Core Digital Media", + "name": "Edward Greenberg", + "email": "ed.w.greenberg@gmail.com", + "linkedIn": "https://www.linkedin.com/in/edwgreenberg/", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Senior Web Developer", + "industry": "Software", + "cities": ["Reno", "St. Petersburg", "Newark"], + "_id": { + "$oid": "666cbc3240af7b375e3522b8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Cosm", + "name": "Shana Hoehn", + "email": "Shanahoehn@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer", + "industry": "Entertainment technology", + "cities": ["Jersey City"], + "_id": { + "$oid": "666cbc3240af7b375e3522b9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Costa Farms LLC", + "name": "Ernesto Gonzalez", + "email": "egonzalez442@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ernesto-gonzalez123", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "Agriculture Science", + "cities": ["Greensboro", "Washington", "Chula Vista"], + "_id": { + "$oid": "666cbc3240af7b375e3522ba" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "CoStar", + "name": "Prasad Pulaguntla", + "email": "prasad.pul@gmail.com", + "linkedIn": "https://www.linkedin.com/in/prasad-pulaguntla/", + "campus": "FTRI", + "cohort": "2", + "jobTitle": "Lead Software Engineer", + "industry": "Commercial Real Estate", + "cities": ["Chula Vista", "Laredo"], + "_id": { + "$oid": "666cbc3240af7b375e3522bb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "CoStar Group", + "name": "Alan Richardson", + "email": "alanrichardson723@gmail.com", + "linkedIn": "", + "campus": "NYC / ECRI", + "cohort": "29", + "jobTitle": "Associate Software Engineer", + "industry": "Real Estate", + "cities": ["Phoenix", "Toledo"], + "_id": { + "$oid": "666cbc3240af7b375e3522bc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "CoStar Group", + "name": "Julian Kang", + "email": "julianswkang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/julianswkang", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Software Engineer II", + "industry": "Real Estate", + "cities": ["Chesapeake", "Cincinnati", "Plano"], + "_id": { + "$oid": "666cbc3240af7b375e3522bd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "CoStar Group", + "name": "Kevin Berlanga", + "email": "kvnberlanga@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kevinberlanga/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Software Engineer II", + "industry": "Real Estate", + "cities": ["St. Louis"], + "_id": { + "$oid": "666cbc3240af7b375e3522be" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "CoStar Group", + "name": "Ruzeb Chowdhury", + "email": "ruzeb1996@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ruzebchowdhury/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Frontend Engineer", + "industry": "Commercial Real Estate", + "cities": ["Henderson"], + "_id": { + "$oid": "666cbc3240af7b375e3522bf" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Coursetune", + "name": "John Maltese", + "email": "john.maltese@gmail.com", + "linkedIn": "https://www.linkedin.com/in/john-maltese/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Senior Software Engineer/Web App Architect", + "industry": "Software / Tech", + "cities": ["Corpus Christi", "Fort Worth", "Paris", "Fort Wayne"], + "_id": { + "$oid": "666cbc3240af7b375e3522c0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Courted", + "name": "Sett Hein", + "email": "settnaing199@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sett-hein/", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Jersey City"], + "_id": { + "$oid": "666cbc3240af7b375e3522c1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Cox Automotive", + "name": "Tarik Mokhtech", + "email": "tarik.mokhtech@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tarik-mokhtech/", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Software Engineer II", + "industry": "Automotive", + "cities": ["Riverside", "Newark", "Reno"], + "_id": { + "$oid": "666cbc3240af7b375e3522c2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Cox Automotive", + "name": "Tarik Mokhtech", + "email": "tarik.mokhtech@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tarik-mokhtech/", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Software Engineer II", + "industry": "Automotive", + "cities": ["Chicago", "Sacramento", "Wichita", "Fresno"], + "_id": { + "$oid": "666cbc3240af7b375e3522c3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Credera", + "name": "Nisa Lintakoon", + "email": "nisa.lintakoon@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nisalintakoon", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "Technology Solutions Consultant", + "industry": "Consulting", + "cities": ["Austin", "Aurora"], + "_id": { + "$oid": "666cbc3240af7b375e3522c4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Crescita", + "name": "Gordon Campbell", + "email": "gordonspencer.c@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Software Engineer", + "industry": "VC", + "cities": ["Saint Paul", "Los Angeles"], + "_id": { + "$oid": "666cbc3240af7b375e3522c5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Cricket Health", + "name": "Lina Shin", + "email": "rxlina01@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rxlina/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Fullstack Software Engineer", + "industry": "Healthcare", + "cities": ["Irving"], + "_id": { + "$oid": "666cbc3240af7b375e3522c6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Crisis Text Line", + "name": "Chan Choi", + "email": "chanychoi93@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chan-choi/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Software Engineer", + "industry": "Mental Health Services", + "cities": ["Plano", "Mumbai", "Scottsdale"], + "_id": { + "$oid": "666cbc3240af7b375e3522c7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Crocs", + "name": "Mark Charles Smith", + "email": "markcharlessmith@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mark-charles-smith/", + "campus": "NYC / ECRI", + "cohort": "31", + "jobTitle": "Senior React Developer", + "industry": "Consumer Goods: Fashion", + "cities": ["Santa Ana", "London", "Fresno"], + "_id": { + "$oid": "666cbc3240af7b375e3522c8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Crossbeam", + "name": "Harrison Cramer", + "email": "Harrisoncramer@gmail.com", + "linkedIn": "https://www.linkedin.com/in/harrison-cramer", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Software engineer", + "industry": "SaaS", + "cities": ["Tokyo", "Virginia Beach", "Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e3522c9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Crossbeam", + "name": "Aryeh Kobrinsky", + "email": "shmaryeh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/aryehkobrinsky/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer", + "industry": "Data Analytics", + "cities": ["Miami", "Milwaukee", "Orlando", "San Francisco"], + "_id": { + "$oid": "666cbc3240af7b375e3522ca" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Crossover Health", + "name": "Heather Friedman", + "email": "hfried25@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hgfriedman/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Senior Software Engineer", + "industry": "Health", + "cities": ["Aurora"], + "_id": { + "$oid": "666cbc3240af7b375e3522cb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Crossover Health", + "name": "Taylor Riley Du", + "email": "taylor.r.du@gmail.com", + "linkedIn": "https://www.linkedin.com/in/taylordu/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Los Angeles", "Columbus", "Omaha", "San Francisco"], + "_id": { + "$oid": "666cbc3240af7b375e3522cc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Crowdstrike", + "name": "yi bo (eddie) wang", + "email": "eddiewang12345@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eddie-wang2/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Software Developer", + "industry": "Cybersecurity", + "cities": ["Washington", "Miami", "Durham"], + "_id": { + "$oid": "666cbc3240af7b375e3522cd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Crowley", + "name": "Alina Gasperino", + "email": "alina.gasperino@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alinagasperino/", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Software Engineer III", + "industry": "Other", + "cities": ["Irvine", "Chicago"], + "_id": { + "$oid": "666cbc3240af7b375e3522ce" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Crown Sterling", + "name": "Shirin Davis", + "email": "Shirinlittle94@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software engineer", + "industry": "Cryptography", + "cities": ["Glendale", "Mumbai"], + "_id": { + "$oid": "666cbc3240af7b375e3522cf" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "CrunchyBananas", + "name": "Corey Morrison", + "email": "corey.neil.morrison@gmail.com", + "linkedIn": "https://www.linkedin.com/in/corey-morrison", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Consulting", + "cities": ["Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e3522d0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Crunchyroll", + "name": "Brit Lim", + "email": "britsta92@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brit-lim/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Full Stack Software Engineer", + "industry": "Entertainment", + "cities": ["Stockton"], + "_id": { + "$oid": "666cbc3240af7b375e3522d1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "CSI Interfusion", + "name": "Snow Bai", + "email": "xueapp@gmail.com", + "linkedIn": "https://www.linkedin.com/in/xuebaiprofile/", + "campus": "LA / WCRI", + "cohort": "55", + "jobTitle": "Fullstack Engineer", + "industry": "Software / Tech", + "cities": ["Lexington", "Garland", "Chesapeake"], + "_id": { + "$oid": "666cbc3240af7b375e3522d2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Culture Biosciences", + "name": "Savitri Beaver", + "email": "savitribeaver@gmail.com", + "linkedIn": "https://www.linkedin.com/in/savitribeaver", + "campus": "FTRI", + "cohort": "3", + "jobTitle": "Software Engineer I", + "industry": "Biotech", + "cities": ["Colorado Springs", "Long Beach", "Pittsburgh"], + "_id": { + "$oid": "666cbc3240af7b375e3522d3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Curia.ai", + "name": "Young Min Lee", + "email": "youngmineeh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/youngminlee-/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Senior Software Engineer", + "industry": "Healthcare, AI", + "cities": ["Sydney", "Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e3522d4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Currency", + "name": "Jason Wong", + "email": "jwaosnogn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jwong1995/", + "campus": "LA", + "cohort": "25", + "jobTitle": "Full Stack Developer", + "industry": "", + "cities": ["London", "Denver"], + "_id": { + "$oid": "666cbc3240af7b375e3522d5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Cutover", + "name": "Paul Rhee", + "email": "youjun27@gmail.com", + "linkedIn": "https://www.linkedin.com/in/prheee", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Colorado Springs", "Newark", "Garland"], + "_id": { + "$oid": "666cbc3240af7b375e3522d6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "CVS", + "name": "Mario Eldin", + "email": "marioeldin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/marioeldin/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Software Engineer", + "industry": "Health/Insurance", + "cities": ["New York", "Raleigh", "Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e3522d7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "CVS", + "name": "Vinh Chau", + "email": "vchau511@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vinh-chau/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Software Engineer", + "industry": "Pharmacy", + "cities": ["Fort Wayne"], + "_id": { + "$oid": "666cbc3240af7b375e3522d8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "CVS Health", + "name": "Connor Bovino", + "email": "connor.bovino@gmail.com", + "linkedIn": "https://www.linkedin.com/in/connor-bovino/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Fullstack Node.js Developer (Software Engineer)", + "industry": "Health", + "cities": ["Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e3522d9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "CVS Health", + "name": "Satyam sheth", + "email": "Snsheth55@gmail.com", + "linkedIn": "https://www.linkedin.com/in/satyamsheth55/", + "campus": "NYC", + "cohort": "5", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["St. Petersburg"], + "_id": { + "$oid": "666cbc3240af7b375e3522da" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "CVS Health", + "name": "Windu Sayles", + "email": "Windu.Sayles@gmail.com", + "linkedIn": "https://www.linkedin.com/in/windusayles/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Full Stack Node Developer", + "industry": "Health", + "cities": ["Charlotte", "St. Louis"], + "_id": { + "$oid": "666cbc3240af7b375e3522db" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "CVS Health/ Aetna", + "name": "Miklos Kertesz", + "email": "mikloslkertesz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mikl%C3%B3s-kert%C3%A9sz/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Data Engineer - Web UI Engineer", + "industry": "health", + "cities": ["Garland", "Cleveland", "Houston", "Honolulu"], + "_id": { + "$oid": "666cbc3240af7b375e3522dc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Cyber Popup", + "name": "Stephen Fitzsimmons", + "email": "smf0211@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stephenfitzsimmons", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Lead Full Stack Engineer", + "industry": "Software / Tech", + "cities": ["Toledo", "Beijing"], + "_id": { + "$oid": "666cbc3240af7b375e3522dd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Cybereason", + "name": "Phoebe Ermert", + "email": "phoebeermert@gmail.com", + "linkedIn": "https://www.linkedin.com/in/phoebe-ermert/", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Full Stack Engineer", + "industry": "Other", + "cities": ["Fort Worth", "Irving"], + "_id": { + "$oid": "666cbc3240af7b375e3522de" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Cyborg, Inc", + "name": "Jim Armbruster", + "email": "JMArmbruster@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jim-armbruster/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Full-Stack Engineer", + "industry": "Computer Software", + "cities": ["Wichita", "Orlando", "Washington"], + "_id": { + "$oid": "666cbc3240af7b375e3522df" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Cyderes", + "name": "Giovanni Flores-Lovo", + "email": "giovanniflores.l@gmail.com", + "linkedIn": "https://www.linkedin.com/in/giovanni-flores-lovo-11a288232/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Engineer", + "industry": "Security", + "cities": ["Cleveland", "Wichita", "Charlotte", "San Jose"], + "_id": { + "$oid": "666cbc3240af7b375e3522e0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Dandy", + "name": "Aram Krakirian", + "email": "aramkrakirian@gmail.com", + "linkedIn": "https://www.linkedin.com/in/aram-krakirian/", + "campus": "LA", + "cohort": "47", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Reno", "Cincinnati"], + "_id": { + "$oid": "666cbc3240af7b375e3522e1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Data Intelligence", + "name": "Jimmy Mei", + "email": "Jimmy27mei@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jimmymei/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Full Stack Engineer", + "industry": "Tech consultant", + "cities": ["St. Louis"], + "_id": { + "$oid": "666cbc3240af7b375e3522e2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Data Surge LLC", + "name": "Hang Xu", + "email": "hxu009@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hangxu09/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Data Engineer", + "industry": "Data solutions", + "cities": ["Nashville", "Phoenix"], + "_id": { + "$oid": "666cbc3240af7b375e3522e3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Databook", + "name": "Julie Wu", + "email": "scorp_only@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/yu-ting-w/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Sr Software Engineer", + "industry": "Sales", + "cities": ["Anaheim"], + "_id": { + "$oid": "666cbc3240af7b375e3522e4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Datacoral", + "name": "Jae Park", + "email": "woojae.jay.park@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Fashion/E-Commerce", + "cities": ["Riverside", "Lexington"], + "_id": { + "$oid": "666cbc3240af7b375e3522e5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Datametrics", + "name": "Luis Navarro", + "email": "pozhiin@hotmail.com", + "linkedIn": "https://www.linkedin.com/in/luis-e-navarro/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Frontend Developer", + "industry": "Software / Tech", + "cities": ["Honolulu", "Houston", "Irving"], + "_id": { + "$oid": "666cbc3240af7b375e3522e6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "DAZN", + "name": "Leonoor Rinke de Wit", + "email": "lrinkedewit@gmail.com", + "linkedIn": "https://www.linkedin.com/in/leonoorrinkedewit/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Backend Software Engineer", + "industry": "Media", + "cities": ["Cleveland"], + "_id": { + "$oid": "666cbc3240af7b375e3522e7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "DealPath", + "name": "Huy Bui", + "email": "huybui.sj@gmail.com", + "linkedIn": "https://www.linkedin.com/in/huyqbui/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Fort Worth", "Paris", "Portland", "Madison"], + "_id": { + "$oid": "666cbc3240af7b375e3522e8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Decent Labs", + "name": "Julia Collins", + "email": "Julia.col@protonmail.com", + "linkedIn": "https://www.linkedin.com/in/julia-col", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Full Stack Web3 Engineer", + "industry": "Crypto", + "cities": ["San Diego", "Baltimore"], + "_id": { + "$oid": "666cbc3240af7b375e3522e9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Deloitte", + "name": "Justin Buckner", + "email": "jwbprofessional@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jbuild/", + "campus": "FTRI", + "cohort": "3", + "jobTitle": "Consultant - front end developer", + "industry": "Consulting", + "cities": ["Tampa"], + "_id": { + "$oid": "666cbc3240af7b375e3522ea" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Delta Air Lines", + "name": "Joal Kim", + "email": "joalkims@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joal-kim", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Airline", + "cities": ["Reno", "Jacksonville", "Irvine", "Paris"], + "_id": { + "$oid": "666cbc3240af7b375e3522eb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "DeltaMath", + "name": "Hannah McDowell", + "email": "hannah.mcdowell1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hannah-lisbeth-mcdowell/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Oklahoma City", "Columbus", "Laredo", "Boston"], + "_id": { + "$oid": "666cbc3240af7b375e3522ec" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "DeMark Analytics LLC", + "name": "SEUNGHO BAEK", + "email": "shbaek115@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Engineer", + "industry": "Software & Tech services", + "cities": ["Greensboro", "London", "Baltimore", "Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e3522ed" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Dematic", + "name": "Liang Wen (Rocky) Lin", + "email": "liangwen511@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rocky-lin/", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Senior Software Engineer", + "industry": "Manufacturing and Distribution", + "cities": ["Portland", "Long Beach", "Fort Wayne", "Stockton"], + "_id": { + "$oid": "666cbc3240af7b375e3522ee" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.245Z" + }, + "__v": 0 + }, + { + "company": "Dendi Software", + "name": "Ozair Ghulam", + "email": "Ozairghulam4@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ozair-ghulam", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Forward deployed software engineer", + "industry": "Healthcare", + "cities": ["Lubbock", "Honolulu", "Madison"], + "_id": { + "$oid": "666cbc3240af7b375e3522ef" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Denizen", + "name": "Greg Domingue", + "email": "Greg.domingue1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/greg-domingue", + "campus": "LA", + "cohort": "23", + "jobTitle": "Full Stack Software Engineer", + "industry": "International Banking", + "cities": ["Norfolk", "Newark"], + "_id": { + "$oid": "666cbc3240af7b375e3522f0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Density", + "name": "Timothy Weidinger", + "email": "timothy.weidinger@gmail.com", + "linkedIn": "https://www.linkedin.com/in/timweidinger/", + "campus": "NYC / ECRI", + "cohort": "41", + "jobTitle": "Senior Full Stack Software Engineer", + "industry": "Data/Analytics/Cloud", + "cities": ["Houston", "Beijing", "Wichita", "Seattle"], + "_id": { + "$oid": "666cbc3240af7b375e3522f1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Derivco Sports", + "name": "Denny Temple", + "email": "denny.temple@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dentemple/", + "campus": "NYC", + "cohort": "6", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Anchorage", "Nashville"], + "_id": { + "$oid": "666cbc3240af7b375e3522f2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Destination Pet", + "name": "Nicholas Jordan Brush", + "email": "njbrush@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nicholas-j-brush?trk=people-guest_people_search-card", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer", + "industry": "Pet healthcare", + "cities": ["Chesapeake", "Virginia Beach", "Tokyo"], + "_id": { + "$oid": "666cbc3240af7b375e3522f3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "DexCare", + "name": "Nhan Ly", + "email": "nhansense1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nhanly/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Healthtech", + "cities": ["Houston"], + "_id": { + "$oid": "666cbc3240af7b375e3522f4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Diamond Web Services", + "name": "Ben Gummelt", + "email": "Camaromelt@gmail.com", + "linkedIn": "https://www.linkedin.com/in/benjamingummelt", + "campus": "LA", + "cohort": "20", + "jobTitle": "Full stack software engineer", + "industry": "", + "cities": ["Berlin", "Durham", "Saint Paul", "Dallas"], + "_id": { + "$oid": "666cbc3240af7b375e3522f5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Diamond Web Services", + "name": "Gregory Palasciano", + "email": "greg.palasciano@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gregory-palasciano/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Fullstack Engineer", + "industry": "Entertainment/Consulting", + "cities": ["Wichita"], + "_id": { + "$oid": "666cbc3240af7b375e3522f6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Diamond Web Services", + "name": "Jonathan Perera", + "email": "Jon.p@codesmith.io", + "linkedIn": "https://www.linkedin.com/in/japerera/", + "campus": "LA", + "cohort": "22", + "jobTitle": "Developer", + "industry": "", + "cities": ["Arlington", "Dallas"], + "_id": { + "$oid": "666cbc3240af7b375e3522f7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Diana Health", + "name": "Jackson Dahl", + "email": "jacksondahl27@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jackson-dahl/", + "campus": "NYOI", + "cohort": "4", + "jobTitle": "Full Stack Software Engineer", + "industry": "Healthtech/Healthcare", + "cities": ["Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e3522f8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Dick's Sporting Goods", + "name": "Brian Hon", + "email": "brianwhon@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brianwhon/", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Retail", + "cities": ["Oklahoma City"], + "_id": { + "$oid": "666cbc3240af7b375e3522f9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "DigiCert", + "name": "James M Espy II", + "email": "jespy2@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jamesespy/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "digital certificates / security", + "cities": ["Minneapolis", "Memphis", "Mexico City", "Chesapeake"], + "_id": { + "$oid": "666cbc3240af7b375e3522fa" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Digilock", + "name": "Aaron Yang", + "email": "aaronyang024@gmail.com", + "linkedIn": "https://www.linkedin.com/in/aaronyang24/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Electronic Manufacturing", + "cities": ["Henderson", "Denver"], + "_id": { + "$oid": "666cbc3240af7b375e3522fb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Digital Position", + "name": "Joe Beger", + "email": "jtbeger@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jtbeger/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Developer", + "industry": "SEO", + "cities": ["Chandler"], + "_id": { + "$oid": "666cbc3240af7b375e3522fc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "DigitalOcean", + "name": "Natalia Vargas-Caba", + "email": "nvargascaba@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nataliavargascaba", + "campus": "NYC", + "cohort": "17", + "jobTitle": "Technical Editor", + "industry": "Cloud service", + "cities": ["Miami", "Washington"], + "_id": { + "$oid": "666cbc3240af7b375e3522fd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Discord", + "name": "Jacob Richards", + "email": "jacob.richards33@gmail.com", + "linkedIn": "https://www.linkedin.com/in/palgorhythm/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Senior Software Engineer", + "industry": "Tech", + "cities": ["Glendale", "North Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e3522fe" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Discovery", + "name": "adele calvo", + "email": "adelecalvo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adelecalvo/", + "campus": "NYC", + "cohort": "9", + "jobTitle": "Software Engineer I, UI,", + "industry": "Blockchain", + "cities": ["Sรฃo Paulo", "Fort Worth"], + "_id": { + "$oid": "666cbc3240af7b375e3522ff" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Discovery", + "name": "Sarah t Renshaw", + "email": "strenshaw@gmail.com", + "linkedIn": "https://linkedin.com/in/strenshaw/", + "campus": "NYC", + "cohort": "2", + "jobTitle": "Software Engineer I", + "industry": "Music", + "cities": ["Columbus", "Chesapeake", "Bakersfield", "Newark"], + "_id": { + "$oid": "666cbc3240af7b375e352300" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Disney Streaming", + "name": "Daniel Palumbo", + "email": "Drpalumbo17@gmail.com", + "linkedIn": "https://www.linkedin.com/in/daniel-palumbo-735715137", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Jersey City", "Houston"], + "_id": { + "$oid": "666cbc3240af7b375e352301" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Disney Streaming", + "name": "Nat Heller", + "email": "nat.w.heller@gmail.com", + "linkedIn": "https://www.linkedin.com/in/natwheller/", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Entertainment", + "cities": ["Reno", "Tulsa", "Newark", "New York"], + "_id": { + "$oid": "666cbc3240af7b375e352302" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Disney Streaming", + "name": "Frank Ma", + "email": "yurenfrankma@gmail.com", + "linkedIn": "https://www.linkedin.com/in/frankma2", + "campus": "LA", + "cohort": "25", + "jobTitle": "Sr Frontend and Fullstack Engineer", + "industry": "Entertainment", + "cities": ["Chula Vista"], + "_id": { + "$oid": "666cbc3240af7b375e352303" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Disney Streaming Services", + "name": "Casey Escovedo", + "email": "caseyjescovedo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/caseyescovedo/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Associate Software Engineer", + "industry": "Entertainment", + "cities": ["Irvine", "Greensboro"], + "_id": { + "$oid": "666cbc3240af7b375e352304" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Disney Streaming Services", + "name": "Mark Marcelo", + "email": "markmarcelo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/markmarcelo/", + "campus": "LA", + "cohort": "12", + "jobTitle": "Lead Software Engineer", + "industry": "Entertainment", + "cities": ["Chicago", "Oakland", "Virginia Beach", "Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e352305" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Disney Streaming Services", + "name": "Rachel Farley", + "email": "rachyl.farley@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rachel-farley/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Associate Software Engineer", + "industry": "Entertainment", + "cities": ["Boston"], + "_id": { + "$oid": "666cbc3240af7b375e352306" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Dispense", + "name": "Kerrianne Crawford", + "email": "kerriannercrawford@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kerriannercrawford/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Senior Software Engineer", + "industry": "Software / Tech", + "cities": ["Arlington", "Jacksonville", "Garland"], + "_id": { + "$oid": "666cbc3240af7b375e352307" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Distributed Machines, Inc.", + "name": "William LeGate", + "email": "codesmith@legate.me", + "linkedIn": "https://www.linkedin.com/in/william-legate/", + "campus": "LA", + "cohort": "21", + "jobTitle": "CEO, Prediqt", + "industry": "Medical", + "cities": ["Los Angeles", "Glendale", "Atlanta", "Portland"], + "_id": { + "$oid": "666cbc3240af7b375e352308" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "DistroKid", + "name": "Jackson Tong", + "email": "jacksonktong@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jacksonktong/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Orlando", "Washington"], + "_id": { + "$oid": "666cbc3240af7b375e352309" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "DMC Inc", + "name": "Shane Yao", + "email": "Shanexinyao@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shanexinyao/", + "campus": "NYC", + "cohort": "3", + "jobTitle": "Senior Robotics Engineer", + "industry": "Crypto Fintech", + "cities": ["Minneapolis", "Louisville", "San Diego"], + "_id": { + "$oid": "666cbc3240af7b375e35230a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Dollar Shave Club", + "name": "Vincent Nguyen", + "email": "gvincemail@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vnguyenucla/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer(Contract)", + "industry": "Products", + "cities": ["Plano", "Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e35230b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Dollar Shave Club", + "name": "Ryan Trontz", + "email": "rtrontz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/trontz/", + "campus": "LA", + "cohort": "22", + "jobTitle": "Software Engineer, Backend", + "industry": "", + "cities": ["Chicago", "Las Vegas", "Colorado Springs"], + "_id": { + "$oid": "666cbc3240af7b375e35230c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Domio", + "name": "Neftali Dominguez", + "email": "n.l.dominguez23@gmail.com", + "linkedIn": "https://www.linkedin.com/in/neftalildominguez/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Back end engineer", + "industry": "apartment hotels", + "cities": ["Albuquerque", "Henderson", "Irving", "Anaheim"], + "_id": { + "$oid": "666cbc3240af7b375e35230d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Doorcast", + "name": "James Bui", + "email": "Jamesmdang.bui@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jamesminhbui/", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Senior Fullstack Engineer", + "industry": "Real Estate", + "cities": ["Seattle", "El Paso", "Lubbock"], + "_id": { + "$oid": "666cbc3240af7b375e35230e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Doorkee", + "name": "Jarred Jack-Harewood", + "email": "jackhajb@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jarred-jack-harewood/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Plano"], + "_id": { + "$oid": "666cbc3240af7b375e35230f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Dottid", + "name": "Brian Grosso", + "email": "bgro63@gmail.com", + "linkedIn": "https://www.linkedin.com/in/newarkBG/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech - Real Estate", + "cities": ["Glendale", "London", "Charlotte", "Scottsdale"], + "_id": { + "$oid": "666cbc3240af7b375e352310" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Dr Squatch", + "name": "Ben Cauffman", + "email": "Benjamincauffman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/benjamin-cauffman", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Full Stack Engineer", + "industry": "Retail", + "cities": ["Los Angeles", "Milwaukee", "Denver"], + "_id": { + "$oid": "666cbc3240af7b375e352311" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "DraftKings", + "name": "Jonnie Oak", + "email": "jonathan.oak28@gmail.com", + "linkedIn": "https://www.linkedin.com/in/oakj28/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Software Engineer", + "industry": "Fantasy Sports", + "cities": ["Charlotte", "Dallas", "Phoenix"], + "_id": { + "$oid": "666cbc3240af7b375e352312" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Dray Alliance", + "name": "Hayden Fithyan", + "email": "hayden@fithyan.com", + "linkedIn": "https://www.linkedin.com/in/fithyan/", + "campus": "LA", + "cohort": "23", + "jobTitle": "Software Developer II", + "industry": "", + "cities": ["Jacksonville", "Mexico City", "Detroit"], + "_id": { + "$oid": "666cbc3240af7b375e352313" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Dray Alliance", + "name": "Joshua Wright", + "email": "jwrightbluj@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joshua-w-86758a121/", + "campus": "LA", + "cohort": "23", + "jobTitle": "Software Engineer II", + "industry": "", + "cities": ["North Las Vegas", "Mexico City", "San Jose", "Anchorage"], + "_id": { + "$oid": "666cbc3240af7b375e352314" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Dreambox Learning", + "name": "Pei-Yun Chu", + "email": "pchu2018@gmail.com", + "linkedIn": "https://www.linkedin.com/in/pei-yun-chu/", + "campus": "PTRI", + "cohort": "8", + "jobTitle": "Software Development Engineer - Frontend", + "industry": "Software / Tech", + "cities": ["Durham", "Gilbert", "Laredo", "Albuquerque"], + "_id": { + "$oid": "666cbc3240af7b375e352315" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Driven Deliveries", + "name": "Adam Stover", + "email": "adam.jacob.stover@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "31", + "jobTitle": "Software Engineer", + "industry": "Supply Chain & Logistics", + "cities": ["Oklahoma City"], + "_id": { + "$oid": "666cbc3240af7b375e352316" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Drizly", + "name": "Diego Vazquez", + "email": "diegovazquezny@gmail.com", + "linkedIn": "https://www.linkedin.com/in/diegovazquezny/", + "campus": "LA", + "cohort": "21", + "jobTitle": "Jr. Software Engineer", + "industry": "Food & Beverages", + "cities": ["Tokyo", "Chula Vista", "Winston-Salem"], + "_id": { + "$oid": "666cbc3240af7b375e352317" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Dropbox", + "name": "Benjamin Kwak", + "email": "benjamin.h.kwak@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ben-kwak/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Engineer, Product", + "industry": "Techonology Services", + "cities": ["Santa Ana", "Los Angeles", "Honolulu", "Scottsdale"], + "_id": { + "$oid": "666cbc3240af7b375e352318" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Dropbox", + "name": "Myounghan Chae", + "email": "chaekmh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chaekmh/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Software Engineer", + "industry": "Cloudtech", + "cities": ["Memphis", "Lexington", "Raleigh"], + "_id": { + "$oid": "666cbc3240af7b375e352319" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Dropbox", + "name": "Miguel Michel", + "email": "migmic93@gmail.com", + "linkedIn": "https://www.linkedin.com/in/miguel-michel/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Cloud Storage", + "cities": ["Boston"], + "_id": { + "$oid": "666cbc3240af7b375e35231a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Dropps", + "name": "Sonny Nguyen", + "email": "sonnynguyen163@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sn163/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Developer", + "industry": "Sustainable E-Commerce", + "cities": ["Saint Paul", "Houston", "Chula Vista", "Berlin"], + "_id": { + "$oid": "666cbc3240af7b375e35231b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Dstillery", + "name": "Chai Lee", + "email": "imchai@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chai-lee-5a064649/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Software Engineer", + "industry": "Adtech", + "cities": ["Columbus", "Tulsa"], + "_id": { + "$oid": "666cbc3240af7b375e35231c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Dun & Bradstreet", + "name": "Jack Hall", + "email": "jackvincenthall@gmail.com", + "linkedIn": "https://linkedin.com/in/jackvhall", + "campus": "PTRI", + "cohort": "4", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech, Data Analytics", + "cities": ["Los Angeles", "Orlando", "Aurora"], + "_id": { + "$oid": "666cbc3240af7b375e35231d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Dun & Bradstreet", + "name": "Scott Rosen", + "email": "scott.rosen14@gmail.com", + "linkedIn": "https://www.linkedin.com/in/scott-rosen/", + "campus": "LA", + "cohort": "17", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Paris"], + "_id": { + "$oid": "666cbc3240af7b375e35231e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "dv01", + "name": "Michelle Herrera", + "email": "mesherrera@aol.com", + "linkedIn": "https://www.linkedin.com/in/mherreradev/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Senior Fullstack Engineer I", + "industry": "Fintech", + "cities": ["Sรฃo Paulo"], + "_id": { + "$oid": "666cbc3240af7b375e35231f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Dynamic benchmarking", + "name": "andres jaramillo", + "email": "andresj89@live.com", + "linkedIn": "https://www.linkedin.com/in/andresjaramillo210/", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Software engineer", + "industry": "Software / Tech", + "cities": ["Madison", "Sรฃo Paulo", "Chesapeake", "St. Petersburg"], + "_id": { + "$oid": "666cbc3240af7b375e352320" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Earnest", + "name": "Kai Rilliet", + "email": "kairilliet@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kairilliet/", + "campus": "LA / WCRI", + "cohort": "45", + "jobTitle": "Full Stack Software Engineer", + "industry": "Fintech", + "cities": ["Lexington", "Jersey City"], + "_id": { + "$oid": "666cbc3240af7b375e352321" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "eBay", + "name": "Ryan Kim", + "email": "ryansukwookim@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tkdryan/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Software Engineer", + "industry": "ECcmmerce", + "cities": ["Toledo", "Arlington", "Irvine", "Plano"], + "_id": { + "$oid": "666cbc3240af7b375e352322" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "EBSCO", + "name": "Sankari Ayyaluru", + "email": "sankariayyaluru@gmail", + "linkedIn": "https://www.linkedin.com/in/sankari-ayyaluru/", + "campus": "LA / WCRI", + "cohort": "48", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Mumbai"], + "_id": { + "$oid": "666cbc3240af7b375e352323" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Econify", + "name": "Jordan Kelly", + "email": "Jordan.w.kelly@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jordan-k-340257140/", + "campus": "NYC", + "cohort": "17", + "jobTitle": "Software Engineer", + "industry": "Consulting", + "cities": ["Paris", "Scottsdale", "Reno", "Seattle"], + "_id": { + "$oid": "666cbc3240af7b375e352324" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Econify", + "name": "Jovan Kelly", + "email": "fakeEmail2@fakeEmail.com", + "linkedIn": "https://www.linkedin.com/in/jovankelly", + "campus": "NYC", + "cohort": "10", + "jobTitle": "Software developer", + "industry": "Media Consulting", + "cities": ["Cleveland", "Colorado Springs"], + "_id": { + "$oid": "666cbc3240af7b375e352325" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Edify Labs", + "name": "Scott McInnis", + "email": "scottalyst@gmail.com", + "linkedIn": "https://www.linkedin.com/in/scott-mcinnis/", + "campus": "LA", + "cohort": "32", + "jobTitle": "Nodejs Developer", + "industry": "Customer Service", + "cities": ["Anaheim", "Laredo", "Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e352326" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Edify Labs", + "name": "Tony Lei", + "email": "tony.lei003@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tony-lei/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "NodeJS Developer", + "industry": "Software / Tech", + "cities": ["Durham", "Washington", "Fresno"], + "_id": { + "$oid": "666cbc3240af7b375e352327" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "EDUrain", + "name": "Jacob Jurado", + "email": "jakejurado@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jakejurado", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "chief technology officer", + "industry": "Education/Edtech", + "cities": ["Colorado Springs"], + "_id": { + "$oid": "666cbc3240af7b375e352328" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Egen", + "name": "Jonathan Escamilla", + "email": "jonathanescamilla1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jon-escamilla/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Associate Software Engineer", + "industry": "Tech (Builds solutions for companies - Typically Web Dev)", + "cities": ["Santa Ana", "Detroit"], + "_id": { + "$oid": "666cbc3240af7b375e352329" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Elder Research", + "name": "Ben Huang", + "email": "Byhuang4100@gmail.com", + "linkedIn": "byhuang4100", + "campus": "FTRI / CTRI", + "cohort": "14", + "jobTitle": "Data Engineer", + "industry": "Artificial Intelligence", + "cities": ["Sรฃo Paulo"], + "_id": { + "$oid": "666cbc3240af7b375e35232a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Elder Research Inc", + "name": "Nick Reardon", + "email": "nickjreardon@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nickjreardon/", + "campus": "PTRI", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "Consulting", + "cities": ["Fort Wayne"], + "_id": { + "$oid": "666cbc3240af7b375e35232b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "Elder Tree", + "name": "Stormi Hashimoto", + "email": "stormikhashimoto@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stormikph/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Software Engineer", + "industry": "NA", + "cities": ["Colorado Springs", "Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e35232c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.246Z" + }, + "__v": 0 + }, + { + "company": "eLink Design", + "name": "Tristan Krause", + "email": "yukiokrause@gmail.com", + "linkedIn": "https://www.linkedin.com/in/krausetristan/", + "campus": "FTRI / CTRI", + "cohort": "17", + "jobTitle": "Web / Mobile Developer", + "industry": "Design", + "cities": ["Raleigh", "Las Vegas", "Tulsa"], + "_id": { + "$oid": "666cbc3240af7b375e35232d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Elk Capital Markets", + "name": "Manuel Castro", + "email": "manuel.a.castro1992@gmail.com", + "linkedIn": "https://www.linkedin.com/in/manuel-castro-42466273", + "campus": "NYC", + "cohort": "5", + "jobTitle": "Software Engineer", + "industry": "Finance", + "cities": ["Colorado Springs", "Greensboro"], + "_id": { + "$oid": "666cbc3240af7b375e35232e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Ellie Mae", + "name": "Karen Pinilla", + "email": "pinillakaren11@gmail.com", + "linkedIn": "https://www.linkedin.com/in/karen-pinilla/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Software Engineer I", + "industry": "Computer Software", + "cities": ["Lexington", "Durham", "Cleveland"], + "_id": { + "$oid": "666cbc3240af7b375e35232f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "eMoney", + "name": "Kenneth Hui", + "email": "kennethhui121@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kenneth-hui/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Anchorage", "Fort Wayne", "Aurora", "Mumbai"], + "_id": { + "$oid": "666cbc3240af7b375e352330" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Empire Flippers", + "name": "Rob Wise", + "email": "robertwise1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/robertwise/", + "campus": "PTRI", + "cohort": "Beta", + "jobTitle": "Frontend Engineer", + "industry": "eCommerce", + "cities": ["Cincinnati"], + "_id": { + "$oid": "666cbc3240af7b375e352331" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Empowered Buildings", + "name": "Kevin Dooley", + "email": "kjdooley1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kjdooley1/", + "campus": "NYOI", + "cohort": "1", + "jobTitle": "Full-Stack Software Developer", + "industry": "Real Estate", + "cities": ["Oakland"], + "_id": { + "$oid": "666cbc3240af7b375e352332" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Enlighten", + "name": "Jonathon Garber", + "email": "jgarber2675@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jgarber2675/", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Front End Software Engineer", + "industry": "Security", + "cities": ["Lubbock", "Tokyo", "Colorado Springs", "San Diego"], + "_id": { + "$oid": "666cbc3240af7b375e352333" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Envoy", + "name": "Graham Pierce", + "email": "grahampiercenyc@gmail.com", + "linkedIn": "https://www.linkedin.com/in/graham-a-pierce/", + "campus": "FTRI", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "Workplace tech", + "cities": ["Milwaukee", "Jersey City", "Jacksonville", "Toledo"], + "_id": { + "$oid": "666cbc3240af7b375e352334" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Enzo Digital", + "name": "Johnny Bryan", + "email": "johnnybryan21@gmail.com", + "linkedIn": "https://www.linkedin.com/in/johnnybryan/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Backend/API Engineer", + "industry": "Fintech", + "cities": ["Kansas City", "Tampa"], + "_id": { + "$oid": "666cbc3240af7b375e352335" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "EolianVR", + "name": "Henry Halse", + "email": "henryhalse@gmail.com", + "linkedIn": "https://www.linkedin.com/in/henryhalse/", + "campus": "PTRI", + "cohort": "8", + "jobTitle": "Backend Engineer", + "industry": "Other", + "cities": ["Chicago", "Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e352336" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Epic Games", + "name": "Nahuel Arjona Tennerini", + "email": "nahuel.arjona.93@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nahuelarjonadev/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Game Systems Programmer", + "industry": "Video Games", + "cities": ["Norfolk", "Minneapolis"], + "_id": { + "$oid": "666cbc3240af7b375e352337" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Epic Games (Fortnite)", + "name": "Taylor T Morgan", + "email": "TaylorMorganTTM@gmail.com", + "linkedIn": "https://www.linkedin.com/in/taylormor77la/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Developer", + "industry": "Gaming", + "cities": ["Aurora"], + "_id": { + "$oid": "666cbc3240af7b375e352338" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Eqengineered", + "name": "William Ramirez", + "email": "willramirez630@gmail.com", + "linkedIn": "https://www.linkedin.com/in/willramirez528/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Senior Technical Consultant", + "industry": "Software Consulting Firm", + "cities": ["Lubbock"], + "_id": { + "$oid": "666cbc3240af7b375e352339" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Erdos Miller", + "name": "Michael Collier Grant", + "email": "DragonZSG@aol.com", + "linkedIn": "https://www.linkedin.com/in/michaelcolliergrant/", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Firmware Developer", + "industry": "Other", + "cities": ["San Francisco", "Buffalo", "Baltimore", "Fresno"], + "_id": { + "$oid": "666cbc3240af7b375e35233a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Ernst & Young", + "name": "Eduardo Maรญllo Conesa", + "email": "eduardomaillo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eduardomaillo/", + "campus": "NYC", + "cohort": "2", + "jobTitle": "Senior Software Engineer", + "industry": "", + "cities": ["Denver", "Wichita", "Virginia Beach"], + "_id": { + "$oid": "666cbc3240af7b375e35233b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Esri", + "name": "Gilbert Ramirez", + "email": "contemporarygil@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gillramirez/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Software Development Engineer", + "industry": "GIS", + "cities": ["Irving", "North Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e35233c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "ESRI", + "name": "Evan Hilton", + "email": "ehilton1537@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ehilton1537/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Software Development Engineer", + "industry": "Geographic Information System", + "cities": ["Chandler", "Anaheim", "Los Angeles"], + "_id": { + "$oid": "666cbc3240af7b375e35233d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Esri", + "name": "Elena Conn", + "email": "elenakconn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/elena-conn/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineering Intern (end date 10/29/21)", + "industry": "Geospatial Engineering (GIS)", + "cities": ["Sacramento", "Scottsdale"], + "_id": { + "$oid": "666cbc3240af7b375e35233e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Ethic", + "name": "Andrea Li", + "email": "andrea.li8341@hotmail.com", + "linkedIn": "https://www.linkedin.com/in/andrea-gli/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Frontend Engineer", + "industry": "Fintech", + "cities": ["Charlotte"], + "_id": { + "$oid": "666cbc3240af7b375e35233f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Ethos Life", + "name": "Alan Lee", + "email": "lee.alan.c12@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alanlee12/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Software Engineer, Test", + "industry": "Insurance", + "cities": ["St. Louis", "Kansas City", "Baltimore"], + "_id": { + "$oid": "666cbc3240af7b375e352340" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "etsy", + "name": "alfonso zamarripa", + "email": "alfonsozam93@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alfonsozamarripa/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "software engineer", + "industry": "Retail", + "cities": ["Norfolk", "Lubbock", "Buffalo"], + "_id": { + "$oid": "666cbc3240af7b375e352341" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Even", + "name": "Claudio Santos", + "email": "claudiohbsantos@gmail.com", + "linkedIn": "https://www.linkedin.com/in/claudio-santos-5b8134207/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer I", + "industry": "Fintech", + "cities": ["Fresno", "Tokyo"], + "_id": { + "$oid": "666cbc3240af7b375e352342" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Even Financial", + "name": "Andy Wong", + "email": "andywong.ny@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andywongdev", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Phoenix"], + "_id": { + "$oid": "666cbc3240af7b375e352343" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Eventbrite", + "name": "Ashley Pean", + "email": "pean.ashley@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ashley-pean/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Software Engineer II", + "industry": "Entertainment", + "cities": ["Newark", "Los Angeles", "Chandler", "Lexington"], + "_id": { + "$oid": "666cbc3240af7b375e352344" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "EventHound", + "name": "Greg Shamalta", + "email": "gregshamalta@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/gregory-shamalta/", + "campus": "LA", + "cohort": "23", + "jobTitle": "Founder", + "industry": "", + "cities": ["Tulsa", "Bakersfield"], + "_id": { + "$oid": "666cbc3240af7b375e352345" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "everest", + "name": "Will Hack", + "email": "will.j.hack@gmail.com", + "linkedIn": "https://www.linkedin.com/in/willhack/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Full-Stack Engineer (Sr)", + "industry": "UX Design", + "cities": ["Wichita", "Houston", "Detroit"], + "_id": { + "$oid": "666cbc3240af7b375e352346" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Everest, AI", + "name": "Jordan Long", + "email": "jlong4159@gmail.com", + "linkedIn": "www.linkedin.com/jlongtlw", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Sacramento", "Seattle", "Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e352347" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Everfi", + "name": "Jacob Ory", + "email": "jacobtory@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/jacobory/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Frontend Engineer", + "industry": "Ed Tech", + "cities": ["Tokyo", "Greensboro"], + "_id": { + "$oid": "666cbc3240af7b375e352348" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Exabeam", + "name": "Lisa Tian", + "email": "lisatian8@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lisatian-/", + "campus": "LA / WCRI", + "cohort": "53", + "jobTitle": "Software Engineer - UI", + "industry": "Security", + "cities": ["Beijing", "St. Petersburg", "Milwaukee"], + "_id": { + "$oid": "666cbc3240af7b375e352349" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Exodus Movement Inc", + "name": "Lanre Makinde", + "email": "lanre.developer@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lanre-mark/", + "campus": "PTRI", + "cohort": "Beta", + "jobTitle": "Sr. Software Engineer", + "industry": "blockchain/cryptocurrency", + "cities": ["Lincoln", "Columbus", "Tucson"], + "_id": { + "$oid": "666cbc3240af7b375e35234a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Expedia Group", + "name": "Tang", + "email": "eytang8@gmail.com", + "linkedIn": "https://www.linkedin.com/mwlite/in/ttaanngg", + "campus": "LA", + "cohort": "27", + "jobTitle": "Software Development Engineer II", + "industry": "Travel", + "cities": ["Arlington", "Irving"], + "_id": { + "$oid": "666cbc3240af7b375e35234b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Extend", + "name": "Diane Wu", + "email": "dianewudw@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Backend Software Engineer", + "industry": "Insurance", + "cities": ["Detroit", "Buffalo", "St. Petersburg"], + "_id": { + "$oid": "666cbc3240af7b375e35234c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Extensis", + "name": "Daniel Chang", + "email": "dkchang213@gmail.com", + "linkedIn": "https://www.linkedin.com/in/daniel-k-chang/", + "campus": "LA / WCRI", + "cohort": "56", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Oakland", "Dallas", "Mumbai", "Sacramento"], + "_id": { + "$oid": "666cbc3240af7b375e35234d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Facebook", + "name": "Ben Ray", + "email": "benray887@gmail.com", + "linkedIn": "https://www.linkedin.com/in/benray-/", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Rotational Engineer", + "industry": "Tech", + "cities": ["New Orleans"], + "_id": { + "$oid": "666cbc3240af7b375e35234e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Facebook", + "name": "Jason Lee", + "email": "jason.dongyul.lee@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "42", + "jobTitle": "Full-Stack Engineer", + "industry": "Social Media/Networking", + "cities": ["London", "Raleigh", "St. Louis"], + "_id": { + "$oid": "666cbc3240af7b375e35234f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Facebook", + "name": "Jonathan Calvo Ramirez", + "email": "jono.calvo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonathan-calvo", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer", + "industry": "Social Media", + "cities": ["Austin", "Phoenix", "Pittsburgh", "Raleigh"], + "_id": { + "$oid": "666cbc3240af7b375e352350" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Facebook", + "name": "Rajeeb Banstola", + "email": "rajeebanstola@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rajeebbanstola/", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Fullstack Developer - Contract", + "industry": "Internet", + "cities": ["Indianapolis", "Mexico City"], + "_id": { + "$oid": "666cbc3240af7b375e352351" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Facebook", + "name": "Ricardo Cortez", + "email": "ricardodgers12@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rcortez88/", + "campus": "LA", + "cohort": "44", + "jobTitle": "Full Stack Software Engineer", + "industry": "Social Media", + "cities": ["Lexington", "El Paso"], + "_id": { + "$oid": "666cbc3240af7b375e352352" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Facebook", + "name": "Sean Grace", + "email": "seanmgrace@gmail.com", + "linkedIn": "https://www.linkedin.com/in/seanmgrace/", + "campus": "LA", + "cohort": "44", + "jobTitle": "Full Stack Software Engineer", + "industry": "Tech", + "cities": ["Baltimore"], + "_id": { + "$oid": "666cbc3240af7b375e352353" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Facebook", + "name": "Shreshth Srivastava", + "email": "shreshthsrivastava2@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shreshth-srivastava/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Software Engineer", + "industry": "Social Media", + "cities": ["Nashville"], + "_id": { + "$oid": "666cbc3240af7b375e352354" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Facebook (Meta)", + "name": "Eric Wilding", + "email": "eric.d.wilding@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eric-wilding/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Full Stack Software Engineer", + "industry": "Social Media", + "cities": ["Laredo", "San Jose", "St. Louis", "Scottsdale"], + "_id": { + "$oid": "666cbc3240af7b375e352355" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Facebook (via K2Partners)", + "name": "Thanh Doan", + "email": "tdoan35@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ty-thanh-doan/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Full-Stack Engineer", + "industry": "Social Media", + "cities": ["Mesa", "Charlotte"], + "_id": { + "$oid": "666cbc3240af7b375e352356" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Facebook via TEK System", + "name": "Yoko Kawamoto", + "email": "yokokawamoto@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yokokawamoto/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer", + "industry": "Social Media", + "cities": ["Laredo", "Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e352357" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Facebook/K2", + "name": "Charles Gutwirth", + "email": "charlesgutwirth@gmail.com", + "linkedIn": "https://www.linkedin.com/in/charles-gutwirth/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Full Stack Engineer", + "industry": "Social media", + "cities": ["Minneapolis", "Memphis", "Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e352358" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "FactSet", + "name": "Ethan Sclarsky", + "email": "esclarsky@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ethan-sclarsky/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["North Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e352359" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Fanatics, Inc", + "name": "Jonah Eidman", + "email": "jonah.eidman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonah-eidman/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Software Engineer II", + "industry": "Entertainment", + "cities": ["Chesapeake"], + "_id": { + "$oid": "666cbc3240af7b375e35235a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Fandango", + "name": "Ha-Rry Kim", + "email": "hari9497@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hkim9497/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Software Engineer I", + "industry": "", + "cities": ["Lubbock", "Long Beach"], + "_id": { + "$oid": "666cbc3240af7b375e35235b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Fandango", + "name": "Ken Lam", + "email": "heiyeunl@gmail.com", + "linkedIn": "https://www.linkedin.com/in/heiyeunl/", + "campus": "LA", + "cohort": "27", + "jobTitle": "Front end software engineer", + "industry": "Entertainment?", + "cities": ["Paris", "Austin"], + "_id": { + "$oid": "666cbc3240af7b375e35235c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "FanDuel", + "name": "Alex Haile", + "email": "ahaile923@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ahaile923/", + "campus": "FTRI", + "cohort": "7", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Albuquerque"], + "_id": { + "$oid": "666cbc3240af7b375e35235d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Fanfix", + "name": "Dylan Hensel", + "email": "dylan@hensel.com", + "linkedIn": "https://www.linkedin.com/in/dylanhensel/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Senior Software Engineer", + "industry": "Entertainment", + "cities": ["Sacramento", "Seattle"], + "_id": { + "$oid": "666cbc3240af7b375e35235e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Fanfix", + "name": "Jonathan Mavandi", + "email": "jonathan.mavandi@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jon-mavandi/", + "campus": "LA", + "cohort": "26", + "jobTitle": "Software Engineer", + "industry": "Entertainment", + "cities": ["Milwaukee", "Madison", "Memphis"], + "_id": { + "$oid": "666cbc3240af7b375e35235f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Fannie Mae", + "name": "Abhi Gullapalli", + "email": "aubertlone@gmail.com", + "linkedIn": "https://www.linkedin.com/in/viswagullapalli/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Cloud Engineer", + "industry": "Cloud Services", + "cities": ["Newark", "Seattle"], + "_id": { + "$oid": "666cbc3240af7b375e352360" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Fantoons", + "name": "Hank McGill", + "email": "henrymcgill@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hank-mcgill/", + "campus": "NYOI", + "cohort": "4", + "jobTitle": "Founding Full-Stack Software Engineer", + "industry": "Entertainment", + "cities": ["Mumbai", "Mexico City"], + "_id": { + "$oid": "666cbc3240af7b375e352361" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Farm to People", + "name": "Katharine Angelopoulos", + "email": "katharine.angelopoulos@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kangelopoulos/", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Full Stack Developer", + "industry": "Restaurant, Food, and Beverage", + "cities": ["St. Louis"], + "_id": { + "$oid": "666cbc3240af7b375e352362" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Fashionphile", + "name": "Amy Yee", + "email": "amyyee1998@gmail.com", + "linkedIn": "https://www.linkedin.com/in/amyyee98/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "E-commerce", + "cities": ["Oklahoma City", "Tucson", "Aurora", "Milwaukee"], + "_id": { + "$oid": "666cbc3240af7b375e352363" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Fashionphile", + "name": "Gabriela Jardim Aquino", + "email": "gjardimaquino@gmail.com", + "linkedIn": "https://www.linkedin.com/in/aquinojardim/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Fashion", + "cities": ["Anchorage", "Paris", "Milwaukee", "Lexington"], + "_id": { + "$oid": "666cbc3240af7b375e352364" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Fastly", + "name": "Angelo Chengcuenca", + "email": "amchengcuenca@gmail.com", + "linkedIn": "https://www.linkedin.com/in/angelotmchengcuenca/", + "campus": "FTRI / CTRI", + "cohort": "14", + "jobTitle": "Software Development Engineer", + "industry": "Software / Tech", + "cities": ["Pittsburgh"], + "_id": { + "$oid": "666cbc3240af7b375e352365" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Fearless (fearless.tech)", + "name": "Faraz Akhtar", + "email": "fa8338@gmail.com", + "linkedIn": "https://www.linkedin.com/in/faraz22/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer II", + "industry": "Government Consulting", + "cities": ["Milwaukee", "Detroit", "Sรฃo Paulo"], + "_id": { + "$oid": "666cbc3240af7b375e352366" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Feather", + "name": "Bryan Fong", + "email": "bryanfong.dev@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bryanfong-dev/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Software Engineer", + "industry": "Furniture Subscription", + "cities": ["Stockton", "Portland"], + "_id": { + "$oid": "666cbc3240af7b375e352367" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "FeatureBase", + "name": "David Kagan", + "email": "David.kagan07@gmail.com", + "linkedIn": "David-kagan07", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Jr Software Engineer, Cloud", + "industry": "Cloud Services", + "cities": ["San Jose", "Santa Ana"], + "_id": { + "$oid": "666cbc3240af7b375e352368" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Federal Reserve Bank", + "name": "Robert McHalffey", + "email": "R.mchalffey@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "26", + "jobTitle": "Software Engineer 4", + "industry": "Government/Banking", + "cities": ["Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e352369" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Federal Reserve Bank of NY", + "name": "Anthony Lee", + "email": "anthonylee2797@gmail.com", + "linkedIn": "https://www.linkedin.com/in/anthony-lee27/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Frontend Developer", + "industry": "Finance", + "cities": ["San Francisco"], + "_id": { + "$oid": "666cbc3240af7b375e35236a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Ferguson", + "name": "Eric Hagen", + "email": "ericjameshagen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hagenforhire/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Virginia Beach", "St. Louis"], + "_id": { + "$oid": "666cbc3240af7b375e35236b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Ferguson Enterprises", + "name": "James Ferrell", + "email": "James David.ferrell@ferguson.com", + "linkedIn": "https://www.linkedin.com/in/james-d-ferrell/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "E-commerce", + "cities": ["Paris"], + "_id": { + "$oid": "666cbc3240af7b375e35236c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Fictiv", + "name": "Cherie Zhong", + "email": "cheriemzhong@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cheriezhong/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Software Engineer", + "industry": "Manufacturing", + "cities": ["Wichita", "Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e35236d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Fidelity Investments", + "name": "Eli Muir", + "email": "eli.t.muir@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eli-muir/", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Full Stack Engineer", + "industry": "Fintech", + "cities": ["Orlando", "Irving"], + "_id": { + "$oid": "666cbc3240af7b375e35236e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Fidelity Investments", + "name": "Christopher Jamali", + "email": "jamalichristopher@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chrisjamali/", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Senior Mobile Developer", + "industry": "Fintech", + "cities": ["Plano", "Riverside", "Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e35236f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Fin", + "name": "Matt Jiang", + "email": "mattljiang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mattljiang/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Product Engineer", + "industry": "SaaS", + "cities": ["Mexico City", "Tulsa", "Plano", "Wichita"], + "_id": { + "$oid": "666cbc3240af7b375e352370" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Find my past", + "name": "Mitesh patel", + "email": "mit06@hotmail.com", + "linkedIn": "https://www.linkedin.com/in/miteshvjpatel", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Mid software engineer", + "industry": "genealogy", + "cities": ["Berlin", "Saint Paul", "Norfolk", "Sรฃo Paulo"], + "_id": { + "$oid": "666cbc3240af7b375e352371" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "FinDox Inc.", + "name": "Jhonatan Passalacqua", + "email": "jpascas@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jpassalacqua", + "campus": "PTRI", + "cohort": "Beta", + "jobTitle": "Senior Software Architect", + "industry": "Fintech", + "cities": ["Oklahoma City"], + "_id": { + "$oid": "666cbc3240af7b375e352372" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Finra", + "name": "Yankun Song", + "email": "yankun.L.song@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yankunsong/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Data engineer", + "industry": "Fintech", + "cities": ["Plano", "Omaha"], + "_id": { + "$oid": "666cbc3240af7b375e352373" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "First American", + "name": "Jen Lee", + "email": "jenleesj@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jenleesj", + "campus": "FTRI / CTRI", + "cohort": "14", + "jobTitle": "Front End Software Engineer", + "industry": "Insurance", + "cities": ["Irving"], + "_id": { + "$oid": "666cbc3240af7b375e352374" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "First Help Financial", + "name": "Juliana Morrelli", + "email": "julianamorrelli28@gmail.com", + "linkedIn": "https://www.linkedin.com/in/julianamorrelli/", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Frontend Software Engineer", + "industry": "Fintech", + "cities": ["Greensboro", "Irving"], + "_id": { + "$oid": "666cbc3240af7b375e352375" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "First Republic Bank", + "name": "Nikhil Massand", + "email": "nikhil.massand@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nikhil-massand/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Banking", + "cities": ["Wichita", "Gilbert", "Winston-Salem"], + "_id": { + "$oid": "666cbc3240af7b375e352376" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "First Resonance", + "name": "Maxwell Reed", + "email": "mxjreed@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mxjrd/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Frontend Engineer", + "industry": "Manufacturing", + "cities": ["Riverside", "Long Beach", "St. Louis"], + "_id": { + "$oid": "666cbc3240af7b375e352377" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Fiserv", + "name": "Ozi Oztourk", + "email": "oztrkgzhn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ozi-oztourk", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Baltimore"], + "_id": { + "$oid": "666cbc3240af7b375e352378" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Fiserv.", + "name": "eddy zapata", + "email": "ecz001@live.com", + "linkedIn": "https://www.linkedin.com/in/eddy-zapata/", + "campus": "FTRI", + "cohort": "2", + "jobTitle": "Software Development Engineer IV", + "industry": "Fintech", + "cities": ["Minneapolis", "Chandler", "Mesa", "Fort Worth"], + "_id": { + "$oid": "666cbc3240af7b375e352379" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Fitch Solutions", + "name": "Duane McFarlane", + "email": "Duanemcfarlane@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/duanemcfarlane/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "Entertainment", + "cities": ["Sรฃo Paulo"], + "_id": { + "$oid": "666cbc3240af7b375e35237a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Flash Scientific Technology", + "name": "William Howard", + "email": "willh91@msn.com", + "linkedIn": "https://www.linkedin.com/in/wph91/", + "campus": "LA", + "cohort": "21", + "jobTitle": "Lead Software Engineer", + "industry": "Meteorology/Environmental Science", + "cities": ["Lubbock", "Lexington", "Cleveland"], + "_id": { + "$oid": "666cbc3240af7b375e35237b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Flashpoint", + "name": "Robbie Gottlieb", + "email": "robbiegottlieb.dev@gmail.com", + "linkedIn": "https://www.linkedin.com/in/robbie-gottlieb/", + "campus": "NYC / ECRI", + "cohort": "1", + "jobTitle": "Security", + "industry": "Software / Tech", + "cities": ["San Francisco", "Stockton", "Phoenix", "Beijing"], + "_id": { + "$oid": "666cbc3240af7b375e35237c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Flexion", + "name": "Cameron Walls", + "email": "cwalls45@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cameron-walls45/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Full Stack Software Developer", + "industry": "Consulting, the project I am working on is in the Education industry", + "cities": ["Riverside", "Raleigh"], + "_id": { + "$oid": "666cbc3240af7b375e35237d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "FlightAware", + "name": "Robert Yang", + "email": "rob.yang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/robwyang/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Senior Software Engineer", + "industry": "Aviation", + "cities": ["Greensboro"], + "_id": { + "$oid": "666cbc3240af7b375e35237e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Flock Safety", + "name": "Rocio Infante", + "email": "Rocio.infante417@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Public Safety", + "cities": ["Riverside", "Tulsa"], + "_id": { + "$oid": "666cbc3240af7b375e35237f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Flock Safety", + "name": "Hunter Shaw", + "email": "hu.shaw215@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hshaw215/", + "campus": "NYC / ECRI", + "cohort": "40", + "jobTitle": "Software Engineer II", + "industry": "Other", + "cities": ["Indianapolis", "Chandler", "Scottsdale", "Norfolk"], + "_id": { + "$oid": "666cbc3240af7b375e352380" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "FloQast", + "name": "Stephanie Chiu", + "email": "stephaniekchiu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stephanie-chiu-/", + "campus": "LA", + "cohort": "32", + "jobTitle": "Software Engineer I", + "industry": "Fintech", + "cities": ["Jersey City", "Detroit", "Baltimore", "Irving"], + "_id": { + "$oid": "666cbc3240af7b375e352381" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "FloQast", + "name": "Khaile Tran", + "email": "khailetran94@gmail.com", + "linkedIn": "linkedin.com/in/khailetran", + "campus": "FTRI / CTRI", + "cohort": "16", + "jobTitle": "Software Engineer I", + "industry": "Other", + "cities": ["Seattle", "Sydney", "Mumbai", "Irving"], + "_id": { + "$oid": "666cbc3240af7b375e352382" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Florence Healthcare", + "name": "Bill Greco", + "email": "wgreco13@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bill-greco/", + "campus": "NYC", + "cohort": "32", + "jobTitle": "Senior Full Stack Software Engineer", + "industry": "Healthcare", + "cities": ["Oakland"], + "_id": { + "$oid": "666cbc3240af7b375e352383" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "FNS, Inc.", + "name": "Shinhae Na", + "email": "shinhaena@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shinhaena-stella/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Software Engineer", + "industry": "Retail", + "cities": ["Tucson", "Memphis", "Winston-Salem"], + "_id": { + "$oid": "666cbc3240af7b375e352384" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.247Z" + }, + "__v": 0 + }, + { + "company": "Foodpanda", + "name": "Josh Kim", + "email": "joshua940308@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sungtae/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Frontend software engineer", + "industry": "Food tech", + "cities": ["Dallas", "Oklahoma City", "Tokyo", "Jacksonville"], + "_id": { + "$oid": "666cbc3240af7b375e352385" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Forma", + "name": "Jay Lim", + "email": "jaymlim93@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jaylim218/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "Human Resources", + "cities": ["Stockton"], + "_id": { + "$oid": "666cbc3240af7b375e352386" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Formation", + "name": "Stella Liao", + "email": "stellaliao.01@gmail.com", + "linkedIn": "https://www.linkedin.com/feed/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Engineer", + "industry": "Education", + "cities": ["Houston", "Chicago", "Austin"], + "_id": { + "$oid": "666cbc3240af7b375e352387" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Formidable", + "name": "Juan Hart", + "email": "juanhart1@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Software Engineer III", + "industry": "Consultancy", + "cities": ["San Diego", "Scottsdale", "Omaha", "Virginia Beach"], + "_id": { + "$oid": "666cbc3240af7b375e352388" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Fortress Information Security", + "name": "Keith Lisiak", + "email": "bball.coach@icloud.com", + "linkedIn": "https://www.linkedin.com/in/keithlisiak/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "Security", + "cities": ["Dallas", "Aurora", "Buffalo"], + "_id": { + "$oid": "666cbc3240af7b375e352389" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Forward Financing", + "name": "Shanon Lee", + "email": "shanonlee541@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shanonlee541/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Associate Software Engineer", + "industry": "Fintech", + "cities": ["San Francisco", "Garland"], + "_id": { + "$oid": "666cbc3240af7b375e35238a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Forward Slope Inc.", + "name": "Ilija Bibic", + "email": "ibibic2@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ilija-bibic", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Jersey City", "Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e35238b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Forward Slope, Inc.", + "name": "Thang Thai", + "email": "thaithangt@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thang-thai/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Nashville", "Glendale", "Berlin"], + "_id": { + "$oid": "666cbc3240af7b375e35238c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "FourKites", + "name": "Anthony Stanislaus", + "email": "anthonystanislaus1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/anthonystanislaus/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Kansas City"], + "_id": { + "$oid": "666cbc3240af7b375e35238d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Fox Corporation", + "name": "James Edwards", + "email": "digitalmediapro7@gmail.com", + "linkedIn": "https://www.linkedin.com/in/digital9/", + "campus": "LA", + "cohort": "19", + "jobTitle": "Senior Full Stack Software Engineer (Frontend)", + "industry": "", + "cities": ["Albuquerque", "Tokyo", "Aurora"], + "_id": { + "$oid": "666cbc3240af7b375e35238e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Freewheel", + "name": "Hubert Lin", + "email": "huberthflin@gmail.com", + "linkedIn": "https://www.linkedin.com/feed/", + "campus": "NYC", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "IT", + "cities": ["San Francisco", "Plano", "Reno", "Winston-Salem"], + "_id": { + "$oid": "666cbc3240af7b375e35238f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Frontier Communications", + "name": "Josh Cretella", + "email": "jcrtll@protonmail.com", + "linkedIn": "https://www.linkedin.com/in/josh-cretella", + "campus": "LA", + "cohort": "45", + "jobTitle": "Backend Developer", + "industry": "Telecoms", + "cities": ["New Orleans", "Paris", "Seattle"], + "_id": { + "$oid": "666cbc3240af7b375e352390" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Frozen Dessert Supplies", + "name": "Ethan McRae", + "email": "ethanmcrae0@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ethanmcrae/", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Senior Developer", + "industry": "Consumer Goods: Retail (general)", + "cities": ["Mumbai", "San Francisco", "Tulsa", "Anchorage"], + "_id": { + "$oid": "666cbc3240af7b375e352391" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Fulcrum", + "name": "Valerie Huang", + "email": "valeriewhuang@gmail.com", + "linkedIn": "https://www.linkedin.com/mwlite/in/valeriewhuang", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Software Engineer", + "industry": "Manufacturing", + "cities": ["El Paso", "Washington", "Houston"], + "_id": { + "$oid": "666cbc3240af7b375e352392" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "fulcrumpro", + "name": "Nicole Du", + "email": "Nicoleduu@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Developer", + "industry": "Manufacturing", + "cities": ["Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e352393" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Full In Partners", + "name": "Kevin HoEun Lee", + "email": "kevin.hoeun.lee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kevinhoeunlee/", + "campus": "LA", + "cohort": "50", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Henderson", "Las Vegas", "San Francisco", "Norfolk"], + "_id": { + "$oid": "666cbc3240af7b375e352394" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Funimation", + "name": "Justin Joseph", + "email": "jrayjoseph@gmail.com", + "linkedIn": "https://www.linkedin.com/mwlite/in/jrayjoseph", + "campus": "LA", + "cohort": "32", + "jobTitle": "Backend Software Engineer", + "industry": "Entertainment", + "cities": ["New Orleans", "Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e352395" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Fusion Medical Staffing", + "name": "Kelsey Graner", + "email": "Kels.graner@gmail.com", + "linkedIn": "LinkedIn.com/Kelsey-graner", + "campus": "LA / WCRI", + "cohort": "54", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Winston-Salem", "Chula Vista"], + "_id": { + "$oid": "666cbc3240af7b375e352396" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Fusion Medical Staffing", + "name": "Krisette Odegard", + "email": "kmodeg@gmail.com", + "linkedIn": "https://linkedin.com/in/krisette", + "campus": "LA / WCRI", + "cohort": "53", + "jobTitle": "Software Developer", + "industry": "Healthcare", + "cities": ["Los Angeles", "Aurora", "Stockton"], + "_id": { + "$oid": "666cbc3240af7b375e352397" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Futuralis", + "name": "Rex Osariemen", + "email": "rexosariemen@gmail.com", + "linkedIn": "https://linkedin/in/rexosariemen", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Software Engineer", + "industry": "IT", + "cities": ["Fresno", "Mexico City"], + "_id": { + "$oid": "666cbc3240af7b375e352398" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "G-Research", + "name": "Sigele Nickerson-Adams", + "email": "sigeleakosua@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sigelenickersonadams", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Software Engineer", + "industry": "Research", + "cities": ["Glendale", "Anchorage", "Jersey City"], + "_id": { + "$oid": "666cbc3240af7b375e352399" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Gaia Platform", + "name": "Jorge Fernandez", + "email": "jcferna1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jorge-carlos-fernandez", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Developer", + "industry": "Automation", + "cities": ["Columbus", "Wichita", "Irving"], + "_id": { + "$oid": "666cbc3240af7b375e35239a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Gallery Media Group", + "name": "Kristiina Eelnurme", + "email": "kristiina.eelnurme@gmail.com", + "linkedIn": "https://www.linkedin.com/in/Kristiina-eelnurme/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Frontend Engineer", + "industry": "Media", + "cities": ["Memphis"], + "_id": { + "$oid": "666cbc3240af7b375e35239b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "GameOn Technology", + "name": "Jeffrey Kim", + "email": "kimjeffrey96@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jeffrey-kim-79810112a/", + "campus": "NYC", + "cohort": "6", + "jobTitle": "Frontend, Software Engineer", + "industry": "Tech", + "cities": ["Austin", "Irving", "Lincoln"], + "_id": { + "$oid": "666cbc3240af7b375e35239c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "GAN Integrity", + "name": "Erik Larsen", + "email": "erik.w.larsen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/erik-w-larsen", + "campus": "NYC", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Sacramento", "Pittsburgh"], + "_id": { + "$oid": "666cbc3240af7b375e35239d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Gap", + "name": "Khayal Alasgarov", + "email": "alaskarov.khayal@gmail.com", + "linkedIn": "https://www.linkedin.com/in/khayal-alasgaroff", + "campus": "LA", + "cohort": "44", + "jobTitle": "React/JavaScript Developer", + "industry": "Clothing", + "cities": ["Lexington"], + "_id": { + "$oid": "666cbc3240af7b375e35239e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Gap", + "name": "Wesley Appleget", + "email": "wesget182@gmail.com", + "linkedIn": "https://www.linkedin.com/in/wesley-appleget/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Full Stack Engineer", + "industry": "Retail", + "cities": ["Sacramento"], + "_id": { + "$oid": "666cbc3240af7b375e35239f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Gap Inc.", + "name": "Cole Redfearn", + "email": "coleredfearn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/coleredfearn/", + "campus": "LA", + "cohort": "41", + "jobTitle": "UI Developer", + "industry": "Clothing/E-Commerce", + "cities": ["Wichita", "New York"], + "_id": { + "$oid": "666cbc3240af7b375e3523a0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Gap inc.", + "name": "Nayan Parmar", + "email": "nparmar84@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nparmar1", + "campus": "LA", + "cohort": "44", + "jobTitle": "Software Engineer", + "industry": "eCommerce", + "cities": ["Seattle"], + "_id": { + "$oid": "666cbc3240af7b375e3523a1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Gartner-L2", + "name": "Jonathan P Schwartz", + "email": "jonathanschwartz30@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonathanpschwartz/", + "campus": "NYC", + "cohort": "7", + "jobTitle": "Front-End Lead", + "industry": "", + "cities": ["Albuquerque", "Greensboro", "Sydney", "Sacramento"], + "_id": { + "$oid": "666cbc3240af7b375e3523a2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Gatheround", + "name": "Andrew Widjaja", + "email": "andrewdwidjaja@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andrew-widjaja/", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Greensboro", "North Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e3523a3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "GE Aviation", + "name": "Nathan Richardson", + "email": "nathan.richardson94@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nathan-p-richardson/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Fullstack Developer", + "industry": "Aerospace", + "cities": ["Austin", "San Diego"], + "_id": { + "$oid": "666cbc3240af7b375e3523a4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Geneoscopy", + "name": "Steve Schlepphorst", + "email": "steve.schlepphorst@gmail.com", + "linkedIn": "https://www.linkedin.com/in/schlepphorst/", + "campus": "FTRI / CTRI", + "cohort": "17", + "jobTitle": "Senior Software Engineer I", + "industry": "Healthtech/Healthcare", + "cities": ["Toronto", "Sydney", "Los Angeles"], + "_id": { + "$oid": "666cbc3240af7b375e3523a5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Genomic Prediction", + "name": "Rebecca Miller", + "email": "beemills@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rebeccamiller19/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Frontend Engineer", + "industry": "Biotech", + "cities": ["Kansas City", "Las Vegas", "Charlotte"], + "_id": { + "$oid": "666cbc3240af7b375e3523a6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Ghostery", + "name": "Leury Rodriguez", + "email": "leuryr07@gmail.com", + "linkedIn": "https://www.linkedin.com/in/leury-rodriguez/", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Jr. Software Engineer", + "industry": "Internet", + "cities": ["Newark", "San Francisco", "Fort Worth"], + "_id": { + "$oid": "666cbc3240af7b375e3523a7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Giglabs, Inc.", + "name": "Tyler Pohn", + "email": "tylerpohn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tylerpohn/", + "campus": "FTRI / CTRI", + "cohort": "5", + "jobTitle": "Software Engineer", + "industry": "Blockchain/Web3", + "cities": ["Sydney", "Cincinnati", "Jersey City", "Henderson"], + "_id": { + "$oid": "666cbc3240af7b375e3523a8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Giglabs.io", + "name": "Daniel Nguyen", + "email": "dannguyen1191@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/danlord-nguyen/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Software Engineer (Node)", + "industry": "Blockchain, Media and Entertainment", + "cities": ["Stockton", "Mexico City", "Columbus", "Virginia Beach"], + "_id": { + "$oid": "666cbc3240af7b375e3523a9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Github", + "name": "Sabrina Goldfarb", + "email": "s.goldfarb2@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sabrinagoldfarb/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Software Engineer II", + "industry": "Tech", + "cities": ["Orlando", "San Antonio", "Chesapeake"], + "_id": { + "$oid": "666cbc3240af7b375e3523aa" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "glimpse.ai", + "name": "Ryan Lim", + "email": "ryanlim301@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ryanlim3/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Full Stack Engineer", + "industry": "Information Technology", + "cities": ["Indianapolis"], + "_id": { + "$oid": "666cbc3240af7b375e3523ab" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Gluware", + "name": "Abid Ramay", + "email": "abidramay@gmail.com", + "linkedIn": "https://www.linkedin.com/in/aramay/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Louisville"], + "_id": { + "$oid": "666cbc3240af7b375e3523ac" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "GOAT Group", + "name": "Jordan Deleon", + "email": "jordanscottdeleon@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jordan-deleon/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Software Engineer II", + "industry": "E-commerce", + "cities": ["Seattle", "Riverside", "Virginia Beach"], + "_id": { + "$oid": "666cbc3240af7b375e3523ad" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "GoBolt", + "name": "Kyo Ku", + "email": "kyosan.ku34@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kyosan-ku/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Software Developer II", + "industry": "Logistics Technology", + "cities": ["Oakland", "Saint Paul", "Milwaukee", "Cincinnati"], + "_id": { + "$oid": "666cbc3240af7b375e3523ae" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "GoDaddy", + "name": "Joyce Lo", + "email": "joycemanning@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joycelo/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer", + "industry": "Internet", + "cities": ["Washington", "Omaha"], + "_id": { + "$oid": "666cbc3240af7b375e3523af" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "GoDaddy", + "name": "Kristina Wallen", + "email": "KristinaKWallen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kristina-wallen/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Senior Software Development Engineer", + "industry": "Software / Tech", + "cities": ["Chula Vista", "Baltimore", "San Jose", "Phoenix"], + "_id": { + "$oid": "666cbc3240af7b375e3523b0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "GoFundMe", + "name": "Colin McCarthy", + "email": "colinhmccarthy@gmail.com", + "linkedIn": "https://www.linkedin.com/in/colinhmccarthy/", + "campus": "LA", + "cohort": "21", + "jobTitle": "Software Engineer", + "industry": "Crowdfunding/fundraising", + "cities": ["Washington", "Phoenix"], + "_id": { + "$oid": "666cbc3240af7b375e3523b1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Golden Hippo", + "name": "Mauricio Castro", + "email": "mauricio.a.castro7@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mauricioacastro/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Senior Full Stack Developer", + "industry": "Advertising", + "cities": ["Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e3523b2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Goldman Sachs", + "name": "Alfredo Alpizar", + "email": "fredo.alpizar@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alfredoalpizar/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Associate Software Engineer", + "industry": "Finance / Banking", + "cities": ["Toledo", "Louisville", "Detroit", "Honolulu"], + "_id": { + "$oid": "666cbc3240af7b375e3523b3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Goldman Sachs", + "name": "Peyton Pedersen", + "email": "pedersen0819@gmail.com", + "linkedIn": "https://www.linkedin.com/in/peyton-pedersen/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Analyst", + "industry": "Fintech", + "cities": ["Mexico City"], + "_id": { + "$oid": "666cbc3240af7b375e3523b4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.248Z" + }, + "__v": 0 + }, + { + "company": "Goldman Sachs", + "name": "Stephen Budarz", + "email": "sbudarz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/steve-budarz/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Vice President", + "industry": "Finance", + "cities": ["Boston", "San Jose"], + "_id": { + "$oid": "666cbc3240af7b375e3523b5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Goldschmitt & Associates", + "name": "Kirk Shin", + "email": "shin.kirk@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kirkshin/", + "campus": "LA", + "cohort": "31", + "jobTitle": "Frontend Developer", + "industry": "Government contractor", + "cities": ["El Paso", "Stockton", "San Diego"], + "_id": { + "$oid": "666cbc3240af7b375e3523b6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "GoodPup", + "name": "Eric Wells", + "email": "epiqu1n@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ewells2275/", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["San Diego", "San Francisco"], + "_id": { + "$oid": "666cbc3240af7b375e3523b7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "GoodRX", + "name": "Byron Jay Inocencio", + "email": "jay.byron@gmail.com", + "linkedIn": "https://www.linkedin.com/in/binocencio/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "Healthcare, Med-tech, Telemedecine", + "cities": ["Irving", "Mumbai", "Colorado Springs", "Chandler"], + "_id": { + "$oid": "666cbc3240af7b375e3523b8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "GoodRx", + "name": "Mike Richards", + "email": "mike@madebymtr.com", + "linkedIn": "https://www.linkedin.com/in/madebymtr/", + "campus": "LA", + "cohort": "11", + "jobTitle": "Senior Frontend Engineer", + "industry": "Healthcare", + "cities": ["Glendale", "Riverside", "New Orleans"], + "_id": { + "$oid": "666cbc3240af7b375e3523b9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Andie Ritter", + "email": "A.k.rittr@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andieritter/", + "campus": "LA", + "cohort": "34", + "jobTitle": "Software Engineer", + "industry": "Business Intelligence", + "cities": ["Virginia Beach", "Dallas", "Irving", "Chandler"], + "_id": { + "$oid": "666cbc3240af7b375e3523ba" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Ben Hawley", + "email": "benhawley0@gmail.com", + "linkedIn": "https://www.linkedin.com/in/benchawley/", + "campus": "NYC", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Phoenix"], + "_id": { + "$oid": "666cbc3240af7b375e3523bb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Brett Beekley", + "email": "brettbeekley@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brettbeekley/", + "campus": "LA", + "cohort": "15", + "jobTitle": "Senior Software Engineer, Site Reliability Engineering", + "industry": "Technology", + "cities": ["Fresno"], + "_id": { + "$oid": "666cbc3240af7b375e3523bc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Cameron Greer", + "email": "camgreer01@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cameron-greer/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer - Level 3", + "industry": "Technology", + "cities": ["Seattle", "Los Angeles", "Cincinnati", "Reno"], + "_id": { + "$oid": "666cbc3240af7b375e3523bd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Christian Padilla", + "email": "christianepadilla@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christianedwardpadilla/", + "campus": "NYC", + "cohort": "10", + "jobTitle": "Software Engineer (L3)", + "industry": "Frontend Mobile Development", + "cities": ["Tokyo", "Lexington", "Boston", "Cleveland"], + "_id": { + "$oid": "666cbc3240af7b375e3523be" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Crystal Pederson", + "email": "crystalpederson88@gmail.com", + "linkedIn": "https://www.linkedin.com/in/crystalpederson/", + "campus": "PTRI", + "cohort": "5", + "jobTitle": "Software Engineer (Frontend III)", + "industry": "Software / Tech", + "cities": ["Kansas City", "Cleveland", "Sydney", "Corpus Christi"], + "_id": { + "$oid": "666cbc3240af7b375e3523bf" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Edwin Lee", + "email": "edjl1289@gmail.com", + "linkedIn": "https://www.linkedin.com/in/edwinlee89/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Software Engineer", + "industry": "Cloud Service", + "cities": ["Stockton", "Chandler", "Saint Paul", "Raleigh"], + "_id": { + "$oid": "666cbc3240af7b375e3523c0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Ian Geckeler", + "email": "ikcgeckeler@gmail.com", + "linkedIn": "https://www.linkedin.com/in/iangeckeler/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Software Engineer", + "industry": "Adtech", + "cities": ["Orlando", "Indianapolis", "Lubbock", "Baltimore"], + "_id": { + "$oid": "666cbc3240af7b375e3523c1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Jeff Kang", + "email": "jeffreyrkang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jeffreyrkang/", + "campus": "LA", + "cohort": "21", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Houston", "Colorado Springs"], + "_id": { + "$oid": "666cbc3240af7b375e3523c2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Jenae Pennie", + "email": "jenaepen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jenae-pennie/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Software Engineer", + "industry": "Tech", + "cities": ["Kansas City", "Fort Worth", "Memphis"], + "_id": { + "$oid": "666cbc3240af7b375e3523c3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Jonathan Tam", + "email": "jktam336@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jktam/", + "campus": "LA", + "cohort": "47", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Seattle", "Albuquerque"], + "_id": { + "$oid": "666cbc3240af7b375e3523c4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Miguel Gonzalez", + "email": "MiguelGonzalez@alumni.upenn.edu", + "linkedIn": "https://www.linkedin.com/in/miguel-gonzalez96/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Software Engineer - Search Engine Privacy", + "industry": "Tech", + "cities": ["Corpus Christi", "St. Petersburg"], + "_id": { + "$oid": "666cbc3240af7b375e3523c5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Nak Young Kim", + "email": "nydkim@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nak-young-kim/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer", + "industry": "Social Media", + "cities": ["Paris"], + "_id": { + "$oid": "666cbc3240af7b375e3523c6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Patrick Liu", + "email": "patrickliu.hhs@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ptrkl/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Software Engineer", + "industry": "Tech", + "cities": ["Saint Paul", "Glendale", "New Orleans"], + "_id": { + "$oid": "666cbc3240af7b375e3523c7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Swetha Kunda", + "email": "swethakunda@gmail.com", + "linkedIn": "https://www.linkedin.com/in/swethakunda/", + "campus": "FTRI", + "cohort": "6", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Miami", "Portland"], + "_id": { + "$oid": "666cbc3240af7b375e3523c8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Cecilia Yena Choi", + "email": "yenachoi95@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ceciliayenachoi/", + "campus": "LA", + "cohort": "34", + "jobTitle": "Software Engineer", + "industry": "Tech", + "cities": ["Louisville", "Jacksonville", "Sydney"], + "_id": { + "$oid": "666cbc3240af7b375e3523c9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Google Cloud", + "name": "Sarah Heacock", + "email": "sarahheacock03@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sarah-heacock/", + "campus": "NYC", + "cohort": "2", + "jobTitle": "Software Engineer", + "industry": "Tech", + "cities": ["Mumbai", "San Diego"], + "_id": { + "$oid": "666cbc3240af7b375e3523ca" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "GoSite", + "name": "Alexander Young", + "email": "youngalexj00@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexander-young-7aabb7122/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Full Stack Engineer", + "industry": "Digital Services", + "cities": ["Miami", "Fresno"], + "_id": { + "$oid": "666cbc3240af7b375e3523cb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Govini", + "name": "Aaron Bumanglag", + "email": "aaron.k.bumanglag@gmail.com", + "linkedIn": "https://linkedin.com/akbuma", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Decision Science", + "cities": ["London", "Newark"], + "_id": { + "$oid": "666cbc3240af7b375e3523cc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Grailed", + "name": "Eugene Chen", + "email": "chen.eugene19@gmail.com", + "linkedIn": "https://www.linkedin.com/in/canopeia", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Junior Software Engineer", + "industry": "HR tech", + "cities": ["Jacksonville"], + "_id": { + "$oid": "666cbc3240af7b375e3523cd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Grailed", + "name": "Danni Ballena", + "email": "danni.ballena@gmail.com", + "linkedIn": "https://www.linkedin.com/in/danni-ballena/", + "campus": "LA", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Entertainment", + "cities": ["Corpus Christi", "Madison", "Tokyo"], + "_id": { + "$oid": "666cbc3240af7b375e3523ce" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Granular", + "name": "Charles Ryu", + "email": "charles.ryu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/charcharryu", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer", + "industry": "Agriculture Tech", + "cities": ["Pittsburgh", "Las Vegas", "Indianapolis"], + "_id": { + "$oid": "666cbc3240af7b375e3523cf" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Graphika", + "name": "Sam Carlile", + "email": "sam@samkc.me", + "linkedIn": "https://LinkedIn.com/in/samkcarlile", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Full Stack Engineer", + "industry": "Research & Analytics", + "cities": ["Mexico City", "Beijing", "Raleigh"], + "_id": { + "$oid": "666cbc3240af7b375e3523d0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Green Street Advisors", + "name": "Joshua Nordstrom", + "email": "joshua@jdnordstrom.com", + "linkedIn": "https://www.linkedin.com/in/jdnordy/", + "campus": "LA", + "cohort": "34", + "jobTitle": "Technology Associate", + "industry": "Real Estate", + "cities": ["Indianapolis"], + "_id": { + "$oid": "666cbc3240af7b375e3523d1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Greenphire", + "name": "Nicholas Krug", + "email": "n.e.krug@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nicholas-e-krug", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Application Developer III", + "industry": "Healthcare", + "cities": ["Kansas City", "Houston", "Washington", "Jacksonville"], + "_id": { + "$oid": "666cbc3240af7b375e3523d2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Greentech Financial Solutions", + "name": "Justin Hicks", + "email": "justinhickswork@gmail.com", + "linkedIn": "https://www.linkedin.com/in/justinlhicks/", + "campus": "LA / WCRI", + "cohort": "48", + "jobTitle": "Engineer", + "industry": "Fintech", + "cities": ["Austin"], + "_id": { + "$oid": "666cbc3240af7b375e3523d3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Grid Networks", + "name": "Trine Medina", + "email": "trinemedina@gmail.com", + "linkedIn": "www.linkedin.com/in/trinemedina", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["El Paso", "Chesapeake", "Newark", "Lexington"], + "_id": { + "$oid": "666cbc3240af7b375e3523d4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Gro Intelligence", + "name": "Damian Lim", + "email": "limd96@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lim-damian/", + "campus": "FTRI", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Agriculture Science", + "cities": ["Oakland", "St. Petersburg"], + "_id": { + "$oid": "666cbc3240af7b375e3523d5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Gro-Intelligence", + "name": "David Bernstein", + "email": "dxbernstein@gmail.com", + "linkedIn": "https://www.linkedin.com/in/davidsamuelbernstein/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Software Engineer (API/Data Visualization Team)", + "industry": "Agricultural Analytics", + "cities": ["Kansas City", "Riverside", "St. Louis"], + "_id": { + "$oid": "666cbc3240af7b375e3523d6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Groove Jones", + "name": "Kristopher Sorensen", + "email": "Krismsorensen@gmail.com", + "linkedIn": "Linkedin/in/kris-sorensen", + "campus": "FTRI / CTRI", + "cohort": "7", + "jobTitle": "Senior WebXR Developer", + "industry": "Other", + "cities": ["Lubbock", "Lincoln", "London"], + "_id": { + "$oid": "666cbc3240af7b375e3523d7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "GuideMe Solutions", + "name": "David Nadler", + "email": "Davidnadler9637@gmail.com", + "linkedIn": "https://www.linkedin.com/in/davenads/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Technical Consultant", + "industry": "Digital Adoption Software", + "cities": ["Nashville", "Berlin", "Los Angeles", "Lexington"], + "_id": { + "$oid": "666cbc3240af7b375e3523d8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Gulfstream", + "name": "Chris Hicks", + "email": "chrishicks430@gmail.com", + "linkedIn": "Www.LinkedIn.com/in/chrishicks430", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Application Developer", + "industry": "Aerospace", + "cities": ["St. Petersburg", "Reno", "Henderson", "Philadelphia"], + "_id": { + "$oid": "666cbc3240af7b375e3523d9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Guy Carpenter", + "name": "Dennis Palomo", + "email": "dennispalomo@icloud.com", + "linkedIn": "https://linkedin.com/in/dennispalomo", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Developer", + "industry": "Insurance", + "cities": ["Gilbert", "Anaheim", "Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e3523da" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "HackerOne", + "name": "Catherine Chiu", + "email": "catherinechiuu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cchiu2/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Engineer II", + "industry": "Cybersecurity", + "cities": ["Indianapolis"], + "_id": { + "$oid": "666cbc3240af7b375e3523db" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "HackerOne", + "name": "Serena Kuo", + "email": "hello@serenakuo.com", + "linkedIn": "https://www.linkedin.com/in/serenakuo/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Senior Software Engineer", + "industry": "Computer Safety", + "cities": ["Anaheim", "New York", "Cincinnati"], + "_id": { + "$oid": "666cbc3240af7b375e3523dc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "HackerOne", + "name": "Haejin Jo", + "email": "swe.haejin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/haejinjo", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Engineer", + "industry": "Cybersecurity", + "cities": ["Lincoln"], + "_id": { + "$oid": "666cbc3240af7b375e3523dd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Halo Investing", + "name": "Gareth Leake", + "email": "gfleake@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gareth-leake/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "Finance", + "cities": ["Arlington", "Irving", "Baltimore", "Beijing"], + "_id": { + "$oid": "666cbc3240af7b375e3523de" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Handshake", + "name": "Annie Shin", + "email": "annieshin51@gmail.com", + "linkedIn": "https://www.linkedin.com/in/annieshinn/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer, Platform Services Team", + "industry": "Recruiting", + "cities": ["Phoenix", "Chandler"], + "_id": { + "$oid": "666cbc3240af7b375e3523df" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Handshake", + "name": "Chase Benjamin", + "email": "chasebenjamin6@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chase-benjamin300/", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Growth Engineer", + "industry": "Other", + "cities": ["Toronto", "Raleigh", "St. Petersburg", "Austin"], + "_id": { + "$oid": "666cbc3240af7b375e3523e0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Handshake", + "name": "Jeffrey Lu", + "email": "hi@jeffreyclu.com", + "linkedIn": "https://www.linkedin.com/in/jeffreyclu/", + "campus": "PTRI", + "cohort": "Beta", + "jobTitle": "Software Engineer", + "industry": "Education", + "cities": ["San Francisco", "Colorado Springs", "Memphis", "Orlando"], + "_id": { + "$oid": "666cbc3240af7b375e3523e1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Handshake", + "name": "Joel Pratt", + "email": "pratt.joel@gmail.com", + "linkedIn": "https://www.linkedin.com/in/pratt-joel/", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Memphis"], + "_id": { + "$oid": "666cbc3240af7b375e3523e2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Harbor.ai", + "name": "Rodolfo Guzman", + "email": "Rodolfoguzman147@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rodolfo-guzman-59249594/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Full Stack Developer", + "industry": "Insurance Tech", + "cities": ["North Las Vegas", "Chesapeake", "Jersey City", "Memphis"], + "_id": { + "$oid": "666cbc3240af7b375e3523e3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Harness Inc.", + "name": "Tran McFarland Nguyen", + "email": "tranviolin@me.com", + "linkedIn": "https://www.linkedin.com/in/tranmcfarlandnguyen/", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Senior UX Designer", + "industry": "Software / Tech", + "cities": ["Baltimore", "Atlanta", "Austin", "Mexico City"], + "_id": { + "$oid": "666cbc3240af7b375e3523e4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Harver", + "name": "Will Robinson", + "email": "wrobinson91@gmail.com", + "linkedIn": "https://www.linkedin.com/in/wrobinson91", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Fullstack Engineer", + "industry": "Applicant Tracking Software", + "cities": ["Lubbock", "Memphis"], + "_id": { + "$oid": "666cbc3240af7b375e3523e5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Health Note", + "name": "Jeffrey Sul", + "email": "jeffsul97@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jsul/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer", + "industry": "Medical CRM", + "cities": ["Tulsa"], + "_id": { + "$oid": "666cbc3240af7b375e3523e6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Healthcare.com", + "name": "Stephen Jue", + "email": "steve.h.jue@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stephen-jue09/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Software Engineer - Front End", + "industry": "Other", + "cities": ["Fort Worth", "Minneapolis", "Stockton", "St. Louis"], + "_id": { + "$oid": "666cbc3240af7b375e3523e7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Healthgrades", + "name": "Joel K. Perkins", + "email": "Joel.climbs@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joelkperkins/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["San Jose"], + "_id": { + "$oid": "666cbc3240af7b375e3523e8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hearst", + "name": "Josh Roberts", + "email": "josh@quantumspot.io", + "linkedIn": "https://www.linkedin.com/in/joshrobertsv2/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Lead Frontend Engineer", + "industry": "Media", + "cities": ["Boston"], + "_id": { + "$oid": "666cbc3240af7b375e3523e9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hearst", + "name": "Rob Nobile", + "email": "robert.nobile@gmail.com", + "linkedIn": "https://www.linkedin.com/in/robnobile/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer", + "industry": "Media", + "cities": ["Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e3523ea" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hearst Newspaper", + "name": "Kevin Sarchi", + "email": "kevinsarchi@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/kevin-sarchi/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Associate Software Engineer", + "industry": "Media", + "cities": ["Anchorage"], + "_id": { + "$oid": "666cbc3240af7b375e3523eb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hearth", + "name": "Vince Ho", + "email": "vinceho022@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vinceho022/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Backend Engineer", + "industry": "Fintech", + "cities": ["Long Beach"], + "_id": { + "$oid": "666cbc3240af7b375e3523ec" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Heartland", + "name": "Lloyd Bistany", + "email": "lloydbistany@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lloyd-bistany", + "campus": "NYOI", + "cohort": "3", + "jobTitle": "Software Developer", + "industry": "Business Tech/Enterprise Tech", + "cities": ["Stockton", "Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e3523ed" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Helix", + "name": "Robert Crocker", + "email": "robert@vizsimply.com", + "linkedIn": "https://www.linkedin.com/in/robertcrocker/", + "campus": "PTRI", + "cohort": "4", + "jobTitle": "Data Visualization Engineer", + "industry": "Bio Tech", + "cities": ["Wichita", "Portland", "Mesa", "San Diego"], + "_id": { + "$oid": "666cbc3240af7b375e3523ee" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hertz", + "name": "Michael Costello", + "email": "mcostello91@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mcostello-swe/", + "campus": "FTRI / CTRI", + "cohort": "12", + "jobTitle": "Software Engineer", + "industry": "Automotive", + "cities": ["Glendale", "Sรฃo Paulo", "Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e3523ef" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Highnote", + "name": "Trevor Carr", + "email": "trevor.a.carr@gmail.com", + "linkedIn": "https://www.linkedin.com/in/carr-trevor/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Software", + "cities": ["Pittsburgh"], + "_id": { + "$oid": "666cbc3240af7b375e3523f0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hilton", + "name": "Andrei Cabrera", + "email": "andrei.cabrera@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andrei-cabrera/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Backend Software Engineer", + "industry": "Entertainment", + "cities": ["Lincoln", "Aurora"], + "_id": { + "$oid": "666cbc3240af7b375e3523f1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hilton", + "name": "Nick Andreala", + "email": "nandreala@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nickandreala/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Front-End Software Engineer", + "industry": "Hospitality", + "cities": ["Henderson", "Cincinnati", "Philadelphia"], + "_id": { + "$oid": "666cbc3240af7b375e3523f2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hilton", + "name": "Conor Sexton", + "email": "sextonc@me.com", + "linkedIn": "https://www.linkedin.com/in/sextonc/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Render Tier Engineer", + "industry": "Hospitality", + "cities": ["Chicago"], + "_id": { + "$oid": "666cbc3240af7b375e3523f3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hinge Health", + "name": "Ahsan Rao", + "email": "ahsan.ijaz.rao@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ahsan-rao/", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Software Engineer - Full-Stack", + "industry": "Healthcare", + "cities": ["Houston"], + "_id": { + "$oid": "666cbc3240af7b375e3523f4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hinge Health", + "name": "Evan King", + "email": "evanking112@gmail.com", + "linkedIn": "https://www.linkedin.com/in/evanking11/", + "campus": "LA", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Healthcare Technology", + "cities": ["Austin", "Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e3523f5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hinge Health", + "name": "Vanessa Lutz", + "email": "vanessayplutz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vanessa-lutz", + "campus": "FTRI", + "cohort": "2", + "jobTitle": "Software Engineer", + "industry": "Health", + "cities": ["North Las Vegas", "Mesa"], + "_id": { + "$oid": "666cbc3240af7b375e3523f6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hireology", + "name": "Stella Baek", + "email": "seungyeon1008@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stellabaek/", + "campus": "LA / WCRI", + "cohort": "54", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Chicago", "Philadelphia", "Toronto", "Anchorage"], + "_id": { + "$oid": "666cbc3240af7b375e3523f7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "HiTactics/ ZH Solutions Inc.", + "name": "Sidhi Gosain", + "email": "sidhigosain@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sidhi-gosain/", + "campus": "LA", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Anchorage", "Mesa", "Tokyo"], + "_id": { + "$oid": "666cbc3240af7b375e3523f8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "HiThrive", + "name": "Zack Daniels", + "email": "Zackdanielsnyc@gmail.com", + "linkedIn": "https://www.linkedin.com/in/zackdanielsnyc/", + "campus": "LA", + "cohort": "49", + "jobTitle": "Full stack software engineer", + "industry": "Other", + "cities": ["Lincoln"], + "_id": { + "$oid": "666cbc3240af7b375e3523f9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hive", + "name": "Max Latoche", + "email": "max.latoche@gmail.com", + "linkedIn": "https://www.linkedin.com/in/maxlatoche/", + "campus": "NYC", + "cohort": "2", + "jobTitle": "Senior Software Engineer", + "industry": "Tech", + "cities": ["Oakland"], + "_id": { + "$oid": "666cbc3240af7b375e3523fa" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hive Technologies Inc", + "name": "Lilah August", + "email": "lilahraeaugust@gmail.com", + "linkedIn": "https://www.linkedin.com/lilahaugust", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Software Engineer", + "industry": "Automotive", + "cities": ["Washington", "Memphis", "St. Petersburg"], + "_id": { + "$oid": "666cbc3240af7b375e3523fb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "HOF Capital", + "name": "Frank Hu", + "email": "frank.junhu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/frankjunhu/", + "campus": "NYC", + "cohort": "2", + "jobTitle": "Venture Analyst", + "industry": "", + "cities": ["Toledo"], + "_id": { + "$oid": "666cbc3240af7b375e3523fc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Home Depot", + "name": "Hannah Santoyo", + "email": "hannah.santoyo7@gmail.com", + "linkedIn": "linkedin.com/in/hannah-santoyo", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Fullstack Software Engineer", + "industry": "Retail", + "cities": ["Beijing", "Buffalo", "Kansas City"], + "_id": { + "$oid": "666cbc3240af7b375e3523fd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Honey (PayPal)", + "name": "Jenny Hai", + "email": "jenny.hai420@gmail.com", + "linkedIn": "https://www.linkedin.com/in/Jenny-hai/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer II", + "industry": "Fintech / Ecommerce", + "cities": ["Paris", "Boston"], + "_id": { + "$oid": "666cbc3240af7b375e3523fe" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hooray Agency", + "name": "Aris Razuri", + "email": "arazuli4@gmail.com", + "linkedIn": "https://www.linkedin.com/in/aris-razuri/", + "campus": "LA", + "cohort": "34", + "jobTitle": "Junior Frontend Developer", + "industry": "Marketing & Advertising", + "cities": ["San Jose", "Denver"], + "_id": { + "$oid": "666cbc3240af7b375e3523ff" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hopin", + "name": "Linda Wishingrad", + "email": "linda.wishingrad@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lindawishingrad/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Front End Engineer", + "industry": "Tech", + "cities": ["Toledo", "Irving", "London", "Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e352400" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hopin", + "name": "Rachel Yoo", + "email": "yoo.rache@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rachel-yoo/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Frontend Engineer", + "industry": "Online Events Platform", + "cities": ["Plano", "Buffalo"], + "_id": { + "$oid": "666cbc3240af7b375e352401" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hopkins", + "name": "Nicole Abramowski", + "email": "nabramow@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nicoleabramowski/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Law", + "cities": ["Chula Vista"], + "_id": { + "$oid": "666cbc3240af7b375e352402" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "HotPyp", + "name": "Kendall Lu", + "email": "kendall.luu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kendall-lu/", + "campus": "LA", + "cohort": "31", + "jobTitle": "Front End Software Engineer", + "industry": "Cyber Security", + "cities": ["Madison", "Jacksonville", "Portland"], + "_id": { + "$oid": "666cbc3240af7b375e352403" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Howl", + "name": "Adam Allison", + "email": "allisonadam81@gmail.com", + "linkedIn": "https://www.linkedin.com/in/allisonadam81/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Full Stack Software Engineer", + "industry": "Other", + "cities": ["Sacramento", "Miami", "Mesa", "Stockton"], + "_id": { + "$oid": "666cbc3240af7b375e352404" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Howl", + "name": "Ryan Wallace", + "email": "ryanwallace1396@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rwallie/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Software Engineer", + "industry": "Media", + "cities": ["Jacksonville"], + "_id": { + "$oid": "666cbc3240af7b375e352405" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hoylu", + "name": "Judy Song", + "email": "judysongg@gmail.com", + "linkedIn": "https://www.linkedin.com/in/judysongg/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Sydney", "Miami", "Tampa"], + "_id": { + "$oid": "666cbc3240af7b375e352406" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "HqO", + "name": "Shadman Khan", + "email": "shadmankhan.825@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shadmanmkhan/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Senior Software Engineer", + "industry": "Tenant Experience Platform/Commercial Real Estate", + "cities": ["Aurora", "Memphis", "Colorado Springs"], + "_id": { + "$oid": "666cbc3240af7b375e352407" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "HubSpot", + "name": "Michael Caballero", + "email": "caballeromichaelus@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael-caballero-a48b0b211/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Senior Software Engineer I", + "industry": "Software", + "cities": ["Oklahoma City", "New York", "Plano"], + "_id": { + "$oid": "666cbc3240af7b375e352408" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Human Interest", + "name": "Paulo Choi", + "email": "Paulinho@hey.com", + "linkedIn": "https://www.linkedin.com/in/paulochoi", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Reno"], + "_id": { + "$oid": "666cbc3240af7b375e352409" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Humana", + "name": "Jeffery Richardson", + "email": "Jeffery.erichardson03@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jefferyrichardsonii", + "campus": "FTRI / CTRI", + "cohort": "12", + "jobTitle": "Senior Software Engineer", + "industry": "Insurance", + "cities": ["Oakland", "Indianapolis"], + "_id": { + "$oid": "666cbc3240af7b375e35240a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "HumanQ", + "name": "Aya Moosa", + "email": "ayamoosa1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ayamoosa/", + "campus": "LA / WCRI", + "cohort": "55", + "jobTitle": "Full Stack Developer", + "industry": "Other", + "cities": ["Albuquerque", "Mexico City"], + "_id": { + "$oid": "666cbc3240af7b375e35240b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hunter Strategy", + "name": "Rankin Draa", + "email": "rankindraa@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rankin-draa/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Application Developer", + "industry": "IT Services", + "cities": ["Las Vegas", "Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e35240c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hy-Vee", + "name": "Daniel An", + "email": "da568@georgetown.edu", + "linkedIn": "https://www.linkedin.com/in/d-an96/", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Restaurant, Food, and Beverage", + "cities": ["Reno", "Orlando", "Winston-Salem", "Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e35240d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hy-Vee", + "name": "Paul Perez", + "email": "pau.per92@gmail.com", + "linkedIn": "https://www.linkedin.com/in/perezp92", + "campus": "NYC / ECRI", + "cohort": "31", + "jobTitle": "Software Engineer II", + "industry": "Restaurant, Food, and Beverage", + "cities": ["Lexington", "Greensboro", "Memphis", "Minneapolis"], + "_id": { + "$oid": "666cbc3240af7b375e35240e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hyliion", + "name": "Gordon Yu", + "email": "gordon@gordonyu.com", + "linkedIn": "https://www.linkedin.com/in/gordonu/", + "campus": "LA", + "cohort": "16", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Electric Vehicles", + "cities": ["Irvine", "Saint Paul", "Philadelphia", "Colorado Springs"], + "_id": { + "$oid": "666cbc3240af7b375e35240f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.249Z" + }, + "__v": 0 + }, + { + "company": "Hypergiant", + "name": "Abu Fofanah", + "email": "Bubakarrr@gmail.com", + "linkedIn": "https://www.linkedin.com/in/Abu-Fofanah/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Senior Frontend Developer", + "industry": "Technology", + "cities": ["Indianapolis", "Toronto", "Los Angeles"], + "_id": { + "$oid": "666cbc3240af7b375e352410" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Hyperproof", + "name": "Tai Nguyen", + "email": "ndhuutai1@gmail.com", + "linkedIn": "", + "campus": "PTRI", + "cohort": "Beta", + "jobTitle": "Software Engineer", + "industry": "Compliance Operations", + "cities": ["Wichita", "Philadelphia", "San Diego"], + "_id": { + "$oid": "666cbc3240af7b375e352411" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Hyster-Yale Group", + "name": "Patrick Mojica", + "email": "patrickmojica@gmail.com", + "linkedIn": "https://www.linkedin.com/in/patrick-mojica/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Software Engineer II - Emerging Technology", + "industry": "Automotive", + "cities": ["Sรฃo Paulo"], + "_id": { + "$oid": "666cbc3240af7b375e352412" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "IAPP", + "name": "Wanlu Ding", + "email": "wanlu.ding@gmail.com", + "linkedIn": "https://www.linkedin.com/in/wanlu-ding/", + "campus": "NYC / ECRI", + "cohort": "42", + "jobTitle": "Fullstack software engineer (Contractor)", + "industry": "Consulting", + "cities": ["San Francisco"], + "_id": { + "$oid": "666cbc3240af7b375e352413" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "IBI Group", + "name": "wisdom liu", + "email": "wliu1290@gmail.com", + "linkedIn": "https://www.linkedin.com/in/wisdom-liu/", + "campus": "LA", + "cohort": "27", + "jobTitle": "Software Developer", + "industry": "Architectural Services", + "cities": ["Jacksonville", "Philadelphia", "Kansas City", "Wichita"], + "_id": { + "$oid": "666cbc3240af7b375e352414" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "IBM", + "name": "Annette Lin", + "email": "al261310@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alin10/", + "campus": "NYC", + "cohort": "9", + "jobTitle": "Software engineer, backend", + "industry": "IT", + "cities": ["Houston", "Fort Worth", "Winston-Salem", "Reno"], + "_id": { + "$oid": "666cbc3240af7b375e352415" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "IBM", + "name": "Jimmy Deng", + "email": "Jdeng619@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/zhijimmydeng/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Software Developer - Cloud Software Developer", + "industry": "Sales? Tbh idk", + "cities": ["North Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e352416" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "IBM", + "name": "Kyle Jurassic", + "email": "kjurassic@protonmail.com", + "linkedIn": "https://www.linkedin.com/in/kylejurassic/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Cloud Engineer", + "industry": "Technology", + "cities": ["Beijing"], + "_id": { + "$oid": "666cbc3240af7b375e352417" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "IBM", + "name": "Nader Almogazy", + "email": "nader73107@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nader-almogazy-97603080/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Tech", + "cities": ["Minneapolis", "San Diego"], + "_id": { + "$oid": "666cbc3240af7b375e352418" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "IBM", + "name": "Brian Bui", + "email": "umius.brian@gmail.com", + "linkedIn": "https://www.linkedin.com/in/umius-brian/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Cloud Engineer", + "industry": "Information Technology & Services", + "cities": ["New Orleans", "Oklahoma City", "Memphis", "Oakland"], + "_id": { + "$oid": "666cbc3240af7b375e352419" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "IBM", + "name": "Vessy Shestorkina", + "email": "v.shestorkina@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shestorkina/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Full Stack Developer", + "industry": "Technology & Consulting", + "cities": ["Virginia Beach", "Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e35241a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Icetec Energy Services", + "name": "Nicholas Ly", + "email": "lynick14@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nicholasly/", + "campus": "FTRI / CTRI", + "cohort": "15", + "jobTitle": "Senior Applications Engineer", + "industry": "Other", + "cities": ["Stockton", "Tulsa", "Laredo", "Detroit"], + "_id": { + "$oid": "666cbc3240af7b375e35241b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "ICF", + "name": "David Cheng", + "email": "davidzcheng@protonmail.com", + "linkedIn": "https://www.linkedin.com/in/davidzcheng/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Software Engineer", + "industry": "Consulting", + "cities": ["Stockton"], + "_id": { + "$oid": "666cbc3240af7b375e35241c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "ICF", + "name": "Gwen Phillips", + "email": "gwen.phil@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gwen-phillips/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Frontend Developer", + "industry": "Consulting", + "cities": ["Lincoln"], + "_id": { + "$oid": "666cbc3240af7b375e35241d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "IDEMIA", + "name": "David Conrad Friesen", + "email": "conrad.friesen@pm.me", + "linkedIn": "https://www.linkedin.com/in/conrad-friesen/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Software Engineer I", + "industry": "Software / Tech", + "cities": ["Mumbai", "Plano"], + "_id": { + "$oid": "666cbc3240af7b375e35241e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Idemia", + "name": "Tommy Edmunds", + "email": "tommyedmunds5@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tommy-edmunds-a91aa41a9/", + "campus": "FTRI", + "cohort": "2", + "jobTitle": "Software Engineer", + "industry": "Security", + "cities": ["Tokyo", "Los Angeles", "Anchorage"], + "_id": { + "$oid": "666cbc3240af7b375e35241f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "iHeartMedia", + "name": "Genevieve Annable", + "email": "genevieveannable@gmail.com", + "linkedIn": "https://www.linkedin.com/in/genevieveannable/", + "campus": "LA", + "cohort": "47", + "jobTitle": "Full-Stack Engineer", + "industry": "Entertainment", + "cities": ["Durham", "Bakersfield"], + "_id": { + "$oid": "666cbc3240af7b375e352420" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "iHeartMedia", + "name": "Alexa Nunes", + "email": "alexaraenunes@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexanunes/", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Software Engineer", + "industry": "News/Entertainment/Streaming Platforms", + "cities": ["Durham", "Mesa", "Laredo", "Irving"], + "_id": { + "$oid": "666cbc3240af7b375e352421" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "iHeartRadio", + "name": "Serhii Kaistrenko", + "email": "skaistrenko@gmail.com", + "linkedIn": "https://www.linkedin.com/in/skaistrenko/", + "campus": "NYC", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Hospitality", + "cities": ["Santa Ana", "Washington", "Portland", "Albuquerque"], + "_id": { + "$oid": "666cbc3240af7b375e352422" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Impending Bloom", + "name": "William Magee", + "email": "wmagee03@gmail.com", + "linkedIn": "https://www.linkedin.com/in/william-magee-22a677181/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Data Engineer", + "industry": "Fintech", + "cities": ["Wichita", "Mexico City"], + "_id": { + "$oid": "666cbc3240af7b375e352423" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Inari", + "name": "Kelly Dekitani", + "email": "kellydekitani@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kelly-dekitani/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Full Stack Engineer", + "industry": "Biotech/Agriculture", + "cities": ["San Francisco", "Winston-Salem", "Columbus", "Los Angeles"], + "_id": { + "$oid": "666cbc3240af7b375e352424" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Inbrace", + "name": "Jim Yoon", + "email": "jimyoon90@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jimkyoon", + "campus": "LA", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Health", + "cities": ["St. Petersburg", "Cleveland", "Nashville", "New York"], + "_id": { + "$oid": "666cbc3240af7b375e352425" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Industrious", + "name": "Bryan Li", + "email": "Bryan.li@foxmail.com", + "linkedIn": "https://www.linkedin.com/in/bbbryan14/", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Atlanta", "Madison"], + "_id": { + "$oid": "666cbc3240af7b375e352426" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Infinite Computer Solutions", + "name": "Brianna Sookhoo", + "email": "brianna.sookhoo24@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brianna-sookhoo/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Honolulu"], + "_id": { + "$oid": "666cbc3240af7b375e352427" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Influent", + "name": "Adam Berri", + "email": "adamberri123@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adamberri/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Software Engineer 1", + "industry": "Social Media", + "cities": ["Aurora", "Reno", "Chesapeake"], + "_id": { + "$oid": "666cbc3240af7b375e352428" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Influx Data", + "name": "Grace Spletzer", + "email": "gracespletzer05@gmail.com", + "linkedIn": "https://www.linkedin.com/in/grace-spletzer/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Engineer I", + "industry": "Database service", + "cities": ["Cleveland", "Tampa"], + "_id": { + "$oid": "666cbc3240af7b375e352429" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "InfluxData", + "name": "Bill OConnell", + "email": "wdoconnell@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bill-oconnell/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "SaaS", + "cities": ["Portland", "Laredo", "Detroit", "Winston-Salem"], + "_id": { + "$oid": "666cbc3240af7b375e35242a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Infor", + "name": "Olga Naumova", + "email": "leliknaum@gmail.com", + "linkedIn": "https://www.linkedin.com/in/onaumova/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "software", + "cities": ["Corpus Christi", "Scottsdale", "Lubbock"], + "_id": { + "$oid": "666cbc3240af7b375e35242b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Infosys", + "name": "Honghao Sun", + "email": "ilovepuffseven@gmail.com", + "linkedIn": "https://www.linkedin.com/in/honghaosunmichael/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Technical lead", + "industry": "IT Services", + "cities": ["Riverside", "Jacksonville"], + "_id": { + "$oid": "666cbc3240af7b375e35242c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Infosys", + "name": "Reuben Kirsh", + "email": "reubenakirsh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/reubenkirsh/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Technology Analyst", + "industry": "Tech", + "cities": ["Stockton", "Tokyo", "Tulsa"], + "_id": { + "$oid": "666cbc3240af7b375e35242d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Infosys", + "name": "Samuel Ratemo", + "email": "Sratemo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/samuelratemo/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Technology lead -US", + "industry": "Entertainment", + "cities": ["Baltimore", "Tokyo", "Miami"], + "_id": { + "$oid": "666cbc3240af7b375e35242e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Inhance Digital", + "name": "Brian Chiang", + "email": "chiangbri@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ch-brian/", + "campus": "LA", + "cohort": "34", + "jobTitle": "Software Engineer", + "industry": "Marketing", + "cities": ["Irvine", "Greensboro", "Fort Worth", "Buffalo"], + "_id": { + "$oid": "666cbc3240af7b375e35242f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Initiative", + "name": "Brian Cheng", + "email": "Chengbrian24@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brian-cheng24/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Full Stack Developer", + "industry": "Media Agency", + "cities": ["Pittsburgh"], + "_id": { + "$oid": "666cbc3240af7b375e352430" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "INLT", + "name": "Andrew Wong", + "email": "andwong91@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andwong91/", + "campus": "LA", + "cohort": "23", + "jobTitle": "Full Stack Developer", + "industry": "", + "cities": ["Lincoln"], + "_id": { + "$oid": "666cbc3240af7b375e352431" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Inman", + "name": "David Kim", + "email": "scriptura7773@gmail.com", + "linkedIn": "https://www.linkedin.com/in/davidkim7773/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Developer", + "industry": "Real Estate", + "cities": ["Irvine", "Colorado Springs", "Seattle"], + "_id": { + "$oid": "666cbc3240af7b375e352432" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Innovative Defense Technologies", + "name": "Daniel Pietsch", + "email": "drpietsch14@gmail.com", + "linkedIn": "https://www.linkedin.com/in/danielpietsch14/", + "campus": "NYOI", + "cohort": "1", + "jobTitle": "Associate Software Engineer", + "industry": "Other", + "cities": ["Durham"], + "_id": { + "$oid": "666cbc3240af7b375e352433" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "InRhythm", + "name": "Altai Chiang", + "email": "altai.chiang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/altaic/", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Senior Software Engineer", + "industry": "Consulting", + "cities": ["Nashville", "Tampa"], + "_id": { + "$oid": "666cbc3240af7b375e352434" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "InRhythm", + "name": "Eric Marcatoma", + "email": "ericmarc159@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ericmarc159/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "Information Technology & Services", + "cities": ["Lexington", "Lincoln", "Charlotte"], + "_id": { + "$oid": "666cbc3240af7b375e352435" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "InRhythm", + "name": "Benjamin Johnson", + "email": "johnsben002@gmail.com", + "linkedIn": "https://www.linkedin.com/in/johnsben002/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Software Engineer: Web Accessibility", + "industry": "Consulting", + "cities": ["Phoenix"], + "_id": { + "$oid": "666cbc3240af7b375e352436" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "InRhythm", + "name": "Johnson Che", + "email": "Johnson.Che01@gmail.com", + "linkedIn": "https://www.linkedin.com/in/johnsonche/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Consulting", + "cities": ["Columbus", "North Las Vegas", "Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e352437" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "InRhythm", + "name": "Wai Fai Lau", + "email": "wlau8088@gmail.com", + "linkedIn": "https://www.linkedin.com/in/wai-fai-lau/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "Software Consulting", + "cities": ["Houston", "Berlin", "Philadelphia"], + "_id": { + "$oid": "666cbc3240af7b375e352438" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Insider, Inc.", + "name": "Michael Lauri", + "email": "michael.lauri@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mlauri/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer II", + "industry": "Online Media", + "cities": ["Winston-Salem"], + "_id": { + "$oid": "666cbc3240af7b375e352439" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Insider, Inc.", + "name": "Mitchel Severe", + "email": "mitchelsevere@gmail.com", + "linkedIn": "https://www.linkedin.com/in/misevere/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Software Engineer III", + "industry": "Digital Media", + "cities": ["Los Angeles", "Baltimore", "Fresno"], + "_id": { + "$oid": "666cbc3240af7b375e35243a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Insight Global", + "name": "Lucas Mobley", + "email": "Lucas.W.Mobley@Gmail.com", + "linkedIn": "https://www.linkedin.com/in/lucasmobley/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Front End Developer", + "industry": "Entertainment", + "cities": ["Norfolk", "Arlington"], + "_id": { + "$oid": "666cbc3240af7b375e35243b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Insight Global (contract for Nike)", + "name": "Dave Franz", + "email": "davefranz@me.com", + "linkedIn": "https://www.linkedin.com/in/dave-franz/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Senior Full-Stack Automation Developer", + "industry": "athletic footwear and apparel", + "cities": ["Greensboro", "Scottsdale", "Washington"], + "_id": { + "$oid": "666cbc3240af7b375e35243c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Insight Global Consulting", + "name": "Andrew Kessinger", + "email": "andrew.kessinger@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "27", + "jobTitle": "React developer", + "industry": "Consulting", + "cities": ["Corpus Christi", "Chesapeake"], + "_id": { + "$oid": "666cbc3240af7b375e35243d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Instride", + "name": "Jayvee Aspa", + "email": "jayvee.aspa@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jayveeaspa/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Education", + "cities": ["Jacksonville", "Columbus", "Anaheim"], + "_id": { + "$oid": "666cbc3240af7b375e35243e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Integral", + "name": "Anna Larouche", + "email": "alarouche@gmail.com", + "linkedIn": "https://www.linkedin.com/in/anna-larouche/", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Full-stack Engineer", + "industry": "Healthcare", + "cities": ["Chesapeake"], + "_id": { + "$oid": "666cbc3240af7b375e35243f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Intelepeer", + "name": "Colton Robbins", + "email": "coltondr@gmail.com", + "linkedIn": "https://www.linkedin.com/in/c-robbins/", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Developer", + "industry": "Other", + "cities": ["Houston", "Phoenix", "New York", "Detroit"], + "_id": { + "$oid": "666cbc3240af7b375e352440" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Intellective", + "name": "Dennis Lopez", + "email": "dnnis.lpz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dennis-lopezsb/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Full-Stack Developer", + "industry": "Internet", + "cities": ["Irvine", "Lincoln", "Chicago", "Mexico City"], + "_id": { + "$oid": "666cbc3240af7b375e352441" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Intent Media", + "name": "Denali DeMots", + "email": "denali.demots@gmail.com", + "linkedIn": "https://www.linkedin.com/in/denali-demots/", + "campus": "NYC", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Chicago", "Raleigh", "Aurora"], + "_id": { + "$oid": "666cbc3240af7b375e352442" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Interactive Brokers", + "name": "Luke McInerney", + "email": "mciluke@gmail.com", + "linkedIn": "https://www.linkedin.com/in/luke-mcinerney/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Gilbert"], + "_id": { + "$oid": "666cbc3240af7b375e352443" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Intercom", + "name": "Michael Colley", + "email": "michael.e.colley@googlemail.com", + "linkedIn": "https://www.linkedin.com/in/michaelecolley/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Product Engineer", + "industry": "SaaS, business creation services", + "cities": ["Louisville"], + "_id": { + "$oid": "666cbc3240af7b375e352444" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "International association of the better business bureau", + "name": "Giovanni Rodriguez", + "email": "Gjrod16@gmail.com", + "linkedIn": "https://www.linkedin.com/in/giovanni-rodriguez2?trk=public_profile_browsemap&challengeId=AQFtoT_NoFD3KAAAAYkntGZKTiNfC60o4v2Z4zYAnz_4_KDTQUBD7ql40SFHKBenfzE9c6FBwiMar6V09FHeEqmjVS1EAfJ7Ag&submissionId=3cc6cd5a-1812-6f17-7ceb-2e5c0f6f3658&challengeSource=AgFf2bVUVWWRnwAAAYkntJ9Q3ysytHHh91YXaw8gQiFJEKewOYeYX6rLjYNFhlQ&challegeType=AgGCPMxM5AqqqwAAAYkntJ9TeXuuC8zmVgvrjuLxi773fqd8_2_50rU&memberId=AgFbJ9qnK0duCgAAAYkntJ9WYBoUAlgShMkO190TrWZI9XA&recognizeDevice=AgGnKEfL32RWyAAAAYkntJ9aHRqgkhTAzFQoMuIEWQbDY5Tac0sU", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Full Stack Developer", + "industry": "Other", + "cities": ["Oakland", "Denver"], + "_id": { + "$oid": "666cbc3240af7b375e352445" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "International Business Machines", + "name": "Michael Evans", + "email": "amike.evans@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael-evans-8278b865/", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Lead Full Stack Developer", + "industry": "Computer Software", + "cities": ["San Francisco", "Tulsa", "Kansas City"], + "_id": { + "$oid": "666cbc3240af7b375e352446" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Intrinsic Enterprises", + "name": "Jasmine A Gonzalez", + "email": "jasminezalez@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jasminezalez/", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Fort Wayne"], + "_id": { + "$oid": "666cbc3240af7b375e352447" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Intuit", + "name": "Daria Bondarenko", + "email": "dan4ik18@gmail.com", + "linkedIn": "https://www.linkedin.com/in/daria-b/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer", + "industry": "Enterprise Software", + "cities": ["Houston", "Madison", "Tokyo"], + "_id": { + "$oid": "666cbc3240af7b375e352448" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Intuit", + "name": "Davide Molino", + "email": "davidemmolino@gmail.com", + "linkedIn": "https://www.linkedin.com/in/davide-molino/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer III", + "industry": "Technology", + "cities": ["Wichita", "Oklahoma City", "Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e352449" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Intuit", + "name": "Manjeet Kaur", + "email": "manjeet175@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kaurmanjeet/", + "campus": "NYC", + "cohort": "5", + "jobTitle": "Senior Frontend Engineer", + "industry": "", + "cities": ["Oakland", "Kansas City", "Houston", "Austin"], + "_id": { + "$oid": "666cbc3240af7b375e35244a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Intuit", + "name": "Matthew Marchand", + "email": "matthew.marchand.93@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mnmarchand/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Software Engineer II", + "industry": "Fintech", + "cities": ["Sรฃo Paulo", "North Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e35244b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "intuit", + "name": "Yevgeniy Skroznikov", + "email": "yevskro@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yevgeniyskroznikov/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Software Engineer II", + "industry": "Enterprise software", + "cities": ["Toledo"], + "_id": { + "$oid": "666cbc3240af7b375e35244c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "InvestCloud", + "name": "Curtis Lovrak", + "email": "curtislovrak@gmail.com", + "linkedIn": "https://www.linkedin.com/in/curtislovrak/", + "campus": "NYOI", + "cohort": "4", + "jobTitle": "UI Developer", + "industry": "Fintech", + "cities": ["Aurora", "San Antonio"], + "_id": { + "$oid": "666cbc3240af7b375e35244d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Invisory", + "name": "Thomas Kady", + "email": "thomas.kady@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thomas-kady/", + "campus": "FTRI / CTRI", + "cohort": "14", + "jobTitle": "Software Developer", + "industry": "Cloud Services", + "cities": ["Buffalo"], + "_id": { + "$oid": "666cbc3240af7b375e35244e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "IP.com", + "name": "Matthew Miller", + "email": "matthewjohnmiller2020@gmail.com", + "linkedIn": "https://www.linkedin.com/in/matthew-miller2020/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Kansas City"], + "_id": { + "$oid": "666cbc3240af7b375e35244f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Iridium Satellite LLC", + "name": "Lyam Hunt", + "email": "lyamnhunt@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lyamhunt/", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Software Developer II", + "industry": "Telecommunications", + "cities": ["Durham", "St. Louis"], + "_id": { + "$oid": "666cbc3240af7b375e352450" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "IronNet Cybersecurity", + "name": "Daniel Stein", + "email": "danlikesbikes@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dangineer/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Senior UI/UX Developer", + "industry": "Computer and Network Security", + "cities": ["Anchorage"], + "_id": { + "$oid": "666cbc3240af7b375e352451" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "ISAT Total Support", + "name": "Anthony Le", + "email": "anthonyle910@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/anthonyle910/", + "campus": "LA / WCRI", + "cohort": "58", + "jobTitle": "Full Stack Developer", + "industry": "Other", + "cities": ["Honolulu", "Jacksonville", "Newark"], + "_id": { + "$oid": "666cbc3240af7b375e352452" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Isobar", + "name": "Anthony Torrero", + "email": "Anthonyduarteee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/anthony-duarte-4b8798159/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Frontend Developer", + "industry": "Creative Agency", + "cities": ["Lincoln", "Orlando", "Paris", "Phoenix"], + "_id": { + "$oid": "666cbc3240af7b375e352453" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Isobar", + "name": "James Gary", + "email": "jim@jamesgary.com", + "linkedIn": "https://www.linkedin.com/in/james-gary/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Senior Front End Developer", + "industry": "Media", + "cities": ["Berlin", "Sydney", "Pittsburgh"], + "_id": { + "$oid": "666cbc3240af7b375e352454" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "iStrategyLabs", + "name": "Brittany Miltenberger", + "email": "brittany.miltenberger@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brittanywm/", + "campus": "LA", + "cohort": "23", + "jobTitle": "Senior Web Developer", + "industry": "", + "cities": ["Chandler", "Saint Paul"], + "_id": { + "$oid": "666cbc3240af7b375e352455" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Itential", + "name": "Chao Zhong Yu", + "email": "ChaoY91@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/czyu/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Dallas", "Memphis", "Riverside", "Phoenix"], + "_id": { + "$oid": "666cbc3240af7b375e352456" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Ivy Energy", + "name": "Gavin Crews", + "email": "Gcrews1894@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gavincrews/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Frontend Engineer", + "industry": "Solar", + "cities": ["Tucson", "Columbus", "Raleigh"], + "_id": { + "$oid": "666cbc3240af7b375e352457" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.250Z" + }, + "__v": 0 + }, + { + "company": "Ivy Energy", + "name": "Nicolas Pita", + "email": "pitanicolase@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nicolaspita/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Developer", + "industry": "Clean Energy", + "cities": ["Mexico City", "Kansas City"], + "_id": { + "$oid": "666cbc3240af7b375e352458" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Jam City", + "name": "Tony Ito-Cole", + "email": "tonyitocole@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tony-ito-cole/", + "campus": "LA", + "cohort": "34", + "jobTitle": "Platform Engineer", + "industry": "Mobile Gaming", + "cities": ["Portland"], + "_id": { + "$oid": "666cbc3240af7b375e352459" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Janus Health", + "name": "Benjamin Michareune", + "email": "ben.michareune@Gmail.com", + "linkedIn": "https://www.linkedin.com/in/benmichareune", + "campus": "FTRI / CTRI", + "cohort": "7", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Oakland", "New York", "Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e35245a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Janus Healthcare", + "name": "Simon Lee", + "email": "simonlee1125@gmail.com", + "linkedIn": "https://www.linkedin.com/in/simonhlee/", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Software Engineer II", + "industry": "Healthcare", + "cities": ["Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e35245b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Jasper (AI)", + "name": "Marcellies Pettiford", + "email": "marcellies@pettifords.xyz", + "linkedIn": "https://www.linkedin.com/in/marcellies-pettiford/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Software Engineer II", + "industry": "Software / Tech", + "cities": ["Irvine", "Tokyo", "Glendale", "Dallas"], + "_id": { + "$oid": "666cbc3240af7b375e35245c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Jogg", + "name": "Alex Kolb", + "email": "akolb981@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexanderjkolb/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Austin"], + "_id": { + "$oid": "666cbc3240af7b375e35245d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "JP Morgan", + "name": "jonathan k coe", + "email": "jon.coe@codesmith.io", + "linkedIn": "https://www.linkedin.com/in/jonathan-k-coe/", + "campus": "NYC", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Long Beach", "Tokyo"], + "_id": { + "$oid": "666cbc3240af7b375e35245e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "JP Morgan", + "name": "Jimmy Tran", + "email": "jvtran48@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jimmytran48/", + "campus": "NYC / ECRI", + "cohort": "40", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Lexington", "Jacksonville"], + "_id": { + "$oid": "666cbc3240af7b375e35245f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "JP Morgan / Chase", + "name": "Wayne Wilcox", + "email": "wilcox_wayne@hotmail.com", + "linkedIn": "https://www.linkedin.com/in/wayne-wilcox/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Junior Developer Associate", + "industry": "Fintech", + "cities": ["Nashville"], + "_id": { + "$oid": "666cbc3240af7b375e352460" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "JP Morgan Chase", + "name": "David Behmoaras", + "email": "dbehmoaras@gmail.com", + "linkedIn": "https://www.linkedin.com/in/david-behmoaras/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Kansas City", "San Jose"], + "_id": { + "$oid": "666cbc3240af7b375e352461" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "JP Morgan Chase", + "name": "Howard Na", + "email": "howardna317@gmail.com", + "linkedIn": "https://www.linkedin.com/in/howard-na-jr/", + "campus": "LA", + "cohort": "26", + "jobTitle": "Software Engineer", + "industry": "Media", + "cities": ["Irving", "El Paso"], + "_id": { + "$oid": "666cbc3240af7b375e352462" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "JP Morgan Chase", + "name": "Stewart Elmore", + "email": "stewart.elmore@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stewart-elmore/", + "campus": "NYC / ECRI", + "cohort": "31", + "jobTitle": "Associate Software Engineer", + "industry": "Fintech", + "cities": ["Los Angeles", "Arlington", "Washington"], + "_id": { + "$oid": "666cbc3240af7b375e352463" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "JP Morgan Chase & Co", + "name": "Parker Steinberg", + "email": "parker.s52@gmail.com", + "linkedIn": "https://www.linkedin.com/in/parker-steinberg/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Chicago", "Colorado Springs", "Scottsdale", "Buffalo"], + "_id": { + "$oid": "666cbc3240af7b375e352464" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "JP Morgan Chase & Co.", + "name": "Jimmy Chen", + "email": "jimmychen12249@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jimchn/", + "campus": "NYC", + "cohort": "17", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Kansas City", "Cleveland", "Tucson", "Sacramento"], + "_id": { + "$oid": "666cbc3240af7b375e352465" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "JP Morgan Chase & Co.", + "name": "Mike Oโ€™Donnell", + "email": "michaelodonnell18@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michaelodonnell18", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Full Stack Developer", + "industry": "Banking", + "cities": ["Saint Paul", "Raleigh"], + "_id": { + "$oid": "666cbc3240af7b375e352466" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "JPMChase", + "name": "Adam Wilson", + "email": "aswilson87@gmail.com", + "linkedIn": "https://www.linkedin.com/in/aswilson87/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Associate Engineer", + "industry": "Finance", + "cities": ["Detroit"], + "_id": { + "$oid": "666cbc3240af7b375e352467" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "JPMorgan", + "name": "Winford Lin", + "email": "linwinford@gmail.com", + "linkedIn": "https://www.linkedin.com/in/winfordlin/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer II", + "industry": "Fintech", + "cities": ["Garland", "Omaha", "Portland"], + "_id": { + "$oid": "666cbc3240af7b375e352468" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "JPMorgan Chase", + "name": "Adam White", + "email": "adamkarnwhite@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adam-karn-white", + "campus": "NYC / ECRI", + "cohort": "31", + "jobTitle": "Senior Associate Software Engineer", + "industry": "Fintech", + "cities": ["Henderson", "Wichita", "Milwaukee"], + "_id": { + "$oid": "666cbc3240af7b375e352469" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "JPMorgan Chase", + "name": "Adrian Uesugui", + "email": "auesugui@gmail.com", + "linkedIn": "https://www.linkedin.com/in/auesugui/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Associate Software Engineer", + "industry": "Fintech", + "cities": ["Austin", "Irving", "Tampa"], + "_id": { + "$oid": "666cbc3240af7b375e35246a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "JPMorgan Chase", + "name": "John Donovan", + "email": "jodonovan845@gmail.com", + "linkedIn": "https://www.linkedin.com/in/john-d-donovan", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Software Engineer - Associate II", + "industry": "Software / Tech", + "cities": ["Fort Wayne", "Madison"], + "_id": { + "$oid": "666cbc3240af7b375e35246b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "JPMorgan Chase & Co", + "name": "Jo Huang", + "email": "johuangx@gmail.com", + "linkedIn": "https://www.linkedin.com/in/johuangx/", + "campus": "NYOI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Portland", "Jacksonville", "Aurora"], + "_id": { + "$oid": "666cbc3240af7b375e35246c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "JPMorgan Chase & Co.", + "name": "Stanley Huang", + "email": "iamstanleyhuang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stanleyhuang16/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Tulsa", "Glendale", "Irving"], + "_id": { + "$oid": "666cbc3240af7b375e35246d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "JPMorgan Chase & Co.", + "name": "Terence Petersen", + "email": "robo.terence@gmail.com", + "linkedIn": "https://www.linkedin.com/in/terence-petersen/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Associate Software Engineer", + "industry": "Merchant Services", + "cities": ["Lexington"], + "_id": { + "$oid": "666cbc3240af7b375e35246e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Juniper Behavioral Health", + "name": "Kelvin Cuesta", + "email": "kelvinscuesta@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kelvinscuesta/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Aurora"], + "_id": { + "$oid": "666cbc3240af7b375e35246f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Justworks", + "name": "Shelby Neuman", + "email": "shelbydneuman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shelbyneuman/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Jersey City", "Lincoln", "Buffalo"], + "_id": { + "$oid": "666cbc3240af7b375e352470" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "JustWorks Labs", + "name": "Sophia Huttner", + "email": "sophjean@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sophia-huttner/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Frontend Software Engineer", + "industry": "HR Suite", + "cities": ["St. Louis", "Austin", "Chicago", "Garland"], + "_id": { + "$oid": "666cbc3240af7b375e352471" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Karr Barth Administrators", + "name": "Loralyn Milcarek", + "email": "loralyn.milcarek@gmail.com", + "linkedIn": "https://www.linkedin.com/in/loralyn-milcarek/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Developer", + "industry": "Other", + "cities": ["Plano"], + "_id": { + "$oid": "666cbc3240af7b375e352472" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Keller Williams Realty, Inc", + "name": "Brent Speight", + "email": "brentjosephspeight@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brent-speight/", + "campus": "LA", + "cohort": "44", + "jobTitle": "Software Engineer", + "industry": "Realty", + "cities": ["Norfolk"], + "_id": { + "$oid": "666cbc3240af7b375e352473" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Kelley Blue Book (Cox Automotive)", + "name": "Ryan Bender", + "email": "rdbender@me.com", + "linkedIn": "https://www.linkedin.com/in/rdbender", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer I", + "industry": "Automotive", + "cities": ["Dallas", "Omaha"], + "_id": { + "$oid": "666cbc3240af7b375e352474" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Kevel", + "name": "Adam Joesten", + "email": "adamjoesten@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adamjoesten/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Senior Software Engineer (SDE II)", + "industry": "Adtech", + "cities": ["Mesa"], + "_id": { + "$oid": "666cbc3240af7b375e352475" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Key Bank (Laurel Road)", + "name": "Eric Pham", + "email": "ericpham36@gmail.com", + "linkedIn": "https://www.linkedin.com/in/epstylesoflife/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Fintech", + "cities": ["Denver", "London", "El Paso"], + "_id": { + "$oid": "666cbc3240af7b375e352476" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Kibanx", + "name": "Celeste Knopf", + "email": "celesteknopf@gmail.com", + "linkedIn": "https://www.linkedin.com/in/celesteknopf/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Front End Engineer", + "industry": "Real Estate", + "cities": ["Omaha", "Louisville", "Berlin", "Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e352477" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Kin + Carta", + "name": "Eric Olaya", + "email": "ericolaya@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eric-olaya/", + "campus": "FTRI", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "Tech Consulting", + "cities": ["Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e352478" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Kindo", + "name": "Hannah Bernstein", + "email": "hbern00@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bernstein-hannah/", + "campus": "LA / WCRI", + "cohort": "53", + "jobTitle": "Software Engineer", + "industry": "Artificial Intelligence", + "cities": ["San Francisco", "Bakersfield", "Plano", "Toledo"], + "_id": { + "$oid": "666cbc3240af7b375e352479" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Kitman Labs", + "name": "Gregory Levine-Rozenvayn", + "email": "Grisha617@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gregory-levine-rozenvayn", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Senior Software Engineer, Frontend", + "industry": "Sports data science", + "cities": ["Orlando", "St. Petersburg"], + "_id": { + "$oid": "666cbc3240af7b375e35247a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Klarna", + "name": "Natalie Vick", + "email": "vicknatalie@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vicknatalie/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Senior Frontend Engineer", + "industry": "Ecommerce", + "cities": ["Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e35247b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Klaviyo", + "name": "Amy Chen", + "email": "aechen46@gmail.com", + "linkedIn": "https://www.linkedin.com/in/amyechen/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Marketing Technology", + "cities": ["Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e35247c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Klaviyo", + "name": "Elinor Weissberg", + "email": "elinorthw@gmail.com", + "linkedIn": "https://www.linkedin.com/in/elinorweissberg/", + "campus": "NYOI", + "cohort": "5", + "jobTitle": "Software Engineer II", + "industry": "Marketing/Advertising", + "cities": ["Los Angeles", "Irvine", "Aurora", "Irving"], + "_id": { + "$oid": "666cbc3240af7b375e35247d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Knotel", + "name": "Rocky Liao", + "email": "rliao3613@gmail.com", + "linkedIn": "https://linkedin.com/in/seemsrocky", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Software engineer", + "industry": "Real Estate", + "cities": ["San Jose", "Raleigh", "Norfolk"], + "_id": { + "$oid": "666cbc3240af7b375e35247e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Knowable", + "name": "Alex Sanhueza", + "email": "alexrsanhueza@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alex-sanhueza/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Development Engineer II (Front end)", + "industry": "Legal Services", + "cities": ["Mexico City", "Irvine", "Virginia Beach", "Reno"], + "_id": { + "$oid": "666cbc3240af7b375e35247f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Komodo Health", + "name": "Ju Kim", + "email": "juhyuns98@gmail.com", + "linkedIn": "", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Engineer, Applications", + "industry": "Healthcare", + "cities": ["Nashville", "Austin", "Gilbert"], + "_id": { + "$oid": "666cbc3240af7b375e352480" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Konami Gaming", + "name": "Aidan Noble-Goodman", + "email": "anoblegoodman@gmail.com", + "linkedIn": "www.linkedin.com/anoblegoodman", + "campus": "LA", + "cohort": "28", + "jobTitle": "Software Engineer II", + "industry": "Gaming/casino management software", + "cities": ["Buffalo", "Wichita", "St. Petersburg", "Newark"], + "_id": { + "$oid": "666cbc3240af7b375e352481" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Kroger", + "name": "John Wong", + "email": "johnwong4150@gmail.com", + "linkedIn": "https://www.linkedin.com/in/john-wong-fongching/", + "campus": "LA / WCRI", + "cohort": "43", + "jobTitle": "Web Platform Engineer", + "industry": "Retail", + "cities": ["Detroit", "Kansas City", "San Diego"], + "_id": { + "$oid": "666cbc3240af7b375e352482" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Kroger", + "name": "Jason Seidler", + "email": "jsonseidler@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jason-seidler/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Senior Front End Developer", + "industry": "Retail", + "cities": ["Wichita", "Louisville"], + "_id": { + "$oid": "666cbc3240af7b375e352483" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Kroger", + "name": "Kevin MacCoy", + "email": "kmaccoy@fau.edu", + "linkedIn": "https://www.linkedin.com/in/kevin-maccoy/", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "Backend Engineer", + "industry": "Other", + "cities": ["Jacksonville", "New Orleans", "Chesapeake"], + "_id": { + "$oid": "666cbc3240af7b375e352484" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Kroger", + "name": "Elise McConnell", + "email": "elisemcconnell11@gmail.com", + "linkedIn": "www.linkedin.com/in/elisemcconnell", + "campus": "FTRI / CTRI", + "cohort": "12", + "jobTitle": "Software Engineer", + "industry": "Retail", + "cities": ["Wichita", "Memphis"], + "_id": { + "$oid": "666cbc3240af7b375e352485" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Kryptowire", + "name": "Michael Ross", + "email": "michaelalross@gmail.com", + "linkedIn": "https://linkedin.com/in/michaelalross", + "campus": "LA", + "cohort": "45", + "jobTitle": "Software Engineer II", + "industry": "DevSecOps", + "cities": ["Sacramento", "Los Angeles", "Austin"], + "_id": { + "$oid": "666cbc3240af7b375e352486" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "KyckGlobal", + "name": "Joseph Lee", + "email": "josephemlee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/josephjslee/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Jacksonville", "Sacramento"], + "_id": { + "$oid": "666cbc3240af7b375e352487" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Kyte Dynamics, Inc.", + "name": "Lawrence Yeh", + "email": "lawyeh391@gmail.com", + "linkedIn": "linkedin.com/in/lawyeh", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Orlando", "Tucson"], + "_id": { + "$oid": "666cbc3240af7b375e352488" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "LA County", + "name": "Vu Duong", + "email": "vthanhd@gmail.com", + "linkedIn": "www.linkedin.com/in/vu-duong", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Application Developer II", + "industry": "Government", + "cities": ["North Las Vegas", "Long Beach"], + "_id": { + "$oid": "666cbc3240af7b375e352489" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "LaaSie.ai", + "name": "Tyler Sayles", + "email": "saylestyler@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tylersayles/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Full stack Engineer", + "industry": "Marketing", + "cities": ["Oakland", "Mesa", "Glendale", "Kansas City"], + "_id": { + "$oid": "666cbc3240af7b375e35248a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Lab49", + "name": "Eric Tacher", + "email": "erictacher@gmail.com", + "linkedIn": "https://www.linkedin.com/in/erictacher/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Web UI Engineer", + "industry": "Fintech Consulting", + "cities": ["Cincinnati"], + "_id": { + "$oid": "666cbc3240af7b375e35248b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Lasso Marketing", + "name": "Andy Tsou", + "email": "tsou.andy@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andy-tsou/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Integration Engineer", + "industry": "Health Care Marketing", + "cities": ["Arlington", "Orlando", "Nashville"], + "_id": { + "$oid": "666cbc3240af7b375e35248c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "LastPass", + "name": "E Kathuria", + "email": "e@kathuria.dev", + "linkedIn": "https://www.linkedin.com/in/ekathuria", + "campus": "NYC", + "cohort": "32", + "jobTitle": "Front End Engineer", + "industry": "Software / Tech", + "cities": ["New York", "Plano"], + "_id": { + "$oid": "666cbc3240af7b375e35248d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Lattitude", + "name": "Carolyn Zheng", + "email": "ruxinzheng01@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ruxinzhengswe/", + "campus": "LA / WCRI", + "cohort": "57", + "jobTitle": "Software Engineer", + "industry": "Marketing/Advertising", + "cities": ["El Paso", "San Antonio", "Berlin"], + "_id": { + "$oid": "666cbc3240af7b375e35248e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Launch Darkly", + "name": "Samuel Kim", + "email": "samuyyy@gmail.com", + "linkedIn": "https://www.linkedin.com/in/samuy/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Software Engineer (Backend)", + "industry": "Developer Tools", + "cities": ["Long Beach"], + "_id": { + "$oid": "666cbc3240af7b375e35248f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Lawmatics", + "name": "Omar Rana", + "email": "omar_rana93@hotmail.com", + "linkedIn": "https://www.linkedin.com/in/orana1/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Full Stack Engineer", + "industry": "CRM for law firms", + "cities": ["Laredo", "Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e352490" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Leadpages", + "name": "Evan McNeely", + "email": "evanmcneely@me.com", + "linkedIn": "https://www.linkedin.com/in/evanmcneely/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Software Engineer II", + "industry": "Marketing", + "cities": ["Virginia Beach", "Lincoln", "Colorado Springs"], + "_id": { + "$oid": "666cbc3240af7b375e352491" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Leaf Group (Society6)", + "name": "Oliver Roldan", + "email": "oproldan01@gmail.com", + "linkedIn": "", + "campus": "LA / WCRI", + "cohort": "40", + "jobTitle": "Frontend Engineer", + "industry": "Other", + "cities": ["Kansas City", "Scottsdale"], + "_id": { + "$oid": "666cbc3240af7b375e352492" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "LeaseLock", + "name": "Kara Chisholm", + "email": "kkchisholm@gmail.com", + "linkedIn": "https://www.linkedin.com/in/karachisholm/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Santa Ana", "Fresno"], + "_id": { + "$oid": "666cbc3240af7b375e352493" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "LedgerX", + "name": "Abaas Khorrami", + "email": "abaas.khorrami@gmail.com", + "linkedIn": "https://www.linkedin.com/in/abaas-khorrami/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Senior Frontend Engineer", + "industry": "Fintech", + "cities": ["St. Petersburg"], + "_id": { + "$oid": "666cbc3240af7b375e352494" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "LegacyScape", + "name": "Cassidy Johnson", + "email": "cassidyrose56@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cassidy-r-johnson/", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Jacksonville", "Lincoln", "Raleigh"], + "_id": { + "$oid": "666cbc3240af7b375e352495" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "LegalZoom", + "name": "Henry Park", + "email": "codedenma@gmail.com", + "linkedIn": "https://www.linkedin.com/in/henrytpark/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Software Engineer II, Product Experiences", + "industry": "Other", + "cities": ["Glendale", "Buffalo", "Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e352496" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Lendbuzz Inc.", + "name": "Quoc Do", + "email": "dlaquoc1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dlaquoc/", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Full Stack Engineer Co-op (Internship)", + "industry": "Automotive", + "cities": ["Irvine", "Greensboro"], + "_id": { + "$oid": "666cbc3240af7b375e352497" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Lessen Inc", + "name": "Davette Bryan", + "email": "davettejones11@gmail.com", + "linkedIn": "https://www.linkedin.com/in/davette-bryan/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Jr. Software Engineer", + "industry": "Real Estate", + "cities": ["Philadelphia", "Chula Vista", "Beijing"], + "_id": { + "$oid": "666cbc3240af7b375e352498" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Lever", + "name": "Aiden Blinn", + "email": "apblinn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/aidenblinn/", + "campus": "FTRI", + "cohort": "7", + "jobTitle": "Integrations Engineer", + "industry": "IT Services", + "cities": ["Charlotte", "Orlando", "Albuquerque", "Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e352499" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Lever", + "name": "Jae Lee", + "email": "jaelee213@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jaelee213/", + "campus": "LA", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Recruiting", + "cities": ["Henderson", "Paris", "Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e35249a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Lever", + "name": "Sophia Sam", + "email": "sophia.sam96@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sophia-sam", + "campus": "FTRI", + "cohort": "7", + "jobTitle": "Software Engineer II", + "industry": "Software / Tech", + "cities": ["Saint Paul", "Omaha"], + "_id": { + "$oid": "666cbc3240af7b375e35249b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Lexis Nexis", + "name": "Danny Martinez", + "email": "codesmith@jdanielmartinez.com", + "linkedIn": "https://www.linkedin.com/in/jdanielmartinez/", + "campus": "LA", + "cohort": "42", + "jobTitle": "GraphQL Full Stack Developer", + "industry": "Paralegal", + "cities": ["Pittsburgh"], + "_id": { + "$oid": "666cbc3240af7b375e35249c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "LexisNexis", + "name": "Graham Albachten", + "email": "albachteng@gmail.com", + "linkedIn": "https://www.linkedin.com/in/graham-albachten-00162a52/", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "GraphQL Full Stack Developer", + "industry": "Legal", + "cities": ["Houston"], + "_id": { + "$oid": "666cbc3240af7b375e35249d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Lexmark", + "name": "Luke Roberts", + "email": "luke.roberts089@gmail.com", + "linkedIn": "https://www.linkedin.com/in/luke-roberts0/", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Long Beach"], + "_id": { + "$oid": "666cbc3240af7b375e35249e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Liberty Maritime", + "name": "Garrett Layden", + "email": "garlayden@gmail.com", + "linkedIn": "https://linkedin.com/in/garrett-layden", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Full Stack Developer", + "industry": "Other", + "cities": ["Toledo", "Long Beach"], + "_id": { + "$oid": "666cbc3240af7b375e35249f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Liberty Mutual", + "name": "Bryan Kim", + "email": "bkim0826@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bkimmm/", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["Sacramento", "San Antonio", "Colorado Springs"], + "_id": { + "$oid": "666cbc3240af7b375e3524a0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Liberty Mutual", + "name": "Cristian De Los Rios", + "email": "Cris2595@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cristian-dlr/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["Reno", "Chesapeake"], + "_id": { + "$oid": "666cbc3240af7b375e3524a1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Liberty Mutual", + "name": "Patrick Sullivan", + "email": "patrick@jsullivan.org", + "linkedIn": "https://www.linkedin.com/in/patrick-j-m-sullivan/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["Stockton"], + "_id": { + "$oid": "666cbc3240af7b375e3524a2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Liberty Mutual", + "name": "Robert Tipton", + "email": "robbytiptontol@gmail.com", + "linkedIn": "https://www.linkedin.com/in/robert-tipton/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["Paris", "Jersey City"], + "_id": { + "$oid": "666cbc3240af7b375e3524a3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Liberty Mutual", + "name": "Tyler Jameson Martinez", + "email": "tm6002005@gmail.com", + "linkedIn": "https://www.linkedin.com/mwlite/in/tylerjamesonmartinez", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software engineer", + "industry": "Insurance", + "cities": ["Nashville", "Chesapeake"], + "_id": { + "$oid": "666cbc3240af7b375e3524a4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "LifeOmic", + "name": "Chloe Courtois", + "email": "crc.courtois@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chloe-courtois-3337a210b/", + "campus": "FTRI", + "cohort": "7", + "jobTitle": "Associate Software Engineer", + "industry": "Healthcare", + "cities": ["Anchorage", "Portland", "New York", "Reno"], + "_id": { + "$oid": "666cbc3240af7b375e3524a5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Limble CMMS", + "name": "Josh Merrell", + "email": "joshmerrell.us@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joshmerrell/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Software Developer III", + "industry": "Software / Tech", + "cities": ["Bakersfield", "Austin", "Berlin"], + "_id": { + "$oid": "666cbc3240af7b375e3524a6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Linguabee", + "name": "Connor Gillis", + "email": "connoregillis@gmail.com", + "linkedIn": "https://www.linkedin.com/in/connor-gillis/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Front End Software Engineer", + "industry": "Interpreting", + "cities": ["Fort Worth", "Madison", "Fresno", "Sydney"], + "_id": { + "$oid": "666cbc3240af7b375e3524a7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "LinkedIn", + "name": "Ethan Yeh", + "email": "Ethanhwyeh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ethanhwyeh/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Full Stack Software Engineer", + "industry": "Professional Networking", + "cities": ["San Diego"], + "_id": { + "$oid": "666cbc3240af7b375e3524a8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "LinkedIn", + "name": "Douglas Yao", + "email": "doug.yao@gmail.com", + "linkedIn": "https://www.linkedin.com/in/douglas-yao/", + "campus": "FTRI / CTRI", + "cohort": "16", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Minneapolis", "Scottsdale", "Long Beach"], + "_id": { + "$oid": "666cbc3240af7b375e3524a9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Linus Health", + "name": "Tommy Song", + "email": "Tommysong123@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Health tech", + "cities": ["Mumbai", "Portland"], + "_id": { + "$oid": "666cbc3240af7b375e3524aa" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "LiquidPixels", + "name": "Christian Looff", + "email": "ctnguy10@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christian-looff/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Atlanta", "North Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e3524ab" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Literably", + "name": "Tiffany Wong", + "email": "Wongt1227@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tiffanywong149", + "campus": "NYC / ECRI", + "cohort": "42", + "jobTitle": "Junior Software Engineer", + "industry": "Education/Edtech", + "cities": ["Mumbai", "Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e3524ac" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Little Cinema", + "name": "Kenny Ma", + "email": "Kennyjjma@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Front End Engineer", + "industry": "Entertainment", + "cities": ["Durham", "Aurora", "San Francisco"], + "_id": { + "$oid": "666cbc3240af7b375e3524ad" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Littlebits", + "name": "Jinsung Park", + "email": "js.lia.park@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jsliapark/", + "campus": "NYC", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Beauty/Cosmetic", + "cities": ["Lincoln", "Scottsdale", "Chandler"], + "_id": { + "$oid": "666cbc3240af7b375e3524ae" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Live Nation", + "name": "Colin Gibson", + "email": "colingibs@gmail.com", + "linkedIn": "https://www.linkedin.com/in/colin--gibson/", + "campus": "LA", + "cohort": "44", + "jobTitle": "Software Development Engineer", + "industry": "Real Estate", + "cities": ["Milwaukee", "Irvine", "Chula Vista"], + "_id": { + "$oid": "666cbc3240af7b375e3524af" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Lively Video", + "name": "Mark Miller", + "email": "markmmiller825@gmail.com", + "linkedIn": "https://www.linkedin.com/in/markmanuelmiller/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Senior Software Engineer", + "industry": "Entertainment/education", + "cities": ["Phoenix", "Kansas City", "Lubbock"], + "_id": { + "$oid": "666cbc3240af7b375e3524b0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "LivePerson", + "name": "Geoffrey Lin", + "email": "geoffrey.s.lin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/geoff-lin/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "Computer Software", + "cities": ["Irving"], + "_id": { + "$oid": "666cbc3240af7b375e3524b1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "LivePerson", + "name": "Taihyun (Ray) Lee", + "email": "taihyun.ray.lee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/taihyun-ray-lee/", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software Development Engineer", + "industry": "Software (SAAS)", + "cities": ["Sacramento", "El Paso", "North Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e3524b2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "LivePerson", + "name": "Taihyun Lee", + "email": "th9061@gmail.com", + "linkedIn": "https://www.linkedin.com/in/taihyun-ray-lee", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software Development Engineer", + "industry": "Entertainment", + "cities": ["Reno", "Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e3524b3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "LogicMonitor", + "name": "Jessica Vaughan", + "email": "jessicavaughan820@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jessicavaughan820/", + "campus": "LA", + "cohort": "30", + "jobTitle": "frontend developer", + "industry": "SaaS", + "cities": ["St. Petersburg", "Washington"], + "_id": { + "$oid": "666cbc3240af7b375e3524b4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Lokavant", + "name": "Eric Peng", + "email": "tzerpeng@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eric-peng-jojo/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "Information Technology & Services", + "cities": ["Anaheim", "Austin", "Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e3524b5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Lonesdale Invest", + "name": "Coral Fussman", + "email": "coralfussman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/coral-fussman-21721538/", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Gilbert", "Atlanta", "Tucson", "Tampa"], + "_id": { + "$oid": "666cbc3240af7b375e3524b6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Longtail Studios", + "name": "Daniel Steinbrook", + "email": "steinbrookdaniel@gmail.com", + "linkedIn": "https://www.linkedin.com/in/daniel-steinbrook/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Developer - AI Models Integration", + "industry": "Software / Tech", + "cities": ["Scottsdale", "Toronto", "Anchorage"], + "_id": { + "$oid": "666cbc3240af7b375e3524b7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Loop", + "name": "Olivia Hodel", + "email": "ohodel16@gmail.com", + "linkedIn": "https://www.linkedin.com/in/olivia-hodel/", + "campus": "NYC / ECRI", + "cohort": "39", + "jobTitle": "Associate Software Engineer", + "industry": "Other", + "cities": ["Garland", "Philadelphia", "Wichita"], + "_id": { + "$oid": "666cbc3240af7b375e3524b8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Lord, Abbett & Co. LLC", + "name": "Vince Chin", + "email": "vincech@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vincech/", + "campus": "PTRI", + "cohort": "5", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Tucson", "Las Vegas", "Sydney"], + "_id": { + "$oid": "666cbc3240af7b375e3524b9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Los Alamos National Laboratory", + "name": "James Howat", + "email": "james@howat.dev", + "linkedIn": "LinkedIn.com/in/jamesbhowat", + "campus": "FTRI / CTRI", + "cohort": "12", + "jobTitle": "Software Developer 2", + "industry": "Security", + "cities": ["Oakland", "Newark"], + "_id": { + "$oid": "666cbc3240af7b375e3524ba" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Lotic AI", + "name": "Adam Blackwell", + "email": "blackwell.ada@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adam-blackwell-85918595/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "Mental Health", + "cities": ["Detroit", "Memphis", "Indianapolis"], + "_id": { + "$oid": "666cbc3240af7b375e3524bb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Low Associates", + "name": "William Robson", + "email": "will.robson19@gmail.com", + "linkedIn": "https://www.linkedin.com/in/william-k-robson/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Full Stack Developer", + "industry": "Software / Tech", + "cities": ["Gilbert", "Fresno"], + "_id": { + "$oid": "666cbc3240af7b375e3524bc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Lowes", + "name": "Joshuah Edwards", + "email": "joshuah.edwards@proton.me", + "linkedIn": "linkedin.com/in/joshuah-edwards/", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "Retail", + "cities": ["Santa Ana", "Baltimore", "San Jose", "Denver"], + "_id": { + "$oid": "666cbc3240af7b375e3524bd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Lumi AI", + "name": "Ryan Hastings", + "email": "rhaasti@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rhaasti/", + "campus": "NYOI", + "cohort": "4", + "jobTitle": "Front-End Engineer (six month contract-to-hire)", + "industry": "Artificial Intelligence/Machine Learning", + "cities": ["Jersey City", "Fort Worth", "Chicago"], + "_id": { + "$oid": "666cbc3240af7b375e3524be" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Lumifi", + "name": "Ryan Gause", + "email": "Ryan.g.gause.3@gmail.com", + "linkedIn": "LinkedIn.com/in/ryangause", + "campus": "PTRI", + "cohort": "9", + "jobTitle": "Software Developer II", + "industry": "Security", + "cities": ["Philadelphia", "Laredo", "Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e3524bf" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Lunchbox", + "name": "Judy Tan", + "email": "judytan86@gmail.com", + "linkedIn": "https://www.linkedin.com/in/judy-tan93/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Frontend Engineer", + "industry": "Food Industry", + "cities": ["Chula Vista", "Long Beach", "Tampa"], + "_id": { + "$oid": "666cbc3240af7b375e3524c0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "LVRG", + "name": "Gary Slootskiy", + "email": "garyslootskiy@gmail.com", + "linkedIn": "https://linkedin.com/in/garyslootskiy", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Senior Software Engineer", + "industry": "Supply Chain Management", + "cities": ["Miami"], + "_id": { + "$oid": "666cbc3240af7b375e3524c1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Lytx", + "name": "Miller Johnston", + "email": "miller.johnston17@gmail.com", + "linkedIn": "linkedin.com/in/miller-johnston", + "campus": "FTRI / CTRI", + "cohort": "6", + "jobTitle": "Software Engineer II", + "industry": "Automotive", + "cities": ["Jacksonville", "Berlin"], + "_id": { + "$oid": "666cbc3240af7b375e3524c2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "M Science", + "name": "Celena Chan", + "email": "celenachan@gmail.com", + "linkedIn": "https://www.linkedin.com/in/celenachan", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Paris"], + "_id": { + "$oid": "666cbc3240af7b375e3524c3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Madison Logic", + "name": "Richie Edwards", + "email": "richie00edwards@gmail.com", + "linkedIn": "https://www.linkedin.com/in/richieedwards/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Full Stack Engineer", + "industry": "Marketing", + "cities": ["Chicago", "North Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e3524c4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Maestro", + "name": "Jacob Banks", + "email": "jacobjeffreybanks@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jacobjbanks/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Media/Entertainment", + "cities": ["New York", "Tulsa", "Kansas City"], + "_id": { + "$oid": "666cbc3240af7b375e3524c5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Magic Leap", + "name": "Randy Reyes", + "email": "rqreyes@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rqreyes/", + "campus": "LA", + "cohort": "31", + "jobTitle": "Front-End Software Engineer", + "industry": "Augmented Reality", + "cities": ["Tulsa", "Albuquerque", "Colorado Springs", "Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e3524c6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "MagMutual", + "name": "Mark Yencheske", + "email": "markyencheske@gmail.com", + "linkedIn": "https://www.linkedin.com/in/markyencheske/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["Winston-Salem", "New Orleans", "Santa Ana"], + "_id": { + "$oid": "666cbc3240af7b375e3524c7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.251Z" + }, + "__v": 0 + }, + { + "company": "Magnite", + "name": "John Madrigal", + "email": "johnmadrigal17@gmail.com", + "linkedIn": "https://www.linkedin.com/in/john-r-madrigal/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Front End Software Development Engineer", + "industry": "Adtech", + "cities": ["Orlando", "Plano", "Nashville"], + "_id": { + "$oid": "666cbc3240af7b375e3524c8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mailchimp/Intuit", + "name": "Albert Han", + "email": "albert.h1231@gmail.com", + "linkedIn": "https://www.linkedin.com/in/albert-han1", + "campus": "LA", + "cohort": "47", + "jobTitle": "SWE II", + "industry": "Marketing/financial management", + "cities": ["Saint Paul"], + "_id": { + "$oid": "666cbc3240af7b375e3524c9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mailchimp/Intuit", + "name": "Gerry Bong", + "email": "ggbong734@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gerry-bong/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Glendale", "Irving"], + "_id": { + "$oid": "666cbc3240af7b375e3524ca" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Maisonette", + "name": "Heidi Kim", + "email": "heidiyoora@gmail.com", + "linkedIn": "https://www.linkedin.com/in/heidiykim/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "E-commerce", + "cities": ["Milwaukee", "Scottsdale"], + "_id": { + "$oid": "666cbc3240af7b375e3524cb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Major League Baseball", + "name": "Steven Rosas", + "email": "srosas20@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rosassteven/", + "campus": "NYC", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Sports", + "cities": ["Madison", "Fort Worth", "San Antonio", "Berlin"], + "_id": { + "$oid": "666cbc3240af7b375e3524cc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MakerBot", + "name": "Anthony R Toreson", + "email": "anthony.toreson@gmail.com", + "linkedIn": "https://www.linkedin.com/in/atoreson/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Senior Software Engineer", + "industry": "Hardware manufacturer (3d printers)", + "cities": ["Fort Wayne", "Anchorage", "Toledo"], + "_id": { + "$oid": "666cbc3240af7b375e3524cd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "ManageGo", + "name": "Bo Peng", + "email": "bopeng95@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bopeng95/", + "campus": "NYC", + "cohort": "10", + "jobTitle": "Software Developer", + "industry": "Real Estate", + "cities": ["San Jose", "Reno"], + "_id": { + "$oid": "666cbc3240af7b375e3524ce" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Manatee", + "name": "Raivyno Sutrisno", + "email": "yessysutter@gmail.com", + "linkedIn": "https://www.linkedin.com/in/raivyno-sutrisno/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Nashville", "Tucson", "Sacramento", "Stockton"], + "_id": { + "$oid": "666cbc3240af7b375e3524cf" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mantium", + "name": "Steve Hong", + "email": "swe.stevehong@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stevehong-swe/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Artificial Intelligence", + "cities": ["Houston", "Fresno"], + "_id": { + "$oid": "666cbc3240af7b375e3524d0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MANTL", + "name": "Lourent Flores", + "email": "lourent.flores@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lourent-flores/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Full stack Engineer", + "industry": "Fintech", + "cities": ["Fort Wayne", "St. Louis", "Long Beach"], + "_id": { + "$oid": "666cbc3240af7b375e3524d1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MANTL", + "name": "TJ Wetmore", + "email": "Thomas.j.wetmore@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tjwetmore/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Colorado Springs", "San Diego", "Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e3524d2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mantra Health", + "name": "Konrad Kopko", + "email": "konradkopko1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/konradkopko/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "HealthTech", + "cities": ["Atlanta", "Gilbert", "Sรฃo Paulo", "Stockton"], + "_id": { + "$oid": "666cbc3240af7b375e3524d3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Maple.Finance", + "name": "Thomas Harper", + "email": "tommyrharper@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thomas-robert-harper/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Senior Software Engineer", + "industry": "Blockchain/Web3", + "cities": ["Plano"], + "_id": { + "$oid": "666cbc3240af7b375e3524d4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mariana Tek", + "name": "Owen Eldridge", + "email": "oweneldridge7@gmail.com", + "linkedIn": "https://www.LinkedIn.com/in/owen-eldridge", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Fitness Center Saas", + "cities": ["Tucson"], + "_id": { + "$oid": "666cbc3240af7b375e3524d5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MarineSitu", + "name": "Emily Paine", + "email": "erpaine@gmail.com", + "linkedIn": "https://www.linkedin.com/in/emily-paine1/", + "campus": "FTRI / CTRI", + "cohort": "12", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Durham", "Toledo", "Tulsa", "Indianapolis"], + "_id": { + "$oid": "666cbc3240af7b375e3524d6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mark43", + "name": "Kadir Gundogdu", + "email": "kadirgund@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kadirgund/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer", + "industry": "Law Enforcement", + "cities": ["Anaheim", "Washington", "Honolulu"], + "_id": { + "$oid": "666cbc3240af7b375e3524d7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mark43", + "name": "Sophie Nye", + "email": "sophie.nye@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Software engineer", + "industry": "Itโ€™s software for first responders, not sure what industry that is", + "cities": ["Philadelphia", "Fort Worth", "Albuquerque", "Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e3524d8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Marsh Mclennan", + "name": "Mina Koo", + "email": "minalunakoo@gmail.com", + "linkedIn": "linkedin.com/in/minakoo", + "campus": "NYC / ECRI", + "cohort": "30", + "jobTitle": "Developer", + "industry": "Insurance", + "cities": ["Madison", "Virginia Beach", "Chicago", "Mexico City"], + "_id": { + "$oid": "666cbc3240af7b375e3524d9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MAS Medical Staffing", + "name": "Jeffrey Schrock", + "email": "rhythmmagi@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jmschrock/", + "campus": "NYC", + "cohort": "4", + "jobTitle": "React Software Engineer", + "industry": "FinTech", + "cities": ["Mexico City", "Lexington"], + "_id": { + "$oid": "666cbc3240af7b375e3524da" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MassMutual", + "name": "Ausar English", + "email": "ausareenglish@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ausarenglish/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Fullstack Developer", + "industry": "Financial Services/Insurance", + "cities": ["Wichita", "Reno", "Paris", "Tampa"], + "_id": { + "$oid": "666cbc3240af7b375e3524db" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MassMutual", + "name": "Bryanna DeJesus", + "email": "bryanna.dejesus@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bryannadejesus/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Full Stack Developer", + "industry": "Insurance", + "cities": ["Glendale", "Tokyo", "New Orleans", "Denver"], + "_id": { + "$oid": "666cbc3240af7b375e3524dc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MasterCard", + "name": "Abigail Gerig", + "email": "abigail.gerig@gmail.com", + "linkedIn": "https://www.linkedin.com/in/abigail-gerig/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Fresno", "Fort Wayne", "Stockton"], + "_id": { + "$oid": "666cbc3240af7b375e3524dd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mastercard", + "name": "Edwin Lin", + "email": "Edwinlim@gmail.com", + "linkedIn": "https://www.linkedin.com/in/edwinlin/", + "campus": "NYC", + "cohort": "14", + "jobTitle": "JavaScript Engineer", + "industry": "Payment card", + "cities": ["Houston", "Reno", "Riverside", "Philadelphia"], + "_id": { + "$oid": "666cbc3240af7b375e3524de" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mavis", + "name": "Aalayah-Lynn Olaes", + "email": "olaesaalayah@gmail.com", + "linkedIn": "linkedin.com/in/aalayaholaes", + "campus": "NYC / ECRI", + "cohort": "40", + "jobTitle": "Software Engineer", + "industry": "Automotive", + "cities": ["Louisville"], + "_id": { + "$oid": "666cbc3240af7b375e3524df" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mavis Tire", + "name": "Peter Kennedy", + "email": "Ptkennedy9@gmail.com", + "linkedIn": "https://www.linkedin.com/peter-kennedy", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Full Stack Software Engineer", + "industry": "Automotive", + "cities": ["San Jose"], + "_id": { + "$oid": "666cbc3240af7b375e3524e0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mavis Tires", + "name": "Jessica Davila", + "email": "jdav92@gmail.com", + "linkedIn": "https://www.linkedin.com/feed/", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Automotive", + "cities": ["Tampa", "Saint Paul", "Mumbai"], + "_id": { + "$oid": "666cbc3240af7b375e3524e1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Maya Health", + "name": "Danny Byrne", + "email": "danny.byrne.dev@gmail.com", + "linkedIn": "https://www.linkedin.com/in/danny-byrne-la/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Front End Engineer", + "industry": "Psychedelic Health", + "cities": ["Denver", "Pittsburgh", "Fort Wayne"], + "_id": { + "$oid": "666cbc3240af7b375e3524e2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Maze", + "name": "Henry Black", + "email": "blackhaj@gmail.com", + "linkedIn": "https://www.linkedin.com/in/henryblack1/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Full Stack Engineer", + "industry": "Design", + "cities": ["Nashville"], + "_id": { + "$oid": "666cbc3240af7b375e3524e3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "McGraw Hill", + "name": "Kristin Green", + "email": "kngreen@umich.edu", + "linkedIn": "https://www.linkedin.com/in/kristin-green-101902a4/", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Nashville", "Colorado Springs"], + "_id": { + "$oid": "666cbc3240af7b375e3524e4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mcgraw Hill", + "name": "Richard Guo", + "email": "richardguo11@gmail.com", + "linkedIn": "https://www.linkedin.com/in/richardyguo/", + "campus": "LA / WCRI", + "cohort": "46", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Plano", "Kansas City", "Sรฃo Paulo"], + "_id": { + "$oid": "666cbc3240af7b375e3524e5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "McGraw-Hill Education", + "name": "Victor Wang", + "email": "vwang4536@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vwang4536", + "campus": "LA", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Consulting and technology services", + "cities": ["New York", "Henderson", "Irvine", "Bakersfield"], + "_id": { + "$oid": "666cbc3240af7b375e3524e6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "McKinsey & Company", + "name": "Em Podhorcer", + "email": "epithe@gmail.com", + "linkedIn": "https://www.linkedin.com/feed/", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Engineer I", + "industry": "Consulting", + "cities": ["Chicago", "Sรฃo Paulo", "Greensboro", "New York"], + "_id": { + "$oid": "666cbc3240af7b375e3524e7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "McKinsey & Company", + "name": "Matthew Yeon", + "email": "yeon34387@gmail.com", + "linkedIn": "https://www.linkedin.com/in/matthew-yeon/", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Software Engineer", + "industry": "Consulting", + "cities": ["Cincinnati", "Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e3524e8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MDCalc", + "name": "Jonah Wilkof", + "email": "wilkof.jonah@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonahwilkof/", + "campus": "NYC", + "cohort": "7", + "jobTitle": "Software Engineer", + "industry": "Fintech, Payment Processing", + "cities": ["San Francisco"], + "_id": { + "$oid": "666cbc3240af7b375e3524e9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Medal.tv", + "name": "Joseph Heinz", + "email": "joeheinz99@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joseph-heinz1/", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Full Stack Engineer", + "industry": "Gaming", + "cities": ["London", "Saint Paul", "Seattle"], + "_id": { + "$oid": "666cbc3240af7b375e3524ea" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MediaMonks NYC", + "name": "Case Simmons", + "email": "casesimmons@pm.me", + "linkedIn": "https://www.linkedin.com/mwlite/in/case-simmons", + "campus": "LA", + "cohort": "38", + "jobTitle": "Creative Technologist", + "industry": "Digital Production", + "cities": ["Plano", "Virginia Beach", "Houston"], + "_id": { + "$oid": "666cbc3240af7b375e3524eb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mediaocean", + "name": "Parker Keller", + "email": "parkerkeller@gmail.com", + "linkedIn": "https://www.linkedin.com/in/parkerkeller/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Senior Software Engineer", + "industry": "Advertising & Marketing", + "cities": ["Arlington", "Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e3524ec" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Medical Informatics Engineering", + "name": "Keifer Alan Beck", + "email": "keiferbeck@gmail.com", + "linkedIn": "https://www.linkedin.com/in/k-alan-beck", + "campus": "FTRI / CTRI", + "cohort": "16", + "jobTitle": "Fullstack Developer", + "industry": "Healthtech/Healthcare", + "cities": ["Corpus Christi", "Arlington", "San Jose"], + "_id": { + "$oid": "666cbc3240af7b375e3524ed" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Medidata", + "name": "Wontae Han", + "email": "wontaeh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/wontaeh/", + "campus": "NYC", + "cohort": "4", + "jobTitle": "Frontend Engineer", + "industry": "", + "cities": ["Austin", "Stockton", "Scottsdale", "Winston-Salem"], + "_id": { + "$oid": "666cbc3240af7b375e3524ee" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Medium", + "name": "Keiran Carpen", + "email": "keirancarpen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/keirancarpen/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Senior Full Stack Engineer, Trust & Safety", + "industry": "Online publishing platform", + "cities": ["Cincinnati"], + "_id": { + "$oid": "666cbc3240af7b375e3524ef" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Medly Pharmacy", + "name": "Austin Ruby", + "email": "austinjruby@gmail.com", + "linkedIn": "https://www.linkedin.com/in/austinjruby/", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Software Engineer I", + "industry": "Healthcare", + "cities": ["Indianapolis"], + "_id": { + "$oid": "666cbc3240af7b375e3524f0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MedMen", + "name": "Brendan Morrell", + "email": "brendanmorrell@gmail.com", + "linkedIn": "https://linkedin.com/in/brendanmorrell", + "campus": "LA", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["New Orleans", "Cincinnati"], + "_id": { + "$oid": "666cbc3240af7b375e3524f1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Meltwater", + "name": "Richard Lam", + "email": "rlam108994@gmail.com", + "linkedIn": "https://www.linkedin.com/in/richardlam108/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "Digital Media Intelligence", + "cities": ["Berlin", "Lincoln", "Washington", "Toledo"], + "_id": { + "$oid": "666cbc3240af7b375e3524f2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MeltWater", + "name": "Sebastian Damazo", + "email": "sebastiandamazo1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ernesto-sebastian-damazo", + "campus": "LA", + "cohort": "42", + "jobTitle": "Backend software engineer level 2", + "industry": "Software as a Service", + "cities": ["Garland", "London", "St. Petersburg"], + "_id": { + "$oid": "666cbc3240af7b375e3524f3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Memorial Sloan Kettering", + "name": "David Zhang", + "email": "davidzhang8828@gmail.com", + "linkedIn": "https://www.linkedin.com/in/davdjz/", + "campus": "NYC", + "cohort": "17", + "jobTitle": "Advanced Software Developer", + "industry": "Healthcare", + "cities": ["Fort Worth", "Anaheim", "North Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e3524f4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Memorial Sloan Kettering", + "name": "Phillip Yoo", + "email": "phillipyoo.218@gmail.com", + "linkedIn": "https://www.linkedin.com/in/phillipyoo218/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Bioinformatics Software Engineer I", + "industry": "Healthcare", + "cities": ["Seattle", "London", "Buffalo", "Tokyo"], + "_id": { + "$oid": "666cbc3240af7b375e3524f5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Memorial Sloan Kettering Cancer Center", + "name": "Raymond Kwan", + "email": "kwanvm@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rkwn/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Frontend Software Engineer", + "industry": "Health", + "cities": ["Pittsburgh", "Paris", "Tucson", "St. Petersburg"], + "_id": { + "$oid": "666cbc3240af7b375e3524f6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Memorial Sloan Kettering Cancer Center", + "name": "Natsuki Wada", + "email": "wachka06@gmail.com", + "linkedIn": "https://www.linkedin.com/in/natsukiwada/", + "campus": "FTRI", + "cohort": "3", + "jobTitle": "Software Engineer II", + "industry": "Healthcare", + "cities": ["Philadelphia", "Toronto", "San Francisco", "Honolulu"], + "_id": { + "$oid": "666cbc3240af7b375e3524f7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mento", + "name": "James Highsmith", + "email": "me@jameshighsmith.com", + "linkedIn": "https://www.linkedin.com/in/jameshighsmith/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Lead Fullstack Engineer", + "industry": "HR", + "cities": ["St. Petersburg", "Corpus Christi", "Atlanta", "Wichita"], + "_id": { + "$oid": "666cbc3240af7b375e3524f8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mentorcam", + "name": "Stephen Rivas", + "email": "Stephen.Anthony.rivas@gmail.com", + "linkedIn": "https://linkedin.com/in/stephenscript", + "campus": "NYOI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Sacramento", "Washington", "Irving", "San Antonio"], + "_id": { + "$oid": "666cbc3240af7b375e3524f9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mentra", + "name": "Mathew Hultquist", + "email": "mathew.j.hultquist@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mjhult/", + "campus": "PTRI", + "cohort": "9", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Software / Tech", + "cities": ["Orlando"], + "_id": { + "$oid": "666cbc3240af7b375e3524fa" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Merck", + "name": "Jin Yoo", + "email": "iyoojin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/iyoojin/", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Mumbai", "Oakland", "Santa Ana"], + "_id": { + "$oid": "666cbc3240af7b375e3524fb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Meredith", + "name": "Kai Evans", + "email": "kaijosefevans@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonathan-jim-ramirez/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer", + "industry": "Media Agency", + "cities": ["Virginia Beach", "Baltimore"], + "_id": { + "$oid": "666cbc3240af7b375e3524fc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mess", + "name": "Anne-lise Emig", + "email": "anneliseemig@gmail.com", + "linkedIn": "linkedin.com/in/anneliseemig", + "campus": "FTRI / CTRI", + "cohort": "15", + "jobTitle": "Junior Web Developer", + "industry": "Marketing", + "cities": ["Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e3524fd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Meta", + "name": "Carlos Lovera", + "email": "Calovera@bu.edu", + "linkedIn": "", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Partner Engineer", + "industry": "Fintech", + "cities": ["Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e3524fe" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Meta", + "name": "Jonathan Jim Ramirez", + "email": "jramirezor.91@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonathan-jim-ramirez/", + "campus": "PTRI", + "cohort": "0", + "jobTitle": "Data Engineer", + "industry": "Social Media + VR", + "cities": ["Las Vegas", "Fresno"], + "_id": { + "$oid": "666cbc3240af7b375e3524ff" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Meta", + "name": "Karandeep Ahluwalia", + "email": "karandeepahluwalia@gmail.com", + "linkedIn": "https://www.linkedin.com/in/karandeepahluwalia97/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Software Engineer", + "industry": "Technology", + "cities": ["Durham", "Las Vegas", "Lubbock"], + "_id": { + "$oid": "666cbc3240af7b375e352500" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Meta", + "name": "Tom Herrmann", + "email": "Tomherrmannd@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thomasherrmann1/", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Software engineer - E4", + "industry": "", + "cities": ["Berlin"], + "_id": { + "$oid": "666cbc3240af7b375e352501" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Metecs", + "name": "Justin Lee Kirk", + "email": "justinleekirk@gmail.com", + "linkedIn": "https://www.linkedin.com/in/justinleekirk/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Software Engineer", + "industry": "Research", + "cities": ["Indianapolis", "Pittsburgh", "Oklahoma City"], + "_id": { + "$oid": "666cbc3240af7b375e352502" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Metric5", + "name": "Alex Kang", + "email": "akang0408@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alex-kang/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Software Engineer", + "industry": "Information Technology & Services", + "cities": ["Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e352503" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Metrolina Greenhouses", + "name": "Stefan Jordan", + "email": "sjordan2010@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stefan-w-jordan", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Frontend Software Engineer", + "industry": "Agriculture Science", + "cities": ["Tucson", "Scottsdale"], + "_id": { + "$oid": "666cbc3240af7b375e352504" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Alonso Garza", + "email": "alonsogarza6@gmail.com", + "linkedIn": "https://www.linkedin.com/in/e-alonso-garza/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer II", + "industry": "Software", + "cities": ["Detroit", "Sacramento", "Phoenix", "Toledo"], + "_id": { + "$oid": "666cbc3240af7b375e352505" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Bernie Green", + "email": "bgreen280@gmail.com", + "linkedIn": "https://www.linkedin.com/in/berniegreen/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Colorado Springs"], + "_id": { + "$oid": "666cbc3240af7b375e352506" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Brad Morgan", + "email": "bkmorgan3@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bkmorgan3/", + "campus": "LA", + "cohort": "31", + "jobTitle": "UI Engineer", + "industry": "Tech", + "cities": ["Omaha", "Laredo", "Charlotte", "Chicago"], + "_id": { + "$oid": "666cbc3240af7b375e352507" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Brandi Richardson", + "email": "brandi.jrichardson@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brandi-richardson-28295158/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Software Engineer ll", + "industry": "Computer Software", + "cities": ["Indianapolis", "Miami"], + "_id": { + "$oid": "666cbc3240af7b375e352508" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Brian Hong", + "email": "brianhhong96@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brianhhong", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer", + "industry": "Cloud", + "cities": ["Saint Paul", "New Orleans", "Portland"], + "_id": { + "$oid": "666cbc3240af7b375e352509" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Georgina Carr", + "email": "carre.georgina@gmail.com", + "linkedIn": "https://www.linkedin.com/in/georginacarr/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Software Engineer, Contract", + "industry": "tech", + "cities": ["Omaha", "Gilbert", "Memphis"], + "_id": { + "$oid": "666cbc3240af7b375e35250a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Andrew Dunne", + "email": "Drewdunne88@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andrew-dunne-7620bb84", + "campus": "LA / WCRI", + "cohort": "53", + "jobTitle": "Senior Automation Engineer", + "industry": "Gaming", + "cities": ["Tucson", "Mexico City", "Denver", "Anchorage"], + "_id": { + "$oid": "666cbc3240af7b375e35250b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Griffin Roger Mccartney Silver", + "email": "griffinrogersilver@gmail.com", + "linkedIn": "https://www.linkedin.com/in/griffin-silver/", + "campus": "LA / WCRI", + "cohort": "43", + "jobTitle": "Cloud Support Engineer", + "industry": "IT Services", + "cities": ["Anchorage", "Garland", "Anaheim"], + "_id": { + "$oid": "666cbc3240af7b375e35250c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Rella Cruz", + "email": "rellas.email@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rella/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Software Engineer Apprentice (LEAP Program)", + "industry": "Computer Technology", + "cities": ["El Paso", "Scottsdale"], + "_id": { + "$oid": "666cbc3240af7b375e35250d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Silvia Kemp Miranda", + "email": "silvia.kemp@gmail.com", + "linkedIn": "https://www.linkedin.com/in/silviakmiranda/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Technical Program Manager", + "industry": "Technology", + "cities": ["Houston", "Charlotte", "Lexington"], + "_id": { + "$oid": "666cbc3240af7b375e35250e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Timothy Jung", + "email": "timjj92@gmail.com", + "linkedIn": "www.linkedin.com/in/timjj92", + "campus": "LA", + "cohort": "32", + "jobTitle": "Software Development Engineer", + "industry": "Cloud computing", + "cities": ["Saint Paul", "Kansas City", "Tokyo"], + "_id": { + "$oid": "666cbc3240af7b375e35250f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Tjolanda \"Sully\" Sullivan", + "email": "tjolanda.sullivan@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tjolanda-sullivan/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer", + "industry": "Cloud Storage", + "cities": ["Detroit", "Philadelphia", "Louisville"], + "_id": { + "$oid": "666cbc3240af7b375e352510" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "William kencel", + "email": "Wkencel1@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "40", + "jobTitle": "React/react native/full stack engineer", + "industry": "Device payment system", + "cities": ["New Orleans"], + "_id": { + "$oid": "666cbc3240af7b375e352511" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Microsoft Leap Apprenticeship Program (via Aerotek)", + "name": "Roseanne Damasco", + "email": "rosedamasco@gmail.com", + "linkedIn": "https://www.linkedin.com/in/roseannedamasco/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer", + "industry": "Computer Software", + "cities": ["Sรฃo Paulo"], + "_id": { + "$oid": "666cbc3240af7b375e352512" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mighty", + "name": "Jakob Kousholt", + "email": "jakobjk@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jakobjk/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Software Engineer", + "industry": "Consumer Services", + "cities": ["Seattle"], + "_id": { + "$oid": "666cbc3240af7b375e352513" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MightyHive", + "name": "Alyso Swerdloff", + "email": "alysonswerdloff@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alyson-swerdloff/", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Technical Solutions Engineer", + "industry": "Insurance/ cybersecurity", + "cities": ["North Las Vegas", "Anchorage"], + "_id": { + "$oid": "666cbc3240af7b375e352514" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mimecast", + "name": "Tim Ruszala", + "email": "truszala@gmail.com", + "linkedIn": "https://www.linkedin.com/in/timruszala/", + "campus": "NYC", + "cohort": "32", + "jobTitle": "Senior Software Engineer", + "industry": "Security", + "cities": ["Mesa", "Tokyo", "Tampa"], + "_id": { + "$oid": "666cbc3240af7b375e352515" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MindBody", + "name": "Charlie Malave", + "email": "malavecharles@gmail.com", + "linkedIn": "https://www.linkedin.com/in/charlesmalave/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "Fitness Tech", + "cities": ["Orlando", "Wichita", "Sydney"], + "_id": { + "$oid": "666cbc3240af7b375e352516" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mindbody ClassPass", + "name": "Christina Son", + "email": "christinason17@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christinason17/", + "campus": "FTRI / CTRI", + "cohort": "7", + "jobTitle": "Software Engineer I", + "industry": "Fitness/Wellness", + "cities": ["Fort Worth"], + "_id": { + "$oid": "666cbc3240af7b375e352517" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MindCloud", + "name": "Emily Chu", + "email": "lin.emily.chu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lin-chu/", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Junior Software Engineer", + "industry": "Software / Tech", + "cities": ["Madison", "Jacksonville", "Newark", "Santa Ana"], + "_id": { + "$oid": "666cbc3240af7b375e352518" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mindstrong", + "name": "Chon Hou Ho", + "email": "chonhouh@gmail.com", + "linkedIn": "https://www.linkedin.com/mwlite/in/chon-hou-ho", + "campus": "FTRI", + "cohort": "6", + "jobTitle": "Software Engineer I, Full Stack", + "industry": "Healthcare", + "cities": ["Beijing", "Toronto", "Fort Worth", "Memphis"], + "_id": { + "$oid": "666cbc3240af7b375e352519" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mirror.xyz", + "name": "Nathaniel Grossman", + "email": "nathanielbensongrossman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nathanielgrossman/", + "campus": "LA", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "Education", + "cities": ["Philadelphia", "Colorado Springs", "Boston", "Omaha"], + "_id": { + "$oid": "666cbc3240af7b375e35251a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mission Lane", + "name": "Ali Elhawary", + "email": "Alielhawary123@gmail.com", + "linkedIn": "", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Portland", "Tulsa"], + "_id": { + "$oid": "666cbc3240af7b375e35251b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mission Lane", + "name": "Esther Cho", + "email": "xesthercho@gmail.com", + "linkedIn": "https://www.linkedin.com/in/esther-cho/", + "campus": "LA", + "cohort": "49", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Norfolk", "Colorado Springs", "Fort Wayne", "Lexington"], + "_id": { + "$oid": "666cbc3240af7b375e35251c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mitchell Martin", + "name": "Jonathan Barenboim", + "email": "Jonathan.Barenboim@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonathan-barenboim/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Fort Worth", "Toledo"], + "_id": { + "$oid": "666cbc3240af7b375e35251d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MJH Life Sciences", + "name": "Arthur Sato", + "email": "swatto12@gmail.com", + "linkedIn": "https://www.linkedin.com/in/arthursato", + "campus": "NYC", + "cohort": "25", + "jobTitle": "React Developer", + "industry": "Health Care Media", + "cities": ["Nashville", "Durham", "El Paso"], + "_id": { + "$oid": "666cbc3240af7b375e35251e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MKTG", + "name": "Garrett Lee", + "email": "geewai.lee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/geewailee/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Senior Software Developer", + "industry": "Marketing", + "cities": ["Baltimore"], + "_id": { + "$oid": "666cbc3240af7b375e35251f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MNTN", + "name": "Chris Franz", + "email": "chrisfranz@mac.com", + "linkedIn": "https://www.linkedin.com/in/chris--franz/", + "campus": "LA", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Advertising", + "cities": ["Nashville", "New York", "Jacksonville"], + "_id": { + "$oid": "666cbc3240af7b375e352520" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MNTN", + "name": "Timothy Kachler", + "email": "kachler@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tkachler", + "campus": "LA", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Advertising", + "cities": ["Louisville", "Norfolk", "Irvine", "Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e352521" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MNTN", + "name": "Bryan Trang", + "email": "bryanltrang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bryanltrang/", + "campus": "LA / WCRI", + "cohort": "58", + "jobTitle": "Fullstack Software Engineer", + "industry": "Other", + "cities": ["Dallas", "Glendale", "Tokyo"], + "_id": { + "$oid": "666cbc3240af7b375e352522" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Moment House", + "name": "Hoon Choi", + "email": "vhchoi@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "10", + "jobTitle": "Sr. Software eng", + "industry": "Entertainment", + "cities": ["New York", "Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e352523" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MongoDB", + "name": "Cris Newsome", + "email": "crisnewsome@outlook.com", + "linkedIn": "https://linkedin.com/in/crisnewsome", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer II", + "industry": "Tech?", + "cities": ["Minneapolis", "Las Vegas", "Buffalo"], + "_id": { + "$oid": "666cbc3240af7b375e352524" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Monument", + "name": "Midori Yang", + "email": "midoki.yang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/midori-yang/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "", + "industry": "Healthcare", + "cities": ["Tucson", "Louisville"], + "_id": { + "$oid": "666cbc3240af7b375e352525" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Moody's Analytics", + "name": "Alan Ye", + "email": "alye13@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alan-ye-008/", + "campus": "PTRI", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Washington", "Pittsburgh"], + "_id": { + "$oid": "666cbc3240af7b375e352526" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Moody's Analytics", + "name": "Cara Dibdin", + "email": "cdibdin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cara-dibdin/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Senior Software Engineer", + "industry": "Finance", + "cities": ["Greensboro", "Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e352527" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Morgan Stanley", + "name": "Jackie Lin", + "email": "jackie.lin128@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jackielin12/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Developer", + "industry": "Finance", + "cities": ["Mesa", "Honolulu", "Aurora"], + "_id": { + "$oid": "666cbc3240af7b375e352528" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Morning Consult", + "name": "Lucas Lima Taffo", + "email": "lucas.taffo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lucastaffo/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Software Engineer II", + "industry": "Decision Intelligence", + "cities": ["Garland", "Charlotte", "Seattle", "Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e352529" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mothership", + "name": "Carlos Perez", + "email": "crperez@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cpereztoro/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Freight", + "cities": ["Albuquerque", "Kansas City"], + "_id": { + "$oid": "666cbc3240af7b375e35252a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Motion Intelligence", + "name": "Russell F Hayward", + "email": "russdawg44@gmail.com", + "linkedIn": "https://www.linkedin.com/in/russell-hayward/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Cloud Developer", + "industry": "Automotive", + "cities": ["New York", "Tokyo"], + "_id": { + "$oid": "666cbc3240af7b375e35252b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "mPulse Mobile", + "name": "Devon Vaccarino", + "email": "devonev92@gmail.com", + "linkedIn": "https://www.linkedin.com/in/devon-vaccarino/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Mid Software Engineer", + "industry": "Health Communications", + "cities": ["Anchorage"], + "_id": { + "$oid": "666cbc3240af7b375e35252c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MRI-Simmons", + "name": "Dan Lin", + "email": "dannlin91@gmail.com", + "linkedIn": "https://www.linkedin.com/in/danlin91/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "UI Developer", + "industry": "Data Consumer", + "cities": ["Greensboro", "Sacramento", "Buffalo", "Laredo"], + "_id": { + "$oid": "666cbc3240af7b375e35252d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MUFG", + "name": "Parker Hutcheson", + "email": "pdhutcheson@gmail.com", + "linkedIn": "https://www.linkedin.com/in/parkerhutcheson/", + "campus": "FTRI / CTRI", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Philadelphia"], + "_id": { + "$oid": "666cbc3240af7b375e35252e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Mulberry Technology", + "name": "Mia Kang", + "email": "fakeEmail3@fakeEmail.com", + "linkedIn": "https://www.linkedin.com/in/mia-kang/", + "campus": "PTRI", + "cohort": "5", + "jobTitle": "Associate Engineer", + "industry": "Fintech", + "cities": ["Kansas City", "Lexington", "Aurora"], + "_id": { + "$oid": "666cbc3240af7b375e35252f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Multi Media, LLC", + "name": "Cameron Fitz", + "email": "hellocameronfitz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cameron-lee-fitz/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Product Manager, Growth", + "industry": "Entertainment", + "cities": ["Scottsdale"], + "_id": { + "$oid": "666cbc3240af7b375e352530" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Munera", + "name": "Yuehao Wong", + "email": "yuehaowong@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yuehaowong/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Full Stack Developer", + "industry": "Other", + "cities": ["Greensboro", "Louisville", "Henderson"], + "_id": { + "$oid": "666cbc3240af7b375e352531" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Musee Archives", + "name": "Walter David DeVault", + "email": "wdd4services@outlook.com", + "linkedIn": "https://www.linkedin.com/in/walter-devault", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Full-Stack Software Engineer", + "industry": "Media", + "cities": ["Beijing", "Saint Paul", "New Orleans", "St. Louis"], + "_id": { + "$oid": "666cbc3240af7b375e352532" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MX", + "name": "Harlan Evans", + "email": "harlanevans5@gmail.com", + "linkedIn": "https://www.linkedin.com/mwlite/in/harlan-evans", + "campus": "LA", + "cohort": "40", + "jobTitle": "Front end Software engineer (mid-sr)", + "industry": "Fintech", + "cities": ["Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e352533" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "MX", + "name": "Mike Coker", + "email": "mbcoker100@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mike-coker/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Backend JavaScript Engineer", + "industry": "Fintech", + "cities": ["Albuquerque", "Jersey City", "San Diego", "Berlin"], + "_id": { + "$oid": "666cbc3240af7b375e352534" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Naked Development", + "name": "Cayla Co", + "email": "caylasco@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cayla-co/", + "campus": "FTRI", + "cohort": "6", + "jobTitle": "Senior Full Stack Developer", + "industry": "Digital Advertising", + "cities": ["Fort Worth", "Laredo", "Honolulu", "El Paso"], + "_id": { + "$oid": "666cbc3240af7b375e352535" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Namely", + "name": "Yujin kang", + "email": "ykang7858@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "SaaS / HR startup", + "cities": ["Dallas", "Tokyo", "Newark", "Corpus Christi"], + "_id": { + "$oid": "666cbc3240af7b375e352536" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Narmi", + "name": "Derek Lam", + "email": "derekquoc@gmail.com", + "linkedIn": "https://www.linkedin.com/in/derekqlam/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Solutions Engineer", + "industry": "Fintech", + "cities": ["Detroit"], + "_id": { + "$oid": "666cbc3240af7b375e352537" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Narrativ", + "name": "Lisa Han", + "email": "jjlisahan@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lisajjhan/", + "campus": "NYC", + "cohort": "17", + "jobTitle": "Software Engineer", + "industry": "E-commerce", + "cities": ["Cincinnati"], + "_id": { + "$oid": "666cbc3240af7b375e352538" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "National Grid", + "name": "Edward Deng", + "email": "edeng4237@gmail.com", + "linkedIn": "https://www.linkedin.com/in/edwarddeng-/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "Utilities", + "cities": ["Colorado Springs", "Norfolk"], + "_id": { + "$oid": "666cbc3240af7b375e352539" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "Navitus", + "name": "Young Kim", + "email": "young.kim770@gmail.com", + "linkedIn": "https://www.linkedin.com/in/young-j-kim", + "campus": "FTRI / CTRI", + "cohort": "12", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Miami", "St. Petersburg", "Tokyo"], + "_id": { + "$oid": "666cbc3240af7b375e35253a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.252Z" + }, + "__v": 0 + }, + { + "company": "NBA", + "name": "Cecily Jansen", + "email": "cecilyjansen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cecily-j/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Associate Front-End Engineer", + "industry": "Sports & Entertainment Media", + "cities": ["Long Beach", "Lubbock"], + "_id": { + "$oid": "666cbc3240af7b375e35253b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "NBCUniversal", + "name": "Sam Arnold", + "email": "sam.arnold72@gmail.com", + "linkedIn": "https://www.linkedin.com/in/samarnold723/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Software Engineer II", + "industry": "Entertainment", + "cities": ["Riverside", "North Las Vegas", "Oakland"], + "_id": { + "$oid": "666cbc3240af7b375e35253c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "NBCUniversal Media", + "name": "Jimmy Phong", + "email": "jayacados@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jphongmph/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Senior Software Engineer", + "industry": "Media and Entertainment", + "cities": ["North Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e35253d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "NCR", + "name": "Bryan Chau", + "email": "chaubryan@hotmail.com", + "linkedIn": "https://www.linkedin.com/in/chaubryan1", + "campus": "LA / WCRI", + "cohort": "47", + "jobTitle": "SW Engineer III", + "industry": "IT Services", + "cities": ["Garland", "Wichita"], + "_id": { + "$oid": "666cbc3240af7b375e35253e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "NEC", + "name": "Stacey Lee", + "email": "staceyjlee18@gmail.com", + "linkedIn": "https://www.linkedin.com/in/staceyjhlee/", + "campus": "FTRI / CTRI", + "cohort": "16", + "jobTitle": "Full Stack Engineer", + "industry": "Business Tech/Enterprise Tech", + "cities": ["Berlin", "Aurora"], + "_id": { + "$oid": "666cbc3240af7b375e35253f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Neiro AI", + "name": "Daria Mordvinov", + "email": "daria.mordvinov@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dariamordvinov/", + "campus": "NYOI", + "cohort": "1", + "jobTitle": "Frontend Engineer", + "industry": "Artificial Intelligence", + "cities": ["Austin", "Denver"], + "_id": { + "$oid": "666cbc3240af7b375e352540" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Nelnet", + "name": "Zach Brucker", + "email": "zach.brucker@gmail.com", + "linkedIn": "https://www.linkedin.com/in/zachbrucker/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Full-Stack Developer", + "industry": "Fintech", + "cities": ["Long Beach", "Winston-Salem", "Buffalo"], + "_id": { + "$oid": "666cbc3240af7b375e352541" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Neo.Tax", + "name": "Lindsay Baird", + "email": "lindsay.a.baird@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lindsaybaird/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Full-Stack Software Engineer", + "industry": "Fintech", + "cities": ["Boston"], + "_id": { + "$oid": "666cbc3240af7b375e352542" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Neo.tax", + "name": "Miguel Hernandez", + "email": "miguelh72@outlook.com", + "linkedIn": "https://www.linkedin.com/in/miguelh72/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Senior Full-Stack Software Engineer", + "industry": "Fintech", + "cities": ["Lexington", "Columbus", "Sacramento"], + "_id": { + "$oid": "666cbc3240af7b375e352543" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Nespresso", + "name": "Raymond Huang", + "email": "raymond.huang1011@gmail.com", + "linkedIn": "https://www.linkedin.com/in/raymondhuang95/", + "campus": "NYC / ECRI", + "cohort": "31", + "jobTitle": "Associate Front-End Developer", + "industry": "Other", + "cities": ["Fresno", "Raleigh"], + "_id": { + "$oid": "666cbc3240af7b375e352544" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Netflix", + "name": "Josie Glore", + "email": "Josieglore@gmail.com", + "linkedIn": "https://www.linkedin.com/in/josie-glore/", + "campus": "LA", + "cohort": "25", + "jobTitle": "Technologist", + "industry": "Fashion", + "cities": ["Irving", "Buffalo", "Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e352545" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Netflix", + "name": "Sagar Velagala", + "email": "sagar.velagala@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sagarvelagala/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Sr. Analytics Engineer", + "industry": "Software / Tech", + "cities": ["Nashville", "Sacramento"], + "_id": { + "$oid": "666cbc3240af7b375e352546" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Netflix", + "name": "Victoria Adnet", + "email": "victoria.adnet@gmail.com", + "linkedIn": "https://www.linkedin.com/in/victoria-lellis/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Technologist", + "industry": "Entertainment", + "cities": ["Mumbai"], + "_id": { + "$oid": "666cbc3240af7b375e352547" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Netskope", + "name": "Mariya Eyges", + "email": "mariya.sf@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mariya-eyges-8511131/", + "campus": "PTRI", + "cohort": "Beta", + "jobTitle": "Software Engineer", + "industry": "Security Cloud", + "cities": ["Tampa", "Mesa"], + "_id": { + "$oid": "666cbc3240af7b375e352548" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Neulion", + "name": "Myles Green", + "email": "mylescorygreen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/myles-c-green/", + "campus": "NYC", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["St. Petersburg", "Cleveland", "Mumbai"], + "_id": { + "$oid": "666cbc3240af7b375e352549" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "New York Institute of Technology College of Osteopathic Medicine", + "name": "Justin Ribarich", + "email": "jribarich98@gmail.com", + "linkedIn": "https://www.linkedin.com/in/justin-ribarich", + "campus": "NYOI", + "cohort": "2", + "jobTitle": "Full Stack Developer", + "industry": "Education/Edtech", + "cities": ["Fort Worth"], + "_id": { + "$oid": "666cbc3240af7b375e35254a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Newsela", + "name": "Anthony Terruso", + "email": "aterruso@gmail.com", + "linkedIn": "https://www.linkedin.com/in/anthony-w-terruso/", + "campus": "NYC", + "cohort": "7", + "jobTitle": "Senior Web Application Developer", + "industry": "", + "cities": ["Bakersfield", "Winston-Salem"], + "_id": { + "$oid": "666cbc3240af7b375e35254b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Nexient", + "name": "James Kolotouros", + "email": "dkolotouros1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jameskolotouros", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Software Developer II", + "industry": "Tech", + "cities": ["San Francisco"], + "_id": { + "$oid": "666cbc3240af7b375e35254c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Nexient", + "name": "Gaber Mowiena", + "email": "gaber.abouelsoud@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gabermowiena/", + "campus": "NYC", + "cohort": "9", + "jobTitle": "Frontend Developer", + "industry": "Tech products", + "cities": ["Fresno"], + "_id": { + "$oid": "666cbc3240af7b375e35254d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Nexstar Media Group", + "name": "Beckett Hanan", + "email": "beckett.hanan@gmail.com", + "linkedIn": "https://www.linkedin.com/in/becketthanan/", + "campus": "PTRI", + "cohort": "Beta", + "jobTitle": "Front End Software Engineer", + "industry": "Media", + "cities": ["Laredo"], + "_id": { + "$oid": "666cbc3240af7b375e35254e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "NextGen Healthcare", + "name": "Samuel Tran", + "email": "samwell.tran@gmail.com", + "linkedIn": "https://www.linkedin.com/in/samuel-tran-836448231/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Software Engineer II", + "industry": "Healthcare", + "cities": ["London", "El Paso", "Tokyo"], + "_id": { + "$oid": "666cbc3240af7b375e35254f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "NextME", + "name": "Linh Tran", + "email": "linhtanl51@gmail.com", + "linkedIn": "https://www.linkedin.com/in/linhatran", + "campus": "LA", + "cohort": "40", + "jobTitle": "Senior Software Engineer", + "industry": "Management", + "cities": ["San Antonio"], + "_id": { + "$oid": "666cbc3240af7b375e352550" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "NFL", + "name": "Michael Blanchard", + "email": "michael.james.blanchard@gmail.com", + "linkedIn": "https://www.linkedin.com/in/miblanchard12/", + "campus": "LA", + "cohort": "7", + "jobTitle": "Director of Engineering - Platform", + "industry": "Media / Sports", + "cities": ["Los Angeles"], + "_id": { + "$oid": "666cbc3240af7b375e352551" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Niantic", + "name": "Oliver Zhang", + "email": "zezang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/oliver-zhang91", + "campus": "PTRI", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Henderson", "Tampa"], + "_id": { + "$oid": "666cbc3240af7b375e352552" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Nielsen", + "name": "Alexander Tu", + "email": "alexandertu95@gmail.com", + "linkedIn": "https://www.linkedin.com/in/atu816", + "campus": "FTRI / CTRI", + "cohort": "12", + "jobTitle": "Senior Software Engineer", + "industry": "Business Analytics", + "cities": ["Colorado Springs", "Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e352553" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Nielsen", + "name": "Diana Kim", + "email": "ruslanovna.kim@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ruslanovna/", + "campus": "NYC / ECRI", + "cohort": "31", + "jobTitle": "Software Engineer II", + "industry": "Business Analytics", + "cities": ["Jersey City"], + "_id": { + "$oid": "666cbc3240af7b375e352554" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Nielsen Sports", + "name": "Karina Illesova", + "email": "karin.illesova@gmail.com", + "linkedIn": "https://www.linkedin.com/in/karin-illesova/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Sr Software Engineer", + "industry": "Information Technology & Services", + "cities": ["Nashville", "Saint Paul", "Laredo", "Fort Worth"], + "_id": { + "$oid": "666cbc3240af7b375e352555" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Nike", + "name": "adrian Sun", + "email": "Adriansun2@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adrian-sun", + "campus": "LA", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Travel", + "cities": ["Colorado Springs", "Winston-Salem"], + "_id": { + "$oid": "666cbc3240af7b375e352556" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Nimble", + "name": "Zachary Daniels", + "email": "Zackdanielsnyc@gmail.com", + "linkedIn": "LinkedIn.com/in/zackdanielsnyc", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Wichita", "Glendale", "Louisville", "Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e352557" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Nobel.AI", + "name": "Kate Chanthakaew", + "email": "kubkate@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kate-chanthakaew/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Full Stack Engineer", + "industry": "Scientist R&D", + "cities": ["Scottsdale", "Minneapolis", "Tampa", "Seattle"], + "_id": { + "$oid": "666cbc3240af7b375e352558" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Noblr Insurance", + "name": "Brian Taylor", + "email": "brian.taylor818@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brianwtaylor/", + "campus": "LA", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "Health", + "cities": ["San Antonio", "El Paso", "Milwaukee"], + "_id": { + "$oid": "666cbc3240af7b375e352559" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Nomad Health", + "name": "Julia Bakerink", + "email": "juliabakerink@gmail.com", + "linkedIn": "https://www.linkedin.com/in/juliabakerink/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Fullstack Software Engineer", + "industry": "Healthcare", + "cities": ["Sydney", "San Francisco", "Madison"], + "_id": { + "$oid": "666cbc3240af7b375e35255a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Nomad Health", + "name": "Neftali Dominguez", + "email": "n.l.dominguez23@gmail.com", + "linkedIn": "https://www.linkedin.com/in/neftalildominguez/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Senior Software Engineer", + "industry": "Health", + "cities": ["Toledo", "Lubbock", "Raleigh", "Jersey City"], + "_id": { + "$oid": "666cbc3240af7b375e35255b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Nordstrom", + "name": "Vicki Lee", + "email": "leevicki01@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vlee022/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer", + "industry": "E-Commerce / Fashion", + "cities": ["Gilbert", "Kansas City", "Indianapolis"], + "_id": { + "$oid": "666cbc3240af7b375e35255c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Nordstrom", + "name": "Sohee Lee", + "email": "soheelee1985@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sohee419/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Engineer 2", + "industry": "Fintech", + "cities": ["St. Louis"], + "_id": { + "$oid": "666cbc3240af7b375e35255d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Nordstrom Rack | HauteLook", + "name": "Robb Eastman", + "email": "ereastman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/robbeastman/", + "campus": "LA", + "cohort": "31", + "jobTitle": "Software Engineer I, Web", + "industry": "Fashion", + "cities": ["Beijing", "Fort Wayne"], + "_id": { + "$oid": "666cbc3240af7b375e35255e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Noria Water Technologies", + "name": "Umair Shafiq", + "email": "umairshafiqprof@gmail.com", + "linkedIn": "https://www.linkedin.com/in/umair-w-shafiq/", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Associate Developer", + "industry": "Other", + "cities": ["New York"], + "_id": { + "$oid": "666cbc3240af7b375e35255f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "North American Bancard", + "name": "Edward Chow", + "email": "Pdphybrid@gmail.com", + "linkedIn": "https://www.linkedin.com/in/edkchow/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Full Stack Engineer", + "industry": "Fintech", + "cities": ["Houston", "Glendale", "Portland"], + "_id": { + "$oid": "666cbc3240af7b375e352560" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Northflank", + "name": "Emma Genesen", + "email": "genesen.emma@gmail.com", + "linkedIn": "https://www.linkedin.com/in/emma-genesen/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Head of Developer Marketing", + "industry": "Cloud Services", + "cities": ["Lubbock", "Winston-Salem", "Aurora", "Raleigh"], + "_id": { + "$oid": "666cbc3240af7b375e352561" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Northrop Grumman", + "name": "David Lopez", + "email": "d7lopez@gmail.com", + "linkedIn": "https://www.linkedin.com/in/david-michael-lopez/", + "campus": "NYC / ECRI", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Aerospace", + "cities": ["Chesapeake"], + "_id": { + "$oid": "666cbc3240af7b375e352562" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Northrop Grumman", + "name": "Michael Way", + "email": "mjway01@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michaeljway/", + "campus": "PTRI", + "cohort": "10", + "jobTitle": "Cognitive Software Engineer", + "industry": "Aerospace", + "cities": ["Lubbock", "Fresno"], + "_id": { + "$oid": "666cbc3240af7b375e352563" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Northspyre", + "name": "Vaughn Sulit", + "email": "bvaughnsulit@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bvaughnsulit/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Full Stack Engineer", + "industry": "Real Estate", + "cities": ["Chandler"], + "_id": { + "$oid": "666cbc3240af7b375e352564" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Northwestern Mutual", + "name": "Hussein Hamade", + "email": "hamade.hussein00@gmail.com", + "linkedIn": "https://www.linkedin.com/in/husseinhamade1/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Software Engineer (P2 - Midlevel)", + "industry": "Fintech", + "cities": ["Chandler", "San Antonio", "Phoenix", "Winston-Salem"], + "_id": { + "$oid": "666cbc3240af7b375e352565" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Northwestern Mutual", + "name": "Jake Policano", + "email": "jdpolicano@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jacob-policano/", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["New York", "Sรฃo Paulo", "Gilbert"], + "_id": { + "$oid": "666cbc3240af7b375e352566" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Northwestern Mutual", + "name": "Max Lee", + "email": "maxolee23@gmail.com", + "linkedIn": "https://www.linkedin.com/in/max-lee1", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Full Stack Software Engineer", + "industry": "Fintech", + "cities": ["Chula Vista", "Boston", "Lubbock", "Oakland"], + "_id": { + "$oid": "666cbc3240af7b375e352567" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Northwestern Mutual", + "name": "Vince Nguyen", + "email": "vince.g.nguyen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vince-nguyen/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Full Stack Software Engineer", + "industry": "Fintech/Insurance", + "cities": ["Sรฃo Paulo"], + "_id": { + "$oid": "666cbc3240af7b375e352568" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Northwestern Mutual", + "name": "Warren Harrison Tait", + "email": "warrenhtait@gmail.com", + "linkedIn": "https://www.linkedin.com/in/warrenhtait/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Full Stack Software Engineer", + "industry": "Fintech", + "cities": ["Tokyo", "Seattle", "Anaheim"], + "_id": { + "$oid": "666cbc3240af7b375e352569" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Not currently employed in tech/as a dev", + "name": "Evan Deam", + "email": "ebdeam@gmail.com", + "linkedIn": "https://www.linkedin.com/in/evandeam/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Registered Nurse", + "industry": "Healthtech/Healthcare", + "cities": ["Garland", "Indianapolis", "Toledo"], + "_id": { + "$oid": "666cbc3240af7b375e35256a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Notion", + "name": "Marissa Lafontant", + "email": "marissa.lafontant@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mlafontant/", + "campus": "NYC", + "cohort": "2", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["North Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e35256b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Nousot", + "name": "Winslow Taylor", + "email": "winslow.benjamin.taylor@gmail.com", + "linkedIn": "https://www.linkedin.com/in/winslow-taylor/", + "campus": "FTRI", + "cohort": "6", + "jobTitle": "Advance Associate", + "industry": "IT, SaaS", + "cities": ["Berlin", "North Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e35256c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Noyo", + "name": "Jonathan Mendoza", + "email": "j.d.mendoza415@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonathan-mendoza1", + "campus": "LA", + "cohort": "41", + "jobTitle": "L1 Engineer", + "industry": "Heath care", + "cities": ["Irvine", "Kansas City", "Jacksonville", "Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e35256d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "NPR", + "name": "Alex Mannix", + "email": "alexleemannix@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alex-mannix-53015668/", + "campus": "NYC", + "cohort": "5", + "jobTitle": "Junior Software Engineer", + "industry": "", + "cities": ["San Francisco", "Buffalo", "Portland"], + "_id": { + "$oid": "666cbc3240af7b375e35256e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "NPR", + "name": "Jordan Grubb", + "email": "imjordangrubb@gmail.com", + "linkedIn": "https://www.linkedin.com/in/j-grubb/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "Subscriptions", + "cities": ["Anaheim", "Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e35256f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "NPR", + "name": "Samantha Wessel", + "email": "samantha.n.wessel@gmail.com", + "linkedIn": "https://www.linkedin.com/in/samantha-wessel/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "News Media", + "cities": ["Baltimore", "Washington"], + "_id": { + "$oid": "666cbc3240af7b375e352570" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "NU Borders", + "name": "Ryan Tumel", + "email": "rtumel123@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ryan-tumel/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Information Technology & Services", + "cities": ["Tucson", "Fort Wayne", "Sacramento"], + "_id": { + "$oid": "666cbc3240af7b375e352571" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "NWEA", + "name": "Celene Chang", + "email": "Celene Chang", + "linkedIn": "https://www.linkedin.com/in/celenecchang/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Winston-Salem", "Honolulu", "Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e352572" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "NYU Langone Health", + "name": "Alexander Lin", + "email": "alexanderlin164@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexander-lin-8aab79167/", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Developer 1", + "industry": "Healthtech/Healthcare", + "cities": ["Toledo", "St. Louis", "Mesa", "Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e352573" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "O POSITIV", + "name": "Jonah Lin", + "email": "jjonah.lin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/linjonah/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Software Engineer (eCommerce)", + "industry": "E-commerce", + "cities": ["Milwaukee", "St. Petersburg", "Mumbai", "San Antonio"], + "_id": { + "$oid": "666cbc3240af7b375e352574" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "ObvioHealth", + "name": "Joshua Jordan", + "email": "josh.r.jordan@gmail.com", + "linkedIn": "https://www.linkedin.com/in/josh-r-jordan/", + "campus": "NYC / ECRI", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Biotech", + "cities": ["Tampa"], + "_id": { + "$oid": "666cbc3240af7b375e352575" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "OceanX", + "name": "Jun Lee", + "email": "jushuworld@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jushuworld/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Full Stack Developer", + "industry": "E-commerce", + "cities": ["Los Angeles", "Anaheim", "Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e352576" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Ocrolus", + "name": "Daniel Shu", + "email": "shudaniel95@gmail.com", + "linkedIn": "https://www.linkedin.com/in/danielshu/", + "campus": "NYC", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Blockchain", + "cities": ["Baltimore", "Fresno", "Mumbai", "Jersey City"], + "_id": { + "$oid": "666cbc3240af7b375e352577" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Octane Lending", + "name": "Christian Paul Ejercito", + "email": "chris.paul.ejercito@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christian-paul-ejercito/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer II", + "industry": "Fintech", + "cities": ["Atlanta", "Santa Ana"], + "_id": { + "$oid": "666cbc3240af7b375e352578" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Odie Pet Insurance", + "name": "Nicholas Echols", + "email": "nechols87@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nickechols87/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Senior Software Engineer", + "industry": "", + "cities": ["Cincinnati"], + "_id": { + "$oid": "666cbc3240af7b375e352579" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "ODME Solutions", + "name": "Jackqueline Nguyen", + "email": "jackquelineanguyen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jackquelinenguyen/", + "campus": "LA / WCRI", + "cohort": "54", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Oklahoma City", "Albuquerque", "Tampa"], + "_id": { + "$oid": "666cbc3240af7b375e35257a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Okta", + "name": "Sterling Deng", + "email": "sterlingdeng@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sterling-deng/", + "campus": "LA", + "cohort": "27", + "jobTitle": "Software Engineer", + "industry": "SaaS - Security", + "cities": ["Las Vegas", "Gilbert"], + "_id": { + "$oid": "666cbc3240af7b375e35257b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Olive AI", + "name": "Saejin Kang", + "email": "saejin.kang1004@gmail.com", + "linkedIn": "https://www.linkedin.com/in/saejinkang1004/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["St. Petersburg", "Anchorage", "Phoenix"], + "_id": { + "$oid": "666cbc3240af7b375e35257c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Olivine Inc", + "name": "Yirou Chen", + "email": "yirou.zm@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yirouchen/", + "campus": "PTRI", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Houston", "Irving", "Orlando"], + "_id": { + "$oid": "666cbc3240af7b375e35257d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Ollie", + "name": "Brynn Sakell", + "email": "brynnsakell@gmail.com", + "linkedIn": "www.linkedin.com/in/brynnsakell", + "campus": "NYOI", + "cohort": "1", + "jobTitle": "Software Engineer, Front End", + "industry": "Other", + "cities": ["Berlin", "Corpus Christi", "Honolulu"], + "_id": { + "$oid": "666cbc3240af7b375e35257e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Omaze", + "name": "Rachel Kim", + "email": "rayykim323@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rayykim/", + "campus": "LA", + "cohort": "31", + "jobTitle": "Software Engineer", + "industry": "Fundraising", + "cities": ["Garland"], + "_id": { + "$oid": "666cbc3240af7b375e35257f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "OneSignal", + "name": "Dean Ohashi", + "email": "d.n.ohashi@gmail.com", + "linkedIn": "https://www.linkedin.com/in/deanohashi/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "MarTech", + "cities": ["San Antonio"], + "_id": { + "$oid": "666cbc3240af7b375e352580" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "OneTrack.AI", + "name": "Alexander Martinez", + "email": "alexmartinez7184@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexander-martinez415/", + "campus": "LA / WCRI", + "cohort": "53", + "jobTitle": "Implementation Support Engineer", + "industry": "Artificial Intelligence", + "cities": ["Anchorage", "Fresno", "Detroit", "Bakersfield"], + "_id": { + "$oid": "666cbc3240af7b375e352581" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "OneView", + "name": "Sean Yoo", + "email": "yooys87@gmail.com", + "linkedIn": "https://www.linkedin.com/in/seanyyoo/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Full Stack Developer", + "industry": "ECommerce", + "cities": ["Aurora", "Dallas", "Tulsa"], + "_id": { + "$oid": "666cbc3240af7b375e352582" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Onyx Team at JP Morgan Chase", + "name": "Dwayne Richards", + "email": "dwaynerichards@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dnkrichards", + "campus": "NYC / ECRI", + "cohort": "24", + "jobTitle": "Senior Blockchain Engineer", + "industry": "Blockchain/Web3", + "cities": ["Los Angeles", "Indianapolis"], + "_id": { + "$oid": "666cbc3240af7b375e352583" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Oomph", + "name": "Rob Mosher", + "email": "rob@robmosher.com", + "linkedIn": "https://www.linkedin.com/in/rob-mosher-it/", + "campus": "NYOI", + "cohort": "1", + "jobTitle": "Senior Software Engineer", + "industry": "Software / Tech", + "cities": ["Austin", "Sydney", "Indianapolis", "Wichita"], + "_id": { + "$oid": "666cbc3240af7b375e352584" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "OpenFin", + "name": "Elliott Burr", + "email": "elliottnburr@gmail.com", + "linkedIn": "https://www.linkedin.com/in/elliott-burr/", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["San Antonio", "St. Louis"], + "_id": { + "$oid": "666cbc3240af7b375e352585" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Openfin", + "name": "Hina Khalid", + "email": "k.hinaa87@gmail.com", + "linkedIn": "", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Software engineer", + "industry": "Fintech", + "cities": ["Fresno", "Sรฃo Paulo"], + "_id": { + "$oid": "666cbc3240af7b375e352586" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Opentrons", + "name": "Geovanni Alarcon", + "email": "geovannialarcon92@gmail.com", + "linkedIn": "https://www.linkedin.com/in/geo-alarcon/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Biotech, Robotics", + "cities": ["Cincinnati", "Buffalo", "Oklahoma City", "Madison"], + "_id": { + "$oid": "666cbc3240af7b375e352587" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Opentrons", + "name": "Jamey Huffnagle", + "email": "mjhuffnagle@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jamey-huffnagle/", + "campus": "NYOI", + "cohort": "3", + "jobTitle": "Senior Software Engineer", + "industry": "Biotech", + "cities": ["Irving", "Lubbock"], + "_id": { + "$oid": "666cbc3240af7b375e352588" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Optimize Health", + "name": "Kim Mai Nguyen", + "email": "kim.mai.e.nguyen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nkmai/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Sacramento", "San Francisco", "Honolulu"], + "_id": { + "$oid": "666cbc3240af7b375e352589" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Optum", + "name": "Austin Johnson", + "email": "austinlovesworking@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lovesworking/", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Full stack dev", + "industry": "Healthcare", + "cities": ["Jersey City", "Gilbert", "Sacramento"], + "_id": { + "$oid": "666cbc3240af7b375e35258a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Oscar Health", + "name": "Brian Kang", + "email": "brkang1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thebriankang/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Software Engineer (E2)", + "industry": "Health", + "cities": ["Orlando"], + "_id": { + "$oid": "666cbc3240af7b375e35258b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Oscar Health", + "name": "Brian Kang", + "email": "brkang1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thebriankang/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Software Engineer (E2)", + "industry": "Health", + "cities": ["New Orleans"], + "_id": { + "$oid": "666cbc3240af7b375e35258c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Oscar Health", + "name": "Sergey Zeygerman", + "email": "sergey@zeygerman.com", + "linkedIn": "https://www.linkedin.com/in/sergey-zeygerman/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Software Engineer, Web & Mobile", + "industry": "Insurance", + "cities": ["Jacksonville", "Houston"], + "_id": { + "$oid": "666cbc3240af7b375e35258d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "OTG Experience", + "name": "Chang Cai", + "email": "Chang.Cai@pm.me", + "linkedIn": "https://www.linkedin.com/in/chang-c-cai/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Typescript NodeJS Senior Engineer", + "industry": "Hospitality", + "cities": ["Miami", "Jersey City", "Detroit", "Beijing"], + "_id": { + "$oid": "666cbc3240af7b375e35258e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Other World Computing", + "name": "Miles Wright", + "email": "mileswright818@gmail.com", + "linkedIn": "https://www.linkedin.com/in/miles-m-wright/", + "campus": "LA / WCRI", + "cohort": "45", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Louisville"], + "_id": { + "$oid": "666cbc3240af7b375e35258f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Ouraring", + "name": "Jenna Hamza", + "email": "jennashamza@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jennahamza", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Full Stack Developer", + "industry": "Other", + "cities": ["Paris", "Austin", "Lexington"], + "_id": { + "$oid": "666cbc3240af7b375e352590" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Outside Analytics", + "name": "Timeo Williams", + "email": "timeo.j.williams@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "24", + "jobTitle": "FullStack Software Engineer", + "industry": "Analytics, Defense", + "cities": ["Colorado Springs", "Winston-Salem", "Los Angeles", "Virginia Beach"], + "_id": { + "$oid": "666cbc3240af7b375e352591" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Ovis Technologies", + "name": "Andrew Lovato", + "email": "andrew.lovato@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andrew-lovato/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Senior Full Stack Developer", + "industry": "Fintech", + "cities": ["Pittsburgh", "Jacksonville", "Dallas", "Mexico City"], + "_id": { + "$oid": "666cbc3240af7b375e352592" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Ovis Technologies", + "name": "David Soerensen", + "email": "Dsoerensen28@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Senior Fullstack Developer", + "industry": "Fintech", + "cities": ["Raleigh", "Seattle", "Bakersfield"], + "_id": { + "$oid": "666cbc3240af7b375e352593" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "OwnerIQ Inc.", + "name": "Alejandro Romero", + "email": "alexrom789@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alejandromromero/", + "campus": "NYC", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Lexington", "San Diego"], + "_id": { + "$oid": "666cbc3240af7b375e352594" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Ownet", + "name": "Ari bengiyat", + "email": "ari@aribengiyat.com", + "linkedIn": "https://www.linkedin.com/in/ari-bengiyat", + "campus": "NYOI", + "cohort": "2", + "jobTitle": "Senior Software Engineer", + "industry": "Media", + "cities": ["Phoenix", "North Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e352595" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Palmetto", + "name": "Fan Shao", + "email": "fanny.shao18@gmail.com", + "linkedIn": "https://www.linkedin.com/in/fan-shao/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Software Engineer", + "industry": "Renewable Energy", + "cities": ["St. Petersburg"], + "_id": { + "$oid": "666cbc3240af7b375e352596" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Panda Express", + "name": "Krystal Chen", + "email": "Kcrystalchen@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "31", + "jobTitle": "Software developer", + "industry": "Restaurant", + "cities": ["Omaha"], + "_id": { + "$oid": "666cbc3240af7b375e352597" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Paperless Parts", + "name": "Scott Campbell", + "email": "thisisscottcampbell@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thisisscottcampbell/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Contract Manufacturing", + "cities": ["San Diego", "Saint Paul"], + "_id": { + "$oid": "666cbc3240af7b375e352598" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Paragon Application Systems", + "name": "Autumn Wallen", + "email": "mymail1269@gmail.com", + "linkedIn": "https://www.linkedin.com/in/autumn-wallen/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Software Engineer II", + "industry": "Fintech", + "cities": ["Orlando", "Greensboro"], + "_id": { + "$oid": "666cbc3240af7b375e352599" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Paramount+", + "name": "Todd Alexander", + "email": "todd.alexander@me.com", + "linkedIn": "https://www.linkedin.com/in/toddalex/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Senior SWE", + "industry": "Entertainment", + "cities": ["Minneapolis"], + "_id": { + "$oid": "666cbc3240af7b375e35259a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Paramount++", + "name": "Evan Emenegger", + "email": "evanemenegger@gmail.com", + "linkedIn": "https://www.linkedin.com/in/evan-emenegger/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Software Engineer, Frontend", + "industry": "Entertainment", + "cities": ["Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e35259b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Parative", + "name": "Mariko Iwata", + "email": "mariko.iwata@gmail.com", + "linkedIn": "https://www.linkedin.com/in/marikoiwata/", + "campus": "PTRI", + "cohort": "9", + "jobTitle": "Senior Front End Engineer", + "industry": "Sales", + "cities": ["Houston"], + "_id": { + "$oid": "666cbc3240af7b375e35259c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Passage.io", + "name": "Yusuf Nevruz Olmez", + "email": "nvrz@windowslive.com", + "linkedIn": "https://www.linkedin.com/in/nevruzolmez", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Full Stack Developer", + "industry": "Blockchain/Web3", + "cities": ["Durham", "Corpus Christi", "Mesa", "Mumbai"], + "_id": { + "$oid": "666cbc3240af7b375e35259d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "PassiveLogic", + "name": "Tanner Hesterman", + "email": "tannerhesterman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tannerhesterman/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Junior Software Engineer", + "industry": "Software / Tech", + "cities": ["San Jose", "Kansas City", "Reno"], + "_id": { + "$oid": "666cbc3240af7b375e35259e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "PavCon", + "name": "Bradley Woolf", + "email": "bradleymwoolf@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bradley-woolf/", + "campus": "LA", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Federal Defense", + "cities": ["Denver", "Aurora"], + "_id": { + "$oid": "666cbc3240af7b375e35259f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Pavemint", + "name": "Vivian Cermeno", + "email": "vcermeno6@gmail.com", + "linkedIn": "https://www.linkedin.com/in/viviancermeno/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Parking", + "cities": ["Charlotte"], + "_id": { + "$oid": "666cbc3240af7b375e3525a0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Pax8", + "name": "Steve Frend", + "email": "stevefrend1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stevefrend/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Software Engineer II", + "industry": "Cloud services", + "cities": ["Jacksonville"], + "_id": { + "$oid": "666cbc3240af7b375e3525a1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Paypal", + "name": "Cynthia Franqui", + "email": "cynthiafranqui@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cynthiafranqui/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer II", + "industry": "Fintech", + "cities": ["Mumbai"], + "_id": { + "$oid": "666cbc3240af7b375e3525a2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Paypal", + "name": "Stanley Huang", + "email": "Huang.stan@icloud.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer II (T23)", + "industry": "electronic Payment/ financial services", + "cities": ["Virginia Beach", "Toledo"], + "_id": { + "$oid": "666cbc3240af7b375e3525a3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "PayPal", + "name": "Jason Yu", + "email": "jasonyu@hotmail.com", + "linkedIn": "https://www.linkedin.com/in/json-yu/", + "campus": "LA", + "cohort": "32", + "jobTitle": "Software Engineer 2", + "industry": "Fintech", + "cities": ["Newark", "Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e3525a4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "PayPal", + "name": "Jorge Espinoza", + "email": "jorge.e.espinoza.57@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jorge-e-espinoza1/", + "campus": "FTRI", + "cohort": "3", + "jobTitle": "Software Engineer I", + "industry": "Fintech", + "cities": ["Tulsa", "Lubbock"], + "_id": { + "$oid": "666cbc3240af7b375e3525a5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "PayPal", + "name": "Qwen Ballard", + "email": "qwen.ballard@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mqballard/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Full Stack Developer", + "industry": "Fintech", + "cities": ["Raleigh", "Miami"], + "_id": { + "$oid": "666cbc3240af7b375e3525a6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "PayPal (Happy Returns)", + "name": "Lawrence Han", + "email": "lawrencehan3@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lawrence-han/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer", + "industry": "Logistics", + "cities": ["Baltimore"], + "_id": { + "$oid": "666cbc3240af7b375e3525a7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "PayPal Inc.", + "name": "Darryl Amour", + "email": "darryl.amour@gmail.com", + "linkedIn": "https://www.linkedin.com/in/darryl-amour/", + "campus": "LA", + "cohort": "25", + "jobTitle": "Engineering Manager, Software Development 2", + "industry": "Fintech", + "cities": ["Aurora", "Santa Ana"], + "_id": { + "$oid": "666cbc3240af7b375e3525a8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Payscale", + "name": "Truett Davis", + "email": "truett.davis@gmail.com", + "linkedIn": "https://www.linkedin.com/in/truett-davis", + "campus": "NYOI", + "cohort": "3", + "jobTitle": "Software Engineer II", + "industry": "Software / Tech", + "cities": ["Honolulu"], + "_id": { + "$oid": "666cbc3240af7b375e3525a9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Peacock", + "name": "Eli Gallipoli", + "email": "eligallipoli317@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eli-gallipoli/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Fullstack Developer - Video Software Engineering", + "industry": "Video Streaming", + "cities": ["Nashville"], + "_id": { + "$oid": "666cbc3240af7b375e3525aa" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Peatix", + "name": "Yula Ko", + "email": "larkspury.k@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yulako/", + "campus": "NYC", + "cohort": "17", + "jobTitle": "Software Engineer", + "industry": "Entertainment", + "cities": ["Orlando"], + "_id": { + "$oid": "666cbc3240af7b375e3525ab" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Peloton", + "name": "Lorenzo Guevara", + "email": "joselorenzo.guevara@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lorenzoguevara/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer", + "industry": "Tech/Health & Wellness", + "cities": ["Tokyo", "Minneapolis", "Beijing", "Baltimore"], + "_id": { + "$oid": "666cbc3240af7b375e3525ac" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Penny Mac", + "name": "Edward Roh", + "email": "eroh@rubiconproject.com", + "linkedIn": "https://www.linkedin.com/in/edwardroh/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Front End Lead Engineer", + "industry": "Sports?", + "cities": ["Berlin", "Henderson", "St. Petersburg", "Omaha"], + "_id": { + "$oid": "666cbc3240af7b375e3525ad" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "PennyMac", + "name": "Cornelius Phanthanh", + "email": "corneliusphanthanh@gmail.com", + "linkedIn": "www.linkedin.com/in/corneliusphanthanh", + "campus": "LA", + "cohort": "33", + "jobTitle": "Full Stack (UI/UX) Senior Application Developer", + "industry": "Loan/Mortgage", + "cities": ["Sacramento", "Lincoln", "Mesa"], + "_id": { + "$oid": "666cbc3240af7b375e3525ae" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.253Z" + }, + "__v": 0 + }, + { + "company": "Penumbra", + "name": "Abigail Gjurich", + "email": "amgjurich@gmail.com", + "linkedIn": "https://www.linkedin.com/in/abigail-gjurich/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Front End Engineer", + "industry": "Medical", + "cities": ["Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e3525af" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Penumbra, Inc.", + "name": "Junaid Ahmed", + "email": "junaid7ahmed96@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ahmedjnd/", + "campus": "NYOI", + "cohort": "3", + "jobTitle": "Full Stack Engineer", + "industry": "Healthtech/Healthcare", + "cities": ["Santa Ana"], + "_id": { + "$oid": "666cbc3240af7b375e3525b0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Peraton", + "name": "Andrew Jung", + "email": "andrewjung89@icloud.com", + "linkedIn": "https://www.linkedin.com/in/sjung80/", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Cyber Software Engineer", + "industry": "Public Safety", + "cities": ["Raleigh", "Detroit", "Kansas City", "Bakersfield"], + "_id": { + "$oid": "666cbc3240af7b375e3525b1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "PGA Tour", + "name": "Rami Abdelghafar", + "email": "ramabdel12@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ramiabdelghafar/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Software Engineer", + "industry": "Digital", + "cities": ["Omaha", "Honolulu", "Cincinnati", "Laredo"], + "_id": { + "$oid": "666cbc3240af7b375e3525b2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "PGi", + "name": "Zi Hao He", + "email": "germanychinaaustralia@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/zi-hao-he/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer I", + "industry": "Video", + "cities": ["Albuquerque", "Virginia Beach"], + "_id": { + "$oid": "666cbc3240af7b375e3525b3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "PGS", + "name": "Yi Sun", + "email": "timyisun@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yi-sun-swe/", + "campus": "PTRI", + "cohort": "10", + "jobTitle": "Senior Software Engineer", + "industry": "Energy/Cleantech/Greentech", + "cities": ["New York", "Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e3525b4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "PhotoShelter", + "name": "Julia Ieshtokina", + "email": "julia.ieshtokina@gmail.com", + "linkedIn": "https://www.linkedin.com/in/julia-ieshtokina/", + "campus": "NYC", + "cohort": "5", + "jobTitle": "Software Automation Engineer", + "industry": "", + "cities": ["Nashville", "St. Louis", "Garland"], + "_id": { + "$oid": "666cbc3240af7b375e3525b5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Picarro", + "name": "Sรฉbastien Fauque", + "email": "Sbfauque@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sebastienfauque", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Software engineer", + "industry": "Green tech", + "cities": ["Henderson", "Kansas City", "Buffalo"], + "_id": { + "$oid": "666cbc3240af7b375e3525b6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Pie Insurance", + "name": "Alex Wolinsky", + "email": "alexwolinsky1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alex-wolinsky/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["Lubbock", "Sรฃo Paulo", "Dallas", "Tulsa"], + "_id": { + "$oid": "666cbc3240af7b375e3525b7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Pima County", + "name": "Jake Kazi", + "email": "kazijake@gmail.com", + "linkedIn": "linkedin.com/in/jakekazi", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "IT Applications Engineer", + "industry": "Other", + "cities": ["Greensboro", "Fort Worth", "Stockton", "Tampa"], + "_id": { + "$oid": "666cbc3240af7b375e3525b8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Pinterest", + "name": "Edar Liu", + "email": "liuedar@gmail.com", + "linkedIn": "https://www.linkedin.com/in/liuedar/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer L4", + "industry": "Social Media", + "cities": ["Paris", "Minneapolis"], + "_id": { + "$oid": "666cbc3240af7b375e3525b9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Pitzer College", + "name": "Kurt Crandall", + "email": "kcrandall67@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kurtcrandall", + "campus": "LA / WCRI", + "cohort": "47", + "jobTitle": "Web Developer", + "industry": "Other", + "cities": ["Philadelphia", "Santa Ana", "Fresno", "Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e3525ba" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Place Exchange", + "name": "Wesley Jia", + "email": "wesleyjia34@gmail.com", + "linkedIn": "https://www.linkedin.com/in/wesleyjia/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Advertising", + "cities": ["Kansas City"], + "_id": { + "$oid": "666cbc3240af7b375e3525bb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Plaid", + "name": "Nicolas Ferretti", + "email": "nf96@cornell.edu", + "linkedIn": "https://www.linkedin.com/in/nicolas-ferretti/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Bakersfield", "Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e3525bc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Platform Science", + "name": "Daniel Aurand", + "email": "Daurand303@gmail.com", + "linkedIn": "https://www.linkedin.com/in/daniel-aurand/", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "software development engineer - FMS", + "industry": "Automotive", + "cities": ["Garland", "Philadelphia", "Phoenix"], + "_id": { + "$oid": "666cbc3240af7b375e3525bd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Playstation", + "name": "Bryan Santos", + "email": "brymsantos@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bryan-santos/", + "campus": "LA", + "cohort": "49", + "jobTitle": "Software Engineer II", + "industry": "Gaming", + "cities": ["Colorado Springs"], + "_id": { + "$oid": "666cbc3240af7b375e3525be" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "PlayStation", + "name": "Jackqueline Nguyen", + "email": "jackquelineanguyen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jackquelinenguyen/", + "campus": "LA / WCRI", + "cohort": "54", + "jobTitle": "Senior Software Engineer", + "industry": "Gaming", + "cities": ["Stockton", "Charlotte", "Cincinnati", "Denver"], + "_id": { + "$oid": "666cbc3240af7b375e3525bf" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "PlayVs", + "name": "Alyvia Moss", + "email": "alyvialmoss@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alyviam/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "E-Sports", + "cities": ["Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e3525c0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Plum", + "name": "Nattie Chan", + "email": "nattie.chan@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nattiechan/", + "campus": "LA / WCRI", + "cohort": "56", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Memphis", "Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e3525c1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Pluralsight", + "name": "Ronak Hirpara", + "email": "ronakh130@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ronak-hirpara/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Education", + "cities": ["Stockton", "Atlanta", "Irving"], + "_id": { + "$oid": "666cbc3240af7b375e3525c2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Pluralsight", + "name": "Stephanie Wood", + "email": "wood.steph@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stephaniewood22/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "EdTech", + "cities": ["Sรฃo Paulo", "Cleveland", "Boston"], + "_id": { + "$oid": "666cbc3240af7b375e3525c3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Plutoshift", + "name": "Alex Bednarek", + "email": "alexbednarek4@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alex-bednarek/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Backend Engineer", + "industry": "Internet/AI/Energy", + "cities": ["Sydney", "North Las Vegas", "Albuquerque"], + "_id": { + "$oid": "666cbc3240af7b375e3525c4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Podsights", + "name": "Emily Krebs", + "email": "erkrebs@gmail.com", + "linkedIn": "https://www.linkedin.com/in/emilyrkrebs/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "Podcast Analytics", + "cities": ["Washington", "Minneapolis"], + "_id": { + "$oid": "666cbc3240af7b375e3525c5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "PointsBet", + "name": "Joseph Eisele", + "email": "eisele.joseph1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joseph-eisele/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Front-end Engineering Consultant", + "industry": "Sports Betting", + "cities": ["Mumbai", "Santa Ana", "Detroit"], + "_id": { + "$oid": "666cbc3240af7b375e3525c6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "PokerAtlas", + "name": "Patrick S. Young", + "email": "patrick.shaffer.young@gmail.com", + "linkedIn": "https://www.linkedin.com/in/patrick-s-young/", + "campus": "LA", + "cohort": "31", + "jobTitle": "Frontend Engineer", + "industry": "Entertainment", + "cities": ["Albuquerque", "Corpus Christi"], + "_id": { + "$oid": "666cbc3240af7b375e3525c7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Policygenius", + "name": "Christopher Bosserman", + "email": "christopherpbosserman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christopherpbosserman/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["Chicago", "Baltimore", "Las Vegas", "El Paso"], + "_id": { + "$oid": "666cbc3240af7b375e3525c8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Policygenius", + "name": "Kelly Porter", + "email": "kporter101@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kporter101/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["San Jose", "Louisville", "Tokyo"], + "_id": { + "$oid": "666cbc3240af7b375e3525c9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Poll Everywhere", + "name": "Samuel Filip", + "email": "samjfilip@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sam-filip/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Full Stack Integrations Engineer", + "industry": "IT Services", + "cities": ["Nashville", "Orlando"], + "_id": { + "$oid": "666cbc3240af7b375e3525ca" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Poloniex", + "name": "Sunit Bhalotia", + "email": "sunit.bh@gmail.com", + "linkedIn": "linkedin.com/in/sunitb/", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Senior Software Engineer, Web", + "industry": "Blockchain/Web3", + "cities": ["Sacramento", "Jersey City"], + "_id": { + "$oid": "666cbc3240af7b375e3525cb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Polyture", + "name": "Dieu Huynh", + "email": "dieu@dieuhuynh.com", + "linkedIn": "https://www.linkedin.com/in/dieu-huynh", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer", + "industry": "Data Analytics", + "cities": ["Anaheim", "Portland", "Washington", "Greensboro"], + "_id": { + "$oid": "666cbc3240af7b375e3525cc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Polyture", + "name": "Evan Grobar", + "email": "egrobar@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "33", + "jobTitle": "Software Engineer", + "industry": "Data Analysis", + "cities": ["Indianapolis", "Omaha", "Santa Ana"], + "_id": { + "$oid": "666cbc3240af7b375e3525cd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Pondurance", + "name": "Nancy Dao", + "email": "nancyddao@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "33", + "jobTitle": "Front End Software Engineer", + "industry": "Security", + "cities": ["Bakersfield", "Irvine", "Buffalo", "Albuquerque"], + "_id": { + "$oid": "666cbc3240af7b375e3525ce" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Postman", + "name": "Jonathan Haviv", + "email": "jonathandhaviv@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonathanhaviv/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Lubbock", "Albuquerque"], + "_id": { + "$oid": "666cbc3240af7b375e3525cf" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Potato", + "name": "Kiril Christov", + "email": "kiril.christov@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kchristov/", + "campus": "LA", + "cohort": "32", + "jobTitle": "Full stack engineer", + "industry": "Technology", + "cities": ["Arlington"], + "_id": { + "$oid": "666cbc3240af7b375e3525d0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Power Digital", + "name": "Feiyi Wu", + "email": "freyawu10@gmail.com", + "linkedIn": "https://www.linkedin.com/in/freya-wu/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Jr. Software Engineer", + "industry": "Marketing", + "cities": ["Chula Vista", "Buffalo", "Paris"], + "_id": { + "$oid": "666cbc3240af7b375e3525d1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Prescriptive Data", + "name": "Nathan Le Master", + "email": "nlemaster47@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nathan-le-master/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Frontend Developer", + "industry": "Building Management", + "cities": ["Toronto", "Chandler", "Atlanta", "Tokyo"], + "_id": { + "$oid": "666cbc3240af7b375e3525d2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Priceline", + "name": "Tommy Liang", + "email": "tommyliangsays@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mrtommyliang/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer - Frontend", + "industry": "Travel", + "cities": ["Tucson", "Tulsa", "Colorado Springs"], + "_id": { + "$oid": "666cbc3240af7b375e3525d3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "PRIME", + "name": "Andrew Park", + "email": "andrewchanwonpark@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andrew-c-park/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Shopify Developer", + "industry": "Restaurant, Food, and Beverage", + "cities": ["Fort Wayne", "Tampa", "Omaha"], + "_id": { + "$oid": "666cbc3240af7b375e3525d4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Prime Therapeutics", + "name": "Dennis Cheung", + "email": "dennis.kh.cheung@gmail.com", + "linkedIn": "https://www.linkedin.com/in/denniskhcheung/", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Senior Software Engineer", + "industry": "Healthcare", + "cities": ["Gilbert", "Anchorage", "Paris", "Virginia Beach"], + "_id": { + "$oid": "666cbc3240af7b375e3525d5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Principal Financial Group", + "name": "Stephen Lee", + "email": "stphn.l.nyc@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stphnl/", + "campus": "NYOI", + "cohort": "2", + "jobTitle": "Software Engineer II", + "industry": "Insurance", + "cities": ["Philadelphia", "Glendale", "Oakland"], + "_id": { + "$oid": "666cbc3240af7b375e3525d6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "ProdataKey", + "name": "William Murphy", + "email": "w.williamjmurphy@gmail.com", + "linkedIn": "https://www.linkedin.com/in/w-william-j-murphy/", + "campus": "FTRI / CTRI", + "cohort": "15", + "jobTitle": "Software Engineer", + "industry": "Business Tech/Enterprise Tech", + "cities": ["Denver"], + "_id": { + "$oid": "666cbc3240af7b375e3525d7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Proov (MFB Fertility)", + "name": "Brian Pham", + "email": "br.pham13@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brpham13/", + "campus": "LA / WCRI", + "cohort": "53", + "jobTitle": "Frontend Engineer", + "industry": "Healthcare", + "cities": ["Milwaukee", "Chula Vista", "Henderson", "Pittsburgh"], + "_id": { + "$oid": "666cbc3240af7b375e3525d8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Prosper Marketplace", + "name": "David Levien", + "email": "david.levien1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dlev01/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Senior Software Engineer", + "industry": "", + "cities": ["Sydney", "Winston-Salem"], + "_id": { + "$oid": "666cbc3240af7b375e3525d9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Providence Health & Services", + "name": "Jared Weiss", + "email": "weissjmw@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jaredmweiss/", + "campus": "NYC", + "cohort": "2", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Fort Worth"], + "_id": { + "$oid": "666cbc3240af7b375e3525da" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Prudential Financial", + "name": "Michael Lam", + "email": "mlamchamkee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mlamchamkee/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Director, Tech Lead", + "industry": "Insurance", + "cities": ["Gilbert", "Aurora", "Cincinnati", "Beijing"], + "_id": { + "$oid": "666cbc3240af7b375e3525db" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Prudential Financial", + "name": "Perla Royer", + "email": "perlaroyerc@gmail.com", + "linkedIn": "https://www.linkedin.com/in/perlaroyerc/", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Nashville"], + "_id": { + "$oid": "666cbc3240af7b375e3525dc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Purpose Investments", + "name": "Anika Mustafiz", + "email": "munikamustafiz89@gmail.com", + "linkedIn": "https://www.linkedin.com/in/anikamustafiz-lillies/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Full Stack Developer", + "industry": "Fintech/Insurance software", + "cities": ["Beijing", "Chandler"], + "_id": { + "$oid": "666cbc3240af7b375e3525dd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Q2", + "name": "Justin Poirier", + "email": "poirierj94@gmail.com", + "linkedIn": "https://www.linkedin.com/in/justincpoirier", + "campus": "NYC / ECRI", + "cohort": "40", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Scottsdale", "Phoenix", "Lincoln"], + "_id": { + "$oid": "666cbc3240af7b375e3525de" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "QLogic LLC.", + "name": "Joe Cervino", + "email": "jciv.public@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "6", + "jobTitle": "Senior Associate - Node Engineer", + "industry": "", + "cities": ["San Antonio", "Toronto", "Fort Wayne"], + "_id": { + "$oid": "666cbc3240af7b375e3525df" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Qrypt", + "name": "Vinit Patel", + "email": "za.vinit@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vinit-za/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Cryptography", + "cities": ["Durham", "Sacramento"], + "_id": { + "$oid": "666cbc3240af7b375e3525e0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Qualleta Inc / StartPlaying.Games", + "name": "Brian Hayashi", + "email": "BrianMHayashi@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brianmakiohayashi/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Entertainment", + "cities": ["Sรฃo Paulo", "St. Petersburg", "Houston"], + "_id": { + "$oid": "666cbc3240af7b375e3525e1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Quantgene", + "name": "Peter Fasula", + "email": "peter.fasula@gmail.com", + "linkedIn": "https://www.linkedin.com/in/petefasula/", + "campus": "NYC", + "cohort": "3", + "jobTitle": "Sr. Full Stack Software Engineer", + "industry": "", + "cities": ["Chicago", "Omaha", "Mesa"], + "_id": { + "$oid": "666cbc3240af7b375e3525e2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Quantiphi, Inc", + "name": "Alura Chung-Mehdi", + "email": "aluracm@gmail.com", + "linkedIn": "linkedin.com/alura-chungmehdi", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "Software Developer", + "industry": "Conversational AI", + "cities": ["Las Vegas", "Tucson", "Memphis"], + "_id": { + "$oid": "666cbc3240af7b375e3525e3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Quantum Metric", + "name": "Justin Blalock", + "email": "justin.m.blalock@gmail.com", + "linkedIn": "https://www.linkedin.com/in/justinmblalock/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Customer Success Engineer", + "industry": "Technology", + "cities": ["Toronto", "Tampa", "Chula Vista"], + "_id": { + "$oid": "666cbc3240af7b375e3525e4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Railbird", + "name": "Justin Paige", + "email": "justinpaige3@gmail.com", + "linkedIn": "https://www.linkedin.com/in/justin-paige/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Tampa", "Detroit", "Fort Worth"], + "_id": { + "$oid": "666cbc3240af7b375e3525e5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Rainmaker Games", + "name": "Julia Collins", + "email": "Julia.col@protonmail.com", + "linkedIn": "", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Lead Frontend Engineer (Web3)", + "industry": "Blockchain baby", + "cities": ["Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e3525e6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Rally Health", + "name": "Stefan Pougatchev", + "email": "Stefan.Pougatchev@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stefanpougatchev/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer II", + "industry": "Health/Insurance", + "cities": ["Wichita", "Bakersfield", "St. Louis", "Indianapolis"], + "_id": { + "$oid": "666cbc3240af7b375e3525e7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Raytheon Technologies", + "name": "Troy Prejusa", + "email": "prejusa.troy@gmail.com", + "linkedIn": "https://www.linkedin.com/in/troyprejusa/", + "campus": "LA / WCRI", + "cohort": "54", + "jobTitle": "Software Engineer II", + "industry": "Aerospace", + "cities": ["Long Beach", "Laredo", "North Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e3525e8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Ready Responders", + "name": "Joel Rivera", + "email": "realjoelrivera@gmail.com", + "linkedIn": "https://www.linkedin.com/in/RealJoelRivera", + "campus": "NYC", + "cohort": "11", + "jobTitle": "React Developer", + "industry": "Healthcare", + "cities": ["Memphis", "North Las Vegas", "Paris", "Indianapolis"], + "_id": { + "$oid": "666cbc3240af7b375e3525e9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Record360", + "name": "Abby Chao", + "email": "abigail.chao@gmail.com", + "linkedIn": "https://www.linkedin.com/in/abbychao/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "CEO", + "industry": "Rental Inspection", + "cities": ["New York", "Aurora", "Chicago"], + "_id": { + "$oid": "666cbc3240af7b375e3525ea" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Recurate", + "name": "PJ Bannon", + "email": "bannon.pj@gmail.com", + "linkedIn": "https://www.linkedin.com/in/paulbannon/", + "campus": "NYOI", + "cohort": "3", + "jobTitle": "Frontend Engineer", + "industry": "Retail", + "cities": ["Tucson", "Winston-Salem", "Madison"], + "_id": { + "$oid": "666cbc3240af7b375e3525eb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Recurate", + "name": "Andrew Altman", + "email": "andrewaltman@outlook.com", + "linkedIn": "https://www.linkedin.com/in/andrewaltman1/", + "campus": "NYOI", + "cohort": "3", + "jobTitle": "Lead Frontend Engineer", + "industry": "Business Tech/Enterprise Tech", + "cities": ["Sรฃo Paulo", "Lexington", "Buffalo"], + "_id": { + "$oid": "666cbc3240af7b375e3525ec" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Red Bull North America", + "name": "Catherine Larcheveque", + "email": "clarcheveque14@gmail.com", + "linkedIn": "https://www.linkedin.com/in/clarcheveque", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Automation Engineer", + "industry": "Restaurant, Food, and Beverage", + "cities": ["Saint Paul"], + "_id": { + "$oid": "666cbc3240af7b375e3525ed" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Reddit", + "name": "Jessikeรฉ Campbell-Walker", + "email": "jessikeecw@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jessikeecampbellwalker/", + "campus": "LA", + "cohort": "34", + "jobTitle": "Junior Front End Engineer", + "industry": "Internet Media", + "cities": ["Milwaukee", "Sacramento"], + "_id": { + "$oid": "666cbc3240af7b375e3525ee" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Redox", + "name": "Jacquelyn Whitworth", + "email": "jackie.whitworth@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jackiewhitworth/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Full Stack Engineer", + "industry": "Healthcare", + "cities": ["Colorado Springs", "San Francisco", "Bakersfield"], + "_id": { + "$oid": "666cbc3240af7b375e3525ef" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Redwood Coding Academy", + "name": "Alexander Landeros", + "email": "Alexander.Landeros1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexander-landeros/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Dev Instructor", + "industry": "Edtech", + "cities": ["Henderson", "Santa Ana"], + "_id": { + "$oid": "666cbc3240af7b375e3525f0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "REEF", + "name": "Linda Everswick", + "email": "lindaeverswick@gmail.com", + "linkedIn": "https://www.linkedin.com/linda-everswick/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Front end engineer", + "industry": "Real Estate", + "cities": ["Anaheim"], + "_id": { + "$oid": "666cbc3240af7b375e3525f1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Remine", + "name": "JJ Friedman", + "email": "friedmanjarred@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jj-friedman/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Software Engineer II - Web/Mobile", + "industry": "PropTech", + "cities": ["Pittsburgh", "Raleigh", "Laredo"], + "_id": { + "$oid": "666cbc3240af7b375e3525f2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Remote", + "name": "Bianca Picasso", + "email": "bianca.picasso@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bianca-picasso/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Engineer I", + "industry": "Research", + "cities": ["Tucson"], + "_id": { + "$oid": "666cbc3240af7b375e3525f3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Rent the Runway", + "name": "Rebecca Schell", + "email": "Rebeccaschell503@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rschelly/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Senior Front End Engineer", + "industry": "Fashion", + "cities": ["San Jose", "Denver", "Bakersfield"], + "_id": { + "$oid": "666cbc3240af7b375e3525f4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Republic Services", + "name": "Lauren Acrich", + "email": "acrich.lauren@gmail.com", + "linkedIn": "https://www.linkedin.com/in/laurenacrich/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Full Stack Software Engineer", + "industry": "Other", + "cities": ["Stockton"], + "_id": { + "$oid": "666cbc3240af7b375e3525f5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Republic Services", + "name": "Nicholas Smith", + "email": "nicktsmith7@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nicholastaylorsmith/", + "campus": "LA", + "cohort": "23", + "jobTitle": "Senior Front End Developer", + "industry": "", + "cities": ["Tampa", "Henderson"], + "_id": { + "$oid": "666cbc3240af7b375e3525f6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Rescale", + "name": "Kushal Talele", + "email": "kushal.talele@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kushaltalele/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Software Engineer", + "industry": "Cloud computing", + "cities": ["Pittsburgh", "Miami", "Winston-Salem"], + "_id": { + "$oid": "666cbc3240af7b375e3525f7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Research Corporation of the University of Hawaii", + "name": "Chris Fryer", + "email": "chris@hifryer.com", + "linkedIn": "linkedin.com/in/cjfryer", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Software Engineer Apprentice", + "industry": "Other", + "cities": ["Anchorage"], + "_id": { + "$oid": "666cbc3240af7b375e3525f8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "ResMed", + "name": "Jackie He", + "email": "jackie.he98@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jackie-he/", + "campus": "LA / WCRI", + "cohort": "53", + "jobTitle": "Fullstack App SWE", + "industry": "Healthcare", + "cities": ["Baltimore", "Indianapolis"], + "_id": { + "$oid": "666cbc3240af7b375e3525f9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Restaurant Brand International (RBI)", + "name": "Christian Niedermayer", + "email": "sdchrisn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christian-niedermayer/", + "campus": "LA", + "cohort": "27", + "jobTitle": "Full Stack Software Engineer", + "industry": "Food", + "cities": ["Philadelphia"], + "_id": { + "$oid": "666cbc3240af7b375e3525fa" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Resy (AMEX)", + "name": "Jonathan Cespedes", + "email": "jmilescespedes@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonathancespedes/", + "campus": "NYC", + "cohort": "7", + "jobTitle": "Senior Front-End Engineer", + "industry": "Restaurant, Food, Beverage", + "cities": ["Charlotte", "Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e3525fb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Reveel Group", + "name": "Jin Soo (John) Lim", + "email": "jinsoolim1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jinsoolim", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Frontend Developer", + "industry": "Logistics & Supply Chain", + "cities": ["Los Angeles", "Tampa", "Arlington", "Charlotte"], + "_id": { + "$oid": "666cbc3240af7b375e3525fc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Revel", + "name": "Kayliegh Hill", + "email": "kayliegh.hill@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kayliegh-hill/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Full Stack Engineer", + "industry": "Renewables & Environment", + "cities": ["Phoenix", "Washington", "Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e3525fd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Reverb", + "name": "Grace Park", + "email": "gracepark01@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "20", + "jobTitle": "software engineer", + "industry": "ecommerce", + "cities": ["Aurora"], + "_id": { + "$oid": "666cbc3240af7b375e3525fe" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Revolution Prep", + "name": "Max Weisenberger", + "email": "germanbluemax@gmail.com", + "linkedIn": "https://www.linkedin.com/in/maxweisen/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer", + "industry": "Education", + "cities": ["Los Angeles", "Toledo"], + "_id": { + "$oid": "666cbc3240af7b375e3525ff" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "RF-Smart", + "name": "Michael Snyder", + "email": "msnyder1992@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michaelcharlessnyder/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "JavaScript Applications Developer", + "industry": "Software / Tech", + "cities": ["Milwaukee", "Pittsburgh", "Bakersfield", "Fort Worth"], + "_id": { + "$oid": "666cbc3240af7b375e352600" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Rice University", + "name": "Thasanee Puttamadilok", + "email": "meow3525@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thasanee-p-686125243/", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Front End Software Engineer", + "industry": "Research", + "cities": ["San Jose", "Honolulu", "Toledo", "Saint Paul"], + "_id": { + "$oid": "666cbc3240af7b375e352601" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Rightway", + "name": "Dylan Feldman", + "email": "dfeldman24@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dylan-feldman/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Software engineer", + "industry": "Healthcare navigation", + "cities": ["San Diego", "Chesapeake", "Memphis", "London"], + "_id": { + "$oid": "666cbc3240af7b375e352602" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Riot Games", + "name": "Pauline Chang", + "email": "paulseonchang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/pskchang/", + "campus": "LA", + "cohort": "22", + "jobTitle": "Associate Software Engineer", + "industry": "", + "cities": ["Atlanta", "North Las Vegas", "Lubbock", "Jersey City"], + "_id": { + "$oid": "666cbc3240af7b375e352603" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "RIPL", + "name": "Jared Veltsos", + "email": "Veltsos.jared@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jaredveltsos/", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Mumbai", "Newark", "Buffalo"], + "_id": { + "$oid": "666cbc3240af7b375e352604" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Rivian", + "name": "Luis Lo", + "email": "kwun.man.lo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/luis-lo/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Engineer", + "industry": "Electric Vehicle", + "cities": ["Chesapeake", "Sacramento"], + "_id": { + "$oid": "666cbc3240af7b375e352605" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Rivian", + "name": "Matthew Salvador", + "email": "matthew.jsalvador@gmail.com", + "linkedIn": "https://www.linkedin.com/in/matthewsalvador/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Full Stack Software Engineer II", + "industry": "Automotive", + "cities": ["San Francisco", "Mumbai", "Nashville", "Wichita"], + "_id": { + "$oid": "666cbc3240af7b375e352606" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Rivian", + "name": "Stacy Learn", + "email": "sslearn07@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stacy-learn/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Software Engineer II", + "industry": "Automotive", + "cities": ["Sydney"], + "_id": { + "$oid": "666cbc3240af7b375e352607" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Rivian", + "name": "Thomas Lutz", + "email": "tlutz65@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thomas-j-lutz/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Automotive", + "cities": ["San Francisco"], + "_id": { + "$oid": "666cbc3240af7b375e352608" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Rocket Auto", + "name": "Tommy Han", + "email": "tommy.han.cs@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tommy-han-cs/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Senior Javascript Software Engineer", + "industry": "Fintech", + "cities": ["Fort Worth", "Aurora", "Philadelphia"], + "_id": { + "$oid": "666cbc3240af7b375e352609" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Rocksbox", + "name": "Ece Isenbike Ozalp", + "email": "eceiozalp@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eceiozalp", + "campus": "PTRI", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "Jewelry Ecommerce", + "cities": ["Oklahoma City", "St. Louis", "Jersey City"], + "_id": { + "$oid": "666cbc3240af7b375e35260a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "RockStep Solutions", + "name": "Matthew McGowan", + "email": "matthew.c.mcgowan@gmail.com", + "linkedIn": "https://www.linkedin.com/in/matthewcharlesmcgowan/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Software Release Manager", + "industry": "Software / Tech", + "cities": ["Madison"], + "_id": { + "$oid": "666cbc3240af7b375e35260b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Rohirrim", + "name": "Alex Corlin", + "email": "alex.corlin6@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alex-corlin/", + "campus": "FTRI / CTRI", + "cohort": "7", + "jobTitle": "Full Stack Engineer", + "industry": "Artificial Intelligence", + "cities": ["Phoenix", "San Antonio"], + "_id": { + "$oid": "666cbc3240af7b375e35260c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Rohirrim", + "name": "Simon Chen", + "email": "simonchn160@gmail.com", + "linkedIn": "https://www.linkedin.com/in/simonchen7/", + "campus": "FTRI / CTRI", + "cohort": "7", + "jobTitle": "Full Stack Engineer", + "industry": "Artificial Intelligence", + "cities": ["Oakland", "Fort Worth", "Chandler", "Milwaukee"], + "_id": { + "$oid": "666cbc3240af7b375e35260d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Roivant", + "name": "Jamie Schiff", + "email": "jamie.abrams.schiff@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jamie-schiff/", + "campus": "NYC / ECRI", + "cohort": "1", + "jobTitle": "Technology Analyst", + "industry": "Biotech", + "cities": ["San Diego", "Virginia Beach", "San Jose", "Gilbert"], + "_id": { + "$oid": "666cbc3240af7b375e35260e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Rokt", + "name": "Michael Hoang", + "email": "michaelhoang781@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michaelhoang1/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Frontend Software Engineer", + "industry": "Digital Advertising/E-commerce", + "cities": ["Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e35260f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Roll", + "name": "Eric Choy", + "email": "echoy20@gmail.com", + "linkedIn": "https://www.linkedin.com/in/silly-turtle/", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Seattle", "New Orleans", "Indianapolis"], + "_id": { + "$oid": "666cbc3240af7b375e352610" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Roll", + "name": "Marlon Wiprud", + "email": "Marlonwiprud1@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software engineer", + "industry": "Entertainment", + "cities": ["St. Petersburg", "Tampa", "St. Louis"], + "_id": { + "$oid": "666cbc3240af7b375e352611" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Roll", + "name": "Marlon Wiprud", + "email": "Marlonwiprud1@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Search and ads", + "cities": ["Greensboro", "London", "Saint Paul", "Tulsa"], + "_id": { + "$oid": "666cbc3240af7b375e352612" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Rose Digital", + "name": "Chet (ChetBABY!) Hay", + "email": "chet.hay@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chethay/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Jr. Frontend Engineer", + "industry": "Digital Agency/Client Services", + "cities": ["Boston", "Tucson"], + "_id": { + "$oid": "666cbc3240af7b375e352613" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Rose Digital", + "name": "Linda Harrison", + "email": "lindafaithharrison@gmail.com", + "linkedIn": "https://linkedin.com/in/lindafharrison/", + "campus": "NYC", + "cohort": "3", + "jobTitle": "Junior Software Engineer", + "industry": "", + "cities": ["Scottsdale", "Reno"], + "_id": { + "$oid": "666cbc3240af7b375e352614" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Ruggable", + "name": "Benjamin Lee Morrison", + "email": "newben.hd@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hdlmorrison/", + "campus": "LA", + "cohort": "31", + "jobTitle": "Sr. Software Engineer", + "industry": "Commerce", + "cities": ["Louisville", "Madison", "San Jose", "North Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e352615" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Ruggable", + "name": "Andrew Nguyen", + "email": "nguyen.andrewkh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andrew-knguyen/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Sr. Front-End Engineer", + "industry": "E-Commerce", + "cities": ["San Antonio", "Colorado Springs", "Sacramento"], + "_id": { + "$oid": "666cbc3240af7b375e352616" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Ruggable", + "name": "Steven Jung", + "email": "stehyjung@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stehyjung/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Front End Engineer", + "industry": "E-Commerce", + "cities": ["Honolulu", "St. Petersburg", "Fresno"], + "_id": { + "$oid": "666cbc3240af7b375e352617" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Rush Enterprises", + "name": "Eric Saldivar", + "email": "esaldivar1214@gmail.com", + "linkedIn": "https://www.linkedin.com/in/esaldivar1214/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "Automative", + "cities": ["Anchorage", "Orlando", "Tulsa"], + "_id": { + "$oid": "666cbc3240af7b375e352618" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "S&P Global", + "name": "Samantha Warrick", + "email": "samanthawarrick@gmail.com", + "linkedIn": "www.linkedin.com/samantha-warrick", + "campus": "LA / WCRI", + "cohort": "54", + "jobTitle": "Front End Software Engineer", + "industry": "Marketing", + "cities": ["Sacramento", "Baltimore", "Mexico City"], + "_id": { + "$oid": "666cbc3240af7b375e352619" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Saggezza", + "name": "Albert Chen", + "email": "albert.chen@nyu.edu", + "linkedIn": "https://www.linkedin.com/in/albert-m-chen/", + "campus": "NYC", + "cohort": "2", + "jobTitle": "Full-stack Analytics Engineer", + "industry": "Big Data, Analytics", + "cities": ["Memphis"], + "_id": { + "$oid": "666cbc3240af7b375e35261a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Salesforce", + "name": "Jennifer Courtner", + "email": "jmichele.courtner@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jcourtner/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Full Stack Engineer", + "industry": "B2B", + "cities": ["Milwaukee", "Chandler", "Fort Wayne", "New York"], + "_id": { + "$oid": "666cbc3240af7b375e35261b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "San Francisco State University", + "name": "Paul Valderama", + "email": "pvalderama@gmail.com", + "linkedIn": "https://www.linkedin.com/in/paulvalderama/", + "campus": "LA / WCRI", + "cohort": "22", + "jobTitle": "Senior Web and Mobile Developer", + "industry": "Software / Tech", + "cities": ["Tampa"], + "_id": { + "$oid": "666cbc3240af7b375e35261c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "SAP", + "name": "Charlie Maloney", + "email": "charliemaloney200@gmail.com", + "linkedIn": "https://www.linkedin.com/in/charlie-maloney/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Front End Developer", + "industry": "Enterprise Software", + "cities": ["Cleveland", "Riverside", "Chula Vista"], + "_id": { + "$oid": "666cbc3240af7b375e35261d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "SAP", + "name": "Sylvia Liu", + "email": "sylvs.liu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/liusylvia949/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Frontend Software Engineer", + "industry": "Business Software", + "cities": ["Portland"], + "_id": { + "$oid": "666cbc3240af7b375e35261e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Sayari", + "name": "SEAN YALDA", + "email": "seanyalda@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sean-yalda/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Senior Full Stack Developer", + "industry": "Data Intelligence", + "cities": ["Chicago"], + "_id": { + "$oid": "666cbc3240af7b375e35261f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Sayari Labs", + "name": "Michael Gower", + "email": "GowerMikey@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mikeygower/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Financial Data", + "cities": ["Reno", "Cleveland", "Louisville"], + "_id": { + "$oid": "666cbc3240af7b375e352620" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Scale Computing", + "name": "Jason Charles de vera", + "email": "jasoncdevera@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jason-charles-de-vera/", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Cloud Technology", + "cities": ["Washington", "Winston-Salem"], + "_id": { + "$oid": "666cbc3240af7b375e352621" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Scale Computing", + "name": "Connor Dillon", + "email": "connordillon06@gmail.com", + "linkedIn": "https://www.linkedin.com/in/connor-dillon/", + "campus": "FTRI / CTRI", + "cohort": "16", + "jobTitle": "Software Development Engineer", + "industry": "Business Tech/Enterprise Tech", + "cities": ["Winston-Salem", "Miami", "Washington", "Plano"], + "_id": { + "$oid": "666cbc3240af7b375e352622" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Science", + "name": "Michelle Leong", + "email": "leong.michellew@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michelle-w-leong/", + "campus": "LA / WCRI", + "cohort": "56", + "jobTitle": "Software Engineer", + "industry": "Biotech", + "cities": ["Boston", "Lincoln"], + "_id": { + "$oid": "666cbc3240af7b375e352623" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "Science 37", + "name": "Tristan Schoenfeld", + "email": "tristans7@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tristan-schoenfeld/", + "campus": "LA", + "cohort": "26", + "jobTitle": "Sr. Frontend Engineer", + "industry": "Research", + "cities": ["Anaheim", "Laredo"], + "_id": { + "$oid": "666cbc3240af7b375e352624" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "ScienceLogic", + "name": "Nick Kruckenberg", + "email": "nkruckenberg@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nicholaskruckenberg/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Engineer", + "industry": "AIOps, IT monitoring and automation", + "cities": ["Fort Worth", "Fresno", "Philadelphia", "North Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e352625" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.254Z" + }, + "__v": 0 + }, + { + "company": "SciTec", + "name": "Forest Everest Leigh", + "email": "theforestleigh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/forestleigh/", + "campus": "LA / WCRI", + "cohort": "53", + "jobTitle": "Senior Software Engineer", + "industry": "Other", + "cities": ["Louisville"], + "_id": { + "$oid": "666cbc3240af7b375e352626" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SDL", + "name": "Jamar Dawson", + "email": "Dawsonjamar@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "30", + "jobTitle": "Front End Engineer (Mid Level)", + "industry": "Translation", + "cities": ["Wichita", "Bakersfield"], + "_id": { + "$oid": "666cbc3240af7b375e352627" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SEAT:CODE", + "name": "Andrรฉs Gutiรฉrrez Ramรญrez", + "email": "agfeynman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andresgutierrezramirez/", + "campus": "PTRI", + "cohort": "5", + "jobTitle": "Senior Fullstack Engineer", + "industry": "Software / Tech", + "cities": ["Berlin", "Phoenix", "Beijing"], + "_id": { + "$oid": "666cbc3240af7b375e352628" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Second Wave Technologies", + "name": "Nicholas Suzuki", + "email": "nicholassuzuki@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/nicholas-j-suzuki/", + "campus": "FTRI / CTRI", + "cohort": "5", + "jobTitle": "Software Engineer", + "industry": "Consulting", + "cities": ["San Francisco", "Laredo"], + "_id": { + "$oid": "666cbc3240af7b375e352629" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SecureSeniorConnections", + "name": "Timothy", + "email": "tim.atapagra@gmail.com", + "linkedIn": "https://www.linkedin.com/in/timpagra/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Software Developer", + "industry": "Hospitals", + "cities": ["Tampa"], + "_id": { + "$oid": "666cbc3240af7b375e35262a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Seed Health", + "name": "John SaeHwan Lee", + "email": "john.saehwan.lee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/john-saehwan-lee/", + "campus": "NYC / ECRI", + "cohort": "39", + "jobTitle": "Fullstack Software Engineer I", + "industry": "Fitness/Wellness", + "cities": ["Fort Wayne"], + "_id": { + "$oid": "666cbc3240af7b375e35262b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SeedFi", + "name": "Peter Millspaugh", + "email": "peterdgmillspaugh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/peter-millspaugh/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Kansas City", "Scottsdale", "New York", "Arlington"], + "_id": { + "$oid": "666cbc3240af7b375e35262c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Seedfi", + "name": "Stephen Grable", + "email": "stephengrable@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stephen-grable/", + "campus": "NYC", + "cohort": "3", + "jobTitle": "Senior Software Engineer", + "industry": "Finance", + "cities": ["Jacksonville"], + "_id": { + "$oid": "666cbc3240af7b375e35262d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SEL", + "name": "Jace Crowe", + "email": "jace.crowe@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jacecrowe/", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Software Engineer - Front End", + "industry": "Energy/Cleantech/Greentech", + "cities": ["London"], + "_id": { + "$oid": "666cbc3240af7b375e35262e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Send Out Carda", + "name": "Chris romano", + "email": "Chrispaulromano@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Front end engineer", + "industry": "Not sure: itโ€™s a subscription service for designing hallmark style cards", + "cities": ["Henderson", "New Orleans", "Lincoln"], + "_id": { + "$oid": "666cbc3240af7b375e35262f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SENSE Chat", + "name": "Donte Nall", + "email": "donte.nall@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "25", + "jobTitle": "Senior Mobile Developer", + "industry": "Consulting", + "cities": ["Jersey City", "Chicago", "Cincinnati", "Reno"], + "_id": { + "$oid": "666cbc3240af7b375e352630" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Sensei", + "name": "Kevin Fey", + "email": "kevinfey@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kevin-fey/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Senior Frontend Engineer", + "industry": "Wellness", + "cities": ["San Jose", "Orlando"], + "_id": { + "$oid": "666cbc3240af7b375e352631" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SequinAR", + "name": "Wyatt Bell", + "email": "wcbell51@gmail.com", + "linkedIn": "https://www.linkedin.com/in/wyatt-bell1/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Engineer", + "industry": "Augmented Reality, Entertainment", + "cities": ["Albuquerque"], + "_id": { + "$oid": "666cbc3240af7b375e352632" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "ServiceTrade", + "name": "Robert Beier", + "email": "robert.f.beier@gmail.com", + "linkedIn": "https://www.linkedin.com/in/robert-f-beier/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Software Engineer II", + "industry": "Contractor Software", + "cities": ["Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e352633" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Setsail Marketing", + "name": "Kirsten Milic", + "email": "kirsten.milic@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kirsten-milic/", + "campus": "LA / WCRI", + "cohort": "57", + "jobTitle": "Software Engineer", + "industry": "Marketing/Advertising", + "cities": ["Denver"], + "_id": { + "$oid": "666cbc3240af7b375e352634" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Sev1Tech", + "name": "Adam Vanek", + "email": "atvanek@gmail.com", + "linkedIn": "https://www.linkedin.com/in/atvanek/", + "campus": "FTRI / CTRI", + "cohort": "15", + "jobTitle": "Full Stack Developer", + "industry": "Government", + "cities": ["Phoenix", "Winston-Salem", "Garland", "Orlando"], + "_id": { + "$oid": "666cbc3240af7b375e352635" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Shadow Health", + "name": "Khandker Islam", + "email": "khandker.islam46@gmail.com", + "linkedIn": "https://www.linkedin.com/in/khandkerislam/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Software Engineer II", + "industry": "Virtual Reality Education", + "cities": ["Baltimore", "San Jose", "Phoenix", "Chula Vista"], + "_id": { + "$oid": "666cbc3240af7b375e352636" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SharpenCX", + "name": "Anu Sharma", + "email": "anu.le.pau@gmail.com", + "linkedIn": "https://www.linkedin.com/in/anulepau", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Senior Full Stack Developer", + "industry": "Software / Tech", + "cities": ["Tokyo", "Irving"], + "_id": { + "$oid": "666cbc3240af7b375e352637" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Sherwin Williams", + "name": "Seamus Ryan", + "email": "d.seamus.ryan@outlook.com", + "linkedIn": "https://www.linkedin.com/in/dseamusryan/", + "campus": "LA", + "cohort": "39", + "jobTitle": "React Developer", + "industry": "Consumer", + "cities": ["Plano", "Toledo", "Kansas City"], + "_id": { + "$oid": "666cbc3240af7b375e352638" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Shift", + "name": "Ralph Salazar", + "email": "ralph.slzr@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ralph-salazar", + "campus": "NYC", + "cohort": "2", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["El Paso", "Beijing", "Scottsdale", "San Diego"], + "_id": { + "$oid": "666cbc3240af7b375e352639" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Showtime", + "name": "Dan Teng", + "email": "danwteng@gmail.com", + "linkedIn": "https://www.linkedin.com/feed/", + "campus": "NYC", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Entertainment", + "cities": ["Paris", "Sacramento", "Buffalo"], + "_id": { + "$oid": "666cbc3240af7b375e35263a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Shut Up & Write!", + "name": "Anthony Al-Rifai", + "email": "anthonyalrifai@gmail.com", + "linkedIn": "https://www.linkedin.com/in/anthony-al-rifai/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Full Stack Developer", + "industry": "Events", + "cities": ["Colorado Springs", "Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e35263b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Shutterstock", + "name": "Ari Shoham", + "email": "arishoham@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ari-shoham/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Software Engineer III", + "industry": "Photography", + "cities": ["Madison", "Kansas City", "New Orleans"], + "_id": { + "$oid": "666cbc3240af7b375e35263c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Shutterstock", + "name": "Eli Davis", + "email": "eli.davis42@gmail.com", + "linkedIn": "https://www.linkedin.com/in/elidavis42/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Oakland", "Chicago", "Berlin"], + "_id": { + "$oid": "666cbc3240af7b375e35263d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Shutterstock", + "name": "Michael Pay", + "email": "michael.edward.pay@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael-edward-pay/", + "campus": "LA", + "cohort": "46", + "jobTitle": "SDET III", + "industry": "Entertainment", + "cities": ["Aurora"], + "_id": { + "$oid": "666cbc3240af7b375e35263e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Shutterstock, Inc.", + "name": "Jake B Douglas", + "email": "jbrandondouglas@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Software Engineer, Projects", + "industry": "Tech? stock photography?", + "cities": ["Charlotte", "San Diego", "Norfolk"], + "_id": { + "$oid": "666cbc3240af7b375e35263f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Sidecar Health", + "name": "Sumin Kim", + "email": "ppsm920@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ppsm920/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer", + "industry": "Healthcare / insurance", + "cities": ["Jersey City", "Kansas City"], + "_id": { + "$oid": "666cbc3240af7b375e352640" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Sierra Nevada Corporation", + "name": "Matthew Xing", + "email": "matthew.xing@gmail.com", + "linkedIn": "https://www.linkedin.com/in/matthew-xing/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Software Engineer II - Space Systems", + "industry": "Other", + "cities": ["Beijing"], + "_id": { + "$oid": "666cbc3240af7b375e352641" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Signos", + "name": "Rebecca Anderson", + "email": "randersonviolin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rebecca--anderson/", + "campus": "NYC / ECRI", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Indianapolis"], + "_id": { + "$oid": "666cbc3240af7b375e352642" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SigTech", + "name": "Robert Howton", + "email": "robert.f.howton@gmail.com", + "linkedIn": "https://www.linkedin.com/in/roberthowton/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Fullstack Software Engineer", + "industry": "Fintech", + "cities": ["Dallas", "Madison"], + "_id": { + "$oid": "666cbc3240af7b375e352643" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SimpliSafe", + "name": "Cindy Chau", + "email": "cindychau38@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cindychau38/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer II", + "industry": "Security", + "cities": ["Gilbert"], + "_id": { + "$oid": "666cbc3240af7b375e352644" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Simplr", + "name": "Grigor Minasyan", + "email": "grigorminasyan1998@gmail.com", + "linkedIn": "https://www.linkedin.com/in/grigor-minasyan", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "Front end engineer", + "industry": "Customer service software", + "cities": ["Las Vegas", "Berlin"], + "_id": { + "$oid": "666cbc3240af7b375e352645" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SimplyWise", + "name": "Justin Jaeger", + "email": "jjustinjaeger@gmail.com", + "linkedIn": "https://www.linkedin.com/in/justin-jaeger/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer", + "industry": "Cloud storage", + "cities": ["Boston", "Oakland", "Orlando", "Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e352646" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Sinclair Broadcast Group", + "name": "Michael Filoramo", + "email": "mlfiloramo@gmail.com", + "linkedIn": "linkedin.com/in/michael-filoramo/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Full Stack Software Engineer III", + "industry": "Media", + "cities": ["Fort Worth", "Paris"], + "_id": { + "$oid": "666cbc3240af7b375e352647" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Sinclair Broadcast Group", + "name": "David Beame", + "email": "dbeame291@gmail.com", + "linkedIn": "https://www.linkedin.com/in/david-beame/", + "campus": "LA / WCRI", + "cohort": "55", + "jobTitle": "Associate Software Developer", + "industry": "Media", + "cities": ["Chicago", "Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e352648" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Sinclair Broadcasting", + "name": "Joshua Reed", + "email": "joshreed104@gmail.com", + "linkedIn": "https://www.linkedin.com/in/josh-a-reed/", + "campus": "LA / WCRI", + "cohort": "54", + "jobTitle": "Associate Development Engineer", + "industry": "Telecommunications", + "cities": ["Detroit", "Mexico City", "Winston-Salem", "Buffalo"], + "_id": { + "$oid": "666cbc3240af7b375e352649" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Singa", + "name": "Paul Kassar", + "email": "p.kassar@hotmail.com", + "linkedIn": "https://www.linkedin.com/in/paulkassar/", + "campus": "NYC", + "cohort": "3", + "jobTitle": "Engineer", + "industry": "Outdoor Recreation", + "cities": ["Chicago", "Miami", "Dallas", "Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e35264a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SiriusXM", + "name": "Ben Brower", + "email": "Bbrower1293@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ben-brower-80660073", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Software Engineer III", + "industry": "Entertainment", + "cities": ["Columbus", "New Orleans"], + "_id": { + "$oid": "666cbc3240af7b375e35264b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Skechers", + "name": "Christopher Saavedra", + "email": "cssaavedra56@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chrisssaavedra/", + "campus": "LA", + "cohort": "22", + "jobTitle": "Front end engineer", + "industry": "Retail/Manufacturing", + "cities": ["Omaha"], + "_id": { + "$oid": "666cbc3240af7b375e35264c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Skematic", + "name": "Christina Or", + "email": "OR.CHRISTINA27@GMAIL.COM", + "linkedIn": "https://www.linkedin.com/in/christina-or", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Greensboro"], + "_id": { + "$oid": "666cbc3240af7b375e35264d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Sketch and Etch", + "name": "Kenny Lee", + "email": "kenkiblee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kennethkiboklee/", + "campus": "LA / WCRI", + "cohort": "46", + "jobTitle": "Founding Engineer", + "industry": "Retail", + "cities": ["Arlington", "Honolulu", "Albuquerque"], + "_id": { + "$oid": "666cbc3240af7b375e35264e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SKF USA", + "name": "Steve Canavan", + "email": "stevenrosscanavan@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stevencanavan/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Front End Developer", + "industry": "Manufacturing", + "cities": ["Pittsburgh"], + "_id": { + "$oid": "666cbc3240af7b375e35264f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Skillshare Inc.", + "name": "Chris Lung", + "email": "c.lung95@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chris-lung-5b69b2ba/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Edtech", + "cities": ["Long Beach"], + "_id": { + "$oid": "666cbc3240af7b375e352650" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Skillstorm, contracting at Bank of America", + "name": "Adam Singer", + "email": "Spincycle01@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/adsing/", + "campus": "NYC", + "cohort": "10", + "jobTitle": "Application Programmer", + "industry": "Fintech", + "cities": ["Durham", "Raleigh", "Bakersfield"], + "_id": { + "$oid": "666cbc3240af7b375e352651" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Skout Cybersecurity", + "name": "Garrett James", + "email": "garrettjames55@gmail.com", + "linkedIn": "https://www.linkedin.com/in/garrett-lamar-james/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Senior Software Engineer", + "industry": "Cybersecurity", + "cities": ["Toronto", "Miami"], + "_id": { + "$oid": "666cbc3240af7b375e352652" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Sky Betting and Gaming / Flutter Entertainment", + "name": "Robert Drake", + "email": "rmdrake8@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rmdrake8/", + "campus": "NYC / ECRI", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Sports/Sports betting", + "cities": ["Chesapeake", "Durham", "Honolulu"], + "_id": { + "$oid": "666cbc3240af7b375e352653" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Skylark Travel", + "name": "Giuseppe Valentino", + "email": "zepvalue@gmail.com", + "linkedIn": "https://www.linkedin.com/in/zepvalue/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Senior Full Stack Developer", + "industry": "Travel", + "cities": ["Greensboro", "Austin", "Wichita"], + "_id": { + "$oid": "666cbc3240af7b375e352654" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Skylight", + "name": "Michael Lu", + "email": "michaellu213@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael-lu/", + "campus": "LA", + "cohort": "27", + "jobTitle": "Full Stack Engineer", + "industry": "Consumer Goods", + "cities": ["Arlington"], + "_id": { + "$oid": "666cbc3240af7b375e352655" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Slalom", + "name": "Angela Franco", + "email": "angelajfranco18@gmail.com", + "linkedIn": "https://www.linkedin.com/in/angela-j-franco", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer (Consultant)", + "industry": "Consulting", + "cities": ["Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e352656" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "slalom", + "name": "Sara Kivikas", + "email": "sarakivikas@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sara-kivikas/", + "campus": "LA", + "cohort": "49", + "jobTitle": "Software Engineer", + "industry": "Consulting", + "cities": ["Honolulu", "Detroit", "Madison", "Arlington"], + "_id": { + "$oid": "666cbc3240af7b375e352657" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Slang.ai", + "name": "Kevin Luo", + "email": "luokev1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kevinluo117/", + "campus": "NYC", + "cohort": "17", + "jobTitle": "Software Engineer", + "industry": "Customer Service", + "cities": ["Aurora", "Nashville", "Minneapolis"], + "_id": { + "$oid": "666cbc3240af7b375e352658" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SlyEco", + "name": "Nicolas Jackson", + "email": "nicolasljax@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nicjax/", + "campus": "NYOI", + "cohort": "2", + "jobTitle": "Lead Software Engineer", + "industry": "Energy/Cleantech/Greentech", + "cities": ["New Orleans"], + "_id": { + "$oid": "666cbc3240af7b375e352659" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Smarkets", + "name": "Nicholas Healy", + "email": "nickrhealy@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nick-r-healy", + "campus": "LA", + "cohort": "36", + "jobTitle": "Frontend Engineer", + "industry": "Fintech", + "cities": ["Honolulu", "Beijing"], + "_id": { + "$oid": "666cbc3240af7b375e35265a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Smartbiz", + "name": "Dennis Lopez", + "email": "dnnis.lpz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dennis-lopezsb/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Frontend Engineer", + "industry": "Fintech", + "cities": ["Saint Paul", "Chesapeake"], + "_id": { + "$oid": "666cbc3240af7b375e35265b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Smartrr", + "name": "Jeffrey Zheng", + "email": "zhengj98@outlook.com", + "linkedIn": "https://www.linkedin.com/in/jefzheng/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Software Developer", + "industry": "SaaS", + "cities": ["Austin", "Denver", "Jersey City", "Lubbock"], + "_id": { + "$oid": "666cbc3240af7b375e35265c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SmartSheet", + "name": "Isaiah Delgado", + "email": "Isaiah.del621@gmail.com", + "linkedIn": "https://www.linkedin.com/in/isaiahdel/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Software Engineer I", + "industry": "Computer Hardware & Software", + "cities": ["Los Angeles"], + "_id": { + "$oid": "666cbc3240af7b375e35265d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SmartThings", + "name": "Samuel Carrasco", + "email": "Samhcarrasco@gmail.com", + "linkedIn": "https://www.linkedin.com/in/samuelhcarrasco", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Associate Software Engineer", + "industry": "Software / Tech", + "cities": ["Long Beach"], + "_id": { + "$oid": "666cbc3240af7b375e35265e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Snag Films", + "name": "Muhammad Sheikh", + "email": "muhammad.sheikh93@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/mhsheikh/", + "campus": "NYC", + "cohort": "3", + "jobTitle": "Software Developer", + "industry": "", + "cities": ["Sรฃo Paulo", "Chandler", "Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e35265f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Snap eHealth", + "name": "Jordan Hisel", + "email": "hiseljm@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jordan-h-3b7686121/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e352660" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Snap Inc", + "name": "Christopher Guizzetti", + "email": "guizzettic@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christopherguizzetti", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Entertainment", + "cities": ["Detroit"], + "_id": { + "$oid": "666cbc3240af7b375e352661" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Snap Inc", + "name": "Madeline Doctor", + "email": "madelinemdoctor@gmail.com", + "linkedIn": "https://www.linkedin.com/in/madeline-doctor/", + "campus": "NYOI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["New Orleans"], + "_id": { + "$oid": "666cbc3240af7b375e352662" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Snap Inc.", + "name": "Kirsten Yoon", + "email": "kirstenyoon@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kirstenyoon", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer", + "industry": "camera, social media", + "cities": ["Tampa", "Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e352663" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Socialive", + "name": "Alexander Infante", + "email": "alexinfante17@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexander-infante/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Platform Engineer", + "industry": "Video Streaming", + "cities": ["Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e352664" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SoftWriters", + "name": "Jane You", + "email": "janeyou94@gmail.com", + "linkedIn": "linkedin.com/in/janeyou94", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Laredo"], + "_id": { + "$oid": "666cbc3240af7b375e352665" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Sojo", + "name": "Irina Khafizova", + "email": "irinakhafi@gmail.com", + "linkedIn": "https://www.linkedin.com/in/irina-khafizova/", + "campus": "NYC / ECRI", + "cohort": "38", + "jobTitle": "Frontend software engineer", + "industry": "Hospitality", + "cities": ["Paris", "Norfolk", "New Orleans", "Toledo"], + "_id": { + "$oid": "666cbc3240af7b375e352666" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Solera Health", + "name": "Joel Park", + "email": "Joelpark97@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joelprkk/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Anchorage", "Albuquerque", "San Francisco"], + "_id": { + "$oid": "666cbc3240af7b375e352667" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Solid State Scientific Corporation", + "name": "Tadd LeRocque", + "email": "t.lerocque@gmail.com", + "linkedIn": "https://www.linkedin.com/in/taddlerocque/", + "campus": "NYC / ECRI", + "cohort": "40", + "jobTitle": "DevOps Software Developer", + "industry": "Data/Analytics/Cloud", + "cities": ["Lincoln", "Plano"], + "_id": { + "$oid": "666cbc3240af7b375e352668" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Solo", + "name": "Carly Yarnell", + "email": "carly.yarnell21@gmail.com", + "linkedIn": "https://www.linkedin.com/in/carly-yarnell/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Atlanta", "Beijing", "Sรฃo Paulo"], + "_id": { + "$oid": "666cbc3240af7b375e352669" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Solvent", + "name": "Adam Seery", + "email": "acseery@gmail.com", + "linkedIn": "www.linkedin.com/in/adam-seery", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Fort Wayne"], + "_id": { + "$oid": "666cbc3240af7b375e35266a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SOMA Global", + "name": "Adam Moore", + "email": "moore76sc@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adam-moore-se/", + "campus": "FTRI", + "cohort": "6", + "jobTitle": "Platform Engineer", + "industry": "Public Safety", + "cities": ["St. Louis", "Durham", "Chandler", "Los Angeles"], + "_id": { + "$oid": "666cbc3240af7b375e35266b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Sonos", + "name": "Austin Andrews", + "email": "austinandrews@berkeley.edu", + "linkedIn": "https://www.linkedin.com/in/austinandrews17", + "campus": "FTRI", + "cohort": "7", + "jobTitle": "Release Engineer", + "industry": "Software / Tech", + "cities": ["Las Vegas", "Tulsa", "Fresno", "Anaheim"], + "_id": { + "$oid": "666cbc3240af7b375e35266c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Sonos", + "name": "Alexander Nance", + "email": "balexn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/balexandernance", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Senior Software Engineer", + "industry": "Consumer Electronics", + "cities": ["New Orleans"], + "_id": { + "$oid": "666cbc3240af7b375e35266d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Sonr", + "name": "Ian Judd", + "email": "Iankimjudd@gmail.com", + "linkedIn": "https://www.linkedin.com/in/iankjudd/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Full Stack Developer", + "industry": "Web3", + "cities": ["Toledo", "Austin"], + "_id": { + "$oid": "666cbc3240af7b375e35266e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Sourcepoint Technologies", + "name": "Adam straus", + "email": "a.straus1@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Software Engineer", + "industry": "SaaS", + "cities": ["Sacramento", "Fort Worth", "Chesapeake", "Portland"], + "_id": { + "$oid": "666cbc3240af7b375e35266f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Southern California Edison (via Sharp Decisions)", + "name": "Jie Yun (Catherine) Cheng", + "email": "chengjieyun59@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cat-cheng/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Sr. Full Stack Developer", + "industry": "Energy", + "cities": ["San Jose", "Philadelphia", "Minneapolis"], + "_id": { + "$oid": "666cbc3240af7b375e352670" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SparkCognition", + "name": "Harvey Nguyen", + "email": "harveynwynn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/harveynwynn/", + "campus": "LA", + "cohort": "47", + "jobTitle": "Software Engineer II", + "industry": "Artificial intelligence", + "cities": ["Santa Ana", "Riverside", "Boston", "Omaha"], + "_id": { + "$oid": "666cbc3240af7b375e352671" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SparrowFi", + "name": "Alex Barbazan", + "email": "Agbarbazan@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Jersey City"], + "_id": { + "$oid": "666cbc3240af7b375e352672" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Spatial Data Logic", + "name": "Thomas Lukasiewicz", + "email": "tlukasiewicz89@gmail.com", + "linkedIn": "https://www.linkedin.com/feed/", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Baltimore"], + "_id": { + "$oid": "666cbc3240af7b375e352673" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Spearmint", + "name": "Chloe Aribo", + "email": "chloearibo92@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chloe-aribo/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Senior Software Engineer", + "industry": "Security", + "cities": ["Scottsdale", "Charlotte", "Denver", "Greensboro"], + "_id": { + "$oid": "666cbc3240af7b375e352674" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SpecTrust", + "name": "Tehya Rassman", + "email": "tehyaarassman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tehya-rassman/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Software Engineer", + "industry": "Cybercrime", + "cities": ["Chicago"], + "_id": { + "$oid": "666cbc3240af7b375e352675" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Specturm", + "name": "Sanjay Lavingia", + "email": "SanjayLavingia@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sanjay-lavingia/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Telecom", + "cities": ["Durham", "Raleigh"], + "_id": { + "$oid": "666cbc3240af7b375e352676" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Spirent Communications", + "name": "Dylan Bury", + "email": "dylanbury@protonmail.com", + "linkedIn": "https://www.linkedin.com/in/dylanbury/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer", + "industry": "Telecommunications", + "cities": ["Pittsburgh", "San Jose", "Toronto", "Detroit"], + "_id": { + "$oid": "666cbc3240af7b375e352677" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Splash Financial", + "name": "Bahram Bagherzadeh", + "email": "bjbagher@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bbagher/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Senior Software Engineer", + "industry": "Finance", + "cities": ["Scottsdale", "Stockton", "Nashville", "Colorado Springs"], + "_id": { + "$oid": "666cbc3240af7b375e352678" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Splunk", + "name": "Caroline Kimball", + "email": "kimballcaroline@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kimballcaroline/", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Software Engineer", + "industry": "Security/Data Privacy", + "cities": ["Wichita"], + "_id": { + "$oid": "666cbc3240af7b375e352679" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Spotify", + "name": "Aaron Bart-Addison", + "email": "abaddison16@gmail.com", + "linkedIn": "https://www.linkedin.com/in/abaddison16/", + "campus": "NYC", + "cohort": "6", + "jobTitle": "Web Engineer II", + "industry": "", + "cities": ["Tucson", "Riverside", "Berlin", "San Jose"], + "_id": { + "$oid": "666cbc3240af7b375e35267a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Spotify", + "name": "Amanda Flink", + "email": "avflinkette@gmail.com", + "linkedIn": "https://www.linkedin.com/in/amandaflink/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Senior Web Engineer", + "industry": "Entertainment", + "cities": ["St. Petersburg", "Las Vegas", "Tulsa", "Charlotte"], + "_id": { + "$oid": "666cbc3240af7b375e35267b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Spotify", + "name": "Chris Kopcow", + "email": "ckopcow@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christopherkopcow/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Technical Writer", + "industry": "Entertainment", + "cities": ["St. Petersburg", "Toronto", "Scottsdale", "Durham"], + "_id": { + "$oid": "666cbc3240af7b375e35267c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Spotify", + "name": "Trevor Gray", + "email": "trevor.m.gray@outlook.com", + "linkedIn": "https://www.linkedin.com/mwlite/in/trev-gray", + "campus": "FTRI", + "cohort": "7", + "jobTitle": "Frontend Engineer", + "industry": "Entertainment", + "cities": ["Saint Paul", "Kansas City", "Charlotte", "Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e35267d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Spring Health", + "name": "Kassandra Meyer", + "email": "kassandram022@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kassandram/", + "campus": "LA", + "cohort": "31", + "jobTitle": "Frontend Engineer", + "industry": "Healthcare", + "cities": ["Mesa", "London", "Charlotte", "Tokyo"], + "_id": { + "$oid": "666cbc3240af7b375e35267e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SpringHealth", + "name": "Matthew Huang", + "email": "matthewhuang24@gmail.com", + "linkedIn": "https://www.linkedin.com/in/matthew-huang/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Lexington", "Lincoln", "Washington", "Charlotte"], + "_id": { + "$oid": "666cbc3240af7b375e35267f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Spruce", + "name": "Edward Ryan", + "email": "15ryane@gmail.com", + "linkedIn": "https://www.linkedin.com/in/edward-ryan/", + "campus": "LA", + "cohort": "27", + "jobTitle": "Software Engineer", + "industry": "Hospitality Services", + "cities": ["Mexico City", "Philadelphia", "Phoenix"], + "_id": { + "$oid": "666cbc3240af7b375e352680" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SPS Health", + "name": "Mark Teets", + "email": "markteets@gmail.com", + "linkedIn": "https://www.linkedin.com/in/markteets/", + "campus": "FTRI / CTRI", + "cohort": "15", + "jobTitle": "Application Developer", + "industry": "Healthtech/Healthcare", + "cities": ["New York", "Austin"], + "_id": { + "$oid": "666cbc3240af7b375e352681" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Spur Reply", + "name": "Jeffrey Pettis", + "email": "jeffrey.pettis@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jeffreypettis/", + "campus": "PTRI", + "cohort": "9", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Buffalo", "Minneapolis", "Boston"], + "_id": { + "$oid": "666cbc3240af7b375e352682" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Square", + "name": "Christopher Akinrinade", + "email": "chris.akinrinade@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christopher-akinrinade/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Washington", "Cincinnati", "Pittsburgh", "Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e352683" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Square", + "name": "Juan Espinoza", + "email": "espinozajuan562@gmail.com", + "linkedIn": "https://www.linkedin.com/in/espinoza-juan/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Scottsdale"], + "_id": { + "$oid": "666cbc3240af7b375e352684" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Square Root, Inc.", + "name": "Angel Vega", + "email": "angelvega85@gmail.com", + "linkedIn": "https://www.linkedin.com/in/angel-e-vega", + "campus": "LA", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Information Technology", + "cities": ["Austin"], + "_id": { + "$oid": "666cbc3240af7b375e352685" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "STA Group", + "name": "Gabriel Machado", + "email": "bielchristo@hotmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "42", + "jobTitle": "UI Engineer", + "industry": "Consulting", + "cities": ["Winston-Salem", "Madison"], + "_id": { + "$oid": "666cbc3240af7b375e352686" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Stacked Invest", + "name": "Ross Lamerson", + "email": "ross.lamerson@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lamerson28/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Software Engineer - Front End", + "industry": "Cryptocurrency / Fintech", + "cities": ["Jacksonville"], + "_id": { + "$oid": "666cbc3240af7b375e352687" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Standard Bots", + "name": "Arshia Masih", + "email": "arshia.masih@gmail.com", + "linkedIn": "https://www.linkedin.com/in/arshiamasih/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Robotics / Industrial Automation", + "cities": ["Buffalo", "Nashville", "Raleigh"], + "_id": { + "$oid": "666cbc3240af7b375e352688" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Starbucks", + "name": "Sam Carter", + "email": "sammahcarter@gmail.com", + "linkedIn": "https://linkedin.com/in/cartersamj", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Engineer", + "industry": "Restaurant, Food, and Beverage", + "cities": ["Stockton", "Garland"], + "_id": { + "$oid": "666cbc3240af7b375e352689" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Stardust", + "name": "James Tu", + "email": "tu.james@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jamestu2000/", + "campus": "LA", + "cohort": "21", + "jobTitle": "Full Stack Engineer", + "industry": "", + "cities": ["Milwaukee", "Jacksonville"], + "_id": { + "$oid": "666cbc3240af7b375e35268a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "State Farm", + "name": "James Manahan", + "email": "manahanjames@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/jamesmanahan/", + "campus": "LA", + "cohort": "34", + "jobTitle": "Software Developer", + "industry": "Insurance", + "cities": ["Durham", "Newark"], + "_id": { + "$oid": "666cbc3240af7b375e35268b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Steel Perlot", + "name": "Morris Kolman", + "email": "morristskolman@gmail.com", + "linkedIn": "linkedin.com/in/morrykolman", + "campus": "NYOI", + "cohort": "2", + "jobTitle": "Initiative Lead: Social Media", + "industry": "Software / Tech", + "cities": ["Lubbock"], + "_id": { + "$oid": "666cbc3240af7b375e35268c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SteelHouse", + "name": "Jordan Betzer", + "email": "jordanbetzer@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jordanbetzer/", + "campus": "LA", + "cohort": "26", + "jobTitle": "Software Engineer - Backend", + "industry": "Healthcare", + "cities": ["San Diego", "Madison", "Jacksonville"], + "_id": { + "$oid": "666cbc3240af7b375e35268d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "SteelHouse", + "name": "Taylor Burrington", + "email": "taylor.burrington@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Ad Tech", + "cities": ["Aurora", "Newark", "North Las Vegas", "Stockton"], + "_id": { + "$oid": "666cbc3240af7b375e35268e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Stem Disintermedia Inc.", + "name": "Mia Huynh", + "email": "mia@stem.is", + "linkedIn": "https://www.linkedin.com/in/miamyhuynh/", + "campus": "LA", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Chandler"], + "_id": { + "$oid": "666cbc3240af7b375e35268f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Storyblocks", + "name": "Eric Gomez", + "email": "Ergomez0201@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eric-gomez", + "campus": "LA / WCRI", + "cohort": "48", + "jobTitle": "Senior Software Engineer", + "industry": "Software / Tech", + "cities": ["Tulsa", "Mexico City", "Cincinnati", "Gilbert"], + "_id": { + "$oid": "666cbc3240af7b375e352690" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Streamlit", + "name": "Sam Haar", + "email": "samhaar@gmail.com", + "linkedIn": "https://www.linkedin.com/in/samhaar/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Software Engineer", + "industry": "ML / Data / Open Source", + "cities": ["Fresno", "Anchorage", "Lincoln"], + "_id": { + "$oid": "666cbc3240af7b375e352691" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Stride", + "name": "Kaitlin Zhang", + "email": "Kaitlin.Zhang@owasp.org", + "linkedIn": "https://www.linkedin.com/in/kaizengrowth/", + "campus": "FTRI", + "cohort": "9", + "jobTitle": "Software Engineer, Writer/Instructor", + "industry": "Software / Tech", + "cities": ["Houston"], + "_id": { + "$oid": "666cbc3240af7b375e352692" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Stride Health, Inc.", + "name": "Ben Kwak", + "email": "benjamin.h.kwak@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ben-kwak/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Engineer, Full Stack", + "industry": "Insurance", + "cities": ["Winston-Salem", "Chula Vista", "Miami"], + "_id": { + "$oid": "666cbc3240af7b375e352693" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Strider Technologies", + "name": "Timothy Chang", + "email": "timchang87@gmail.com", + "linkedIn": "https://www.linkedin.com/in/timchang87", + "campus": "PTRI", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["San Jose", "St. Petersburg", "Albuquerque", "Irving"], + "_id": { + "$oid": "666cbc3240af7b375e352694" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Stroz Friedberg", + "name": "Madalyn Baehre", + "email": "mmbaehre@gmail.com", + "linkedIn": "https://www.linkedin.com/in/madalynbaehre/", + "campus": "LA", + "cohort": "20", + "jobTitle": "Full-Stack Software Developer", + "industry": "", + "cities": ["St. Petersburg"], + "_id": { + "$oid": "666cbc3240af7b375e352695" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Stuff", + "name": "Joseph Toledano", + "email": "joseph.a.toledano@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joetoledano/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Developer", + "industry": "On-Demand Work", + "cities": ["Reno", "Stockton"], + "_id": { + "$oid": "666cbc3240af7b375e352696" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Stuller, Inc.", + "name": "Sarah Moosa", + "email": "14sbethm@gmail.com", + "linkedIn": "https://linkedin.com/in/sarah-e-moosa", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Full Stack Developer", + "industry": "Retail", + "cities": ["Oklahoma City"], + "_id": { + "$oid": "666cbc3240af7b375e352697" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Stylitics", + "name": "Tania Lind", + "email": "tania.o.lind@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lind-tania/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Senior Frontend Engineer", + "industry": "Fashion", + "cities": ["Scottsdale", "Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e352698" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Suki AI", + "name": "Edward Shei", + "email": "edwardshei@gmail.com", + "linkedIn": "https://www.linkedin.com/in/edwardshei/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Engineer", + "industry": "Medical Transcription", + "cities": ["Beijing"], + "_id": { + "$oid": "666cbc3240af7b375e352699" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Surfside", + "name": "Alec Below", + "email": "alecbelow@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "17", + "jobTitle": "Software Engineer - Platform Integration", + "industry": "Advertising", + "cities": ["Philadelphia"], + "_id": { + "$oid": "666cbc3240af7b375e35269a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Suuchi.com", + "name": "David Kim", + "email": "davidkim024@gmail.com", + "linkedIn": "https://www.linkedin.com/in/davidkim024/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Manufacturing", + "cities": ["Stockton", "Winston-Salem"], + "_id": { + "$oid": "666cbc3240af7b375e35269b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Sweetgreen", + "name": "Emilia Brizuela-Nothaft", + "email": "emiliacarmel@gmail.com", + "linkedIn": "https://www.linkedin.com/in/emilia-brizuela-nothaft/", + "campus": "LA", + "cohort": "26", + "jobTitle": "Software Engineer", + "industry": "Food", + "cities": ["St. Petersburg"], + "_id": { + "$oid": "666cbc3240af7b375e35269c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Sweetgreen", + "name": "Melody Chai", + "email": "melodychai2@gmail.com", + "linkedIn": "https://www.linkedin.com/in/melodychai/", + "campus": "LA", + "cohort": "26", + "jobTitle": "Engineer I", + "industry": "Fast Casual Dining", + "cities": ["Orlando"], + "_id": { + "$oid": "666cbc3240af7b375e35269d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Swisher International, Inc", + "name": "John Howell", + "email": "tsjohnnyh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/johnny-r-howell/", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "eCommerce Development Supervisor", + "industry": "Other", + "cities": ["Omaha", "Lexington"], + "_id": { + "$oid": "666cbc3240af7b375e35269e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Swoon", + "name": "Tyler Wilson", + "email": "wilsontyler95@gmail.com", + "linkedIn": "https://www.linkedin.com/in/twilsontech", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["San Diego"], + "_id": { + "$oid": "666cbc3240af7b375e35269f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Synapse FI", + "name": "Mike Huynh", + "email": "mhuynh517@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mikehuynh28/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Front-End Engineer II", + "industry": "Fintech", + "cities": ["Scottsdale", "Seattle"], + "_id": { + "$oid": "666cbc3240af7b375e3526a0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "T-Mobile", + "name": "Khang Sabre-Nguyen", + "email": "Klsabren.7@gmail.com", + "linkedIn": "https://www.linkedin.com/in/khang-sabre-nguyen/", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Software Engineer", + "industry": "Telecommunications", + "cities": ["Winston-Salem", "San Francisco", "Sรฃo Paulo", "Virginia Beach"], + "_id": { + "$oid": "666cbc3240af7b375e3526a1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "T-mobile", + "name": "Miaowen Zeng", + "email": "zmw0525@gmail.com", + "linkedIn": "www.linkedin.com/in/miaowen-zeng", + "campus": "FTRI / CTRI", + "cohort": "7", + "jobTitle": "Associate Software Engineer", + "industry": "Telecommunications", + "cities": ["Tampa", "Saint Paul", "Houston", "Cleveland"], + "_id": { + "$oid": "666cbc3240af7b375e3526a2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "T. Rowe Price", + "name": "Liam Fontes", + "email": "liamfontes1244@gmail.com", + "linkedIn": "https://www.linkedin.com/in/liam-fontes/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Associate Software Engineer", + "industry": "Fintech", + "cities": ["Riverside", "Las Vegas", "Irvine", "Saint Paul"], + "_id": { + "$oid": "666cbc3240af7b375e3526a3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "T. Rowe Price", + "name": "Robert Du", + "email": "robert.c.du@gmail.com", + "linkedIn": "https://www.linkedin.com/in/robert-du/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Mid-Level Software Engineer (contract-to-hire)", + "industry": "Fintech", + "cities": ["Orlando", "San Francisco", "Reno"], + "_id": { + "$oid": "666cbc3240af7b375e3526a4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.255Z" + }, + "__v": 0 + }, + { + "company": "Tailored Brands", + "name": "Viet Nguyen", + "email": "n.vietqb@gmail.com", + "linkedIn": "https://www.linkedin.com/in/viet-nguyen-2280491b2/", + "campus": "LA", + "cohort": "45", + "jobTitle": "UI Engineer", + "industry": "Retail", + "cities": ["Reno", "Madison", "Norfolk"], + "_id": { + "$oid": "666cbc3240af7b375e3526a5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Take Command Health", + "name": "Katie Janzen", + "email": "katiekennerjanzen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/katie-janzen/", + "campus": "NYC", + "cohort": "32", + "jobTitle": "Front End Developer", + "industry": "Insurance", + "cities": ["Baltimore"], + "_id": { + "$oid": "666cbc3240af7b375e3526a6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Talage", + "name": "Parker Hutcheson", + "email": "pdhutcheson@gmail.com", + "linkedIn": "https://www.linkedin.com/in/parkerhutcheson/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Senior Software Engineer", + "industry": "Insurtech", + "cities": ["Jersey City", "Irving", "Tampa"], + "_id": { + "$oid": "666cbc3240af7b375e3526a7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Tallied", + "name": "Abeer Faizan", + "email": "abeerfaizan@gmail.com", + "linkedIn": "https://www.linkedin.com/in/abeerfaizan/", + "campus": "LA", + "cohort": "47", + "jobTitle": "Software Engineer 2", + "industry": "Financial Services & Digital Payments", + "cities": ["Boston", "Corpus Christi"], + "_id": { + "$oid": "666cbc3240af7b375e3526a8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Tandem Chat (Tandem Communications Inc.)", + "name": "John Jongsun Suh", + "email": "john.jongsun.suh@pm.me", + "linkedIn": "https://linkedin.com/in/john-jongsun-suh", + "campus": "LA", + "cohort": "44", + "jobTitle": "Software Engineer", + "industry": "Communication/Productivity Software", + "cities": ["Chicago", "Durham", "Newark", "San Jose"], + "_id": { + "$oid": "666cbc3240af7b375e3526a9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Tapestry", + "name": "Natalie Umanzor", + "email": "umanzor2949@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nmczormick/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "E-Commerce", + "cities": ["Riverside", "Atlanta", "Los Angeles", "Houston"], + "_id": { + "$oid": "666cbc3240af7b375e3526aa" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Target", + "name": "Courtney Doss", + "email": "777.catalyst@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "40", + "jobTitle": "Software Engineer", + "industry": "Retail", + "cities": ["Baltimore", "Detroit"], + "_id": { + "$oid": "666cbc3240af7b375e3526ab" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Tatari", + "name": "Natalie Klein", + "email": "natklein3@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nataliesklein/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "TV ads", + "cities": ["Charlotte", "Gilbert", "Tampa"], + "_id": { + "$oid": "666cbc3240af7b375e3526ac" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "TaxNow", + "name": "Tanner Lyon", + "email": "Tannerhlyon@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tannerhlyon", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Software Engineer", + "industry": "Business Tech/Enterprise Tech", + "cities": ["Chesapeake", "Milwaukee", "Seattle", "Tulsa"], + "_id": { + "$oid": "666cbc3240af7b375e3526ad" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "TaxSlayer", + "name": "Katherine Marrow", + "email": "kmcromer1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/katherine-marrow/", + "campus": "PTRI", + "cohort": "9", + "jobTitle": "Full Stack Developer", + "industry": "Other", + "cities": ["Tampa"], + "_id": { + "$oid": "666cbc3240af7b375e3526ae" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Teachers Pay Teachers", + "name": "Courtney Kwong", + "email": "cwkwong95@gmail.com", + "linkedIn": "https://www.linkedin.com/in/courtneywkwong/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Full Stack Engineer", + "industry": "Media", + "cities": ["Oakland"], + "_id": { + "$oid": "666cbc3240af7b375e3526af" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Tech Holding", + "name": "Pablo Lee", + "email": "lee.pablo.e@gmail.com", + "linkedIn": "https://linkedin.com/in/pablo-lee/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Software Engineer", + "industry": "Media & Advertisement", + "cities": ["Baltimore", "Jacksonville", "Aurora", "Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e3526b0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "TechEmpower", + "name": "Nick Stillman", + "email": "nick.edward.stillman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nick-e-stillman/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Programmer I", + "industry": "Software Development/Consulting", + "cities": ["London", "Raleigh"], + "_id": { + "$oid": "666cbc3240af7b375e3526b1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Technergetics", + "name": "Cody Schexnider", + "email": "codydschexnider@gmail.com", + "linkedIn": "https://www.linkedin.com/in/schexnider/", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Junior Software Engineer", + "industry": "Software / Tech", + "cities": ["Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e3526b2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Technergetics", + "name": "Angel Giron", + "email": "angel.c.giron1@gmail.con", + "linkedIn": "https://www.linkedin.com/in/acgiron/", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Columbus", "Glendale", "New York", "Chandler"], + "_id": { + "$oid": "666cbc3240af7b375e3526b3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "TEKsystems for AMEX", + "name": "Connor Rose Delisle", + "email": "connorrose.delisle@gmail.com", + "linkedIn": "https://www.linkedin.com/in/connorrosedelisle/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Developer", + "industry": "Banking", + "cities": ["London", "Tulsa", "Buffalo", "Virginia Beach"], + "_id": { + "$oid": "666cbc3240af7b375e3526b4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Teleport", + "name": "Cole Styron", + "email": "colestyron@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cole-styron/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Software Engineer II", + "industry": "Tech", + "cities": ["Colorado Springs", "Austin", "Anchorage", "Fort Wayne"], + "_id": { + "$oid": "666cbc3240af7b375e3526b5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Tempus", + "name": "Eterna tsai", + "email": "One.eternity@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eterna/", + "campus": "NYC", + "cohort": "7", + "jobTitle": "Software engineer", + "industry": "", + "cities": ["Madison", "Chicago", "Colorado Springs"], + "_id": { + "$oid": "666cbc3240af7b375e3526b6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Tend", + "name": "Christopher Johnson", + "email": "cjbeats@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thecjjohnson/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Junior Software Developer", + "industry": "Dentistry", + "cities": ["Honolulu", "Fort Wayne", "Aurora", "Portland"], + "_id": { + "$oid": "666cbc3240af7b375e3526b7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Terminus", + "name": "Jonathan Ascencio", + "email": "Jonascencio1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonascencio/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Engineer", + "industry": "Marketing Tevh", + "cities": ["Virginia Beach", "Indianapolis"], + "_id": { + "$oid": "666cbc3240af7b375e3526b8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "The Action Network", + "name": "Diana Li", + "email": "dianalicarrasco@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dianalicarrasco/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Software Engineer II", + "industry": "Entertainment", + "cities": ["Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e3526b9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "The Action Network", + "name": "Mahmoud Hmaidi", + "email": "mhmaidi789@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mahmoud-hmaidi-mo/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer II", + "industry": "Entertainment", + "cities": ["Nashville", "Fort Worth", "Newark"], + "_id": { + "$oid": "666cbc3240af7b375e3526ba" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "The Charles Stark Draper Laboratory, Inc.", + "name": "Kelsey Flynn", + "email": "flynn.kelseyelizabeth@gmail.com", + "linkedIn": "www.linkedin.com/in/kelseyeflynn/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Member of Technical Staff in Fullstack Web Group", + "industry": "Research", + "cities": ["Chesapeake", "Aurora", "Fort Worth", "Cleveland"], + "_id": { + "$oid": "666cbc3240af7b375e3526bb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "The Coates Group", + "name": "Brandon Tran", + "email": "btran140@gmail.com", + "linkedIn": "https://www.linkedin.com/in/btran140", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Typescript Full Stack Engineer", + "industry": "Software / Tech", + "cities": ["Boston", "Columbus", "Arlington"], + "_id": { + "$oid": "666cbc3240af7b375e3526bc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "The Cru", + "name": "Brooke Luro", + "email": "lurob@me.com", + "linkedIn": "https://www.linkedin.com/in/brooke-luro-4413046a/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "Professional Training & Coaching", + "cities": ["Fort Wayne", "Chicago", "Bakersfield"], + "_id": { + "$oid": "666cbc3240af7b375e3526bd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "The Edge Treatment Center", + "name": "Joey Ma", + "email": "joeyma@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joeyma/", + "campus": "LA / WCRI", + "cohort": "47", + "jobTitle": "Web Developer", + "industry": "Healthcare", + "cities": ["San Antonio", "Virginia Beach"], + "_id": { + "$oid": "666cbc3240af7b375e3526be" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "The Farm Project", + "name": "Quoc Bui", + "email": "quocbui@gmail.com", + "linkedIn": "https://www.linkedin.com/in/buiquoc/", + "campus": "LA", + "cohort": "26", + "jobTitle": "Lead Web UI Engineer?", + "industry": "Telecommunications", + "cities": ["El Paso", "Berlin"], + "_id": { + "$oid": "666cbc3240af7b375e3526bf" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "The Farmerโ€™s Dog", + "name": "Willem Rosenthal", + "email": "willemrosenthal@gmail.com", + "linkedIn": "https://www.linkedin.com/in/willem-rosenthal", + "campus": "NYOI", + "cohort": "1", + "jobTitle": "Software Engineer III", + "industry": "Other", + "cities": ["Fort Worth"], + "_id": { + "$oid": "666cbc3240af7b375e3526c0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "the guarantors", + "name": "Dmitriy Levy", + "email": "dmitriylevy01@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dmitriy-levy/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Jersey City", "Los Angeles", "Irving", "Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e3526c1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "The Home Depot", + "name": "Eric Han", + "email": "eric.j.h92@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eric-j-han/", + "campus": "LA / WCRI", + "cohort": "48", + "jobTitle": "Front-End Developer", + "industry": "Retail", + "cities": ["Beijing", "Anaheim", "Omaha", "Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e3526c2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "The Home Depot", + "name": "Max Nikitin", + "email": "teachandtravelcn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/maxnikitin23/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Full Stack Software Engineer", + "industry": "Construction/retail", + "cities": ["Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e3526c3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "The New York Times", + "name": "Karl Eden", + "email": "karl94e@gmail.com", + "linkedIn": "www.linkedin.com/in/karleden", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Software Engineer", + "industry": "News/Entertainment/Streaming Platforms", + "cities": ["Detroit", "Charlotte"], + "_id": { + "$oid": "666cbc3240af7b375e3526c4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "The New Yorker", + "name": "Julien Devlin", + "email": "juliendevlin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/juliendevlin/", + "campus": "NYC / ECRI", + "cohort": "38", + "jobTitle": "Software Developer", + "industry": "News/Entertainment/Streaming Platforms", + "cities": ["Buffalo", "Greensboro", "Chicago", "Lincoln"], + "_id": { + "$oid": "666cbc3240af7b375e3526c5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "The Perlman Clinic", + "name": "Louis Sheid", + "email": "louisxsheid@gmail.com", + "linkedIn": "https://www.linkedin.com/in/louisxsheid/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Full Stack Developer", + "industry": "Healthcare", + "cities": ["Milwaukee", "Oklahoma City", "Charlotte"], + "_id": { + "$oid": "666cbc3240af7b375e3526c6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "The Prospector Theater", + "name": "Kelly Cuevas", + "email": "cuev73@live.com", + "linkedIn": "https://www.linkedin.com/in/kelly-cuevas/", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Lead Frontend Engineer", + "industry": "Social Impact/Nonprofit", + "cities": ["Mesa"], + "_id": { + "$oid": "666cbc3240af7b375e3526c7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "The Trevor Project / Tecnolochicas Pro", + "name": "Miranda Jaramillo Morales", + "email": "mirandajaramillomorales@gmail.com", + "linkedIn": "https://www.linkedin.com/in/miranda-jaramillo/", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Software Engineer II / Software Engineering Mentor", + "industry": "Software / Tech", + "cities": ["Chandler", "Nashville", "Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e3526c8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "The Walt Disney Company", + "name": "Gabriel Machado", + "email": "bielchristo@hotmail.com", + "linkedIn": "https://www.linkedin.com/in/bielchristo/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer", + "industry": "Entertainment", + "cities": ["Miami"], + "_id": { + "$oid": "666cbc3240af7b375e3526c9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "The Walt Disney Company", + "name": "Ryan London", + "email": "ryel590@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ryanlondon/", + "campus": "LA", + "cohort": "18", + "jobTitle": "Senior Software Engineer", + "industry": "IT", + "cities": ["Dallas", "Milwaukee", "Virginia Beach", "Fresno"], + "_id": { + "$oid": "666cbc3240af7b375e3526ca" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "The Walt Disney Company", + "name": "Shane Taylor", + "email": "shaneallantaylor@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shane-allan-taylor/", + "campus": "LA", + "cohort": "27", + "jobTitle": "Software Engineer", + "industry": "Entertainment/Media", + "cities": ["Aurora", "Kansas City", "Jersey City"], + "_id": { + "$oid": "666cbc3240af7b375e3526cb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "The Walt Disney Company", + "name": "Yurii Shchyrba", + "email": "yurashchyrba@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yuriishchyrba/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Software Engineer II", + "industry": "Software / Tech", + "cities": ["Los Angeles", "Paris", "Phoenix"], + "_id": { + "$oid": "666cbc3240af7b375e3526cc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "The Washington Post", + "name": "Christelle Desire", + "email": "Cdesire20@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christelle-desire/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Full stack engineer", + "industry": "Newsroom", + "cities": ["Virginia Beach", "Sรฃo Paulo", "Greensboro", "Oakland"], + "_id": { + "$oid": "666cbc3240af7b375e3526cd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "The Wing", + "name": "Xaria Kirtikar", + "email": "xariak91@gmail.com", + "linkedIn": "https://www.linkedin.com/in/xaria/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "Co-working spaces", + "cities": ["San Antonio"], + "_id": { + "$oid": "666cbc3240af7b375e3526ce" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "The X Company", + "name": "Roy Quintana", + "email": "rolandquintana1991@gmail.com", + "linkedIn": "https://www.linkedin.com/in/royquintana/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Senior Software Engineer", + "industry": "Real Estate", + "cities": ["North Las Vegas", "Dallas", "Long Beach"], + "_id": { + "$oid": "666cbc3240af7b375e3526cf" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "TheMuse", + "name": "Franklin pinnock", + "email": "pinnockf@gmail.com", + "linkedIn": "https://www.linkedin.com/in/pinnockf/", + "campus": "NYC", + "cohort": "9", + "jobTitle": "Full-Stack Engineer", + "industry": "Robotics", + "cities": ["Phoenix", "St. Louis", "Irving", "Saint Paul"], + "_id": { + "$oid": "666cbc3240af7b375e3526d0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Thomson Reuters", + "name": "Li Cheng", + "email": "lilybearcheng@gmail.com", + "linkedIn": "https://www.linkedin.com/in/li-cheng-76890540/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Integration Engineer", + "industry": "IT Services", + "cities": ["Toledo", "Mexico City"], + "_id": { + "$oid": "666cbc3240af7b375e3526d1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "ThreeKit", + "name": "Alison Fay", + "email": "aliglass13@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alison-fay/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Sรฃo Paulo"], + "_id": { + "$oid": "666cbc3240af7b375e3526d2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Thriveworks", + "name": "Alma Eyre", + "email": "aselunar@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alma-eyre/", + "campus": "NYC / ECRI", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Lincoln", "Los Angeles", "Stockton"], + "_id": { + "$oid": "666cbc3240af7b375e3526d3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Thriveworks", + "name": "Charissa Ramirez", + "email": "chawissa@gmail.com", + "linkedIn": "https://linkedin.com/in/chawissa", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Chula Vista"], + "_id": { + "$oid": "666cbc3240af7b375e3526d4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Ticket Bridge", + "name": "Travis Frank", + "email": "travis@travismfrank.com", + "linkedIn": "https://www.linkedin.com/in/travis-m-frank/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Founder", + "industry": "Live Events", + "cities": ["Baltimore", "Tampa", "Honolulu", "Indianapolis"], + "_id": { + "$oid": "666cbc3240af7b375e3526d5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "TikTok", + "name": "James Cross", + "email": "jamespvcross@gmail.com", + "linkedIn": "https://www.linkedin.com/in/james-p-cross1/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "Social Media", + "cities": ["Garland", "New York", "Kansas City", "Philadelphia"], + "_id": { + "$oid": "666cbc3240af7b375e3526d6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "TikTok", + "name": "Jason Speare", + "email": "jcspeare@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jason-speare", + "campus": "LA", + "cohort": "41", + "jobTitle": "Site Reliability Engineer", + "industry": "Video Social Networking", + "cities": ["Garland", "Paris", "Saint Paul", "Indianapolis"], + "_id": { + "$oid": "666cbc3240af7b375e3526d7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Tinder", + "name": "Harrison Nam", + "email": "harrison.j.nam@gmail.com", + "linkedIn": "https://www.linkedin.com/in/harrison-nam/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer", + "industry": "Social", + "cities": ["Durham", "Newark", "Milwaukee", "Lexington"], + "_id": { + "$oid": "666cbc3240af7b375e3526d8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Tinder", + "name": "Harrison Nam", + "email": "harrison.j.nam@gmail.com", + "linkedIn": "https://www.linkedin.com/in/harrison-nam/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer II, Web Development", + "industry": "Dating", + "cities": ["Houston", "Paris", "Baltimore"], + "_id": { + "$oid": "666cbc3240af7b375e3526d9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Tinder", + "name": "Serge Vartanov", + "email": "vartanov.s@gmail.com", + "linkedIn": "https://www.linkedin.com/in/svartanov/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Senior Backend Engineer", + "industry": "", + "cities": ["Houston"], + "_id": { + "$oid": "666cbc3240af7b375e3526da" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Tixologi", + "name": "Mark Nichting", + "email": "mtnichting@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mark-nichting/", + "campus": "LA / WCRI", + "cohort": "53", + "jobTitle": "Frontend Engineer", + "industry": "Blockchain/Web3", + "cities": ["Mexico City"], + "_id": { + "$oid": "666cbc3240af7b375e3526db" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Toast Inc", + "name": "Denys Dekhtiarenko", + "email": "dekhtiarenko.d@gmail.com", + "linkedIn": "https://www.linkedin.com/in/denysdekhtiarenko/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Software Engineer II", + "industry": "Restaurant software", + "cities": ["Greensboro", "Jersey City", "Plano"], + "_id": { + "$oid": "666cbc3240af7b375e3526dc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "TodayTix Group", + "name": "Xiao Li", + "email": "lixtong@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lixiaotong/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Associate Software Engineer", + "industry": "Entertainment", + "cities": ["Fort Wayne", "Anchorage", "Minneapolis"], + "_id": { + "$oid": "666cbc3240af7b375e3526dd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "TomoCredit", + "name": "Ramtin Khoee", + "email": "Ramtin.khoee@gmail.com", + "linkedIn": "https://www.linkedin.com/mwlite/in/ramtinkhoee", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Cincinnati"], + "_id": { + "$oid": "666cbc3240af7b375e3526de" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Topologe (working with the Air Force)", + "name": "Joseph Michael Corrado", + "email": "joeyycorrss@gmail.com", + "linkedIn": "https://www.linkedin.com/in/josephmichaelcorrado/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Senior Software Engineer", + "industry": "Web Dev for Air Force", + "cities": ["Washington", "Plano", "Pittsburgh", "Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e3526df" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Tortus", + "name": "Victor To", + "email": "victorto123@gmail.com", + "linkedIn": "https://www.linkedin.com/in/victorto1/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer", + "industry": "Real Estate Tech", + "cities": ["Berlin", "Washington"], + "_id": { + "$oid": "666cbc3240af7b375e3526e0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Toucan", + "name": "Isaac Durand", + "email": "isaac.durand@gmail.com", + "linkedIn": "https://www.linkedin.com/in/isaacdurand", + "campus": "LA", + "cohort": "5", + "jobTitle": "Senior Engineer II", + "industry": "", + "cities": ["Santa Ana", "Miami", "Louisville", "Sรฃo Paulo"], + "_id": { + "$oid": "666cbc3240af7b375e3526e1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Toucan", + "name": "Jane Kim", + "email": "jane.minhyung.kim@gmail.com", + "linkedIn": "https://www.linkedin.com/in/janeminhyungkim/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "Education tools", + "cities": ["Albuquerque"], + "_id": { + "$oid": "666cbc3240af7b375e3526e2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Toyota", + "name": "Melanie Forbes", + "email": "mforbes12@gmail.com", + "linkedIn": "https://www.linkedin.com/in/melanie-forbes-/", + "campus": "FTRI / CTRI", + "cohort": "12", + "jobTitle": "Software Engineer", + "industry": "Automotive", + "cities": ["Cincinnati", "Arlington"], + "_id": { + "$oid": "666cbc3240af7b375e3526e3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Toyota", + "name": "Emily Hoang", + "email": "ethlin4@gmail.com", + "linkedIn": "https://www.linkedin.com/in/emilyhoang", + "campus": "FTRI / CTRI", + "cohort": "14", + "jobTitle": "Software Engineer", + "industry": "Automotive", + "cities": ["Corpus Christi"], + "_id": { + "$oid": "666cbc3240af7b375e3526e4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "TradeAlly", + "name": "Adepeju Orefejo", + "email": "adepeju.kayode@gmail.com", + "linkedIn": "https://www.linkedin.com/adepeju-orefejo", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Backend Engineer", + "industry": "Software / Tech", + "cities": ["Lexington"], + "_id": { + "$oid": "666cbc3240af7b375e3526e5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Travelers Companies Inc.", + "name": "Dylan Li", + "email": "dyli797@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dli107/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["Seattle", "Cincinnati"], + "_id": { + "$oid": "666cbc3240af7b375e3526e6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Trend micro", + "name": "Daniel Balistocky", + "email": "thestinx@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dannyb1983", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software engineer", + "industry": "Web security", + "cities": ["Memphis", "Colorado Springs"], + "_id": { + "$oid": "666cbc3240af7b375e3526e7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "TreviPay", + "name": "Utkarsh Uppal", + "email": "utkarshuppal@gmial.com", + "linkedIn": "https://www.linkedin.com/in/utkarshuppal/", + "campus": "LA / WCRI", + "cohort": "55", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Stockton"], + "_id": { + "$oid": "666cbc3240af7b375e3526e8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Tribe Labs Inc.", + "name": "Alexander Landeros", + "email": "alexander.landeros1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexander-landeros/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Frontend Software Engineer", + "industry": "Communication Tech", + "cities": ["Detroit"], + "_id": { + "$oid": "666cbc3240af7b375e3526e9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Trineo", + "name": "Rebecca Viner", + "email": "rtviner@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rtviner/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Engineer II", + "industry": "Software Consultancy", + "cities": ["Portland"], + "_id": { + "$oid": "666cbc3240af7b375e3526ea" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Tripadvisor", + "name": "Jake Bradbeer", + "email": "jakebradbeer@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jacobbradbeer/", + "campus": "LA", + "cohort": "49", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Chicago", "San Jose", "Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e3526eb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "TripleLift", + "name": "Arron Nestor", + "email": "arronnestor@gmail.com", + "linkedIn": "https://www.linkedin.com/in/arron-nestor/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Cloud Infrastructure Engineer", + "industry": "Ad-Tech", + "cities": ["Oakland", "Irvine"], + "_id": { + "$oid": "666cbc3240af7b375e3526ec" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Triplelift", + "name": "Kia Colbert", + "email": "colber16@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kiacolbert/", + "campus": "NYC", + "cohort": "9", + "jobTitle": "Engineer I", + "industry": "Social Impact", + "cities": ["Virginia Beach"], + "_id": { + "$oid": "666cbc3240af7b375e3526ed" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "True Tickets", + "name": "Alesi-Andreya Ladas", + "email": "alesiladas@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alesiladas/", + "campus": "NYC", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e3526ee" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "TrueCar", + "name": "Calvin Cao", + "email": "jtcao430@gmail.com", + "linkedIn": "https://www.linkedin.com/in/calvincao9/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Software Engineer II", + "industry": "Marketing", + "cities": ["Scottsdale", "Greensboro", "Pittsburgh", "St. Louis"], + "_id": { + "$oid": "666cbc3240af7b375e3526ef" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "TrueCar", + "name": "Zac Haluza", + "email": "zac.haluza@gmail.com", + "linkedIn": "https://www.linkedin.com/in/zhaluza/", + "campus": "NYC", + "cohort": "17", + "jobTitle": "Software Engineer", + "industry": "Automotive", + "cities": ["Saint Paul"], + "_id": { + "$oid": "666cbc3240af7b375e3526f0" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "trueface.ai", + "name": "Sam Siye Yu", + "email": "yudataguy@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yusiye/", + "campus": "LA", + "cohort": "27", + "jobTitle": "full stack developer", + "industry": "computer vision", + "cities": ["Corpus Christi"], + "_id": { + "$oid": "666cbc3240af7b375e3526f1" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Truepill", + "name": "Justin Baik", + "email": "bij3377@gmail.com", + "linkedIn": "https://www.linkedin.com/in/justin-baik/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Associate Software Engineer", + "industry": "Health Tech", + "cities": ["Chula Vista", "San Antonio", "Dallas"], + "_id": { + "$oid": "666cbc3240af7b375e3526f2" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Truepill", + "name": "Jonah Stewart", + "email": "jonahlstewart@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonahlstewart/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Associate Software Engineer - Backend", + "industry": "Healthtech", + "cities": ["Paris", "Stockton", "Oklahoma City", "Tampa"], + "_id": { + "$oid": "666cbc3240af7b375e3526f3" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Turbonomic", + "name": "Tyler Hurtt", + "email": "TylerAdamHurtt@gmail.com", + "linkedIn": "https://www.linkedin.com/in/TylerHurtt/", + "campus": "LA", + "cohort": "34", + "jobTitle": "Senior Software Engineer", + "industry": "Cloud & Network Monitoring", + "cities": ["Sรฃo Paulo"], + "_id": { + "$oid": "666cbc3240af7b375e3526f4" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Twilio", + "name": "Christopher Docuyanan", + "email": "Christophejd@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cjdocuyanan/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Software Engineer (Personas R&D)", + "industry": "Communications", + "cities": ["Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e3526f5" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Twitch", + "name": "Alice Wong", + "email": "alice.sky.wong@gmail.com", + "linkedIn": "https://www.linkedin.com/in/wong-alice/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Frontend Engineer", + "industry": "IoT", + "cities": ["Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e3526f6" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Two Barrels LLC", + "name": "Ryan Rambaran", + "email": "ryanrambaran.fl@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ryan-rambaran/", + "campus": "PTRI", + "cohort": "4", + "jobTitle": "Front End Developer", + "industry": "Software / Tech", + "cities": ["New York", "Houston", "Lincoln"], + "_id": { + "$oid": "666cbc3240af7b375e3526f7" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Two Six Labs", + "name": "Kevin Nam", + "email": "Kevinjnam@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "31", + "jobTitle": "Software Engineer - Front End", + "industry": "Cybersecurity", + "cities": ["Las Vegas", "Garland", "Gilbert"], + "_id": { + "$oid": "666cbc3240af7b375e3526f8" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "TwoSix Labs", + "name": "Darren Napier", + "email": "darren.napier5@gmail.com", + "linkedIn": "https://www.linkedin.com/in/darrencnapier/", + "campus": "LA", + "cohort": "31", + "jobTitle": "Jr. Frontend Developer", + "industry": "Government", + "cities": ["San Francisco"], + "_id": { + "$oid": "666cbc3240af7b375e3526f9" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "TwoThirtySix Labs", + "name": "Tayvon Wright", + "email": "tayvonwright@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tayvon-wright/", + "campus": "NYC", + "cohort": "10", + "jobTitle": "Backend Engineer", + "industry": "Crypto", + "cities": ["Minneapolis", "Long Beach"], + "_id": { + "$oid": "666cbc3240af7b375e3526fa" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Uber", + "name": "Michael Noah", + "email": "mnoah1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mnoah/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Software Engineer II", + "industry": "Transportation", + "cities": ["St. Petersburg", "Indianapolis"], + "_id": { + "$oid": "666cbc3240af7b375e3526fb" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "UiPath", + "name": "Eric Rodgers", + "email": "ericerodgers@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/erodgers/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Software Engineer (SE1)", + "industry": "Software / Tech", + "cities": ["Mexico City", "Chandler", "Toronto", "San Francisco"], + "_id": { + "$oid": "666cbc3240af7b375e3526fc" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Umbra", + "name": "Joey Friedman", + "email": "friedman.joey@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joseph-friedman-803803149/", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Software Engineer", + "industry": "Aerospace", + "cities": ["New Orleans"], + "_id": { + "$oid": "666cbc3240af7b375e3526fd" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Uncommon Schools", + "name": "Taryn A Cunha", + "email": "taryn.cunha@gmail.com", + "linkedIn": "LinkedIn.com/in/taryncunha", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Integrationโ€™s Developer", + "industry": "Other", + "cities": ["Milwaukee", "Toronto", "Anaheim"], + "_id": { + "$oid": "666cbc3240af7b375e3526fe" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Unify Consulting", + "name": "Gibran Haq", + "email": "gibran.haq57@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gibran-haq/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Senior Consultant", + "industry": "Consulting", + "cities": ["Minneapolis", "New York", "San Diego", "Arlington"], + "_id": { + "$oid": "666cbc3240af7b375e3526ff" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Uniphore", + "name": "Vince Vu", + "email": "vince.hvu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vin-vu/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Full Stack Developer", + "industry": "Conversational Service Automation", + "cities": ["Washington"], + "_id": { + "$oid": "666cbc3240af7b375e352700" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Unit21", + "name": "Nicole Ip", + "email": "nicole@unit21.ai", + "linkedIn": "", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer", + "industry": "AI / ML", + "cities": ["Milwaukee", "Chicago", "Cleveland", "Albuquerque"], + "_id": { + "$oid": "666cbc3240af7b375e352701" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "United Airlines", + "name": "Jordan Jeter", + "email": "jeter.education@gmail.com", + "linkedIn": "linkedin.com/in/jordanrjeter", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Developer - IT", + "industry": "Aerospace", + "cities": ["Corpus Christi"], + "_id": { + "$oid": "666cbc3240af7b375e352702" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "United Power", + "name": "Clifford Harvey", + "email": "cliffharvey06@gmail.com", + "linkedIn": "https://www.linkedin.com/in/clifford-harvey/", + "campus": "LA", + "cohort": "16", + "jobTitle": "Sr Fullstack Developer", + "industry": "", + "cities": ["Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e352703" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "United States Cold Storage Inc", + "name": "Glen Kasoff", + "email": "glen.kasoff@gmail.com", + "linkedIn": "https://www.linkedin.com/in/glen-kasoff", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Software Developer ERP", + "industry": "Other", + "cities": ["Mexico City", "Charlotte", "Atlanta"], + "_id": { + "$oid": "666cbc3240af7b375e352704" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "University of California", + "name": "Justin Wouters", + "email": "justinwouters@gmail.com", + "linkedIn": "Https://www.linkedin.com/in/justinwouters", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Junior application developer", + "industry": "Other", + "cities": ["Portland", "North Las Vegas", "Lubbock"], + "_id": { + "$oid": "666cbc3240af7b375e352705" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "University of Chicago, Center for the Art of East Asia", + "name": "Greg Panciera", + "email": "gregpanciera@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gregpanciera", + "campus": "LA", + "cohort": "36", + "jobTitle": "Web Developer", + "industry": "Art", + "cities": ["Detroit"], + "_id": { + "$oid": "666cbc3240af7b375e352706" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Unqork", + "name": "Donald Blanc", + "email": "Donaldblanc1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/donald-b/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Senior Software Engineer", + "industry": "Tech", + "cities": ["Nashville"], + "_id": { + "$oid": "666cbc3240af7b375e352707" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Unum ID", + "name": "Allison Roderiques", + "email": "aeroderiques@gmail.com", + "linkedIn": "https://www.linkedin.com/in/allison-roderiques/", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Full Stack Developer", + "industry": "Other", + "cities": ["Memphis", "Mesa", "Oakland"], + "_id": { + "$oid": "666cbc3240af7b375e352708" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Uphold", + "name": "Chelsea Harris", + "email": "chelseaharris137@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chelseaharris23/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Frontend Engineer", + "industry": "Crypto", + "cities": ["Stockton", "Glendale", "San Francisco"], + "_id": { + "$oid": "666cbc3240af7b375e352709" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Upkeep", + "name": "Elie Baik", + "email": "semsemm810@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sae-min-baik", + "campus": "LA", + "cohort": "34", + "jobTitle": "Software Engineer", + "industry": "CRM", + "cities": ["Denver", "Chula Vista", "Nashville", "Charlotte"], + "_id": { + "$oid": "666cbc3240af7b375e35270a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "UST", + "name": "Dhruv Thota", + "email": "dthota8@gmail.com", + "linkedIn": "https://linkedin.com/in/dhruv-thota", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Software Solutions/Developer Tools", + "cities": ["Mesa", "Fort Worth", "Tokyo"], + "_id": { + "$oid": "666cbc3240af7b375e35270b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "VacationRenter", + "name": "Michele Moody", + "email": "moody.lillian@gmail.com", + "linkedIn": "https://www.linkedin.com/in/milmoody/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Travel", + "cities": ["Chula Vista", "Gilbert", "Miami", "Charlotte"], + "_id": { + "$oid": "666cbc3240af7b375e35270c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Valor Performance", + "name": "Marco Tulio Gonzalez", + "email": "marco.t.gonzalez15@gmail.com", + "linkedIn": "https://www.linkedin.com/in/marcogonzalez2015/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Senior Software Engineer", + "industry": "Other", + "cities": ["Jacksonville", "Chula Vista", "Detroit"], + "_id": { + "$oid": "666cbc3240af7b375e35270d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "VanGo", + "name": "Nicolas Venegas", + "email": "nicolasvenegasparker@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nicolas-venegas-parker/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Mobile Software Engineer", + "industry": "Consumer / Transportation", + "cities": ["North Las Vegas", "Toledo", "Stockton", "Tucson"], + "_id": { + "$oid": "666cbc3240af7b375e35270e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Vanguard", + "name": "Ian Kila", + "email": "ian.nie.kila@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ian-kila", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Application Developer", + "industry": "Software / Tech", + "cities": ["London", "Sydney", "Albuquerque", "Virginia Beach"], + "_id": { + "$oid": "666cbc3240af7b375e35270f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Vanguard", + "name": "Carolina Bonitatis", + "email": "carolina@bonitat.is", + "linkedIn": "https://www.linkedin.com/in/carolina-bonitatis/", + "campus": "NYC / ECRI", + "cohort": "42", + "jobTitle": "Application Developer", + "industry": "Other", + "cities": ["Charlotte", "Minneapolis", "Oakland", "St. Louis"], + "_id": { + "$oid": "666cbc3240af7b375e352710" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Vantage Point Consulting, Inc.", + "name": "Constance Cho", + "email": "chcho87@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chcho2/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Full Stack Engineer", + "industry": "Consulting", + "cities": ["Berlin", "Sacramento"], + "_id": { + "$oid": "666cbc3240af7b375e352711" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Vaulted Oak", + "name": "Alfred Sta. Iglesia", + "email": "a.sta.iglesia@gmail.com", + "linkedIn": "https://www.linkedin.com/in/astaiglesia/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer + Solutions Architect", + "industry": "E-Commerce", + "cities": ["Henderson", "Berlin"], + "_id": { + "$oid": "666cbc3240af7b375e352712" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "VedaPointe", + "name": "Michelle Chang", + "email": "michelle.kelly.chang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michellekchang/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Software Developer", + "industry": "Healthcare", + "cities": ["Boston"], + "_id": { + "$oid": "666cbc3240af7b375e352713" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Vercel", + "name": "Jueun Grace Yun", + "email": "graceyunn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gracejueunyun/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Gaming hardware", + "cities": ["Minneapolis", "Nashville", "Plano", "Beijing"], + "_id": { + "$oid": "666cbc3240af7b375e352714" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Verily Life Sciences", + "name": "Michael Geismar", + "email": "mikelafobe@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/michael-geismar/", + "campus": "FTRI", + "cohort": "2", + "jobTitle": "Software Engineer", + "industry": "Life Sciences", + "cities": ["Anaheim"], + "_id": { + "$oid": "666cbc3240af7b375e352715" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Veritext", + "name": "Shawn Convery", + "email": "shawnmconvery@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shawnconvery1/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Software Engineer", + "industry": "Law", + "cities": ["Washington", "Boston", "Oklahoma City"], + "_id": { + "$oid": "666cbc3240af7b375e352716" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Veritext", + "name": "Storm Ross", + "email": "stormaross@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stormaross/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Backend Developer", + "industry": "Legal", + "cities": ["Detroit", "Tampa", "Nashville", "Tucson"], + "_id": { + "$oid": "666cbc3240af7b375e352717" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Verizon Media Platform", + "name": "Leonard Kee", + "email": "leonardwkee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thiskeeword/", + "campus": "LA", + "cohort": "4", + "jobTitle": "Software Development Engineer II", + "industry": "Media", + "cities": ["Cincinnati"], + "_id": { + "$oid": "666cbc3240af7b375e352718" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Vertalo", + "name": "Phillip Bannister", + "email": "phillip.kbannister@Gmail.com", + "linkedIn": "https://www.linkedin.com/in/phillipkekoabannister/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Atlanta", "Oklahoma City", "Dallas", "Chesapeake"], + "_id": { + "$oid": "666cbc3240af7b375e352719" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Verys", + "name": "Ray Yao", + "email": "rocaray51@gmail.com", + "linkedIn": "https://www.linkedin.com/in/raymondyao51/", + "campus": "LA", + "cohort": "27", + "jobTitle": "Software Developer", + "industry": "Consulting/Contracting Agency", + "cities": ["Honolulu", "Chesapeake", "Beijing"], + "_id": { + "$oid": "666cbc3240af7b375e35271a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Verys", + "name": "Ted Min", + "email": "tedtaemin@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "41", + "jobTitle": "Senior Software Engineer", + "industry": "Consulting", + "cities": ["Irving", "Plano", "North Las Vegas", "Nashville"], + "_id": { + "$oid": "666cbc3240af7b375e35271b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "View, Inc.", + "name": "Eric Lee", + "email": "emlee54@gmail.com", + "linkedIn": "https://www.linkedin.com/in/errc-lee/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Software Engineer, Front-End", + "industry": "Software / Tech", + "cities": ["Columbus", "Greensboro", "Honolulu", "Louisville"], + "_id": { + "$oid": "666cbc3240af7b375e35271c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Violet", + "name": "Johanna Merluza", + "email": "johanna.merluza@gmail.com", + "linkedIn": "https://www.linkedin.com/in/johannamerluza/", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Software / Tech", + "cities": ["New York", "Houston", "Corpus Christi"], + "_id": { + "$oid": "666cbc3240af7b375e35271d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Virga Labs", + "name": "Vance McGrady", + "email": "vancemcgrady@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vancemcgrady/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Application Developer", + "industry": "Data Analytics", + "cities": ["Kansas City", "Greensboro", "San Francisco", "Cleveland"], + "_id": { + "$oid": "666cbc3240af7b375e35271e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Virgin Hyperloop One", + "name": "Justin Fung", + "email": "justincaseyfung@gmail.com", + "linkedIn": "https://www.linkedin.com/in/citrusvanilla/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Front-End Developer", + "industry": "Transportation", + "cities": ["Glendale", "Chicago", "Oakland", "Tulsa"], + "_id": { + "$oid": "666cbc3240af7b375e35271f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Virgin Orbit", + "name": "Arkadiy Nigay", + "email": "ark234@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ark234", + "campus": "LA", + "cohort": "23", + "jobTitle": "Full Stack Developer", + "industry": "Aerospace", + "cities": ["Philadelphia"], + "_id": { + "$oid": "666cbc3240af7b375e352720" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Virgin Orbit", + "name": "Eric McCorkle", + "email": "ericm.mccorkle@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eric-mccorkle/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Full Stack Developer", + "industry": "Aerospace", + "cities": ["Chandler", "Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e352721" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Virtru", + "name": "Jake Van Vorhis", + "email": "vanvorhisjake@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jakedoublev/", + "campus": "PTRI", + "cohort": "5", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Security", + "cities": ["Santa Ana", "Paris", "Albuquerque"], + "_id": { + "$oid": "666cbc3240af7b375e352722" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Visa", + "name": "Bryan Mooyeong Lee", + "email": "mylee1995@gmail.com", + "linkedIn": "https://www.linkedin.com/bryanm-lee", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["London", "Winston-Salem", "Albuquerque"], + "_id": { + "$oid": "666cbc3240af7b375e352723" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "VMware", + "name": "Maureen Onchiri", + "email": "onchirimaureen1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/maureenonchiri/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Software Engineer", + "industry": "Tech", + "cities": ["Anaheim", "San Francisco"], + "_id": { + "$oid": "666cbc3240af7b375e352724" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Volta Charging", + "name": "Maximilian Gonzalez", + "email": "thamaxlg@gmail.com", + "linkedIn": "https://www.linkedin.com/in/maximiliangonzalez/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Full Stack Software Engineer, Cloud Platform", + "industry": "Transportation", + "cities": ["Mexico City", "Houston"], + "_id": { + "$oid": "666cbc3240af7b375e352725" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "VS Media Inc", + "name": "Patrick Hu", + "email": "patrickhu91@gmail.com", + "linkedIn": "https://www.LinkedIn.com/in/patrickhu91", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "JavaScript Developer", + "industry": "Entertainment", + "cities": ["Durham"], + "_id": { + "$oid": "666cbc3240af7b375e352726" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "VTS", + "name": "Andy Koh", + "email": "yk567@cornell.edu", + "linkedIn": "https://www.linkedin.com/in/andersonkoh/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Engineer, Platform", + "industry": "Commercial Real Estate", + "cities": ["Chicago", "Long Beach"], + "_id": { + "$oid": "666cbc3240af7b375e352727" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "W.L. Gore & Associates", + "name": "Amir Marcel", + "email": "amirmarcel@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/amir-marcel", + "campus": "LA", + "cohort": "39", + "jobTitle": "Backend Developer", + "industry": "Manufacturing", + "cities": ["Madison"], + "_id": { + "$oid": "666cbc3240af7b375e352728" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Wag Labs Inc", + "name": "William Adamowicz", + "email": "william.adamowicz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/williamadamowicz/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Software Engineer", + "industry": "Pet Care", + "cities": ["Chula Vista", "Los Angeles", "New Orleans"], + "_id": { + "$oid": "666cbc3240af7b375e352729" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Walgreens", + "name": "Ed Cho", + "email": "edcho720@gmail.com", + "linkedIn": "https://www.linkedin.com/in/edcho720/", + "campus": "FTRI / CTRI", + "cohort": "12", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Bakersfield", "Irvine", "Tulsa"], + "_id": { + "$oid": "666cbc3240af7b375e35272a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Walmart", + "name": "ChunHao Zheng", + "email": "chz062009@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chunhz/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Software Engineer II", + "industry": "Marketing", + "cities": ["El Paso", "Beijing"], + "_id": { + "$oid": "666cbc3240af7b375e35272b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Walmart", + "name": "Eddy Kwon", + "email": "eddykwon0@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eddykwon/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Retail", + "cities": ["Reno", "Winston-Salem"], + "_id": { + "$oid": "666cbc3240af7b375e35272c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Walmart - Store No. 8", + "name": "Starvon Washington", + "email": "staronejazz@yahoo.com", + "linkedIn": "", + "campus": "LA", + "cohort": "19", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Honolulu", "Pittsburgh", "Albuquerque"], + "_id": { + "$oid": "666cbc3240af7b375e35272d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.256Z" + }, + "__v": 0 + }, + { + "company": "Walmart Global Tech", + "name": "Tao Chen", + "email": "xtc2008@gmail.com", + "linkedIn": "https://www.linkedin.com/in/xtc2008", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Senior Software Engineer", + "industry": "Health and Wellness", + "cities": ["Cleveland", "Cincinnati"], + "_id": { + "$oid": "666cbc3240af7b375e35272e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Walmart Labs", + "name": "Brian Barr", + "email": "Brian.Barr23@gmail.com", + "linkedIn": "https://www.linkedin.com/in/barrbrian/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Senior Backend Engineer (Node)", + "industry": "FinTech (?)", + "cities": ["Cleveland", "Fresno", "Saint Paul", "Sacramento"], + "_id": { + "$oid": "666cbc3240af7b375e35272f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Walmart Labs", + "name": "Stephanie Fong", + "email": "stfongg@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stephaniefong08/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Irvine", "St. Petersburg", "Winston-Salem", "St. Louis"], + "_id": { + "$oid": "666cbc3240af7b375e352730" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Warby Parker", + "name": "Sanaya Mirpuri", + "email": "ssmirpuri@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sanayamirpuri/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "BackendSoftware Engineer II", + "industry": "Retail", + "cities": ["Plano", "Arlington"], + "_id": { + "$oid": "666cbc3240af7b375e352731" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Warner Bros Discovery", + "name": "Mark Shin (Shino)", + "email": "pe.markshin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/markshins/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Development Engineer II", + "industry": "Entertainment", + "cities": ["Phoenix", "Fresno", "Chula Vista"], + "_id": { + "$oid": "666cbc3240af7b375e352732" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "WASH", + "name": "Kevin Park", + "email": "xkevinpark@gmail.com", + "linkedIn": "https://www.linkedin.com/in/xkevinpark/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software UI Engineer", + "industry": "Electronics", + "cities": ["Miami"], + "_id": { + "$oid": "666cbc3240af7b375e352733" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Wash Laundry Systems", + "name": "Harmon Huynh", + "email": "harmon.huynh@outlook.com", + "linkedIn": "https://www.linkedin.com/in/harmon-huynh/", + "campus": "LA", + "cohort": "26", + "jobTitle": "Senior Software Engineer", + "industry": "Consumer Services", + "cities": ["Mexico City", "Lincoln", "Garland"], + "_id": { + "$oid": "666cbc3240af7b375e352734" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Watsco", + "name": "Romelo Gilbert", + "email": "romelogilbert@gmail.com", + "linkedIn": "https://www.linkedin.com/in/romelo-gilbert", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "HVAC distributor", + "cities": ["Orlando", "North Las Vegas"], + "_id": { + "$oid": "666cbc3240af7b375e352735" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Wayfair", + "name": "Dylan Bergstrom", + "email": "contact.dylanbergstrom@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dylan-bergstrom", + "campus": "LA", + "cohort": "23", + "jobTitle": "Software Engineer L1", + "industry": "E-Commerce", + "cities": ["Columbus", "Anaheim"], + "_id": { + "$oid": "666cbc3240af7b375e352736" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Wayfair", + "name": "Jay Cogen", + "email": "jaycog44@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jaycogen/", + "campus": "LA", + "cohort": "26", + "jobTitle": "Software Engineer II", + "industry": "Fintech", + "cities": ["Seattle", "Sydney"], + "_id": { + "$oid": "666cbc3240af7b375e352737" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Wayfair", + "name": "Bryan Lee", + "email": "mylee1995@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bryanm-lee/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Software Engineer Intern", + "industry": "E-Commerce", + "cities": ["Arlington", "Laredo", "Oakland", "Austin"], + "_id": { + "$oid": "666cbc3240af7b375e352738" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "WayScript", + "name": "Bren Yamaguchi", + "email": "Yamaguchibren@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brenyamaguchi/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Front End Software Engineer", + "industry": "Developer Tools", + "cities": ["Tokyo", "Mesa"], + "_id": { + "$oid": "666cbc3240af7b375e352739" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "WayUp", + "name": "Angela Scerbo", + "email": "amscerbo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/angelascerbo/", + "campus": "NYC", + "cohort": "2", + "jobTitle": "Frontend Software Engineer", + "industry": "", + "cities": ["San Jose", "St. Louis"], + "_id": { + "$oid": "666cbc3240af7b375e35273a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Weill Cornell Medicine", + "name": "Zoew McGrath", + "email": "Zoewmcgrath@outlook.com", + "linkedIn": "", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Web Developer", + "industry": "Healthcare", + "cities": ["Tulsa", "Indianapolis"], + "_id": { + "$oid": "666cbc3240af7b375e35273b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "WELL Health", + "name": "Elise Bare", + "email": "elisebare@gmail.com", + "linkedIn": "https://www.linkedin.com/in/elisebare/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Engineer, Front End", + "industry": "Healtchare", + "cities": ["Chandler", "Pittsburgh", "Cincinnati"], + "_id": { + "$oid": "666cbc3240af7b375e35273c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Well Health", + "name": "Janis Hernandez", + "email": "Janis11546@gmail.com", + "linkedIn": "https://www.linkedin.com/in/janis-h/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Mid-level Frontend Engineer", + "industry": "Health", + "cities": ["Mumbai", "Mexico City", "St. Petersburg"], + "_id": { + "$oid": "666cbc3240af7b375e35273d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Well Health", + "name": "Jesus Vargas", + "email": "jmodestov@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jesusmvargas/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Frontend Software Engineer", + "industry": "Health Tech", + "cities": ["Norfolk"], + "_id": { + "$oid": "666cbc3240af7b375e35273e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Well Health", + "name": "Michael Wang", + "email": "michaelwawang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael--wang/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer (Backend)", + "industry": "Health Tech", + "cities": ["Gilbert", "Indianapolis", "Oklahoma City", "Irving"], + "_id": { + "$oid": "666cbc3240af7b375e35273f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Well Health", + "name": "Eric Stallings", + "email": "stallings.eric@gmail.com", + "linkedIn": "https://www.linkedin.com/in/EricStallings/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Omaha", "Jacksonville"], + "_id": { + "$oid": "666cbc3240af7b375e352740" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Wellio", + "name": "Rachel Park", + "email": "rachelpark.dev@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rachelparkdev/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Senior Software Engineer", + "industry": "Foodtech", + "cities": ["San Francisco", "Los Angeles", "St. Louis", "Fort Wayne"], + "_id": { + "$oid": "666cbc3240af7b375e352741" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Wells Fargo", + "name": "Taylor Davis", + "email": "Taylor.davis7@live.com", + "linkedIn": "https://www.linkedin.com/in/taylordavis7", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Plano", "Anchorage"], + "_id": { + "$oid": "666cbc3240af7b375e352742" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Western Psychological Services (WPS)", + "name": "Justin Stoddard", + "email": "jgstoddard@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jgstoddard/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Microservices Engineer", + "industry": "Health Tech", + "cities": ["Baltimore"], + "_id": { + "$oid": "666cbc3240af7b375e352743" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "WeWork", + "name": "Maung Maung Lay (Raphael Ram)", + "email": "ramraphael@gmail.com", + "linkedIn": "https://www.linkedin.com/in/raphaelram/", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Real Estate / Hospitality", + "cities": ["Jacksonville", "Anchorage"], + "_id": { + "$oid": "666cbc3240af7b375e352744" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Whisper", + "name": "Kevin Mui", + "email": "kmui.work@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kevin-mui1/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Server Developer", + "industry": "", + "cities": ["Miami", "Fort Worth"], + "_id": { + "$oid": "666cbc3240af7b375e352745" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "William Hill", + "name": "Chris Flannery", + "email": "chriswillsflannery@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chriswillsflannery/", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Frontend Software Engineer", + "industry": "Sports/Entertainment", + "cities": ["Oklahoma City", "New Orleans"], + "_id": { + "$oid": "666cbc3240af7b375e352746" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "William Hill", + "name": "Matt Greenberg", + "email": "mattagreenberg1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mattagreenberg/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "front end software engineer", + "industry": "casino", + "cities": ["Scottsdale", "Milwaukee", "St. Louis", "Fresno"], + "_id": { + "$oid": "666cbc3240af7b375e352747" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Willow Servicing", + "name": "Ian Grepo", + "email": "iangrapeo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ian-grepo/", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Fresno", "St. Louis", "Aurora"], + "_id": { + "$oid": "666cbc3240af7b375e352748" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Windfall Data", + "name": "Bruno Portela", + "email": "bportela@pm.me", + "linkedIn": "https://www.linkedin.com/in/bgp/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Fintech, ML, AI", + "cities": ["Newark"], + "_id": { + "$oid": "666cbc3240af7b375e352749" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Windhover Labs", + "name": "Alex McPhail", + "email": "mcphail.alex@gmail.com", + "linkedIn": "www.linkedin.com/in/mcphail-alex", + "campus": "LA / WCRI", + "cohort": "53", + "jobTitle": "Software Engineer", + "industry": "Aerospace", + "cities": ["Glendale"], + "_id": { + "$oid": "666cbc3240af7b375e35274a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Wiselayer", + "name": "Eric Lemay", + "email": "ericrogerlemay@gmail.com", + "linkedIn": "", + "campus": "NYC / ECRI", + "cohort": "31", + "jobTitle": "Software Engineer", + "industry": "Business Analytics", + "cities": ["Corpus Christi", "Memphis"], + "_id": { + "$oid": "666cbc3240af7b375e35274b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Wiser Solutions", + "name": "Alex Hersler", + "email": "alex@alexhersler.com", + "linkedIn": "https://www.linkedin.com/in/alex-hersler/", + "campus": "LA / WCRI", + "cohort": "48", + "jobTitle": "Software Engineer II", + "industry": "Data Analytics", + "cities": ["Saint Paul", "Jersey City", "Norfolk"], + "_id": { + "$oid": "666cbc3240af7b375e35274c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Wix.com", + "name": "Kenny shen", + "email": "kenny.shen313@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Solutions Engineer", + "industry": "Software / Tech", + "cities": ["New Orleans"], + "_id": { + "$oid": "666cbc3240af7b375e35274d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Wizely Finance", + "name": "Erik Cox", + "email": "erikbcox@gmail.com", + "linkedIn": "https://www.linkedin.com/in/erikbcox/", + "campus": "LA", + "cohort": "22", + "jobTitle": "Senior Full Stack Developer", + "industry": "", + "cities": ["Chandler", "Irvine", "St. Louis"], + "_id": { + "$oid": "666cbc3240af7b375e35274e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "WorkDay", + "name": "Tu Pham", + "email": "toopham@gmail.com", + "linkedIn": "https://www.linkedin.com/in/toopham/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Development Engineer", + "industry": "FinTech, HR", + "cities": ["Raleigh", "Charlotte", "Cleveland"], + "_id": { + "$oid": "666cbc3240af7b375e35274f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "WorkFusion", + "name": "Matt Meigs", + "email": "mattmeigs@gmail.com", + "linkedIn": "https://www.linkedin.com/in/matt-meigs/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Front-End Developer", + "industry": "Intelligent Automation", + "cities": ["Sacramento"], + "_id": { + "$oid": "666cbc3240af7b375e352750" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "WorkRamp", + "name": "Lex Choi", + "email": "lexchoi3@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lexchoi3/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Internal Tools/Customer Support Engineer", + "industry": "SaaS", + "cities": ["Charlotte", "Milwaukee", "Plano"], + "_id": { + "$oid": "666cbc3240af7b375e352751" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "World Wide Technology", + "name": "Christopher Davis", + "email": "chdavis0917@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chris-davis0917", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "JavaScript Developer - Material Planning", + "industry": "IT Services", + "cities": ["Pittsburgh", "Austin"], + "_id": { + "$oid": "666cbc3240af7b375e352752" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "World Wide Technology", + "name": "Crystal Agoncillo", + "email": "crystal.agoncillo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/agoncillo/", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Full Stack Developer", + "industry": "IT Services", + "cities": ["Honolulu", "Lexington", "Orlando", "New Orleans"], + "_id": { + "$oid": "666cbc3240af7b375e352753" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "World Wide Technology", + "name": "Stephanie Page", + "email": "stephanieelainepage@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stephanie-page-atx/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Associate Developer", + "industry": "Consulting", + "cities": ["Portland"], + "_id": { + "$oid": "666cbc3240af7b375e352754" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "World Wide Technology", + "name": "Brett Guidry", + "email": "guidry.brett@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brett-guidry504/", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Software Engineer", + "industry": "IT Services", + "cities": ["Tucson", "Anchorage", "Corpus Christi", "London"], + "_id": { + "$oid": "666cbc3240af7b375e352755" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "WPROMOTE", + "name": "Nay Linn", + "email": "naylinn.pkv@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nay-linn/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer", + "industry": "Digital Marketing", + "cities": ["Laredo", "Long Beach", "New York"], + "_id": { + "$oid": "666cbc3240af7b375e352756" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "WQA", + "name": "Victor Martins", + "email": "martinsvictor287@gmail.com", + "linkedIn": "https://www.linkedin.com/in/victormartinsfemi", + "campus": "LA / WCRI", + "cohort": "59", + "jobTitle": "Software Develooper", + "industry": "Consulting", + "cities": ["Baltimore", "Tampa", "Lubbock", "Norfolk"], + "_id": { + "$oid": "666cbc3240af7b375e352757" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "WW(formally Weight Watchers)", + "name": "Mika Todd", + "email": "mikataressatodd@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mika-todd", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer", + "industry": "Health and Wellness", + "cities": ["Oakland", "Lincoln"], + "_id": { + "$oid": "666cbc3240af7b375e352758" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Wyze", + "name": "Jason Victor", + "email": "jason.victor26@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "38", + "jobTitle": "Jr. Front End Engineer", + "industry": "IoT", + "cities": ["Charlotte", "Columbus"], + "_id": { + "$oid": "666cbc3240af7b375e352759" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Xandr", + "name": "Billy Hepfinger", + "email": "bhepfing@gmail.com", + "linkedIn": "https://www.linkedin.com/in/billy-hepfinger", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer II", + "industry": "Advertising / Telecom", + "cities": ["Minneapolis", "Long Beach"], + "_id": { + "$oid": "666cbc3240af7b375e35275a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Xandr", + "name": "Whit Rooke", + "email": "whit.rooke@gmail.com", + "linkedIn": "https://www.linkedin.com/in/whit-rooke/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Adtech", + "cities": ["Anchorage", "Minneapolis", "Riverside"], + "_id": { + "$oid": "666cbc3240af7b375e35275b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Xinova", + "name": "Clariz Mariano", + "email": "clariz.mariano@gmail.com", + "linkedIn": "https://www.linkedin.com/in/clarmariano/", + "campus": "LA", + "cohort": "22", + "jobTitle": "Software Engineer 2", + "industry": "", + "cities": ["Garland", "Philadelphia", "Reno", "Cincinnati"], + "_id": { + "$oid": "666cbc3240af7b375e35275c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Xtivia", + "name": "Anthony Lo", + "email": "87.anthonylo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/anthonyelo/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Jr. UI Developer", + "industry": "IT Services", + "cities": ["Tucson", "New Orleans", "Berlin"], + "_id": { + "$oid": "666cbc3240af7b375e35275d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Yahoo", + "name": "DeriAnte Sinclair", + "email": "deriante.sinclair@gmail.com", + "linkedIn": "https://www.linkedin.com/in/deriante-sinclair/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Software Apps Engineer I", + "industry": "Software / Tech", + "cities": ["Scottsdale"], + "_id": { + "$oid": "666cbc3240af7b375e35275e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Yahoo", + "name": "Tom Curtin", + "email": "thisistomcurtin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tfcurtin/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["San Francisco", "Nashville"], + "_id": { + "$oid": "666cbc3240af7b375e35275f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Yale New Haven Health", + "name": "Aileen Chan Miranda", + "email": "aileenchany@gmail.com", + "linkedIn": "https://www.linkedin.com/in/aileen-chanmiranda/", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Web Developer", + "industry": "Healthtech/Healthcare", + "cities": ["Pittsburgh"], + "_id": { + "$oid": "666cbc3240af7b375e352760" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Yext", + "name": "Allen Xie", + "email": "axie0320@gmail.com", + "linkedIn": "https://www.linkedin.com/in/axie0320/", + "campus": "PTRI", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Fort Worth"], + "_id": { + "$oid": "666cbc3240af7b375e352761" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "YMCA Retirement Fund", + "name": "Anna Konstantinovich", + "email": "anna@anreko.design", + "linkedIn": "https://www.linkedin.com/in/anna-konstantinovich/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "UX Designer & Developer (It's complicated - let me know if you want more details)", + "industry": "Financial Services", + "cities": ["Orlando", "Denver"], + "_id": { + "$oid": "666cbc3240af7b375e352762" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Zeal", + "name": "Jason Lee", + "email": "jasonmlee1020@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jasonjml/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer II", + "industry": "Fintech", + "cities": ["Nashville", "Chicago"], + "_id": { + "$oid": "666cbc3240af7b375e352763" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Zealthy", + "name": "Kennan Budnik", + "email": "kobudnik@gmail.com", + "linkedIn": "https://linkedin.com/in/kobudnik", + "campus": "NYOI", + "cohort": "2", + "jobTitle": "Software Engineer II", + "industry": "Healthtech/Healthcare", + "cities": ["Chesapeake", "Oklahoma City"], + "_id": { + "$oid": "666cbc3240af7b375e352764" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "ZenBusiness", + "name": "Adam Sheff", + "email": "adamisheff@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adam-sheff/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "Entrepreneurship", + "cities": ["Anchorage"], + "_id": { + "$oid": "666cbc3240af7b375e352765" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "ZenBusiness", + "name": "Christie Herring", + "email": "clherring@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christie-herring/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer II", + "industry": "SaaS, business creation services", + "cities": ["Chicago", "London"], + "_id": { + "$oid": "666cbc3240af7b375e352766" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Zenefits", + "name": "Tobey Forsman", + "email": "tobeyforsman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tobeyforsman/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Senior Software Engineer", + "industry": "Software/Tech", + "cities": ["Baltimore"], + "_id": { + "$oid": "666cbc3240af7b375e352767" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "zephyrx", + "name": "Brian Haller", + "email": "brian@brianhaller.com", + "linkedIn": "https://www.linkedin.com/in/brianjhaller/", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Software Engineer", + "industry": "med tech", + "cities": ["London"], + "_id": { + "$oid": "666cbc3240af7b375e352768" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "ZeroPW", + "name": "Tammy Tan", + "email": "tammytan1912@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tammytan1/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Frontend Engineer", + "industry": "Computer & Network Security", + "cities": ["Gilbert", "Honolulu", "Tokyo"], + "_id": { + "$oid": "666cbc3240af7b375e352769" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Zest AI", + "name": "Ronelle Caguioa", + "email": "ronelle.caguioa@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ronellecaguioa/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Lexington"], + "_id": { + "$oid": "666cbc3240af7b375e35276a" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Zeta Global", + "name": "Chris Tang", + "email": "chrisjtang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chrisjtang", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer", + "industry": "Data", + "cities": ["Irvine", "Arlington", "Kansas City"], + "_id": { + "$oid": "666cbc3240af7b375e35276b" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Zillow", + "name": "Cary L Chan", + "email": "caryLchan@gmail.com", + "linkedIn": "https://www.linkedin.com/in/carylchan/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Full Stack Engineer", + "industry": "Entertainment", + "cities": ["Chula Vista", "St. Louis", "Mexico City"], + "_id": { + "$oid": "666cbc3240af7b375e35276c" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Zillow", + "name": "Hien Nguyen", + "email": "hien.qqnguyen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hienqn/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Engineer", + "industry": "Entertainment", + "cities": ["Tucson", "Albuquerque"], + "_id": { + "$oid": "666cbc3240af7b375e35276d" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Zillow Group", + "name": "Logan Thies", + "email": "logan.thies@icloud.com", + "linkedIn": "https://www.linkedin.com/in/loganthies137/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Development Engineer", + "industry": "Real Estate", + "cities": ["Los Angeles", "Glendale", "Austin", "Fresno"], + "_id": { + "$oid": "666cbc3240af7b375e35276e" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Zip", + "name": "Chase Walters", + "email": "cwwalters@fastmail.com", + "linkedIn": "https://www.linkedin.com/in/charleswwalters/", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Founding Software Engineer", + "industry": "Security", + "cities": ["Baltimore", "Milwaukee", "Lexington"], + "_id": { + "$oid": "666cbc3240af7b375e35276f" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Zipcar", + "name": "Sean Smith", + "email": "smith.seanm17@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sean-smith17/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer (Front End)", + "industry": "Transportation", + "cities": ["Colorado Springs", "New York", "Austin"], + "_id": { + "$oid": "666cbc3240af7b375e352770" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Zipdrug", + "name": "Tolga Mizrakci", + "email": "tolgamizrakci@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tolga-mizrakci/", + "campus": "NYC", + "cohort": "10", + "jobTitle": "Senior Software Engineer", + "industry": "Health Care", + "cities": ["Denver", "Norfolk"], + "_id": { + "$oid": "666cbc3240af7b375e352771" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "ZipRecruiter", + "name": "Ryan Lee", + "email": "rynklee@gmail.com", + "linkedIn": "https://linkedin.com/in/rynklee", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer III", + "industry": "Other", + "cities": ["Philadelphia"], + "_id": { + "$oid": "666cbc3240af7b375e352772" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Zoetis", + "name": "Eileen Cho", + "email": "eileenaracho@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eileenaracho/", + "campus": "LA / WCRI", + "cohort": "56", + "jobTitle": "Data Systems Engineer", + "industry": "Other", + "cities": ["Santa Ana", "Toronto"], + "_id": { + "$oid": "666cbc3240af7b375e352773" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Zogo Finance", + "name": "Derek Miller", + "email": "dsymiller@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dsymiller/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Full Stack Engineer", + "industry": "education, financial services, banking", + "cities": ["Sydney", "Mumbai"], + "_id": { + "$oid": "666cbc3240af7b375e352774" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Zoom Video Communications", + "name": "Jason Jones", + "email": "Jasonroyjones@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jasonroyjones", + "campus": "LA", + "cohort": "33", + "jobTitle": "Software Development Engineer", + "industry": "Telecommunications", + "cities": ["Colorado Springs"], + "_id": { + "$oid": "666cbc3240af7b375e352775" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + }, + { + "company": "Zywave", + "name": "Jacob Davis", + "email": "jacob.drew.davis@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jacob-drew-davis/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Senior DevSecOps Engineer", + "industry": "Software / Tech", + "cities": ["Fort Worth", "Kansas City"], + "_id": { + "$oid": "666cbc3240af7b375e352776" + }, + "createdAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:54:58.257Z" + }, + "__v": 0 + } +] diff --git a/scripts/db/mongo-dev-init/MOCK_FORUMS.json b/scripts/db/mongo-dev-init/MOCK_FORUMS.json new file mode 100644 index 00000000..d3a03531 --- /dev/null +++ b/scripts/db/mongo-dev-init/MOCK_FORUMS.json @@ -0,0 +1,142 @@ +[ + { + "title": "Code Crunch & Job Hunt: Battle Logs", + "description": "Share your epic (or tragic) tales from the job search battlefield. Did you bravely conquer the coding test, or did it conquer you?", + "_id": { + "$oid": "666cbc4a40af7b375e352f56" + }, + "createdAt": { + "$date": "2024-06-14T21:55:22.453Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:22.453Z" + }, + "__v": 0 + }, + { + "title": "Debugging My Resume", + "description": "Need help squashing those pesky resume bugs? Post your CV here and let the community help you refactor it into a job offer magnet.", + "_id": { + "$oid": "666cbc4a40af7b375e352f57" + }, + "createdAt": { + "$date": "2024-06-14T21:55:22.454Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:22.454Z" + }, + "__v": 0 + }, + { + "title": "Interview Nightmares & Dream Jobs", + "description": "Spill the beans on your worst interview disasters and celebrate those rare moments when it actually went well. Misery loves company, and so do success stories!", + "_id": { + "$oid": "666cbc4a40af7b375e352f58" + }, + "createdAt": { + "$date": "2024-06-14T21:55:22.454Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:22.454Z" + }, + "__v": 0 + }, + { + "title": "HR: Humans or Robots?", + "description": "Ever wonder if that HR person was a cleverly disguised bot? Share your weirdest and most robotic interactions with hiring departments.", + "_id": { + "$oid": "666cbc4a40af7b375e352f59" + }, + "createdAt": { + "$date": "2024-06-14T21:55:22.454Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:22.454Z" + }, + "__v": 0 + }, + { + "title": "Salary Negotiation: The Boss Fight", + "description": "Tips, tricks, and epic fails from the final boss battle of job hunting: salary negotiations. Did you get the loot or just a consolation prize?", + "_id": { + "$oid": "666cbc4a40af7b375e352f5a" + }, + "createdAt": { + "$date": "2024-06-14T21:55:22.454Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:22.454Z" + }, + "__v": 0 + }, + { + "title": "Coding Challenge Gauntlet", + "description": "Post and discuss the coding challenges that made you cry, laugh, or question your career choices. Help others survive the gauntlet!", + "_id": { + "$oid": "666cbc4a40af7b375e352f5b" + }, + "createdAt": { + "$date": "2024-06-14T21:55:22.454Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:22.454Z" + }, + "__v": 0 + }, + { + "title": "Office Buzzwords & Bingo", + "description": "Share and decipher the latest buzzwords and jargon from job postings and interviews. Bonus points for the most absurd phrases.", + "_id": { + "$oid": "666cbc4a40af7b375e352f5c" + }, + "createdAt": { + "$date": "2024-06-14T21:55:22.454Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:22.454Z" + }, + "__v": 0 + }, + { + "title": "Side Projects & Procrastination", + "description": "Brag about your side projects or confess how theyโ€™re really just elaborate ways to procrastinate. Either way, weโ€™re impressed!", + "_id": { + "$oid": "666cbc4a40af7b375e352f5d" + }, + "createdAt": { + "$date": "2024-06-14T21:55:22.454Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:22.454Z" + }, + "__v": 0 + }, + { + "title": "LinkedIn Lamentations", + "description": "Rant and rave about the peculiarities of LinkedIn. Endorsements, random connection requests, and the mysterious 'we found your profile' emails.", + "_id": { + "$oid": "666cbc4a40af7b375e352f5e" + }, + "createdAt": { + "$date": "2024-06-14T21:55:22.454Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:22.454Z" + }, + "__v": 0 + }, + { + "title": "Rejected & Dejected: Therapy Sessions", + "description": "A safe space to vent about job rejections and support each other through the emotional rollercoaster of the job hunt. Cookies and virtual hugs provided.", + "_id": { + "$oid": "666cbc4a40af7b375e352f5f" + }, + "createdAt": { + "$date": "2024-06-14T21:55:22.455Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:22.455Z" + }, + "__v": 0 + } +] diff --git a/scripts/db/mongo-dev-init/MOCK_GRADUATE_INVITATIONS.json b/scripts/db/mongo-dev-init/MOCK_GRADUATE_INVITATIONS.json new file mode 100644 index 00000000..95fb5b6c --- /dev/null +++ b/scripts/db/mongo-dev-init/MOCK_GRADUATE_INVITATIONS.json @@ -0,0 +1,2402 @@ +[ + { + "email": "acarradice0@gravatar.com", + "token": "541658530c351ab19011dc5a1cc7f796eb9fd388", + "tokenExpiry": { + "$date": "1970-01-20T20:13:06.955Z" + }, + "isRegistered": true, + "firstName": "Alonso", + "lastName": "Carradice", + "cohort": "WCRI 86", + "registeredAt": { + "$date": "1970-01-20T09:52:04.950Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dc4" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.909Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.909Z" + }, + "__v": 0 + }, + { + "email": "wbleaden1@usgs.gov", + "token": "8ce87b99dc305ef8272b2261a73539156a2a4b11", + "tokenExpiry": { + "$date": "1970-01-20T17:04:07.259Z" + }, + "isRegistered": false, + "firstName": "Wilton", + "lastName": "Bleaden", + "cohort": "NYC 65", + "registeredAt": { + "$date": "1970-01-20T19:09:48.748Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dc5" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.909Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.909Z" + }, + "__v": 0 + }, + { + "email": "ghalso2@jalbum.net", + "token": "19e7fd479b1310e00940ac610b6d3731699224b3", + "tokenExpiry": { + "$date": "1970-01-20T18:28:45.337Z" + }, + "isRegistered": true, + "firstName": "Gannon", + "lastName": "Halso", + "cohort": "WCRI 94", + "registeredAt": { + "$date": "1970-01-20T12:18:04.782Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dc6" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.909Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.909Z" + }, + "__v": 0 + }, + { + "email": "dgrinter3@amazon.com", + "token": "15639748a71a12b6c5b2a9e715aca9ff092877ae", + "tokenExpiry": { + "$date": "1970-01-20T21:40:55.502Z" + }, + "isRegistered": false, + "firstName": "Doralynn", + "lastName": "Grinter", + "cohort": "WCRI 88", + "registeredAt": { + "$date": "1970-01-20T14:33:07.127Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dc7" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.910Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.910Z" + }, + "__v": 0 + }, + { + "email": "wweatherley4@phoca.cz", + "token": "bc2b71d4fbd3ed3de0a0022aa21bbed4f851c755", + "tokenExpiry": { + "$date": "1970-01-20T16:08:07.351Z" + }, + "isRegistered": true, + "firstName": "Winn", + "lastName": "Weatherley", + "cohort": "LA 0", + "registeredAt": { + "$date": "1970-01-20T19:01:06.414Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dc8" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.910Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.910Z" + }, + "__v": 0 + }, + { + "email": "hregis5@dailymail.co.uk", + "token": "01aa9782932b7772770b0c4eae54787dea5f9638", + "tokenExpiry": { + "$date": "1970-01-20T21:42:28.549Z" + }, + "isRegistered": true, + "firstName": "Hermon", + "lastName": "Regis", + "cohort": "WCRI 77", + "registeredAt": { + "$date": "1970-01-20T14:35:42.909Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dc9" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.910Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.910Z" + }, + "__v": 0 + }, + { + "email": "crousby6@apache.org", + "token": "22ce1f16d86aa9b601a6bd044d3bbc455b4f36e2", + "tokenExpiry": { + "$date": "1970-01-20T22:11:05.604Z" + }, + "isRegistered": false, + "firstName": "Cordie", + "lastName": "Rousby", + "cohort": "NYC 93", + "registeredAt": { + "$date": "1970-01-20T11:13:45.913Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dca" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.910Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.910Z" + }, + "__v": 0 + }, + { + "email": "mriseborough7@clickbank.net", + "token": "3fad65274e7439c2c0a35200295c46977020885f", + "tokenExpiry": { + "$date": "1970-01-20T17:54:29.183Z" + }, + "isRegistered": false, + "firstName": "Maureene", + "lastName": "Riseborough", + "cohort": "LA 82", + "registeredAt": { + "$date": "1970-01-20T12:21:32.791Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dcb" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.910Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.910Z" + }, + "__v": 0 + }, + { + "email": "olawson8@washington.edu", + "token": "39b226afbd4282124dd31b9dd3243cb7e0b1f596", + "tokenExpiry": { + "$date": "1970-01-20T17:25:07.416Z" + }, + "isRegistered": false, + "firstName": "Orelle", + "lastName": "Lawson", + "cohort": "LA 56", + "registeredAt": { + "$date": "1970-01-20T13:15:33.880Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dcc" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.910Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.910Z" + }, + "__v": 0 + }, + { + "email": "jemer9@constantcontact.com", + "token": "dbc7e41297546ad0d7a437abc4573ad5ac36dd2c", + "tokenExpiry": { + "$date": "1970-01-20T19:06:22.524Z" + }, + "isRegistered": false, + "firstName": "Jess", + "lastName": "Emer", + "cohort": "LA 93", + "registeredAt": { + "$date": "1970-01-20T13:02:37.374Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dcd" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.910Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.910Z" + }, + "__v": 0 + }, + { + "email": "mtubblesa@nifty.com", + "token": "a664d8ee7cd56a9ce2963eae874da9c65fcd2361", + "tokenExpiry": { + "$date": "1970-01-20T21:34:46.527Z" + }, + "isRegistered": true, + "firstName": "Mariel", + "lastName": "Tubbles", + "cohort": "CTRI 92", + "registeredAt": { + "$date": "1970-01-20T10:33:43.674Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dce" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.910Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.910Z" + }, + "__v": 0 + }, + { + "email": "pkeightleyb@webnode.com", + "token": "3c78dccda8c878bb7dea64431e5811b2a75af184", + "tokenExpiry": { + "$date": "1970-01-20T20:11:18.643Z" + }, + "isRegistered": true, + "firstName": "Perice", + "lastName": "Keightley", + "cohort": "LA 96", + "registeredAt": { + "$date": "1970-01-20T13:31:16.231Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dcf" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.910Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.910Z" + }, + "__v": 0 + }, + { + "email": "efalcusc@mapy.cz", + "token": "184efd9e68dbe020111734f78303742a65c1fd15", + "tokenExpiry": { + "$date": "1970-01-20T21:21:11.384Z" + }, + "isRegistered": false, + "firstName": "Eula", + "lastName": "Falcus", + "cohort": "WCRI 92", + "registeredAt": { + "$date": "1970-01-20T18:29:02.836Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dd0" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.910Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.910Z" + }, + "__v": 0 + }, + { + "email": "jbaldinid@simplemachines.org", + "token": "26f1e984850651b64779d36d31af27602c8e714b", + "tokenExpiry": { + "$date": "1970-01-20T17:28:00.185Z" + }, + "isRegistered": true, + "firstName": "Jacqui", + "lastName": "Baldini", + "cohort": "NYC 63", + "registeredAt": { + "$date": "1970-01-20T14:11:21.038Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dd1" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.911Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.911Z" + }, + "__v": 0 + }, + { + "email": "snorthridgee@macromedia.com", + "token": "801d95108e35ccce2fe3b290803de8637d65959e", + "tokenExpiry": { + "$date": "1970-01-20T20:26:40.469Z" + }, + "isRegistered": true, + "firstName": "Scottie", + "lastName": "Northridge", + "cohort": "ECRI 44", + "registeredAt": { + "$date": "1970-01-20T13:47:43.603Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dd2" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.911Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.911Z" + }, + "__v": 0 + }, + { + "email": "dhedgerf@shareasale.com", + "token": "d681aa42bf9f2371c60c05754a93fd1dc860fec8", + "tokenExpiry": { + "$date": "1970-01-20T23:53:00.488Z" + }, + "isRegistered": false, + "firstName": "Dorie", + "lastName": "Hedger", + "cohort": "WCRI 8", + "registeredAt": { + "$date": "1970-01-20T12:40:26.473Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dd3" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.911Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.911Z" + }, + "__v": 0 + }, + { + "email": "nskeeng@yellowbook.com", + "token": "fadb33e7532fdce703106043931f2a6f15f88bc3", + "tokenExpiry": { + "$date": "1970-01-20T22:11:49.297Z" + }, + "isRegistered": false, + "firstName": "Nadia", + "lastName": "Skeen", + "cohort": "CTRI 56", + "registeredAt": { + "$date": "1970-01-20T14:58:04.577Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dd4" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.911Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.911Z" + }, + "__v": 0 + }, + { + "email": "mgroomh@samsung.com", + "token": "8df1430be1cc296c94155b06a79a1e24d12b16ad", + "tokenExpiry": { + "$date": "1970-01-20T15:48:51.018Z" + }, + "isRegistered": true, + "firstName": "Mickie", + "lastName": "Groom", + "cohort": "WCRI 35", + "registeredAt": { + "$date": "1970-01-20T13:47:19.049Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dd5" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.911Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.911Z" + }, + "__v": 0 + }, + { + "email": "lkupiszi@liveinternet.ru", + "token": "1740f0be8a449176d15c33a65a5c3bc011cc0f07", + "tokenExpiry": { + "$date": "1970-01-20T18:13:43.534Z" + }, + "isRegistered": true, + "firstName": "Leticia", + "lastName": "Kupisz", + "cohort": "WCRI 69", + "registeredAt": { + "$date": "1970-01-20T11:33:31.294Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dd6" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.911Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.911Z" + }, + "__v": 0 + }, + { + "email": "bdeanj@mlb.com", + "token": "7f27fa69908e6aa17e28f425de5fcc57f0eeedc0", + "tokenExpiry": { + "$date": "1970-01-20T21:09:58.784Z" + }, + "isRegistered": false, + "firstName": "Babb", + "lastName": "Dean", + "cohort": "PTRI 46", + "registeredAt": { + "$date": "1970-01-20T12:25:42.997Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dd7" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.911Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.911Z" + }, + "__v": 0 + }, + { + "email": "blilleyk@blogs.com", + "token": "7fb8c075412d11bebc0ba1aeca86bb08393f136b", + "tokenExpiry": { + "$date": "1970-01-20T22:12:31.606Z" + }, + "isRegistered": false, + "firstName": "Burtie", + "lastName": "Lilley", + "cohort": "NYC 83", + "registeredAt": { + "$date": "1970-01-20T10:38:22.087Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dd8" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.911Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.911Z" + }, + "__v": 0 + }, + { + "email": "dwoodlandl@dailymotion.com", + "token": "774c9ed5bf04f259139e1c14b9446c818f83ec2a", + "tokenExpiry": { + "$date": "1970-01-20T22:18:36.987Z" + }, + "isRegistered": true, + "firstName": "Dorelle", + "lastName": "Woodland", + "cohort": "PTRI 5", + "registeredAt": { + "$date": "1970-01-20T21:05:10.004Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dd9" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.911Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.911Z" + }, + "__v": 0 + }, + { + "email": "bdunlapm@dropbox.com", + "token": "0ddfcd5aee883c68ff7a7a704a406998d3b95a64", + "tokenExpiry": { + "$date": "1970-01-20T15:31:46.453Z" + }, + "isRegistered": false, + "firstName": "Burk", + "lastName": "Dunlap", + "cohort": "WCRI 20", + "registeredAt": { + "$date": "1970-01-20T10:46:36.642Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dda" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.911Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.911Z" + }, + "__v": 0 + }, + { + "email": "cdarreln@newyorker.com", + "token": "53488dd01c43dfa1d596c7964a4d2f534dc8ead5", + "tokenExpiry": { + "$date": "1970-01-20T23:03:27.931Z" + }, + "isRegistered": false, + "firstName": "Cecilius", + "lastName": "Darrel", + "cohort": "NYC 34", + "registeredAt": { + "$date": "1970-01-20T18:04:03.899Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352ddb" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.911Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.911Z" + }, + "__v": 0 + }, + { + "email": "bbudcocko@va.gov", + "token": "efb168a15a3096e53d12ae9f80569d8d557c4493", + "tokenExpiry": { + "$date": "1970-01-20T16:41:58.041Z" + }, + "isRegistered": true, + "firstName": "Brod", + "lastName": "Budcock", + "cohort": "NYC 43", + "registeredAt": { + "$date": "1970-01-20T09:40:43.900Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352ddc" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.912Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.912Z" + }, + "__v": 0 + }, + { + "email": "bthickinp@ibm.com", + "token": "8e4af5f631de12544c44ed442d50aafb83204a44", + "tokenExpiry": { + "$date": "1970-01-20T19:31:28.928Z" + }, + "isRegistered": false, + "firstName": "Bayard", + "lastName": "Thickin", + "cohort": "CTRI 53", + "registeredAt": { + "$date": "1970-01-20T14:59:50.750Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352ddd" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.912Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.912Z" + }, + "__v": 0 + }, + { + "email": "llarringtonq@sakura.ne.jp", + "token": "9951ab34e301c226be2b63b1e3f6b61e7ca6f178", + "tokenExpiry": { + "$date": "1970-01-20T18:09:03.537Z" + }, + "isRegistered": true, + "firstName": "Lorenza", + "lastName": "Larrington", + "cohort": "LA 28", + "registeredAt": { + "$date": "1970-01-20T11:34:38.978Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dde" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.912Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.912Z" + }, + "__v": 0 + }, + { + "email": "rstantonr@mashable.com", + "token": "e5cd7ddfdfb812f47184272328b5510c9d8887b9", + "tokenExpiry": { + "$date": "1970-01-20T18:26:21.578Z" + }, + "isRegistered": true, + "firstName": "Ranna", + "lastName": "Stanton", + "cohort": "FTRI 13", + "registeredAt": { + "$date": "1970-01-20T14:35:02.332Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352ddf" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.912Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.912Z" + }, + "__v": 0 + }, + { + "email": "scowdroys@umich.edu", + "token": "43315d4d9b75715104ee90104db03bf430b78fb1", + "tokenExpiry": { + "$date": "1970-01-20T17:51:20.075Z" + }, + "isRegistered": false, + "firstName": "Silvan", + "lastName": "Cowdroy", + "cohort": "CTRI 29", + "registeredAt": { + "$date": "1970-01-20T15:46:38.807Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352de0" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.912Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.912Z" + }, + "__v": 0 + }, + { + "email": "pskirlingt@4shared.com", + "token": "85d7af1fdd70f8fd165a014e08b7a4b3963ac044", + "tokenExpiry": { + "$date": "1970-01-20T20:53:47.794Z" + }, + "isRegistered": false, + "firstName": "Pepita", + "lastName": "Skirling", + "cohort": "NYC 79", + "registeredAt": { + "$date": "1970-01-20T17:04:37.019Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352de1" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.912Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.912Z" + }, + "__v": 0 + }, + { + "email": "bspensleyu@indiatimes.com", + "token": "597d4be98c6ed3ab97f2301c6da3ee55d69033ed", + "tokenExpiry": { + "$date": "1970-01-20T20:38:19.465Z" + }, + "isRegistered": true, + "firstName": "Brinna", + "lastName": "Spensley", + "cohort": "LA 97", + "registeredAt": { + "$date": "1970-01-20T13:33:35.190Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352de2" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.912Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.912Z" + }, + "__v": 0 + }, + { + "email": "lblaisv@networksolutions.com", + "token": "b7502e54d2a16983c2ffab259798841eec4e8272", + "tokenExpiry": { + "$date": "1970-01-20T17:41:25.133Z" + }, + "isRegistered": true, + "firstName": "Leta", + "lastName": "Blais", + "cohort": "FTRI 35", + "registeredAt": { + "$date": "1970-01-20T17:20:30.885Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352de3" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.912Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.912Z" + }, + "__v": 0 + }, + { + "email": "olehuquetw@privacy.gov.au", + "token": "d368e4882e0e66e2c93020c54534bb56ff2d9d52", + "tokenExpiry": { + "$date": "1970-01-20T22:09:02.625Z" + }, + "isRegistered": true, + "firstName": "Onfre", + "lastName": "Le Huquet", + "cohort": "ECRI 81", + "registeredAt": { + "$date": "1970-01-20T16:24:15.434Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352de4" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.912Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.912Z" + }, + "__v": 0 + }, + { + "email": "cedworthiex@yelp.com", + "token": "8cb9209121c6007c214e4d7bc010190ee2bdd22a", + "tokenExpiry": { + "$date": "1970-01-20T16:43:23.096Z" + }, + "isRegistered": false, + "firstName": "Cairistiona", + "lastName": "Edworthie", + "cohort": "CTRI 12", + "registeredAt": { + "$date": "1970-01-20T14:57:07.010Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352de5" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.912Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.912Z" + }, + "__v": 0 + }, + { + "email": "jchongy@cpanel.net", + "token": "239edcea2ff7a2c73af428692f85be9b2ffab43f", + "tokenExpiry": { + "$date": "1970-01-20T23:11:47.146Z" + }, + "isRegistered": true, + "firstName": "Jonas", + "lastName": "Chong", + "cohort": "NYC 8", + "registeredAt": { + "$date": "1970-01-20T16:23:24.074Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352de6" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.913Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.913Z" + }, + "__v": 0 + }, + { + "email": "emintoz@statcounter.com", + "token": "4fdd3aae97ec4a7d44202cbfe5034517d0f00ebc", + "tokenExpiry": { + "$date": "1970-01-20T21:48:55.279Z" + }, + "isRegistered": true, + "firstName": "Ezra", + "lastName": "Minto", + "cohort": "WCRI 46", + "registeredAt": { + "$date": "1970-01-20T16:45:04.952Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352de7" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.913Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.913Z" + }, + "__v": 0 + }, + { + "email": "vlicari10@businessweek.com", + "token": "752025d65cc509ae58038fa039654c7c5ccff278", + "tokenExpiry": { + "$date": "1970-01-20T21:18:55.874Z" + }, + "isRegistered": false, + "firstName": "Virgina", + "lastName": "Licari", + "cohort": "PTRI 30", + "registeredAt": { + "$date": "1970-01-20T18:31:24.774Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352de8" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.913Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.913Z" + }, + "__v": 0 + }, + { + "email": "rlambrick11@netscape.com", + "token": "38e604f9dd47c6468ab3d4104d8dbc9f6968bfd8", + "tokenExpiry": { + "$date": "1970-01-20T20:19:16.935Z" + }, + "isRegistered": true, + "firstName": "Rickert", + "lastName": "Lambrick", + "cohort": "FTRI 50", + "registeredAt": { + "$date": "1970-01-20T10:22:28.854Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352de9" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.913Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.913Z" + }, + "__v": 0 + }, + { + "email": "jmadner12@boston.com", + "token": "6f81c343c0ee4efec0c7d3359ec562dfdd26bdfd", + "tokenExpiry": { + "$date": "1970-01-20T20:28:16.843Z" + }, + "isRegistered": true, + "firstName": "Jesselyn", + "lastName": "Madner", + "cohort": "ECRI 24", + "registeredAt": { + "$date": "1970-01-20T12:18:09.400Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dea" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.913Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.913Z" + }, + "__v": 0 + }, + { + "email": "ptest13@ovh.net", + "token": "81d623ebdd75de31900eaeefd2f8f6d82e5de0f8", + "tokenExpiry": { + "$date": "1970-01-20T18:28:28.205Z" + }, + "isRegistered": false, + "firstName": "Peirce", + "lastName": "Test", + "cohort": "FTRI 49", + "registeredAt": { + "$date": "1970-01-20T10:10:01.051Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352deb" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.913Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.913Z" + }, + "__v": 0 + }, + { + "email": "swalcher14@hc360.com", + "token": "824b906fd32c063d19ac0413a25ed88b366b400c", + "tokenExpiry": { + "$date": "1970-01-20T18:02:15.307Z" + }, + "isRegistered": true, + "firstName": "Saraann", + "lastName": "Walcher", + "cohort": "PTRI 41", + "registeredAt": { + "$date": "1970-01-20T19:08:59.027Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dec" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.913Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.913Z" + }, + "__v": 0 + }, + { + "email": "gbank15@live.com", + "token": "0e265dea03b6dd81279caee70688ffc3e4aac84d", + "tokenExpiry": { + "$date": "1970-01-20T18:49:10.549Z" + }, + "isRegistered": true, + "firstName": "Giff", + "lastName": "Bank", + "cohort": "FTRI 49", + "registeredAt": { + "$date": "1970-01-20T12:07:22.746Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352ded" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.913Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.913Z" + }, + "__v": 0 + }, + { + "email": "rallmen16@ask.com", + "token": "ed6593ece367f7a7dc24f97bd2f6f0842f14c0c4", + "tokenExpiry": { + "$date": "1970-01-20T21:25:07.719Z" + }, + "isRegistered": false, + "firstName": "Ronny", + "lastName": "Allmen", + "cohort": "PTRI 94", + "registeredAt": { + "$date": "1970-01-20T12:51:39.673Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dee" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.913Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.913Z" + }, + "__v": 0 + }, + { + "email": "kyarrow17@fastcompany.com", + "token": "d7cf565a92803a64d2cee30653696e1d1a6378b9", + "tokenExpiry": { + "$date": "1970-01-20T16:40:02.996Z" + }, + "isRegistered": true, + "firstName": "Kimmi", + "lastName": "Yarrow", + "cohort": "FTRI 28", + "registeredAt": { + "$date": "1970-01-20T13:45:24.672Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352def" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.914Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.914Z" + }, + "__v": 0 + }, + { + "email": "pshepard18@fc2.com", + "token": "9210e18a7553812264f0de3dc1dfdfd149a98b78", + "tokenExpiry": { + "$date": "1970-01-20T22:04:47.332Z" + }, + "isRegistered": false, + "firstName": "Portia", + "lastName": "Shepard", + "cohort": "LA 75", + "registeredAt": { + "$date": "1970-01-20T08:36:25.642Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352df0" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.914Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.914Z" + }, + "__v": 0 + }, + { + "email": "egook19@yale.edu", + "token": "bb6e13b3f037f856d1bb9608fd0c621d6a2a91de", + "tokenExpiry": { + "$date": "1970-01-20T21:56:17.150Z" + }, + "isRegistered": false, + "firstName": "Emlen", + "lastName": "Gook", + "cohort": "PTRI 57", + "registeredAt": { + "$date": "1970-01-20T11:42:55.506Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352df1" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.914Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.914Z" + }, + "__v": 0 + }, + { + "email": "drocks1a@yandex.ru", + "token": "e8a818868eba93a6c8ec66475111de0443dc1bb9", + "tokenExpiry": { + "$date": "1970-01-20T17:03:32.938Z" + }, + "isRegistered": false, + "firstName": "Debee", + "lastName": "Rocks", + "cohort": "CTRI 22", + "registeredAt": { + "$date": "1970-01-20T17:53:43.454Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352df2" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.914Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.914Z" + }, + "__v": 0 + }, + { + "email": "vdhennin1b@webmd.com", + "token": "a38dcb44964ee25e8a6dec9154038d5d9938a87a", + "tokenExpiry": { + "$date": "1970-01-20T16:06:27.212Z" + }, + "isRegistered": false, + "firstName": "Valina", + "lastName": "Dhennin", + "cohort": "PTRI 69", + "registeredAt": { + "$date": "1970-01-20T10:57:45.096Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352df3" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.914Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.914Z" + }, + "__v": 0 + }, + { + "email": "dcheasman1c@123-reg.co.uk", + "token": "94b64ff354e2f9fa7c8a037923bfa8b2dd866eeb", + "tokenExpiry": { + "$date": "1970-01-20T15:38:53.422Z" + }, + "isRegistered": false, + "firstName": "Dwayne", + "lastName": "Cheasman", + "cohort": "WCRI 30", + "registeredAt": { + "$date": "1970-01-20T11:36:58.150Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352df4" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.914Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.914Z" + }, + "__v": 0 + }, + { + "email": "ngladhill1d@bravesites.com", + "token": "d1e4e372f411f9b7078f2a40a97c922e29cc77d7", + "tokenExpiry": { + "$date": "1970-01-20T21:28:38.519Z" + }, + "isRegistered": false, + "firstName": "Nellie", + "lastName": "Gladhill", + "cohort": "ECRI 47", + "registeredAt": { + "$date": "1970-01-20T13:09:23.480Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352df5" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.914Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.914Z" + }, + "__v": 0 + }, + { + "email": "elivzey1e@yandex.ru", + "token": "2b1e273101fd6f2762a922de2b5da38bcc106e0a", + "tokenExpiry": { + "$date": "1970-01-20T18:47:00.017Z" + }, + "isRegistered": true, + "firstName": "Eziechiele", + "lastName": "Livzey", + "cohort": "CTRI 32", + "registeredAt": { + "$date": "1970-01-20T11:12:55.403Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352df6" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.914Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.914Z" + }, + "__v": 0 + }, + { + "email": "smingasson1f@geocities.jp", + "token": "11b06aee7ad84b24658444456a578d207869e512", + "tokenExpiry": { + "$date": "1970-01-21T00:04:52.948Z" + }, + "isRegistered": true, + "firstName": "Sallyanne", + "lastName": "Mingasson", + "cohort": "PTRI 12", + "registeredAt": { + "$date": "1970-01-20T11:45:13.073Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352df7" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.915Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.915Z" + }, + "__v": 0 + }, + { + "email": "hpattullo1g@cocolog-nifty.com", + "token": "f2006654fe52c91bb6953933346a297da119c8c5", + "tokenExpiry": { + "$date": "1970-01-20T23:09:00.391Z" + }, + "isRegistered": true, + "firstName": "Heall", + "lastName": "Pattullo", + "cohort": "FTRI 36", + "registeredAt": { + "$date": "1970-01-20T10:34:33.540Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352df8" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.915Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.915Z" + }, + "__v": 0 + }, + { + "email": "ascarlan1h@businessinsider.com", + "token": "9cff46cacb3a30c7b3b3b54f277e0aab630d45c4", + "tokenExpiry": { + "$date": "1970-01-20T22:11:04.700Z" + }, + "isRegistered": true, + "firstName": "Amaleta", + "lastName": "Scarlan", + "cohort": "WCRI 67", + "registeredAt": { + "$date": "1970-01-20T19:45:01.940Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352df9" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.916Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.916Z" + }, + "__v": 0 + }, + { + "email": "zlawlance1i@gmpg.org", + "token": "bcb5ce7157e175a16358d596e508c2db76cfc1bc", + "tokenExpiry": { + "$date": "1970-01-20T22:23:28.526Z" + }, + "isRegistered": true, + "firstName": "Zonda", + "lastName": "Lawlance", + "cohort": "CTRI 99", + "registeredAt": { + "$date": "1970-01-20T16:45:24.480Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dfa" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.916Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.916Z" + }, + "__v": 0 + }, + { + "email": "lromney1j@independent.co.uk", + "token": "b85fe93921acfd5cf8d12b574dd3b47e4018e436", + "tokenExpiry": { + "$date": "1970-01-20T19:58:24.543Z" + }, + "isRegistered": false, + "firstName": "Livvy", + "lastName": "Romney", + "cohort": "PTRI 15", + "registeredAt": { + "$date": "1970-01-20T17:22:54.160Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dfb" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.916Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.916Z" + }, + "__v": 0 + }, + { + "email": "ballardyce1k@dell.com", + "token": "0f8a9aac15a71fa742c39d3096542281589366b8", + "tokenExpiry": { + "$date": "1970-01-20T21:26:02.499Z" + }, + "isRegistered": true, + "firstName": "Brockie", + "lastName": "Allardyce", + "cohort": "LA 10", + "registeredAt": { + "$date": "1970-01-20T10:24:01.128Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dfc" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.916Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.916Z" + }, + "__v": 0 + }, + { + "email": "jatthowe1l@omniture.com", + "token": "aca52ba0413382dde47301aeadf43a363e9997ba", + "tokenExpiry": { + "$date": "1970-01-20T15:42:46.033Z" + }, + "isRegistered": false, + "firstName": "Jaquelyn", + "lastName": "Atthowe", + "cohort": "FTRI 47", + "registeredAt": { + "$date": "1970-01-20T18:20:08.705Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dfd" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.916Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.916Z" + }, + "__v": 0 + }, + { + "email": "bguerre1m@ftc.gov", + "token": "7b1dd8462dbfad6cea9dad31f7261fef4ec8be95", + "tokenExpiry": { + "$date": "1970-01-20T21:15:30.214Z" + }, + "isRegistered": true, + "firstName": "Barn", + "lastName": "Guerre", + "cohort": "NYC 24", + "registeredAt": { + "$date": "1970-01-20T20:43:22.221Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dfe" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.916Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.916Z" + }, + "__v": 0 + }, + { + "email": "cmillions1n@domainmarket.com", + "token": "5f6819ad846a8ea3e0880dd7fd17c7e1e2b55d90", + "tokenExpiry": { + "$date": "1970-01-20T18:00:26.083Z" + }, + "isRegistered": false, + "firstName": "Carina", + "lastName": "Millions", + "cohort": "CTRI 74", + "registeredAt": { + "$date": "1970-01-20T15:50:36.752Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352dff" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.916Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.916Z" + }, + "__v": 0 + }, + { + "email": "mgrigorini1o@pinterest.com", + "token": "355d05a947933941c88073a12e6787e4e3199b2d", + "tokenExpiry": { + "$date": "1970-01-20T21:30:08.606Z" + }, + "isRegistered": true, + "firstName": "Micaela", + "lastName": "Grigorini", + "cohort": "WCRI 28", + "registeredAt": { + "$date": "1970-01-20T09:06:40.482Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e00" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.916Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.916Z" + }, + "__v": 0 + }, + { + "email": "fredwin1p@lulu.com", + "token": "dd3f9f8550968f560e0beddeeb22e6ed345b66f3", + "tokenExpiry": { + "$date": "1970-01-20T22:00:47.163Z" + }, + "isRegistered": false, + "firstName": "Fran", + "lastName": "Redwin", + "cohort": "WCRI 85", + "registeredAt": { + "$date": "1970-01-20T13:29:42.467Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e01" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.916Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.916Z" + }, + "__v": 0 + }, + { + "email": "kfirmager1q@vistaprint.com", + "token": "dc439fab416b534d3f1691e2b5afa1cb67879d76", + "tokenExpiry": { + "$date": "1970-01-20T18:51:41.604Z" + }, + "isRegistered": true, + "firstName": "Kalina", + "lastName": "Firmager", + "cohort": "ECRI 87", + "registeredAt": { + "$date": "1970-01-20T15:14:33.707Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e02" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.917Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.917Z" + }, + "__v": 0 + }, + { + "email": "lblyth1r@dion.ne.jp", + "token": "a10da796c88d8b7cf9fb78132bf8ec674f2ccf6e", + "tokenExpiry": { + "$date": "1970-01-20T16:58:29.120Z" + }, + "isRegistered": true, + "firstName": "Lurline", + "lastName": "Blyth", + "cohort": "CTRI 98", + "registeredAt": { + "$date": "1970-01-20T14:18:34.651Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e03" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.917Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.917Z" + }, + "__v": 0 + }, + { + "email": "jstowte1s@pbs.org", + "token": "f1f937e0689f1bc5c2c2c586282f591e7f65d53b", + "tokenExpiry": { + "$date": "1970-01-20T23:09:52.951Z" + }, + "isRegistered": true, + "firstName": "Julianne", + "lastName": "Stowte", + "cohort": "PTRI 77", + "registeredAt": { + "$date": "1970-01-20T10:56:05.284Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e04" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.917Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.917Z" + }, + "__v": 0 + }, + { + "email": "tpatrie1t@economist.com", + "token": "650aaa0e6787da810abff83ac7745809a1cda53f", + "tokenExpiry": { + "$date": "1970-01-20T21:13:25.232Z" + }, + "isRegistered": true, + "firstName": "Tierney", + "lastName": "Patrie", + "cohort": "NYC 88", + "registeredAt": { + "$date": "1970-01-20T16:53:05.719Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e05" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.917Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.917Z" + }, + "__v": 0 + }, + { + "email": "gsherborne1u@ustream.tv", + "token": "37cfac40e6796b28a9f5887a0f7ce0bfc8ac4ecb", + "tokenExpiry": { + "$date": "1970-01-20T20:05:43.470Z" + }, + "isRegistered": false, + "firstName": "Gerladina", + "lastName": "Sherborne", + "cohort": "CTRI 10", + "registeredAt": { + "$date": "1970-01-20T19:28:48.496Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e06" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.917Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.917Z" + }, + "__v": 0 + }, + { + "email": "pfarress1v@amazonaws.com", + "token": "bf080b5bb70d6c0a44ce68a8ab8a88e042b19cc1", + "tokenExpiry": { + "$date": "1970-01-20T19:31:56.219Z" + }, + "isRegistered": true, + "firstName": "Phil", + "lastName": "Farress", + "cohort": "WCRI 14", + "registeredAt": { + "$date": "1970-01-20T14:30:52.128Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e07" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.917Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.917Z" + }, + "__v": 0 + }, + { + "email": "eallsop1w@deviantart.com", + "token": "1a5bea6e3a65ac46f6e21680ca0ba34f5e2122f2", + "tokenExpiry": { + "$date": "1970-01-20T16:31:34.713Z" + }, + "isRegistered": false, + "firstName": "Elisha", + "lastName": "Allsop", + "cohort": "WCRI 72", + "registeredAt": { + "$date": "1970-01-20T20:03:21.737Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e08" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.917Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.917Z" + }, + "__v": 0 + }, + { + "email": "cskipton1x@4shared.com", + "token": "45278d736abab31f911da7c843e62b524b65c4f4", + "tokenExpiry": { + "$date": "1970-01-20T22:34:36.760Z" + }, + "isRegistered": false, + "firstName": "Carline", + "lastName": "Skipton", + "cohort": "NYC 21", + "registeredAt": { + "$date": "1970-01-20T16:49:15.150Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e09" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.917Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.917Z" + }, + "__v": 0 + }, + { + "email": "mnorthridge1y@google.com.au", + "token": "62f61c162c2ccffc5edcbdfdd02ec45cf1c39376", + "tokenExpiry": { + "$date": "1970-01-20T18:03:15.173Z" + }, + "isRegistered": false, + "firstName": "Mia", + "lastName": "Northridge", + "cohort": "LA 39", + "registeredAt": { + "$date": "1970-01-20T11:07:10.387Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e0a" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.917Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.917Z" + }, + "__v": 0 + }, + { + "email": "ifriedenbach1z@last.fm", + "token": "bd680ad939d973c3e0010ec7a2a2f1921fecc19d", + "tokenExpiry": { + "$date": "1970-01-20T21:23:43.836Z" + }, + "isRegistered": true, + "firstName": "Isaiah", + "lastName": "Friedenbach", + "cohort": "FTRI 66", + "registeredAt": { + "$date": "1970-01-20T16:50:30.245Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e0b" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.917Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.917Z" + }, + "__v": 0 + }, + { + "email": "tdulton20@sitemeter.com", + "token": "f2f3b6b7c83a606cf8cbef085140c25683e80a46", + "tokenExpiry": { + "$date": "1970-01-20T23:13:00.112Z" + }, + "isRegistered": true, + "firstName": "Tallulah", + "lastName": "Dulton", + "cohort": "WCRI 83", + "registeredAt": { + "$date": "1970-01-20T13:17:09.264Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e0c" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.918Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.918Z" + }, + "__v": 0 + }, + { + "email": "besherwood21@amazon.com", + "token": "c3beb14a7cd4e9fd4834cdf6594413ed971c01f3", + "tokenExpiry": { + "$date": "1970-01-20T17:54:39.008Z" + }, + "isRegistered": false, + "firstName": "Bel", + "lastName": "Esherwood", + "cohort": "WCRI 94", + "registeredAt": { + "$date": "1970-01-20T19:40:17.366Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e0d" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.918Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.918Z" + }, + "__v": 0 + }, + { + "email": "akiley22@cpanel.net", + "token": "d2b06ea8d9e4a572cee6d4e2681f67f00894ad56", + "tokenExpiry": { + "$date": "1970-01-20T23:09:01.587Z" + }, + "isRegistered": true, + "firstName": "Anatol", + "lastName": "Kiley", + "cohort": "WCRI 26", + "registeredAt": { + "$date": "1970-01-20T20:15:39.754Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e0e" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.918Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.918Z" + }, + "__v": 0 + }, + { + "email": "cmeth23@zimbio.com", + "token": "8c4a90e9eb572a8dcfb306cc5c26d30387590e28", + "tokenExpiry": { + "$date": "1970-01-20T23:49:56.000Z" + }, + "isRegistered": true, + "firstName": "Corabel", + "lastName": "Meth", + "cohort": "CTRI 0", + "registeredAt": { + "$date": "1970-01-20T11:26:24.205Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e0f" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.918Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.918Z" + }, + "__v": 0 + }, + { + "email": "sterrill24@behance.net", + "token": "03eddbc6485cdd42c8f5cac45e249f6cdb7400eb", + "tokenExpiry": { + "$date": "1970-01-20T22:46:26.241Z" + }, + "isRegistered": false, + "firstName": "Shae", + "lastName": "Terrill", + "cohort": "ECRI 29", + "registeredAt": { + "$date": "1970-01-20T12:46:02.944Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e10" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.918Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.918Z" + }, + "__v": 0 + }, + { + "email": "dmahedy25@wix.com", + "token": "ce05349faa503dc55d9038773796038a7c8df560", + "tokenExpiry": { + "$date": "1970-01-20T21:12:02.995Z" + }, + "isRegistered": false, + "firstName": "Dotty", + "lastName": "Mahedy", + "cohort": "LA 11", + "registeredAt": { + "$date": "1970-01-20T17:04:00.599Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e11" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.918Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.918Z" + }, + "__v": 0 + }, + { + "email": "sattiwill26@wsj.com", + "token": "a09c0f90af57af5b39b94cd83d208ffb25111ccb", + "tokenExpiry": { + "$date": "1970-01-20T22:49:09.405Z" + }, + "isRegistered": false, + "firstName": "Salaidh", + "lastName": "Attiwill", + "cohort": "WCRI 23", + "registeredAt": { + "$date": "1970-01-20T19:08:51.917Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e12" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.918Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.918Z" + }, + "__v": 0 + }, + { + "email": "bbomb27@cmu.edu", + "token": "a196221355ed403ad250ccebf4b4019028b1de19", + "tokenExpiry": { + "$date": "1970-01-20T20:50:26.869Z" + }, + "isRegistered": true, + "firstName": "Billi", + "lastName": "Bomb", + "cohort": "FTRI 34", + "registeredAt": { + "$date": "1970-01-20T17:13:38.131Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e13" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.918Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.918Z" + }, + "__v": 0 + }, + { + "email": "bbedells28@lycos.com", + "token": "31d50e34784504d1ed2ba0fe979c98c64beaf408", + "tokenExpiry": { + "$date": "1970-01-20T22:14:17.038Z" + }, + "isRegistered": true, + "firstName": "Burty", + "lastName": "Bedells", + "cohort": "FTRI 36", + "registeredAt": { + "$date": "1970-01-20T17:08:45.382Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e14" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.918Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.918Z" + }, + "__v": 0 + }, + { + "email": "dlemin29@nhs.uk", + "token": "b3f374ec819cae31abc03d8d4fd606182994b61c", + "tokenExpiry": { + "$date": "1970-01-20T23:33:14.947Z" + }, + "isRegistered": false, + "firstName": "De", + "lastName": "Lemin", + "cohort": "PTRI 5", + "registeredAt": { + "$date": "1970-01-20T19:38:34.981Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e15" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.918Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.918Z" + }, + "__v": 0 + }, + { + "email": "mdraco2a@shinystat.com", + "token": "106220c3f67863ec7b60efa5d818a9615f1f6ae8", + "tokenExpiry": { + "$date": "1970-01-20T18:50:23.735Z" + }, + "isRegistered": true, + "firstName": "Morgen", + "lastName": "Draco", + "cohort": "LA 74", + "registeredAt": { + "$date": "1970-01-20T11:40:37.999Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e16" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.918Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.918Z" + }, + "__v": 0 + }, + { + "email": "ugrassin2b@ucoz.com", + "token": "0bfe9f83752600b459f9299ef15aeff6e2403feb", + "tokenExpiry": { + "$date": "1970-01-20T18:22:05.381Z" + }, + "isRegistered": true, + "firstName": "Urban", + "lastName": "Grassin", + "cohort": "ECRI 17", + "registeredAt": { + "$date": "1970-01-20T19:01:11.474Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e17" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.919Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.919Z" + }, + "__v": 0 + }, + { + "email": "aatto2c@va.gov", + "token": "d918b6a21507a3b203a595b174084d1bcbfd8643", + "tokenExpiry": { + "$date": "1970-01-20T20:20:45.693Z" + }, + "isRegistered": false, + "firstName": "Archy", + "lastName": "Atto", + "cohort": "CTRI 25", + "registeredAt": { + "$date": "1970-01-20T19:34:03.526Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e18" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.919Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.919Z" + }, + "__v": 0 + }, + { + "email": "lmurfill2d@earthlink.net", + "token": "1cfa1580520273a41a6101c1c40d9387a8240e15", + "tokenExpiry": { + "$date": "1970-01-20T23:01:11.765Z" + }, + "isRegistered": true, + "firstName": "Lothaire", + "lastName": "Murfill", + "cohort": "CTRI 49", + "registeredAt": { + "$date": "1970-01-20T17:22:13.684Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e19" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.919Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.919Z" + }, + "__v": 0 + }, + { + "email": "aocrigan2e@ezinearticles.com", + "token": "7c84c138aaea08c8478456fe062b6026922c6bb0", + "tokenExpiry": { + "$date": "1970-01-20T22:51:40.980Z" + }, + "isRegistered": true, + "firstName": "Anne", + "lastName": "O'Crigan", + "cohort": "WCRI 61", + "registeredAt": { + "$date": "1970-01-20T09:36:48.159Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e1a" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.919Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.919Z" + }, + "__v": 0 + }, + { + "email": "nmeacher2f@barnesandnoble.com", + "token": "fe1032812102bf0930a52971a39da65b9d92be03", + "tokenExpiry": { + "$date": "1970-01-20T19:17:13.160Z" + }, + "isRegistered": true, + "firstName": "Nisse", + "lastName": "Meacher", + "cohort": "NYC 54", + "registeredAt": { + "$date": "1970-01-20T11:07:19.572Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e1b" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.919Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.919Z" + }, + "__v": 0 + }, + { + "email": "dtraill2g@tamu.edu", + "token": "356be8cf14a78b06cb741c6c1082a5b2639dc100", + "tokenExpiry": { + "$date": "1970-01-20T22:23:15.575Z" + }, + "isRegistered": false, + "firstName": "Dix", + "lastName": "Traill", + "cohort": "CTRI 55", + "registeredAt": { + "$date": "1970-01-20T13:00:41.678Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e1c" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.919Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.919Z" + }, + "__v": 0 + }, + { + "email": "vproske2h@newsvine.com", + "token": "674dfc2ddb23a74b43373f5d42b23d29016408c2", + "tokenExpiry": { + "$date": "1970-01-20T20:04:02.238Z" + }, + "isRegistered": false, + "firstName": "Verla", + "lastName": "Proske", + "cohort": "WCRI 13", + "registeredAt": { + "$date": "1970-01-20T13:09:03.295Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e1d" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.919Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.919Z" + }, + "__v": 0 + }, + { + "email": "pdahmke2i@diigo.com", + "token": "d165ca490f364a0c81f1c3cf44f7bc5bd314c483", + "tokenExpiry": { + "$date": "1970-01-20T19:48:05.460Z" + }, + "isRegistered": false, + "firstName": "Pennie", + "lastName": "Dahmke", + "cohort": "FTRI 44", + "registeredAt": { + "$date": "1970-01-20T17:46:08.448Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e1e" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.919Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.919Z" + }, + "__v": 0 + }, + { + "email": "akilroy2j@elpais.com", + "token": "651b1e2b34363ee9eaeb35d884cacce571bb20d3", + "tokenExpiry": { + "$date": "1970-01-20T19:10:47.532Z" + }, + "isRegistered": true, + "firstName": "Anestassia", + "lastName": "Kilroy", + "cohort": "CTRI 13", + "registeredAt": { + "$date": "1970-01-20T18:12:42.650Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e1f" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.919Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.919Z" + }, + "__v": 0 + }, + { + "email": "rvanelli2k@xing.com", + "token": "362b7aeeb1b86eeeeb751f0feb30446f38b3551a", + "tokenExpiry": { + "$date": "1970-01-20T16:23:31.810Z" + }, + "isRegistered": true, + "firstName": "Remus", + "lastName": "Vanelli", + "cohort": "NYC 77", + "registeredAt": { + "$date": "1970-01-20T13:01:08.428Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e20" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.919Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.919Z" + }, + "__v": 0 + }, + { + "email": "gtarbert2l@discovery.com", + "token": "47b989b8ef9a9640e1301246469e90468b0409b4", + "tokenExpiry": { + "$date": "1970-01-21T00:06:07.924Z" + }, + "isRegistered": true, + "firstName": "Gil", + "lastName": "Tarbert", + "cohort": "FTRI 32", + "registeredAt": { + "$date": "1970-01-20T12:06:31.965Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e21" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.920Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.920Z" + }, + "__v": 0 + }, + { + "email": "ysmelley2m@twitpic.com", + "token": "d9a8b41e99f1fc724641283b275b61141086ecef", + "tokenExpiry": { + "$date": "1970-01-20T19:45:33.227Z" + }, + "isRegistered": true, + "firstName": "Yulma", + "lastName": "Smelley", + "cohort": "NYC 48", + "registeredAt": { + "$date": "1970-01-20T20:28:53.795Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e22" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.920Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.920Z" + }, + "__v": 0 + }, + { + "email": "tlongworth2n@engadget.com", + "token": "5261c5b65c8539a3affa90614190fcedb77f1fac", + "tokenExpiry": { + "$date": "1970-01-21T00:04:10.140Z" + }, + "isRegistered": false, + "firstName": "Timmy", + "lastName": "Longworth", + "cohort": "LA 64", + "registeredAt": { + "$date": "1970-01-20T18:47:58.351Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e23" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.920Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.920Z" + }, + "__v": 0 + }, + { + "email": "amollatt2o@printfriendly.com", + "token": "4019b03e69e2362fbd1a10fce561eb60bdc16b99", + "tokenExpiry": { + "$date": "1970-01-20T22:59:36.365Z" + }, + "isRegistered": true, + "firstName": "Arthur", + "lastName": "Mollatt", + "cohort": "LA 25", + "registeredAt": { + "$date": "1970-01-20T18:28:04.127Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e24" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.920Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.920Z" + }, + "__v": 0 + }, + { + "email": "gtaylor2p@nps.gov", + "token": "16ce55d2ccf612dc3285cfdee894fb8064453a4b", + "tokenExpiry": { + "$date": "1970-01-20T23:53:37.372Z" + }, + "isRegistered": false, + "firstName": "Griffin", + "lastName": "Taylor", + "cohort": "PTRI 62", + "registeredAt": { + "$date": "1970-01-20T18:10:31.385Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e25" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.920Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.920Z" + }, + "__v": 0 + }, + { + "email": "ostudholme2q@pcworld.com", + "token": "9d62938833da712a578ade3e54cb627996a5464e", + "tokenExpiry": { + "$date": "1970-01-20T16:54:11.012Z" + }, + "isRegistered": true, + "firstName": "Odelinda", + "lastName": "Studholme", + "cohort": "PTRI 81", + "registeredAt": { + "$date": "1970-01-20T09:11:35.487Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e26" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.920Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.920Z" + }, + "__v": 0 + }, + { + "email": "aduffill2r@nbcnews.com", + "token": "8ccc9ddb9f92b0ee6848dd20ca7f3fab1d98fbb0", + "tokenExpiry": { + "$date": "1970-01-20T18:16:57.687Z" + }, + "isRegistered": true, + "firstName": "Ardith", + "lastName": "Duffill", + "cohort": "NYC 44", + "registeredAt": { + "$date": "1970-01-20T14:21:35.088Z" + }, + "_id": { + "$oid": "666cbc4140af7b375e352e27" + }, + "createdAt": { + "$date": "2024-06-14T21:55:13.920Z" + }, + "lastEmailSent": { + "$date": "2024-06-14T21:55:13.920Z" + }, + "__v": 0 + } +] diff --git a/scripts/db/mongo-dev-init/MOCK_POSTS.json b/scripts/db/mongo-dev-init/MOCK_POSTS.json new file mode 100644 index 00000000..7ac39374 --- /dev/null +++ b/scripts/db/mongo-dev-init/MOCK_POSTS.json @@ -0,0 +1,971 @@ +[ + { + "thread": { + "$oid": "666cbc4b40af7b375e353468" + }, + "user": { + "$oid": "666cbc4240af7b375e352ea6" + }, + "content": "Exploring the benefits of using TypeScript in large-scale JavaScript applications. Is it worth the learning curve?", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e353497" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353475" + }, + "user": { + "$oid": "666cbc4240af7b375e352ecd" + }, + "content": "Discussing the ethics of AI in decision-making processes. How can we ensure fairness and accountability?", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e353498" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353471" + }, + "user": { + "$oid": "666cbc4240af7b375e352edc" + }, + "content": "What are your thoughts on the future of cybersecurity in the era of AI and automation?", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e353499" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e35346f" + }, + "user": { + "$oid": "666cbc4240af7b375e352eec" + }, + "content": "Discussing the pros and cons of using NoSQL databases like MongoDB versus traditional SQL databases.", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e35349a" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e35346e" + }, + "user": { + "$oid": "666cbc4240af7b375e352e8e" + }, + "content": "How can blockchain technology revolutionize industries beyond finance? Discussing real-world applications.", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e35349b" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e35345c" + }, + "user": { + "$oid": "666cbc4240af7b375e352eef" + }, + "content": "Seeking advice on building a personal brand as a software engineer. How can networking help career growth?", + "createdAt": { + "$date": "2024-06-14T21:55:23.688Z" + }, + "updatedAt": { + "$date": "2026-02-28T06:59:52.656Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e35349c" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e35345a" + }, + "user": { + "$oid": "666cbc4240af7b375e352e90" + }, + "content": "Exploring the challenges of implementing AI-driven chatbots in customer service applications.", + "createdAt": { + "$date": "2024-06-14T21:55:23.688Z" + }, + "updatedAt": { + "$date": "2026-04-26T12:09:48.915Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e35349d" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353463" + }, + "user": { + "$oid": "666cbc4240af7b375e352eb8" + }, + "content": "I'm new to web development. Can anyone recommend a good beginner-friendly JavaScript framework?", + "createdAt": { + "$date": "2024-06-14T21:55:23.690Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.690Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e35349e" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353460" + }, + "user": { + "$oid": "666cbc4240af7b375e352ed9" + }, + "content": "Discussing the evolution of programming languages and their impact on software development practices.", + "createdAt": { + "$date": "2024-06-14T21:55:23.690Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.690Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e35349f" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353464" + }, + "user": { + "$oid": "666cbc4240af7b375e352ef0" + }, + "content": "What are your favorite design patterns for building scalable backend systems? Discussing architecture.", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2025-07-06T04:53:40.638Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534a0" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e35346b" + }, + "user": { + "$oid": "666cbc4240af7b375e352ee3" + }, + "content": "What are the essential skills for a successful software engineering career in the next decade?", + "createdAt": { + "$date": "2024-06-14T21:55:23.690Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.690Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534a1" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353473" + }, + "user": { + "$oid": "666cbc4240af7b375e352ee5" + }, + "content": "Exploring the role of microservices in modern software architectures. What are the benefits and challenges?", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2027-10-30T01:51:43.225Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534a2" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353470" + }, + "user": { + "$oid": "666cbc4240af7b375e352ee9" + }, + "content": "Discussing the adoption of serverless architecture in enterprise applications. What are the use cases?", + "createdAt": { + "$date": "2024-06-14T21:55:23.690Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.690Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534a3" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353464" + }, + "user": { + "$oid": "666cbc4240af7b375e352e9a" + }, + "content": "How can developers contribute to open-source projects? Discussing the impact of community contributions.", + "createdAt": { + "$date": "2024-06-14T21:55:23.690Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.690Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534a4" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e35346c" + }, + "user": { + "$oid": "666cbc4240af7b375e352ed0" + }, + "content": "Exploring the challenges of implementing AI-driven chatbots in customer service applications.", + "createdAt": { + "$date": "2024-06-14T21:55:23.690Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.690Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534a5" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e35346e" + }, + "user": { + "$oid": "666cbc4240af7b375e352ee1" + }, + "content": "What are the key factors to consider when choosing a tech stack for a new startup project?", + "createdAt": { + "$date": "2024-06-14T21:55:23.691Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.691Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534a6" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353468" + }, + "user": { + "$oid": "666cbc4240af7b375e352eee" + }, + "content": "Exploring the benefits of adopting a microservices architecture over monolithic applications.", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2025-10-21T03:07:41.505Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534a7" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e35346f" + }, + "user": { + "$oid": "666cbc4240af7b375e352ec7" + }, + "content": "What are your strategies for improving team productivity and motivation in remote work environments?", + "createdAt": { + "$date": "2024-06-14T21:55:23.691Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.691Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534a8" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353465" + }, + "user": { + "$oid": "666cbc4240af7b375e352e9f" + }, + "content": "Seeking advice on transitioning from frontend to full-stack development. What skills should I focus on?", + "createdAt": { + "$date": "2024-06-14T21:55:23.691Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.691Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534a9" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e35346b" + }, + "user": { + "$oid": "666cbc4240af7b375e352edf" + }, + "content": "How do you approach designing intuitive user interfaces? Share your UX/UI design principles.", + "createdAt": { + "$date": "2024-06-14T21:55:23.691Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.691Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534aa" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353459" + }, + "user": { + "$oid": "666cbc4240af7b375e352e96" + }, + "content": "Seeking advice on transitioning from academia to industry as a software engineer. What are the challenges?", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2027-01-21T02:44:02.416Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534ab" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353467" + }, + "user": { + "$oid": "666cbc4240af7b375e352ebc" + }, + "content": "What are your favorite VS Code extensions for productivity? Looking to optimize my workflow.", + "createdAt": { + "$date": "2024-06-14T21:55:23.691Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.691Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534ac" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353459" + }, + "user": { + "$oid": "666cbc4240af7b375e352eaf" + }, + "content": "Discussing the benefits of adopting agile methodologies in non-software development teams.", + "createdAt": { + "$date": "2024-06-14T21:55:23.691Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.691Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534ad" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353467" + }, + "user": { + "$oid": "666cbc4240af7b375e352e91" + }, + "content": "What are the essential skills for a successful software engineering career in the next decade?", + "createdAt": { + "$date": "2024-06-14T21:55:23.691Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.691Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534ae" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353464" + }, + "user": { + "$oid": "666cbc4240af7b375e352eb4" + }, + "content": "Share your experiences with remote team collaboration tools like Slack, Zoom, and Microsoft Teams.", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2025-11-10T19:15:05.483Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534af" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e35346b" + }, + "user": { + "$oid": "666cbc4240af7b375e352e9f" + }, + "content": "What are your strategies for improving team productivity and motivation in remote work environments?", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2026-11-25T17:35:04.165Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534b0" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353467" + }, + "user": { + "$oid": "666cbc4240af7b375e352eef" + }, + "content": "How do you approach code reviews in your team? Share your process for constructive feedback and improvement.", + "createdAt": { + "$date": "2024-06-14T21:55:23.692Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.692Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534b1" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353464" + }, + "user": { + "$oid": "666cbc4240af7b375e352ec5" + }, + "content": "What are the key factors to consider when choosing a tech stack for a new startup project?", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2024-10-07T05:10:56.870Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534b2" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353468" + }, + "user": { + "$oid": "666cbc4240af7b375e352ee4" + }, + "content": "Tips for building scalable and maintainable frontend architectures. How do you structure your codebase?", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2025-09-19T21:00:34.253Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534b3" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e35346a" + }, + "user": { + "$oid": "666cbc4240af7b375e352ed4" + }, + "content": "How do you approach refactoring legacy codebases? Share your strategies for modernization.", + "createdAt": { + "$date": "2024-06-14T21:55:23.692Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.692Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534b4" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353465" + }, + "user": { + "$oid": "666cbc4240af7b375e352ed2" + }, + "content": "Exploring the benefits of adopting a microservices architecture over monolithic applications.", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2026-02-13T13:41:17.166Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534b5" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e35346f" + }, + "user": { + "$oid": "666cbc4240af7b375e352ea2" + }, + "content": "How can AI and machine learning be leveraged to enhance personalized user experiences in applications?", + "createdAt": { + "$date": "2024-06-14T21:55:23.692Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.692Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534b6" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e35345c" + }, + "user": { + "$oid": "666cbc4240af7b375e352edc" + }, + "content": "What are your thoughts on the future of cybersecurity in the era of AI and automation?", + "createdAt": { + "$date": "2024-06-14T21:55:23.692Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.692Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534b7" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353476" + }, + "user": { + "$oid": "666cbc4240af7b375e352ed6" + }, + "content": "How do you approach designing intuitive user interfaces? Share your UX/UI design principles.", + "createdAt": { + "$date": "2024-06-14T21:55:23.692Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.692Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534b8" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353462" + }, + "user": { + "$oid": "666cbc4240af7b375e352ec9" + }, + "content": "Discussing the benefits of adopting agile methodologies in non-software development teams.", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2027-01-09T13:19:34.035Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534b9" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e35346c" + }, + "user": { + "$oid": "666cbc4240af7b375e352eed" + }, + "content": "What are the emerging trends in mobile app development? Discussing technologies like Flutter and React Native.", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2026-07-20T00:21:07.415Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534ba" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e35346c" + }, + "user": { + "$oid": "666cbc4240af7b375e352ebd" + }, + "content": "Exploring the role of AI in enhancing cybersecurity measures. How can AI algorithms detect threats?", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2027-08-08T01:35:53.686Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534bb" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353469" + }, + "user": { + "$oid": "666cbc4240af7b375e352eba" + }, + "content": "What are your thoughts on the future of cybersecurity in the era of AI and automation?", + "createdAt": { + "$date": "2024-06-14T21:55:23.693Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.693Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534bc" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e35346b" + }, + "user": { + "$oid": "666cbc4240af7b375e352e9b" + }, + "content": "Seeking advice on transitioning from frontend to full-stack development. What skills should I focus on?", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2025-08-24T02:31:32.213Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534bd" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e35346e" + }, + "user": { + "$oid": "666cbc4240af7b375e352e92" + }, + "content": "Discussing the pros and cons of using NoSQL databases like MongoDB versus traditional SQL databases.", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2026-09-18T05:57:32.739Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534be" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353466" + }, + "user": { + "$oid": "666cbc4240af7b375e352ed7" + }, + "content": "How do you approach designing intuitive user interfaces? Share your UX/UI design principles.", + "createdAt": { + "$date": "2024-06-14T21:55:23.693Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.693Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534bf" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353474" + }, + "user": { + "$oid": "666cbc4240af7b375e352eb2" + }, + "content": "Seeking recommendations for online platforms or courses to learn data science and machine learning.", + "createdAt": { + "$date": "2024-06-14T21:55:23.693Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.693Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534c0" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e35345b" + }, + "user": { + "$oid": "666cbc4240af7b375e352ea6" + }, + "content": "What are your thoughts on the future of cybersecurity in the era of AI and automation?", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2026-09-01T11:02:20.422Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534c1" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353473" + }, + "user": { + "$oid": "666cbc4240af7b375e352eb8" + }, + "content": "How do you approach refactoring legacy codebases? Share your strategies for modernization.", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2026-10-26T18:24:02.555Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534c2" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e35346e" + }, + "user": { + "$oid": "666cbc4240af7b375e352ea0" + }, + "content": "What are your favorite VS Code extensions for productivity? Looking to optimize my workflow.", + "createdAt": { + "$date": "2024-06-14T21:55:23.693Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.693Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534c3" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353463" + }, + "user": { + "$oid": "666cbc4240af7b375e352e9b" + }, + "content": "Share your favorite resources for staying updated with the latest tech trends and industry news.", + "createdAt": { + "$date": "2024-06-14T21:55:23.693Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.693Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534c4" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e35345e" + }, + "user": { + "$oid": "666cbc4240af7b375e352e9d" + }, + "content": "What are the key factors to consider when choosing a tech stack for a new startup project?", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2027-05-04T21:58:45.216Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534c5" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353460" + }, + "user": { + "$oid": "666cbc4240af7b375e352ef0" + }, + "content": "Comparing popular cloud providers for hosting web applications: AWS, Azure, and Google Cloud Platform.", + "createdAt": { + "$date": "2024-06-14T21:55:23.694Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.694Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534c6" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353471" + }, + "user": { + "$oid": "666cbc4240af7b375e352e9b" + }, + "content": "How do you balance feature development with technical debt reduction in agile development?", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2025-09-11T04:24:08.049Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534c7" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353461" + }, + "user": { + "$oid": "666cbc4240af7b375e352ea7" + }, + "content": "How do you balance feature development with technical debt reduction in agile development?", + "createdAt": { + "$date": "2024-06-14T21:55:23.689Z" + }, + "updatedAt": { + "$date": "2025-06-23T04:28:57.616Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534c8" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "666cbc4b40af7b375e353475" + }, + "user": { + "$oid": "666cbc4240af7b375e352ee6" + }, + "content": "Share your favorite resources for staying updated with the latest tech trends and industry news.", + "createdAt": { + "$date": "2024-06-14T21:55:23.694Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.694Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e3534c9" + }, + "__v": 0 + } +] diff --git a/scripts/db/mongo-dev-init/MOCK_PROFILES.json b/scripts/db/mongo-dev-init/MOCK_PROFILES.json new file mode 100644 index 00000000..a69770cb --- /dev/null +++ b/scripts/db/mongo-dev-init/MOCK_PROFILES.json @@ -0,0 +1,17341 @@ +[ + { + "user": { + "$oid": "666cbc4240af7b375e352e8c" + }, + "firstName": "Testy", + "lastName": "McTesterson", + "profilePhoto": "https://www.codesmith.io/hubfs/Screen%20Shot%202024-06-10%20at%2010.46.24%20AM.png", + "cohort": "PTRI 12", + "graduationYear": 2024, + "email": "tester@codehammers.com", + "linkedInProfile": "https://www.linkedin.com/in/Testy-McTesterson-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": [ + "WebSockets", + "Leadership", + "Parallel Computing", + "Machine Learning", + "System Design", + "AWS", + "HTML", + "Integration Testing", + "User Interface (UI) Design", + "Data Warehousing", + "Scrum", + "RESTful APIs", + "Database Design" + ], + "specializations": [ + "Version Control", + "Automated Testing", + "Code Review", + "IoT (Internet of Things)", + "Critical Thinking", + "Natural Language Processing", + "Java", + "BDD (Behavior-Driven Development)", + "Functional Programming", + "Google Cloud Platform", + "Graph Theory", + "Collaboration", + "Laravel", + "Reactive Programming", + "Technical Writing", + "Parallel Computing" + ], + "careerInformation": { + "currentPosition": { "title": "Frontend Developer", "company": "DoorDash" }, + "pastPositions": [ + { + "title": "Technical Lead", + "company": "DoorDash", + "startDate": { + "$date": "2024-06-14T21:55:22.545Z" + }, + "endDate": { + "$date": "2028-04-24T23:35:06.622Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352f6b" + } + }, + { + "title": "Android Developer", + "company": "Twitter", + "startDate": { + "$date": "2024-06-14T21:55:22.545Z" + }, + "endDate": { + "$date": "2024-09-10T05:48:30.769Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352f6c" + } + }, + { + "title": "Junior Software Engineer", + "company": "Activision Blizzard", + "startDate": { + "$date": "2024-06-14T21:55:22.545Z" + }, + "endDate": { + "$date": "2025-07-19T09:30:53.328Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352f6d" + } + }, + { + "title": "AI Engineer", + "company": "DocuSign", + "startDate": { + "$date": "2024-06-14T21:55:22.545Z" + }, + "endDate": { + "$date": "2024-07-31T07:12:45.527Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352f6e" + } + } + ] + }, + "education": [ + { + "institution": "University of Michigan", + "degree": "Doctor of Pharmacy (PharmD)", + "fieldOfStudy": "Biochemistry", + "startDate": { + "$date": "2024-06-14T21:55:22.545Z" + }, + "endDate": { + "$date": "2027-10-17T22:54:25.129Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352f6f" + } + }, + { + "institution": "University of Vermont", + "degree": "Doctor of Dental Surgery (DDS)", + "fieldOfStudy": "Pharmacy", + "startDate": { + "$date": "2024-06-14T21:55:22.545Z" + }, + "endDate": { + "$date": "2026-03-23T02:49:31.765Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352f70" + } + }, + { + "institution": "University of Rochester", + "degree": "Doctoral Degree", + "fieldOfStudy": "Biomedical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.545Z" + }, + "endDate": { + "$date": "2027-01-18T03:55:55.398Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352f71" + } + } + ], + "projects": [ + { + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", + "_id": { + "$oid": "666cbc4a40af7b375e352f72" + } + }, + { + "name": "CloudGuard", + "description": "Advanced cloud security suite ensuring data protection and compliance.", + "link": "https://github.com/username/cloudguard", + "_id": { + "$oid": "666cbc4a40af7b375e352f73" + } + }, + { + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", + "_id": { + "$oid": "666cbc4a40af7b375e352f74" + } + } + ], + "personalBio": "Devoted to fostering a collaborative team environment and mentoring junior developers.", + "testimonials": [ + { + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "_id": { + "$oid": "666cbc4a40af7b375e352f75" + } + }, + { + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e352f76" + } + }, + { + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e352f77" + } + }, + { + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e352f78" + } + } + ], + "socialMediaLinks": { + "blog": "https://www.Testy-McTesterson-fake-blog.com", + "other": ["https://www.instagram.com/Testy-McTesterson-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Kenzie Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e352f6a" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352e8d" + }, + "firstName": "Corine", + "lastName": "Tugwell", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "LA 96", + "graduationYear": 2024, + "email": "ctugwell0@ovh.net", + "linkedInProfile": "https://www.linkedin.com/in/Corine-Tugwell-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "skills": ["Scrum", "FaaS (Function as a Service)", "Agile Development"], + "specializations": [ + "Kubernetes", + "RESTful APIs", + "Blockchain", + "API Integration", + "Android Development", + "Automated Testing", + "Serverless Architecture", + "Graph Databases", + "Design Patterns", + "Data Science", + "PaaS (Platform as a Service)", + "DevOps", + "Software Architecture", + "Graph Theory", + "Infrastructure as Code" + ], + "careerInformation": { + "currentPosition": { "title": "Security Engineer", "company": "Facebook" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "University of Montreal", + "degree": "Doctor of Dental Medicine (DMD)", + "fieldOfStudy": "Public Health", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-05-29T01:25:50.822Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352f7a" + } + }, + { + "institution": "University of Georgia", + "degree": "Doctor of Dental Medicine (DMD)", + "fieldOfStudy": "Mechanical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-07-20T20:16:11.020Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352f7b" + } + }, + { + "institution": "University of California, Berkeley", + "degree": "Executive Education", + "fieldOfStudy": "Architecture", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2028-01-29T07:39:55.316Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352f7c" + } + } + ], + "projects": [ + { + "name": "AIChatbot", + "description": "AI-powered chatbot for customer support and interactive communication.", + "link": "https://github.com/username/aichatbot", + "_id": { + "$oid": "666cbc4a40af7b375e352f7d" + } + }, + { + "name": "MediCare", + "description": "Medical appointment scheduling and patient management system for healthcare providers.", + "link": "https://github.com/username/medicare", + "_id": { + "$oid": "666cbc4a40af7b375e352f7e" + } + }, + { + "name": "AugmentWorks", + "description": "Augmented reality application for enhancing workplace productivity and training.", + "link": "https://github.com/username/augmentworks", + "_id": { + "$oid": "666cbc4a40af7b375e352f7f" + } + }, + { + "name": "RoboTrader", + "description": "Algorithmic trading platform for automated stock market analysis and trading.", + "link": "https://github.com/username/robotrader", + "_id": { + "$oid": "666cbc4a40af7b375e352f80" + } + }, + { + "name": "TourismApp", + "description": "Mobile application for tourists providing travel guides and local recommendations.", + "link": "https://github.com/username/tourismapp", + "_id": { + "$oid": "666cbc4a40af7b375e352f81" + } + } + ], + "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", + "testimonials": [ + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "666cbc4a40af7b375e352f82" + } + }, + { + "from": "Olivia White", + "relation": "Tech Lead at Cloud Innovations", + "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "_id": { + "$oid": "666cbc4a40af7b375e352f83" + } + } + ], + "socialMediaLinks": { "other": ["https://www.instagram.com/Corine-Tugwell-fake"] }, + "availabilityForNetworking": true, + "bootcampExperience": "Hack Reactor", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e352f79" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352e8e" + }, + "firstName": "Brody", + "lastName": "Cumpton", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "ECRI 44", + "graduationYear": 2024, + "email": "bcumpton1@bluehost.com", + "linkedInProfile": "https://www.linkedin.com/in/Brody-Cumpton-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": [ + "Graph Databases", + "Vue.js", + "CSS", + "Legacy Code Management", + "C#", + "React", + "SQL", + "Scrum", + "Java", + "Flask", + "Parallel Computing", + "Data Visualization", + "Pair Programming", + "Integration Testing" + ], + "specializations": [ + "Technical Writing", + "Git", + "Edge Computing", + "Node.js", + "Unit Testing", + "Object-Oriented Programming", + "User Interface (UI) Design", + "Java", + "Graph Databases", + "Automated Testing", + "Leadership", + "Continuous Deployment" + ], + "careerInformation": { + "currentPosition": { "title": "Automation Engineer", "company": "Coinbase" }, + "pastPositions": [ + { + "title": "Mobile Developer", + "company": "DoorDash", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2024-11-17T14:55:25.705Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352f85" + } + }, + { + "title": "Senior Software Engineer", + "company": "Red Hat", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2028-02-28T19:57:20.443Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352f86" + } + } + ] + }, + "education": [ + { + "institution": "University of Tokyo", + "degree": "Master of Science (MS)", + "fieldOfStudy": "Marketing", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-04-03T08:10:41.641Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352f87" + } + } + ], + "projects": [ + { + "name": "TravelGuide", + "description": "Interactive travel guide application providing travel tips and destination insights.", + "link": "https://github.com/username/travelguide", + "_id": { + "$oid": "666cbc4a40af7b375e352f88" + } + }, + { + "name": "TravelGuide", + "description": "Interactive travel guide application providing travel tips and destination insights.", + "link": "https://github.com/username/travelguide", + "_id": { + "$oid": "666cbc4a40af7b375e352f89" + } + }, + { + "name": "CryptoTrack", + "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", + "link": "https://github.com/username/cryptotrack", + "_id": { + "$oid": "666cbc4a40af7b375e352f8a" + } + }, + { + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", + "_id": { + "$oid": "666cbc4a40af7b375e352f8b" + } + }, + { + "name": "RoboTrader", + "description": "Algorithmic trading platform for automated stock market analysis and trading.", + "link": "https://github.com/username/robotrader", + "_id": { + "$oid": "666cbc4a40af7b375e352f8c" + } + } + ], + "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", + "testimonials": [ + { + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "_id": { + "$oid": "666cbc4a40af7b375e352f8d" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "666cbc4a40af7b375e352f8e" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e352f8f" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Brody-Cumpton-fake", + "blog": "https://www.Brody-Cumpton-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Fullstack Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e352f84" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352e8f" + }, + "firstName": "Moselle", + "lastName": "Duro", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "LA 58", + "graduationYear": 2024, + "email": "mduro2@technorati.com", + "linkedInProfile": "https://www.linkedin.com/in/Moselle-Duro-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [ + "Django", + "Critical Thinking", + "Blockchain", + "Continuous Deployment", + "Design Patterns", + "Agile Development", + "Java", + "Data Visualization", + "Database Design", + "Problem-Solving", + "Quantum Computing", + "C#" + ], + "specializations": ["Technical Writing", "Data Science"], + "careerInformation": { + "currentPosition": { "title": "Senior Software Engineer", "company": "Spotify" }, + "pastPositions": [ + { + "title": "Android Developer", + "company": "DoorDash", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2028-03-25T21:02:14.475Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352f91" + } + }, + { + "title": "Lead Software Engineer", + "company": "GitHub", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-04-17T23:15:54.080Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352f92" + } + }, + { + "title": "DevOps Engineer", + "company": "Twilio", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-09-23T05:12:03.232Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352f93" + } + }, + { + "title": "Technical Lead", + "company": "Facebook", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-07-30T10:15:04.135Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352f94" + } + } + ] + }, + "education": [ + { + "institution": "University of Georgia", + "degree": "Doctor of Pharmacy (PharmD)", + "fieldOfStudy": "Medicine", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-04-10T15:44:35.589Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352f95" + } + }, + { + "institution": "University of Kentucky", + "degree": "Doctor of Dental Surgery (DDS)", + "fieldOfStudy": "Education", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-01-21T09:49:48.796Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352f96" + } + } + ], + "projects": [ + { + "name": "SmartWatch", + "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", + "link": "https://github.com/username/smartwatch", + "_id": { + "$oid": "666cbc4a40af7b375e352f97" + } + }, + { + "name": "CodeBot", + "description": "Automated code generation tool using AI for faster development cycles.", + "link": "https://github.com/username/codebot", + "_id": { + "$oid": "666cbc4a40af7b375e352f98" + } + }, + { + "name": "RecruitmentAI", + "description": "AI-powered recruitment platform for matching candidates with job opportunities.", + "link": "https://github.com/username/recruitmentai", + "_id": { + "$oid": "666cbc4a40af7b375e352f99" + } + }, + { + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", + "_id": { + "$oid": "666cbc4a40af7b375e352f9a" + } + }, + { + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", + "_id": { + "$oid": "666cbc4a40af7b375e352f9b" + } + } + ], + "personalBio": "Dedicated to upholding best practices in software engineering, including testing, code reviews, and version control.", + "testimonials": [], + "socialMediaLinks": { "twitter": "https://x.com/Moselle-Duro-fake", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "CareerFoundry", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e352f90" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352e90" + }, + "firstName": "Winifred", + "lastName": "Carnelley", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "cohort": "WCRI 85", + "graduationYear": 2024, + "email": "wcarnelley3@ucsd.edu", + "linkedInProfile": "https://www.linkedin.com/in/Winifred-Carnelley-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": ["Event-Driven Architecture", "Microservices", "Node.js", "Android Development"], + "specializations": [ + "Algorithm Design", + "SQL", + "Cybersecurity", + "Containerization", + "Infrastructure as Code", + "CI/CD" + ], + "careerInformation": { + "currentPosition": { "title": "Embedded Systems Engineer", "company": "Netflix" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "Michigan State University", + "degree": "Doctor of Philosophy (PhD)", + "fieldOfStudy": "Statistics", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2028-02-21T12:30:37.648Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352f9d" + } + } + ], + "projects": [ + { + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", + "_id": { + "$oid": "666cbc4a40af7b375e352f9e" + } + }, + { + "name": "GenomeQuest", + "description": "Genomic data analysis tool for researchers and bioinformaticians.", + "link": "https://github.com/username/genomequest", + "_id": { + "$oid": "666cbc4a40af7b375e352f9f" + } + }, + { + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", + "_id": { + "$oid": "666cbc4a40af7b375e352fa0" + } + } + ], + "personalBio": "Advocate for diversity and inclusion in the tech industry, fostering a welcoming and supportive workplace culture.", + "testimonials": [ + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "666cbc4a40af7b375e352fa1" + } + }, + { + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "_id": { + "$oid": "666cbc4a40af7b375e352fa2" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e352fa3" + } + }, + { + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "_id": { + "$oid": "666cbc4a40af7b375e352fa4" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "666cbc4a40af7b375e352fa5" + } + } + ], + "socialMediaLinks": { "twitter": "https://x.com/Winifred-Carnelley-fake", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "General Assembly", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e352f9c" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352e91" + }, + "firstName": "Marchelle", + "lastName": "Truin", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "WCRI 52", + "graduationYear": 2024, + "email": "mtruin4@stumbleupon.com", + "linkedInProfile": "https://www.linkedin.com/in/Marchelle-Truin-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [ + "Edge Computing", + "ETL (Extract, Transform, Load)", + "C++", + "Google Cloud Platform", + "FaaS (Function as a Service)", + "Time Management", + "Quantum Computing", + "Python", + "C#", + "Technical Writing" + ], + "specializations": ["WebSockets", "Flask"], + "careerInformation": { + "currentPosition": { "title": "Software Architect", "company": "Atlassian" }, + "pastPositions": [ + { + "title": "Machine Learning Engineer", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-02-06T08:54:17.977Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fa7" + } + }, + { + "title": "Security Engineer", + "company": "Tesla", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-12-27T08:12:53.131Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fa8" + } + }, + { + "title": "Frontend Developer", + "company": "Tesla", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-11-30T11:52:38.982Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fa9" + } + }, + { + "title": "Technical Program Manager", + "company": "Apple", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-05-07T20:40:39.718Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352faa" + } + } + ] + }, + "education": [ + { + "institution": "Georgia Institute of Technology", + "degree": "Master of Social Work (MSW)", + "fieldOfStudy": "Economics", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2024-08-25T00:18:12.934Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fab" + } + } + ], + "projects": [ + { + "name": "CryptoTrack", + "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", + "link": "https://github.com/username/cryptotrack", + "_id": { + "$oid": "666cbc4a40af7b375e352fac" + } + }, + { + "name": "VirtualTour", + "description": "Virtual reality tour application for immersive travel experiences.", + "link": "https://github.com/username/virtualtour", + "_id": { + "$oid": "666cbc4a40af7b375e352fad" + } + }, + { + "name": "CryptoWallet", + "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", + "link": "https://github.com/username/cryptowallet", + "_id": { + "$oid": "666cbc4a40af7b375e352fae" + } + }, + { + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", + "_id": { + "$oid": "666cbc4a40af7b375e352faf" + } + } + ], + "personalBio": "Experienced in international collaboration and remote work, with a strong appreciation for cultural diversity.", + "testimonials": [ + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e352fb0" + } + }, + { + "from": "Liam Harris", + "relation": "Lead Developer at CloudTech", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e352fb1" + } + }, + { + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e352fb2" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e352fb3" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e352fb4" + } + } + ], + "socialMediaLinks": { "other": ["https://www.instagram.com/Marchelle-Truin-fake"] }, + "availabilityForNetworking": true, + "bootcampExperience": "CareerFoundry", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e352fa6" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352e92" + }, + "firstName": "Cally", + "lastName": "Gisbey", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "PTRI 52", + "graduationYear": 2024, + "email": "cgisbey5@squarespace.com", + "linkedInProfile": "https://www.linkedin.com/in/Cally-Gisbey-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": [ + "User Experience (UX) Design", + "Big Data", + "Data Science", + "Graph Theory", + "Unit Testing", + "C#", + "Blockchain", + "PaaS (Platform as a Service)", + "Concurrency", + "Pair Programming", + "WebSockets" + ], + "specializations": [ + "Concurrency", + "Refactoring", + "Performance Optimization", + "Microservices", + "GraphQL", + "Continuous Deployment", + "Android Development" + ], + "careerInformation": { + "currentPosition": { "title": "QA Engineer", "company": "Dropbox" }, + "pastPositions": [ + { + "title": "Backend Developer", + "company": "Spotify", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-08-20T14:51:35.112Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fb6" + } + }, + { + "title": "Junior Software Engineer", + "company": "Palantir", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-07-28T09:04:52.640Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fb7" + } + }, + { + "title": "Android Developer", + "company": "Activision Blizzard", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-12-08T11:19:45.231Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fb8" + } + } + ] + }, + "education": [ + { + "institution": "University of Delaware", + "degree": "Associate Degree", + "fieldOfStudy": "Electrical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-06-11T07:24:48.237Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fb9" + } + }, + { + "institution": "University of Massachusetts Amherst", + "degree": "High School Diploma", + "fieldOfStudy": "Pharmacy", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2028-02-14T11:37:23.190Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fba" + } + } + ], + "projects": [ + { + "name": "RoboTrader", + "description": "Algorithmic trading platform for automated stock market analysis and trading.", + "link": "https://github.com/username/robotrader", + "_id": { + "$oid": "666cbc4a40af7b375e352fbb" + } + }, + { + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", + "_id": { + "$oid": "666cbc4a40af7b375e352fbc" + } + }, + { + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", + "_id": { + "$oid": "666cbc4a40af7b375e352fbd" + } + }, + { + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", + "_id": { + "$oid": "666cbc4a40af7b375e352fbe" + } + } + ], + "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", + "testimonials": [ + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e352fbf" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e352fc0" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e352fc1" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "666cbc4a40af7b375e352fc2" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e352fc3" + } + } + ], + "socialMediaLinks": { "other": ["https://www.instagram.com/Cally-Gisbey-fake"] }, + "availabilityForNetworking": false, + "bootcampExperience": "The Tech Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e352fb5" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352e93" + }, + "firstName": "Arlina", + "lastName": "Moodie", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "PTRI 6", + "graduationYear": 2024, + "email": "amoodie6@twitpic.com", + "linkedInProfile": "https://www.linkedin.com/in/Arlina-Moodie-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "skills": [ + "Agile Development", + "Graph Databases", + "Leadership", + "Critical Thinking", + "Spring Boot", + "ETL (Extract, Transform, Load)", + "Git", + "System Design", + "Pair Programming", + "Cloud Computing", + "Microservices", + "Python", + "Unit Testing", + "React", + "GraphQL", + "Data Warehousing", + "Android Development" + ], + "specializations": ["Graph Theory", "Robotic Process Automation", "Azure", "Cloud Computing"], + "careerInformation": { + "currentPosition": { "title": "Data Scientist", "company": "Robinhood" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "University of Washington", + "degree": "Professional Development", + "fieldOfStudy": "Marketing", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-02-12T03:56:22.462Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fc5" + } + }, + { + "institution": "Purdue University", + "degree": "Master of Technology (MTech)", + "fieldOfStudy": "Fine Arts", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-07-11T03:04:52.523Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fc6" + } + }, + { + "institution": "University of California, Berkeley", + "degree": "Master of Arts (MA)", + "fieldOfStudy": "Fine Arts", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-08-05T08:51:14.991Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fc7" + } + }, + { + "institution": "Michigan State University", + "degree": "High School Diploma", + "fieldOfStudy": "Management", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-02-12T06:42:36.863Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fc8" + } + } + ], + "projects": [ + { + "name": "CloudStorage", + "description": "Cloud storage service with file synchronization and sharing capabilities.", + "link": "https://github.com/username/cloudstorage", + "_id": { + "$oid": "666cbc4a40af7b375e352fc9" + } + }, + { + "name": "HealthLink", + "description": "Telemedicine platform connecting patients with healthcare providers remotely.", + "link": "https://github.com/username/healthlink", + "_id": { + "$oid": "666cbc4a40af7b375e352fca" + } + } + ], + "personalBio": "Detail-oriented developer with a strong foundation in algorithms and data structures.", + "testimonials": [ + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e352fcb" + } + }, + { + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "_id": { + "$oid": "666cbc4a40af7b375e352fcc" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e352fcd" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e352fce" + } + }, + { + "from": "Olivia White", + "relation": "Tech Lead at Cloud Innovations", + "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "_id": { + "$oid": "666cbc4a40af7b375e352fcf" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Arlina-Moodie-fake", + "other": ["https://www.instagram.com/Arlina-Moodie-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Tech Elevator", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e352fc4" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352e94" + }, + "firstName": "Phineas", + "lastName": "Coon", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "LA 33", + "graduationYear": 2024, + "email": "pcoon7@hc360.com", + "linkedInProfile": "https://www.linkedin.com/in/Phineas-Coon-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [ + "Angular", + "Spring Boot", + "System Design", + "PaaS (Platform as a Service)", + "DevOps", + "Data Visualization", + "Robotic Process Automation", + "Machine Learning", + "Project Management", + "Google Cloud Platform", + "Natural Language Processing", + "FaaS (Function as a Service)" + ], + "specializations": [ + "Parallel Computing", + "Containerization", + "Functional Programming", + "Microservices", + "PaaS (Platform as a Service)", + "Big Data", + "RESTful APIs", + "Problem-Solving", + "Design Patterns", + "Legacy Code Management", + "Time Management", + "NoSQL", + "Angular", + "GraphQL", + "Software Architecture", + "iOS Development" + ], + "careerInformation": { + "currentPosition": { "title": "Principal Software Engineer", "company": "Stripe" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "Emory University", + "degree": "Master of Arts (MA)", + "fieldOfStudy": "Mechanical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2028-02-26T07:11:36.400Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fd1" + } + }, + { + "institution": "Nanyang Technological University (NTU)", + "degree": "Doctoral Degree", + "fieldOfStudy": "Medicine", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-03-17T00:33:58.940Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fd2" + } + } + ], + "projects": [], + "personalBio": "Skilled in UX/UI design principles, with a focus on creating intuitive and visually appealing interfaces.", + "testimonials": [ + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "_id": { + "$oid": "666cbc4a40af7b375e352fd3" + } + }, + { + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e352fd4" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Phineas-Coon-fake", + "blog": "https://www.Phineas-Coon-fake-blog.com", + "other": ["https://www.instagram.com/Phineas-Coon-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Fullstack Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e352fd0" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352e95" + }, + "firstName": "Shurlock", + "lastName": "Tytcomb", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "ECRI 63", + "graduationYear": 2024, + "email": "stytcomb8@google.it", + "linkedInProfile": "https://www.linkedin.com/in/Shurlock-Tytcomb-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": [ + "Vue.js", + "PaaS (Platform as a Service)", + "Version Control", + "Continuous Deployment", + "Machine Learning", + "TDD (Test-Driven Development)", + "GraphQL", + "Database Design", + "WebSockets", + "Azure", + "API Development", + "Reactive Programming", + "Laravel", + "Cloud Computing", + "Code Review" + ], + "specializations": [ + "Time Management", + "Integration Testing", + "Cloud Computing", + "TDD (Test-Driven Development)", + "Reactive Programming", + "Node.js", + "Concurrency", + "Pair Programming", + "SaaS (Software as a Service)", + "NoSQL", + "Code Review" + ], + "careerInformation": { + "currentPosition": { "title": "DevOps Engineer", "company": "Spotify" }, + "pastPositions": [ + { + "title": "Product Manager", + "company": "Intel", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-02-03T06:45:57.268Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fd6" + } + }, + { + "title": "AI Engineer", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2024-10-27T14:21:08.971Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fd7" + } + }, + { + "title": "Android Developer", + "company": "Google", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2024-10-22T16:50:17.004Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fd8" + } + } + ] + }, + "education": [ + { + "institution": "University of South Carolina", + "degree": "Executive Education", + "fieldOfStudy": "International Relations", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2028-05-24T14:50:07.727Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fd9" + } + }, + { + "institution": "University of Southern California", + "degree": "Juris Doctor (JD)", + "fieldOfStudy": "Theater", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-01-07T09:49:58.144Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fda" + } + }, + { + "institution": "University of Georgia", + "degree": "Master of Business Administration (MBA)", + "fieldOfStudy": "Statistics", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-08-22T14:32:19.663Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fdb" + } + }, + { + "institution": "Case Western Reserve University", + "degree": "Master's Degree", + "fieldOfStudy": "Communication Studies", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2024-12-30T02:21:26.389Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fdc" + } + } + ], + "projects": [ + { + "name": "SmartHomeHub", + "description": "Centralized home automation system integrating IoT devices for smart living.", + "link": "https://github.com/username/smarthomehub", + "_id": { + "$oid": "666cbc4a40af7b375e352fdd" + } + }, + { + "name": "AIChatbot", + "description": "AI-powered chatbot for customer support and interactive communication.", + "link": "https://github.com/username/aichatbot", + "_id": { + "$oid": "666cbc4a40af7b375e352fde" + } + }, + { + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", + "_id": { + "$oid": "666cbc4a40af7b375e352fdf" + } + }, + { + "name": "HealthLink", + "description": "Telemedicine platform connecting patients with healthcare providers remotely.", + "link": "https://github.com/username/healthlink", + "_id": { + "$oid": "666cbc4a40af7b375e352fe0" + } + }, + { + "name": "SmartHomeHub", + "description": "Centralized home automation system integrating IoT devices for smart living.", + "link": "https://github.com/username/smarthomehub", + "_id": { + "$oid": "666cbc4a40af7b375e352fe1" + } + } + ], + "personalBio": "Passionate about building inclusive and accessible software that improves people's lives.", + "testimonials": [], + "socialMediaLinks": { + "blog": "https://www.Shurlock-Tytcomb-fake-blog.com", + "other": ["https://www.instagram.com/Shurlock-Tytcomb-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Flatiron School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e352fd5" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352e96" + }, + "firstName": "Ermina", + "lastName": "Guyton", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "CTRI 94", + "graduationYear": 2024, + "email": "eguyton9@blog.com", + "linkedInProfile": "https://www.linkedin.com/in/Ermina-Guyton-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": [ + "Blockchain", + "Quantum Computing", + "Algorithm Design", + "TDD (Test-Driven Development)", + "NoSQL", + "Concurrency", + "ASP.NET", + "Parallel Computing", + "Docker", + "Python", + "DevOps", + "ETL (Extract, Transform, Load)", + "System Design", + "iOS Development" + ], + "specializations": [ + "User Interface (UI) Design", + "Graph Theory", + "Communication Skills", + "React", + "Project Management", + "Data Visualization", + "API Integration", + "Concurrency", + "Machine Learning", + "GraphQL", + "AR/VR (Augmented/Virtual Reality)", + "Deep Learning", + "Continuous Deployment", + "Android Development", + "Ruby", + "User Experience (UX) Design" + ], + "careerInformation": { + "currentPosition": { "title": "Test Engineer", "company": "Shopify" }, + "pastPositions": [ + { + "title": "Android Developer", + "company": "Shopify", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-12-27T20:30:58.268Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fe3" + } + }, + { + "title": "Junior Software Engineer", + "company": "Salesforce", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2028-05-13T22:20:36.572Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fe4" + } + } + ] + }, + "education": [ + { + "institution": "University of Colorado Boulder", + "degree": "Doctor of Pharmacy (PharmD)", + "fieldOfStudy": "Economics", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-07-15T11:41:08.521Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fe5" + } + }, + { + "institution": "University of Queensland", + "degree": "Doctor of Pharmacy (PharmD)", + "fieldOfStudy": "Aerospace Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-08-20T16:22:00.124Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fe6" + } + } + ], + "projects": [ + { + "name": "LearnHub", + "description": "Online learning platform offering courses on various subjects with interactive content.", + "link": "https://github.com/username/learnhub", + "_id": { + "$oid": "666cbc4a40af7b375e352fe7" + } + }, + { + "name": "SmartLearning", + "description": "AI-driven personalized learning platform with adaptive learning algorithms.", + "link": "https://github.com/username/smartlearning", + "_id": { + "$oid": "666cbc4a40af7b375e352fe8" + } + }, + { + "name": "NetPlanner", + "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", + "link": "https://github.com/username/netplanner", + "_id": { + "$oid": "666cbc4a40af7b375e352fe9" + } + } + ], + "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", + "testimonials": [ + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e352fea" + } + }, + { + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "_id": { + "$oid": "666cbc4a40af7b375e352feb" + } + } + ], + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Galvanize", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e352fe2" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352e97" + }, + "firstName": "Shelton", + "lastName": "Halwood", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "FTRI 66", + "graduationYear": 2024, + "email": "shalwooda@sciencedirect.com", + "linkedInProfile": "https://www.linkedin.com/in/Shelton-Halwood-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": ["Ruby", "JavaScript", "Laravel"], + "specializations": [ + "CI/CD", + "Project Management", + "Java", + "Git", + "Django", + "Unit Testing", + "WebSockets", + "Machine Learning", + "DevOps", + "Ruby", + "Blockchain", + "JavaScript", + "Natural Language Processing", + "Communication Skills", + "Python", + "Software Architecture", + "Android Development" + ], + "careerInformation": { + "currentPosition": { "title": "Lead Software Engineer", "company": "Red Hat" }, + "pastPositions": [ + { + "title": "Site Reliability Engineer", + "company": "Workday", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2024-11-11T01:17:04.188Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fed" + } + }, + { + "title": "DevOps Engineer", + "company": "Workday", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2024-11-08T12:21:47.299Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fee" + } + }, + { + "title": "Backend Developer", + "company": "Amazon", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2028-04-20T13:14:26.334Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fef" + } + } + ] + }, + "education": [ + { + "institution": "Tsinghua University", + "degree": "Doctor of Philosophy (PhD)", + "fieldOfStudy": "Political Science", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2024-11-10T19:29:34.935Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352ff0" + } + }, + { + "institution": "University of Tennessee", + "degree": "Doctor of Education (EdD)", + "fieldOfStudy": "Dentistry", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2028-01-04T11:14:50.306Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352ff1" + } + }, + { + "institution": "Nanyang Technological University (NTU)", + "degree": "Doctor of Dental Medicine (DMD)", + "fieldOfStudy": "Chemical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-11-18T18:19:13.601Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352ff2" + } + }, + { + "institution": "University of Illinois at Urbana-Champaign", + "degree": "Executive Education", + "fieldOfStudy": "Nursing", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2028-03-18T02:02:35.100Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352ff3" + } + } + ], + "projects": [ + { + "name": "MediCare", + "description": "Medical appointment scheduling and patient management system for healthcare providers.", + "link": "https://github.com/username/medicare", + "_id": { + "$oid": "666cbc4a40af7b375e352ff4" + } + }, + { + "name": "EcoTech", + "description": "Environmental monitoring and conservation app with real-time data visualization.", + "link": "https://github.com/username/ecotech", + "_id": { + "$oid": "666cbc4a40af7b375e352ff5" + } + }, + { + "name": "AugmentWorks", + "description": "Augmented reality application for enhancing workplace productivity and training.", + "link": "https://github.com/username/augmentworks", + "_id": { + "$oid": "666cbc4a40af7b375e352ff6" + } + } + ], + "personalBio": "Skilled in working with cross-functional teams to deliver innovative software solutions that exceed expectations.", + "testimonials": [ + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e352ff7" + } + }, + { + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "_id": { + "$oid": "666cbc4a40af7b375e352ff8" + } + } + ], + "socialMediaLinks": { "other": ["https://www.instagram.com/Shelton-Halwood-fake"] }, + "availabilityForNetworking": false, + "bootcampExperience": "Springboard", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e352fec" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352e98" + }, + "firstName": "Nigel", + "lastName": "Clemenzo", + "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "cohort": "LA 45", + "graduationYear": 2024, + "email": "nclemenzob@fotki.com", + "linkedInProfile": "https://www.linkedin.com/in/Nigel-Clemenzo-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [ + "API Integration", + "Critical Thinking", + "Data Warehousing", + "Time Management", + "Reactive Programming", + "Angular", + "Infrastructure as Code", + "Event-Driven Architecture", + "Integration Testing", + "Communication Skills", + "Collaboration", + "Edge Computing", + "Vue.js" + ], + "specializations": [ + "Communication Skills", + "Python", + "Node.js", + "Vue.js", + "Google Cloud Platform", + "C#", + "Agile Development", + "Mobile Development", + "Microservices", + "Version Control", + "FaaS (Function as a Service)", + "Serverless Architecture", + "Data Science", + "Project Management" + ], + "careerInformation": { + "currentPosition": { "title": "Android Developer", "company": "Slack" }, + "pastPositions": [ + { + "title": "iOS Developer", + "company": "Lyft", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-02-13T18:26:22.261Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352ffa" + } + }, + { + "title": "Backend Developer", + "company": "Coinbase", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-03-21T20:05:07.281Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352ffb" + } + }, + { + "title": "Automation Engineer", + "company": "Tesla", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-01-09T18:10:45.543Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352ffc" + } + }, + { + "title": "Junior Software Engineer", + "company": "NVIDIA", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-03-17T05:02:46.280Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352ffd" + } + }, + { + "title": "Machine Learning Engineer", + "company": "Twitter", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-05-20T16:54:33.286Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352ffe" + } + } + ] + }, + "education": [ + { + "institution": "Georgetown University", + "degree": "High School Diploma", + "fieldOfStudy": "Mathematics", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-05-28T05:45:06.904Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e352fff" + } + } + ], + "projects": [ + { + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", + "_id": { + "$oid": "666cbc4a40af7b375e353000" + } + }, + { + "name": "CodeBot", + "description": "Automated code generation tool using AI for faster development cycles.", + "link": "https://github.com/username/codebot", + "_id": { + "$oid": "666cbc4a40af7b375e353001" + } + }, + { + "name": "SmartWatch", + "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", + "link": "https://github.com/username/smartwatch", + "_id": { + "$oid": "666cbc4a40af7b375e353002" + } + }, + { + "name": "SmartGrid", + "description": "Smart grid technology for efficient energy distribution and consumption.", + "link": "https://github.com/username/smartgrid", + "_id": { + "$oid": "666cbc4a40af7b375e353003" + } + }, + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "666cbc4a40af7b375e353004" + } + } + ], + "personalBio": "Devoted to fostering a collaborative team environment and mentoring junior developers.", + "testimonials": [ + { + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "_id": { + "$oid": "666cbc4a40af7b375e353005" + } + }, + { + "from": "Aiden Walker", + "relation": "CTO at Innovate Solutions", + "text": "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", + "_id": { + "$oid": "666cbc4a40af7b375e353006" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e353007" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e353008" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Nigel-Clemenzo-fake", + "other": ["https://www.instagram.com/Nigel-Clemenzo-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Thinkful", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e352ff9" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352e99" + }, + "firstName": "Colver", + "lastName": "Oswell", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "NYC 11", + "graduationYear": 2024, + "email": "coswellc@wsj.com", + "linkedInProfile": "https://www.linkedin.com/in/Colver-Oswell-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [ + "API Integration", + "ETL (Extract, Transform, Load)", + "User Experience (UX) Design", + "Ruby", + "Pair Programming", + "Design Patterns", + "Quantum Computing", + "TDD (Test-Driven Development)", + "Continuous Deployment", + "Integration Testing", + "iOS Development", + "Big Data", + "C++", + "Microservices", + "Deep Learning" + ], + "specializations": [ + "Scrum", + "Node.js", + "Python", + "WebSockets", + "CI/CD", + "Legacy Code Management", + "Software Architecture", + "Google Cloud Platform", + "Containerization", + "BDD (Behavior-Driven Development)", + "Django", + "Spring Boot", + "Natural Language Processing", + "Flask" + ], + "careerInformation": { + "currentPosition": { "title": "Full Stack Developer", "company": "Salesforce" }, + "pastPositions": [ + { + "title": "Data Scientist", + "company": "Airbnb", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-10-30T14:44:10.116Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35300a" + } + }, + { + "title": "Lead Software Engineer", + "company": "Red Hat", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-03-09T15:40:11.726Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35300b" + } + }, + { + "title": "Embedded Systems Engineer", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2028-02-06T13:58:41.417Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35300c" + } + }, + { + "title": "Junior Software Engineer", + "company": "Stripe", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2028-04-06T03:33:59.263Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35300d" + } + }, + { + "title": "Principal Software Engineer", + "company": "Coinbase", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2024-11-05T13:05:15.556Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35300e" + } + } + ] + }, + "education": [ + { + "institution": "Georgetown University", + "degree": "Master of Business Administration (MBA)", + "fieldOfStudy": "Urban Planning", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-11-25T14:31:22.978Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35300f" + } + }, + { + "institution": "Rutgers University", + "degree": "Diploma Program", + "fieldOfStudy": "Business Administration", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-04-30T09:36:21.880Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353010" + } + }, + { + "institution": "University of Oklahoma", + "degree": "Master of Education (MEd)", + "fieldOfStudy": "Dentistry", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-12-27T13:25:03.334Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353011" + } + }, + { + "institution": "McGill University", + "degree": "Master of Arts (MA)", + "fieldOfStudy": "Psychology", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-10-26T14:28:20.764Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353012" + } + } + ], + "projects": [], + "personalBio": "Adaptable problem solver who thrives in dynamic, fast-paced environments.", + "testimonials": [], + "socialMediaLinks": { + "blog": "https://www.Colver-Oswell-fake-blog.com", + "other": ["https://www.instagram.com/Colver-Oswell-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Fullstack Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353009" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352e9a" + }, + "firstName": "Saundra", + "lastName": "Normabell", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "FTRI 66", + "graduationYear": 2024, + "email": "snormabelld@businessinsider.com", + "linkedInProfile": "https://www.linkedin.com/in/Saundra-Normabell-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [ + "Machine Learning", + "Laravel", + "CI/CD", + "C#", + "FaaS (Function as a Service)", + "IoT (Internet of Things)", + "System Design", + "Technical Writing" + ], + "specializations": [ + "Spring Boot", + "NoSQL", + "Concurrency", + "Integration Testing", + "Natural Language Processing", + "Infrastructure as Code", + "Serverless Architecture", + "Cloud Computing", + "WebSockets", + "DevOps", + "Angular", + "Azure", + "AR/VR (Augmented/Virtual Reality)", + "Git", + "TDD (Test-Driven Development)" + ], + "careerInformation": { + "currentPosition": { "title": "Automation Engineer", "company": "PayPal" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "University of Wisconsin-Madison", + "degree": "Master of Technology (MTech)", + "fieldOfStudy": "Statistics", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-05-18T08:55:30.961Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353014" + } + } + ], + "projects": [ + { + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", + "_id": { + "$oid": "666cbc4a40af7b375e353015" + } + }, + { + "name": "FoodDelivery", + "description": "Online food delivery platform connecting restaurants with customers for food ordering.", + "link": "https://github.com/username/fooddelivery", + "_id": { + "$oid": "666cbc4a40af7b375e353016" + } + } + ], + "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", + "testimonials": [ + { + "from": "Liam Harris", + "relation": "Lead Developer at CloudTech", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e353017" + } + }, + { + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e353018" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Saundra-Normabell-fake-blog.com", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "DevMountain", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353013" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352e9b" + }, + "firstName": "Grant", + "lastName": "Chasney", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "CTRI 95", + "graduationYear": 2024, + "email": "gchasneye@mediafire.com", + "linkedInProfile": "https://www.linkedin.com/in/Grant-Chasney-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": [ + "Pair Programming", + "Quantum Computing", + "GraphQL", + "HTML", + "Ruby", + "Agile Development", + "Django", + "Integration Testing", + "ETL (Extract, Transform, Load)", + "Data Science", + "Data Visualization", + "Natural Language Processing", + "Algorithm Design", + "Functional Programming", + "C++", + "C#" + ], + "specializations": [ + "System Design", + "Version Control", + "Ruby", + "Technical Writing", + "Serverless Architecture", + "API Integration", + "Graph Theory", + "Algorithm Design" + ], + "careerInformation": { + "currentPosition": { "title": "iOS Developer", "company": "Amazon" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "Princeton University", + "degree": "Master of Education (MEd)", + "fieldOfStudy": "Aerospace Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-12-16T08:19:34.970Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35301a" + } + }, + { + "institution": "Rice University", + "degree": "Doctor of Medicine (MD)", + "fieldOfStudy": "Mathematics", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-01-27T19:52:49.941Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35301b" + } + }, + { + "institution": "McGill University", + "degree": "Professional Development", + "fieldOfStudy": "International Relations", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-02-07T15:31:40.557Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35301c" + } + }, + { + "institution": "University of Tokyo", + "degree": "Doctor of Philosophy (PhD)", + "fieldOfStudy": "Biology", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-02-18T08:04:18.334Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35301d" + } + } + ], + "projects": [ + { + "name": "CloudGuard", + "description": "Advanced cloud security suite ensuring data protection and compliance.", + "link": "https://github.com/username/cloudguard", + "_id": { + "$oid": "666cbc4a40af7b375e35301e" + } + }, + { + "name": "SmartHomeHub", + "description": "Centralized home automation system integrating IoT devices for smart living.", + "link": "https://github.com/username/smarthomehub", + "_id": { + "$oid": "666cbc4a40af7b375e35301f" + } + }, + { + "name": "CloudGuard", + "description": "Advanced cloud security suite ensuring data protection and compliance.", + "link": "https://github.com/username/cloudguard", + "_id": { + "$oid": "666cbc4a40af7b375e353020" + } + }, + { + "name": "SmartHomeHub", + "description": "Centralized home automation system integrating IoT devices for smart living.", + "link": "https://github.com/username/smarthomehub", + "_id": { + "$oid": "666cbc4a40af7b375e353021" + } + }, + { + "name": "EduTech", + "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", + "link": "https://github.com/username/edutech", + "_id": { + "$oid": "666cbc4a40af7b375e353022" + } + } + ], + "personalBio": "Skilled in UX/UI design principles, with a focus on creating intuitive and visually appealing interfaces.", + "testimonials": [], + "socialMediaLinks": { "blog": "https://www.Grant-Chasney-fake-blog.com", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Fullstack Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353019" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352e9c" + }, + "firstName": "Franni", + "lastName": "Chance", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "NYC 90", + "graduationYear": 2024, + "email": "fchancef@ted.com", + "linkedInProfile": "https://www.linkedin.com/in/Franni-Chance-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "skills": [ + "Git", + "Code Review", + "Flask", + "Containerization", + "CI/CD", + "NoSQL", + "Node.js", + "Laravel", + "TDD (Test-Driven Development)", + "Docker" + ], + "specializations": [ + "Robotic Process Automation", + "Graph Theory", + "Legacy Code Management", + "User Interface (UI) Design", + "C#", + "Project Management", + "ASP.NET", + "Continuous Deployment" + ], + "careerInformation": { + "currentPosition": { "title": "Mobile Developer", "company": "Robinhood" }, + "pastPositions": [ + { + "title": "Backend Developer", + "company": "Zoom", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-05-09T16:31:19.820Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353024" + } + }, + { + "title": "Data Engineer", + "company": "Spotify", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-04-16T18:21:59.479Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353025" + } + }, + { + "title": "Junior Software Engineer", + "company": "IBM", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-12-20T07:50:36.924Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353026" + } + }, + { + "title": "Software Architect", + "company": "PayPal", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-01-26T13:09:16.839Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353027" + } + } + ] + }, + "education": [ + { + "institution": "Duke University", + "degree": "Trade School Certification", + "fieldOfStudy": "Electrical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-10-02T03:43:58.037Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353028" + } + }, + { + "institution": "University of South Carolina", + "degree": "Master of Social Work (MSW)", + "fieldOfStudy": "Public Health", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2028-02-12T16:49:52.760Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353029" + } + }, + { + "institution": "University of British Columbia", + "degree": "Professional Development", + "fieldOfStudy": "Computer Science", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-01-19T20:20:00.085Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35302a" + } + }, + { + "institution": "Duke University", + "degree": "Juris Doctor (JD)", + "fieldOfStudy": "Marketing", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-01-30T12:44:46.846Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35302b" + } + } + ], + "projects": [], + "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", + "testimonials": [ + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e35302c" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "666cbc4a40af7b375e35302d" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e35302e" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "_id": { + "$oid": "666cbc4a40af7b375e35302f" + } + } + ], + "socialMediaLinks": { + "blog": "https://www.Franni-Chance-fake-blog.com", + "other": ["https://www.instagram.com/Franni-Chance-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "General Assembly", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353023" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352e9d" + }, + "firstName": "Clarance", + "lastName": "Meecher", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "NYC 29", + "graduationYear": 2024, + "email": "cmeecherg@addthis.com", + "linkedInProfile": "https://www.linkedin.com/in/Clarance-Meecher-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [ + "Reactive Programming", + "System Design", + "Containerization", + "Code Review", + "Azure", + "Collaboration", + "Design Patterns", + "CSS", + "JavaScript", + "Agile Development", + "Graph Databases", + "Time Management", + "FaaS (Function as a Service)" + ], + "specializations": [ + "Automated Testing", + "Reactive Programming", + "Angular", + "Event-Driven Architecture", + "DevOps", + "Cloud Computing", + "FaaS (Function as a Service)", + "Android Development" + ], + "careerInformation": { + "currentPosition": { "title": "Embedded Systems Engineer", "company": "Robinhood" }, + "pastPositions": [ + { + "title": "Android Developer", + "company": "Atlassian", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-11-06T17:31:56.072Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353031" + } + }, + { + "title": "Security Engineer", + "company": "Amazon", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-07-07T11:32:17.108Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353032" + } + }, + { + "title": "Engineering Manager", + "company": "Amazon", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2028-04-06T19:55:08.493Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353033" + } + }, + { + "title": "Web Developer", + "company": "Red Hat", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-09-05T05:38:29.097Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353034" + } + }, + { + "title": "iOS Developer", + "company": "Shopify", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2024-12-02T02:43:18.235Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353035" + } + } + ] + }, + "education": [ + { + "institution": "University of Missouri", + "degree": "Certificate Program", + "fieldOfStudy": "Environmental Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-07-05T01:40:24.617Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353036" + } + }, + { + "institution": "University of California, Berkeley", + "degree": "Continuing Education", + "fieldOfStudy": "Veterinary Medicine", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-10-09T02:38:50.092Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353037" + } + }, + { + "institution": "Johns Hopkins University", + "degree": "Bachelor of Fine Arts (BFA)", + "fieldOfStudy": "Political Science", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-10-21T02:19:14.482Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353038" + } + } + ], + "projects": [ + { + "name": "SmartInventory", + "description": "Inventory management system with RFID and IoT integration for tracking assets.", + "link": "https://github.com/username/smartinventory", + "_id": { + "$oid": "666cbc4a40af7b375e353039" + } + }, + { + "name": "RecruitmentAI", + "description": "AI-powered recruitment platform for matching candidates with job opportunities.", + "link": "https://github.com/username/recruitmentai", + "_id": { + "$oid": "666cbc4a40af7b375e35303a" + } + }, + { + "name": "MediCare", + "description": "Medical appointment scheduling and patient management system for healthcare providers.", + "link": "https://github.com/username/medicare", + "_id": { + "$oid": "666cbc4a40af7b375e35303b" + } + }, + { + "name": "NetPlanner", + "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", + "link": "https://github.com/username/netplanner", + "_id": { + "$oid": "666cbc4a40af7b375e35303c" + } + }, + { + "name": "TourismApp", + "description": "Mobile application for tourists providing travel guides and local recommendations.", + "link": "https://github.com/username/tourismapp", + "_id": { + "$oid": "666cbc4a40af7b375e35303d" + } + } + ], + "personalBio": "Dedicated to upholding best practices in software engineering, including testing, code reviews, and version control.", + "testimonials": [ + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "666cbc4a40af7b375e35303e" + } + }, + { + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e35303f" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e353040" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Clarance-Meecher-fake", + "blog": "https://www.Clarance-Meecher-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Galvanize", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353030" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352e9e" + }, + "firstName": "Katharine", + "lastName": "Lancett", + "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "cohort": "FTRI 28", + "graduationYear": 2024, + "email": "klancetth@sfgate.com", + "linkedInProfile": "https://www.linkedin.com/in/Katharine-Lancett-fake", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "skills": [ + "Python", + "HTML", + "DevOps", + "IoT (Internet of Things)", + "Version Control", + "Docker", + "Serverless Architecture", + "SQL", + "GraphQL", + "TDD (Test-Driven Development)", + "Kubernetes", + "Spring Boot", + "Deep Learning" + ], + "specializations": [ + "User Experience (UX) Design", + "Deep Learning", + "Robotic Process Automation", + "Data Science" + ], + "careerInformation": { + "currentPosition": { "title": "Product Manager", "company": "Zoom" }, + "pastPositions": [ + { + "title": "Site Reliability Engineer", + "company": "Airbnb", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-09-07T17:17:49.009Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353042" + } + }, + { + "title": "Full Stack Developer", + "company": "Atlassian", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-02-20T10:01:07.736Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353043" + } + }, + { + "title": "Embedded Systems Engineer", + "company": "Intel", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-01-29T07:08:54.560Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353044" + } + }, + { + "title": "Engineering Manager", + "company": "Red Hat", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2028-02-26T16:16:36.331Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353045" + } + } + ] + }, + "education": [ + { + "institution": "London School of Economics and Political Science (LSE)", + "degree": "Master of Public Administration (MPA)", + "fieldOfStudy": "Architecture", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-08-21T20:26:00.644Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353046" + } + } + ], + "projects": [ + { + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", + "_id": { + "$oid": "666cbc4a40af7b375e353047" + } + }, + { + "name": "MediCare", + "description": "Medical appointment scheduling and patient management system for healthcare providers.", + "link": "https://github.com/username/medicare", + "_id": { + "$oid": "666cbc4a40af7b375e353048" + } + }, + { + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", + "_id": { + "$oid": "666cbc4a40af7b375e353049" + } + }, + { + "name": "SmartInventory", + "description": "Inventory management system with RFID and IoT integration for tracking assets.", + "link": "https://github.com/username/smartinventory", + "_id": { + "$oid": "666cbc4a40af7b375e35304a" + } + } + ], + "personalBio": "Proven ability to lead technical projects from inception to successful deployment and maintenance.", + "testimonials": [ + { + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e35304b" + } + }, + { + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "_id": { + "$oid": "666cbc4a40af7b375e35304c" + } + }, + { + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e35304d" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e35304e" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e35304f" + } + } + ], + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "App Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353041" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352e9f" + }, + "firstName": "Margaret", + "lastName": "Dubber", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "NYC 59", + "graduationYear": 2024, + "email": "mdubberi@dropbox.com", + "linkedInProfile": "https://www.linkedin.com/in/Margaret-Dubber-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": [ + "Edge Computing", + "Scrum", + "Android Development", + "Angular", + "Project Management", + "Laravel", + "Graph Theory", + "User Interface (UI) Design", + "Ruby", + "Time Management", + "API Integration", + "Infrastructure as Code", + "Problem-Solving" + ], + "specializations": [ + "HTML", + "Concurrency", + "Java", + "Laravel", + "Software Architecture", + "AWS", + "Automated Testing", + "DevOps", + "Android Development", + "Containerization", + "Code Review", + "Object-Oriented Programming", + "Legacy Code Management", + "Version Control" + ], + "careerInformation": { + "currentPosition": { "title": "Lead Software Engineer", "company": "Dropbox" }, + "pastPositions": [ + { + "title": "Technical Program Manager", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-08-12T02:47:12.556Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353051" + } + }, + { + "title": "Machine Learning Engineer", + "company": "Red Hat", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-12-12T03:58:07.864Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353052" + } + } + ] + }, + "education": [ + { + "institution": "University of Wisconsin-Madison", + "degree": "Postdoctoral Research", + "fieldOfStudy": "Finance", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2028-04-09T06:49:19.625Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353053" + } + }, + { + "institution": "Indiana University Bloomington", + "degree": "Master of Fine Arts (MFA)", + "fieldOfStudy": "Mechanical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2028-04-25T12:23:42.488Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353054" + } + }, + { + "institution": "University of Oregon", + "degree": "Bachelor of Arts (BA)", + "fieldOfStudy": "English Literature", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-03-06T00:07:59.014Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353055" + } + } + ], + "projects": [ + { + "name": "SmartInventory", + "description": "Inventory management system with RFID and IoT integration for tracking assets.", + "link": "https://github.com/username/smartinventory", + "_id": { + "$oid": "666cbc4a40af7b375e353056" + } + }, + { + "name": "SocialConnect", + "description": "Social media integration platform for managing multiple social accounts.", + "link": "https://github.com/username/socialconnect", + "_id": { + "$oid": "666cbc4a40af7b375e353057" + } + } + ], + "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", + "testimonials": [ + { + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "_id": { + "$oid": "666cbc4a40af7b375e353058" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e353059" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e35305a" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "666cbc4a40af7b375e35305b" + } + }, + { + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e35305c" + } + } + ], + "socialMediaLinks": { + "blog": "https://www.Margaret-Dubber-fake-blog.com", + "other": ["https://www.instagram.com/Margaret-Dubber-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "General Assembly", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353050" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ea0" + }, + "firstName": "Addy", + "lastName": "Fass", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "PTRI 63", + "graduationYear": 2024, + "email": "afassj@vistaprint.com", + "linkedInProfile": "https://www.linkedin.com/in/Addy-Fass-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": [ + "API Integration", + "Communication Skills", + "Technical Writing", + "Graph Theory", + "Serverless Architecture", + "Continuous Deployment", + "Integration Testing", + "C#", + "Version Control", + "GraphQL", + "Flask", + "Robotic Process Automation", + "SaaS (Software as a Service)", + "Code Review", + "User Experience (UX) Design", + "Containerization" + ], + "specializations": ["Serverless Architecture"], + "careerInformation": { + "currentPosition": { "title": "Software Engineer", "company": "Twitter" }, + "pastPositions": [ + { + "title": "Software Engineer", + "company": "Facebook", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-01-20T16:00:12.972Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35305e" + } + }, + { + "title": "Data Scientist", + "company": "DoorDash", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2028-02-23T08:49:13.708Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35305f" + } + } + ] + }, + "education": [ + { + "institution": "University of North Carolina at Chapel Hill", + "degree": "Diploma Program", + "fieldOfStudy": "Biology", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-06-30T16:23:40.324Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353060" + } + }, + { + "institution": "Tsinghua University", + "degree": "Master of Engineering (ME)", + "fieldOfStudy": "History", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-03-16T23:30:55.244Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353061" + } + } + ], + "projects": [ + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "666cbc4a40af7b375e353062" + } + }, + { + "name": "HealthMonitor", + "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", + "link": "https://github.com/username/healthmonitor", + "_id": { + "$oid": "666cbc4a40af7b375e353063" + } + }, + { + "name": "MediCare", + "description": "Medical appointment scheduling and patient management system for healthcare providers.", + "link": "https://github.com/username/medicare", + "_id": { + "$oid": "666cbc4a40af7b375e353064" + } + }, + { + "name": "FoodDelivery", + "description": "Online food delivery platform connecting restaurants with customers for food ordering.", + "link": "https://github.com/username/fooddelivery", + "_id": { + "$oid": "666cbc4a40af7b375e353065" + } + } + ], + "personalBio": "Devoted to fostering a collaborative team environment and mentoring junior developers.", + "testimonials": [ + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "666cbc4a40af7b375e353066" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "666cbc4a40af7b375e353067" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e353068" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Addy-Fass-fake-blog.com", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "App Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e35305d" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ea1" + }, + "firstName": "Sollie", + "lastName": "Puckinghorne", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "ECRI 66", + "graduationYear": 2024, + "email": "spuckinghornek@topsy.com", + "linkedInProfile": "https://www.linkedin.com/in/Sollie-Puckinghorne-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": ["Data Visualization", "API Integration", "Spring Boot", "C#"], + "specializations": [ + "Docker", + "BDD (Behavior-Driven Development)", + "Infrastructure as Code", + "Data Warehousing", + "Node.js", + "Deep Learning", + "Mobile Development" + ], + "careerInformation": { + "currentPosition": { "title": "Principal Software Engineer", "company": "Robinhood" }, + "pastPositions": [ + { + "title": "Product Manager", + "company": "Datadog", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-12-13T00:28:44.644Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35306a" + } + }, + { + "title": "Test Engineer", + "company": "Robinhood", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-12-31T10:45:55.581Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35306b" + } + }, + { + "title": "Senior Software Engineer", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-04-26T16:26:16.999Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35306c" + } + } + ] + }, + "education": [ + { + "institution": "Harvard University", + "degree": "Doctor of Dental Surgery (DDS)", + "fieldOfStudy": "Statistics", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-03-19T20:28:41.546Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35306d" + } + }, + { + "institution": "University of Melbourne", + "degree": "Master of Social Work (MSW)", + "fieldOfStudy": "Communication Studies", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-12-24T19:21:56.579Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35306e" + } + }, + { + "institution": "Peking University", + "degree": "Master of Engineering (ME)", + "fieldOfStudy": "Aerospace Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-07-28T04:04:30.497Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35306f" + } + } + ], + "projects": [ + { + "name": "AIAssistant", + "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", + "link": "https://github.com/username/aiassistant", + "_id": { + "$oid": "666cbc4a40af7b375e353070" + } + }, + { + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", + "_id": { + "$oid": "666cbc4a40af7b375e353071" + } + }, + { + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", + "_id": { + "$oid": "666cbc4a40af7b375e353072" + } + } + ], + "personalBio": "Experienced in rapid prototyping and iterative development methodologies.", + "testimonials": [ + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e353073" + } + }, + { + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "_id": { + "$oid": "666cbc4a40af7b375e353074" + } + } + ], + "socialMediaLinks": { "other": ["https://www.instagram.com/Sollie-Puckinghorne-fake"] }, + "availabilityForNetworking": true, + "bootcampExperience": "App Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353069" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ea2" + }, + "firstName": "Xena", + "lastName": "Tomczynski", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "ECRI 23", + "graduationYear": 2024, + "email": "xtomczynskil@ted.com", + "linkedInProfile": "https://www.linkedin.com/in/Xena-Tomczynski-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": [ + "Django", + "Event-Driven Architecture", + "Machine Learning", + "Object-Oriented Programming", + "Reactive Programming" + ], + "specializations": [ + "Cloud Computing", + "Mobile Development", + "React", + "IoT (Internet of Things)", + "GraphQL", + "Robotic Process Automation" + ], + "careerInformation": { + "currentPosition": { "title": "Principal Software Engineer", "company": "Stripe" }, + "pastPositions": [ + { + "title": "Product Manager", + "company": "Adobe", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-01-20T04:19:06.471Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353076" + } + }, + { + "title": "Full Stack Developer", + "company": "Apple", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-07-05T11:21:14.238Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353077" + } + }, + { + "title": "DevOps Engineer", + "company": "Airbnb", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-11-27T05:07:07.847Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353078" + } + } + ] + }, + "education": [ + { + "institution": "University of Virginia", + "degree": "High School Diploma", + "fieldOfStudy": "Political Science", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-09-27T22:32:06.902Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353079" + } + }, + { + "institution": "Purdue University", + "degree": "Doctor of Veterinary Medicine (DVM)", + "fieldOfStudy": "Mechanical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2024-07-29T18:57:26.708Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35307a" + } + }, + { + "institution": "Tsinghua University", + "degree": "Master of Public Administration (MPA)", + "fieldOfStudy": "Political Science", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-05-20T21:28:13.322Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35307b" + } + }, + { + "institution": "National University of Singapore (NUS)", + "degree": "Diploma Program", + "fieldOfStudy": "Mathematics", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-01-15T08:47:59.527Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35307c" + } + } + ], + "projects": [ + { + "name": "EduTech", + "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", + "link": "https://github.com/username/edutech", + "_id": { + "$oid": "666cbc4a40af7b375e35307d" + } + }, + { + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", + "_id": { + "$oid": "666cbc4a40af7b375e35307e" + } + }, + { + "name": "EduTech", + "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", + "link": "https://github.com/username/edutech", + "_id": { + "$oid": "666cbc4a40af7b375e35307f" + } + }, + { + "name": "CloudStorage", + "description": "Cloud storage service with file synchronization and sharing capabilities.", + "link": "https://github.com/username/cloudstorage", + "_id": { + "$oid": "666cbc4a40af7b375e353080" + } + } + ], + "personalBio": "Advocate for diversity and inclusion in the tech industry, fostering a welcoming and supportive workplace culture.", + "testimonials": [ + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e353081" + } + }, + { + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "_id": { + "$oid": "666cbc4a40af7b375e353082" + } + } + ], + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Tech Elevator", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353075" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ea3" + }, + "firstName": "Harmonie", + "lastName": "Karpinski", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "LA 22", + "graduationYear": 2024, + "email": "hkarpinskim@g.co", + "linkedInProfile": "https://www.linkedin.com/in/Harmonie-Karpinski-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": [ + "Data Visualization", + "AWS", + "Code Review", + "Algorithm Design", + "Continuous Deployment", + "Laravel", + "Google Cloud Platform", + "Technical Writing", + "User Interface (UI) Design", + "Concurrency", + "Communication Skills", + "Version Control", + "Java", + "Cybersecurity", + "Robotic Process Automation", + "Performance Optimization", + "Flask" + ], + "specializations": [ + "Python", + "Parallel Computing", + "API Integration", + "Node.js", + "Pair Programming", + "AWS", + "ASP.NET" + ], + "careerInformation": { + "currentPosition": { "title": "Software Architect", "company": "Snowflake" }, + "pastPositions": [ + { + "title": "DevOps Engineer", + "company": "Red Hat", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2024-12-01T11:54:45.389Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353084" + } + }, + { + "title": "Frontend Developer", + "company": "NVIDIA", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-08-28T14:52:31.049Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353085" + } + }, + { + "title": "Technical Lead", + "company": "Shopify", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-10-28T03:42:49.926Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353086" + } + } + ] + }, + "education": [ + { + "institution": "University of Delaware", + "degree": "Doctor of Dental Surgery (DDS)", + "fieldOfStudy": "Biochemistry", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-01-02T15:47:07.267Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353087" + } + } + ], + "projects": [ + { + "name": "VirtualAssistant", + "description": "Virtual assistant software for voice command-based tasks and personal assistance.", + "link": "https://github.com/username/virtualassistant", + "_id": { + "$oid": "666cbc4a40af7b375e353088" + } + }, + { + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", + "_id": { + "$oid": "666cbc4a40af7b375e353089" + } + }, + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "666cbc4a40af7b375e35308a" + } + } + ], + "personalBio": "Dedicated to upholding best practices in software engineering, including testing, code reviews, and version control.", + "testimonials": [ + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e35308b" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e35308c" + } + }, + { + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e35308d" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e35308e" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "_id": { + "$oid": "666cbc4a40af7b375e35308f" + } + } + ], + "socialMediaLinks": { "twitter": "https://x.com/Harmonie-Karpinski-fake", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Fullstack Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353083" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ea4" + }, + "firstName": "Marielle", + "lastName": "Crocket", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "CTRI 96", + "graduationYear": 2024, + "email": "mcrocketn@craigslist.org", + "linkedInProfile": "https://www.linkedin.com/in/Marielle-Crocket-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": [ + "Software Architecture", + "Data Science", + "IoT (Internet of Things)", + "System Design", + "Continuous Deployment" + ], + "specializations": [ + "AWS", + "Communication Skills", + "Laravel", + "Django", + "API Development", + "PaaS (Platform as a Service)", + "Integration Testing", + "Blockchain", + "System Design", + "IoT (Internet of Things)", + "Quantum Computing", + "React", + "Code Review", + "Software Architecture", + "API Integration", + "Mobile Development", + "Design Patterns", + "Android Development" + ], + "careerInformation": { + "currentPosition": { "title": "Senior Software Engineer", "company": "Adobe" }, + "pastPositions": [ + { + "title": "Software Engineer", + "company": "Pinterest", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-04-11T06:24:48.693Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353091" + } + }, + { + "title": "Junior Software Engineer", + "company": "Apple", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-12-08T18:36:20.412Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353092" + } + }, + { + "title": "Backend Developer", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-11-07T14:36:58.409Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353093" + } + }, + { + "title": "QA Engineer", + "company": "Datadog", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-07-18T20:39:04.300Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353094" + } + }, + { + "title": "Data Engineer", + "company": "Red Hat", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-12-02T07:33:36.560Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353095" + } + } + ] + }, + "education": [ + { + "institution": "Ohio State University", + "degree": "Doctor of Business Administration (DBA)", + "fieldOfStudy": "History", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2025-07-18T03:27:48.998Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353096" + } + } + ], + "projects": [ + { + "name": "TourismApp", + "description": "Mobile application for tourists providing travel guides and local recommendations.", + "link": "https://github.com/username/tourismapp", + "_id": { + "$oid": "666cbc4a40af7b375e353097" + } + }, + { + "name": "RoboTrader", + "description": "Algorithmic trading platform for automated stock market analysis and trading.", + "link": "https://github.com/username/robotrader", + "_id": { + "$oid": "666cbc4a40af7b375e353098" + } + }, + { + "name": "HealthLink", + "description": "Telemedicine platform connecting patients with healthcare providers remotely.", + "link": "https://github.com/username/healthlink", + "_id": { + "$oid": "666cbc4a40af7b375e353099" + } + }, + { + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", + "_id": { + "$oid": "666cbc4a40af7b375e35309a" + } + }, + { + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", + "_id": { + "$oid": "666cbc4a40af7b375e35309b" + } + } + ], + "personalBio": "Experienced in deploying and maintaining applications on cloud platforms like AWS and Azure.", + "testimonials": [ + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e35309c" + } + }, + { + "from": "Olivia White", + "relation": "Tech Lead at Cloud Innovations", + "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "_id": { + "$oid": "666cbc4a40af7b375e35309d" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Marielle-Crocket-fake-blog.com", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Thinkful", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353090" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ea5" + }, + "firstName": "Ulrick", + "lastName": "Blasing", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "CTRI 11", + "graduationYear": 2024, + "email": "ublasingo@yahoo.com", + "linkedInProfile": "https://www.linkedin.com/in/Ulrick-Blasing-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": ["Problem-Solving"], + "specializations": ["TDD (Test-Driven Development)"], + "careerInformation": { + "currentPosition": { "title": "Engineering Manager", "company": "Oracle" }, + "pastPositions": [ + { + "title": "Software Engineer", + "company": "HubSpot", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-04-02T17:36:49.462Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35309f" + } + }, + { + "title": "Embedded Systems Engineer", + "company": "Twilio", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2026-09-01T19:29:59.165Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530a0" + } + }, + { + "title": "Lead Software Engineer", + "company": "Zoom", + "startDate": { + "$date": "2024-06-14T21:55:22.546Z" + }, + "endDate": { + "$date": "2027-05-17T18:37:40.864Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530a1" + } + }, + { + "title": "Cloud Engineer", + "company": "Google", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-03-11T22:21:54.248Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530a2" + } + } + ] + }, + "education": [ + { + "institution": "McGill University", + "degree": "Bachelor of Technology (BTech)", + "fieldOfStudy": "Public Health", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-01-24T03:28:14.883Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530a3" + } + }, + { + "institution": "Emory University", + "degree": "Professional Degree", + "fieldOfStudy": "Computer Science", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-10-16T20:49:38.689Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530a4" + } + } + ], + "projects": [ + { + "name": "GenomeQuest", + "description": "Genomic data analysis tool for researchers and bioinformaticians.", + "link": "https://github.com/username/genomequest", + "_id": { + "$oid": "666cbc4a40af7b375e3530a5" + } + }, + { + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", + "_id": { + "$oid": "666cbc4a40af7b375e3530a6" + } + }, + { + "name": "SmartHomeHub", + "description": "Centralized home automation system integrating IoT devices for smart living.", + "link": "https://github.com/username/smarthomehub", + "_id": { + "$oid": "666cbc4a40af7b375e3530a7" + } + }, + { + "name": "VoiceAssistant", + "description": "Voice-controlled personal assistant using natural language processing.", + "link": "https://github.com/username/voiceassistant", + "_id": { + "$oid": "666cbc4a40af7b375e3530a8" + } + } + ], + "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", + "testimonials": [ + { + "from": "Olivia White", + "relation": "Tech Lead at Cloud Innovations", + "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "_id": { + "$oid": "666cbc4a40af7b375e3530a9" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "666cbc4a40af7b375e3530aa" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e3530ab" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Ulrick-Blasing-fake", + "blog": "https://www.Ulrick-Blasing-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": false, + "bootcampExperience": "CareerFoundry", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e35309e" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ea6" + }, + "firstName": "Cheri", + "lastName": "Danielsson", + "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "cohort": "LA 10", + "graduationYear": 2024, + "email": "cdanielssonp@example.com", + "linkedInProfile": "https://www.linkedin.com/in/Cheri-Danielsson-fake", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "skills": [ + "Robotic Process Automation", + "Continuous Deployment", + "Laravel", + "TDD (Test-Driven Development)" + ], + "specializations": [ + "ASP.NET", + "Quantum Computing", + "Functional Programming", + "DevOps", + "Blockchain", + "Azure", + "React", + "Robotic Process Automation", + "NoSQL", + "SQL", + "Version Control", + "Data Visualization", + "CI/CD", + "Code Review", + "Machine Learning" + ], + "careerInformation": { + "currentPosition": { "title": "Web Developer", "company": "Intel" }, + "pastPositions": [ + { + "title": "Data Engineer", + "company": "Activision Blizzard", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-01-26T13:19:13.417Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530ad" + } + }, + { + "title": "Backend Developer", + "company": "HubSpot", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-06-30T18:49:21.079Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530ae" + } + }, + { + "title": "Security Engineer", + "company": "Workday", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-01-05T04:16:42.453Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530af" + } + } + ] + }, + "education": [ + { + "institution": "ETH Zurich - Swiss Federal Institute of Technology", + "degree": "Professional Degree", + "fieldOfStudy": "Accounting", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-05-30T18:23:34.071Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530b0" + } + }, + { + "institution": "University of Missouri", + "degree": "Master of Science (MS)", + "fieldOfStudy": "Pharmacy", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-10-11T11:12:36.036Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530b1" + } + }, + { + "institution": "Duke University", + "degree": "Doctoral Degree", + "fieldOfStudy": "Music", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-02-23T18:57:06.400Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530b2" + } + }, + { + "institution": "Clemson University", + "degree": "Master of Arts (MA)", + "fieldOfStudy": "Graphic Design", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-07-23T01:33:25.690Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530b3" + } + } + ], + "projects": [ + { + "name": "NetPlanner", + "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", + "link": "https://github.com/username/netplanner", + "_id": { + "$oid": "666cbc4a40af7b375e3530b4" + } + }, + { + "name": "EduTech", + "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", + "link": "https://github.com/username/edutech", + "_id": { + "$oid": "666cbc4a40af7b375e3530b5" + } + }, + { + "name": "RoboTrader", + "description": "Algorithmic trading platform for automated stock market analysis and trading.", + "link": "https://github.com/username/robotrader", + "_id": { + "$oid": "666cbc4a40af7b375e3530b6" + } + }, + { + "name": "VirtualAssistant", + "description": "Virtual assistant software for voice command-based tasks and personal assistance.", + "link": "https://github.com/username/virtualassistant", + "_id": { + "$oid": "666cbc4a40af7b375e3530b7" + } + } + ], + "personalBio": "Devoted to fostering a collaborative team environment and mentoring junior developers.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Cheri-Danielsson-fake", + "blog": "https://www.Cheri-Danielsson-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Kenzie Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3530ac" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ea7" + }, + "firstName": "Durand", + "lastName": "Joron", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "FTRI 0", + "graduationYear": 2024, + "email": "djoronq@google.cn", + "linkedInProfile": "https://www.linkedin.com/in/Durand-Joron-fake", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "skills": [ + "Scrum", + "Collaboration", + "Kubernetes", + "C++", + "CI/CD", + "Parallel Computing", + "PaaS (Platform as a Service)" + ], + "specializations": [ + "Flask", + "Agile Development", + "Database Design", + "System Design", + "Concurrency" + ], + "careerInformation": { + "currentPosition": { "title": "Frontend Developer", "company": "Datadog" }, + "pastPositions": [ + { + "title": "Automation Engineer", + "company": "Slack", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-01-10T20:38:24.278Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530b9" + } + }, + { + "title": "Software Developer", + "company": "DocuSign", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-06-05T02:55:38.558Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530ba" + } + } + ] + }, + "education": [ + { + "institution": "California Institute of Technology (Caltech)", + "degree": "Certificate Program", + "fieldOfStudy": "Electrical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-02-09T06:34:03.312Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530bb" + } + } + ], + "projects": [], + "personalBio": "Experienced in Agile methodologies, with a track record of delivering projects on time and within budget.", + "testimonials": [], + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "App Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3530b8" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ea8" + }, + "firstName": "Kristien", + "lastName": "Burgett", + "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "cohort": "WCRI 8", + "graduationYear": 2024, + "email": "kburgettr@kickstarter.com", + "linkedInProfile": "https://www.linkedin.com/in/Kristien-Burgett-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": [ + "Data Warehousing", + "React", + "User Interface (UI) Design", + "Flask", + "WebSockets", + "Java", + "IoT (Internet of Things)", + "Technical Writing", + "Node.js" + ], + "specializations": [ + "Robotic Process Automation", + "ASP.NET", + "FaaS (Function as a Service)", + "Leadership", + "Docker", + "WebSockets", + "Laravel", + "Automated Testing", + "Technical Writing", + "Database Design", + "CI/CD" + ], + "careerInformation": { + "currentPosition": { "title": "Engineering Manager", "company": "Oracle" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "University of Miami", + "degree": "Postdoctoral Research", + "fieldOfStudy": "Political Science", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-03-09T13:12:07.020Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530bd" + } + }, + { + "institution": "Carnegie Mellon University", + "degree": "Doctor of Philosophy (PhD)", + "fieldOfStudy": "Accounting", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-06-14T22:38:04.222Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530be" + } + } + ], + "projects": [ + { + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", + "_id": { + "$oid": "666cbc4a40af7b375e3530bf" + } + }, + { + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", + "_id": { + "$oid": "666cbc4a40af7b375e3530c0" + } + } + ], + "personalBio": "Passionate about leveraging data-driven insights to optimize software performance and user engagement.", + "testimonials": [ + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e3530c1" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "666cbc4a40af7b375e3530c2" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "_id": { + "$oid": "666cbc4a40af7b375e3530c3" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e3530c4" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Kristien-Burgett-fake", + "blog": "https://www.Kristien-Burgett-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Makers Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3530bc" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ea9" + }, + "firstName": "Kaia", + "lastName": "Fassmann", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "ECRI 70", + "graduationYear": 2024, + "email": "kfassmanns@ted.com", + "linkedInProfile": "https://www.linkedin.com/in/Kaia-Fassmann-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": ["JavaScript", "Robotic Process Automation", "Algorithm Design"], + "specializations": [ + "Project Management", + "Critical Thinking", + "Microservices", + "Software Architecture", + "FaaS (Function as a Service)", + "Mobile Development", + "Event-Driven Architecture" + ], + "careerInformation": { + "currentPosition": { "title": "Web Developer", "company": "ServiceNow" }, + "pastPositions": [ + { + "title": "Automation Engineer", + "company": "Dropbox", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-06-21T12:07:28.970Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530c6" + } + }, + { + "title": "Backend Developer", + "company": "Workday", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-10-30T15:08:12.328Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530c7" + } + }, + { + "title": "Technical Lead", + "company": "Palantir", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-04-09T08:28:41.034Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530c8" + } + }, + { + "title": "Product Manager", + "company": "Dropbox", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-07-14T22:22:04.826Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530c9" + } + } + ] + }, + "education": [ + { + "institution": "Duke University", + "degree": "Master of Public Administration (MPA)", + "fieldOfStudy": "Computer Science", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-06-04T08:02:26.504Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530ca" + } + }, + { + "institution": "Brown University", + "degree": "Bachelor's Degree", + "fieldOfStudy": "Statistics", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-03-30T23:33:59.957Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530cb" + } + }, + { + "institution": "University of Vermont", + "degree": "Bachelor of Fine Arts (BFA)", + "fieldOfStudy": "Data Science", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-07-30T12:59:44.765Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530cc" + } + } + ], + "projects": [ + { + "name": "RecruitmentAI", + "description": "AI-powered recruitment platform for matching candidates with job opportunities.", + "link": "https://github.com/username/recruitmentai", + "_id": { + "$oid": "666cbc4a40af7b375e3530cd" + } + }, + { + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", + "_id": { + "$oid": "666cbc4a40af7b375e3530ce" + } + } + ], + "personalBio": "Driven by a passion for problem-solving and a commitment to continuous professional development.", + "testimonials": [ + { + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e3530cf" + } + }, + { + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e3530d0" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "_id": { + "$oid": "666cbc4a40af7b375e3530d1" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "666cbc4a40af7b375e3530d2" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Kaia-Fassmann-fake", + "blog": "https://www.Kaia-Fassmann-fake-blog.com", + "other": ["https://www.instagram.com/Kaia-Fassmann-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "The Tech Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3530c5" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eaa" + }, + "firstName": "Lockwood", + "lastName": "Moxham", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "FTRI 71", + "graduationYear": 2024, + "email": "lmoxhamt@wikia.com", + "linkedInProfile": "https://www.linkedin.com/in/Lockwood-Moxham-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": [ + "Critical Thinking", + "DevOps", + "Spring Boot", + "System Design", + "FaaS (Function as a Service)", + "Blockchain", + "Concurrency", + "Quantum Computing", + "Reactive Programming", + "Time Management", + "Machine Learning", + "Database Design", + "C++", + "C#", + "Big Data", + "Algorithm Design" + ], + "specializations": [ + "Docker", + "Pair Programming", + "IoT (Internet of Things)", + "Performance Optimization", + "Kubernetes", + "Quantum Computing", + "Continuous Deployment" + ], + "careerInformation": { + "currentPosition": { "title": "Test Engineer", "company": "ServiceNow" }, + "pastPositions": [ + { + "title": "Test Engineer", + "company": "Datadog", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-08-16T18:19:53.007Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530d4" + } + }, + { + "title": "Android Developer", + "company": "PayPal", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-11-14T21:09:29.689Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530d5" + } + } + ] + }, + "education": [ + { + "institution": "University of Florida", + "degree": "Certificate Program", + "fieldOfStudy": "Education", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-11-25T22:30:11.069Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530d6" + } + }, + { + "institution": "Emory University", + "degree": "Master of Fine Arts (MFA)", + "fieldOfStudy": "Biology", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-12-24T22:13:14.630Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530d7" + } + }, + { + "institution": "Syracuse University", + "degree": "Doctor of Education (EdD)", + "fieldOfStudy": "Finance", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-02-05T21:58:34.805Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530d8" + } + }, + { + "institution": "University of Chicago", + "degree": "Doctor of Medicine (MD)", + "fieldOfStudy": "Data Science", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-12-26T08:20:52.465Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530d9" + } + } + ], + "projects": [ + { + "name": "SocialConnect", + "description": "Social media integration platform for managing multiple social accounts.", + "link": "https://github.com/username/socialconnect", + "_id": { + "$oid": "666cbc4a40af7b375e3530da" + } + }, + { + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", + "_id": { + "$oid": "666cbc4a40af7b375e3530db" + } + }, + { + "name": "SmartCity", + "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", + "link": "https://github.com/username/smartcity", + "_id": { + "$oid": "666cbc4a40af7b375e3530dc" + } + }, + { + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", + "_id": { + "$oid": "666cbc4a40af7b375e3530dd" + } + } + ], + "personalBio": "Committed to writing clean, maintainable code that meets rigorous performance standards.", + "testimonials": [], + "socialMediaLinks": { "blog": "https://www.Lockwood-Moxham-fake-blog.com", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Thinkful", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3530d3" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eab" + }, + "firstName": "Tessie", + "lastName": "Sugden", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "cohort": "WCRI 17", + "graduationYear": 2024, + "email": "tsugdenu@npr.org", + "linkedInProfile": "https://www.linkedin.com/in/Tessie-Sugden-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "skills": ["Microservices"], + "specializations": [ + "Google Cloud Platform", + "Project Management", + "CSS", + "Android Development", + "Software Architecture", + "Node.js", + "Collaboration", + "PaaS (Platform as a Service)", + "TDD (Test-Driven Development)", + "Agile Development", + "Leadership", + "Database Design", + "HTML", + "BDD (Behavior-Driven Development)" + ], + "careerInformation": { + "currentPosition": { "title": "Principal Software Engineer", "company": "Uber" }, + "pastPositions": [ + { + "title": "Junior Software Engineer", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-01-21T23:10:44.583Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530df" + } + }, + { + "title": "Engineering Manager", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-12-28T05:51:30.604Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530e0" + } + }, + { + "title": "QA Engineer", + "company": "Airbnb", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-03-13T22:21:55.633Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530e1" + } + }, + { + "title": "Software Developer", + "company": "Twitter", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-11-17T06:17:09.663Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530e2" + } + } + ] + }, + "education": [ + { + "institution": "Rutgers University", + "degree": "Technical School Certification", + "fieldOfStudy": "Psychology", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-02-03T12:33:41.512Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530e3" + } + }, + { + "institution": "Fudan University", + "degree": "Doctor of Medicine (MD)", + "fieldOfStudy": "Information Technology", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-03-11T18:34:49.041Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530e4" + } + }, + { + "institution": "University of Oklahoma", + "degree": "Doctor of Dental Medicine (DMD)", + "fieldOfStudy": "Computer Science", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-12-16T13:16:25.316Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530e5" + } + }, + { + "institution": "Shanghai Jiao Tong University", + "degree": "Bachelor of Engineering (BE)", + "fieldOfStudy": "Urban Planning", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-02-09T20:58:37.194Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530e6" + } + } + ], + "projects": [ + { + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", + "_id": { + "$oid": "666cbc4a40af7b375e3530e7" + } + }, + { + "name": "CodeBot", + "description": "Automated code generation tool using AI for faster development cycles.", + "link": "https://github.com/username/codebot", + "_id": { + "$oid": "666cbc4a40af7b375e3530e8" + } + }, + { + "name": "SmartGrid", + "description": "Smart grid technology for efficient energy distribution and consumption.", + "link": "https://github.com/username/smartgrid", + "_id": { + "$oid": "666cbc4a40af7b375e3530e9" + } + }, + { + "name": "ARNavigation", + "description": "Augmented reality navigation app for real-time directions and location-based information.", + "link": "https://github.com/username/arnavigation", + "_id": { + "$oid": "666cbc4a40af7b375e3530ea" + } + } + ], + "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Tessie-Sugden-fake", + "blog": "https://www.Tessie-Sugden-fake-blog.com", + "other": ["https://www.instagram.com/Tessie-Sugden-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Codesmith", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3530de" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eac" + }, + "firstName": "Rea", + "lastName": "Jeremiah", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "WCRI 79", + "graduationYear": 2024, + "email": "rjeremiahv@wikispaces.com", + "linkedInProfile": "https://www.linkedin.com/in/Rea-Jeremiah-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": [ + "ETL (Extract, Transform, Load)", + "API Development", + "Data Warehousing", + "Azure", + "User Interface (UI) Design", + "Machine Learning", + "WebSockets", + "Big Data", + "Spring Boot", + "Docker", + "Java", + "Edge Computing", + "API Integration" + ], + "specializations": [ + "Pair Programming", + "Edge Computing", + "ASP.NET", + "C++", + "CSS", + "WebSockets", + "PaaS (Platform as a Service)", + "React", + "Object-Oriented Programming", + "Refactoring", + "Parallel Computing", + "Laravel", + "User Experience (UX) Design", + "Project Management" + ], + "careerInformation": { + "currentPosition": { "title": "Engineering Manager", "company": "Spotify" }, + "pastPositions": [ + { + "title": "iOS Developer", + "company": "Twilio", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-05-04T12:41:56.632Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530ec" + } + }, + { + "title": "DevOps Engineer", + "company": "Intel", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-06-22T18:09:02.461Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530ed" + } + }, + { + "title": "Android Developer", + "company": "Intel", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-01-21T19:44:13.947Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530ee" + } + } + ] + }, + "education": [ + { + "institution": "Boston University", + "degree": "Executive Education", + "fieldOfStudy": "Nursing", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-01-26T00:26:47.716Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530ef" + } + } + ], + "projects": [ + { + "name": "SmartWatch", + "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", + "link": "https://github.com/username/smartwatch", + "_id": { + "$oid": "666cbc4a40af7b375e3530f0" + } + }, + { + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", + "_id": { + "$oid": "666cbc4a40af7b375e3530f1" + } + }, + { + "name": "SmartLearning", + "description": "AI-driven personalized learning platform with adaptive learning algorithms.", + "link": "https://github.com/username/smartlearning", + "_id": { + "$oid": "666cbc4a40af7b375e3530f2" + } + } + ], + "personalBio": "Adaptable problem solver who thrives in dynamic, fast-paced environments.", + "testimonials": [ + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e3530f3" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e3530f4" + } + }, + { + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "_id": { + "$oid": "666cbc4a40af7b375e3530f5" + } + }, + { + "from": "Ethan Taylor", + "relation": "Co-founder at StartupX", + "text": "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", + "_id": { + "$oid": "666cbc4a40af7b375e3530f6" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "666cbc4a40af7b375e3530f7" + } + } + ], + "socialMediaLinks": { "twitter": "https://x.com/Rea-Jeremiah-fake", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Lambda School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3530eb" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ead" + }, + "firstName": "Cassie", + "lastName": "Meadows", + "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "cohort": "LA 95", + "graduationYear": 2024, + "email": "cmeadowsw@smugmug.com", + "linkedInProfile": "https://www.linkedin.com/in/Cassie-Meadows-fake", + "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", + "skills": [ + "Database Design", + "Kubernetes", + "SaaS (Software as a Service)", + "Object-Oriented Programming", + "Machine Learning", + "ETL (Extract, Transform, Load)", + "Cloud Computing", + "AWS", + "User Interface (UI) Design", + "Concurrency", + "Mobile Development", + "Graph Databases", + "Code Review", + "Containerization", + "JavaScript", + "CSS", + "Edge Computing" + ], + "specializations": [], + "careerInformation": { + "currentPosition": { "title": "AI Engineer", "company": "Qualcomm" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "University of Queensland", + "degree": "Master's Degree", + "fieldOfStudy": "Biomedical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-12-16T17:07:26.297Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530f9" + } + }, + { + "institution": "Pennsylvania State University", + "degree": "Doctor of Business Administration (DBA)", + "fieldOfStudy": "Urban Planning", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-03-07T06:08:19.433Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530fa" + } + }, + { + "institution": "University of Washington", + "degree": "Doctor of Dental Surgery (DDS)", + "fieldOfStudy": "Film Studies", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-06-07T05:08:56.282Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3530fb" + } + } + ], + "projects": [ + { + "name": "CryptoTrack", + "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", + "link": "https://github.com/username/cryptotrack", + "_id": { + "$oid": "666cbc4a40af7b375e3530fc" + } + }, + { + "name": "NetPlanner", + "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", + "link": "https://github.com/username/netplanner", + "_id": { + "$oid": "666cbc4a40af7b375e3530fd" + } + }, + { + "name": "SmartCity", + "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", + "link": "https://github.com/username/smartcity", + "_id": { + "$oid": "666cbc4a40af7b375e3530fe" + } + }, + { + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", + "_id": { + "$oid": "666cbc4a40af7b375e3530ff" + } + }, + { + "name": "CodeBot", + "description": "Automated code generation tool using AI for faster development cycles.", + "link": "https://github.com/username/codebot", + "_id": { + "$oid": "666cbc4a40af7b375e353100" + } + } + ], + "personalBio": "Skilled in working with cross-functional teams to deliver innovative software solutions that exceed expectations.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Cassie-Meadows-fake", + "blog": "https://www.Cassie-Meadows-fake-blog.com", + "other": ["https://www.instagram.com/Cassie-Meadows-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Nucamp", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3530f8" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eae" + }, + "firstName": "Kelci", + "lastName": "Bastide", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "cohort": "WCRI 22", + "graduationYear": 2024, + "email": "kbastidex@latimes.com", + "linkedInProfile": "https://www.linkedin.com/in/Kelci-Bastide-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [ + "Android Development", + "Natural Language Processing", + "Microservices", + "Google Cloud Platform", + "API Development", + "Code Review", + "Algorithm Design", + "API Integration", + "Kubernetes", + "ASP.NET", + "Parallel Computing", + "Deep Learning", + "Infrastructure as Code", + "User Interface (UI) Design", + "React", + "TDD (Test-Driven Development)", + "Leadership" + ], + "specializations": [ + "Legacy Code Management", + "Software Architecture", + "Scrum", + "ASP.NET", + "Data Warehousing", + "User Experience (UX) Design", + "SaaS (Software as a Service)", + "Google Cloud Platform", + "Critical Thinking" + ], + "careerInformation": { + "currentPosition": { "title": "Technical Program Manager", "company": "Activision Blizzard" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "University of Southern California", + "degree": "Professional Degree", + "fieldOfStudy": "Data Science", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-11-24T11:03:34.991Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353102" + } + } + ], + "projects": [ + { + "name": "CryptoWallet", + "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", + "link": "https://github.com/username/cryptowallet", + "_id": { + "$oid": "666cbc4a40af7b375e353103" + } + }, + { + "name": "HealthMonitor", + "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", + "link": "https://github.com/username/healthmonitor", + "_id": { + "$oid": "666cbc4a40af7b375e353104" + } + }, + { + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", + "_id": { + "$oid": "666cbc4a40af7b375e353105" + } + } + ], + "personalBio": "Adept at optimizing SQL and NoSQL databases for performance and scalability.", + "testimonials": [], + "socialMediaLinks": { + "blog": "https://www.Kelci-Bastide-fake-blog.com", + "other": ["https://www.instagram.com/Kelci-Bastide-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "The Tech Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353101" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eaf" + }, + "firstName": "Thurston", + "lastName": "Speechly", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "LA 82", + "graduationYear": 2024, + "email": "tspeechlyy@plala.or.jp", + "linkedInProfile": "https://www.linkedin.com/in/Thurston-Speechly-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": [ + "User Experience (UX) Design", + "Node.js", + "Time Management", + "Angular", + "Spring Boot", + "RESTful APIs", + "AWS" + ], + "specializations": [ + "Design Patterns", + "Data Science", + "Graph Databases", + "AR/VR (Augmented/Virtual Reality)", + "Project Management", + "Concurrency", + "Java", + "Docker", + "IoT (Internet of Things)", + "BDD (Behavior-Driven Development)" + ], + "careerInformation": { + "currentPosition": { "title": "AI Engineer", "company": "Coinbase" }, + "pastPositions": [ + { + "title": "Data Engineer", + "company": "Pinterest", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-08-01T05:40:15.627Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353107" + } + }, + { + "title": "Cloud Engineer", + "company": "IBM", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-01-17T04:28:43.896Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353108" + } + } + ] + }, + "education": [ + { + "institution": "University of Sydney", + "degree": "Master of Arts (MA)", + "fieldOfStudy": "Music", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-10-21T09:42:05.504Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353109" + } + }, + { + "institution": "Georgia Institute of Technology", + "degree": "Master of Public Administration (MPA)", + "fieldOfStudy": "Statistics", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-06-23T01:20:06.499Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35310a" + } + }, + { + "institution": "University of Massachusetts Amherst", + "degree": "Bachelor of Technology (BTech)", + "fieldOfStudy": "Theater", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-09-23T23:42:40.320Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35310b" + } + } + ], + "projects": [ + { + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", + "_id": { + "$oid": "666cbc4a40af7b375e35310c" + } + }, + { + "name": "AugmentWorks", + "description": "Augmented reality application for enhancing workplace productivity and training.", + "link": "https://github.com/username/augmentworks", + "_id": { + "$oid": "666cbc4a40af7b375e35310d" + } + }, + { + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", + "_id": { + "$oid": "666cbc4a40af7b375e35310e" + } + }, + { + "name": "SmartGrid", + "description": "Smart grid technology for efficient energy distribution and consumption.", + "link": "https://github.com/username/smartgrid", + "_id": { + "$oid": "666cbc4a40af7b375e35310f" + } + }, + { + "name": "SmartInventory", + "description": "Inventory management system with RFID and IoT integration for tracking assets.", + "link": "https://github.com/username/smartinventory", + "_id": { + "$oid": "666cbc4a40af7b375e353110" + } + } + ], + "personalBio": "Innovative thinker with a track record of proposing and implementing creative solutions to technical challenges.", + "testimonials": [ + { + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e353111" + } + }, + { + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "_id": { + "$oid": "666cbc4a40af7b375e353112" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "666cbc4a40af7b375e353113" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Thurston-Speechly-fake-blog.com", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Nucamp", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353106" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eb0" + }, + "firstName": "Silas", + "lastName": "Reyes", + "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "cohort": "NYC 31", + "graduationYear": 2024, + "email": "sreyesz@google.co.jp", + "linkedInProfile": "https://www.linkedin.com/in/Silas-Reyes-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": ["Object-Oriented Programming"], + "specializations": [ + "Parallel Computing", + "Database Design", + "Algorithm Design", + "Mobile Development", + "Android Development", + "C++", + "Continuous Deployment", + "Integration Testing" + ], + "careerInformation": { + "currentPosition": { "title": "Security Engineer", "company": "VMware" }, + "pastPositions": [ + { + "title": "Security Engineer", + "company": "Lyft", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-11-09T13:33:55.086Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353115" + } + }, + { + "title": "Embedded Systems Engineer", + "company": "Stripe", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-02-18T05:54:31.383Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353116" + } + }, + { + "title": "AI Engineer", + "company": "Qualcomm", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-09-21T21:13:35.235Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353117" + } + }, + { + "title": "Technical Program Manager", + "company": "Datadog", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-06-19T13:00:17.722Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353118" + } + }, + { + "title": "Data Scientist", + "company": "DoorDash", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-03-06T23:23:50.632Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353119" + } + } + ] + }, + "education": [ + { + "institution": "University of Queensland", + "degree": "Executive Education", + "fieldOfStudy": "Public Health", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-11-14T23:00:20.752Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35311a" + } + }, + { + "institution": "University of Maryland, College Park", + "degree": "Master's Degree", + "fieldOfStudy": "Law", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-05-02T17:43:18.413Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35311b" + } + }, + { + "institution": "University of Toronto", + "degree": "High School Diploma", + "fieldOfStudy": "Pharmacy", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-02-05T15:59:04.353Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35311c" + } + } + ], + "projects": [], + "personalBio": "Detail-oriented developer with a strong foundation in algorithms and data structures.", + "testimonials": [ + { + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e35311d" + } + }, + { + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e35311e" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "_id": { + "$oid": "666cbc4a40af7b375e35311f" + } + }, + { + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "_id": { + "$oid": "666cbc4a40af7b375e353120" + } + }, + { + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e353121" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Silas-Reyes-fake", + "other": ["https://www.instagram.com/Silas-Reyes-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Coding Dojo", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353114" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eb1" + }, + "firstName": "Marley", + "lastName": "Boshard", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "PTRI 94", + "graduationYear": 2024, + "email": "mboshard10@tiny.cc", + "linkedInProfile": "https://www.linkedin.com/in/Marley-Boshard-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "skills": [ + "Graph Theory", + "Deep Learning", + "Ruby", + "Django", + "Functional Programming", + "Quantum Computing", + "NoSQL", + "Vue.js", + "BDD (Behavior-Driven Development)", + "Leadership", + "Node.js", + "IoT (Internet of Things)", + "Big Data", + "C++" + ], + "specializations": [ + "Concurrency", + "Algorithm Design", + "SQL", + "Blockchain", + "TDD (Test-Driven Development)", + "Angular", + "Functional Programming", + "Graph Theory", + "iOS Development", + "DevOps", + "JavaScript" + ], + "careerInformation": { + "currentPosition": { "title": "Web Developer", "company": "Netflix" }, + "pastPositions": [ + { + "title": "Software Architect", + "company": "Asana", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-05-24T19:51:52.265Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353123" + } + }, + { + "title": "Engineering Manager", + "company": "Square", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-10-13T07:34:29.959Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353124" + } + }, + { + "title": "Engineering Manager", + "company": "Okta", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-08-01T03:53:36.684Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353125" + } + }, + { + "title": "iOS Developer", + "company": "Salesforce", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-02-05T05:13:40.462Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353126" + } + }, + { + "title": "iOS Developer", + "company": "Datadog", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-09-21T21:14:50.878Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353127" + } + } + ] + }, + "education": [ + { + "institution": "University of Virginia", + "degree": "Bachelor of Engineering (BE)", + "fieldOfStudy": "Mechanical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-01-23T11:19:52.636Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353128" + } + }, + { + "institution": "New York University (NYU)", + "degree": "Master of Engineering (ME)", + "fieldOfStudy": "Biomedical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-07-18T23:42:27.896Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353129" + } + }, + { + "institution": "Vanderbilt University", + "degree": "Master's Degree", + "fieldOfStudy": "Mathematics", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-05-08T14:25:32.961Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35312a" + } + } + ], + "projects": [ + { + "name": "LearnHub", + "description": "Online learning platform offering courses on various subjects with interactive content.", + "link": "https://github.com/username/learnhub", + "_id": { + "$oid": "666cbc4a40af7b375e35312b" + } + }, + { + "name": "GenomeQuest", + "description": "Genomic data analysis tool for researchers and bioinformaticians.", + "link": "https://github.com/username/genomequest", + "_id": { + "$oid": "666cbc4a40af7b375e35312c" + } + } + ], + "personalBio": "Detail-oriented developer with a strong foundation in algorithms and data structures.", + "testimonials": [], + "socialMediaLinks": { + "blog": "https://www.Marley-Boshard-fake-blog.com", + "other": ["https://www.instagram.com/Marley-Boshard-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "BrainStation", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353122" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eb2" + }, + "firstName": "Eb", + "lastName": "Dargie", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "CTRI 32", + "graduationYear": 2024, + "email": "edargie11@artisteer.com", + "linkedInProfile": "https://www.linkedin.com/in/Eb-Dargie-fake", + "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", + "skills": [ + "GraphQL", + "Legacy Code Management", + "Leadership", + "WebSockets", + "Node.js", + "Robotic Process Automation" + ], + "specializations": [ + "Algorithm Design", + "Laravel", + "React", + "ASP.NET", + "Time Management", + "Cloud Computing", + "Code Review", + "Event-Driven Architecture", + "Integration Testing", + "Microservices", + "CSS", + "Infrastructure as Code", + "Kubernetes", + "Design Patterns", + "WebSockets", + "Data Warehousing", + "Object-Oriented Programming" + ], + "careerInformation": { + "currentPosition": { "title": "Software Engineer", "company": "VMware" }, + "pastPositions": [ + { + "title": "Test Engineer", + "company": "Qualcomm", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-02-22T23:10:03.309Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35312e" + } + }, + { + "title": "Software Engineer", + "company": "Okta", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-01-10T23:42:24.333Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35312f" + } + } + ] + }, + "education": [ + { + "institution": "Yale University", + "degree": "Master of Science (MS)", + "fieldOfStudy": "Chemistry", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-01-22T23:10:20.337Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353130" + } + } + ], + "projects": [ + { + "name": "CloudStorage", + "description": "Cloud storage service with file synchronization and sharing capabilities.", + "link": "https://github.com/username/cloudstorage", + "_id": { + "$oid": "666cbc4a40af7b375e353131" + } + }, + { + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", + "_id": { + "$oid": "666cbc4a40af7b375e353132" + } + }, + { + "name": "SmartInventory", + "description": "Inventory management system with RFID and IoT integration for tracking assets.", + "link": "https://github.com/username/smartinventory", + "_id": { + "$oid": "666cbc4a40af7b375e353133" + } + } + ], + "personalBio": "Focused on delivering user-centric solutions that address real-world needs and challenges.", + "testimonials": [ + { + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e353134" + } + }, + { + "from": "Aiden Walker", + "relation": "CTO at Innovate Solutions", + "text": "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", + "_id": { + "$oid": "666cbc4a40af7b375e353135" + } + } + ], + "socialMediaLinks": { "other": ["https://www.instagram.com/Eb-Dargie-fake"] }, + "availabilityForNetworking": false, + "bootcampExperience": "BrainStation", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e35312d" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eb3" + }, + "firstName": "Porter", + "lastName": "Paladini", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "cohort": "ECRI 97", + "graduationYear": 2024, + "email": "ppaladini12@deliciousdays.com", + "linkedInProfile": "https://www.linkedin.com/in/Porter-Paladini-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "skills": [ + "IoT (Internet of Things)", + "Technical Writing", + "Django", + "Event-Driven Architecture", + "Concurrency", + "Pair Programming", + "Docker", + "CI/CD", + "Machine Learning", + "Natural Language Processing", + "Vue.js", + "Java", + "Software Architecture", + "AWS" + ], + "specializations": [ + "FaaS (Function as a Service)", + "Agile Development", + "API Integration", + "Flask", + "Data Science", + "Infrastructure as Code", + "PaaS (Platform as a Service)", + "Time Management", + "Node.js", + "Performance Optimization", + "AWS", + "Collaboration", + "CI/CD", + "HTML" + ], + "careerInformation": { + "currentPosition": { "title": "Product Manager", "company": "PayPal" }, + "pastPositions": [ + { + "title": "Backend Developer", + "company": "Airbnb", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-03-02T19:09:09.527Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353137" + } + }, + { + "title": "Android Developer", + "company": "Zoom", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-05-07T03:21:08.245Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353138" + } + }, + { + "title": "Android Developer", + "company": "Red Hat", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-01-18T02:48:38.058Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353139" + } + } + ] + }, + "education": [ + { + "institution": "University of South Carolina", + "degree": "Postdoctoral Research", + "fieldOfStudy": "Theater", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-04-07T00:22:55.743Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35313a" + } + } + ], + "projects": [ + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "666cbc4a40af7b375e35313b" + } + }, + { + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", + "_id": { + "$oid": "666cbc4a40af7b375e35313c" + } + }, + { + "name": "GenomeQuest", + "description": "Genomic data analysis tool for researchers and bioinformaticians.", + "link": "https://github.com/username/genomequest", + "_id": { + "$oid": "666cbc4a40af7b375e35313d" + } + }, + { + "name": "EduTech", + "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", + "link": "https://github.com/username/edutech", + "_id": { + "$oid": "666cbc4a40af7b375e35313e" + } + } + ], + "personalBio": "Experienced in building scalable microservices architectures and integrating third-party APIs.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Porter-Paladini-fake", + "other": ["https://www.instagram.com/Porter-Paladini-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Makers Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353136" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eb4" + }, + "firstName": "Dian", + "lastName": "Dackombe", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "LA 32", + "graduationYear": 2024, + "email": "ddackombe13@ihg.com", + "linkedInProfile": "https://www.linkedin.com/in/Dian-Dackombe-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": [ + "Software Architecture", + "RESTful APIs", + "FaaS (Function as a Service)", + "Quantum Computing", + "Performance Optimization", + "Functional Programming", + "Laravel", + "Ruby", + "Design Patterns", + "Automated Testing", + "WebSockets", + "Leadership", + "Infrastructure as Code", + "System Design", + "Event-Driven Architecture" + ], + "specializations": ["Unit Testing", "Graph Databases", "Angular"], + "careerInformation": { + "currentPosition": { "title": "Engineering Manager", "company": "Pinterest" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "Ohio State University", + "degree": "Associate Degree", + "fieldOfStudy": "Biochemistry", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-08-01T21:14:26.484Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353140" + } + }, + { + "institution": "University College London (UCL)", + "degree": "Master of Social Work (MSW)", + "fieldOfStudy": "Education", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-09-19T23:03:44.448Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353141" + } + }, + { + "institution": "Rice University", + "degree": "Doctor of Dental Medicine (DMD)", + "fieldOfStudy": "Biochemistry", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-07-28T06:10:32.764Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353142" + } + }, + { + "institution": "University of California, San Diego (UCSD)", + "degree": "Master of Fine Arts (MFA)", + "fieldOfStudy": "Anthropology", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-02-25T17:44:12.834Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353143" + } + } + ], + "projects": [ + { + "name": "CloudGuard", + "description": "Advanced cloud security suite ensuring data protection and compliance.", + "link": "https://github.com/username/cloudguard", + "_id": { + "$oid": "666cbc4a40af7b375e353144" + } + }, + { + "name": "CryptoTrack", + "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", + "link": "https://github.com/username/cryptotrack", + "_id": { + "$oid": "666cbc4a40af7b375e353145" + } + }, + { + "name": "SmartHomeHub", + "description": "Centralized home automation system integrating IoT devices for smart living.", + "link": "https://github.com/username/smarthomehub", + "_id": { + "$oid": "666cbc4a40af7b375e353146" + } + } + ], + "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", + "testimonials": [ + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e353147" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e353148" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Dian-Dackombe-fake", + "blog": "https://www.Dian-Dackombe-fake-blog.com", + "other": ["https://www.instagram.com/Dian-Dackombe-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "General Assembly", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e35313f" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eb5" + }, + "firstName": "Freedman", + "lastName": "Scrafton", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "FTRI 65", + "graduationYear": 2024, + "email": "fscrafton14@posterous.com", + "linkedInProfile": "https://www.linkedin.com/in/Freedman-Scrafton-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "skills": [ + "Flask", + "Google Cloud Platform", + "Edge Computing", + "Pair Programming", + "Cybersecurity", + "AR/VR (Augmented/Virtual Reality)", + "Blockchain", + "Kubernetes", + "Angular", + "Legacy Code Management", + "System Design", + "Natural Language Processing", + "CSS" + ], + "specializations": [ + "AWS", + "Mobile Development", + "Django", + "Ruby", + "React", + "Continuous Deployment", + "Microservices", + "Infrastructure as Code", + "Quantum Computing", + "FaaS (Function as a Service)", + "AR/VR (Augmented/Virtual Reality)", + "Docker", + "User Experience (UX) Design" + ], + "careerInformation": { + "currentPosition": { "title": "Technical Program Manager", "company": "Amazon" }, + "pastPositions": [ + { + "title": "Web Developer", + "company": "VMware", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-02-09T15:24:50.598Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35314a" + } + }, + { + "title": "Technical Lead", + "company": "Intel", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-07-28T19:52:30.032Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35314b" + } + }, + { + "title": "Automation Engineer", + "company": "Datadog", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-08-31T06:48:13.947Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35314c" + } + }, + { + "title": "Junior Software Engineer", + "company": "Asana", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-10-05T03:14:56.711Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35314d" + } + }, + { + "title": "Technical Program Manager", + "company": "Shopify", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-01-28T17:34:22.410Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35314e" + } + } + ] + }, + "education": [ + { + "institution": "University of Rochester", + "degree": "Bachelor of Technology (BTech)", + "fieldOfStudy": "Mathematics", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-01-09T16:37:20.305Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35314f" + } + }, + { + "institution": "Boston University", + "degree": "Bachelor of Arts (BA)", + "fieldOfStudy": "Biomedical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-08-17T17:10:03.754Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353150" + } + }, + { + "institution": "Johns Hopkins University", + "degree": "Master of Arts (MA)", + "fieldOfStudy": "Aerospace Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-11-18T00:40:13.771Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353151" + } + } + ], + "projects": [ + { + "name": "RecruitmentAI", + "description": "AI-powered recruitment platform for matching candidates with job opportunities.", + "link": "https://github.com/username/recruitmentai", + "_id": { + "$oid": "666cbc4a40af7b375e353152" + } + }, + { + "name": "VirtualTour", + "description": "Virtual reality tour application for immersive travel experiences.", + "link": "https://github.com/username/virtualtour", + "_id": { + "$oid": "666cbc4a40af7b375e353153" + } + } + ], + "personalBio": "Devoted to fostering a collaborative team environment and mentoring junior developers.", + "testimonials": [ + { + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "_id": { + "$oid": "666cbc4a40af7b375e353154" + } + }, + { + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "_id": { + "$oid": "666cbc4a40af7b375e353155" + } + }, + { + "from": "Liam Harris", + "relation": "Lead Developer at CloudTech", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e353156" + } + } + ], + "socialMediaLinks": { "other": ["https://www.instagram.com/Freedman-Scrafton-fake"] }, + "availabilityForNetworking": true, + "bootcampExperience": "CareerFoundry", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353149" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eb6" + }, + "firstName": "Tabbitha", + "lastName": "Jolliffe", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "ECRI 71", + "graduationYear": 2024, + "email": "tjolliffe15@bbb.org", + "linkedInProfile": "https://www.linkedin.com/in/Tabbitha-Jolliffe-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": [ + "Parallel Computing", + "Machine Learning", + "GraphQL", + "Big Data", + "Reactive Programming", + "Functional Programming", + "Scrum", + "Data Science", + "SaaS (Software as a Service)", + "Performance Optimization", + "Software Architecture", + "Google Cloud Platform", + "Android Development" + ], + "specializations": [ + "User Experience (UX) Design", + "Software Architecture", + "Scrum", + "SQL", + "Deep Learning", + "Project Management", + "Quantum Computing", + "HTML" + ], + "careerInformation": { + "currentPosition": { "title": "Backend Developer", "company": "Snowflake" }, + "pastPositions": [ + { + "title": "AI Engineer", + "company": "Slack", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-07-02T14:58:24.865Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353158" + } + }, + { + "title": "Automation Engineer", + "company": "Uber", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-12-27T23:33:49.774Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353159" + } + }, + { + "title": "Mobile Developer", + "company": "Facebook", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-12-16T04:30:35.543Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35315a" + } + } + ] + }, + "education": [ + { + "institution": "Georgia Institute of Technology", + "degree": "Bachelor of Engineering (BE)", + "fieldOfStudy": "Medicine", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-08-06T01:34:24.076Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35315b" + } + }, + { + "institution": "California Institute of Technology (Caltech)", + "degree": "Executive Education", + "fieldOfStudy": "Linguistics", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-01-16T02:42:18.777Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35315c" + } + }, + { + "institution": "Australian National University", + "degree": "Master of Technology (MTech)", + "fieldOfStudy": "Electrical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-03-29T23:10:26.787Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35315d" + } + } + ], + "projects": [], + "personalBio": "Driven by a passion for problem-solving and a commitment to continuous professional development.", + "testimonials": [ + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "666cbc4a40af7b375e35315e" + } + }, + { + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e35315f" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Tabbitha-Jolliffe-fake", + "blog": "https://www.Tabbitha-Jolliffe-fake-blog.com", + "other": ["https://www.instagram.com/Tabbitha-Jolliffe-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Lambda School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353157" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eb7" + }, + "firstName": "Jordon", + "lastName": "Ganley", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "cohort": "PTRI 71", + "graduationYear": 2024, + "email": "jganley16@geocities.jp", + "linkedInProfile": "https://www.linkedin.com/in/Jordon-Ganley-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": ["Django", "User Experience (UX) Design", "Cloud Computing"], + "specializations": [ + "C#", + "Ruby", + "IoT (Internet of Things)", + "Cloud Computing", + "CI/CD", + "ASP.NET", + "Code Review", + "Leadership" + ], + "careerInformation": { + "currentPosition": { "title": "Technical Program Manager", "company": "LinkedIn" }, + "pastPositions": [ + { + "title": "Test Engineer", + "company": "HubSpot", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-12-29T00:07:38.410Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353161" + } + }, + { + "title": "Data Engineer", + "company": "Snapchat", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-07-10T06:14:16.318Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353162" + } + }, + { + "title": "Machine Learning Engineer", + "company": "IBM", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-09-17T19:39:34.567Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353163" + } + }, + { + "title": "Lead Software Engineer", + "company": "Snapchat", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-12-25T21:10:19.549Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353164" + } + } + ] + }, + "education": [ + { + "institution": "London School of Economics and Political Science (LSE)", + "degree": "Executive Education", + "fieldOfStudy": "Journalism", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-05-05T01:52:19.265Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353165" + } + } + ], + "projects": [ + { + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", + "_id": { + "$oid": "666cbc4a40af7b375e353166" + } + }, + { + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", + "_id": { + "$oid": "666cbc4a40af7b375e353167" + } + } + ], + "personalBio": "Experienced in building scalable microservices architectures and integrating third-party APIs.", + "testimonials": [ + { + "from": "Lucas Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", + "_id": { + "$oid": "666cbc4a40af7b375e353168" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e353169" + } + }, + { + "from": "Emily Brown", + "relation": "Client at GlobalSoft Solutions", + "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e35316a" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Jordon-Ganley-fake", + "blog": "https://www.Jordon-Ganley-fake-blog.com", + "other": ["https://www.instagram.com/Jordon-Ganley-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Kenzie Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353160" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eb8" + }, + "firstName": "Annora", + "lastName": "Brigge", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "cohort": "FTRI 2", + "graduationYear": 2024, + "email": "abrigge17@joomla.org", + "linkedInProfile": "https://www.linkedin.com/in/Annora-Brigge-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "skills": [], + "specializations": [ + "Scrum", + "TDD (Test-Driven Development)", + "React", + "Microservices", + "Leadership", + "CSS", + "C++", + "Problem-Solving", + "Containerization", + "ASP.NET", + "Django", + "Android Development", + "AWS", + "Agile Development", + "Machine Learning", + "IoT (Internet of Things)", + "AR/VR (Augmented/Virtual Reality)" + ], + "careerInformation": { + "currentPosition": { "title": "Senior Software Engineer", "company": "Apple" }, + "pastPositions": [ + { + "title": "Software Architect", + "company": "Activision Blizzard", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-04-08T17:44:40.529Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35316c" + } + }, + { + "title": "DevOps Engineer", + "company": "Atlassian", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-04-22T17:04:03.094Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35316d" + } + } + ] + }, + "education": [ + { + "institution": "University of Utah", + "degree": "Doctor of Veterinary Medicine (DVM)", + "fieldOfStudy": "History", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-09-26T14:44:32.220Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35316e" + } + }, + { + "institution": "National University of Singapore (NUS)", + "degree": "Master of Engineering (ME)", + "fieldOfStudy": "Education", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-07-29T09:55:05.313Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35316f" + } + }, + { + "institution": "Carnegie Mellon University", + "degree": "Master of Science (MS)", + "fieldOfStudy": "Veterinary Medicine", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-02-21T00:19:30.089Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353170" + } + }, + { + "institution": "Yale University", + "degree": "Bachelor of Science (BS)", + "fieldOfStudy": "Biology", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-03-06T12:51:03.148Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353171" + } + } + ], + "projects": [ + { + "name": "SocialConnect", + "description": "Social media integration platform for managing multiple social accounts.", + "link": "https://github.com/username/socialconnect", + "_id": { + "$oid": "666cbc4a40af7b375e353172" + } + }, + { + "name": "RecruitmentAI", + "description": "AI-powered recruitment platform for matching candidates with job opportunities.", + "link": "https://github.com/username/recruitmentai", + "_id": { + "$oid": "666cbc4a40af7b375e353173" + } + }, + { + "name": "VirtualTour", + "description": "Virtual reality tour application for immersive travel experiences.", + "link": "https://github.com/username/virtualtour", + "_id": { + "$oid": "666cbc4a40af7b375e353174" + } + } + ], + "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", + "testimonials": [ + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "666cbc4a40af7b375e353175" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e353176" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e353177" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Annora-Brigge-fake", + "blog": "https://www.Annora-Brigge-fake-blog.com", + "other": ["https://www.instagram.com/Annora-Brigge-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Lambda School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e35316b" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eb9" + }, + "firstName": "Bethanne", + "lastName": "Osband", + "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "cohort": "FTRI 9", + "graduationYear": 2024, + "email": "bosband18@blinklist.com", + "linkedInProfile": "https://www.linkedin.com/in/Bethanne-Osband-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "skills": [ + "IoT (Internet of Things)", + "Leadership", + "Object-Oriented Programming", + "Cloud Computing", + "User Experience (UX) Design", + "Technical Writing", + "Git" + ], + "specializations": [ + "Vue.js", + "ETL (Extract, Transform, Load)", + "Critical Thinking", + "Functional Programming", + "Edge Computing", + "Parallel Computing", + "FaaS (Function as a Service)", + "User Interface (UI) Design", + "Natural Language Processing", + "Google Cloud Platform", + "Microservices", + "Robotic Process Automation", + "Problem-Solving", + "PaaS (Platform as a Service)", + "RESTful APIs", + "Continuous Deployment", + "Containerization" + ], + "careerInformation": { + "currentPosition": { "title": "Software Engineer", "company": "ServiceNow" }, + "pastPositions": [ + { + "title": "Mobile Developer", + "company": "Lyft", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-08-25T20:25:41.833Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353179" + } + }, + { + "title": "Full Stack Developer", + "company": "DoorDash", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-04-28T17:00:20.512Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35317a" + } + }, + { + "title": "Test Engineer", + "company": "Spotify", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-02-15T06:58:31.428Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35317b" + } + } + ] + }, + "education": [ + { + "institution": "Rutgers University", + "degree": "Executive Education", + "fieldOfStudy": "Civil Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-11-12T08:27:13.424Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35317c" + } + }, + { + "institution": "University of Wisconsin-Madison", + "degree": "Professional Degree", + "fieldOfStudy": "Chemical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-06-07T02:16:05.276Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35317d" + } + }, + { + "institution": "Clemson University", + "degree": "Doctor of Philosophy (PhD)", + "fieldOfStudy": "Aerospace Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-08-20T12:00:28.273Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35317e" + } + } + ], + "projects": [ + { + "name": "SmartWatch", + "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", + "link": "https://github.com/username/smartwatch", + "_id": { + "$oid": "666cbc4a40af7b375e35317f" + } + }, + { + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", + "_id": { + "$oid": "666cbc4a40af7b375e353180" + } + }, + { + "name": "NetPlanner", + "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", + "link": "https://github.com/username/netplanner", + "_id": { + "$oid": "666cbc4a40af7b375e353181" + } + }, + { + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", + "_id": { + "$oid": "666cbc4a40af7b375e353182" + } + } + ], + "personalBio": "Adept at optimizing SQL and NoSQL databases for performance and scalability.", + "testimonials": [ + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e353183" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e353184" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e353185" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e353186" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Bethanne-Osband-fake", + "blog": "https://www.Bethanne-Osband-fake-blog.com", + "other": ["https://www.instagram.com/Bethanne-Osband-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Makers Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353178" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eba" + }, + "firstName": "Hedda", + "lastName": "Tallquist", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "PTRI 10", + "graduationYear": 2024, + "email": "htallquist19@cisco.com", + "linkedInProfile": "https://www.linkedin.com/in/Hedda-Tallquist-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "skills": [ + "AR/VR (Augmented/Virtual Reality)", + "Legacy Code Management", + "Vue.js", + "Integration Testing" + ], + "specializations": [ + "System Design", + "Kubernetes", + "BDD (Behavior-Driven Development)", + "GraphQL", + "Python", + "Graph Databases", + "Blockchain", + "Event-Driven Architecture", + "Data Warehousing", + "Legacy Code Management", + "Docker" + ], + "careerInformation": { + "currentPosition": { "title": "Engineering Manager", "company": "Activision Blizzard" }, + "pastPositions": [ + { + "title": "Senior Software Engineer", + "company": "Slack", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-09-29T06:23:48.872Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353188" + } + }, + { + "title": "Backend Developer", + "company": "Apple", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-03-24T02:20:15.925Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353189" + } + } + ] + }, + "education": [ + { + "institution": "Nanyang Technological University (NTU)", + "degree": "Doctor of Dental Surgery (DDS)", + "fieldOfStudy": "Biomedical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-11-12T17:26:46.283Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35318a" + } + }, + { + "institution": "University of Utah", + "degree": "Juris Doctor (JD)", + "fieldOfStudy": "Graphic Design", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-01-28T17:35:46.352Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35318b" + } + }, + { + "institution": "Purdue University", + "degree": "Doctor of Education (EdD)", + "fieldOfStudy": "Accounting", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-01-11T15:31:46.970Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35318c" + } + } + ], + "projects": [ + { + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", + "_id": { + "$oid": "666cbc4a40af7b375e35318d" + } + }, + { + "name": "LearnHub", + "description": "Online learning platform offering courses on various subjects with interactive content.", + "link": "https://github.com/username/learnhub", + "_id": { + "$oid": "666cbc4a40af7b375e35318e" + } + }, + { + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", + "_id": { + "$oid": "666cbc4a40af7b375e35318f" + } + } + ], + "personalBio": "Proven ability to lead technical projects from inception to successful deployment and maintenance.", + "testimonials": [ + { + "from": "Aiden Walker", + "relation": "CTO at Innovate Solutions", + "text": "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", + "_id": { + "$oid": "666cbc4a40af7b375e353190" + } + }, + { + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "_id": { + "$oid": "666cbc4a40af7b375e353191" + } + }, + { + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e353192" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e353193" + } + } + ], + "socialMediaLinks": { "twitter": "https://x.com/Hedda-Tallquist-fake", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Nucamp", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353187" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ebb" + }, + "firstName": "Lynelle", + "lastName": "Grosvener", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "FTRI 15", + "graduationYear": 2024, + "email": "lgrosvener1a@google.cn", + "linkedInProfile": "https://www.linkedin.com/in/Lynelle-Grosvener-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": [ + "Problem-Solving", + "Laravel", + "CSS", + "Refactoring", + "Big Data", + "SQL", + "Automated Testing" + ], + "specializations": [ + "API Integration", + "SaaS (Software as a Service)", + "Flask", + "User Experience (UX) Design", + "TDD (Test-Driven Development)", + "API Development", + "Refactoring", + "PaaS (Platform as a Service)", + "Concurrency", + "Android Development", + "React", + "Algorithm Design", + "DevOps", + "User Interface (UI) Design", + "Problem-Solving" + ], + "careerInformation": { + "currentPosition": { "title": "Technical Lead", "company": "HubSpot" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "University of Oklahoma", + "degree": "Master of Public Administration (MPA)", + "fieldOfStudy": "Interior Design", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-07-24T08:49:17.590Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353195" + } + } + ], + "projects": [ + { + "name": "RoboTrader", + "description": "Algorithmic trading platform for automated stock market analysis and trading.", + "link": "https://github.com/username/robotrader", + "_id": { + "$oid": "666cbc4a40af7b375e353196" + } + }, + { + "name": "SmartInventory", + "description": "Inventory management system with RFID and IoT integration for tracking assets.", + "link": "https://github.com/username/smartinventory", + "_id": { + "$oid": "666cbc4a40af7b375e353197" + } + }, + { + "name": "HealthLink", + "description": "Telemedicine platform connecting patients with healthcare providers remotely.", + "link": "https://github.com/username/healthlink", + "_id": { + "$oid": "666cbc4a40af7b375e353198" + } + } + ], + "personalBio": "Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.", + "testimonials": [ + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "_id": { + "$oid": "666cbc4a40af7b375e353199" + } + }, + { + "from": "Lucas Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", + "_id": { + "$oid": "666cbc4a40af7b375e35319a" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "_id": { + "$oid": "666cbc4a40af7b375e35319b" + } + }, + { + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "_id": { + "$oid": "666cbc4a40af7b375e35319c" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Lynelle-Grosvener-fake-blog.com", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Flatiron School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353194" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ebc" + }, + "firstName": "Lenee", + "lastName": "Pethybridge", + "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "cohort": "CTRI 91", + "graduationYear": 2024, + "email": "lpethybridge1b@chron.com", + "linkedInProfile": "https://www.linkedin.com/in/Lenee-Pethybridge-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [ + "Azure", + "Cloud Computing", + "GraphQL", + "Infrastructure as Code", + "WebSockets", + "Google Cloud Platform", + "Refactoring" + ], + "specializations": ["ASP.NET", "Laravel", "Serverless Architecture"], + "careerInformation": { + "currentPosition": { "title": "Automation Engineer", "company": "Stripe" }, + "pastPositions": [ + { + "title": "Technical Program Manager", + "company": "Snapchat", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-06-29T13:01:25.468Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35319e" + } + }, + { + "title": "Software Developer", + "company": "Atlassian", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-12-16T18:03:24.211Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35319f" + } + }, + { + "title": "Technical Lead", + "company": "Okta", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-11-25T23:40:03.685Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531a0" + } + }, + { + "title": "Site Reliability Engineer", + "company": "Google", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-12-27T08:30:28.173Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531a1" + } + } + ] + }, + "education": [ + { + "institution": "Rice University", + "degree": "Master of Fine Arts (MFA)", + "fieldOfStudy": "Medicine", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-08-09T14:01:32.627Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531a2" + } + }, + { + "institution": "Vanderbilt University", + "degree": "Executive Education", + "fieldOfStudy": "Environmental Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-08-22T07:55:31.685Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531a3" + } + } + ], + "projects": [ + { + "name": "CloudGuard", + "description": "Advanced cloud security suite ensuring data protection and compliance.", + "link": "https://github.com/username/cloudguard", + "_id": { + "$oid": "666cbc4a40af7b375e3531a4" + } + }, + { + "name": "RoboTrader", + "description": "Algorithmic trading platform for automated stock market analysis and trading.", + "link": "https://github.com/username/robotrader", + "_id": { + "$oid": "666cbc4a40af7b375e3531a5" + } + }, + { + "name": "CodeReview", + "description": "Collaborative code review platform with annotations and feedback features.", + "link": "https://github.com/username/codereview", + "_id": { + "$oid": "666cbc4a40af7b375e3531a6" + } + }, + { + "name": "SocialConnect", + "description": "Social media integration platform for managing multiple social accounts.", + "link": "https://github.com/username/socialconnect", + "_id": { + "$oid": "666cbc4a40af7b375e3531a7" + } + } + ], + "personalBio": "Innovative thinker with a track record of proposing and implementing creative solutions to technical challenges.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Lenee-Pethybridge-fake", + "blog": "https://www.Lenee-Pethybridge-fake-blog.com", + "other": ["https://www.instagram.com/Lenee-Pethybridge-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "General Assembly", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e35319d" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ebd" + }, + "firstName": "Ninnette", + "lastName": "Maden", + "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "cohort": "FTRI 94", + "graduationYear": 2024, + "email": "nmaden1c@sciencedirect.com", + "linkedInProfile": "https://www.linkedin.com/in/Ninnette-Maden-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": ["Problem-Solving"], + "specializations": [ + "Graph Theory", + "Google Cloud Platform", + "Critical Thinking", + "User Interface (UI) Design", + "Infrastructure as Code", + "Docker" + ], + "careerInformation": { + "currentPosition": { "title": "Data Engineer", "company": "Red Hat" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "University of Sydney", + "degree": "Postdoctoral Research", + "fieldOfStudy": "Theater", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-06-05T08:05:14.495Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531a9" + } + }, + { + "institution": "Pennsylvania State University", + "degree": "Master's Degree", + "fieldOfStudy": "Nursing", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-12-27T08:27:04.924Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531aa" + } + }, + { + "institution": "University of California, Santa Barbara (UCSB)", + "degree": "Bachelor of Science (BS)", + "fieldOfStudy": "History", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-03-17T08:40:29.603Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531ab" + } + } + ], + "projects": [ + { + "name": "VirtualAssistant", + "description": "Virtual assistant software for voice command-based tasks and personal assistance.", + "link": "https://github.com/username/virtualassistant", + "_id": { + "$oid": "666cbc4a40af7b375e3531ac" + } + }, + { + "name": "VoiceAssistant", + "description": "Voice-controlled personal assistant using natural language processing.", + "link": "https://github.com/username/voiceassistant", + "_id": { + "$oid": "666cbc4a40af7b375e3531ad" + } + }, + { + "name": "CodeBot", + "description": "Automated code generation tool using AI for faster development cycles.", + "link": "https://github.com/username/codebot", + "_id": { + "$oid": "666cbc4a40af7b375e3531ae" + } + }, + { + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", + "_id": { + "$oid": "666cbc4a40af7b375e3531af" + } + } + ], + "personalBio": "Innovative thinker with a track record of proposing and implementing creative solutions to technical challenges.", + "testimonials": [ + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "666cbc4a40af7b375e3531b0" + } + }, + { + "from": "Emily Brown", + "relation": "Client at GlobalSoft Solutions", + "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e3531b1" + } + }, + { + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e3531b2" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e3531b3" + } + }, + { + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "_id": { + "$oid": "666cbc4a40af7b375e3531b4" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Ninnette-Maden-fake", + "blog": "https://www.Ninnette-Maden-fake-blog.com", + "other": ["https://www.instagram.com/Ninnette-Maden-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Makers Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3531a8" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ebe" + }, + "firstName": "Jolynn", + "lastName": "Catenot", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "NYC 41", + "graduationYear": 2024, + "email": "jcatenot1d@oakley.com", + "linkedInProfile": "https://www.linkedin.com/in/Jolynn-Catenot-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": ["ASP.NET"], + "specializations": [ + "C++", + "Spring Boot", + "Reactive Programming", + "React", + "Integration Testing", + "Pair Programming", + "Database Design", + "Azure", + "iOS Development", + "API Development", + "HTML", + "CI/CD" + ], + "careerInformation": { + "currentPosition": { "title": "Software Architect", "company": "Twilio" }, + "pastPositions": [ + { + "title": "Software Engineer", + "company": "Netflix", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-05-11T13:40:11.908Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531b6" + } + }, + { + "title": "Software Architect", + "company": "Activision Blizzard", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-03-14T06:43:40.766Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531b7" + } + }, + { + "title": "Principal Software Engineer", + "company": "Snapchat", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-07-03T08:00:30.297Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531b8" + } + } + ] + }, + "education": [ + { + "institution": "University of Kansas", + "degree": "Professional Degree", + "fieldOfStudy": "Music", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-03-02T19:29:12.133Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531b9" + } + }, + { + "institution": "National University of Singapore (NUS)", + "degree": "Bachelor of Business Administration (BBA)", + "fieldOfStudy": "Architecture", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-01-28T01:12:53.272Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531ba" + } + } + ], + "projects": [ + { + "name": "CodeBot", + "description": "Automated code generation tool using AI for faster development cycles.", + "link": "https://github.com/username/codebot", + "_id": { + "$oid": "666cbc4a40af7b375e3531bb" + } + }, + { + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", + "_id": { + "$oid": "666cbc4a40af7b375e3531bc" + } + } + ], + "personalBio": "Advocate for diversity and inclusion in the tech industry, fostering a welcoming and supportive workplace culture.", + "testimonials": [ + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e3531bd" + } + }, + { + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "_id": { + "$oid": "666cbc4a40af7b375e3531be" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e3531bf" + } + } + ], + "socialMediaLinks": { "twitter": "https://x.com/Jolynn-Catenot-fake", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Springboard", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3531b5" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ebf" + }, + "firstName": "Marabel", + "lastName": "Puleston", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "CTRI 90", + "graduationYear": 2024, + "email": "mpuleston1e@utexas.edu", + "linkedInProfile": "https://www.linkedin.com/in/Marabel-Puleston-fake", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "skills": [ + "Git", + "SaaS (Software as a Service)", + "AR/VR (Augmented/Virtual Reality)", + "Functional Programming", + "Big Data", + "Flask", + "C#" + ], + "specializations": [ + "Refactoring", + "Version Control", + "Graph Databases", + "GraphQL", + "API Integration" + ], + "careerInformation": { + "currentPosition": { "title": "Software Architect", "company": "Robinhood" }, + "pastPositions": [ + { + "title": "Product Manager", + "company": "PayPal", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-07-29T13:22:02.276Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531c1" + } + }, + { + "title": "Lead Software Engineer", + "company": "GitHub", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-12-18T22:49:54.284Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531c2" + } + }, + { + "title": "DevOps Engineer", + "company": "Salesforce", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-08-22T02:06:55.850Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531c3" + } + }, + { + "title": "Automation Engineer", + "company": "LinkedIn", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-10-19T19:20:34.388Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531c4" + } + } + ] + }, + "education": [ + { + "institution": "Peking University", + "degree": "Bachelor of Engineering (BE)", + "fieldOfStudy": "Finance", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-11-01T17:11:41.999Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531c5" + } + }, + { + "institution": "London School of Economics and Political Science (LSE)", + "degree": "Bachelor of Business Administration (BBA)", + "fieldOfStudy": "Veterinary Medicine", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-11-09T18:48:14.981Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531c6" + } + } + ], + "projects": [ + { + "name": "SmartCity", + "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", + "link": "https://github.com/username/smartcity", + "_id": { + "$oid": "666cbc4a40af7b375e3531c7" + } + }, + { + "name": "RecruitmentAI", + "description": "AI-powered recruitment platform for matching candidates with job opportunities.", + "link": "https://github.com/username/recruitmentai", + "_id": { + "$oid": "666cbc4a40af7b375e3531c8" + } + }, + { + "name": "CodeBot", + "description": "Automated code generation tool using AI for faster development cycles.", + "link": "https://github.com/username/codebot", + "_id": { + "$oid": "666cbc4a40af7b375e3531c9" + } + }, + { + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", + "_id": { + "$oid": "666cbc4a40af7b375e3531ca" + } + }, + { + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", + "_id": { + "$oid": "666cbc4a40af7b375e3531cb" + } + } + ], + "personalBio": "Passionate about building inclusive and accessible software that improves people's lives.", + "testimonials": [], + "socialMediaLinks": { + "blog": "https://www.Marabel-Puleston-fake-blog.com", + "other": ["https://www.instagram.com/Marabel-Puleston-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Fullstack Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3531c0" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ec0" + }, + "firstName": "Bryn", + "lastName": "Arias", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "CTRI 64", + "graduationYear": 2024, + "email": "barias1f@flavors.me", + "linkedInProfile": "https://www.linkedin.com/in/Bryn-Arias-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": [ + "System Design", + "Natural Language Processing", + "Leadership", + "Object-Oriented Programming", + "Refactoring", + "NoSQL", + "iOS Development", + "API Development", + "Deep Learning", + "TDD (Test-Driven Development)" + ], + "specializations": [ + "Quantum Computing", + "Graph Theory", + "SaaS (Software as a Service)", + "Communication Skills", + "Continuous Deployment", + "System Design", + "Time Management", + "Natural Language Processing", + "Legacy Code Management", + "Parallel Computing", + "BDD (Behavior-Driven Development)" + ], + "careerInformation": { + "currentPosition": { "title": "Principal Software Engineer", "company": "Qualcomm" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "University of Texas at Austin", + "degree": "Doctor of Business Administration (DBA)", + "fieldOfStudy": "English Literature", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-12-10T20:12:42.142Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531cd" + } + }, + { + "institution": "New York University (NYU)", + "degree": "Master of Technology (MTech)", + "fieldOfStudy": "Accounting", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-03-22T07:56:17.636Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531ce" + } + }, + { + "institution": "University of Oklahoma", + "degree": "Doctor of Dental Surgery (DDS)", + "fieldOfStudy": "Mechanical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-06-22T02:06:07.064Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531cf" + } + } + ], + "projects": [ + { + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", + "_id": { + "$oid": "666cbc4a40af7b375e3531d0" + } + }, + { + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", + "_id": { + "$oid": "666cbc4a40af7b375e3531d1" + } + }, + { + "name": "SmartWatch", + "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", + "link": "https://github.com/username/smartwatch", + "_id": { + "$oid": "666cbc4a40af7b375e3531d2" + } + }, + { + "name": "RoboTrader", + "description": "Algorithmic trading platform for automated stock market analysis and trading.", + "link": "https://github.com/username/robotrader", + "_id": { + "$oid": "666cbc4a40af7b375e3531d3" + } + } + ], + "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", + "testimonials": [ + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e3531d4" + } + }, + { + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "_id": { + "$oid": "666cbc4a40af7b375e3531d5" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e3531d6" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e3531d7" + } + }, + { + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "_id": { + "$oid": "666cbc4a40af7b375e3531d8" + } + } + ], + "socialMediaLinks": { + "blog": "https://www.Bryn-Arias-fake-blog.com", + "other": ["https://www.instagram.com/Bryn-Arias-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Makers Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3531cc" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ec1" + }, + "firstName": "Arni", + "lastName": "Jertz", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "NYC 93", + "graduationYear": 2024, + "email": "ajertz1g@tuttocitta.it", + "linkedInProfile": "https://www.linkedin.com/in/Arni-Jertz-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "skills": [ + "Big Data", + "CI/CD", + "Python", + "Mobile Development", + "Git", + "Reactive Programming", + "Integration Testing", + "Java" + ], + "specializations": [ + "Continuous Deployment", + "BDD (Behavior-Driven Development)", + "Natural Language Processing", + "Design Patterns", + "Pair Programming", + "Project Management", + "Automated Testing", + "NoSQL", + "API Development", + "CI/CD", + "HTML", + "C#" + ], + "careerInformation": { + "currentPosition": { "title": "Security Engineer", "company": "LinkedIn" }, + "pastPositions": [ + { + "title": "Lead Software Engineer", + "company": "Red Hat", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-02-15T05:11:28.341Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531da" + } + }, + { + "title": "Embedded Systems Engineer", + "company": "Zoom", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-02-17T00:53:04.719Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531db" + } + }, + { + "title": "Full Stack Developer", + "company": "Asana", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-04-28T07:34:19.493Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531dc" + } + }, + { + "title": "Senior Software Engineer", + "company": "Red Hat", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-12-03T18:17:53.805Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531dd" + } + }, + { + "title": "DevOps Engineer", + "company": "Stripe", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-09-23T20:35:40.913Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531de" + } + } + ] + }, + "education": [ + { + "institution": "Rutgers University", + "degree": "Bachelor of Science (BS)", + "fieldOfStudy": "Aerospace Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-02-16T08:14:25.087Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531df" + } + } + ], + "projects": [], + "personalBio": "Experienced in Agile methodologies, with a track record of delivering projects on time and within budget.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Arni-Jertz-fake", + "blog": "https://www.Arni-Jertz-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": false, + "bootcampExperience": "DevMountain", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3531d9" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ec2" + }, + "firstName": "Maegan", + "lastName": "Mulhall", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "cohort": "LA 82", + "graduationYear": 2024, + "email": "mmulhall1h@wikipedia.org", + "linkedInProfile": "https://www.linkedin.com/in/Maegan-Mulhall-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": [ + "Agile Development", + "Java", + "Communication Skills", + "Design Patterns", + "Performance Optimization", + "Algorithm Design", + "Collaboration", + "GraphQL", + "Critical Thinking", + "Infrastructure as Code", + "RESTful APIs" + ], + "specializations": [], + "careerInformation": { + "currentPosition": { "title": "Cloud Engineer", "company": "Netflix" }, + "pastPositions": [ + { + "title": "Backend Developer", + "company": "Coinbase", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-06-16T08:41:35.322Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531e1" + } + }, + { + "title": "Software Developer", + "company": "Uber", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-07-11T02:56:26.387Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531e2" + } + }, + { + "title": "Lead Software Engineer", + "company": "Google", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-10-13T14:47:26.525Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531e3" + } + }, + { + "title": "Embedded Systems Engineer", + "company": "Adobe", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-05-03T08:18:44.694Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531e4" + } + } + ] + }, + "education": [ + { + "institution": "University of Houston", + "degree": "Bachelor's Degree", + "fieldOfStudy": "Information Technology", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-09-10T23:24:56.639Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531e5" + } + } + ], + "projects": [ + { + "name": "SecureChat", + "description": "End-to-end encrypted messaging app ensuring user privacy and security.", + "link": "https://github.com/username/securechat", + "_id": { + "$oid": "666cbc4a40af7b375e3531e6" + } + }, + { + "name": "VoiceAssistant", + "description": "Voice-controlled personal assistant using natural language processing.", + "link": "https://github.com/username/voiceassistant", + "_id": { + "$oid": "666cbc4a40af7b375e3531e7" + } + }, + { + "name": "TravelGuide", + "description": "Interactive travel guide application providing travel tips and destination insights.", + "link": "https://github.com/username/travelguide", + "_id": { + "$oid": "666cbc4a40af7b375e3531e8" + } + } + ], + "personalBio": "Proven ability to lead technical projects from inception to successful deployment and maintenance.", + "testimonials": [ + { + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "_id": { + "$oid": "666cbc4a40af7b375e3531e9" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "666cbc4a40af7b375e3531ea" + } + }, + { + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "_id": { + "$oid": "666cbc4a40af7b375e3531eb" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Maegan-Mulhall-fake", + "blog": "https://www.Maegan-Mulhall-fake-blog.com", + "other": ["https://www.instagram.com/Maegan-Mulhall-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Ironhack", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3531e0" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ec3" + }, + "firstName": "Nicolai", + "lastName": "Brugsma", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "LA 79", + "graduationYear": 2024, + "email": "nbrugsma1i@4shared.com", + "linkedInProfile": "https://www.linkedin.com/in/Nicolai-Brugsma-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": ["WebSockets", "C++", "Node.js", "Graph Databases", "Data Science", "Blockchain"], + "specializations": [ + "System Design", + "Graph Databases", + "DevOps", + "Version Control", + "Data Warehousing", + "Cybersecurity", + "Docker", + "Code Review", + "Integration Testing", + "Scrum", + "Flask", + "Communication Skills" + ], + "careerInformation": { + "currentPosition": { "title": "Cloud Engineer", "company": "ServiceNow" }, + "pastPositions": [ + { + "title": "QA Engineer", + "company": "GitHub", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-09-08T00:15:53.538Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531ed" + } + }, + { + "title": "Automation Engineer", + "company": "Red Hat", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-03-07T20:26:34.318Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531ee" + } + }, + { + "title": "Security Engineer", + "company": "Okta", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-05-30T04:41:27.997Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531ef" + } + }, + { + "title": "Backend Developer", + "company": "NVIDIA", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-11-22T01:13:44.599Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531f0" + } + } + ] + }, + "education": [ + { + "institution": "Cornell University", + "degree": "Master of Science (MS)", + "fieldOfStudy": "History", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-06-17T13:09:07.890Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531f1" + } + }, + { + "institution": "Washington University in St. Louis", + "degree": "Bachelor of Fine Arts (BFA)", + "fieldOfStudy": "Mathematics", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-08-02T13:30:00.640Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531f2" + } + } + ], + "projects": [ + { + "name": "NetPlanner", + "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", + "link": "https://github.com/username/netplanner", + "_id": { + "$oid": "666cbc4a40af7b375e3531f3" + } + }, + { + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", + "_id": { + "$oid": "666cbc4a40af7b375e3531f4" + } + }, + { + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", + "_id": { + "$oid": "666cbc4a40af7b375e3531f5" + } + }, + { + "name": "NetPlanner", + "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", + "link": "https://github.com/username/netplanner", + "_id": { + "$oid": "666cbc4a40af7b375e3531f6" + } + } + ], + "personalBio": "Passionate about contributing to the tech community through open-source projects and knowledge sharing.", + "testimonials": [ + { + "from": "Emily Brown", + "relation": "Client at GlobalSoft Solutions", + "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e3531f7" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e3531f8" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e3531f9" + } + }, + { + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e3531fa" + } + }, + { + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e3531fb" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Nicolai-Brugsma-fake", + "blog": "https://www.Nicolai-Brugsma-fake-blog.com", + "other": ["https://www.instagram.com/Nicolai-Brugsma-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "CareerFoundry", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3531ec" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ec4" + }, + "firstName": "Bryan", + "lastName": "Heffy", + "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "cohort": "ECRI 62", + "graduationYear": 2024, + "email": "bheffy1j@cbsnews.com", + "linkedInProfile": "https://www.linkedin.com/in/Bryan-Heffy-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": [], + "specializations": [ + "TDD (Test-Driven Development)", + "Unit Testing", + "User Experience (UX) Design", + "Continuous Deployment", + "GraphQL" + ], + "careerInformation": { + "currentPosition": { "title": "Senior Software Engineer", "company": "Snapchat" }, + "pastPositions": [ + { + "title": "DevOps Engineer", + "company": "Robinhood", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-06-22T15:20:12.810Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531fd" + } + }, + { + "title": "Machine Learning Engineer", + "company": "Qualcomm", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-04-19T05:40:23.128Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531fe" + } + } + ] + }, + "education": [ + { + "institution": "University of Pittsburgh", + "degree": "Associate Degree", + "fieldOfStudy": "Fine Arts", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-06-14T09:27:21.548Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3531ff" + } + }, + { + "institution": "University of Nebraska-Lincoln", + "degree": "Technical School Certification", + "fieldOfStudy": "Journalism", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-10-15T21:29:58.812Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353200" + } + } + ], + "projects": [ + { + "name": "CryptoTrack", + "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", + "link": "https://github.com/username/cryptotrack", + "_id": { + "$oid": "666cbc4a40af7b375e353201" + } + }, + { + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", + "_id": { + "$oid": "666cbc4a40af7b375e353202" + } + }, + { + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", + "_id": { + "$oid": "666cbc4a40af7b375e353203" + } + }, + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "666cbc4a40af7b375e353204" + } + }, + { + "name": "FoodDelivery", + "description": "Online food delivery platform connecting restaurants with customers for food ordering.", + "link": "https://github.com/username/fooddelivery", + "_id": { + "$oid": "666cbc4a40af7b375e353205" + } + } + ], + "personalBio": "Devoted to fostering a collaborative team environment and mentoring junior developers.", + "testimonials": [ + { + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "_id": { + "$oid": "666cbc4a40af7b375e353206" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e353207" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Bryan-Heffy-fake-blog.com", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Fullstack Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3531fc" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ec5" + }, + "firstName": "Donavon", + "lastName": "Osichev", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "FTRI 50", + "graduationYear": 2024, + "email": "dosichev1k@pinterest.com", + "linkedInProfile": "https://www.linkedin.com/in/Donavon-Osichev-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "skills": [ + "Object-Oriented Programming", + "System Design", + "Integration Testing", + "Time Management", + "Reactive Programming", + "Data Warehousing", + "Software Architecture", + "Data Visualization", + "Data Science", + "ETL (Extract, Transform, Load)", + "Natural Language Processing", + "AWS", + "Android Development", + "Kubernetes", + "Edge Computing" + ], + "specializations": [ + "Technical Writing", + "NoSQL", + "GraphQL", + "Azure", + "AWS", + "API Development", + "BDD (Behavior-Driven Development)", + "Project Management", + "Deep Learning", + "Ruby" + ], + "careerInformation": { + "currentPosition": { "title": "Lead Software Engineer", "company": "Snapchat" }, + "pastPositions": [ + { + "title": "Mobile Developer", + "company": "DocuSign", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-03-16T09:27:57.963Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353209" + } + }, + { + "title": "QA Engineer", + "company": "Airbnb", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-11-23T03:09:14.985Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35320a" + } + }, + { + "title": "QA Engineer", + "company": "ServiceNow", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-04-05T18:23:29.927Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35320b" + } + }, + { + "title": "AI Engineer", + "company": "Dropbox", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-09-25T06:51:29.027Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35320c" + } + }, + { + "title": "Cloud Engineer", + "company": "Qualcomm", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-03-22T02:14:45.721Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35320d" + } + } + ] + }, + "education": [ + { + "institution": "Rutgers University", + "degree": "Master of Arts (MA)", + "fieldOfStudy": "Mechanical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-01-02T12:46:14.349Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35320e" + } + } + ], + "projects": [ + { + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", + "_id": { + "$oid": "666cbc4a40af7b375e35320f" + } + }, + { + "name": "EduTech", + "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", + "link": "https://github.com/username/edutech", + "_id": { + "$oid": "666cbc4a40af7b375e353210" + } + } + ], + "personalBio": "Skilled in working with cross-functional teams to deliver innovative software solutions that exceed expectations.", + "testimonials": [ + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e353211" + } + }, + { + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e353212" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "666cbc4a40af7b375e353213" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e353214" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Donavon-Osichev-fake", + "blog": "https://www.Donavon-Osichev-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Le Wagon", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353208" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ec6" + }, + "firstName": "Kennan", + "lastName": "Dugget", + "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "cohort": "ECRI 91", + "graduationYear": 2024, + "email": "kdugget1l@opensource.org", + "linkedInProfile": "https://www.linkedin.com/in/Kennan-Dugget-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": ["Software Architecture"], + "specializations": [ + "Database Design", + "Angular", + "TDD (Test-Driven Development)", + "NoSQL", + "Containerization", + "iOS Development", + "Integration Testing" + ], + "careerInformation": { + "currentPosition": { "title": "Site Reliability Engineer", "company": "Epic Games" }, + "pastPositions": [ + { + "title": "Web Developer", + "company": "Facebook", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-02-11T19:27:59.308Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353216" + } + }, + { + "title": "Data Scientist", + "company": "Oracle", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-08-17T01:34:52.501Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353217" + } + } + ] + }, + "education": [ + { + "institution": "Massachusetts Institute of Technology (MIT)", + "degree": "Master of Fine Arts (MFA)", + "fieldOfStudy": "Marketing", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-11-23T03:55:18.606Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353218" + } + } + ], + "projects": [], + "personalBio": "Experienced in both frontend and backend development, with a focus on creating elegant and efficient solutions.", + "testimonials": [ + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "666cbc4a40af7b375e353219" + } + }, + { + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "_id": { + "$oid": "666cbc4a40af7b375e35321a" + } + }, + { + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e35321b" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e35321c" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e35321d" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Kennan-Dugget-fake", + "blog": "https://www.Kennan-Dugget-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Thinkful", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353215" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ec7" + }, + "firstName": "Paton", + "lastName": "Climance", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "WCRI 91", + "graduationYear": 2024, + "email": "pclimance1m@webnode.com", + "linkedInProfile": "https://www.linkedin.com/in/Paton-Climance-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": ["Vue.js", "Technical Writing", "Git", "Database Design"], + "specializations": ["Design Patterns"], + "careerInformation": { + "currentPosition": { "title": "iOS Developer", "company": "GitHub" }, + "pastPositions": [ + { + "title": "Junior Software Engineer", + "company": "Asana", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-01-03T16:11:07.507Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35321f" + } + }, + { + "title": "Technical Program Manager", + "company": "Shopify", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-07-03T01:56:28.102Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353220" + } + }, + { + "title": "Machine Learning Engineer", + "company": "Epic Games", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-09-20T15:13:14.953Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353221" + } + }, + { + "title": "Backend Developer", + "company": "EA (Electronic Arts)", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-01-17T16:14:11.487Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353222" + } + }, + { + "title": "Android Developer", + "company": "VMware", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-04-15T20:22:26.431Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353223" + } + } + ] + }, + "education": [ + { + "institution": "Ohio State University", + "degree": "Continuing Education", + "fieldOfStudy": "History", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-01-04T08:26:54.292Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353224" + } + }, + { + "institution": "Clemson University", + "degree": "Certificate Program", + "fieldOfStudy": "Political Science", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-04-18T02:30:09.236Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353225" + } + }, + { + "institution": "University of Utah", + "degree": "Master of Public Administration (MPA)", + "fieldOfStudy": "Finance", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-07-18T13:38:03.252Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353226" + } + } + ], + "projects": [ + { + "name": "AIChatbot", + "description": "AI-powered chatbot for customer support and interactive communication.", + "link": "https://github.com/username/aichatbot", + "_id": { + "$oid": "666cbc4a40af7b375e353227" + } + }, + { + "name": "EduTech", + "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", + "link": "https://github.com/username/edutech", + "_id": { + "$oid": "666cbc4a40af7b375e353228" + } + }, + { + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", + "_id": { + "$oid": "666cbc4a40af7b375e353229" + } + } + ], + "personalBio": "Passionate about building inclusive and accessible software that improves people's lives.", + "testimonials": [ + { + "from": "Olivia White", + "relation": "Tech Lead at Cloud Innovations", + "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "_id": { + "$oid": "666cbc4a40af7b375e35322a" + } + }, + { + "from": "Emily Brown", + "relation": "Client at GlobalSoft Solutions", + "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e35322b" + } + } + ], + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "BrainStation", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e35321e" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ec8" + }, + "firstName": "Caitrin", + "lastName": "McAllister", + "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "cohort": "LA 47", + "graduationYear": 2024, + "email": "cmcallister1n@ft.com", + "linkedInProfile": "https://www.linkedin.com/in/Caitrin-McAllister-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "skills": [ + "Project Management", + "HTML", + "React", + "Legacy Code Management", + "GraphQL", + "Critical Thinking", + "Database Design", + "Angular", + "Event-Driven Architecture", + "Blockchain", + "Flask", + "Docker", + "Reactive Programming" + ], + "specializations": [ + "Communication Skills", + "Data Science", + "Infrastructure as Code", + "Pair Programming", + "Laravel", + "API Integration", + "FaaS (Function as a Service)", + "Concurrency", + "ASP.NET", + "Django", + "AWS", + "HTML", + "Angular" + ], + "careerInformation": { + "currentPosition": { "title": "Software Developer", "company": "Salesforce" }, + "pastPositions": [ + { + "title": "Software Developer", + "company": "Stripe", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-07-30T18:26:41.107Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35322d" + } + }, + { + "title": "Machine Learning Engineer", + "company": "IBM", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-07-23T11:49:14.852Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35322e" + } + }, + { + "title": "Web Developer", + "company": "GitHub", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-06-28T07:01:22.336Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35322f" + } + } + ] + }, + "education": [ + { + "institution": "Tsinghua University", + "degree": "Master of Science (MS)", + "fieldOfStudy": "Sociology", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-08-09T10:38:35.558Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353230" + } + } + ], + "projects": [ + { + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", + "_id": { + "$oid": "666cbc4a40af7b375e353231" + } + }, + { + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", + "_id": { + "$oid": "666cbc4a40af7b375e353232" + } + }, + { + "name": "CloudStorage", + "description": "Cloud storage service with file synchronization and sharing capabilities.", + "link": "https://github.com/username/cloudstorage", + "_id": { + "$oid": "666cbc4a40af7b375e353233" + } + } + ], + "personalBio": "Experienced in rapid prototyping and iterative development methodologies.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Caitrin-McAllister-fake", + "blog": "https://www.Caitrin-McAllister-fake-blog.com", + "other": ["https://www.instagram.com/Caitrin-McAllister-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Galvanize", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e35322c" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ec9" + }, + "firstName": "Sephira", + "lastName": "Kaming", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "FTRI 3", + "graduationYear": 2024, + "email": "skaming1o@about.me", + "linkedInProfile": "https://www.linkedin.com/in/Sephira-Kaming-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": [ + "Continuous Deployment", + "Performance Optimization", + "WebSockets", + "JavaScript", + "User Interface (UI) Design", + "BDD (Behavior-Driven Development)", + "Scrum", + "Time Management", + "Android Development", + "Legacy Code Management", + "IoT (Internet of Things)", + "Python" + ], + "specializations": [ + "RESTful APIs", + "BDD (Behavior-Driven Development)", + "iOS Development", + "Collaboration", + "Object-Oriented Programming", + "Quantum Computing", + "Java", + "System Design" + ], + "careerInformation": { + "currentPosition": { "title": "iOS Developer", "company": "NVIDIA" }, + "pastPositions": [ + { + "title": "Embedded Systems Engineer", + "company": "Epic Games", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-11-05T01:23:00.221Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353235" + } + }, + { + "title": "Full Stack Developer", + "company": "Zoom", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-03-18T20:20:30.774Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353236" + } + }, + { + "title": "Test Engineer", + "company": "Spotify", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-06-27T05:50:31.468Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353237" + } + }, + { + "title": "Product Manager", + "company": "Snapchat", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-10-22T21:29:39.456Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353238" + } + } + ] + }, + "education": [ + { + "institution": "University College London (UCL)", + "degree": "Bachelor of Fine Arts (BFA)", + "fieldOfStudy": "Graphic Design", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-04-17T16:29:27.160Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353239" + } + }, + { + "institution": "University of Pittsburgh", + "degree": "Professional Degree", + "fieldOfStudy": "Mechanical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-07-14T11:38:11.747Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35323a" + } + }, + { + "institution": "University of Florida", + "degree": "Bachelor of Arts (BA)", + "fieldOfStudy": "Communication Studies", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-08-03T18:40:51.961Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35323b" + } + } + ], + "projects": [ + { + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", + "_id": { + "$oid": "666cbc4a40af7b375e35323c" + } + }, + { + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", + "_id": { + "$oid": "666cbc4a40af7b375e35323d" + } + }, + { + "name": "FoodDelivery", + "description": "Online food delivery platform connecting restaurants with customers for food ordering.", + "link": "https://github.com/username/fooddelivery", + "_id": { + "$oid": "666cbc4a40af7b375e35323e" + } + } + ], + "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", + "testimonials": [ + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e35323f" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e353240" + } + }, + { + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "_id": { + "$oid": "666cbc4a40af7b375e353241" + } + }, + { + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e353242" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Sephira-Kaming-fake-blog.com", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Springboard", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353234" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eca" + }, + "firstName": "Fraser", + "lastName": "Londsdale", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "CTRI 66", + "graduationYear": 2024, + "email": "flondsdale1p@freewebs.com", + "linkedInProfile": "https://www.linkedin.com/in/Fraser-Londsdale-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [ + "FaaS (Function as a Service)", + "TDD (Test-Driven Development)", + "Legacy Code Management", + "Infrastructure as Code", + "Scrum", + "WebSockets", + "Critical Thinking", + "Event-Driven Architecture", + "Git", + "IoT (Internet of Things)", + "C++", + "Collaboration", + "Android Development", + "AWS", + "Algorithm Design", + "DevOps" + ], + "specializations": [ + "Natural Language Processing", + "Refactoring", + "Database Design", + "RESTful APIs", + "Vue.js", + "Algorithm Design", + "Critical Thinking", + "PaaS (Platform as a Service)", + "Pair Programming", + "AWS" + ], + "careerInformation": { + "currentPosition": { "title": "AI Engineer", "company": "Snapchat" }, + "pastPositions": [ + { + "title": "Mobile Developer", + "company": "Square", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-03-09T10:31:59.160Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353244" + } + }, + { + "title": "Automation Engineer", + "company": "Snapchat", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-03-09T15:20:32.975Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353245" + } + }, + { + "title": "Security Engineer", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-06-14T20:53:23.863Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353246" + } + }, + { + "title": "Software Engineer", + "company": "Atlassian", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-09-17T05:32:15.775Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353247" + } + }, + { + "title": "Cloud Engineer", + "company": "Square", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-08-25T00:40:37.332Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353248" + } + } + ] + }, + "education": [ + { + "institution": "Shanghai Jiao Tong University", + "degree": "Bachelor of Science (BS)", + "fieldOfStudy": "Film Studies", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-01-23T02:37:09.812Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353249" + } + }, + { + "institution": "New York University (NYU)", + "degree": "Executive Education", + "fieldOfStudy": "Physics", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-06-01T18:15:14.723Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35324a" + } + } + ], + "projects": [ + { + "name": "EcoTech", + "description": "Environmental monitoring and conservation app with real-time data visualization.", + "link": "https://github.com/username/ecotech", + "_id": { + "$oid": "666cbc4a40af7b375e35324b" + } + }, + { + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", + "_id": { + "$oid": "666cbc4a40af7b375e35324c" + } + }, + { + "name": "SmartLearning", + "description": "AI-driven personalized learning platform with adaptive learning algorithms.", + "link": "https://github.com/username/smartlearning", + "_id": { + "$oid": "666cbc4a40af7b375e35324d" + } + }, + { + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", + "_id": { + "$oid": "666cbc4a40af7b375e35324e" + } + } + ], + "personalBio": "Experienced in rapid prototyping and iterative development methodologies.", + "testimonials": [ + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e35324f" + } + }, + { + "from": "Olivia White", + "relation": "Tech Lead at Cloud Innovations", + "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "_id": { + "$oid": "666cbc4a40af7b375e353250" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Fraser-Londsdale-fake", + "blog": "https://www.Fraser-Londsdale-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Flatiron School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353243" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ecb" + }, + "firstName": "Alyssa", + "lastName": "Bangham", + "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "cohort": "CTRI 97", + "graduationYear": 2024, + "email": "abangham1q@usgs.gov", + "linkedInProfile": "https://www.linkedin.com/in/Alyssa-Bangham-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "skills": ["Robotic Process Automation", "Unit Testing"], + "specializations": [ + "Kubernetes", + "Critical Thinking", + "Vue.js", + "Agile Development", + "Ruby", + "Cloud Computing", + "React", + "Database Design", + "Functional Programming", + "Graph Databases", + "Leadership", + "Laravel", + "ETL (Extract, Transform, Load)" + ], + "careerInformation": { + "currentPosition": { "title": "Software Engineer", "company": "Red Hat" }, + "pastPositions": [ + { + "title": "Product Manager", + "company": "Salesforce", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-04-18T19:02:18.926Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353252" + } + }, + { + "title": "Software Architect", + "company": "Palantir", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-01-31T04:26:21.195Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353253" + } + }, + { + "title": "Mobile Developer", + "company": "Red Hat", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-11-28T14:14:44.148Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353254" + } + }, + { + "title": "Software Architect", + "company": "Amazon", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-07-27T11:09:36.163Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353255" + } + } + ] + }, + "education": [ + { + "institution": "University of Hong Kong (HKU)", + "degree": "Doctor of Dental Medicine (DMD)", + "fieldOfStudy": "Chemistry", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-04-30T06:35:24.263Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353256" + } + }, + { + "institution": "University of California, Santa Barbara (UCSB)", + "degree": "Doctor of Dental Surgery (DDS)", + "fieldOfStudy": "Mechanical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-10-08T09:35:37.336Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353257" + } + }, + { + "institution": "London School of Economics and Political Science (LSE)", + "degree": "Master of Public Administration (MPA)", + "fieldOfStudy": "Journalism", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-12-15T22:55:05.312Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353258" + } + } + ], + "projects": [ + { + "name": "TourismApp", + "description": "Mobile application for tourists providing travel guides and local recommendations.", + "link": "https://github.com/username/tourismapp", + "_id": { + "$oid": "666cbc4a40af7b375e353259" + } + }, + { + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", + "_id": { + "$oid": "666cbc4a40af7b375e35325a" + } + }, + { + "name": "TourismApp", + "description": "Mobile application for tourists providing travel guides and local recommendations.", + "link": "https://github.com/username/tourismapp", + "_id": { + "$oid": "666cbc4a40af7b375e35325b" + } + }, + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "666cbc4a40af7b375e35325c" + } + }, + { + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", + "_id": { + "$oid": "666cbc4a40af7b375e35325d" + } + } + ], + "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", + "testimonials": [ + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "666cbc4a40af7b375e35325e" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e35325f" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e353260" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Alyssa-Bangham-fake", + "other": ["https://www.instagram.com/Alyssa-Bangham-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Galvanize", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353251" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ecc" + }, + "firstName": "Clarette", + "lastName": "Alcock", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "LA 70", + "graduationYear": 2024, + "email": "calcock1r@amazonaws.com", + "linkedInProfile": "https://www.linkedin.com/in/Clarette-Alcock-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": [ + "Spring Boot", + "Graph Theory", + "ETL (Extract, Transform, Load)", + "Mobile Development", + "DevOps", + "BDD (Behavior-Driven Development)", + "SQL", + "CSS", + "Technical Writing", + "WebSockets", + "Data Science", + "Android Development" + ], + "specializations": [], + "careerInformation": { + "currentPosition": { "title": "Backend Developer", "company": "Oracle" }, + "pastPositions": [ + { + "title": "Web Developer", + "company": "Adobe", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-07-21T04:30:41.742Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353262" + } + }, + { + "title": "Principal Software Engineer", + "company": "Airbnb", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-02-18T18:54:17.293Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353263" + } + } + ] + }, + "education": [ + { + "institution": "Columbia University", + "degree": "Diploma Program", + "fieldOfStudy": "Journalism", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-11-02T04:16:08.829Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353264" + } + }, + { + "institution": "Massachusetts Institute of Technology (MIT)", + "degree": "Juris Doctor (JD)", + "fieldOfStudy": "International Relations", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-03-01T05:33:41.601Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353265" + } + }, + { + "institution": "University of Cambridge", + "degree": "Doctor of Veterinary Medicine (DVM)", + "fieldOfStudy": "Urban Planning", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-01-05T18:36:05.850Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353266" + } + } + ], + "projects": [ + { + "name": "VoiceAssistant", + "description": "Voice-controlled personal assistant using natural language processing.", + "link": "https://github.com/username/voiceassistant", + "_id": { + "$oid": "666cbc4a40af7b375e353267" + } + }, + { + "name": "SmartWatch", + "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", + "link": "https://github.com/username/smartwatch", + "_id": { + "$oid": "666cbc4a40af7b375e353268" + } + }, + { + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", + "_id": { + "$oid": "666cbc4a40af7b375e353269" + } + }, + { + "name": "CloudGuard", + "description": "Advanced cloud security suite ensuring data protection and compliance.", + "link": "https://github.com/username/cloudguard", + "_id": { + "$oid": "666cbc4a40af7b375e35326a" + } + } + ], + "personalBio": "Proactive learner constantly exploring emerging technologies and trends in the software industry.", + "testimonials": [ + { + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "_id": { + "$oid": "666cbc4a40af7b375e35326b" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "_id": { + "$oid": "666cbc4a40af7b375e35326c" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "666cbc4a40af7b375e35326d" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e35326e" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Clarette-Alcock-fake", + "blog": "https://www.Clarette-Alcock-fake-blog.com", + "other": ["https://www.instagram.com/Clarette-Alcock-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Ironhack", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353261" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ecd" + }, + "firstName": "Lizbeth", + "lastName": "France", + "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "cohort": "FTRI 52", + "graduationYear": 2024, + "email": "lfrance1s@yahoo.com", + "linkedInProfile": "https://www.linkedin.com/in/Lizbeth-France-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": [ + "Functional Programming", + "NoSQL", + "Refactoring", + "Leadership", + "Reactive Programming", + "Quantum Computing", + "Data Science", + "Node.js", + "Graph Theory", + "Data Visualization", + "React", + "Automated Testing", + "Collaboration", + "Database Design" + ], + "specializations": [], + "careerInformation": { + "currentPosition": { "title": "Full Stack Developer", "company": "Snowflake" }, + "pastPositions": [ + { + "title": "Embedded Systems Engineer", + "company": "Airbnb", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-12-16T20:03:10.345Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353270" + } + }, + { + "title": "Principal Software Engineer", + "company": "LinkedIn", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-11-23T15:05:45.365Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353271" + } + } + ] + }, + "education": [ + { + "institution": "Indiana University Bloomington", + "degree": "Bachelor of Science (BS)", + "fieldOfStudy": "Business Administration", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-03-24T18:33:51.275Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353272" + } + }, + { + "institution": "University of Pittsburgh", + "degree": "Doctor of Dental Surgery (DDS)", + "fieldOfStudy": "Philosophy", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-08-17T12:40:17.466Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353273" + } + }, + { + "institution": "Clemson University", + "degree": "Technical School Certification", + "fieldOfStudy": "Linguistics", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-11-06T20:56:06.882Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353274" + } + } + ], + "projects": [ + { + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", + "_id": { + "$oid": "666cbc4a40af7b375e353275" + } + }, + { + "name": "EcoTech", + "description": "Environmental monitoring and conservation app with real-time data visualization.", + "link": "https://github.com/username/ecotech", + "_id": { + "$oid": "666cbc4a40af7b375e353276" + } + }, + { + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", + "_id": { + "$oid": "666cbc4a40af7b375e353277" + } + }, + { + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", + "_id": { + "$oid": "666cbc4a40af7b375e353278" + } + } + ], + "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", + "testimonials": [ + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e353279" + } + }, + { + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e35327a" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e35327b" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Lizbeth-France-fake", + "blog": "https://www.Lizbeth-France-fake-blog.com", + "other": ["https://www.instagram.com/Lizbeth-France-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "BrainStation", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e35326f" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ece" + }, + "firstName": "Abramo", + "lastName": "Sparkwell", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "NYC 9", + "graduationYear": 2024, + "email": "asparkwell1t@berkeley.edu", + "linkedInProfile": "https://www.linkedin.com/in/Abramo-Sparkwell-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": ["Cybersecurity", "Big Data", "Graph Theory", "Database Design", "Python", "AWS"], + "specializations": [ + "Azure", + "HTML", + "Microservices", + "Performance Optimization", + "Database Design", + "Refactoring", + "Google Cloud Platform" + ], + "careerInformation": { + "currentPosition": { "title": "Full Stack Developer", "company": "Zoom" }, + "pastPositions": [ + { + "title": "Principal Software Engineer", + "company": "VMware", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-04-08T08:13:48.432Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35327d" + } + }, + { + "title": "Site Reliability Engineer", + "company": "Zoom", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-10-12T17:16:24.958Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35327e" + } + } + ] + }, + "education": [ + { + "institution": "Seoul National University", + "degree": "Master of Public Administration (MPA)", + "fieldOfStudy": "Music", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-09-09T14:51:06.753Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35327f" + } + }, + { + "institution": "Michigan State University", + "degree": "Doctor of Veterinary Medicine (DVM)", + "fieldOfStudy": "Psychology", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-01-07T23:27:18.130Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353280" + } + }, + { + "institution": "Clemson University", + "degree": "Doctor of Veterinary Medicine (DVM)", + "fieldOfStudy": "Graphic Design", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-10-02T18:25:54.427Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353281" + } + } + ], + "projects": [], + "personalBio": "Dedicated to upholding best practices in software engineering, including testing, code reviews, and version control.", + "testimonials": [ + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "_id": { + "$oid": "666cbc4a40af7b375e353282" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e353283" + } + }, + { + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "_id": { + "$oid": "666cbc4a40af7b375e353284" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "666cbc4a40af7b375e353285" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e353286" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Abramo-Sparkwell-fake-blog.com", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Nucamp", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e35327c" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ecf" + }, + "firstName": "Darb", + "lastName": "Coen", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "WCRI 79", + "graduationYear": 2024, + "email": "dcoen1u@prlog.org", + "linkedInProfile": "https://www.linkedin.com/in/Darb-Coen-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": [ + "Leadership", + "Ruby", + "Data Warehousing", + "Time Management", + "Reactive Programming", + "IoT (Internet of Things)", + "Continuous Deployment", + "Concurrency", + "SQL", + "Agile Development", + "Unit Testing" + ], + "specializations": [ + "Agile Development", + "Git", + "AWS", + "Scrum", + "Unit Testing", + "Mobile Development", + "JavaScript", + "Natural Language Processing", + "Design Patterns", + "Cybersecurity", + "Functional Programming", + "Concurrency", + "IoT (Internet of Things)", + "API Integration", + "Parallel Computing", + "Technical Writing", + "GraphQL" + ], + "careerInformation": { + "currentPosition": { "title": "Principal Software Engineer", "company": "Cisco" }, + "pastPositions": [ + { + "title": "Android Developer", + "company": "Facebook", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-07-20T15:35:33.057Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353288" + } + }, + { + "title": "Engineering Manager", + "company": "LinkedIn", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-07-21T00:05:43.178Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353289" + } + } + ] + }, + "education": [ + { + "institution": "University of Colorado Boulder", + "degree": "Doctor of Dental Surgery (DDS)", + "fieldOfStudy": "Accounting", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-07-13T17:41:40.464Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35328a" + } + } + ], + "projects": [ + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "666cbc4a40af7b375e35328b" + } + }, + { + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", + "_id": { + "$oid": "666cbc4a40af7b375e35328c" + } + } + ], + "personalBio": "Skilled in conducting technical workshops and seminars to share knowledge and mentor aspiring developers.", + "testimonials": [ + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e35328d" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e35328e" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e35328f" + } + } + ], + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Lambda School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353287" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ed0" + }, + "firstName": "Gusty", + "lastName": "Besnardeau", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "FTRI 56", + "graduationYear": 2024, + "email": "gbesnardeau1v@themeforest.net", + "linkedInProfile": "https://www.linkedin.com/in/Gusty-Besnardeau-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": ["Integration Testing", "Cloud Computing", "System Design", "Big Data", "Flask"], + "specializations": [ + "Java", + "ETL (Extract, Transform, Load)", + "NoSQL", + "BDD (Behavior-Driven Development)", + "Data Warehousing", + "Natural Language Processing", + "Android Development", + "Python", + "Blockchain", + "Version Control", + "Refactoring", + "iOS Development", + "Ruby", + "AR/VR (Augmented/Virtual Reality)", + "System Design", + "SaaS (Software as a Service)" + ], + "careerInformation": { + "currentPosition": { "title": "iOS Developer", "company": "Epic Games" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "University of Miami", + "degree": "Master of Fine Arts (MFA)", + "fieldOfStudy": "Communication Studies", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-12-07T21:48:52.028Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353291" + } + }, + { + "institution": "Massachusetts Institute of Technology (MIT)", + "degree": "Master of Public Health (MPH)", + "fieldOfStudy": "Film Studies", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-02-04T20:10:37.693Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353292" + } + } + ], + "projects": [ + { + "name": "SmartCity", + "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", + "link": "https://github.com/username/smartcity", + "_id": { + "$oid": "666cbc4a40af7b375e353293" + } + }, + { + "name": "SmartGrid", + "description": "Smart grid technology for efficient energy distribution and consumption.", + "link": "https://github.com/username/smartgrid", + "_id": { + "$oid": "666cbc4a40af7b375e353294" + } + }, + { + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", + "_id": { + "$oid": "666cbc4a40af7b375e353295" + } + } + ], + "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", + "testimonials": [ + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e353296" + } + }, + { + "from": "Liam Harris", + "relation": "Lead Developer at CloudTech", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e353297" + } + } + ], + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Makers Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353290" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ed1" + }, + "firstName": "Randy", + "lastName": "Verriour", + "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "cohort": "PTRI 72", + "graduationYear": 2024, + "email": "rverriour1w@ebay.co.uk", + "linkedInProfile": "https://www.linkedin.com/in/Randy-Verriour-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": [ + "Docker", + "Communication Skills", + "Azure", + "FaaS (Function as a Service)", + "Critical Thinking", + "Machine Learning", + "Python", + "IoT (Internet of Things)", + "GraphQL", + "Performance Optimization", + "Code Review", + "Flask" + ], + "specializations": ["CI/CD", "Performance Optimization", "AWS"], + "careerInformation": { + "currentPosition": { "title": "DevOps Engineer", "company": "Netflix" }, + "pastPositions": [ + { + "title": "DevOps Engineer", + "company": "Stripe", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-06-25T23:54:55.671Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353299" + } + }, + { + "title": "Backend Developer", + "company": "Spotify", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-09-30T11:34:41.836Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35329a" + } + } + ] + }, + "education": [ + { + "institution": "University of California, Los Angeles (UCLA)", + "degree": "Master of Science (MS)", + "fieldOfStudy": "Mathematics", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-05-09T03:09:26.576Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35329b" + } + } + ], + "projects": [], + "personalBio": "Experienced in international collaboration and remote work, with a strong appreciation for cultural diversity.", + "testimonials": [ + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "666cbc4a40af7b375e35329c" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "666cbc4a40af7b375e35329d" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "_id": { + "$oid": "666cbc4a40af7b375e35329e" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "_id": { + "$oid": "666cbc4a40af7b375e35329f" + } + }, + { + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "_id": { + "$oid": "666cbc4a40af7b375e3532a0" + } + } + ], + "socialMediaLinks": { "twitter": "https://x.com/Randy-Verriour-fake", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Kenzie Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353298" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ed2" + }, + "firstName": "Israel", + "lastName": "Canti", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "CTRI 91", + "graduationYear": 2024, + "email": "icanti1x@businesswire.com", + "linkedInProfile": "https://www.linkedin.com/in/Israel-Canti-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": [], + "specializations": [ + "Data Warehousing", + "Kubernetes", + "Microservices", + "Integration Testing", + "Algorithm Design", + "SQL", + "Robotic Process Automation", + "Docker", + "Communication Skills", + "Object-Oriented Programming", + "SaaS (Software as a Service)", + "Pair Programming", + "Vue.js", + "Database Design", + "Collaboration", + "Parallel Computing", + "AR/VR (Augmented/Virtual Reality)" + ], + "careerInformation": { + "currentPosition": { "title": "Site Reliability Engineer", "company": "DoorDash" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "Columbia University", + "degree": "Professional Development", + "fieldOfStudy": "Computer Science", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-05-30T15:17:25.392Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532a2" + } + }, + { + "institution": "Harvard University", + "degree": "Associate Degree", + "fieldOfStudy": "Graphic Design", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-03-25T22:04:25.831Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532a3" + } + } + ], + "projects": [ + { + "name": "SocialConnect", + "description": "Social media integration platform for managing multiple social accounts.", + "link": "https://github.com/username/socialconnect", + "_id": { + "$oid": "666cbc4a40af7b375e3532a4" + } + }, + { + "name": "LearnHub", + "description": "Online learning platform offering courses on various subjects with interactive content.", + "link": "https://github.com/username/learnhub", + "_id": { + "$oid": "666cbc4a40af7b375e3532a5" + } + } + ], + "personalBio": "Detail-oriented developer with a strong foundation in algorithms and data structures.", + "testimonials": [ + { + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e3532a6" + } + }, + { + "from": "Aiden Walker", + "relation": "CTO at Innovate Solutions", + "text": "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", + "_id": { + "$oid": "666cbc4a40af7b375e3532a7" + } + }, + { + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e3532a8" + } + }, + { + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e3532a9" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Israel-Canti-fake", + "other": ["https://www.instagram.com/Israel-Canti-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "DevMountain", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3532a1" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ed3" + }, + "firstName": "Micky", + "lastName": "Dunseath", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "WCRI 33", + "graduationYear": 2024, + "email": "mdunseath1y@miibeian.gov.cn", + "linkedInProfile": "https://www.linkedin.com/in/Micky-Dunseath-fake", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "skills": [ + "System Design", + "Machine Learning", + "Software Architecture", + "Version Control", + "Communication Skills", + "Unit Testing", + "Integration Testing", + "Scrum", + "JavaScript", + "ETL (Extract, Transform, Load)", + "Infrastructure as Code", + "BDD (Behavior-Driven Development)", + "Data Warehousing", + "Python", + "Edge Computing", + "Vue.js" + ], + "specializations": ["Legacy Code Management"], + "careerInformation": { + "currentPosition": { "title": "Automation Engineer", "company": "Uber" }, + "pastPositions": [ + { + "title": "Site Reliability Engineer", + "company": "Epic Games", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-03-30T00:50:16.885Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532ab" + } + }, + { + "title": "Software Architect", + "company": "LinkedIn", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-04-04T00:19:20.434Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532ac" + } + }, + { + "title": "Engineering Manager", + "company": "DocuSign", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-09-09T01:44:32.037Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532ad" + } + }, + { + "title": "Technical Program Manager", + "company": "Activision Blizzard", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-08-29T02:18:48.718Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532ae" + } + }, + { + "title": "QA Engineer", + "company": "Epic Games", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-06-27T23:13:13.148Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532af" + } + } + ] + }, + "education": [ + { + "institution": "University of New South Wales (UNSW Sydney)", + "degree": "Master of Technology (MTech)", + "fieldOfStudy": "Physics", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-09-10T05:01:01.537Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532b0" + } + }, + { + "institution": "Georgia Institute of Technology", + "degree": "Doctor of Dental Medicine (DMD)", + "fieldOfStudy": "Chemistry", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-04-11T05:49:31.613Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532b1" + } + }, + { + "institution": "University College London (UCL)", + "degree": "Master of Education (MEd)", + "fieldOfStudy": "Information Technology", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-12-14T03:30:23.862Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532b2" + } + }, + { + "institution": "ETH Zurich - Swiss Federal Institute of Technology", + "degree": "Executive Education", + "fieldOfStudy": "Economics", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-08-30T06:43:26.717Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532b3" + } + } + ], + "projects": [ + { + "name": "HealthLink", + "description": "Telemedicine platform connecting patients with healthcare providers remotely.", + "link": "https://github.com/username/healthlink", + "_id": { + "$oid": "666cbc4a40af7b375e3532b4" + } + }, + { + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", + "_id": { + "$oid": "666cbc4a40af7b375e3532b5" + } + } + ], + "personalBio": "Experienced in both frontend and backend development, with a focus on creating elegant and efficient solutions.", + "testimonials": [ + { + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e3532b6" + } + }, + { + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "_id": { + "$oid": "666cbc4a40af7b375e3532b7" + } + }, + { + "from": "Olivia White", + "relation": "Tech Lead at Cloud Innovations", + "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "_id": { + "$oid": "666cbc4a40af7b375e3532b8" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Micky-Dunseath-fake", + "blog": "https://www.Micky-Dunseath-fake-blog.com", + "other": ["https://www.instagram.com/Micky-Dunseath-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Lambda School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3532aa" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ed4" + }, + "firstName": "Gabi", + "lastName": "Hardcastle", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "ECRI 16", + "graduationYear": 2024, + "email": "ghardcastle1z@weebly.com", + "linkedInProfile": "https://www.linkedin.com/in/Gabi-Hardcastle-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": ["Refactoring", "Docker"], + "specializations": ["Collaboration"], + "careerInformation": { + "currentPosition": { "title": "Technical Program Manager", "company": "Asana" }, + "pastPositions": [ + { + "title": "Data Scientist", + "company": "Salesforce", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-07-15T16:13:31.083Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532ba" + } + }, + { + "title": "Embedded Systems Engineer", + "company": "Twitter", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-09-08T02:44:17.700Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532bb" + } + }, + { + "title": "Web Developer", + "company": "Twitter", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-11-04T01:27:27.531Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532bc" + } + } + ] + }, + "education": [ + { + "institution": "University College London (UCL)", + "degree": "Doctor of Dental Surgery (DDS)", + "fieldOfStudy": "Urban Planning", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-10-31T07:34:05.608Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532bd" + } + }, + { + "institution": "University of Oregon", + "degree": "Postdoctoral Research", + "fieldOfStudy": "Statistics", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-12-25T23:25:23.761Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532be" + } + }, + { + "institution": "Kyoto University", + "degree": "Professional Degree", + "fieldOfStudy": "Chemistry", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-09-02T23:56:40.528Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532bf" + } + }, + { + "institution": "Case Western Reserve University", + "degree": "Doctor of Education (EdD)", + "fieldOfStudy": "Business Administration", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-09-03T21:47:28.188Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532c0" + } + } + ], + "projects": [], + "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", + "testimonials": [ + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e3532c1" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e3532c2" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e3532c3" + } + } + ], + "socialMediaLinks": { + "blog": "https://www.Gabi-Hardcastle-fake-blog.com", + "other": ["https://www.instagram.com/Gabi-Hardcastle-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Kenzie Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3532b9" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ed5" + }, + "firstName": "Rakel", + "lastName": "Scothron", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "ECRI 33", + "graduationYear": 2024, + "email": "rscothron20@yellowbook.com", + "linkedInProfile": "https://www.linkedin.com/in/Rakel-Scothron-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": [ + "Kubernetes", + "Data Science", + "Pair Programming", + "C++", + "Azure", + "C#", + "Agile Development", + "Graph Theory", + "ETL (Extract, Transform, Load)", + "Critical Thinking", + "Natural Language Processing", + "RESTful APIs", + "Spring Boot", + "Infrastructure as Code", + "Design Patterns", + "Flask" + ], + "specializations": [ + "Integration Testing", + "Object-Oriented Programming", + "Algorithm Design", + "AWS" + ], + "careerInformation": { + "currentPosition": { "title": "Lead Software Engineer", "company": "NVIDIA" }, + "pastPositions": [ + { + "title": "Security Engineer", + "company": "Apple", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-07-02T15:19:20.965Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532c5" + } + }, + { + "title": "Frontend Developer", + "company": "Epic Games", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-02-13T11:57:22.086Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532c6" + } + }, + { + "title": "QA Engineer", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-03-22T23:48:16.752Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532c7" + } + }, + { + "title": "Cloud Engineer", + "company": "Palantir", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-03-02T07:22:46.378Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532c8" + } + }, + { + "title": "Machine Learning Engineer", + "company": "Asana", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-09-06T03:36:18.633Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532c9" + } + } + ] + }, + "education": [ + { + "institution": "McGill University", + "degree": "Master of Arts (MA)", + "fieldOfStudy": "Communication Studies", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-01-02T17:14:59.264Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532ca" + } + }, + { + "institution": "University of Texas at Austin", + "degree": "Bachelor of Technology (BTech)", + "fieldOfStudy": "Theater", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-06-17T06:22:43.238Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532cb" + } + } + ], + "projects": [], + "personalBio": "Passionate about improving codebase efficiency through refactoring and performance tuning.", + "testimonials": [ + { + "from": "Aiden Walker", + "relation": "CTO at Innovate Solutions", + "text": "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", + "_id": { + "$oid": "666cbc4a40af7b375e3532cc" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "_id": { + "$oid": "666cbc4a40af7b375e3532cd" + } + }, + { + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e3532ce" + } + } + ], + "socialMediaLinks": { "other": ["https://www.instagram.com/Rakel-Scothron-fake"] }, + "availabilityForNetworking": false, + "bootcampExperience": "Makers Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3532c4" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ed6" + }, + "firstName": "Gretel", + "lastName": "Sitford", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "NYC 14", + "graduationYear": 2024, + "email": "gsitford21@tinyurl.com", + "linkedInProfile": "https://www.linkedin.com/in/Gretel-Sitford-fake", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "skills": [ + "Data Visualization", + "Pair Programming", + "Algorithm Design", + "TDD (Test-Driven Development)", + "Software Architecture", + "IoT (Internet of Things)", + "Integration Testing", + "Critical Thinking", + "Infrastructure as Code", + "Legacy Code Management", + "Concurrency", + "RESTful APIs" + ], + "specializations": ["Problem-Solving"], + "careerInformation": { + "currentPosition": { "title": "Technical Program Manager", "company": "Shopify" }, + "pastPositions": [ + { + "title": "AI Engineer", + "company": "Datadog", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-05-02T07:57:36.125Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532d0" + } + }, + { + "title": "Lead Software Engineer", + "company": "GitHub", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-09-05T03:23:53.286Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532d1" + } + }, + { + "title": "Mobile Developer", + "company": "NVIDIA", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-12-19T11:41:26.411Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532d2" + } + }, + { + "title": "Senior Software Engineer", + "company": "Apple", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-11-17T02:04:49.487Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532d3" + } + }, + { + "title": "Principal Software Engineer", + "company": "NVIDIA", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-04-11T19:19:55.091Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532d4" + } + } + ] + }, + "education": [ + { + "institution": "University of California, San Diego (UCSD)", + "degree": "Doctor of Business Administration (DBA)", + "fieldOfStudy": "Biology", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-12-13T16:41:16.536Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532d5" + } + }, + { + "institution": "University of Toronto", + "degree": "Master of Fine Arts (MFA)", + "fieldOfStudy": "Theater", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-07-21T09:43:39.920Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532d6" + } + }, + { + "institution": "University of Vermont", + "degree": "Bachelor of Business Administration (BBA)", + "fieldOfStudy": "Biomedical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-01-07T21:40:28.123Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532d7" + } + }, + { + "institution": "Rutgers University", + "degree": "High School Diploma", + "fieldOfStudy": "English Literature", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-06-04T07:01:26.695Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532d8" + } + } + ], + "projects": [ + { + "name": "FoodDelivery", + "description": "Online food delivery platform connecting restaurants with customers for food ordering.", + "link": "https://github.com/username/fooddelivery", + "_id": { + "$oid": "666cbc4a40af7b375e3532d9" + } + }, + { + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", + "_id": { + "$oid": "666cbc4a40af7b375e3532da" + } + }, + { + "name": "EduTech", + "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", + "link": "https://github.com/username/edutech", + "_id": { + "$oid": "666cbc4a40af7b375e3532db" + } + }, + { + "name": "EcoTech", + "description": "Environmental monitoring and conservation app with real-time data visualization.", + "link": "https://github.com/username/ecotech", + "_id": { + "$oid": "666cbc4a40af7b375e3532dc" + } + }, + { + "name": "EduTech", + "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", + "link": "https://github.com/username/edutech", + "_id": { + "$oid": "666cbc4a40af7b375e3532dd" + } + } + ], + "personalBio": "Devoted to fostering a collaborative team environment and mentoring junior developers.", + "testimonials": [ + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "666cbc4a40af7b375e3532de" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "666cbc4a40af7b375e3532df" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "666cbc4a40af7b375e3532e0" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Gretel-Sitford-fake", + "blog": "https://www.Gretel-Sitford-fake-blog.com", + "other": ["https://www.instagram.com/Gretel-Sitford-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Makers Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3532cf" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ed7" + }, + "firstName": "Rosalinda", + "lastName": "Naisby", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "LA 54", + "graduationYear": 2024, + "email": "rnaisby22@nationalgeographic.com", + "linkedInProfile": "https://www.linkedin.com/in/Rosalinda-Naisby-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": ["Vue.js"], + "specializations": [], + "careerInformation": { + "currentPosition": { "title": "Machine Learning Engineer", "company": "DocuSign" }, + "pastPositions": [ + { + "title": "Security Engineer", + "company": "Facebook", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-06-20T22:54:51.909Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532e2" + } + }, + { + "title": "Lead Software Engineer", + "company": "DoorDash", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-07-18T04:18:14.508Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532e3" + } + }, + { + "title": "Technical Lead", + "company": "Uber", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-01-13T08:51:36.424Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532e4" + } + }, + { + "title": "Embedded Systems Engineer", + "company": "Workday", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-12-02T23:32:39.899Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532e5" + } + }, + { + "title": "Software Developer", + "company": "Salesforce", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-06-29T08:15:53.328Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532e6" + } + } + ] + }, + "education": [ + { + "institution": "University of Sydney", + "degree": "Executive Education", + "fieldOfStudy": "History", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-04-02T08:44:29.766Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532e7" + } + }, + { + "institution": "ETH Zurich - Swiss Federal Institute of Technology", + "degree": "Master of Science (MS)", + "fieldOfStudy": "Linguistics", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-04-02T08:56:11.377Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532e8" + } + } + ], + "projects": [ + { + "name": "HealthLink", + "description": "Telemedicine platform connecting patients with healthcare providers remotely.", + "link": "https://github.com/username/healthlink", + "_id": { + "$oid": "666cbc4a40af7b375e3532e9" + } + }, + { + "name": "GenomeQuest", + "description": "Genomic data analysis tool for researchers and bioinformaticians.", + "link": "https://github.com/username/genomequest", + "_id": { + "$oid": "666cbc4a40af7b375e3532ea" + } + }, + { + "name": "CryptoTrack", + "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", + "link": "https://github.com/username/cryptotrack", + "_id": { + "$oid": "666cbc4a40af7b375e3532eb" + } + }, + { + "name": "RoboTrader", + "description": "Algorithmic trading platform for automated stock market analysis and trading.", + "link": "https://github.com/username/robotrader", + "_id": { + "$oid": "666cbc4a40af7b375e3532ec" + } + } + ], + "personalBio": "Experienced in international collaboration and remote work, with a strong appreciation for cultural diversity.", + "testimonials": [ + { + "from": "Emily Brown", + "relation": "Client at GlobalSoft Solutions", + "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e3532ed" + } + }, + { + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "_id": { + "$oid": "666cbc4a40af7b375e3532ee" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e3532ef" + } + } + ], + "socialMediaLinks": { + "blog": "https://www.Rosalinda-Naisby-fake-blog.com", + "other": ["https://www.instagram.com/Rosalinda-Naisby-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Lambda School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3532e1" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ed8" + }, + "firstName": "Thaddus", + "lastName": "Waddell", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "CTRI 80", + "graduationYear": 2024, + "email": "twaddell23@nymag.com", + "linkedInProfile": "https://www.linkedin.com/in/Thaddus-Waddell-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": [ + "Agile Development", + "SQL", + "Docker", + "System Design", + "Flask", + "API Development", + "Git" + ], + "specializations": [ + "Database Design", + "C++", + "Containerization", + "Azure", + "Object-Oriented Programming" + ], + "careerInformation": { + "currentPosition": { "title": "Technical Program Manager", "company": "IBM" }, + "pastPositions": [ + { + "title": "Lead Software Engineer", + "company": "Shopify", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-04-27T09:10:56.399Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532f1" + } + }, + { + "title": "Technical Program Manager", + "company": "DocuSign", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-12-24T04:43:47.881Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532f2" + } + }, + { + "title": "iOS Developer", + "company": "Atlassian", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-11-09T10:38:00.691Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532f3" + } + }, + { + "title": "Web Developer", + "company": "GitHub", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-04-15T12:20:28.947Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532f4" + } + }, + { + "title": "Principal Software Engineer", + "company": "Stripe", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-05-19T23:42:31.175Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532f5" + } + } + ] + }, + "education": [ + { + "institution": "University of Melbourne", + "degree": "Bachelor of Fine Arts (BFA)", + "fieldOfStudy": "Philosophy", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-06-22T06:10:34.284Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532f6" + } + }, + { + "institution": "Harvard University", + "degree": "Master of Public Health (MPH)", + "fieldOfStudy": "Veterinary Medicine", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-05-06T13:11:54.410Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3532f7" + } + } + ], + "projects": [ + { + "name": "MediCare", + "description": "Medical appointment scheduling and patient management system for healthcare providers.", + "link": "https://github.com/username/medicare", + "_id": { + "$oid": "666cbc4a40af7b375e3532f8" + } + }, + { + "name": "AugmentWorks", + "description": "Augmented reality application for enhancing workplace productivity and training.", + "link": "https://github.com/username/augmentworks", + "_id": { + "$oid": "666cbc4a40af7b375e3532f9" + } + }, + { + "name": "RoboTrader", + "description": "Algorithmic trading platform for automated stock market analysis and trading.", + "link": "https://github.com/username/robotrader", + "_id": { + "$oid": "666cbc4a40af7b375e3532fa" + } + }, + { + "name": "CloudStorage", + "description": "Cloud storage service with file synchronization and sharing capabilities.", + "link": "https://github.com/username/cloudstorage", + "_id": { + "$oid": "666cbc4a40af7b375e3532fb" + } + } + ], + "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", + "testimonials": [ + { + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "_id": { + "$oid": "666cbc4a40af7b375e3532fc" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e3532fd" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e3532fe" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e3532ff" + } + } + ], + "socialMediaLinks": { "twitter": "https://x.com/Thaddus-Waddell-fake", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Nucamp", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3532f0" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ed9" + }, + "firstName": "Nadia", + "lastName": "Zeale", + "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "cohort": "WCRI 3", + "graduationYear": 2024, + "email": "nzeale24@google.ru", + "linkedInProfile": "https://www.linkedin.com/in/Nadia-Zeale-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": [ + "ASP.NET", + "FaaS (Function as a Service)", + "Quantum Computing", + "C#", + "PaaS (Platform as a Service)", + "Communication Skills", + "DevOps" + ], + "specializations": [ + "Google Cloud Platform", + "HTML", + "Blockchain", + "Agile Development", + "Data Warehousing", + "Event-Driven Architecture", + "RESTful APIs", + "Ruby", + "BDD (Behavior-Driven Development)", + "Database Design", + "Cybersecurity", + "ASP.NET" + ], + "careerInformation": { + "currentPosition": { "title": "Junior Software Engineer", "company": "Oracle" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "Rutgers University", + "degree": "Associate Degree", + "fieldOfStudy": "Anthropology", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-06-18T17:54:04.738Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353301" + } + } + ], + "projects": [], + "personalBio": "Experienced in international collaboration and remote work, with a strong appreciation for cultural diversity.", + "testimonials": [ + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e353302" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "666cbc4a40af7b375e353303" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Nadia-Zeale-fake", + "blog": "https://www.Nadia-Zeale-fake-blog.com", + "other": ["https://www.instagram.com/Nadia-Zeale-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "App Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353300" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eda" + }, + "firstName": "Emmett", + "lastName": "Buckell", + "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "cohort": "ECRI 63", + "graduationYear": 2024, + "email": "ebuckell25@reddit.com", + "linkedInProfile": "https://www.linkedin.com/in/Emmett-Buckell-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": ["C#", "Edge Computing", "Pair Programming", "ASP.NET", "Vue.js"], + "specializations": [], + "careerInformation": { + "currentPosition": { "title": "Lead Software Engineer", "company": "Epic Games" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "University of British Columbia", + "degree": "Doctor of Business Administration (DBA)", + "fieldOfStudy": "Public Health", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-10-24T16:34:13.637Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353305" + } + }, + { + "institution": "Shanghai Jiao Tong University", + "degree": "Doctor of Dental Medicine (DMD)", + "fieldOfStudy": "Urban Planning", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-03-18T08:17:58.495Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353306" + } + } + ], + "projects": [ + { + "name": "VirtualTour", + "description": "Virtual reality tour application for immersive travel experiences.", + "link": "https://github.com/username/virtualtour", + "_id": { + "$oid": "666cbc4a40af7b375e353307" + } + }, + { + "name": "CryptoWallet", + "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", + "link": "https://github.com/username/cryptowallet", + "_id": { + "$oid": "666cbc4a40af7b375e353308" + } + }, + { + "name": "RecruitmentAI", + "description": "AI-powered recruitment platform for matching candidates with job opportunities.", + "link": "https://github.com/username/recruitmentai", + "_id": { + "$oid": "666cbc4a40af7b375e353309" + } + }, + { + "name": "TravelGuide", + "description": "Interactive travel guide application providing travel tips and destination insights.", + "link": "https://github.com/username/travelguide", + "_id": { + "$oid": "666cbc4a40af7b375e35330a" + } + }, + { + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", + "_id": { + "$oid": "666cbc4a40af7b375e35330b" + } + } + ], + "personalBio": "Focused on delivering user-centric solutions that address real-world needs and challenges.", + "testimonials": [ + { + "from": "Emily Brown", + "relation": "Client at GlobalSoft Solutions", + "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e35330c" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e35330d" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "_id": { + "$oid": "666cbc4a40af7b375e35330e" + } + } + ], + "socialMediaLinks": { + "blog": "https://www.Emmett-Buckell-fake-blog.com", + "other": ["https://www.instagram.com/Emmett-Buckell-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Fullstack Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353304" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352edb" + }, + "firstName": "Lavinia", + "lastName": "Baume", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "ECRI 85", + "graduationYear": 2024, + "email": "lbaume26@tinyurl.com", + "linkedInProfile": "https://www.linkedin.com/in/Lavinia-Baume-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": [ + "Graph Theory", + "Continuous Deployment", + "Natural Language Processing", + "Edge Computing" + ], + "specializations": [ + "Angular", + "Microservices", + "Performance Optimization", + "Collaboration", + "Data Science", + "Database Design", + "Graph Theory", + "Kubernetes", + "SQL", + "Object-Oriented Programming", + "AR/VR (Augmented/Virtual Reality)", + "Android Development" + ], + "careerInformation": { + "currentPosition": { "title": "Software Developer", "company": "Coinbase" }, + "pastPositions": [ + { + "title": "Web Developer", + "company": "PayPal", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-01-15T17:57:38.365Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353310" + } + }, + { + "title": "Data Scientist", + "company": "Airbnb", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-03-01T18:51:55.948Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353311" + } + }, + { + "title": "AI Engineer", + "company": "Google", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-07-16T20:58:33.818Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353312" + } + }, + { + "title": "Embedded Systems Engineer", + "company": "ServiceNow", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-08-08T22:20:09.961Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353313" + } + } + ] + }, + "education": [ + { + "institution": "California Institute of Technology (Caltech)", + "degree": "Doctor of Philosophy (PhD)", + "fieldOfStudy": "Physics", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-03-31T15:26:40.297Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353314" + } + }, + { + "institution": "Syracuse University", + "degree": "Doctoral Degree", + "fieldOfStudy": "Interior Design", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-09-22T20:33:44.519Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353315" + } + } + ], + "projects": [ + { + "name": "SmartWatch", + "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", + "link": "https://github.com/username/smartwatch", + "_id": { + "$oid": "666cbc4a40af7b375e353316" + } + }, + { + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", + "_id": { + "$oid": "666cbc4a40af7b375e353317" + } + }, + { + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", + "_id": { + "$oid": "666cbc4a40af7b375e353318" + } + }, + { + "name": "TourismApp", + "description": "Mobile application for tourists providing travel guides and local recommendations.", + "link": "https://github.com/username/tourismapp", + "_id": { + "$oid": "666cbc4a40af7b375e353319" + } + } + ], + "personalBio": "Driven by a passion for problem-solving and a commitment to continuous professional development.", + "testimonials": [ + { + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "_id": { + "$oid": "666cbc4a40af7b375e35331a" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e35331b" + } + } + ], + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Nucamp", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e35330f" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352edc" + }, + "firstName": "Janine", + "lastName": "Kitt", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "LA 38", + "graduationYear": 2024, + "email": "jkitt27@wsj.com", + "linkedInProfile": "https://www.linkedin.com/in/Janine-Kitt-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": [ + "Automated Testing", + "Refactoring", + "User Interface (UI) Design", + "TDD (Test-Driven Development)", + "BDD (Behavior-Driven Development)", + "Algorithm Design", + "Robotic Process Automation", + "Data Visualization", + "Infrastructure as Code", + "Machine Learning", + "Data Warehousing", + "Design Patterns", + "Graph Theory", + "Docker", + "CSS", + "React" + ], + "specializations": [ + "User Experience (UX) Design", + "Refactoring", + "Collaboration", + "C++", + "Cloud Computing", + "Database Design", + "TDD (Test-Driven Development)" + ], + "careerInformation": { + "currentPosition": { "title": "Frontend Developer", "company": "Epic Games" }, + "pastPositions": [ + { + "title": "Software Architect", + "company": "Red Hat", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-02-17T17:01:51.555Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35331d" + } + }, + { + "title": "Full Stack Developer", + "company": "Amazon", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-07-25T07:30:53.190Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35331e" + } + }, + { + "title": "Engineering Manager", + "company": "Asana", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-02-08T01:50:21.700Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35331f" + } + }, + { + "title": "QA Engineer", + "company": "Adobe", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-07-01T04:55:40.494Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353320" + } + } + ] + }, + "education": [ + { + "institution": "University of Melbourne", + "degree": "Master of Business Administration (MBA)", + "fieldOfStudy": "Information Technology", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-09-01T03:09:03.880Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353321" + } + }, + { + "institution": "University of California, Los Angeles (UCLA)", + "degree": "Professional Development", + "fieldOfStudy": "Theater", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-06-23T08:14:57.229Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353322" + } + }, + { + "institution": "Emory University", + "degree": "High School Diploma", + "fieldOfStudy": "English Literature", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-10-04T10:18:05.187Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353323" + } + }, + { + "institution": "University of Colorado Boulder", + "degree": "Postdoctoral Research", + "fieldOfStudy": "Finance", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-02-20T07:14:21.268Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353324" + } + } + ], + "projects": [ + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "666cbc4a40af7b375e353325" + } + }, + { + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", + "_id": { + "$oid": "666cbc4a40af7b375e353326" + } + }, + { + "name": "SecureChat", + "description": "End-to-end encrypted messaging app ensuring user privacy and security.", + "link": "https://github.com/username/securechat", + "_id": { + "$oid": "666cbc4a40af7b375e353327" + } + }, + { + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", + "_id": { + "$oid": "666cbc4a40af7b375e353328" + } + }, + { + "name": "MediCare", + "description": "Medical appointment scheduling and patient management system for healthcare providers.", + "link": "https://github.com/username/medicare", + "_id": { + "$oid": "666cbc4a40af7b375e353329" + } + } + ], + "personalBio": "Passionate about contributing to the tech community through open-source projects and knowledge sharing.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Janine-Kitt-fake", + "other": ["https://www.instagram.com/Janine-Kitt-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Galvanize", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e35331c" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352edd" + }, + "firstName": "Beatrix", + "lastName": "Healey", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "FTRI 55", + "graduationYear": 2024, + "email": "bhealey28@amazon.co.jp", + "linkedInProfile": "https://www.linkedin.com/in/Beatrix-Healey-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": [ + "Django", + "Machine Learning", + "Data Visualization", + "Critical Thinking", + "Legacy Code Management", + "Blockchain", + "Microservices", + "Graph Databases", + "Edge Computing", + "Agile Development", + "Containerization", + "Version Control", + "Functional Programming", + "Reactive Programming" + ], + "specializations": [ + "ASP.NET", + "PaaS (Platform as a Service)", + "Automated Testing", + "Serverless Architecture", + "Project Management", + "Java", + "Android Development", + "Cybersecurity", + "Scrum", + "HTML", + "CI/CD", + "C++", + "Containerization", + "Google Cloud Platform" + ], + "careerInformation": { + "currentPosition": { "title": "Senior Software Engineer", "company": "GitHub" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "University of Arizona", + "degree": "Executive Education", + "fieldOfStudy": "Mathematics", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-03-29T07:46:46.081Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35332b" + } + }, + { + "institution": "University of Connecticut", + "degree": "Master of Public Health (MPH)", + "fieldOfStudy": "Finance", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-09-10T07:44:41.199Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35332c" + } + } + ], + "projects": [], + "personalBio": "Passionate about leveraging data-driven insights to optimize software performance and user engagement.", + "testimonials": [ + { + "from": "Olivia White", + "relation": "Tech Lead at Cloud Innovations", + "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "_id": { + "$oid": "666cbc4a40af7b375e35332d" + } + }, + { + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e35332e" + } + } + ], + "socialMediaLinks": { "twitter": "https://x.com/Beatrix-Healey-fake", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Galvanize", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e35332a" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ede" + }, + "firstName": "Simone", + "lastName": "Buske", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "FTRI 91", + "graduationYear": 2024, + "email": "sbuske29@soundcloud.com", + "linkedInProfile": "https://www.linkedin.com/in/Simone-Buske-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "skills": [ + "TDD (Test-Driven Development)", + "System Design", + "Concurrency", + "Refactoring", + "Continuous Deployment", + "Pair Programming", + "Parallel Computing", + "Software Architecture", + "API Integration", + "ETL (Extract, Transform, Load)", + "IoT (Internet of Things)", + "Mobile Development", + "HTML", + "Vue.js", + "Deep Learning", + "Unit Testing", + "Performance Optimization" + ], + "specializations": [ + "Blockchain", + "Functional Programming", + "Parallel Computing", + "Communication Skills", + "Git", + "Continuous Deployment", + "WebSockets", + "SaaS (Software as a Service)" + ], + "careerInformation": { + "currentPosition": { "title": "Cloud Engineer", "company": "Qualcomm" }, + "pastPositions": [ + { + "title": "Full Stack Developer", + "company": "Epic Games", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-02-08T08:35:01.824Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353330" + } + }, + { + "title": "Mobile Developer", + "company": "Uber", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-09-24T04:19:29.280Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353331" + } + }, + { + "title": "Embedded Systems Engineer", + "company": "Adobe", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-05-30T18:59:51.554Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353332" + } + } + ] + }, + "education": [ + { + "institution": "Georgetown University", + "degree": "Doctor of Veterinary Medicine (DVM)", + "fieldOfStudy": "Fine Arts", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2026-04-21T19:29:38.750Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353333" + } + }, + { + "institution": "University of Pennsylvania", + "degree": "Bachelor of Arts (BA)", + "fieldOfStudy": "Biochemistry", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-07-04T23:54:50.134Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353334" + } + }, + { + "institution": "ETH Zurich - Swiss Federal Institute of Technology", + "degree": "Continuing Education", + "fieldOfStudy": "Veterinary Medicine", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2024-08-25T20:30:14.428Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353335" + } + } + ], + "projects": [ + { + "name": "HealthLink", + "description": "Telemedicine platform connecting patients with healthcare providers remotely.", + "link": "https://github.com/username/healthlink", + "_id": { + "$oid": "666cbc4a40af7b375e353336" + } + }, + { + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", + "_id": { + "$oid": "666cbc4a40af7b375e353337" + } + } + ], + "personalBio": "Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.", + "testimonials": [ + { + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "_id": { + "$oid": "666cbc4a40af7b375e353338" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "_id": { + "$oid": "666cbc4a40af7b375e353339" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Simone-Buske-fake", + "blog": "https://www.Simone-Buske-fake-blog.com", + "other": ["https://www.instagram.com/Simone-Buske-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Coding Dojo", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e35332f" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352edf" + }, + "firstName": "Cristine", + "lastName": "Gaddesby", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "CTRI 84", + "graduationYear": 2024, + "email": "cgaddesby2a@senate.gov", + "linkedInProfile": "https://www.linkedin.com/in/Cristine-Gaddesby-fake", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "skills": ["Data Warehousing", "Machine Learning", "Pair Programming"], + "specializations": [ + "SaaS (Software as a Service)", + "Node.js", + "Data Warehousing", + "NoSQL", + "Flask", + "Laravel" + ], + "careerInformation": { + "currentPosition": { "title": "Test Engineer", "company": "Zoom" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "Case Western Reserve University", + "degree": "Diploma Program", + "fieldOfStudy": "Civil Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-03-27T09:57:41.786Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35333b" + } + }, + { + "institution": "University of Rochester", + "degree": "Master of Education (MEd)", + "fieldOfStudy": "Journalism", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2025-04-15T22:19:31.690Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35333c" + } + }, + { + "institution": "Peking University", + "degree": "Continuing Education", + "fieldOfStudy": "Information Technology", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2028-03-10T11:50:07.094Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35333d" + } + } + ], + "projects": [ + { + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", + "_id": { + "$oid": "666cbc4a40af7b375e35333e" + } + }, + { + "name": "CryptoWallet", + "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", + "link": "https://github.com/username/cryptowallet", + "_id": { + "$oid": "666cbc4a40af7b375e35333f" + } + } + ], + "personalBio": "Experienced in Agile methodologies, with a track record of delivering projects on time and within budget.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Cristine-Gaddesby-fake", + "other": ["https://www.instagram.com/Cristine-Gaddesby-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Kenzie Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e35333a" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ee0" + }, + "firstName": "Marta", + "lastName": "Daveren", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "NYC 12", + "graduationYear": 2024, + "email": "mdaveren2b@odnoklassniki.ru", + "linkedInProfile": "https://www.linkedin.com/in/Marta-Daveren-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "skills": [ + "CSS", + "Node.js", + "Infrastructure as Code", + "AWS", + "RESTful APIs", + "Azure", + "Edge Computing", + "ASP.NET" + ], + "specializations": [ + "React", + "Node.js", + "Project Management", + "PaaS (Platform as a Service)", + "CSS", + "Pair Programming", + "Machine Learning", + "Functional Programming", + "Edge Computing", + "GraphQL", + "Version Control", + "JavaScript", + "BDD (Behavior-Driven Development)" + ], + "careerInformation": { + "currentPosition": { "title": "Site Reliability Engineer", "company": "Twilio" }, + "pastPositions": [ + { + "title": "Lead Software Engineer", + "company": "Dropbox", + "startDate": { + "$date": "2024-06-14T21:55:22.547Z" + }, + "endDate": { + "$date": "2027-10-04T02:27:21.990Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353341" + } + }, + { + "title": "Software Developer", + "company": "NVIDIA", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2027-10-28T01:24:21.024Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353342" + } + }, + { + "title": "Engineering Manager", + "company": "Qualcomm", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-11-14T13:52:26.833Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353343" + } + }, + { + "title": "iOS Developer", + "company": "PayPal", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2028-02-01T07:57:30.860Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353344" + } + } + ] + }, + "education": [ + { + "institution": "University of Alberta", + "degree": "Master of Technology (MTech)", + "fieldOfStudy": "Music", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-12-19T04:20:35.165Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353345" + } + }, + { + "institution": "University of California, Los Angeles (UCLA)", + "degree": "Doctor of Business Administration (DBA)", + "fieldOfStudy": "Education", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-01-08T06:18:54.345Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353346" + } + }, + { + "institution": "Carnegie Mellon University", + "degree": "Technical School Certification", + "fieldOfStudy": "Physics", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2026-11-17T19:43:59.730Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353347" + } + }, + { + "institution": "University of Delaware", + "degree": "Master of Public Administration (MPA)", + "fieldOfStudy": "Physics", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2028-05-01T14:44:50.025Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353348" + } + } + ], + "projects": [ + { + "name": "NetPlanner", + "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", + "link": "https://github.com/username/netplanner", + "_id": { + "$oid": "666cbc4a40af7b375e353349" + } + }, + { + "name": "RecruitmentAI", + "description": "AI-powered recruitment platform for matching candidates with job opportunities.", + "link": "https://github.com/username/recruitmentai", + "_id": { + "$oid": "666cbc4a40af7b375e35334a" + } + } + ], + "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", + "testimonials": [], + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "CareerFoundry", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353340" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ee1" + }, + "firstName": "Nanon", + "lastName": "Gligoraci", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "CTRI 90", + "graduationYear": 2024, + "email": "ngligoraci2c@addthis.com", + "linkedInProfile": "https://www.linkedin.com/in/Nanon-Gligoraci-fake", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "skills": [ + "Deep Learning", + "Integration Testing", + "DevOps", + "Big Data", + "Refactoring", + "Data Visualization", + "Git", + "Cloud Computing" + ], + "specializations": [ + "Docker", + "NoSQL", + "Integration Testing", + "Git", + "Leadership", + "Legacy Code Management", + "Technical Writing", + "Flask", + "Robotic Process Automation", + "Graph Theory", + "Collaboration", + "DevOps", + "Kubernetes", + "System Design", + "API Development", + "Data Warehousing" + ], + "careerInformation": { + "currentPosition": { "title": "Embedded Systems Engineer", "company": "Microsoft" }, + "pastPositions": [ + { + "title": "iOS Developer", + "company": "Airbnb", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2026-11-20T20:15:57.307Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35334c" + } + }, + { + "title": "DevOps Engineer", + "company": "Tesla", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2026-12-25T07:14:44.217Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35334d" + } + }, + { + "title": "Product Manager", + "company": "LinkedIn", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-02-15T17:22:23.777Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35334e" + } + }, + { + "title": "Frontend Developer", + "company": "ServiceNow", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2027-06-06T12:17:17.858Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35334f" + } + }, + { + "title": "Product Manager", + "company": "Twilio", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-10-20T21:40:29.537Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353350" + } + } + ] + }, + "education": [ + { + "institution": "University of Miami", + "degree": "Master of Fine Arts (MFA)", + "fieldOfStudy": "Civil Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2024-12-31T06:06:37.260Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353351" + } + }, + { + "institution": "National University of Singapore (NUS)", + "degree": "Master of Engineering (ME)", + "fieldOfStudy": "Biology", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2026-08-14T04:52:45.694Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353352" + } + } + ], + "projects": [ + { + "name": "RoboTrader", + "description": "Algorithmic trading platform for automated stock market analysis and trading.", + "link": "https://github.com/username/robotrader", + "_id": { + "$oid": "666cbc4a40af7b375e353353" + } + }, + { + "name": "EduTech", + "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", + "link": "https://github.com/username/edutech", + "_id": { + "$oid": "666cbc4a40af7b375e353354" + } + }, + { + "name": "CloudGuard", + "description": "Advanced cloud security suite ensuring data protection and compliance.", + "link": "https://github.com/username/cloudguard", + "_id": { + "$oid": "666cbc4a40af7b375e353355" + } + } + ], + "personalBio": "Advocate for diversity and inclusion in the tech industry, fostering a welcoming and supportive workplace culture.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Nanon-Gligoraci-fake", + "blog": "https://www.Nanon-Gligoraci-fake-blog.com", + "other": ["https://www.instagram.com/Nanon-Gligoraci-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Tech Elevator", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e35334b" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ee2" + }, + "firstName": "Donall", + "lastName": "Frapwell", + "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "cohort": "CTRI 61", + "graduationYear": 2024, + "email": "dfrapwell2d@hostgator.com", + "linkedInProfile": "https://www.linkedin.com/in/Donall-Frapwell-fake", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "skills": [ + "System Design", + "HTML", + "Legacy Code Management", + "Kubernetes", + "Git", + "Microservices", + "Graph Theory", + "Functional Programming", + "TDD (Test-Driven Development)", + "Reactive Programming", + "Problem-Solving", + "Continuous Deployment", + "SQL", + "Code Review", + "Integration Testing", + "User Interface (UI) Design", + "Infrastructure as Code" + ], + "specializations": [ + "Node.js", + "FaaS (Function as a Service)", + "Django", + "C++", + "Communication Skills", + "Cybersecurity", + "Automated Testing", + "iOS Development", + "Pair Programming", + "BDD (Behavior-Driven Development)", + "Refactoring", + "Java", + "API Integration", + "Quantum Computing" + ], + "careerInformation": { + "currentPosition": { "title": "QA Engineer", "company": "Datadog" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "New York University (NYU)", + "degree": "Technical School Certification", + "fieldOfStudy": "Chemical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2026-11-01T21:29:28.771Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353357" + } + }, + { + "institution": "Stanford University", + "degree": "Master of Technology (MTech)", + "fieldOfStudy": "Physics", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2024-09-21T23:32:57.603Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353358" + } + }, + { + "institution": "Columbia University", + "degree": "Doctor of Business Administration (DBA)", + "fieldOfStudy": "Pharmacy", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2026-11-13T12:02:15.793Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353359" + } + }, + { + "institution": "University of Virginia", + "degree": "Doctor of Dental Medicine (DMD)", + "fieldOfStudy": "Finance", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-12-20T05:25:36.625Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35335a" + } + } + ], + "projects": [], + "personalBio": "Proactive learner constantly exploring emerging technologies and trends in the software industry.", + "testimonials": [], + "socialMediaLinks": { "blog": "https://www.Donall-Frapwell-fake-blog.com", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "BrainStation", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353356" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ee3" + }, + "firstName": "Beverlee", + "lastName": "Bangham", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "NYC 5", + "graduationYear": 2024, + "email": "bbangham2e@tamu.edu", + "linkedInProfile": "https://www.linkedin.com/in/Beverlee-Bangham-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "skills": ["ASP.NET", "Object-Oriented Programming", "User Experience (UX) Design"], + "specializations": [ + "Vue.js", + "Pair Programming", + "Kubernetes", + "NoSQL", + "Google Cloud Platform", + "TDD (Test-Driven Development)", + "Containerization", + "JavaScript", + "Version Control", + "Graph Databases", + "Angular" + ], + "careerInformation": { + "currentPosition": { "title": "Technical Program Manager", "company": "Palantir" }, + "pastPositions": [ + { + "title": "Test Engineer", + "company": "Palantir", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2026-05-10T00:44:31.429Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35335c" + } + }, + { + "title": "Frontend Developer", + "company": "Snowflake", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2024-12-31T21:13:51.662Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35335d" + } + }, + { + "title": "DevOps Engineer", + "company": "Cisco", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2028-04-10T00:58:00.085Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35335e" + } + }, + { + "title": "Lead Software Engineer", + "company": "Spotify", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-02-03T05:57:28.475Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35335f" + } + }, + { + "title": "Software Engineer", + "company": "Shopify", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2027-05-03T06:16:47.591Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353360" + } + } + ] + }, + "education": [ + { + "institution": "University of Queensland", + "degree": "Bachelor of Arts (BA)", + "fieldOfStudy": "Mechanical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2027-12-23T23:01:11.554Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353361" + } + }, + { + "institution": "Syracuse University", + "degree": "Associate Degree", + "fieldOfStudy": "History", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2027-09-02T06:40:47.962Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353362" + } + } + ], + "projects": [], + "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", + "testimonials": [ + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e353363" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e353364" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e353365" + } + } + ], + "socialMediaLinks": { "other": ["https://www.instagram.com/Beverlee-Bangham-fake"] }, + "availabilityForNetworking": false, + "bootcampExperience": "Kenzie Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e35335b" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ee4" + }, + "firstName": "Englebert", + "lastName": "Bancroft", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "NYC 55", + "graduationYear": 2024, + "email": "ebancroft2f@ow.ly", + "linkedInProfile": "https://www.linkedin.com/in/Englebert-Bancroft-fake", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "skills": [ + "Kubernetes", + "System Design", + "SQL", + "TDD (Test-Driven Development)", + "Data Science", + "Mobile Development", + "SaaS (Software as a Service)", + "Data Visualization", + "C++", + "AR/VR (Augmented/Virtual Reality)", + "JavaScript", + "WebSockets", + "Quantum Computing", + "Communication Skills" + ], + "specializations": [ + "Data Science", + "Azure", + "Project Management", + "Time Management", + "Database Design", + "Leadership", + "Laravel", + "Code Review", + "Graph Databases", + "Problem-Solving", + "Unit Testing", + "Spring Boot", + "SaaS (Software as a Service)", + "Google Cloud Platform", + "Android Development" + ], + "careerInformation": { + "currentPosition": { "title": "Backend Developer", "company": "Coinbase" }, + "pastPositions": [ + { + "title": "Full Stack Developer", + "company": "Snapchat", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2027-07-09T11:03:20.965Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353367" + } + }, + { + "title": "iOS Developer", + "company": "Robinhood", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-04-29T08:32:36.965Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353368" + } + } + ] + }, + "education": [ + { + "institution": "University of Florida", + "degree": "Doctoral Degree", + "fieldOfStudy": "Electrical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2026-01-21T04:02:35.623Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353369" + } + }, + { + "institution": "Seoul National University", + "degree": "Doctor of Medicine (MD)", + "fieldOfStudy": "Urban Planning", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2024-06-16T14:32:46.003Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35336a" + } + }, + { + "institution": "University of Cambridge", + "degree": "Master of Education (MEd)", + "fieldOfStudy": "Electrical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2026-09-30T14:49:45.527Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35336b" + } + }, + { + "institution": "University College London (UCL)", + "degree": "Master's Degree", + "fieldOfStudy": "Mathematics", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-08-28T16:04:30.448Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35336c" + } + } + ], + "projects": [ + { + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", + "_id": { + "$oid": "666cbc4a40af7b375e35336d" + } + }, + { + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", + "_id": { + "$oid": "666cbc4a40af7b375e35336e" + } + }, + { + "name": "SmartLearning", + "description": "AI-driven personalized learning platform with adaptive learning algorithms.", + "link": "https://github.com/username/smartlearning", + "_id": { + "$oid": "666cbc4a40af7b375e35336f" + } + } + ], + "personalBio": "Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.", + "testimonials": [ + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "_id": { + "$oid": "666cbc4a40af7b375e353370" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e353371" + } + } + ], + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Springboard", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353366" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ee5" + }, + "firstName": "Siegfried", + "lastName": "Castillou", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "WCRI 11", + "graduationYear": 2024, + "email": "scastillou2g@reddit.com", + "linkedInProfile": "https://www.linkedin.com/in/Siegfried-Castillou-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": ["Cloud Computing", "Big Data"], + "specializations": [ + "Functional Programming", + "DevOps", + "Communication Skills", + "Agile Development", + "Parallel Computing", + "AWS", + "SaaS (Software as a Service)", + "Graph Theory", + "PaaS (Platform as a Service)", + "Flask", + "Containerization", + "Leadership", + "CI/CD", + "Laravel", + "CSS", + "BDD (Behavior-Driven Development)", + "Collaboration", + "Concurrency", + "Legacy Code Management" + ], + "careerInformation": { + "currentPosition": { "title": "Software Developer", "company": "Workday" }, + "pastPositions": [ + { + "title": "DevOps Engineer", + "company": "Shopify", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2024-11-27T16:07:49.562Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353373" + } + }, + { + "title": "Software Architect", + "company": "Asana", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2024-11-03T08:50:28.490Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353374" + } + }, + { + "title": "Product Manager", + "company": "Palantir", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2024-10-26T01:46:46.580Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353375" + } + }, + { + "title": "Data Scientist", + "company": "PayPal", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2027-07-30T00:13:21.798Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353376" + } + } + ] + }, + "education": [ + { + "institution": "University of California, Los Angeles (UCLA)", + "degree": "Bachelor of Science (BS)", + "fieldOfStudy": "Anthropology", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-07-22T20:46:02.552Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353377" + } + }, + { + "institution": "University of California, Santa Barbara (UCSB)", + "degree": "Bachelor's Degree", + "fieldOfStudy": "Theater", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-10-22T19:16:13.235Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353378" + } + }, + { + "institution": "Brown University", + "degree": "Bachelor of Arts (BA)", + "fieldOfStudy": "Interior Design", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2028-06-03T13:18:54.763Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353379" + } + }, + { + "institution": "Stanford University", + "degree": "Bachelor of Fine Arts (BFA)", + "fieldOfStudy": "Management", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-03-30T13:23:28.971Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35337a" + } + } + ], + "projects": [ + { + "name": "SmartCity", + "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", + "link": "https://github.com/username/smartcity", + "_id": { + "$oid": "666cbc4a40af7b375e35337b" + } + }, + { + "name": "VirtualAssistant", + "description": "Virtual assistant software for voice command-based tasks and personal assistance.", + "link": "https://github.com/username/virtualassistant", + "_id": { + "$oid": "666cbc4a40af7b375e35337c" + } + } + ], + "personalBio": "Passionate about leveraging data-driven insights to optimize software performance and user engagement.", + "testimonials": [ + { + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e35337d" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e35337e" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e35337f" + } + }, + { + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "_id": { + "$oid": "666cbc4a40af7b375e353380" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "666cbc4a40af7b375e353381" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Siegfried-Castillou-fake", + "blog": "https://www.Siegfried-Castillou-fake-blog.com", + "other": ["https://www.instagram.com/Siegfried-Castillou-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Thinkful", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353372" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ee6" + }, + "firstName": "Marvin", + "lastName": "Cranke", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "NYC 48", + "graduationYear": 2024, + "email": "mcranke2h@marketwatch.com", + "linkedInProfile": "https://www.linkedin.com/in/Marvin-Cranke-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": [ + "Django", + "Legacy Code Management", + "Cybersecurity", + "Refactoring", + "Azure", + "Continuous Deployment", + "CI/CD" + ], + "specializations": [ + "Git", + "Serverless Architecture", + "Pair Programming", + "Event-Driven Architecture", + "Continuous Deployment", + "SaaS (Software as a Service)", + "Design Patterns", + "FaaS (Function as a Service)", + "Deep Learning", + "React", + "User Experience (UX) Design", + "Cybersecurity", + "ETL (Extract, Transform, Load)", + "Technical Writing" + ], + "careerInformation": { + "currentPosition": { "title": "Web Developer", "company": "Twilio" }, + "pastPositions": [ + { + "title": "iOS Developer", + "company": "Netflix", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2024-09-03T18:27:08.319Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353383" + } + }, + { + "title": "Software Developer", + "company": "Intel", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2024-07-31T19:47:55.607Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353384" + } + }, + { + "title": "Cloud Engineer", + "company": "Amazon", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2027-06-18T21:51:03.447Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353385" + } + }, + { + "title": "iOS Developer", + "company": "Pinterest", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2024-11-16T00:10:09.896Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353386" + } + } + ] + }, + "education": [ + { + "institution": "Michigan State University", + "degree": "Master of Business Administration (MBA)", + "fieldOfStudy": "Finance", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2027-08-08T17:49:03.249Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353387" + } + }, + { + "institution": "University of Chicago", + "degree": "Associate Degree", + "fieldOfStudy": "Marketing", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2028-02-24T02:42:40.425Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353388" + } + }, + { + "institution": "Shanghai Jiao Tong University", + "degree": "Doctor of Medicine (MD)", + "fieldOfStudy": "Psychology", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2024-10-28T03:04:20.018Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353389" + } + }, + { + "institution": "University of Hong Kong (HKU)", + "degree": "Bachelor of Technology (BTech)", + "fieldOfStudy": "Anthropology", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2027-12-09T19:26:48.702Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35338a" + } + } + ], + "projects": [], + "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", + "testimonials": [ + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "666cbc4a40af7b375e35338b" + } + }, + { + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "_id": { + "$oid": "666cbc4a40af7b375e35338c" + } + } + ], + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Ironhack", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353382" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ee7" + }, + "firstName": "Arne", + "lastName": "Rummin", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "LA 59", + "graduationYear": 2024, + "email": "arummin2i@is.gd", + "linkedInProfile": "https://www.linkedin.com/in/Arne-Rummin-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "skills": [ + "Event-Driven Architecture", + "HTML", + "Database Design", + "Time Management", + "Infrastructure as Code", + "Integration Testing", + "FaaS (Function as a Service)", + "Version Control", + "Algorithm Design", + "API Development" + ], + "specializations": [ + "Java", + "Agile Development", + "Laravel", + "NoSQL", + "Version Control", + "PaaS (Platform as a Service)", + "AR/VR (Augmented/Virtual Reality)", + "Natural Language Processing", + "Vue.js", + "Data Visualization", + "iOS Development", + "Algorithm Design", + "SaaS (Software as a Service)", + "Data Science" + ], + "careerInformation": { + "currentPosition": { "title": "AI Engineer", "company": "Netflix" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "EPFL - ร‰cole Polytechnique Fรฉdรฉrale de Lausanne", + "degree": "Postdoctoral Research", + "fieldOfStudy": "Music", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-04-08T01:03:30.802Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35338e" + } + } + ], + "projects": [], + "personalBio": "Advocate for diversity and inclusion in the tech industry, fostering a welcoming and supportive workplace culture.", + "testimonials": [ + { + "from": "Lucas Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", + "_id": { + "$oid": "666cbc4a40af7b375e35338f" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "_id": { + "$oid": "666cbc4a40af7b375e353390" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Arne-Rummin-fake", + "blog": "https://www.Arne-Rummin-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Nucamp", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e35338d" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ee8" + }, + "firstName": "Seumas", + "lastName": "Feldberger", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "FTRI 9", + "graduationYear": 2024, + "email": "sfeldberger2j@ning.com", + "linkedInProfile": "https://www.linkedin.com/in/Seumas-Feldberger-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": [ + "Database Design", + "Git", + "Spring Boot", + "React", + "JavaScript", + "API Integration", + "Android Development", + "Continuous Deployment" + ], + "specializations": [ + "React", + "Docker", + "Azure", + "Communication Skills", + "Big Data", + "Algorithm Design" + ], + "careerInformation": { + "currentPosition": { "title": "Web Developer", "company": "IBM" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "University of Delaware", + "degree": "Technical School Certification", + "fieldOfStudy": "Anthropology", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-12-09T04:03:21.565Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353392" + } + }, + { + "institution": "Massachusetts Institute of Technology (MIT)", + "degree": "Doctoral Degree", + "fieldOfStudy": "Theater", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2028-02-14T22:45:58.384Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353393" + } + }, + { + "institution": "Brigham Young University", + "degree": "Bachelor of Arts (BA)", + "fieldOfStudy": "Film Studies", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2026-07-01T16:16:09.310Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e353394" + } + } + ], + "projects": [ + { + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", + "_id": { + "$oid": "666cbc4a40af7b375e353395" + } + }, + { + "name": "RecruitmentAI", + "description": "AI-powered recruitment platform for matching candidates with job opportunities.", + "link": "https://github.com/username/recruitmentai", + "_id": { + "$oid": "666cbc4a40af7b375e353396" + } + }, + { + "name": "HealthLink", + "description": "Telemedicine platform connecting patients with healthcare providers remotely.", + "link": "https://github.com/username/healthlink", + "_id": { + "$oid": "666cbc4a40af7b375e353397" + } + } + ], + "personalBio": "Experienced in Agile methodologies, with a track record of delivering projects on time and within budget.", + "testimonials": [ + { + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e353398" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "666cbc4a40af7b375e353399" + } + }, + { + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "_id": { + "$oid": "666cbc4a40af7b375e35339a" + } + }, + { + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e35339b" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Seumas-Feldberger-fake-blog.com", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "The Tech Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e353391" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ee9" + }, + "firstName": "Hilda", + "lastName": "Worham", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "ECRI 21", + "graduationYear": 2024, + "email": "hworham2k@mail.ru", + "linkedInProfile": "https://www.linkedin.com/in/Hilda-Worham-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": [ + "Event-Driven Architecture", + "Functional Programming", + "Graph Theory", + "Containerization", + "BDD (Behavior-Driven Development)", + "Quantum Computing", + "SaaS (Software as a Service)", + "Serverless Architecture", + "Version Control", + "Collaboration", + "Parallel Computing", + "DevOps", + "Vue.js", + "CI/CD" + ], + "specializations": [ + "Flask", + "Performance Optimization", + "Software Architecture", + "Google Cloud Platform", + "Database Design", + "AWS", + "Android Development", + "Laravel", + "Java", + "User Interface (UI) Design", + "API Integration", + "Refactoring", + "Big Data", + "Git", + "Ruby", + "Algorithm Design", + "Technical Writing", + "System Design", + "CSS" + ], + "careerInformation": { + "currentPosition": { "title": "Full Stack Developer", "company": "Salesforce" }, + "pastPositions": [ + { + "title": "Backend Developer", + "company": "Datadog", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-06-24T01:48:34.223Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35339d" + } + }, + { + "title": "Software Developer", + "company": "Amazon", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2027-02-15T11:30:23.809Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35339e" + } + }, + { + "title": "Technical Lead", + "company": "Adobe", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-03-01T02:22:10.904Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e35339f" + } + }, + { + "title": "Data Engineer", + "company": "Asana", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2026-08-23T16:54:39.200Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533a0" + } + } + ] + }, + "education": [ + { + "institution": "University of Massachusetts Amherst", + "degree": "Master of Science (MS)", + "fieldOfStudy": "Business Administration", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2027-01-30T08:18:20.083Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533a1" + } + }, + { + "institution": "University of Arizona", + "degree": "Bachelor's Degree", + "fieldOfStudy": "Urban Planning", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2027-12-13T04:47:33.060Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533a2" + } + } + ], + "projects": [], + "personalBio": "Adept at optimizing SQL and NoSQL databases for performance and scalability.", + "testimonials": [], + "socialMediaLinks": { "other": ["https://www.instagram.com/Hilda-Worham-fake"] }, + "availabilityForNetworking": false, + "bootcampExperience": "General Assembly", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e35339c" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eea" + }, + "firstName": "Winny", + "lastName": "O'Glessane", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "PTRI 50", + "graduationYear": 2024, + "email": "woglessane2l@deviantart.com", + "linkedInProfile": "https://www.linkedin.com/in/Winny-O'Glessane-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "skills": [ + "Pair Programming", + "Azure", + "Quantum Computing", + "Docker", + "Parallel Computing", + "Graph Databases" + ], + "specializations": [ + "SaaS (Software as a Service)", + "Python", + "Reactive Programming", + "JavaScript", + "API Integration", + "C#", + "Collaboration", + "TDD (Test-Driven Development)", + "Android Development", + "PaaS (Platform as a Service)" + ], + "careerInformation": { + "currentPosition": { "title": "QA Engineer", "company": "VMware" }, + "pastPositions": [ + { + "title": "Principal Software Engineer", + "company": "Dropbox", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2028-05-05T01:19:33.086Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533a4" + } + }, + { + "title": "Data Scientist", + "company": "Netflix", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-02-17T01:06:59.691Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533a5" + } + }, + { + "title": "Lead Software Engineer", + "company": "Intel", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2026-04-29T21:57:47.455Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533a6" + } + }, + { + "title": "Machine Learning Engineer", + "company": "Slack", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-04-26T21:10:09.677Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533a7" + } + } + ] + }, + "education": [ + { + "institution": "University of New South Wales (UNSW Sydney)", + "degree": "Master of Fine Arts (MFA)", + "fieldOfStudy": "Finance", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-11-18T21:47:26.498Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533a8" + } + }, + { + "institution": "University of Pennsylvania", + "degree": "Doctor of Dental Medicine (DMD)", + "fieldOfStudy": "Architecture", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-11-07T23:49:20.301Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533a9" + } + } + ], + "projects": [ + { + "name": "SocialConnect", + "description": "Social media integration platform for managing multiple social accounts.", + "link": "https://github.com/username/socialconnect", + "_id": { + "$oid": "666cbc4a40af7b375e3533aa" + } + }, + { + "name": "TourismApp", + "description": "Mobile application for tourists providing travel guides and local recommendations.", + "link": "https://github.com/username/tourismapp", + "_id": { + "$oid": "666cbc4a40af7b375e3533ab" + } + } + ], + "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", + "testimonials": [ + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e3533ac" + } + }, + { + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "_id": { + "$oid": "666cbc4a40af7b375e3533ad" + } + }, + { + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "_id": { + "$oid": "666cbc4a40af7b375e3533ae" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e3533af" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Winny-O'Glessane-fake-blog.com", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Fullstack Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3533a3" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eeb" + }, + "firstName": "Gwenora", + "lastName": "Agge", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "NYC 45", + "graduationYear": 2024, + "email": "gagge2m@unesco.org", + "linkedInProfile": "https://www.linkedin.com/in/Gwenora-Agge-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": ["Time Management", "AR/VR (Augmented/Virtual Reality)", "System Design"], + "specializations": [ + "Graph Theory", + "NoSQL", + "Object-Oriented Programming", + "Python", + "Vue.js", + "Problem-Solving", + "Legacy Code Management", + "Reactive Programming", + "Refactoring", + "System Design", + "User Interface (UI) Design", + "TDD (Test-Driven Development)" + ], + "careerInformation": { + "currentPosition": { "title": "Security Engineer", "company": "Airbnb" }, + "pastPositions": [ + { + "title": "Cloud Engineer", + "company": "Airbnb", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2028-05-09T17:41:54.917Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533b1" + } + }, + { + "title": "iOS Developer", + "company": "Netflix", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2027-11-25T20:48:10.736Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533b2" + } + }, + { + "title": "Senior Software Engineer", + "company": "VMware", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2024-12-30T18:01:58.522Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533b3" + } + }, + { + "title": "Data Scientist", + "company": "Shopify", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-09-26T09:55:02.064Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533b4" + } + } + ] + }, + "education": [ + { + "institution": "University of Florida", + "degree": "Master of Public Administration (MPA)", + "fieldOfStudy": "Sociology", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-07-05T08:50:55.070Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533b5" + } + }, + { + "institution": "University of Michigan", + "degree": "Certificate Program", + "fieldOfStudy": "Anthropology", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2024-07-11T14:06:51.064Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533b6" + } + }, + { + "institution": "University of Kentucky", + "degree": "Postdoctoral Research", + "fieldOfStudy": "Nursing", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2027-11-10T03:33:49.240Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533b7" + } + } + ], + "projects": [ + { + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", + "_id": { + "$oid": "666cbc4a40af7b375e3533b8" + } + }, + { + "name": "AIChatbot", + "description": "AI-powered chatbot for customer support and interactive communication.", + "link": "https://github.com/username/aichatbot", + "_id": { + "$oid": "666cbc4a40af7b375e3533b9" + } + }, + { + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", + "_id": { + "$oid": "666cbc4a40af7b375e3533ba" + } + } + ], + "personalBio": "Experienced in building scalable microservices architectures and integrating third-party APIs.", + "testimonials": [ + { + "from": "Lucas Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", + "_id": { + "$oid": "666cbc4a40af7b375e3533bb" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "666cbc4a40af7b375e3533bc" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e3533bd" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "666cbc4a40af7b375e3533be" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e3533bf" + } + } + ], + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Ironhack", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3533b0" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eec" + }, + "firstName": "Piggy", + "lastName": "Torrisi", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "CTRI 55", + "graduationYear": 2024, + "email": "ptorrisi2n@goodreads.com", + "linkedInProfile": "https://www.linkedin.com/in/Piggy-Torrisi-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": [ + "Edge Computing", + "Python", + "Refactoring", + "CSS", + "Spring Boot", + "Flask", + "Cybersecurity", + "Docker", + "Big Data", + "Infrastructure as Code", + "Critical Thinking", + "Communication Skills" + ], + "specializations": [ + "API Integration", + "Django", + "WebSockets", + "Version Control", + "Android Development", + "SaaS (Software as a Service)", + "Vue.js", + "Serverless Architecture", + "Database Design", + "Laravel", + "User Experience (UX) Design", + "Continuous Deployment", + "Git" + ], + "careerInformation": { + "currentPosition": { "title": "Automation Engineer", "company": "Stripe" }, + "pastPositions": [ + { + "title": "Software Architect", + "company": "Robinhood", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-11-12T22:14:14.858Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533c1" + } + }, + { + "title": "Test Engineer", + "company": "Epic Games", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2024-10-29T12:08:26.519Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533c2" + } + }, + { + "title": "Junior Software Engineer", + "company": "Slack", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-03-30T06:10:19.269Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533c3" + } + } + ] + }, + "education": [ + { + "institution": "Ohio State University", + "degree": "Doctoral Degree", + "fieldOfStudy": "Computer Science", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2024-08-05T01:34:38.104Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533c4" + } + }, + { + "institution": "London School of Economics and Political Science (LSE)", + "degree": "Master's Degree", + "fieldOfStudy": "Mechanical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2026-04-21T07:39:30.032Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533c5" + } + } + ], + "projects": [ + { + "name": "GenomeQuest", + "description": "Genomic data analysis tool for researchers and bioinformaticians.", + "link": "https://github.com/username/genomequest", + "_id": { + "$oid": "666cbc4a40af7b375e3533c6" + } + }, + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "666cbc4a40af7b375e3533c7" + } + }, + { + "name": "VirtualTour", + "description": "Virtual reality tour application for immersive travel experiences.", + "link": "https://github.com/username/virtualtour", + "_id": { + "$oid": "666cbc4a40af7b375e3533c8" + } + } + ], + "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Piggy-Torrisi-fake", + "other": ["https://www.instagram.com/Piggy-Torrisi-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "The Tech Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3533c0" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eed" + }, + "firstName": "Niki", + "lastName": "Glaysher", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "LA 84", + "graduationYear": 2024, + "email": "nglaysher2o@kickstarter.com", + "linkedInProfile": "https://www.linkedin.com/in/Niki-Glaysher-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [ + "Algorithm Design", + "Refactoring", + "SaaS (Software as a Service)", + "WebSockets", + "Agile Development", + "iOS Development", + "Automated Testing", + "AWS", + "Spring Boot" + ], + "specializations": [ + "Edge Computing", + "Data Visualization", + "Object-Oriented Programming", + "IoT (Internet of Things)", + "Leadership", + "Laravel", + "Graph Theory", + "Blockchain", + "User Experience (UX) Design", + "CI/CD", + "Collaboration", + "Infrastructure as Code" + ], + "careerInformation": { + "currentPosition": { "title": "Junior Software Engineer", "company": "Intel" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "University of Oregon", + "degree": "Master of Public Health (MPH)", + "fieldOfStudy": "Political Science", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2028-04-29T06:13:49.561Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533ca" + } + }, + { + "institution": "University of Chicago", + "degree": "Doctoral Degree", + "fieldOfStudy": "History", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-11-30T18:42:38.526Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533cb" + } + }, + { + "institution": "University of South Carolina", + "degree": "Executive Education", + "fieldOfStudy": "Medicine", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2027-01-25T17:04:17.366Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533cc" + } + }, + { + "institution": "University of Tokyo", + "degree": "Doctor of Business Administration (DBA)", + "fieldOfStudy": "Biomedical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2026-09-17T01:40:29.587Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533cd" + } + } + ], + "projects": [ + { + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", + "_id": { + "$oid": "666cbc4a40af7b375e3533ce" + } + }, + { + "name": "FoodDelivery", + "description": "Online food delivery platform connecting restaurants with customers for food ordering.", + "link": "https://github.com/username/fooddelivery", + "_id": { + "$oid": "666cbc4a40af7b375e3533cf" + } + }, + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "666cbc4a40af7b375e3533d0" + } + } + ], + "personalBio": "Focused on delivering user-centric solutions that address real-world needs and challenges.", + "testimonials": [ + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e3533d1" + } + }, + { + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "_id": { + "$oid": "666cbc4a40af7b375e3533d2" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "_id": { + "$oid": "666cbc4a40af7b375e3533d3" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Niki-Glaysher-fake", + "blog": "https://www.Niki-Glaysher-fake-blog.com", + "other": ["https://www.instagram.com/Niki-Glaysher-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Kenzie Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3533c9" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eee" + }, + "firstName": "Pail", + "lastName": "Vasechkin", + "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "cohort": "NYC 37", + "graduationYear": 2024, + "email": "pvasechkin2p@vk.com", + "linkedInProfile": "https://www.linkedin.com/in/Pail-Vasechkin-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": [ + "Parallel Computing", + "Flask", + "Project Management", + "WebSockets", + "Performance Optimization", + "AR/VR (Augmented/Virtual Reality)", + "Serverless Architecture", + "User Experience (UX) Design", + "SQL" + ], + "specializations": [ + "Python", + "Functional Programming", + "Azure", + "Microservices", + "Git", + "User Interface (UI) Design", + "Infrastructure as Code", + "Natural Language Processing", + "Data Warehousing", + "ETL (Extract, Transform, Load)", + "JavaScript", + "ASP.NET", + "Laravel", + "Refactoring", + "Graph Theory" + ], + "careerInformation": { + "currentPosition": { "title": "Backend Developer", "company": "Airbnb" }, + "pastPositions": [ + { + "title": "Automation Engineer", + "company": "NVIDIA", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2024-11-03T23:20:18.355Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533d5" + } + }, + { + "title": "Software Developer", + "company": "Netflix", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2026-03-17T00:17:19.698Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533d6" + } + } + ] + }, + "education": [ + { + "institution": "University of California, Santa Barbara (UCSB)", + "degree": "Bachelor of Fine Arts (BFA)", + "fieldOfStudy": "Anthropology", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2028-06-01T19:25:23.555Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533d7" + } + }, + { + "institution": "University of Nebraska-Lincoln", + "degree": "Continuing Education", + "fieldOfStudy": "Philosophy", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2028-04-27T08:45:41.741Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533d8" + } + } + ], + "projects": [], + "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", + "testimonials": [ + { + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e3533d9" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e3533da" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Pail-Vasechkin-fake-blog.com", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "BrainStation", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3533d4" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eef" + }, + "firstName": "Gav", + "lastName": "Renneke", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "NYC 74", + "graduationYear": 2024, + "email": "grenneke2q@hp.com", + "linkedInProfile": "https://www.linkedin.com/in/Gav-Renneke-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "skills": [ + "Refactoring", + "Cloud Computing", + "Cybersecurity", + "Laravel", + "System Design", + "Kubernetes", + "Unit Testing" + ], + "specializations": ["AWS"], + "careerInformation": { + "currentPosition": { "title": "AI Engineer", "company": "DocuSign" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "Boston University", + "degree": "Executive Education", + "fieldOfStudy": "Dentistry", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2027-05-21T23:53:49.056Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533dc" + } + }, + { + "institution": "McGill University", + "degree": "Associate Degree", + "fieldOfStudy": "Accounting", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-12-27T02:50:59.473Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533dd" + } + }, + { + "institution": "Imperial College London", + "degree": "Doctor of Business Administration (DBA)", + "fieldOfStudy": "English Literature", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2026-12-18T13:11:47.383Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533de" + } + } + ], + "projects": [ + { + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", + "_id": { + "$oid": "666cbc4a40af7b375e3533df" + } + }, + { + "name": "FoodDelivery", + "description": "Online food delivery platform connecting restaurants with customers for food ordering.", + "link": "https://github.com/username/fooddelivery", + "_id": { + "$oid": "666cbc4a40af7b375e3533e0" + } + }, + { + "name": "CodeBot", + "description": "Automated code generation tool using AI for faster development cycles.", + "link": "https://github.com/username/codebot", + "_id": { + "$oid": "666cbc4a40af7b375e3533e1" + } + } + ], + "personalBio": "Focused on delivering user-centric solutions that address real-world needs and challenges.", + "testimonials": [ + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e3533e2" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "_id": { + "$oid": "666cbc4a40af7b375e3533e3" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "666cbc4a40af7b375e3533e4" + } + }, + { + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "_id": { + "$oid": "666cbc4a40af7b375e3533e5" + } + } + ], + "socialMediaLinks": { + "blog": "https://www.Gav-Renneke-fake-blog.com", + "other": ["https://www.instagram.com/Gav-Renneke-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Flatiron School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3533db" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ef0" + }, + "firstName": "Perle", + "lastName": "Rizziello", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "FTRI 76", + "graduationYear": 2024, + "email": "prizziello2r@mashable.com", + "linkedInProfile": "https://www.linkedin.com/in/Perle-Rizziello-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "skills": [ + "PaaS (Platform as a Service)", + "Refactoring", + "Time Management", + "User Interface (UI) Design", + "Algorithm Design", + "Integration Testing", + "Big Data" + ], + "specializations": [ + "Google Cloud Platform", + "Parallel Computing", + "Quantum Computing", + "SaaS (Software as a Service)", + "API Development", + "BDD (Behavior-Driven Development)", + "TDD (Test-Driven Development)", + "Scrum", + "Git", + "Java", + "Python", + "Pair Programming", + "Unit Testing", + "Graph Databases", + "Kubernetes", + "Edge Computing" + ], + "careerInformation": { + "currentPosition": { "title": "Junior Software Engineer", "company": "DoorDash" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "University of Florida", + "degree": "Bachelor of Science (BS)", + "fieldOfStudy": "Theater", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-05-27T15:02:39.340Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533e7" + } + }, + { + "institution": "University of Houston", + "degree": "Master of Science (MS)", + "fieldOfStudy": "Biomedical Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2026-11-22T08:09:32.126Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533e8" + } + }, + { + "institution": "University of Southern California", + "degree": "Doctoral Degree", + "fieldOfStudy": "Biology", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2027-11-30T21:12:51.958Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533e9" + } + }, + { + "institution": "University of Wisconsin-Madison", + "degree": "Master of Science (MS)", + "fieldOfStudy": "Environmental Engineering", + "startDate": { + "$date": "2024-06-14T21:55:22.548Z" + }, + "endDate": { + "$date": "2025-10-14T23:04:28.260Z" + }, + "_id": { + "$oid": "666cbc4a40af7b375e3533ea" + } + } + ], + "projects": [ + { + "name": "SmartHomeHub", + "description": "Centralized home automation system integrating IoT devices for smart living.", + "link": "https://github.com/username/smarthomehub", + "_id": { + "$oid": "666cbc4a40af7b375e3533eb" + } + }, + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "666cbc4a40af7b375e3533ec" + } + }, + { + "name": "SocialConnect", + "description": "Social media integration platform for managing multiple social accounts.", + "link": "https://github.com/username/socialconnect", + "_id": { + "$oid": "666cbc4a40af7b375e3533ed" + } + }, + { + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", + "_id": { + "$oid": "666cbc4a40af7b375e3533ee" + } + } + ], + "personalBio": "Skilled in conducting technical workshops and seminars to share knowledge and mentor aspiring developers.", + "testimonials": [ + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "666cbc4a40af7b375e3533ef" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "666cbc4a40af7b375e3533f0" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "666cbc4a40af7b375e3533f1" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "666cbc4a40af7b375e3533f2" + } + }, + { + "from": "Liam Harris", + "relation": "Lead Developer at CloudTech", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "666cbc4a40af7b375e3533f3" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Perle-Rizziello-fake", + "blog": "https://www.Perle-Rizziello-fake-blog.com", + "other": ["https://www.instagram.com/Perle-Rizziello-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "CareerFoundry", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "666cbc4a40af7b375e3533e6" + }, + "blogOrWriting": [], + "__v": 0 + } +] diff --git a/scripts/db/mongo-dev-init/MOCK_THREADS.json b/scripts/db/mongo-dev-init/MOCK_THREADS.json new file mode 100644 index 00000000..0b807740 --- /dev/null +++ b/scripts/db/mongo-dev-init/MOCK_THREADS.json @@ -0,0 +1,622 @@ +[ + { + "user": { + "$oid": "666cbc4240af7b375e352e9d" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f57" + }, + "title": "Career Advice: Frontend vs Backend?", + "content": "Considering specializing in either frontend or backend development. What are the pros and cons of each? Which path offers better career opportunities?", + "createdAt": { + "$date": "2024-06-14T21:55:23.577Z" + }, + "updatedAt": { + "$date": "2026-07-03T15:45:40.730Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e353459" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ed0" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f59" + }, + "title": "Machine Learning for Beginners", + "content": "New to machine learning? Let's explore foundational concepts, resources, and hands-on tutorials to get started with machine learning projects.", + "createdAt": { + "$date": "2024-06-14T21:55:23.577Z" + }, + "updatedAt": { + "$date": "2026-02-13T18:40:16.572Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e35345a" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eb5" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f5f" + }, + "title": "Remote Work: Challenges and Solutions", + "content": "Discussing the challenges faced while working remotely and sharing strategies to stay productive, maintain communication, and foster team collaboration.", + "createdAt": { + "$date": "2024-06-14T21:55:23.577Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.577Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e35345b" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eba" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f5b" + }, + "title": "AI in Healthcare: Applications and Innovations", + "content": "Exploring AI applications and innovations in the healthcare industry. How is AI transforming patient care and medical research?", + "createdAt": { + "$date": "2024-06-14T21:55:23.577Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.577Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e35345c" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ecd" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f56" + }, + "title": "Mobile App Development Trends for 2024", + "content": "Predicting and discussing emerging trends and technologies in mobile app development for the upcoming year. What trends are shaping the mobile app landscape?", + "createdAt": { + "$date": "2024-06-14T21:55:23.577Z" + }, + "updatedAt": { + "$date": "2027-08-22T11:25:13.498Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e35345d" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ee7" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f5b" + }, + "title": "Full Stack Development: Best Practices", + "content": "Best practices, tools, and frameworks for mastering full-stack development. How do you balance frontend and backend development responsibilities?", + "createdAt": { + "$date": "2024-06-14T21:55:23.578Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.578Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e35345e" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ead" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f5a" + }, + "title": "JavaScript Frameworks Comparison", + "content": "Comparing popular JavaScript frameworks like React, Angular, and Vue.js. Share your experiences, strengths, and weaknesses of each framework.", + "createdAt": { + "$date": "2024-06-14T21:55:23.578Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.578Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e35345f" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ed3" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f5f" + }, + "title": "AI in Healthcare: Applications and Innovations", + "content": "Exploring AI applications and innovations in the healthcare industry. How is AI transforming patient care and medical research?", + "createdAt": { + "$date": "2024-06-14T21:55:23.578Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.578Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e353460" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ea6" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f5a" + }, + "title": "Open Source Contributions: Getting Started", + "content": "Tips and advice for beginners on how to get started with contributing to open-source projects. What are the benefits of open-source contributions?", + "createdAt": { + "$date": "2024-06-14T21:55:23.578Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.578Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e353461" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ed2" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f57" + }, + "title": "Version Control: Git Tips and Tricks", + "content": "Share your favorite Git commands, workflows, and best practices for version control. How do you handle branching, merging, and code collaboration?", + "createdAt": { + "$date": "2024-06-14T21:55:23.578Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.578Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e353462" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eda" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f5b" + }, + "title": "Tips for Building Scalable Microservices", + "content": "Discussing architectural patterns, communication protocols, and deployment strategies for building scalable microservices architectures.", + "createdAt": { + "$date": "2024-06-14T21:55:23.577Z" + }, + "updatedAt": { + "$date": "2025-07-08T19:39:08.384Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e353463" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eda" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f5d" + }, + "title": "Data Privacy Regulations: Compliance Challenges", + "content": "Navigating data privacy regulations and compliance challenges in software development. How do you ensure GDPR and CCPA compliance?", + "createdAt": { + "$date": "2024-06-14T21:55:23.578Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.578Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e353464" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352edb" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f5a" + }, + "title": "Continuous Integration and Deployment (CI/CD)", + "content": "Exploring CI/CD pipelines, best practices, and tools for automating software delivery processes. Share your experiences and tips for implementing CI/CD.", + "createdAt": { + "$date": "2024-06-14T21:55:23.577Z" + }, + "updatedAt": { + "$date": "2024-06-21T16:09:36.115Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e353465" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ebf" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f5c" + }, + "title": "Game Development: Engines, Tools, and Challenges", + "content": "Discussing game development engines, tools, and challenges. Share your experiences in creating interactive and immersive gaming experiences.", + "createdAt": { + "$date": "2024-06-14T21:55:23.577Z" + }, + "updatedAt": { + "$date": "2027-06-03T15:47:41.915Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e353466" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eef" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f5a" + }, + "title": "Introduction to Docker Containers", + "content": "New to Docker and containers? Let's discuss the basics, benefits, and practical applications of Docker in software development and deployment.", + "createdAt": { + "$date": "2024-06-14T21:55:23.578Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.578Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e353467" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352e8e" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f5d" + }, + "title": "Data Privacy Regulations: Compliance Challenges", + "content": "Navigating data privacy regulations and compliance challenges in software development. How do you ensure GDPR and CCPA compliance?", + "createdAt": { + "$date": "2024-06-14T21:55:23.577Z" + }, + "updatedAt": { + "$date": "2025-08-27T13:34:39.325Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e353468" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eaa" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f5c" + }, + "title": "Tech Diversity and Inclusion: Initiatives and Impact", + "content": "Discussing initiatives and strategies for promoting diversity and inclusion in the tech industry. How can we create more inclusive workplaces?", + "createdAt": { + "$date": "2024-06-14T21:55:23.578Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.578Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e353469" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352e99" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f5b" + }, + "title": "Cloud Native Applications: Architecture and Benefits", + "content": "Exploring the architecture and benefits of cloud-native applications. How do you design and deploy applications for cloud environments?", + "createdAt": { + "$date": "2024-06-14T21:55:23.577Z" + }, + "updatedAt": { + "$date": "2025-12-16T17:31:16.959Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e35346a" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eca" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f59" + }, + "title": "Cloud Native Applications: Architecture and Benefits", + "content": "Exploring the architecture and benefits of cloud-native applications. How do you design and deploy applications for cloud environments?", + "createdAt": { + "$date": "2024-06-14T21:55:23.577Z" + }, + "updatedAt": { + "$date": "2026-07-23T06:34:10.278Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e35346b" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ece" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f5e" + }, + "title": "Introduction to Docker Containers", + "content": "New to Docker and containers? Let's discuss the basics, benefits, and practical applications of Docker in software development and deployment.", + "createdAt": { + "$date": "2024-06-14T21:55:23.579Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.579Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e35346c" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ed4" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f57" + }, + "title": "Agile Development: Scrum vs Kanban", + "content": "Comparing Scrum and Kanban methodologies for Agile software development. Which approach works better for your team and why?", + "createdAt": { + "$date": "2024-06-14T21:55:23.577Z" + }, + "updatedAt": { + "$date": "2024-06-26T03:11:31.562Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e35346d" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ee7" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f56" + }, + "title": "Cybersecurity Threats: Prevention and Response", + "content": "Discussing common cybersecurity threats and strategies for prevention and incident response. How do you secure your applications and data?", + "createdAt": { + "$date": "2024-06-14T21:55:23.579Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.579Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e35346e" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eda" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f5b" + }, + "title": "AI Ethics: Bias, Accountability, and Transparency", + "content": "Exploring ethical considerations in AI development, including bias mitigation, accountability frameworks, and transparency practices.", + "createdAt": { + "$date": "2024-06-14T21:55:23.577Z" + }, + "updatedAt": { + "$date": "2027-09-21T06:46:05.141Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e35346f" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352edf" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f5a" + }, + "title": "UX/UI Design Principles for Developers", + "content": "Exploring UX/UI design principles and best practices for developers. How can developers contribute to creating user-friendly and visually appealing interfaces?", + "createdAt": { + "$date": "2024-06-14T21:55:23.579Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.579Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e353470" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eb1" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f56" + }, + "title": "Python vs Java: Which is Better for Backend Development?", + "content": "Debating the pros and cons of Python and Java for backend development. Share your experiences and preferences in choosing a backend programming language.", + "createdAt": { + "$date": "2024-06-14T21:55:23.579Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.579Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e353471" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ea7" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f5e" + }, + "title": "Frontend Performance Optimization Techniques", + "content": "Exploring strategies and tools to optimize frontend performance. Share tips on reducing page load times, improving rendering efficiency, and optimizing assets.", + "createdAt": { + "$date": "2024-06-14T21:55:23.579Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.579Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e353472" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ed8" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f5b" + }, + "title": "Remote Work: Challenges and Solutions", + "content": "Discussing the challenges faced while working remotely and sharing strategies to stay productive, maintain communication, and foster team collaboration.", + "createdAt": { + "$date": "2024-06-14T21:55:23.579Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.579Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e353473" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eed" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f5d" + }, + "title": "Continuous Integration and Deployment (CI/CD)", + "content": "Exploring CI/CD pipelines, best practices, and tools for automating software delivery processes. Share your experiences and tips for implementing CI/CD.", + "createdAt": { + "$date": "2024-06-14T21:55:23.577Z" + }, + "updatedAt": { + "$date": "2026-01-25T14:37:46.226Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e353474" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352ead" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f5b" + }, + "title": "Interview Preparation Tips", + "content": "Preparing for software engineering interviews? Discussing strategies, common interview questions, and resources to ace technical interviews.", + "createdAt": { + "$date": "2024-06-14T21:55:23.579Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.579Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e353475" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352eb0" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f5d" + }, + "title": "Version Control: Git Tips and Tricks", + "content": "Share your favorite Git commands, workflows, and best practices for version control. How do you handle branching, merging, and code collaboration?", + "createdAt": { + "$date": "2024-06-14T21:55:23.579Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.579Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e353476" + }, + "__v": 0 + }, + { + "user": { + "$oid": "666cbc4240af7b375e352e9d" + }, + "forum": { + "$oid": "666cbc4a40af7b375e352f59" + }, + "title": "Continuous Integration and Deployment (CI/CD)", + "content": "Exploring CI/CD pipelines, best practices, and tools for automating software delivery processes. Share your experiences and tips for implementing CI/CD.", + "createdAt": { + "$date": "2024-06-14T21:55:23.579Z" + }, + "updatedAt": { + "$date": "2024-06-14T21:55:23.579Z" + }, + "_id": { + "$oid": "666cbc4b40af7b375e353477" + }, + "__v": 0 + } +] diff --git a/scripts/db/mongo-dev-init/MOCK_USERS.json b/scripts/db/mongo-dev-init/MOCK_USERS.json new file mode 100644 index 00000000..ccc1c03f --- /dev/null +++ b/scripts/db/mongo-dev-init/MOCK_USERS.json @@ -0,0 +1,1719 @@ +[ + { + "firstName": "Testy", + "lastName": "McTesterson", + "email": "tester@codehammers.com", + "profilePic": "https://www.codesmith.io/hubfs/Screen%20Shot%202024-06-10%20at%2010.46.24%20AM.png", + "password": "$2a$10$LGAtDH0sMsL39sZxWRN8r.X.//5/XBIirtADsSg9VLUciCxXhmtF.", + "_id": { + "$oid": "666cbc4240af7b375e352e8c" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.814Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.814Z" + }, + "__v": 0 + }, + { + "firstName": "Corine", + "lastName": "Tugwell", + "email": "ctugwell0@ovh.net", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$1J5Auw7T9lvyQPYVioyg.evlUYCl4WcFjtWnV0edl/Y1S0wcOBqse", + "_id": { + "$oid": "666cbc4240af7b375e352e8d" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.814Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.814Z" + }, + "__v": 0 + }, + { + "firstName": "Brody", + "lastName": "Cumpton", + "email": "bcumpton1@bluehost.com", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$6o4ORZkWxhHsTYKE9YrC.O98g.3mUig1vXiAuaNCgG26/uxDOzUnm", + "_id": { + "$oid": "666cbc4240af7b375e352e8e" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.814Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.814Z" + }, + "__v": 0 + }, + { + "firstName": "Moselle", + "lastName": "Duro", + "email": "mduro2@technorati.com", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$PcaTMXZIGrv/xGSXKpqm4.NS.fWX3T1Xoqd2cIdD19AaHdC/y93s6", + "_id": { + "$oid": "666cbc4240af7b375e352e8f" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.814Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.814Z" + }, + "__v": 0 + }, + { + "firstName": "Winifred", + "lastName": "Carnelley", + "email": "wcarnelley3@ucsd.edu", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$YQ.UDzA3hqof3EsgQSxjCuw81TMI9NIDNgqSheSfoWR16bLLx2wKu", + "_id": { + "$oid": "666cbc4240af7b375e352e90" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.814Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.814Z" + }, + "__v": 0 + }, + { + "firstName": "Marchelle", + "lastName": "Truin", + "email": "mtruin4@stumbleupon.com", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$SZjCBgeo9g5WAKS/D7Tsputa7zptVXEPeCEWJzlIt/1UfNd7kuf2q", + "_id": { + "$oid": "666cbc4240af7b375e352e91" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.814Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.814Z" + }, + "__v": 0 + }, + { + "firstName": "Cally", + "lastName": "Gisbey", + "email": "cgisbey5@squarespace.com", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$zM5jjWMbyv7ac1vvnZ36Au83Mb.id4PEa6ZDGCvjChCpa2pYMTBKW", + "_id": { + "$oid": "666cbc4240af7b375e352e92" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.815Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.815Z" + }, + "__v": 0 + }, + { + "firstName": "Arlina", + "lastName": "Moodie", + "email": "amoodie6@twitpic.com", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$3TJx8Vf8MuIHeTdQS5nEyOKzZWRdhUe9wprygpoEJo4VfhE1aTS.i", + "_id": { + "$oid": "666cbc4240af7b375e352e93" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.816Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.816Z" + }, + "__v": 0 + }, + { + "firstName": "Phineas", + "lastName": "Coon", + "email": "pcoon7@hc360.com", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$3/zlx.qOE35vaw1GTHdgeuLgOrra/w5N46zUX.LCs.PylZt0j7hAC", + "_id": { + "$oid": "666cbc4240af7b375e352e94" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.816Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.816Z" + }, + "__v": 0 + }, + { + "firstName": "Shurlock", + "lastName": "Tytcomb", + "email": "stytcomb8@google.it", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$A9z2WZIaKLKq2DV5AigwBO9ArA2dg27a2AmqIkx/g960OQbNgfTXC", + "_id": { + "$oid": "666cbc4240af7b375e352e95" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.816Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.816Z" + }, + "__v": 0 + }, + { + "firstName": "Ermina", + "lastName": "Guyton", + "email": "eguyton9@blog.com", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$fB2fhuWHB9dtOQg/qtRbEuvYHAFOuNisLY.59BANQrzQjttu/pPsa", + "_id": { + "$oid": "666cbc4240af7b375e352e96" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.816Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.816Z" + }, + "__v": 0 + }, + { + "firstName": "Shelton", + "lastName": "Halwood", + "email": "shalwooda@sciencedirect.com", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$DdlT.vrb1jYq4ZXXz89bKOF0FxaW10frAPisliDlEORGArhlHkcaW", + "_id": { + "$oid": "666cbc4240af7b375e352e97" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.816Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.816Z" + }, + "__v": 0 + }, + { + "firstName": "Nigel", + "lastName": "Clemenzo", + "email": "nclemenzob@fotki.com", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$lSwh8PUA9o8rIMvz.15dmuXkXy9yxsYRqajLuhg7EOrdWspj8P.pi", + "_id": { + "$oid": "666cbc4240af7b375e352e98" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.816Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.816Z" + }, + "__v": 0 + }, + { + "firstName": "Colver", + "lastName": "Oswell", + "email": "coswellc@wsj.com", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$rDAz.hU0uOPegHXoKIZ/Cufpq5bDNWBffvCuvwe7Sb8KA/phAe5Be", + "_id": { + "$oid": "666cbc4240af7b375e352e99" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.816Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.816Z" + }, + "__v": 0 + }, + { + "firstName": "Saundra", + "lastName": "Normabell", + "email": "snormabelld@businessinsider.com", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$WEvrWZBqVUHB87vE3LLwiuwBHzSTcvPXdvo3o3yHsdG.OZqcc6X66", + "_id": { + "$oid": "666cbc4240af7b375e352e9a" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.816Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.816Z" + }, + "__v": 0 + }, + { + "firstName": "Grant", + "lastName": "Chasney", + "email": "gchasneye@mediafire.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$ozCQWU8xzusdEyhhLUU4S.43OQD8IDNdM/sanwGsmmfO0GkHLVUoe", + "_id": { + "$oid": "666cbc4240af7b375e352e9b" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.816Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.816Z" + }, + "__v": 0 + }, + { + "firstName": "Franni", + "lastName": "Chance", + "email": "fchancef@ted.com", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$8phywKQRtCOHk51bJEXauOv4r/vE1Cv5HQCqwRlZD2pM4PCQMvxZ6", + "_id": { + "$oid": "666cbc4240af7b375e352e9c" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.817Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.817Z" + }, + "__v": 0 + }, + { + "firstName": "Clarance", + "lastName": "Meecher", + "email": "cmeecherg@addthis.com", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$FsbP6Ou/xBF5ceaEiWRBI.QVCfo7hV81cxuHETIkCtIhaPrCJH47G", + "_id": { + "$oid": "666cbc4240af7b375e352e9d" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.817Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.817Z" + }, + "__v": 0 + }, + { + "firstName": "Katharine", + "lastName": "Lancett", + "email": "klancetth@sfgate.com", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$HetLY25wIW3Ug0hU/GUukOzoxILSvZv3QPzNiiMjL172FHLin9iqy", + "_id": { + "$oid": "666cbc4240af7b375e352e9e" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.817Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.817Z" + }, + "__v": 0 + }, + { + "firstName": "Margaret", + "lastName": "Dubber", + "email": "mdubberi@dropbox.com", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$xmUK5vQJkDoSWj59XDHB8e3yXiBZYZ4PGwV6ZfWsWWy.7nLuJL9iC", + "_id": { + "$oid": "666cbc4240af7b375e352e9f" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.817Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.817Z" + }, + "__v": 0 + }, + { + "firstName": "Addy", + "lastName": "Fass", + "email": "afassj@vistaprint.com", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$IcZvqC.d4vyEKh6pvXP9ZugWzdT4Mv.50YDgpS9Seh0RanShwYm7m", + "_id": { + "$oid": "666cbc4240af7b375e352ea0" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.817Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.817Z" + }, + "__v": 0 + }, + { + "firstName": "Sollie", + "lastName": "Puckinghorne", + "email": "spuckinghornek@topsy.com", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$fVUXGZJ2k6nO4gKYVKdutOPnogQZX8O5UQVZ2AeGBYVxKxIg9OS72", + "_id": { + "$oid": "666cbc4240af7b375e352ea1" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.817Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.817Z" + }, + "__v": 0 + }, + { + "firstName": "Xena", + "lastName": "Tomczynski", + "email": "xtomczynskil@ted.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$5wT1KtnpMo/cjCs6jT/8SO3MrCTGHgqyiyxFFZtlJCfe9hK.Uk2a.", + "_id": { + "$oid": "666cbc4240af7b375e352ea2" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.817Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.817Z" + }, + "__v": 0 + }, + { + "firstName": "Harmonie", + "lastName": "Karpinski", + "email": "hkarpinskim@g.co", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$b/ZDg7VnrfFk25lSbVg7Keic/IT8KoVxuYoc4e9D6B7OrJOYExnUa", + "_id": { + "$oid": "666cbc4240af7b375e352ea3" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.817Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.817Z" + }, + "__v": 0 + }, + { + "firstName": "Marielle", + "lastName": "Crocket", + "email": "mcrocketn@craigslist.org", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$FhLTlKA/gn5bq3ZnDk0NweCicgxQwdOQTgsUG8CisnvlwEkan1xK2", + "_id": { + "$oid": "666cbc4240af7b375e352ea4" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.817Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.817Z" + }, + "__v": 0 + }, + { + "firstName": "Ulrick", + "lastName": "Blasing", + "email": "ublasingo@yahoo.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$CSfZA37qSE5kxqT6nNz9iehYBCwQ/c5Bv1Foaz0.oHz88pDCaZJxu", + "_id": { + "$oid": "666cbc4240af7b375e352ea5" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.817Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.817Z" + }, + "__v": 0 + }, + { + "firstName": "Cheri", + "lastName": "Danielsson", + "email": "cdanielssonp@example.com", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$48DeViF74D44GIXuv9pGROtbKzQMbkF/YNjDpyJp47MnOszWMejl2", + "_id": { + "$oid": "666cbc4240af7b375e352ea6" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.817Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.817Z" + }, + "__v": 0 + }, + { + "firstName": "Durand", + "lastName": "Joron", + "email": "djoronq@google.cn", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$Mzy/j1JW4GxRuh4t12Qqu.pYW13xosgbFyqMGcUdD4ivtl8i9/83C", + "_id": { + "$oid": "666cbc4240af7b375e352ea7" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.818Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.818Z" + }, + "__v": 0 + }, + { + "firstName": "Kristien", + "lastName": "Burgett", + "email": "kburgettr@kickstarter.com", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$d8KAoay31bxxItexKfiw3eqSxx3GmM0btDH9IbElEHtik/wYSH7fW", + "_id": { + "$oid": "666cbc4240af7b375e352ea8" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.818Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.818Z" + }, + "__v": 0 + }, + { + "firstName": "Kaia", + "lastName": "Fassmann", + "email": "kfassmanns@ted.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$G0s53o4j4Tl9ssfj/msbnus63YrSw0/RMNbxGA.jdL6cbgWZAkSpa", + "_id": { + "$oid": "666cbc4240af7b375e352ea9" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.818Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.818Z" + }, + "__v": 0 + }, + { + "firstName": "Lockwood", + "lastName": "Moxham", + "email": "lmoxhamt@wikia.com", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$yfL/9JMjRTVDXODTFBlp/.vVYj.hzAZFbg1lfdzylZ/thruZnqwsO", + "_id": { + "$oid": "666cbc4240af7b375e352eaa" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.818Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.818Z" + }, + "__v": 0 + }, + { + "firstName": "Tessie", + "lastName": "Sugden", + "email": "tsugdenu@npr.org", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$.bJNvfcffd.mo1RgF28DcOqMehZg4QAYL5eqS.772TU0ZOnGqWRu2", + "_id": { + "$oid": "666cbc4240af7b375e352eab" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.818Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.818Z" + }, + "__v": 0 + }, + { + "firstName": "Rea", + "lastName": "Jeremiah", + "email": "rjeremiahv@wikispaces.com", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$CWPRLDiGz4wJO/DZ6i4eEeVU1QCtejA0x.jMWVZEE4XzWr6IDd.by", + "_id": { + "$oid": "666cbc4240af7b375e352eac" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.818Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.818Z" + }, + "__v": 0 + }, + { + "firstName": "Cassie", + "lastName": "Meadows", + "email": "cmeadowsw@smugmug.com", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$/p/C1VSWuIxFTt.G4TMOQukAiODsxTX.6dcHd/3Bsrm78MQXX8Z3S", + "_id": { + "$oid": "666cbc4240af7b375e352ead" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.818Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.818Z" + }, + "__v": 0 + }, + { + "firstName": "Kelci", + "lastName": "Bastide", + "email": "kbastidex@latimes.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$laT3bZymMypGb8HVox93mOjj9/FVYtFdVdX1HtzBnrMrKGt4i5w7i", + "_id": { + "$oid": "666cbc4240af7b375e352eae" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.818Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.818Z" + }, + "__v": 0 + }, + { + "firstName": "Thurston", + "lastName": "Speechly", + "email": "tspeechlyy@plala.or.jp", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$YBz/CMTpSX6sdHNmO5LWkuubDmBskhpvXOGHLrk1Y.DD8woJSKYTS", + "_id": { + "$oid": "666cbc4240af7b375e352eaf" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.818Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.818Z" + }, + "__v": 0 + }, + { + "firstName": "Silas", + "lastName": "Reyes", + "email": "sreyesz@google.co.jp", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$r/9sfarx3gl.wO/lhoVXV.EK3fOVbnZWULpHVrZM9GcTNUCjIKglG", + "_id": { + "$oid": "666cbc4240af7b375e352eb0" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.818Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.818Z" + }, + "__v": 0 + }, + { + "firstName": "Marley", + "lastName": "Boshard", + "email": "mboshard10@tiny.cc", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$A4S1fles.WiqBxpr3aC1iuzI2rZbVIUPQj6fBK9ic9n0vdbgMuShG", + "_id": { + "$oid": "666cbc4240af7b375e352eb1" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.818Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.818Z" + }, + "__v": 0 + }, + { + "firstName": "Eb", + "lastName": "Dargie", + "email": "edargie11@artisteer.com", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$bHC8dHQhkhl981oqptd.MujxW/WKQ3QDm90TlsHKsyGCpOa5SK32C", + "_id": { + "$oid": "666cbc4240af7b375e352eb2" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.819Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.819Z" + }, + "__v": 0 + }, + { + "firstName": "Porter", + "lastName": "Paladini", + "email": "ppaladini12@deliciousdays.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$s5eA0BRqOKRmgt9BH5qWOunu72KGHYZg2ksl0zpizrv3SMubPttsy", + "_id": { + "$oid": "666cbc4240af7b375e352eb3" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.819Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.819Z" + }, + "__v": 0 + }, + { + "firstName": "Dian", + "lastName": "Dackombe", + "email": "ddackombe13@ihg.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$sl4GZZ1Jnapjx5qEvFxlAubQvzxXwjXpTeTJ51F25ERUdmX5Avln2", + "_id": { + "$oid": "666cbc4240af7b375e352eb4" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.819Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.819Z" + }, + "__v": 0 + }, + { + "firstName": "Freedman", + "lastName": "Scrafton", + "email": "fscrafton14@posterous.com", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$N9SKyfuQe9N2psum1w0ipOAwdMKHbItVjpXNpnP522mNU9MkwBd.2", + "_id": { + "$oid": "666cbc4240af7b375e352eb5" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.819Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.819Z" + }, + "__v": 0 + }, + { + "firstName": "Tabbitha", + "lastName": "Jolliffe", + "email": "tjolliffe15@bbb.org", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$GJ80ozXtDO4ZRMCXbvS7xepODBqeHUmkDqrXjjXS22d7y21QRbAo.", + "_id": { + "$oid": "666cbc4240af7b375e352eb6" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.819Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.819Z" + }, + "__v": 0 + }, + { + "firstName": "Jordon", + "lastName": "Ganley", + "email": "jganley16@geocities.jp", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$IBd.7zdM4qin53dYNLofAO.O.DoEizmSldWjS1bz3Cd59MVX7TMOO", + "_id": { + "$oid": "666cbc4240af7b375e352eb7" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.819Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.819Z" + }, + "__v": 0 + }, + { + "firstName": "Annora", + "lastName": "Brigge", + "email": "abrigge17@joomla.org", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$68aVxI5.V.s5uRHJBb9xMe7x2cGFav39MJqLgJAj4dB8afIUlKZE6", + "_id": { + "$oid": "666cbc4240af7b375e352eb8" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.819Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.819Z" + }, + "__v": 0 + }, + { + "firstName": "Bethanne", + "lastName": "Osband", + "email": "bosband18@blinklist.com", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$8N11/yoCP9kXJ.RQ6Pk08erfs4zBrPVq81W72ZTmAhdEuEquvUkfO", + "_id": { + "$oid": "666cbc4240af7b375e352eb9" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.819Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.819Z" + }, + "__v": 0 + }, + { + "firstName": "Hedda", + "lastName": "Tallquist", + "email": "htallquist19@cisco.com", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$.7.cCEeH4A9eGNZfuGuKlePRXiQSd7V5vsVqdewylsWzM2FdHYAWO", + "_id": { + "$oid": "666cbc4240af7b375e352eba" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.819Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.819Z" + }, + "__v": 0 + }, + { + "firstName": "Lynelle", + "lastName": "Grosvener", + "email": "lgrosvener1a@google.cn", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$CFIlmDkzwrui/0Fq4JpqvuxtBR7XW5ifu1Ngd39PiyVa2Dq0wRvCy", + "_id": { + "$oid": "666cbc4240af7b375e352ebb" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.819Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.819Z" + }, + "__v": 0 + }, + { + "firstName": "Lenee", + "lastName": "Pethybridge", + "email": "lpethybridge1b@chron.com", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$0QUGQWlGq43MmEnoD.Fy9ObWvILMZ9BnBAEeMTjiFcdhbzulz9mjO", + "_id": { + "$oid": "666cbc4240af7b375e352ebc" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.819Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.819Z" + }, + "__v": 0 + }, + { + "firstName": "Ninnette", + "lastName": "Maden", + "email": "nmaden1c@sciencedirect.com", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$a/7KLuiSYX4K/d56mhQzlewAZqc2PEg2Kw9dFL2xD/wJeRq2sOJtW", + "_id": { + "$oid": "666cbc4240af7b375e352ebd" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.820Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.820Z" + }, + "__v": 0 + }, + { + "firstName": "Jolynn", + "lastName": "Catenot", + "email": "jcatenot1d@oakley.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$j4PDaLe8LfvcnZWZvBvI8uwqAyJ2g0PjuKVIWRwYBRXdusHk/CVDe", + "_id": { + "$oid": "666cbc4240af7b375e352ebe" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.820Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.820Z" + }, + "__v": 0 + }, + { + "firstName": "Marabel", + "lastName": "Puleston", + "email": "mpuleston1e@utexas.edu", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$c6S5H.CapsZ12fQOdZunQOygCGKCtox8whfTmSXkU/p43vZkqG/y.", + "_id": { + "$oid": "666cbc4240af7b375e352ebf" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.820Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.820Z" + }, + "__v": 0 + }, + { + "firstName": "Bryn", + "lastName": "Arias", + "email": "barias1f@flavors.me", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$bhNymgCNR.mZN/tk5adUUOPORCjMX7oxb1LEYGHvvERHm9qtAeI4W", + "_id": { + "$oid": "666cbc4240af7b375e352ec0" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.820Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.820Z" + }, + "__v": 0 + }, + { + "firstName": "Arni", + "lastName": "Jertz", + "email": "ajertz1g@tuttocitta.it", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$.dTBEny4e30LRPW7j9Yon.ErDyHn9I.wtD7KL5aQhVzZUsW6j1ZuO", + "_id": { + "$oid": "666cbc4240af7b375e352ec1" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.820Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.820Z" + }, + "__v": 0 + }, + { + "firstName": "Maegan", + "lastName": "Mulhall", + "email": "mmulhall1h@wikipedia.org", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$puP8HOnkmKYihBaoEGd/ver1mnQtXjiROSUIJmCx57kgJG6i3YkVe", + "_id": { + "$oid": "666cbc4240af7b375e352ec2" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.820Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.820Z" + }, + "__v": 0 + }, + { + "firstName": "Nicolai", + "lastName": "Brugsma", + "email": "nbrugsma1i@4shared.com", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$24cDVgCS2at6U.aIF8Rlr.wa6UqCtCQ/YRPONOoAw2Yyn1Pwx.NIy", + "_id": { + "$oid": "666cbc4240af7b375e352ec3" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.820Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.820Z" + }, + "__v": 0 + }, + { + "firstName": "Bryan", + "lastName": "Heffy", + "email": "bheffy1j@cbsnews.com", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$12.kCM/9jHj4HF3yaJHrCuCOdrHeqbGLRra.Fso/Q8agNRzP3aZTe", + "_id": { + "$oid": "666cbc4240af7b375e352ec4" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.820Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.820Z" + }, + "__v": 0 + }, + { + "firstName": "Donavon", + "lastName": "Osichev", + "email": "dosichev1k@pinterest.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$.zUOKkX/lppHOUafMRFbhO8eG2dRNoztjiUK4zQt08E1oacDmfey2", + "_id": { + "$oid": "666cbc4240af7b375e352ec5" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.820Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.820Z" + }, + "__v": 0 + }, + { + "firstName": "Kennan", + "lastName": "Dugget", + "email": "kdugget1l@opensource.org", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$r5Uy9vOXDYKbOIOTHtQSOOZAkTTgwXIjfasm.CUxBgaBaAFISUBs.", + "_id": { + "$oid": "666cbc4240af7b375e352ec6" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.820Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.820Z" + }, + "__v": 0 + }, + { + "firstName": "Paton", + "lastName": "Climance", + "email": "pclimance1m@webnode.com", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$GD4v9PWqcEkvKzFSdYQUge.SpwxFh22PoOn4BzJ43o0OI5YgOS1e2", + "_id": { + "$oid": "666cbc4240af7b375e352ec7" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.820Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.821Z" + }, + "__v": 0 + }, + { + "firstName": "Caitrin", + "lastName": "McAllister", + "email": "cmcallister1n@ft.com", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$mxRynmdJerc5Rdh.gw8u1OR8I5ARp8Qwx2cxIw1OaQhsalkLhHKw6", + "_id": { + "$oid": "666cbc4240af7b375e352ec8" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.821Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.821Z" + }, + "__v": 0 + }, + { + "firstName": "Sephira", + "lastName": "Kaming", + "email": "skaming1o@about.me", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$yVxwVZ2Zz3q0MGzw3b2AaOU8N8no5Fr8l8pG8JnFe9UUlGMFWYYhm", + "_id": { + "$oid": "666cbc4240af7b375e352ec9" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.821Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.821Z" + }, + "__v": 0 + }, + { + "firstName": "Fraser", + "lastName": "Londsdale", + "email": "flondsdale1p@freewebs.com", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$7cQl0FLID/Bbc.LU8DRKG.loMRTr2wUtNzX9pAhwfHazdXqoMd6VO", + "_id": { + "$oid": "666cbc4240af7b375e352eca" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.821Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.821Z" + }, + "__v": 0 + }, + { + "firstName": "Alyssa", + "lastName": "Bangham", + "email": "abangham1q@usgs.gov", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$.2cgQkHqgunqII0AIs/X5u2udyiSqIwqYEVN6tExoGvi9UfZBXADi", + "_id": { + "$oid": "666cbc4240af7b375e352ecb" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.821Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.821Z" + }, + "__v": 0 + }, + { + "firstName": "Clarette", + "lastName": "Alcock", + "email": "calcock1r@amazonaws.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$WL9bAT6uJaBY/ERrMTnFt.1rOKeidfz6P4Gwt1FU4NBGdnDOvBrEW", + "_id": { + "$oid": "666cbc4240af7b375e352ecc" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.821Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.821Z" + }, + "__v": 0 + }, + { + "firstName": "Lizbeth", + "lastName": "France", + "email": "lfrance1s@yahoo.com", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$qkm5apDhFLouajkMGXv2COcBYnycPEmRyMUqB7xj8cy3YK1j4rJgO", + "_id": { + "$oid": "666cbc4240af7b375e352ecd" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.821Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.821Z" + }, + "__v": 0 + }, + { + "firstName": "Abramo", + "lastName": "Sparkwell", + "email": "asparkwell1t@berkeley.edu", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$nC1PIt09lQqqrUjWSUd53u3jTMHf0dmTmvHlwFW3wRsMrY1YDx1Ku", + "_id": { + "$oid": "666cbc4240af7b375e352ece" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.821Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.821Z" + }, + "__v": 0 + }, + { + "firstName": "Darb", + "lastName": "Coen", + "email": "dcoen1u@prlog.org", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$TH0goGqeBmNsBHvBZqYsN.281d/3m2ekSMBMZ4svRxg/njEckx92u", + "_id": { + "$oid": "666cbc4240af7b375e352ecf" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.821Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.821Z" + }, + "__v": 0 + }, + { + "firstName": "Gusty", + "lastName": "Besnardeau", + "email": "gbesnardeau1v@themeforest.net", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$7McgyHbA2hUMDD4fRfOxWeobmAWDzxk8eXblbpwBeeiGF7bcSTfT6", + "_id": { + "$oid": "666cbc4240af7b375e352ed0" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.821Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.821Z" + }, + "__v": 0 + }, + { + "firstName": "Randy", + "lastName": "Verriour", + "email": "rverriour1w@ebay.co.uk", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$0j14W2NxtEPPLX7qQ6vmP.1PmGI60VZDcgyL.Zi.Uq3cEa892Mnc2", + "_id": { + "$oid": "666cbc4240af7b375e352ed1" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.821Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.821Z" + }, + "__v": 0 + }, + { + "firstName": "Israel", + "lastName": "Canti", + "email": "icanti1x@businesswire.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$iq0FCr8PxS47clooK8e31.wH8drhHnjBOEenE2zvdx8nk/fweC6TW", + "_id": { + "$oid": "666cbc4240af7b375e352ed2" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.822Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.822Z" + }, + "__v": 0 + }, + { + "firstName": "Micky", + "lastName": "Dunseath", + "email": "mdunseath1y@miibeian.gov.cn", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$gSHOOzAR5DgTHHaBfN0v6eWxIaQwQF/HyV8wIizsqaSf6SgzzFEyK", + "_id": { + "$oid": "666cbc4240af7b375e352ed3" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.822Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.822Z" + }, + "__v": 0 + }, + { + "firstName": "Gabi", + "lastName": "Hardcastle", + "email": "ghardcastle1z@weebly.com", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$6Lh8dpTzv9fbgdLvMNnjC.lGoRfGmZZzzF/uY/Bj.vAIrZfTpUWQ.", + "_id": { + "$oid": "666cbc4240af7b375e352ed4" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.822Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.822Z" + }, + "__v": 0 + }, + { + "firstName": "Rakel", + "lastName": "Scothron", + "email": "rscothron20@yellowbook.com", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$rr0llebqvkz2hokjZo40muNXWH9ECQvWE7zFAgUfCsEirlW1zgKcC", + "_id": { + "$oid": "666cbc4240af7b375e352ed5" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.822Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.822Z" + }, + "__v": 0 + }, + { + "firstName": "Gretel", + "lastName": "Sitford", + "email": "gsitford21@tinyurl.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$scnuVEQDYSCpE6OKkmR0b.bm44p7XDYAQCTrYjYCo8tbFsI2cFSwK", + "_id": { + "$oid": "666cbc4240af7b375e352ed6" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.822Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.822Z" + }, + "__v": 0 + }, + { + "firstName": "Rosalinda", + "lastName": "Naisby", + "email": "rnaisby22@nationalgeographic.com", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$gzRvS1eCyZytHHBDShNhsuhP1TZDos7wt3jygmjDqW2jD/Rmt7cZ.", + "_id": { + "$oid": "666cbc4240af7b375e352ed7" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.822Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.822Z" + }, + "__v": 0 + }, + { + "firstName": "Thaddus", + "lastName": "Waddell", + "email": "twaddell23@nymag.com", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$30lwXqwrHGuv5iC2LrwdWepz4cAgcXcmKzyzOZE5ytprDPmyktlFu", + "_id": { + "$oid": "666cbc4240af7b375e352ed8" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.822Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.822Z" + }, + "__v": 0 + }, + { + "firstName": "Nadia", + "lastName": "Zeale", + "email": "nzeale24@google.ru", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$e6BvX/vvJss9sI5NbaInX.jf58zpty1YHfq4vSRFJKtDvlxVRgoku", + "_id": { + "$oid": "666cbc4240af7b375e352ed9" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.822Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.822Z" + }, + "__v": 0 + }, + { + "firstName": "Emmett", + "lastName": "Buckell", + "email": "ebuckell25@reddit.com", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$pWhNMgSR.r1moXrV7quvHO3hP3yyFBPtylGymhoBCl6YWwckGOvG6", + "_id": { + "$oid": "666cbc4240af7b375e352eda" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.822Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.822Z" + }, + "__v": 0 + }, + { + "firstName": "Lavinia", + "lastName": "Baume", + "email": "lbaume26@tinyurl.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$ONelMU1tu3b3Rh4p.aBc5.F2NuVMjJ3EMItHpLGKXt8fYrK7ZPpEW", + "_id": { + "$oid": "666cbc4240af7b375e352edb" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.822Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.822Z" + }, + "__v": 0 + }, + { + "firstName": "Janine", + "lastName": "Kitt", + "email": "jkitt27@wsj.com", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$MGIKUOh.Ntg3BaFhkLVqIOn/EcRnvqDLl1ZMm65wBUEneBezqIKzK", + "_id": { + "$oid": "666cbc4240af7b375e352edc" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.823Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.823Z" + }, + "__v": 0 + }, + { + "firstName": "Beatrix", + "lastName": "Healey", + "email": "bhealey28@amazon.co.jp", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$bVCxp5TS6pfLzICepBufvO8x8tFiWuFEieTNcBOvZgJUvJZnDLzpW", + "_id": { + "$oid": "666cbc4240af7b375e352edd" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.823Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.823Z" + }, + "__v": 0 + }, + { + "firstName": "Simone", + "lastName": "Buske", + "email": "sbuske29@soundcloud.com", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$fQHrC9UNiP5iO/z3DITTieme3jVaDum.Fuj2.fXFFx5zBHXaayeJa", + "_id": { + "$oid": "666cbc4240af7b375e352ede" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.823Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.823Z" + }, + "__v": 0 + }, + { + "firstName": "Cristine", + "lastName": "Gaddesby", + "email": "cgaddesby2a@senate.gov", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$.7D/TqiQfiDSnwR.zSlqrOX6Zx6/cLKdCasMYOrIglTD232frwmZK", + "_id": { + "$oid": "666cbc4240af7b375e352edf" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.823Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.823Z" + }, + "__v": 0 + }, + { + "firstName": "Marta", + "lastName": "Daveren", + "email": "mdaveren2b@odnoklassniki.ru", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$ne68msnmfOGO75s5LhAafOkIruU1BVh3EouJcTm14z2pFjVoW5Cw.", + "_id": { + "$oid": "666cbc4240af7b375e352ee0" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.823Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.823Z" + }, + "__v": 0 + }, + { + "firstName": "Nanon", + "lastName": "Gligoraci", + "email": "ngligoraci2c@addthis.com", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$PQ4GcCF1Uc/D6h7cIHDthez13h6Or1SgDe6dIG4bcnSRffLPDrTmC", + "_id": { + "$oid": "666cbc4240af7b375e352ee1" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.823Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.823Z" + }, + "__v": 0 + }, + { + "firstName": "Donall", + "lastName": "Frapwell", + "email": "dfrapwell2d@hostgator.com", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$2VoXkHsmhwgflG2KdonlBucy3A.lPyu2c92zobe184qt1twiqf5jS", + "_id": { + "$oid": "666cbc4240af7b375e352ee2" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.823Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.823Z" + }, + "__v": 0 + }, + { + "firstName": "Beverlee", + "lastName": "Bangham", + "email": "bbangham2e@tamu.edu", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$bIzi4GPg6FdQxDEo7vVMSuo7isWD0qWCKU57SiscDQfzCDIcKumjG", + "_id": { + "$oid": "666cbc4240af7b375e352ee3" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.823Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.823Z" + }, + "__v": 0 + }, + { + "firstName": "Englebert", + "lastName": "Bancroft", + "email": "ebancroft2f@ow.ly", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$oVzwrOIML7f.oUK94xD0FumYjJyBYOsT57/l7TWSg5dDZKBbdm6oC", + "_id": { + "$oid": "666cbc4240af7b375e352ee4" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.823Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.823Z" + }, + "__v": 0 + }, + { + "firstName": "Siegfried", + "lastName": "Castillou", + "email": "scastillou2g@reddit.com", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$s.TS3/Q.Hglq1nfCAwOnZ.2U/t1Rum8V7wts/9ouOMmy8ZXf9ai1m", + "_id": { + "$oid": "666cbc4240af7b375e352ee5" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.823Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.823Z" + }, + "__v": 0 + }, + { + "firstName": "Marvin", + "lastName": "Cranke", + "email": "mcranke2h@marketwatch.com", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$Z2vu2srMWwEba9q/3vIGKOVOZelbL1nz4e/VF/qgFlSnhKWOTPC9i", + "_id": { + "$oid": "666cbc4240af7b375e352ee6" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.823Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.823Z" + }, + "__v": 0 + }, + { + "firstName": "Arne", + "lastName": "Rummin", + "email": "arummin2i@is.gd", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$nllj2WDJlrXyLmY1e1QN3uRd7s8W3RLkdpO/hLez/PhyaBi6SWRc.", + "_id": { + "$oid": "666cbc4240af7b375e352ee7" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.824Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.824Z" + }, + "__v": 0 + }, + { + "firstName": "Seumas", + "lastName": "Feldberger", + "email": "sfeldberger2j@ning.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$..1azN9uGWaDjwsSaFkc8u.tuw2gAwLNaNKtIjxbRdN6yQvnVIZhu", + "_id": { + "$oid": "666cbc4240af7b375e352ee8" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.824Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.824Z" + }, + "__v": 0 + }, + { + "firstName": "Hilda", + "lastName": "Worham", + "email": "hworham2k@mail.ru", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$RqhbmZULHh/6cJB2byfoDe2XByGw9.wjSqA1arUFmN5qTLHVhWWVO", + "_id": { + "$oid": "666cbc4240af7b375e352ee9" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.824Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.824Z" + }, + "__v": 0 + }, + { + "firstName": "Winny", + "lastName": "O'Glessane", + "email": "woglessane2l@deviantart.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$zEEXcG/ZzAipYA7UUz6LPu60MkmLDYTwOT4Je1BEAEsQy/91mAXJC", + "_id": { + "$oid": "666cbc4240af7b375e352eea" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.824Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.824Z" + }, + "__v": 0 + }, + { + "firstName": "Gwenora", + "lastName": "Agge", + "email": "gagge2m@unesco.org", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$UqIbAE57AdPG6C9SX9mQ6uDkbECkdp/bH7JS5duKWS95OP8MQNOYK", + "_id": { + "$oid": "666cbc4240af7b375e352eeb" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.824Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.824Z" + }, + "__v": 0 + }, + { + "firstName": "Piggy", + "lastName": "Torrisi", + "email": "ptorrisi2n@goodreads.com", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$4dEAek7ltfA9TV8VSsrP.OXSaAfm8f8cEN5FIyRb11Aqv9JKgVj.u", + "_id": { + "$oid": "666cbc4240af7b375e352eec" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.824Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.824Z" + }, + "__v": 0 + }, + { + "firstName": "Niki", + "lastName": "Glaysher", + "email": "nglaysher2o@kickstarter.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$Z7jMPKBjU5eZf7OLm3AnW.aa7DrAhywM9EZu4WVMC7VWo7ZgIMxpK", + "_id": { + "$oid": "666cbc4240af7b375e352eed" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.824Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.824Z" + }, + "__v": 0 + }, + { + "firstName": "Pail", + "lastName": "Vasechkin", + "email": "pvasechkin2p@vk.com", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$6njt4MgwlR5b29CwsvnNLe0yzU5KkBEhH7t9L5CYDfvpHRXuPLQ16", + "_id": { + "$oid": "666cbc4240af7b375e352eee" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.824Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.824Z" + }, + "__v": 0 + }, + { + "firstName": "Gav", + "lastName": "Renneke", + "email": "grenneke2q@hp.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$0TpHZ7.IRe3WmTVlSYRhdewfbKz3OihUd5KIBvaK1ReGNVGyA.huu", + "_id": { + "$oid": "666cbc4240af7b375e352eef" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.824Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.824Z" + }, + "__v": 0 + }, + { + "firstName": "Perle", + "lastName": "Rizziello", + "email": "prizziello2r@mashable.com", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$fpnLDlwbKIaZ3yJZe6qB5OU/62Mxc4QGfLl48VVAHDwDsgY8MCukq", + "_id": { + "$oid": "666cbc4240af7b375e352ef0" + }, + "lastVisit": { + "$date": "2024-06-14T21:55:14.824Z" + }, + "date": { + "$date": "2024-06-14T21:55:14.824Z" + }, + "__v": 0 + } +] diff --git a/scripts/db/mongo-dev-init/mongo-init.js b/scripts/db/mongo-dev-init/mongo-init.js new file mode 100644 index 00000000..4ff11d06 --- /dev/null +++ b/scripts/db/mongo-dev-init/mongo-init.js @@ -0,0 +1,33 @@ +console.log('๐Ÿ” DB Admin authenticating...'); +db = db.getSiblingDB('admin'); +db.auth(process.env.MONGO_INITDB_ROOT_USERNAME, process.env.MONGO_INITDB_ROOT_PASSWORD); + +console.log(`๐Ÿฅท Creating user for ${process.env.MONGO_INITDB_DATABASE}`); +db = db.getSiblingDB(process.env.MONGO_INITDB_DATABASE); +db.createUser({ + user: process.env.MONGO_USER, + pwd: process.env.MONGO_USER_PWD, + roles: [ + { + role: 'readWrite', + db: process.env.MONGO_INITDB_DATABASE, + }, + ], +}); + +const collectionNames = [ + 'alumnis', + 'graduateinvitations', + 'users', + 'profiles', + 'forums', + 'threads', + 'posts', +]; + +console.log(`๐Ÿ“„ Creating Database Collections`); +collectionNames.forEach((collectionName) => { + console.log(`๐Ÿ’ฅ Creating ${collectionName} Collection...`); + db.createCollection(collectionName); + console.log(`๐Ÿ ${collectionName} Collection Created Successfully!`); +}); diff --git a/scripts/db/mongo-dev-init/seed.sh b/scripts/db/mongo-dev-init/seed.sh new file mode 100644 index 00000000..a9c76b68 --- /dev/null +++ b/scripts/db/mongo-dev-init/seed.sh @@ -0,0 +1,85 @@ +#!/usr/bin/bash + +# Color variables +RED="\033[1;3;31m" +ORANGE="\033[1;3;38;5;208m" +GREEN="\033[1;3;32m" +CORNBLUE="\033[1;3;38;5;69m" +NC='\033[0m' # No color + +echo -e "\n${GREEN}Seeding MongoDB with Dev Data${NC}" + +MONGO_DB=${MONGO_INITDB_DATABASE} +IMPORT_STATUS=0 + +echo -e "\n${CORNBLUE}Seeding Alumni Collection...${NC}\n" +mongoimport --db="${MONGO_DB}" --drop --collection="alumnis" --type="json" --file="docker-entrypoint-initdb.d/MOCK_ALUMNI.json" --jsonArray +IMPORT_STATUS=$? +if [[ $IMPORT_STATUS != 0 ]]; then + echo -e "\n${RED}Alumni seeding failed!${NC}\n" + exit 1 +else + echo -e "\n${GREEN}Alumni seeded successfully!${NC}\n" +fi + +echo -e "\n${CORNBLUE}Seeding GraduateInvitations Collection...${NC}\n" +mongoimport --db="${MONGO_DB}" --drop --collection="graduateinvitations" --type="json" --file="docker-entrypoint-initdb.d/MOCK_GRADUATE_INVITATIONS.json" --jsonArray +IMPORT_STATUS=$? +if [[ $IMPORT_STATUS != 0 ]]; then + echo -e "\n${RED}GraduateInvitations seeding failed!${NC}\n" + exit 1 +else + echo -e "\n${GREEN}GraduateInvitations seeded successfully!${NC}\n" +fi + +echo -e "\n${CORNBLUE}Seeding Users Collection...${NC}\n" +mongoimport --db="${MONGO_DB}" --drop --collection="users" --type="json" --file="docker-entrypoint-initdb.d/MOCK_USERS.json" --jsonArray +IMPORT_STATUS=$? +if [[ $IMPORT_STATUS != 0 ]]; then + echo -e "\n${RED}Users seeding failed!${NC}\n" + exit 1 +else + echo -e "\n${GREEN}Users seeded successfully!${NC}\n" +fi + +echo -e "\n${CORNBLUE}Seeding Profiles Collection...${NC}\n" +mongoimport --db="${MONGO_DB}" --drop --collection="profiles" --type="json" --file="docker-entrypoint-initdb.d/MOCK_PROFILES.json" --jsonArray +IMPORT_STATUS=$? +if [[ $IMPORT_STATUS != 0 ]]; then + echo -e "\n${RED}Profiles seeding failed!${NC}\n" + exit 1 +else + echo -e "\n${GREEN}Profiles seeded successfully!${NC}\n" +fi + +echo -e "\n${CORNBLUE}Seeding Forums Collection...${NC}\n" +mongoimport --db="${MONGO_DB}" --drop --collection="forums" --type="json" --file="docker-entrypoint-initdb.d/MOCK_FORUMS.json" --jsonArray +IMPORT_STATUS=$? +if [[ $IMPORT_STATUS != 0 ]]; then + echo -e "\n${RED}Forums seeding failed!${NC}\n" + exit 1 +else + echo -e "\n${GREEN}Forums seeded successfully!${NC}\n" +fi + +echo -e "\n${CORNBLUE}Seeding Threads Collection...${NC}\n" +mongoimport --db="${MONGO_DB}" --drop --collection="threads" --type="json" --file="docker-entrypoint-initdb.d/MOCK_THREADS.json" --jsonArray +IMPORT_STATUS=$? +if [[ $IMPORT_STATUS != 0 ]]; then + echo -e "\n${RED}Threads seeding failed!${NC}\n" + exit 1 +else + echo -e "\n${GREEN}Threads seeded successfully!${NC}\n" +fi + +echo -e "\n${CORNBLUE}Seeding Posts Collection...${NC}\n" +mongoimport --db="${MONGO_DB}" --drop --collection="posts" --type="json" --file="docker-entrypoint-initdb.d/MOCK_POSTS.json" --jsonArray +IMPORT_STATUS=$? +if [[ $IMPORT_STATUS != 0 ]]; then + echo -e "\n${RED}Posts seeding failed!${NC}\n" + exit 1 +else + echo -e "\n${GREEN}Posts seeded successfully!${NC}\n" +fi + +echo -e "\n${GREEN}Seeding Complete! Have fun!${NC}\n" \ No newline at end of file From 443c2ea587490d03d7ebd8d8ccdc6b9411e6908d Mon Sep 17 00:00:00 2001 From: seantokuzo Date: Fri, 14 Jun 2024 17:40:21 -0700 Subject: [PATCH 06/25] add mongo-init folder to eslint ignores --- eslint.config.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/eslint.config.js b/eslint.config.js index 290d2823..2c3603df 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -17,7 +17,13 @@ module.exports = [ }, // Files/Directories to be ignored by ESLint { - ignores: ['**/node_modules/', 'coverage/', '**/build/', '**/dist/'], + ignores: [ + '**/node_modules/', + 'coverage/', + '**/build/', + '**/dist/', + '**/scripts/db/mongo-dev-init', + ], }, // ESLint Recommended Configuration { From a7855907ad759b35cdcb074f27b722f85ac9dcb5 Mon Sep 17 00:00:00 2001 From: seantokuzo Date: Fri, 14 Jun 2024 17:45:20 -0700 Subject: [PATCH 07/25] add env vars - no need for .env file - add version back for dev branch consistency --- docker-compose-dev.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docker-compose-dev.yml b/docker-compose-dev.yml index 9f570d45..c0ee536d 100644 --- a/docker-compose-dev.yml +++ b/docker-compose-dev.yml @@ -1,3 +1,4 @@ +version: '3' services: dev: image: codehammers/ch-dev-dep-v2:latest @@ -10,8 +11,9 @@ services: - node_modules:/usr/src/app/node_modules - client_node_modules:/usr/src/app/client/node_modules environment: + - PORT=3000 - NODE_ENV=development - - JWT_SECRET=${JWT_SECRET} + - JWT_SECRET=fakeDevelopmentSecret - MONGO_URI=mongodb://root:rootPass@ch-mongo-dev:27017/ch-testdb depends_on: - ch-mongo-dev From 1ad99f11e8cac65718aed940db1828c25ea823b1 Mon Sep 17 00:00:00 2001 From: seantokuzo Date: Fri, 14 Jun 2024 19:24:57 -0700 Subject: [PATCH 08/25] reorder service definitions for consistency --- docker-compose-dev.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose-dev.yml b/docker-compose-dev.yml index 0eaf788f..9f62f405 100644 --- a/docker-compose-dev.yml +++ b/docker-compose-dev.yml @@ -37,8 +37,8 @@ services: - '5432:5432' ch-mongo-dev: - container_name: ch-mongo-dev image: mongo + container_name: ch-mongo-dev restart: always ports: - 27017:27017 From e3a1caace189ced89f3bd5f21f7b461e8e633eaf Mon Sep 17 00:00:00 2001 From: seantokuzo Date: Tue, 18 Jun 2024 19:30:53 -0700 Subject: [PATCH 09/25] add s3 presignURL bypass on profile pic in dev mode --- server/controllers/profileController.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/server/controllers/profileController.ts b/server/controllers/profileController.ts index 0ce0b137..00db5446 100644 --- a/server/controllers/profileController.ts +++ b/server/controllers/profileController.ts @@ -134,6 +134,11 @@ const getAllProfiles = async (req: Request, res: Response, next: NextFunction) = message: { err: 'There were no profiles to retrieve' }, }); } else { + // Development mode profile pics - Temporary + if (process.env.NODE_ENV === 'development') { + return res.status(201).json(profiles); + } + const processedProfiles = await Promise.all( profiles.map(async (profile) => { if (profile.profilePhoto) { @@ -174,6 +179,11 @@ const getProfileById = async (req: Request, res: Response, next: NextFunction) = message: { err: 'An error occurred during profile retrieval' }, }); } + // Development mode profile pics - Temporary + if (process.env.NODE_ENV === 'development') { + return res.status(201).json(profile); + } + if (profile.profilePhoto) { const presignedUrl = s3.getSignedUrl('getObject', { Bucket: process.env.BUCKET_NAME, From 8977de377264cac33b897f50aa6a503d28585687 Mon Sep 17 00:00:00 2001 From: seantokuzo Date: Tue, 18 Jun 2024 19:31:06 -0700 Subject: [PATCH 10/25] update seed data --- scripts/db/mongo-dev-init/MOCK_ALUMNI.json | 12904 +++++----- scripts/db/mongo-dev-init/MOCK_FORUMS.json | 100 +- .../MOCK_GRADUATE_INVITATIONS.json | 800 +- scripts/db/mongo-dev-init/MOCK_POSTS.json | 627 +- scripts/db/mongo-dev-init/MOCK_PROFILES.json | 20087 ++++++---------- scripts/db/mongo-dev-init/MOCK_THREADS.json | 520 +- scripts/db/mongo-dev-init/MOCK_USERS.json | 1091 +- 7 files changed, 15680 insertions(+), 20449 deletions(-) diff --git a/scripts/db/mongo-dev-init/MOCK_ALUMNI.json b/scripts/db/mongo-dev-init/MOCK_ALUMNI.json index 4e048f00..f9989d3b 100644 --- a/scripts/db/mongo-dev-init/MOCK_ALUMNI.json +++ b/scripts/db/mongo-dev-init/MOCK_ALUMNI.json @@ -8,15 +8,15 @@ "cohort": "45", "jobTitle": "Full-Stack Application Developer", "industry": "Retail", - "cities": ["Las Vegas", "Nashville"], + "cities": ["Laredo", "Philadelphia", "Fresno"], "_id": { - "$oid": "666cbc3240af7b375e35212a" + "$oid": "66723d958f368f285d303d67" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.812Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.812Z" }, "__v": 0 }, @@ -29,15 +29,15 @@ "cohort": "10", "jobTitle": "Software Engineer intern", "industry": "Security/Data Privacy", - "cities": ["Aurora"], + "cities": ["Baltimore", "Mumbai", "Chicago"], "_id": { - "$oid": "666cbc3240af7b375e35212b" + "$oid": "66723d958f368f285d303d68" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -50,15 +50,15 @@ "cohort": "15", "jobTitle": "VP, Projects (working under CTO); and General Counsel", "industry": "E-Commerce", - "cities": ["Saint Paul", "Henderson"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35212c" + "$oid": "66723d958f368f285d303d69" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -71,15 +71,15 @@ "cohort": "43", "jobTitle": "Software Engineer", "industry": "Health Tech", - "cities": ["Tulsa", "Bakersfield", "Washington", "Lubbock"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35212d" + "$oid": "66723d958f368f285d303d6a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -92,15 +92,15 @@ "cohort": "48", "jobTitle": "Software Engineer", "industry": "Biotech", - "cities": ["North Las Vegas", "Miami", "Garland"], + "cities": ["Boston", "Lubbock"], "_id": { - "$oid": "666cbc3240af7b375e35212e" + "$oid": "66723d958f368f285d303d6b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -113,15 +113,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Mesa", "Memphis", "Tulsa"], + "cities": ["Albuquerque"], "_id": { - "$oid": "666cbc3240af7b375e35212f" + "$oid": "66723d958f368f285d303d6c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -134,15 +134,15 @@ "cohort": "50", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Omaha", "Corpus Christi"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352130" + "$oid": "66723d958f368f285d303d6d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -155,15 +155,15 @@ "cohort": "5", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Riverside", "Charlotte", "Madison", "Toronto"], + "cities": ["Oakland"], "_id": { - "$oid": "666cbc3240af7b375e352131" + "$oid": "66723d958f368f285d303d6e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -176,15 +176,15 @@ "cohort": "4", "jobTitle": "Backend Engineer", "industry": "Healthtech/Healthcare", - "cities": ["Jersey City", "Tokyo", "Fort Wayne"], + "cities": ["Sacramento", "San Diego", "Chandler"], "_id": { - "$oid": "666cbc3240af7b375e352132" + "$oid": "66723d958f368f285d303d6f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -197,15 +197,15 @@ "cohort": "25", "jobTitle": "Full Stack Engineer", "industry": "Software Development", - "cities": ["Glendale", "Philadelphia"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352133" + "$oid": "66723d958f368f285d303d70" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -218,15 +218,15 @@ "cohort": "11", "jobTitle": "Full Stack Software Engineer, Senior Analyst", "industry": "Consulting", - "cities": ["North Las Vegas"], + "cities": ["Atlanta", "Arlington"], "_id": { - "$oid": "666cbc3240af7b375e352134" + "$oid": "66723d958f368f285d303d71" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -239,15 +239,15 @@ "cohort": "23", "jobTitle": "Node Microservices Engineer", "industry": "", - "cities": ["Honolulu", "Sacramento"], + "cities": ["Winston-Salem", "Tampa"], "_id": { - "$oid": "666cbc3240af7b375e352135" + "$oid": "66723d958f368f285d303d72" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -260,15 +260,15 @@ "cohort": "28", "jobTitle": "Software Artisan", "industry": "Technology", - "cities": ["Portland", "San Diego"], + "cities": ["Memphis"], "_id": { - "$oid": "666cbc3240af7b375e352136" + "$oid": "66723d958f368f285d303d73" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -281,15 +281,15 @@ "cohort": "35", "jobTitle": "Full Stack Engineer", "industry": "Artificial Intelligence", - "cities": ["Austin"], + "cities": ["Raleigh"], "_id": { - "$oid": "666cbc3240af7b375e352137" + "$oid": "66723d958f368f285d303d74" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -302,15 +302,15 @@ "cohort": "26", "jobTitle": "Software Engineer II - Backend", "industry": "Finance", - "cities": ["Laredo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352138" + "$oid": "66723d958f368f285d303d75" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -323,15 +323,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "\"Data Protection/ Cyber Security\"", - "cities": ["London", "Mumbai"], + "cities": ["Omaha", "El Paso"], "_id": { - "$oid": "666cbc3240af7b375e352139" + "$oid": "66723d958f368f285d303d76" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -344,15 +344,15 @@ "cohort": "15", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Louisville", "Detroit", "Pittsburgh", "Norfolk"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35213a" + "$oid": "66723d958f368f285d303d77" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -365,15 +365,15 @@ "cohort": "6", "jobTitle": "Software Engineer", "industry": "Security", - "cities": ["Anchorage", "Baltimore", "New Orleans", "Tokyo"], + "cities": ["Fort Wayne", "Glendale"], "_id": { - "$oid": "666cbc3240af7b375e35213b" + "$oid": "66723d958f368f285d303d78" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -386,15 +386,15 @@ "cohort": "25", "jobTitle": "Senior Software Engineer", "industry": "Industrial Lighting/IoT", - "cities": ["Chula Vista"], + "cities": ["Greensboro", "Fresno", "Tulsa"], "_id": { - "$oid": "666cbc3240af7b375e35213c" + "$oid": "66723d958f368f285d303d79" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -407,15 +407,15 @@ "cohort": "7", "jobTitle": "Software Engineer III", "industry": "Biotech", - "cities": ["Honolulu"], + "cities": ["Detroit", "Wichita"], "_id": { - "$oid": "666cbc3240af7b375e35213d" + "$oid": "66723d958f368f285d303d7a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -428,15 +428,15 @@ "cohort": "7", "jobTitle": "Software Engineer", "industry": "", - "cities": ["San Jose", "Philadelphia", "Milwaukee", "Washington"], + "cities": ["Chicago", "Baltimore"], "_id": { - "$oid": "666cbc3240af7b375e35213e" + "$oid": "66723d958f368f285d303d7b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -449,15 +449,15 @@ "cohort": "26", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Honolulu", "Anchorage", "Chula Vista"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35213f" + "$oid": "66723d958f368f285d303d7c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -470,15 +470,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "Education", - "cities": ["Denver", "Atlanta"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352140" + "$oid": "66723d958f368f285d303d7d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -491,15 +491,15 @@ "cohort": "45", "jobTitle": "Web Services Engineer", "industry": "Education", - "cities": ["Houston", "Garland", "Toledo", "Gilbert"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352141" + "$oid": "66723d958f368f285d303d7e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -512,15 +512,15 @@ "cohort": "7", "jobTitle": "Web Developer", "industry": "Gaming/eSports", - "cities": ["Madison"], + "cities": ["Kansas City", "Lubbock"], "_id": { - "$oid": "666cbc3240af7b375e352142" + "$oid": "66723d958f368f285d303d7f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -533,15 +533,15 @@ "cohort": "50", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Henderson", "San Francisco"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352143" + "$oid": "66723d958f368f285d303d80" }, "createdAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.239Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -554,15 +554,15 @@ "cohort": "18", "jobTitle": "Sr. Software Engineer", "industry": "Digital Asset Management", - "cities": ["Sรฃo Paulo", "Louisville", "Virginia Beach"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352144" + "$oid": "66723d958f368f285d303d81" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -575,15 +575,15 @@ "cohort": "34", "jobTitle": "Full-stack Engineer", "industry": "SaaS", - "cities": ["Chesapeake"], + "cities": ["Tokyo", "Houston"], "_id": { - "$oid": "666cbc3240af7b375e352145" + "$oid": "66723d958f368f285d303d82" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -596,15 +596,15 @@ "cohort": "10", "jobTitle": "DB architect", "industry": "Appliances", - "cities": ["Austin", "Kansas City", "Jacksonville", "Irvine"], + "cities": ["Oklahoma City", "Scottsdale", "Aurora"], "_id": { - "$oid": "666cbc3240af7b375e352146" + "$oid": "66723d958f368f285d303d83" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -617,15 +617,15 @@ "cohort": "40", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Plano", "San Diego", "Madison", "Buffalo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352147" + "$oid": "66723d958f368f285d303d84" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -638,15 +638,15 @@ "cohort": "7", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Newark", "New York", "Irvine"], + "cities": ["Anaheim", "Toledo", "Wichita"], "_id": { - "$oid": "666cbc3240af7b375e352148" + "$oid": "66723d958f368f285d303d85" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -659,15 +659,15 @@ "cohort": "8", "jobTitle": "Senior Software Engineer", "industry": "Healthcare", - "cities": ["Aurora"], + "cities": ["Anchorage", "Gilbert"], "_id": { - "$oid": "666cbc3240af7b375e352149" + "$oid": "66723d958f368f285d303d86" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -680,15 +680,15 @@ "cohort": "29", "jobTitle": "Frontend Software Engineer", "industry": "Government services", - "cities": ["Sรฃo Paulo", "Madison", "Oklahoma City", "Phoenix"], + "cities": ["Henderson", "Jacksonville"], "_id": { - "$oid": "666cbc3240af7b375e35214a" + "$oid": "66723d958f368f285d303d87" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -701,15 +701,15 @@ "cohort": "8", "jobTitle": "Solutions Engineer", "industry": "Software / Tech", - "cities": ["Aurora", "Washington", "Irving", "Laredo"], + "cities": ["Milwaukee", "Tucson", "Raleigh"], "_id": { - "$oid": "666cbc3240af7b375e35214b" + "$oid": "66723d958f368f285d303d88" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -722,15 +722,15 @@ "cohort": "53", "jobTitle": "Software Engineer Front End", "industry": "Biotech", - "cities": ["Austin"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35214c" + "$oid": "66723d958f368f285d303d89" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -743,15 +743,15 @@ "cohort": "7", "jobTitle": "Lead Developer", "industry": "Software Solutions/Developer Tools", - "cities": ["Raleigh", "Henderson", "Lexington", "Honolulu"], + "cities": ["Arlington", "Mexico City", "Kansas City"], "_id": { - "$oid": "666cbc3240af7b375e35214d" + "$oid": "66723d958f368f285d303d8a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -764,15 +764,15 @@ "cohort": "7", "jobTitle": "Software Engineer II", "industry": "", - "cities": ["San Diego", "Minneapolis", "Louisville"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35214e" + "$oid": "66723d958f368f285d303d8b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -785,15 +785,15 @@ "cohort": "12", "jobTitle": "Software Engineer II", "industry": "Fintech", - "cities": ["Fresno"], + "cities": ["Aurora", "Tulsa"], "_id": { - "$oid": "666cbc3240af7b375e35214f" + "$oid": "66723d958f368f285d303d8c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -806,15 +806,15 @@ "cohort": "6", "jobTitle": "Senior Solutions Engineer", "industry": "Retail", - "cities": ["Greensboro", "Arlington", "Kansas City"], + "cities": ["St. Petersburg", "Albuquerque", "Oakland"], "_id": { - "$oid": "666cbc3240af7b375e352150" + "$oid": "66723d958f368f285d303d8d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -827,15 +827,15 @@ "cohort": "27", "jobTitle": "Sr. Software Engineer", "industry": "Fintech", - "cities": ["Mexico City"], + "cities": ["Dallas"], "_id": { - "$oid": "666cbc3240af7b375e352151" + "$oid": "66723d958f368f285d303d8e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -848,15 +848,15 @@ "cohort": "25", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Tucson", "Gilbert"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352152" + "$oid": "66723d958f368f285d303d8f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -869,15 +869,15 @@ "cohort": "28", "jobTitle": "Frontend Software Engineer", "industry": "Fintech", - "cities": ["New Orleans", "El Paso", "Riverside"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352153" + "$oid": "66723d958f368f285d303d90" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -890,15 +890,15 @@ "cohort": "27", "jobTitle": "Principal Software Engineer", "industry": "Fintech", - "cities": ["San Jose", "Berlin", "Bakersfield", "Fort Worth"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352154" + "$oid": "66723d958f368f285d303d91" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -911,15 +911,15 @@ "cohort": "28", "jobTitle": "Principal Software Engineer", "industry": "Fintech", - "cities": ["Glendale", "Sรฃo Paulo"], + "cities": ["Mexico City", "Winston-Salem", "San Antonio"], "_id": { - "$oid": "666cbc3240af7b375e352155" + "$oid": "66723d958f368f285d303d92" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -932,15 +932,15 @@ "cohort": "10", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Buffalo", "Paris", "Dallas"], + "cities": ["Laredo", "North Las Vegas", "Berlin"], "_id": { - "$oid": "666cbc3240af7b375e352156" + "$oid": "66723d958f368f285d303d93" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -953,15 +953,15 @@ "cohort": "23", "jobTitle": "API Developer", "industry": "Fintech", - "cities": ["Riverside", "Sydney", "Jacksonville", "Dallas"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352157" + "$oid": "66723d958f368f285d303d94" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.813Z" }, "__v": 0 }, @@ -974,15 +974,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "E-Commerce/Fashion/Wellness/Mindfulness", - "cities": ["Newark", "Chula Vista", "Washington"], + "cities": ["Lexington", "Bakersfield", "Laredo"], "_id": { - "$oid": "666cbc3240af7b375e352158" + "$oid": "66723d958f368f285d303d95" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -995,15 +995,15 @@ "cohort": "11", "jobTitle": "Software Engineer", "industry": "FinTech", - "cities": ["Garland", "Seattle", "Milwaukee", "Albuquerque"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352159" + "$oid": "66723d958f368f285d303d96" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1016,15 +1016,15 @@ "cohort": "47", "jobTitle": "Senior Consultant", "industry": "Consultancy - Fintech, Manufacturing, Healthcare", - "cities": ["Lincoln"], + "cities": ["Long Beach", "Stockton"], "_id": { - "$oid": "666cbc3240af7b375e35215a" + "$oid": "66723d958f368f285d303d97" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1037,15 +1037,15 @@ "cohort": "32", "jobTitle": "Senior Software Engineer", "industry": "Data Analytics", - "cities": ["Plano", "Anchorage"], + "cities": ["Glendale", "Pittsburgh"], "_id": { - "$oid": "666cbc3240af7b375e35215b" + "$oid": "66723d958f368f285d303d98" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1058,15 +1058,15 @@ "cohort": "15", "jobTitle": "DevOps Engineering Manager", "industry": "Communication and Media", - "cities": ["San Francisco", "Irving", "Mexico City"], + "cities": ["San Antonio", "Portland", "Toledo"], "_id": { - "$oid": "666cbc3240af7b375e35215c" + "$oid": "66723d958f368f285d303d99" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1079,15 +1079,15 @@ "cohort": "30", "jobTitle": "Software Development Engineer", "industry": "Software / Tech", - "cities": ["Cleveland", "Boston", "Denver", "Mumbai"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35215d" + "$oid": "66723d958f368f285d303d9a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1100,15 +1100,15 @@ "cohort": "29", "jobTitle": "SDEII", "industry": "Ecommerce", - "cities": ["Philadelphia", "Lincoln", "Mumbai"], + "cities": ["Garland", "Omaha"], "_id": { - "$oid": "666cbc3240af7b375e35215e" + "$oid": "66723d958f368f285d303d9b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1121,15 +1121,15 @@ "cohort": "32", "jobTitle": "SDE II (Full Stack)", "industry": "Software / Tech", - "cities": ["Virginia Beach", "Winston-Salem"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35215f" + "$oid": "66723d958f368f285d303d9c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1142,15 +1142,15 @@ "cohort": "50", "jobTitle": "Software Development Engineer", "industry": "Software / Tech", - "cities": ["Baltimore", "Irvine"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352160" + "$oid": "66723d958f368f285d303d9d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1163,15 +1163,15 @@ "cohort": "7", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Greensboro", "San Francisco"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352161" + "$oid": "66723d958f368f285d303d9e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1184,15 +1184,15 @@ "cohort": "26", "jobTitle": "Front-End Engineer", "industry": "AWS / internet infrastructure", - "cities": ["Tokyo", "Paris"], + "cities": ["Dallas"], "_id": { - "$oid": "666cbc3240af7b375e352162" + "$oid": "66723d958f368f285d303d9f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1205,15 +1205,15 @@ "cohort": "27", "jobTitle": "Software Development Engineer II", "industry": "Ecommerce", - "cities": ["Tucson", "Louisville", "Philadelphia", "Denver"], + "cities": ["Sydney", "Austin", "Reno"], "_id": { - "$oid": "666cbc3240af7b375e352163" + "$oid": "66723d958f368f285d303da0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1226,15 +1226,15 @@ "cohort": "19", "jobTitle": "Software Development Engineer", "industry": "Software / Tech", - "cities": ["Omaha", "Mexico City"], + "cities": ["Oakland", "New Orleans"], "_id": { - "$oid": "666cbc3240af7b375e352164" + "$oid": "66723d958f368f285d303da1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1247,15 +1247,15 @@ "cohort": "16", "jobTitle": "Software Development Engineer II", "industry": "Technology", - "cities": ["Laredo", "Bakersfield", "St. Petersburg", "Tulsa"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352165" + "$oid": "66723d958f368f285d303da2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1268,15 +1268,15 @@ "cohort": "30", "jobTitle": "Software Develpment Engineer", "industry": "Cloud", - "cities": ["Lexington", "Tucson", "Colorado Springs"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352166" + "$oid": "66723d958f368f285d303da3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1289,15 +1289,15 @@ "cohort": "2", "jobTitle": "Front-End Engineer", "industry": "e-commerce, cloud computing, digital streaming, and artificial intelligence.", - "cities": ["Louisville"], + "cities": ["Plano", "Henderson"], "_id": { - "$oid": "666cbc3240af7b375e352167" + "$oid": "66723d958f368f285d303da4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1310,15 +1310,15 @@ "cohort": "5", "jobTitle": "Software Development Engineer 1", "industry": "Software / Tech", - "cities": ["Tampa", "Fort Worth", "Chesapeake", "Reno"], + "cities": ["Boston", "Baltimore"], "_id": { - "$oid": "666cbc3240af7b375e352168" + "$oid": "66723d958f368f285d303da5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1331,15 +1331,15 @@ "cohort": "14", "jobTitle": "Frontend Engineer II", "industry": "Retail", - "cities": ["Columbus", "Las Vegas", "Reno"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352169" + "$oid": "66723d958f368f285d303da6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1352,15 +1352,15 @@ "cohort": "20", "jobTitle": "Software Development Engineer II", "industry": "Tech", - "cities": ["Wichita", "Riverside"], + "cities": ["Detroit", "Santa Ana"], "_id": { - "$oid": "666cbc3240af7b375e35216a" + "$oid": "66723d958f368f285d303da7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1373,15 +1373,15 @@ "cohort": "48", "jobTitle": "Front End Engineer", "industry": "Software / Tech", - "cities": ["Toronto", "Aurora", "Irvine", "Buffalo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35216b" + "$oid": "66723d958f368f285d303da8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1394,15 +1394,15 @@ "cohort": "39", "jobTitle": "Software Development Engineer 1", "industry": "Retail", - "cities": ["Irvine"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35216c" + "$oid": "66723d958f368f285d303da9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1415,15 +1415,15 @@ "cohort": "6", "jobTitle": "Software Development Engineer, People Engine", "industry": "Software / Tech", - "cities": ["Honolulu", "Toronto"], + "cities": ["Kansas City", "Miami"], "_id": { - "$oid": "666cbc3240af7b375e35216d" + "$oid": "66723d958f368f285d303daa" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1436,15 +1436,15 @@ "cohort": "46", "jobTitle": "Front End Engineer", "industry": "Cloud Services", - "cities": ["Arlington"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35216e" + "$oid": "66723d958f368f285d303dab" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1457,15 +1457,15 @@ "cohort": "31", "jobTitle": "Software Development Engineer I", "industry": "Advertising", - "cities": ["Paris", "Long Beach"], + "cities": ["Norfolk"], "_id": { - "$oid": "666cbc3240af7b375e35216f" + "$oid": "66723d958f368f285d303dac" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1478,15 +1478,15 @@ "cohort": "29", "jobTitle": "Software Development Engineer", "industry": "Cloud", - "cities": ["Mesa"], + "cities": ["Colorado Springs", "Baltimore", "Omaha"], "_id": { - "$oid": "666cbc3240af7b375e352170" + "$oid": "66723d958f368f285d303dad" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1499,15 +1499,15 @@ "cohort": "32", "jobTitle": "SDE1", "industry": "Advertising", - "cities": ["St. Petersburg", "Gilbert"], + "cities": ["Baltimore", "San Francisco"], "_id": { - "$oid": "666cbc3240af7b375e352171" + "$oid": "66723d958f368f285d303dae" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1520,15 +1520,15 @@ "cohort": "26", "jobTitle": "Software Development Engineer", "industry": "Cloud Services", - "cities": ["St. Petersburg", "Lubbock", "Berlin"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352172" + "$oid": "66723d958f368f285d303daf" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1541,15 +1541,15 @@ "cohort": "44", "jobTitle": "Software Development Engineer I", "industry": "Big Tech", - "cities": ["Minneapolis"], + "cities": ["San Jose", "Los Angeles"], "_id": { - "$oid": "666cbc3240af7b375e352173" + "$oid": "66723d958f368f285d303db0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1562,15 +1562,15 @@ "cohort": "5", "jobTitle": "Cloud Application Architect", "industry": "Cloud Services", - "cities": ["Kansas City", "Winston-Salem"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352174" + "$oid": "66723d958f368f285d303db1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1583,15 +1583,15 @@ "cohort": "20", "jobTitle": "Software Development Engineer II", "industry": "Software", - "cities": ["Austin", "Glendale", "Louisville", "Orlando"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352175" + "$oid": "66723d958f368f285d303db2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1604,15 +1604,15 @@ "cohort": "45", "jobTitle": "Software Development Engineer", "industry": "Web Services / Cloud Computing", - "cities": ["Jersey City", "Fort Wayne", "Lubbock", "San Jose"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352176" + "$oid": "66723d958f368f285d303db3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1625,15 +1625,15 @@ "cohort": "33", "jobTitle": "Software Development Engineer I (L4)", "industry": "Cloud Computing", - "cities": ["Sacramento"], + "cities": ["Henderson", "Mexico City"], "_id": { - "$oid": "666cbc3240af7b375e352177" + "$oid": "66723d958f368f285d303db4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1646,15 +1646,15 @@ "cohort": "17", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Winston-Salem"], + "cities": ["Anaheim"], "_id": { - "$oid": "666cbc3240af7b375e352178" + "$oid": "66723d958f368f285d303db5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1667,15 +1667,15 @@ "cohort": "2", "jobTitle": "Software Development Engineer 1", "industry": "cloud computing", - "cities": ["Berlin", "Mexico City", "San Diego", "Chandler"], + "cities": ["Henderson", "Riverside"], "_id": { - "$oid": "666cbc3240af7b375e352179" + "$oid": "66723d958f368f285d303db6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1688,15 +1688,15 @@ "cohort": "5", "jobTitle": "Director, Front-End Development", "industry": "Entertainment", - "cities": ["Gilbert", "Washington"], + "cities": ["Lubbock"], "_id": { - "$oid": "666cbc3240af7b375e35217a" + "$oid": "66723d958f368f285d303db7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1709,15 +1709,15 @@ "cohort": "6", "jobTitle": "Associate React Developer", "industry": "Other", - "cities": ["Anchorage", "Riverside", "Kansas City", "Denver"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35217b" + "$oid": "66723d958f368f285d303db8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1730,15 +1730,15 @@ "cohort": "48", "jobTitle": "Junior Software Engineer", "industry": "Retail", - "cities": ["Winston-Salem", "Madison", "San Francisco"], + "cities": ["Mumbai", "Arlington"], "_id": { - "$oid": "666cbc3240af7b375e35217c" + "$oid": "66723d958f368f285d303db9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1751,15 +1751,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Buffalo", "Reno", "Indianapolis", "Mexico City"], + "cities": ["Scottsdale"], "_id": { - "$oid": "666cbc3240af7b375e35217d" + "$oid": "66723d958f368f285d303dba" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1772,15 +1772,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "Banking", - "cities": ["Nashville", "Albuquerque", "Cleveland", "St. Louis"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35217e" + "$oid": "66723d958f368f285d303dbb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1793,15 +1793,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Sรฃo Paulo", "Oakland", "Bakersfield"], + "cities": ["Fort Worth", "Sacramento", "Chesapeake"], "_id": { - "$oid": "666cbc3240af7b375e35217f" + "$oid": "66723d958f368f285d303dbc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1814,15 +1814,15 @@ "cohort": "5", "jobTitle": "Engineer I", "industry": "", - "cities": ["Detroit", "San Diego", "Irvine"], + "cities": ["Durham"], "_id": { - "$oid": "666cbc3240af7b375e352180" + "$oid": "66723d958f368f285d303dbd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1835,15 +1835,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Omaha", "Baltimore", "Irvine", "New York"], + "cities": ["Oakland", "Miami", "Indianapolis"], "_id": { - "$oid": "666cbc3240af7b375e352181" + "$oid": "66723d958f368f285d303dbe" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1856,15 +1856,15 @@ "cohort": "47", "jobTitle": "Systems Engineer I", "industry": "Real Estate", - "cities": ["Aurora"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352182" + "$oid": "66723d958f368f285d303dbf" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1877,15 +1877,15 @@ "cohort": "46", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["Houston", "Cincinnati"], + "cities": ["Plano", "San Antonio", "Omaha"], "_id": { - "$oid": "666cbc3240af7b375e352183" + "$oid": "66723d958f368f285d303dc0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1898,15 +1898,15 @@ "cohort": "5", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Milwaukee", "Jersey City", "Durham", "London"], + "cities": ["Chandler", "Raleigh", "Tucson"], "_id": { - "$oid": "666cbc3240af7b375e352184" + "$oid": "66723d958f368f285d303dc1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1919,15 +1919,15 @@ "cohort": "7", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["Buffalo", "Nashville"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352185" + "$oid": "66723d958f368f285d303dc2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1940,15 +1940,15 @@ "cohort": "46", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Anchorage", "Glendale"], + "cities": ["Buffalo", "Stockton", "Toronto"], "_id": { - "$oid": "666cbc3240af7b375e352186" + "$oid": "66723d958f368f285d303dc3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1961,15 +1961,15 @@ "cohort": "18", "jobTitle": "Lead Developer", "industry": "Digital Marketing", - "cities": ["Laredo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352187" + "$oid": "66723d958f368f285d303dc4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -1982,15 +1982,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Education", - "cities": ["Toronto", "Phoenix"], + "cities": ["Raleigh", "Minneapolis", "Oklahoma City"], "_id": { - "$oid": "666cbc3240af7b375e352188" + "$oid": "66723d958f368f285d303dc5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.240Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2003,15 +2003,15 @@ "cohort": "27", "jobTitle": "Software Engineer", "industry": "Edtech", - "cities": ["Denver", "North Las Vegas"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352189" + "$oid": "66723d958f368f285d303dc6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2024,15 +2024,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "Computer Software", - "cities": ["Miami", "Jersey City", "Toronto"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35218a" + "$oid": "66723d958f368f285d303dc7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2045,15 +2045,15 @@ "cohort": "43", "jobTitle": "Full Stack Software Engineer", "industry": "Genealogy", - "cities": ["St. Petersburg", "Riverside", "Buffalo", "Garland"], + "cities": ["San Antonio"], "_id": { - "$oid": "666cbc3240af7b375e35218b" + "$oid": "66723d958f368f285d303dc8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2066,15 +2066,15 @@ "cohort": "12", "jobTitle": "Senior Software Engineer", "industry": "Geneology", - "cities": ["Chandler", "Chula Vista", "New Orleans"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35218c" + "$oid": "66723d958f368f285d303dc9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2087,15 +2087,15 @@ "cohort": "56", "jobTitle": "Software Engineer", "industry": "Security", - "cities": ["Fort Worth", "Charlotte"], + "cities": ["Mumbai", "Scottsdale", "Henderson"], "_id": { - "$oid": "666cbc3240af7b375e35218d" + "$oid": "66723d958f368f285d303dca" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2108,15 +2108,15 @@ "cohort": "3", "jobTitle": "Senior Front-end React Developer", "industry": "Beverages", - "cities": ["Riverside", "Atlanta"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35218e" + "$oid": "66723d958f368f285d303dcb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2129,15 +2129,15 @@ "cohort": "39", "jobTitle": "Front End Engineer", "industry": "Advertisement and Media", - "cities": ["Irving", "Santa Ana"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35218f" + "$oid": "66723d958f368f285d303dcc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2150,15 +2150,15 @@ "cohort": "39", "jobTitle": "Front-End Engineer", "industry": "Marketing", - "cities": ["Chesapeake"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352190" + "$oid": "66723d958f368f285d303dcd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2171,15 +2171,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Omaha"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352191" + "$oid": "66723d958f368f285d303dce" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2192,15 +2192,15 @@ "cohort": "41", "jobTitle": "Software Engineer", "industry": "Bank", - "cities": ["Sรฃo Paulo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352192" + "$oid": "66723d958f368f285d303dcf" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2213,15 +2213,15 @@ "cohort": "26", "jobTitle": "Software Engineer", "industry": "Technology", - "cities": ["Dallas", "Omaha", "Houston", "Columbus"], + "cities": ["Atlanta"], "_id": { - "$oid": "666cbc3240af7b375e352193" + "$oid": "66723d958f368f285d303dd0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2234,15 +2234,15 @@ "cohort": "24", "jobTitle": "Software Engineer II", "industry": "Aviation & Aerospace", - "cities": ["London", "Chicago", "St. Petersburg", "Fort Wayne"], + "cities": ["Mumbai"], "_id": { - "$oid": "666cbc3240af7b375e352194" + "$oid": "66723d958f368f285d303dd1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2255,15 +2255,15 @@ "cohort": "37", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["Newark"], + "cities": ["Orlando"], "_id": { - "$oid": "666cbc3240af7b375e352195" + "$oid": "66723d958f368f285d303dd2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2276,15 +2276,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["Tulsa", "Lubbock"], + "cities": ["Portland", "Anchorage"], "_id": { - "$oid": "666cbc3240af7b375e352196" + "$oid": "66723d958f368f285d303dd3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2297,15 +2297,15 @@ "cohort": "26", "jobTitle": "Software Engineer", "industry": "Tech", - "cities": ["El Paso", "Chesapeake", "Phoenix"], + "cities": ["San Francisco", "Lubbock", "Chula Vista"], "_id": { - "$oid": "666cbc3240af7b375e352197" + "$oid": "66723d958f368f285d303dd4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2318,15 +2318,15 @@ "cohort": "42", "jobTitle": "Frontend Engineer", "industry": "Technology", - "cities": ["Corpus Christi"], + "cities": ["Winston-Salem", "Tulsa", "Los Angeles"], "_id": { - "$oid": "666cbc3240af7b375e352198" + "$oid": "66723d958f368f285d303dd5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2339,15 +2339,15 @@ "cohort": "13", "jobTitle": "software engineer", "industry": "Software / Tech", - "cities": ["Arlington", "Newark"], + "cities": ["Baltimore", "Chandler"], "_id": { - "$oid": "666cbc3240af7b375e352199" + "$oid": "66723d958f368f285d303dd6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2360,15 +2360,15 @@ "cohort": "15", "jobTitle": "Front End Engineer", "industry": "Security", - "cities": ["Raleigh"], + "cities": ["Corpus Christi", "Phoenix"], "_id": { - "$oid": "666cbc3240af7b375e35219a" + "$oid": "66723d958f368f285d303dd7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2381,15 +2381,15 @@ "cohort": "1", "jobTitle": "Intermediate Web Applications Developer", "industry": "Retail", - "cities": ["Dallas"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35219b" + "$oid": "66723d958f368f285d303dd8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2402,15 +2402,15 @@ "cohort": "27", "jobTitle": "Software Engineer 1", "industry": "Energy Tech", - "cities": ["Portland", "London", "Mesa", "Jacksonville"], + "cities": ["Sacramento", "Pittsburgh"], "_id": { - "$oid": "666cbc3240af7b375e35219c" + "$oid": "66723d958f368f285d303dd9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2423,15 +2423,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "Renewable Energy", - "cities": ["Berlin", "Houston"], + "cities": ["Fort Worth", "Atlanta"], "_id": { - "$oid": "666cbc3240af7b375e35219d" + "$oid": "66723d958f368f285d303dda" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2444,15 +2444,15 @@ "cohort": "19", "jobTitle": "Software Engineer", "industry": "Energy - Renewable Energy", - "cities": ["Fresno"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35219e" + "$oid": "66723d958f368f285d303ddb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2465,15 +2465,15 @@ "cohort": "22", "jobTitle": "Full Stack Engineer", "industry": "Renewable Energy", - "cities": ["Sรฃo Paulo"], + "cities": ["Colorado Springs", "Toledo"], "_id": { - "$oid": "666cbc3240af7b375e35219f" + "$oid": "66723d958f368f285d303ddc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2486,15 +2486,15 @@ "cohort": "31", "jobTitle": "Full-Stack Software Engineer I", "industry": "Software / Tech", - "cities": ["Lincoln", "Columbus", "Boston"], + "cities": ["Scottsdale", "Denver"], "_id": { - "$oid": "666cbc3240af7b375e3521a0" + "$oid": "66723d958f368f285d303ddd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2507,15 +2507,15 @@ "cohort": "48", "jobTitle": "Software Engineer", "industry": "Cloud Services", - "cities": ["Saint Paul", "Orlando", "Fort Worth", "Oakland"], + "cities": ["Lincoln", "Irvine"], "_id": { - "$oid": "666cbc3240af7b375e3521a1" + "$oid": "66723d958f368f285d303dde" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2528,15 +2528,15 @@ "cohort": "43", "jobTitle": "Software Engineer", "industry": "Cloud Video", - "cities": ["Omaha", "New Orleans", "Stockton", "Reno"], + "cities": ["Chandler", "Tampa"], "_id": { - "$oid": "666cbc3240af7b375e3521a2" + "$oid": "66723d958f368f285d303ddf" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2549,15 +2549,15 @@ "cohort": "55", "jobTitle": "Software Engineer", "industry": "Retail", - "cities": ["Anchorage", "Mumbai", "Long Beach", "Cincinnati"], + "cities": ["Detroit", "Virginia Beach", "Wichita"], "_id": { - "$oid": "666cbc3240af7b375e3521a3" + "$oid": "66723d958f368f285d303de0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2570,15 +2570,15 @@ "cohort": "21", "jobTitle": "Senior Engineer 1 (Fullstack)", "industry": "Art", - "cities": ["Indianapolis", "Minneapolis", "Pittsburgh"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521a4" + "$oid": "66723d958f368f285d303de1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2591,15 +2591,15 @@ "cohort": "4", "jobTitle": "Fullstack Engineer", "industry": "Other", - "cities": ["Dallas", "Corpus Christi"], + "cities": ["Omaha", "Toronto"], "_id": { - "$oid": "666cbc3240af7b375e3521a5" + "$oid": "66723d958f368f285d303de2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2612,15 +2612,15 @@ "cohort": "52", "jobTitle": "Front End Developer", "industry": "Fintech", - "cities": ["Louisville", "Mumbai", "San Francisco", "Garland"], + "cities": ["Cincinnati", "Miami"], "_id": { - "$oid": "666cbc3240af7b375e3521a6" + "$oid": "66723d958f368f285d303de3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2633,15 +2633,15 @@ "cohort": "22", "jobTitle": "Full Stack Engineer", "industry": "Healthcare", - "cities": ["Riverside", "Houston", "Miami", "Corpus Christi"], + "cities": ["Fort Wayne", "Cincinnati", "San Antonio"], "_id": { - "$oid": "666cbc3240af7b375e3521a7" + "$oid": "66723d958f368f285d303de4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2654,15 +2654,15 @@ "cohort": "51", "jobTitle": "Frontend Software Engineer", "industry": "Software / Tech", - "cities": ["Chesapeake", "Columbus", "Berlin"], + "cities": ["Berlin", "Irvine"], "_id": { - "$oid": "666cbc3240af7b375e3521a8" + "$oid": "66723d958f368f285d303de5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2675,15 +2675,15 @@ "cohort": "4", "jobTitle": "Software Engineer, Backend", "industry": "Green Fintech", - "cities": ["Anaheim", "Phoenix", "San Antonio"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521a9" + "$oid": "66723d958f368f285d303de6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2696,15 +2696,15 @@ "cohort": "27", "jobTitle": "Senior Software Engineer", "industry": "Space-tech", - "cities": ["Houston", "Bakersfield", "Santa Ana", "Cleveland"], + "cities": ["Fort Worth"], "_id": { - "$oid": "666cbc3240af7b375e3521aa" + "$oid": "66723d958f368f285d303de7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2717,15 +2717,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Tech Insurance", - "cities": ["Riverside", "Norfolk", "Cleveland"], + "cities": ["Oklahoma City", "Raleigh", "Fort Wayne"], "_id": { - "$oid": "666cbc3240af7b375e3521ab" + "$oid": "66723d958f368f285d303de8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2738,15 +2738,15 @@ "cohort": "23", "jobTitle": "Software Engineer 3", "industry": "Tech Insurance", - "cities": ["Sacramento", "Philadelphia"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521ac" + "$oid": "66723d958f368f285d303de9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2759,15 +2759,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Mexico City", "Beijing", "Washington"], + "cities": ["Beijing"], "_id": { - "$oid": "666cbc3240af7b375e3521ad" + "$oid": "66723d958f368f285d303dea" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2780,15 +2780,15 @@ "cohort": "38", "jobTitle": "Backend Software Engineer", "industry": "Entertainment", - "cities": ["Buffalo", "Beijing", "Glendale", "Garland"], + "cities": ["Lexington"], "_id": { - "$oid": "666cbc3240af7b375e3521ae" + "$oid": "66723d958f368f285d303deb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2801,15 +2801,15 @@ "cohort": "33", "jobTitle": "Database Developer", "industry": "Telecommunications", - "cities": ["Baltimore", "Chicago", "Albuquerque"], + "cities": ["London"], "_id": { - "$oid": "666cbc3240af7b375e3521af" + "$oid": "66723d958f368f285d303dec" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2822,15 +2822,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Minneapolis", "Sydney", "New Orleans"], + "cities": ["Santa Ana", "Garland"], "_id": { - "$oid": "666cbc3240af7b375e3521b0" + "$oid": "66723d958f368f285d303ded" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2843,15 +2843,15 @@ "cohort": "38", "jobTitle": "Analytics Engineer", "industry": "Healthcare", - "cities": ["San Jose"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521b1" + "$oid": "66723d958f368f285d303dee" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2864,15 +2864,15 @@ "cohort": "40", "jobTitle": "Software Engineer P3", "industry": "Project management?", - "cities": ["Chicago", "Louisville"], + "cities": ["Greensboro"], "_id": { - "$oid": "666cbc3240af7b375e3521b2" + "$oid": "66723d958f368f285d303def" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2885,15 +2885,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "Tech", - "cities": ["Atlanta"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521b3" + "$oid": "66723d958f368f285d303df0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2906,15 +2906,15 @@ "cohort": "20", "jobTitle": "Software Engineer", "industry": "Computer Software", - "cities": ["Mesa"], + "cities": ["Buffalo", "Miami"], "_id": { - "$oid": "666cbc3240af7b375e3521b4" + "$oid": "66723d958f368f285d303df1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2927,15 +2927,15 @@ "cohort": "34", "jobTitle": "Full Stack Developer", "industry": "Entertainment", - "cities": ["Laredo", "Baltimore", "Newark", "London"], + "cities": ["Phoenix", "Mumbai", "Columbus"], "_id": { - "$oid": "666cbc3240af7b375e3521b5" + "$oid": "66723d958f368f285d303df2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2948,15 +2948,15 @@ "cohort": "27", "jobTitle": "Software Engineer, Frontend - L4", "industry": "E-commerce", - "cities": ["Atlanta"], + "cities": ["Cincinnati", "Washington", "El Paso"], "_id": { - "$oid": "666cbc3240af7b375e3521b6" + "$oid": "66723d958f368f285d303df3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2969,15 +2969,15 @@ "cohort": "7", "jobTitle": "Senior Product Manager", "industry": "Marketing/Advertising", - "cities": ["El Paso", "Austin", "Boston", "Oakland"], + "cities": ["St. Petersburg"], "_id": { - "$oid": "666cbc3240af7b375e3521b7" + "$oid": "66723d958f368f285d303df4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -2990,15 +2990,15 @@ "cohort": "38", "jobTitle": "Associate Software Engineer", "industry": "Entertainment", - "cities": ["Cincinnati", "Lincoln", "Gilbert", "Austin"], + "cities": ["Raleigh"], "_id": { - "$oid": "666cbc3240af7b375e3521b8" + "$oid": "66723d958f368f285d303df5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -3011,15 +3011,15 @@ "cohort": "42", "jobTitle": "Software Engineer", "industry": "FinTech", - "cities": ["Sacramento", "Miami", "Irving", "Raleigh"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521b9" + "$oid": "66723d958f368f285d303df6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -3032,15 +3032,15 @@ "cohort": "6", "jobTitle": "Software Engineer", "industry": "Software/Tech", - "cities": ["St. Louis", "Nashville", "Cleveland", "Sacramento"], + "cities": ["Baltimore", "Toronto"], "_id": { - "$oid": "666cbc3240af7b375e3521ba" + "$oid": "66723d958f368f285d303df7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.814Z" }, "__v": 0 }, @@ -3053,15 +3053,15 @@ "cohort": "14", "jobTitle": "Senior Software Engineer", "industry": "FinTech", - "cities": ["Beijing", "Gilbert"], + "cities": ["Milwaukee"], "_id": { - "$oid": "666cbc3240af7b375e3521bb" + "$oid": "66723d958f368f285d303df8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3074,15 +3074,15 @@ "cohort": "11", "jobTitle": "Software Engineer", "industry": "Artificial Intelligence", - "cities": ["St. Louis", "Winston-Salem", "Chesapeake"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521bc" + "$oid": "66723d958f368f285d303df9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3095,15 +3095,15 @@ "cohort": "15", "jobTitle": "Software Engineer", "industry": "Loans", - "cities": ["Irving", "Madison", "Arlington"], + "cities": ["Wichita"], "_id": { - "$oid": "666cbc3240af7b375e3521bd" + "$oid": "66723d958f368f285d303dfa" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3116,15 +3116,15 @@ "cohort": "34", "jobTitle": "Front End Lead Developer", "industry": "Cybersecurity", - "cities": ["Jersey City"], + "cities": ["Durham", "Boston", "Phoenix"], "_id": { - "$oid": "666cbc3240af7b375e3521be" + "$oid": "66723d958f368f285d303dfb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3137,15 +3137,15 @@ "cohort": "37", "jobTitle": "Full Stack Software Engineer", "industry": "Fintech", - "cities": ["Tokyo", "Arlington", "Winston-Salem"], + "cities": ["Washington"], "_id": { - "$oid": "666cbc3240af7b375e3521bf" + "$oid": "66723d958f368f285d303dfc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3158,15 +3158,15 @@ "cohort": "47", "jobTitle": "Software Engineer - Frontend", "industry": "Software / Tech", - "cities": ["Los Angeles"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521c0" + "$oid": "66723d958f368f285d303dfd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3179,15 +3179,15 @@ "cohort": "35", "jobTitle": "Full Stack Software Engineer", "industry": "Business Tech/Enterprise Tech", - "cities": ["Toronto"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521c1" + "$oid": "66723d958f368f285d303dfe" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3200,15 +3200,15 @@ "cohort": "41", "jobTitle": "Software Engineer II", "industry": "Construction Tech", - "cities": ["Cleveland", "Charlotte", "Chesapeake", "Tucson"], + "cities": ["Tampa"], "_id": { - "$oid": "666cbc3240af7b375e3521c2" + "$oid": "66723d958f368f285d303dff" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3221,15 +3221,15 @@ "cohort": "3", "jobTitle": "Software Development Engineer", "industry": "Tech", - "cities": ["Seattle", "San Francisco", "Pittsburgh", "Sรฃo Paulo"], + "cities": ["Buffalo", "Milwaukee", "Sydney"], "_id": { - "$oid": "666cbc3240af7b375e3521c3" + "$oid": "66723d958f368f285d303e00" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3242,15 +3242,15 @@ "cohort": "49", "jobTitle": "SDE1", "industry": "Cloud Services", - "cities": ["Chandler", "Santa Ana"], + "cities": ["Raleigh"], "_id": { - "$oid": "666cbc3240af7b375e3521c4" + "$oid": "66723d958f368f285d303e01" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3263,15 +3263,15 @@ "cohort": "20", "jobTitle": "Software Development Engineer II", "industry": "Tech", - "cities": ["Raleigh", "Corpus Christi"], + "cities": ["London"], "_id": { - "$oid": "666cbc3240af7b375e3521c5" + "$oid": "66723d958f368f285d303e02" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3284,15 +3284,15 @@ "cohort": "20", "jobTitle": "Software Development Engineer", "industry": "Tech", - "cities": ["Chula Vista"], + "cities": ["San Jose", "Fort Worth", "Columbus"], "_id": { - "$oid": "666cbc3240af7b375e3521c6" + "$oid": "66723d958f368f285d303e03" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3305,15 +3305,15 @@ "cohort": "10", "jobTitle": "Software Developer", "industry": "IT Services", - "cities": ["Glendale", "Fort Wayne"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521c7" + "$oid": "66723d958f368f285d303e04" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3326,15 +3326,15 @@ "cohort": "17", "jobTitle": "Software Engineer", "industry": "Healthtech/Healthcare", - "cities": ["Minneapolis", "Sydney", "Jersey City"], + "cities": ["Omaha"], "_id": { - "$oid": "666cbc3240af7b375e3521c8" + "$oid": "66723d958f368f285d303e05" }, "createdAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.242Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3347,15 +3347,15 @@ "cohort": "20", "jobTitle": "Software Engineer", "industry": "Public Safety", - "cities": ["San Antonio", "Plano"], + "cities": ["Toledo"], "_id": { - "$oid": "666cbc3240af7b375e3521c9" + "$oid": "66723d958f368f285d303e06" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3368,15 +3368,15 @@ "cohort": "25", "jobTitle": "Nodejs / microservices software engineer", "industry": "E-commerce", - "cities": ["North Las Vegas", "Lexington"], + "cities": ["Irving", "Tampa"], "_id": { - "$oid": "666cbc3240af7b375e3521ca" + "$oid": "66723d958f368f285d303e07" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3389,15 +3389,15 @@ "cohort": "31", "jobTitle": "Frontend Developer", "industry": "Entertainment? Wed-tech? lol idk it's pretty niche", - "cities": ["Berlin"], + "cities": ["San Francisco"], "_id": { - "$oid": "666cbc3240af7b375e3521cb" + "$oid": "66723d958f368f285d303e08" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3410,15 +3410,15 @@ "cohort": "25", "jobTitle": "Full Stack Engineer", "industry": "Entertainment", - "cities": ["Sacramento"], + "cities": ["Portland", "Berlin", "Raleigh"], "_id": { - "$oid": "666cbc3240af7b375e3521cc" + "$oid": "66723d958f368f285d303e09" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3431,15 +3431,15 @@ "cohort": "26", "jobTitle": "AVP, Software Engineer", "industry": "Fintech", - "cities": ["Kansas City", "Raleigh", "Miami"], + "cities": ["Sacramento", "St. Louis"], "_id": { - "$oid": "666cbc3240af7b375e3521cd" + "$oid": "66723d958f368f285d303e0a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3452,15 +3452,15 @@ "cohort": "12", "jobTitle": "Senior Backend Engineer", "industry": "Media", - "cities": ["Mumbai", "Tokyo", "Sydney", "Long Beach"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521ce" + "$oid": "66723d958f368f285d303e0b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3473,15 +3473,15 @@ "cohort": "25", "jobTitle": "Node / React Developer", "industry": "Agricultural Science", - "cities": ["Chesapeake"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521cf" + "$oid": "66723d958f368f285d303e0c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3494,15 +3494,15 @@ "cohort": "19", "jobTitle": "Full Stack Engineer", "industry": "Agriculture", - "cities": ["Seattle", "St. Petersburg"], + "cities": ["San Antonio", "Wichita"], "_id": { - "$oid": "666cbc3240af7b375e3521d0" + "$oid": "66723d958f368f285d303e0d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3515,15 +3515,15 @@ "cohort": "17", "jobTitle": "Software Engineer", "industry": "Healthtech/Healthcare", - "cities": ["Glendale"], + "cities": ["Detroit", "Winston-Salem", "Cleveland"], "_id": { - "$oid": "666cbc3240af7b375e3521d1" + "$oid": "66723d958f368f285d303e0e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3536,15 +3536,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Telecommunications", - "cities": ["Chandler", "Oklahoma City", "San Francisco", "Scottsdale"], + "cities": ["St. Petersburg"], "_id": { - "$oid": "666cbc3240af7b375e3521d2" + "$oid": "66723d958f368f285d303e0f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3557,15 +3557,15 @@ "cohort": "7", "jobTitle": "Full Stack Developer", "industry": "Telecommunications", - "cities": ["Washington"], + "cities": ["St. Petersburg", "Bakersfield", "Lincoln"], "_id": { - "$oid": "666cbc3240af7b375e3521d3" + "$oid": "66723d958f368f285d303e10" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3578,15 +3578,15 @@ "cohort": "25", "jobTitle": "Full stack software engineer", "industry": "Compliance", - "cities": ["Greensboro"], + "cities": ["Austin", "Durham"], "_id": { - "$oid": "666cbc3240af7b375e3521d4" + "$oid": "66723d958f368f285d303e11" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3599,15 +3599,15 @@ "cohort": "40", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Irvine"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521d5" + "$oid": "66723d958f368f285d303e12" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3620,15 +3620,15 @@ "cohort": "39", "jobTitle": "Senior Software Engineer", "industry": "Hospitality", - "cities": ["Henderson", "Saint Paul", "Oakland", "Garland"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521d6" + "$oid": "66723d958f368f285d303e13" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3641,15 +3641,15 @@ "cohort": "39", "jobTitle": "Software Engineer", "industry": "Software", - "cities": ["Norfolk", "Jacksonville", "Aurora", "Reno"], + "cities": ["Pittsburgh", "Riverside", "Long Beach"], "_id": { - "$oid": "666cbc3240af7b375e3521d7" + "$oid": "66723d958f368f285d303e14" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3662,15 +3662,15 @@ "cohort": "43", "jobTitle": "Product Support Engineer", "industry": "Not sure", - "cities": ["Houston"], + "cities": ["San Antonio", "Orlando", "Omaha"], "_id": { - "$oid": "666cbc3240af7b375e3521d8" + "$oid": "66723d958f368f285d303e15" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3683,15 +3683,15 @@ "cohort": "39", "jobTitle": "Associate Software Engineer", "industry": "Commercial Real Estate", - "cities": ["Lincoln", "Irvine", "Kansas City"], + "cities": ["Corpus Christi", "Colorado Springs", "Cincinnati"], "_id": { - "$oid": "666cbc3240af7b375e3521d9" + "$oid": "66723d958f368f285d303e16" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3704,15 +3704,15 @@ "cohort": "29", "jobTitle": "Front end Engineer", "industry": "Data analytics", - "cities": ["Las Vegas", "Dallas", "Philadelphia", "Raleigh"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521da" + "$oid": "66723d958f368f285d303e17" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3725,15 +3725,15 @@ "cohort": "21", "jobTitle": "Sr. Software Engineer", "industry": "", - "cities": ["New Orleans"], + "cities": ["Glendale", "Sydney"], "_id": { - "$oid": "666cbc3240af7b375e3521db" + "$oid": "66723d958f368f285d303e18" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3746,15 +3746,15 @@ "cohort": "5", "jobTitle": "Full-Stack Developer", "industry": "Auction Services", - "cities": ["Toronto"], + "cities": ["Portland"], "_id": { - "$oid": "666cbc3240af7b375e3521dc" + "$oid": "66723d958f368f285d303e19" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3767,15 +3767,15 @@ "cohort": "1", "jobTitle": "Software Engineer 1", "industry": "Data quality", - "cities": ["Colorado Springs", "St. Petersburg"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521dd" + "$oid": "66723d958f368f285d303e1a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3788,15 +3788,15 @@ "cohort": "25", "jobTitle": "Senior Full Stack Software Engineer", "industry": "Cyber Security", - "cities": ["Glendale"], + "cities": ["Buffalo", "Fresno"], "_id": { - "$oid": "666cbc3240af7b375e3521de" + "$oid": "66723d958f368f285d303e1b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3809,15 +3809,15 @@ "cohort": "3", "jobTitle": "Software engineer 2 - Frontend", "industry": "Fintech", - "cities": ["Milwaukee", "Berlin", "Phoenix"], + "cities": ["Memphis", "Anaheim"], "_id": { - "$oid": "666cbc3240af7b375e3521df" + "$oid": "66723d958f368f285d303e1c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3830,15 +3830,15 @@ "cohort": "21", "jobTitle": "Software Engineer", "industry": "Biotech", - "cities": ["Indianapolis", "Plano", "Glendale"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521e0" + "$oid": "66723d958f368f285d303e1d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3851,15 +3851,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Minneapolis", "Memphis", "Cincinnati", "Kansas City"], + "cities": ["Fort Worth", "Newark", "Irving"], "_id": { - "$oid": "666cbc3240af7b375e3521e1" + "$oid": "66723d958f368f285d303e1e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3872,15 +3872,15 @@ "cohort": "41", "jobTitle": "Junior Developer and Consultant", "industry": "Computer Software", - "cities": ["Berlin", "Portland", "Reno"], + "cities": ["Los Angeles", "Minneapolis", "Paris"], "_id": { - "$oid": "666cbc3240af7b375e3521e2" + "$oid": "66723d958f368f285d303e1f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3893,15 +3893,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Pittsburgh", "Paris", "Tampa", "Stockton"], + "cities": ["Louisville"], "_id": { - "$oid": "666cbc3240af7b375e3521e3" + "$oid": "66723d958f368f285d303e20" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3914,15 +3914,15 @@ "cohort": "37", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Cincinnati", "Norfolk", "New Orleans", "Las Vegas"], + "cities": ["Cleveland"], "_id": { - "$oid": "666cbc3240af7b375e3521e4" + "$oid": "66723d958f368f285d303e21" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3935,15 +3935,15 @@ "cohort": "22", "jobTitle": "DevOps Engineer", "industry": "", - "cities": ["Gilbert", "Indianapolis", "Lincoln", "Anaheim"], + "cities": ["Pittsburgh", "Toronto", "Buffalo"], "_id": { - "$oid": "666cbc3240af7b375e3521e5" + "$oid": "66723d958f368f285d303e22" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3956,15 +3956,15 @@ "cohort": "37", "jobTitle": "Full Stack Software Engineer", "industry": "Other", - "cities": ["Virginia Beach", "Henderson", "San Jose", "Chesapeake"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521e6" + "$oid": "66723d958f368f285d303e23" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3977,15 +3977,15 @@ "cohort": "7", "jobTitle": "Support Software Engineer", "industry": "Software Solutions/Developer Tools", - "cities": ["St. Petersburg", "Orlando", "Omaha"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521e7" + "$oid": "66723d958f368f285d303e24" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -3998,15 +3998,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Milwaukee"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521e8" + "$oid": "66723d958f368f285d303e25" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4019,15 +4019,15 @@ "cohort": "Beta", "jobTitle": "Sr. Product Manager", "industry": "Health Care Tech", - "cities": ["Oakland", "North Las Vegas", "Toledo"], + "cities": ["Orlando"], "_id": { - "$oid": "666cbc3240af7b375e3521e9" + "$oid": "66723d958f368f285d303e26" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4040,15 +4040,15 @@ "cohort": "24", "jobTitle": "Software Development Engineer", "industry": "Insurance", - "cities": ["Tampa", "Berlin", "Winston-Salem", "Anaheim"], + "cities": ["London", "Omaha", "Long Beach"], "_id": { - "$oid": "666cbc3240af7b375e3521ea" + "$oid": "66723d958f368f285d303e27" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4061,15 +4061,15 @@ "cohort": "13", "jobTitle": "Frontend Engineer", "industry": "Fintech", - "cities": ["New York", "Beijing", "Cleveland"], + "cities": ["Philadelphia", "Minneapolis"], "_id": { - "$oid": "666cbc3240af7b375e3521eb" + "$oid": "66723d958f368f285d303e28" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4082,15 +4082,15 @@ "cohort": "24", "jobTitle": "Senior Backend Engineer", "industry": "Technology", - "cities": ["Jersey City", "Columbus"], + "cities": ["Lincoln"], "_id": { - "$oid": "666cbc3240af7b375e3521ec" + "$oid": "66723d958f368f285d303e29" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4103,15 +4103,15 @@ "cohort": "49", "jobTitle": "Jr Software Developer", "industry": "Other", - "cities": ["Toronto", "Oklahoma City"], + "cities": ["Riverside", "Anaheim"], "_id": { - "$oid": "666cbc3240af7b375e3521ed" + "$oid": "66723d958f368f285d303e2a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4124,15 +4124,15 @@ "cohort": "28", "jobTitle": "Senior Fullstack Engineer", "industry": "Financial,Software,Media,Data", - "cities": ["Chula Vista"], + "cities": ["Oklahoma City", "Wichita", "Phoenix"], "_id": { - "$oid": "666cbc3240af7b375e3521ee" + "$oid": "66723d958f368f285d303e2b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4145,15 +4145,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["London"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521ef" + "$oid": "66723d958f368f285d303e2c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4166,15 +4166,15 @@ "cohort": "21", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Chandler"], + "cities": ["Beijing", "Chicago"], "_id": { - "$oid": "666cbc3240af7b375e3521f0" + "$oid": "66723d958f368f285d303e2d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4187,15 +4187,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "Fin-Tech", - "cities": ["Madison", "Portland"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521f1" + "$oid": "66723d958f368f285d303e2e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4208,15 +4208,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Memphis", "Garland", "Las Vegas", "San Antonio"], + "cities": ["St. Petersburg", "Oklahoma City"], "_id": { - "$oid": "666cbc3240af7b375e3521f2" + "$oid": "66723d958f368f285d303e2f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4229,15 +4229,15 @@ "cohort": "31", "jobTitle": "Web Application Architect I", "industry": "Other", - "cities": ["Virginia Beach", "Cincinnati", "Nashville"], + "cities": ["Jersey City"], "_id": { - "$oid": "666cbc3240af7b375e3521f3" + "$oid": "66723d958f368f285d303e30" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4250,15 +4250,15 @@ "cohort": "11", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Laredo"], + "cities": ["Pittsburgh", "Tampa", "Nashville"], "_id": { - "$oid": "666cbc3240af7b375e3521f4" + "$oid": "66723d958f368f285d303e31" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4271,15 +4271,15 @@ "cohort": "44", "jobTitle": "Senior Software Engineer (Consultant)", "industry": "Fintech", - "cities": ["Arlington", "San Antonio", "Sรฃo Paulo"], + "cities": ["Reno"], "_id": { - "$oid": "666cbc3240af7b375e3521f5" + "$oid": "66723d958f368f285d303e32" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4292,15 +4292,15 @@ "cohort": "27", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Jacksonville", "Omaha", "Lexington", "Atlanta"], + "cities": ["Philadelphia", "Lexington", "Atlanta"], "_id": { - "$oid": "666cbc3240af7b375e3521f6" + "$oid": "66723d958f368f285d303e33" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4313,15 +4313,15 @@ "cohort": "33", "jobTitle": "Senior React Node Software Engineer", "industry": "Healthcare", - "cities": ["Irving", "Louisville", "Anchorage", "Detroit"], + "cities": ["Kansas City", "San Antonio"], "_id": { - "$oid": "666cbc3240af7b375e3521f7" + "$oid": "66723d958f368f285d303e34" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4334,15 +4334,15 @@ "cohort": "47", "jobTitle": "Software Engineer I", "industry": "Aerospace", - "cities": ["Chesapeake", "Atlanta", "San Jose", "Henderson"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521f8" + "$oid": "66723d958f368f285d303e35" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4355,15 +4355,15 @@ "cohort": "49", "jobTitle": "Full-Stack Software Engineer", "industry": "Healthcare", - "cities": ["San Antonio", "St. Louis", "Seattle"], + "cities": ["Atlanta", "Aurora"], "_id": { - "$oid": "666cbc3240af7b375e3521f9" + "$oid": "66723d958f368f285d303e36" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4376,15 +4376,15 @@ "cohort": "23", "jobTitle": "Senior Software Engineer", "industry": "Healthcare", - "cities": ["Kansas City", "San Jose", "New Orleans", "Washington"], + "cities": ["Newark", "Columbus"], "_id": { - "$oid": "666cbc3240af7b375e3521fa" + "$oid": "66723d958f368f285d303e37" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4397,15 +4397,15 @@ "cohort": "4", "jobTitle": "Software Engineer (Managed Security Services)", "industry": "", - "cities": ["Louisville"], + "cities": ["Raleigh", "Plano", "North Las Vegas"], "_id": { - "$oid": "666cbc3240af7b375e3521fb" + "$oid": "66723d958f368f285d303e38" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4418,15 +4418,15 @@ "cohort": "12", "jobTitle": "Senior Full Stack Developer", "industry": "Fintech", - "cities": ["Nashville", "Toronto"], + "cities": ["Tampa", "Cleveland", "Arlington"], "_id": { - "$oid": "666cbc3240af7b375e3521fc" + "$oid": "66723d958f368f285d303e39" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4439,15 +4439,15 @@ "cohort": "16", "jobTitle": "Support Engineer", "industry": "Ecommerce", - "cities": ["Riverside", "Long Beach", "Toronto"], + "cities": ["Anchorage", "Lexington"], "_id": { - "$oid": "666cbc3240af7b375e3521fd" + "$oid": "66723d958f368f285d303e3a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4460,15 +4460,15 @@ "cohort": "32", "jobTitle": "Fullstack Software Engineer", "industry": "Other", - "cities": ["Phoenix", "Detroit"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3521fe" + "$oid": "66723d958f368f285d303e3b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4481,15 +4481,15 @@ "cohort": "13", "jobTitle": "Sr. Consultant", "industry": "Consulting", - "cities": ["Charlotte"], + "cities": ["Austin", "El Paso"], "_id": { - "$oid": "666cbc3240af7b375e3521ff" + "$oid": "66723d958f368f285d303e3c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4502,15 +4502,15 @@ "cohort": "34", "jobTitle": "Senior Associate Software Engineer", "industry": "Business Management Tool", - "cities": ["St. Louis", "Tucson", "Boston"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352200" + "$oid": "66723d958f368f285d303e3d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4523,15 +4523,15 @@ "cohort": "27", "jobTitle": "Backend Engineer I", "industry": "e-commerce", - "cities": ["Santa Ana", "Detroit"], + "cities": ["Plano"], "_id": { - "$oid": "666cbc3240af7b375e352201" + "$oid": "66723d958f368f285d303e3e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4544,15 +4544,15 @@ "cohort": "24", "jobTitle": "Software Engineer", "industry": "Consulting", - "cities": ["Wichita", "Beijing", "Berlin"], + "cities": ["Berlin", "Paris"], "_id": { - "$oid": "666cbc3240af7b375e352202" + "$oid": "66723d958f368f285d303e3f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4565,15 +4565,15 @@ "cohort": "38", "jobTitle": "Web Developer", "industry": "Business Tech/Enterprise Tech", - "cities": ["Dallas", "Paris", "Albuquerque"], + "cities": ["Cincinnati", "Louisville", "Saint Paul"], "_id": { - "$oid": "666cbc3240af7b375e352203" + "$oid": "66723d958f368f285d303e40" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4586,15 +4586,15 @@ "cohort": "39", "jobTitle": "Software Engineer", "industry": "E-Commerce", - "cities": ["Oakland", "Memphis", "Toronto", "Beijing"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352204" + "$oid": "66723d958f368f285d303e41" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4607,15 +4607,15 @@ "cohort": "52", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Charlotte"], + "cities": ["Albuquerque"], "_id": { - "$oid": "666cbc3240af7b375e352205" + "$oid": "66723d958f368f285d303e42" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4628,15 +4628,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Technology", - "cities": ["Minneapolis", "Buffalo", "Philadelphia"], + "cities": ["Glendale"], "_id": { - "$oid": "666cbc3240af7b375e352206" + "$oid": "66723d958f368f285d303e43" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4649,15 +4649,15 @@ "cohort": "23", "jobTitle": "Software Engineer 1", "industry": "Fintech", - "cities": ["Kansas City"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352207" + "$oid": "66723d958f368f285d303e44" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4670,15 +4670,15 @@ "cohort": "24", "jobTitle": "Full Stack Engineer", "industry": "Gaming & Entertainment", - "cities": ["Paris"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352208" + "$oid": "66723d958f368f285d303e45" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4691,15 +4691,15 @@ "cohort": "25", "jobTitle": "Senior Software Engineer", "industry": "Cybersecurity", - "cities": ["Tucson"], + "cities": ["Madison", "Buffalo"], "_id": { - "$oid": "666cbc3240af7b375e352209" + "$oid": "66723d958f368f285d303e46" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4712,15 +4712,15 @@ "cohort": "56", "jobTitle": "Software Engineer", "industry": "IT Services", - "cities": ["El Paso", "Portland", "Phoenix", "Gilbert"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35220a" + "$oid": "66723d958f368f285d303e47" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4733,15 +4733,15 @@ "cohort": "43", "jobTitle": "Software Engineer", "industry": "Software Consulting", - "cities": ["Columbus", "Orlando", "Lubbock", "Indianapolis"], + "cities": ["Albuquerque", "Minneapolis", "Mumbai"], "_id": { - "$oid": "666cbc3240af7b375e35220b" + "$oid": "66723d958f368f285d303e48" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4754,15 +4754,15 @@ "cohort": "48", "jobTitle": "Backend Node Engineer with Brooksource, Full stack Engineer with Northwestern Mutual", "industry": "Fintech", - "cities": ["Chesapeake", "Chula Vista", "Long Beach"], + "cities": ["Berlin", "Mesa"], "_id": { - "$oid": "666cbc3240af7b375e35220c" + "$oid": "66723d958f368f285d303e49" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4775,15 +4775,15 @@ "cohort": "37", "jobTitle": "Senior Software Engineer", "industry": "Commercial Real Estate", - "cities": ["Newark", "Tulsa", "Reno", "Cleveland"], + "cities": ["Phoenix", "Miami"], "_id": { - "$oid": "666cbc3240af7b375e35220d" + "$oid": "66723d958f368f285d303e4a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4796,15 +4796,15 @@ "cohort": "43", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Omaha", "Anaheim", "Washington", "Virginia Beach"], + "cities": ["Fort Wayne", "Jersey City", "Henderson"], "_id": { - "$oid": "666cbc3240af7b375e35220e" + "$oid": "66723d958f368f285d303e4b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4817,15 +4817,15 @@ "cohort": "42", "jobTitle": "Software Engineer", "industry": "Finance (Credit union service organization)", - "cities": ["Glendale"], + "cities": ["Houston", "Dallas", "Atlanta"], "_id": { - "$oid": "666cbc3240af7b375e35220f" + "$oid": "66723d958f368f285d303e4c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4838,15 +4838,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Restaurant, Food, and Beverage", - "cities": ["Arlington", "Tampa"], + "cities": ["Aurora", "Kansas City"], "_id": { - "$oid": "666cbc3240af7b375e352210" + "$oid": "66723d958f368f285d303e4d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4859,15 +4859,15 @@ "cohort": "25", "jobTitle": "Web/API QA Automation Engineer", "industry": "Healthtech", - "cities": ["Garland", "Norfolk", "Sydney"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352211" + "$oid": "66723d958f368f285d303e4e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.815Z" }, "__v": 0 }, @@ -4880,15 +4880,15 @@ "cohort": "46", "jobTitle": "Software Engineer II - Cloud Backend", "industry": "Medical Equipment Manufacturing", - "cities": ["Pittsburgh"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352212" + "$oid": "66723d958f368f285d303e4f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -4901,15 +4901,15 @@ "cohort": "23", "jobTitle": "Forward Deployed Engineer", "industry": "Artificial intelligence", - "cities": ["Pittsburgh"], + "cities": ["Arlington", "San Francisco", "Mesa"], "_id": { - "$oid": "666cbc3240af7b375e352213" + "$oid": "66723d958f368f285d303e50" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -4922,15 +4922,15 @@ "cohort": "33", "jobTitle": "Forward Deployed Engineer", "industry": "Artificial Intelligence", - "cities": ["Buffalo", "Lexington", "Fresno"], + "cities": ["Glendale"], "_id": { - "$oid": "666cbc3240af7b375e352214" + "$oid": "66723d958f368f285d303e51" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -4943,15 +4943,15 @@ "cohort": "42", "jobTitle": "Front End Engineer", "industry": "TV Advertising", - "cities": ["Mesa"], + "cities": ["Indianapolis"], "_id": { - "$oid": "666cbc3240af7b375e352215" + "$oid": "66723d958f368f285d303e52" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -4964,15 +4964,15 @@ "cohort": "33", "jobTitle": "Software Eng II", "industry": "Software / Tech", - "cities": ["Las Vegas", "Tulsa", "Mexico City"], + "cities": ["Atlanta", "Orlando"], "_id": { - "$oid": "666cbc3240af7b375e352216" + "$oid": "66723d958f368f285d303e53" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -4985,15 +4985,15 @@ "cohort": "23", "jobTitle": "Front End Developer (internally Associate)", "industry": "Fintech", - "cities": ["Gilbert", "Portland", "Aurora"], + "cities": ["Raleigh", "Phoenix"], "_id": { - "$oid": "666cbc3240af7b375e352217" + "$oid": "66723d958f368f285d303e54" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5006,15 +5006,15 @@ "cohort": "3", "jobTitle": "Manager, Advanced Measurement & Analytics", "industry": "Data/Analytics/Cloud", - "cities": ["Winston-Salem", "New Orleans", "Memphis"], + "cities": ["Lexington"], "_id": { - "$oid": "666cbc3240af7b375e352218" + "$oid": "66723d958f368f285d303e55" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5027,15 +5027,15 @@ "cohort": "12", "jobTitle": "Front End Engineer", "industry": "Home Security", - "cities": ["Milwaukee", "Paris", "Anchorage", "Columbus"], + "cities": ["Milwaukee", "Berlin", "Albuquerque"], "_id": { - "$oid": "666cbc3240af7b375e352219" + "$oid": "66723d958f368f285d303e56" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5048,15 +5048,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Minneapolis"], + "cities": ["Plano"], "_id": { - "$oid": "666cbc3240af7b375e35221a" + "$oid": "66723d958f368f285d303e57" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5069,15 +5069,15 @@ "cohort": "41", "jobTitle": "Senior Associate Software Engineer", "industry": "Fintech", - "cities": ["Dallas", "Long Beach"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35221b" + "$oid": "66723d958f368f285d303e58" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5090,15 +5090,15 @@ "cohort": "5", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Long Beach", "Milwaukee", "San Diego", "Omaha"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35221c" + "$oid": "66723d958f368f285d303e59" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5111,15 +5111,15 @@ "cohort": "1", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Paris", "Mumbai", "Corpus Christi"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35221d" + "$oid": "66723d958f368f285d303e5a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5132,15 +5132,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Sacramento", "Chesapeake", "Fresno"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35221e" + "$oid": "66723d958f368f285d303e5b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5153,15 +5153,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Oakland", "Austin"], + "cities": ["San Jose"], "_id": { - "$oid": "666cbc3240af7b375e35221f" + "$oid": "66723d958f368f285d303e5c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5174,15 +5174,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "Banking", - "cities": ["Portland"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352220" + "$oid": "66723d958f368f285d303e5d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5195,15 +5195,15 @@ "cohort": "43", "jobTitle": "Software Engineer, Frontend", "industry": "Banking/Fintech", - "cities": ["Corpus Christi", "Chula Vista", "Raleigh"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352221" + "$oid": "66723d958f368f285d303e5e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5216,15 +5216,15 @@ "cohort": "12", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Atlanta"], + "cities": ["Albuquerque", "Jersey City"], "_id": { - "$oid": "666cbc3240af7b375e352222" + "$oid": "66723d958f368f285d303e5f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5237,15 +5237,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "IT", - "cities": ["Santa Ana", "Greensboro"], + "cities": ["Chula Vista", "Chandler", "St. Petersburg"], "_id": { - "$oid": "666cbc3240af7b375e352223" + "$oid": "66723d958f368f285d303e60" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5258,15 +5258,15 @@ "cohort": "1", "jobTitle": "Senior Software Engineer", "industry": "Finance", - "cities": ["Long Beach", "Toledo", "Lexington"], + "cities": ["Paris"], "_id": { - "$oid": "666cbc3240af7b375e352224" + "$oid": "66723d958f368f285d303e61" }, "createdAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.243Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5279,15 +5279,15 @@ "cohort": "10", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Irving"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352225" + "$oid": "66723d958f368f285d303e62" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5300,15 +5300,15 @@ "cohort": "6", "jobTitle": "Senior Software Engineer (Full Stack)", "industry": "Fintech", - "cities": ["Jersey City", "Colorado Springs", "Stockton", "St. Petersburg"], + "cities": ["Jersey City", "Austin", "Long Beach"], "_id": { - "$oid": "666cbc3240af7b375e352226" + "$oid": "66723d958f368f285d303e63" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5321,15 +5321,15 @@ "cohort": "49", "jobTitle": "Senior Software Engineer, Front End", "industry": "Fintech", - "cities": ["Atlanta", "Glendale"], + "cities": ["New Orleans"], "_id": { - "$oid": "666cbc3240af7b375e352227" + "$oid": "66723d958f368f285d303e64" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5342,15 +5342,15 @@ "cohort": "28", "jobTitle": "Full Stack Software Engineer", "industry": "Fintech", - "cities": ["Plano", "Minneapolis", "Paris"], + "cities": ["Portland", "Louisville"], "_id": { - "$oid": "666cbc3240af7b375e352228" + "$oid": "66723d958f368f285d303e65" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5363,15 +5363,15 @@ "cohort": "26", "jobTitle": "Fullstack Software Engineer", "industry": "Finance", - "cities": ["North Las Vegas", "Seattle", "Colorado Springs", "Mumbai"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352229" + "$oid": "66723d958f368f285d303e66" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5384,15 +5384,15 @@ "cohort": "49", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Pittsburgh"], + "cities": ["Durham", "Mesa", "Fort Worth"], "_id": { - "$oid": "666cbc3240af7b375e35222a" + "$oid": "66723d958f368f285d303e67" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5405,15 +5405,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Atlanta", "Pittsburgh", "San Diego", "Omaha"], + "cities": ["St. Petersburg"], "_id": { - "$oid": "666cbc3240af7b375e35222b" + "$oid": "66723d958f368f285d303e68" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5426,15 +5426,15 @@ "cohort": "10", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Orlando", "Gilbert"], + "cities": ["Sรฃo Paulo", "San Antonio"], "_id": { - "$oid": "666cbc3240af7b375e35222c" + "$oid": "66723d958f368f285d303e69" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5447,15 +5447,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "Banking", - "cities": ["Reno", "Sydney", "Newark", "Irvine"], + "cities": ["Austin", "Irving"], "_id": { - "$oid": "666cbc3240af7b375e35222d" + "$oid": "66723d958f368f285d303e6a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5468,15 +5468,15 @@ "cohort": "7", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Nashville"], + "cities": ["New Orleans"], "_id": { - "$oid": "666cbc3240af7b375e35222e" + "$oid": "66723d958f368f285d303e6b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5489,15 +5489,15 @@ "cohort": "30", "jobTitle": "Software Engineer - backend", "industry": "Fintech", - "cities": ["Columbus", "Baltimore", "Henderson"], + "cities": ["New York"], "_id": { - "$oid": "666cbc3240af7b375e35222f" + "$oid": "66723d958f368f285d303e6c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5510,15 +5510,15 @@ "cohort": "7", "jobTitle": "Senior Associate Software Engineer", "industry": "Fintech", - "cities": ["Oakland"], + "cities": ["Tucson"], "_id": { - "$oid": "666cbc3240af7b375e352230" + "$oid": "66723d958f368f285d303e6d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5531,15 +5531,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Norfolk", "Irving"], + "cities": ["New York", "Cincinnati", "Anaheim"], "_id": { - "$oid": "666cbc3240af7b375e352231" + "$oid": "66723d958f368f285d303e6e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5552,15 +5552,15 @@ "cohort": "42", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Las Vegas", "Tulsa", "Greensboro", "Scottsdale"], + "cities": ["Los Angeles", "Philadelphia"], "_id": { - "$oid": "666cbc3240af7b375e352232" + "$oid": "66723d958f368f285d303e6f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5573,15 +5573,15 @@ "cohort": "24", "jobTitle": "Fullstack Engineer", "industry": "Banking", - "cities": ["Sรฃo Paulo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352233" + "$oid": "66723d958f368f285d303e70" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5594,15 +5594,15 @@ "cohort": "49", "jobTitle": "Senior Associate Software Engineer", "industry": "Software / Tech", - "cities": ["Reno", "Paris", "El Paso", "Fort Wayne"], + "cities": ["Garland"], "_id": { - "$oid": "666cbc3240af7b375e352234" + "$oid": "66723d958f368f285d303e71" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5615,15 +5615,15 @@ "cohort": "45", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Toronto"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352235" + "$oid": "66723d958f368f285d303e72" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5636,15 +5636,15 @@ "cohort": "52", "jobTitle": "Full Stack Engineer", "industry": "Fintech", - "cities": ["Indianapolis", "San Antonio", "Stockton"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352236" + "$oid": "66723d958f368f285d303e73" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5657,15 +5657,15 @@ "cohort": "28", "jobTitle": "Senior Front End Engineer", "industry": "Fintech", - "cities": ["Sydney", "Greensboro", "Fort Worth"], + "cities": ["Albuquerque"], "_id": { - "$oid": "666cbc3240af7b375e352237" + "$oid": "66723d958f368f285d303e74" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5678,15 +5678,15 @@ "cohort": "45", "jobTitle": "Software Engineer, Full Stack", "industry": "Fin tech", - "cities": ["Winston-Salem"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352238" + "$oid": "66723d958f368f285d303e75" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5699,15 +5699,15 @@ "cohort": "28", "jobTitle": "Senior Software Engineer", "industry": "Banking/ Fintech", - "cities": ["Denver", "Cleveland", "Raleigh", "Pittsburgh"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352239" + "$oid": "66723d958f368f285d303e76" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5720,15 +5720,15 @@ "cohort": "43", "jobTitle": "Backend Engineer, Senior Associate", "industry": "Finance/Banking", - "cities": ["Arlington", "Laredo", "San Antonio"], + "cities": ["London", "Chesapeake", "Aurora"], "_id": { - "$oid": "666cbc3240af7b375e35223a" + "$oid": "66723d958f368f285d303e77" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5741,15 +5741,15 @@ "cohort": "9", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Tulsa", "Irving", "Pittsburgh", "Glendale"], + "cities": ["Buffalo", "Glendale"], "_id": { - "$oid": "666cbc3240af7b375e35223b" + "$oid": "66723d958f368f285d303e78" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5762,15 +5762,15 @@ "cohort": "1", "jobTitle": "Senior Associate Software Engineer", "industry": "Fintech", - "cities": ["Glendale"], + "cities": ["Boston", "Laredo", "Fort Wayne"], "_id": { - "$oid": "666cbc3240af7b375e35223c" + "$oid": "66723d958f368f285d303e79" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5783,15 +5783,15 @@ "cohort": "7", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Paris", "Bakersfield"], + "cities": ["Gilbert", "Chandler"], "_id": { - "$oid": "666cbc3240af7b375e35223d" + "$oid": "66723d958f368f285d303e7a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5804,15 +5804,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "Banking", - "cities": ["Columbus", "Madison"], + "cities": ["Houston"], "_id": { - "$oid": "666cbc3240af7b375e35223e" + "$oid": "66723d958f368f285d303e7b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5825,15 +5825,15 @@ "cohort": "27", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Albuquerque", "St. Louis", "Houston"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35223f" + "$oid": "66723d958f368f285d303e7c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5846,15 +5846,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Virginia Beach"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352240" + "$oid": "66723d958f368f285d303e7d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5867,15 +5867,15 @@ "cohort": "44", "jobTitle": "Fullstack Software Engineer", "industry": "Fintech", - "cities": ["Chesapeake"], + "cities": ["Virginia Beach", "San Antonio"], "_id": { - "$oid": "666cbc3240af7b375e352241" + "$oid": "66723d958f368f285d303e7e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5888,15 +5888,15 @@ "cohort": "3", "jobTitle": "Senior Associate Software Engineer - Backend", "industry": "Fintech", - "cities": ["Oklahoma City"], + "cities": ["Stockton", "Oklahoma City", "Oakland"], "_id": { - "$oid": "666cbc3240af7b375e352242" + "$oid": "66723d958f368f285d303e7f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5909,15 +5909,15 @@ "cohort": "27", "jobTitle": "Senior Associate Software Engineer", "industry": "Finance", - "cities": ["Las Vegas", "Chicago", "Nashville", "Detroit"], + "cities": ["Madison", "Tulsa"], "_id": { - "$oid": "666cbc3240af7b375e352243" + "$oid": "66723d958f368f285d303e80" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5930,15 +5930,15 @@ "cohort": "28", "jobTitle": "Sr. Associate Software Engineer (Full-Stack)", "industry": "Business", - "cities": ["Raleigh"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352244" + "$oid": "66723d958f368f285d303e81" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5951,15 +5951,15 @@ "cohort": "30", "jobTitle": "Fullstack Engineer", "industry": "Fintech", - "cities": ["Mesa", "Chicago"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352245" + "$oid": "66723d958f368f285d303e82" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5972,15 +5972,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Chesapeake", "Henderson", "Albuquerque"], + "cities": ["Jersey City", "Tulsa", "Fresno"], "_id": { - "$oid": "666cbc3240af7b375e352246" + "$oid": "66723d958f368f285d303e83" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -5993,15 +5993,15 @@ "cohort": "43", "jobTitle": "Front End Software Engineer", "industry": "Financial Services", - "cities": ["Irvine", "Fresno", "Gilbert", "Indianapolis"], + "cities": ["New Orleans"], "_id": { - "$oid": "666cbc3240af7b375e352247" + "$oid": "66723d958f368f285d303e84" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6014,15 +6014,15 @@ "cohort": "27", "jobTitle": "Software Engineer, Full Stack", "industry": "Banking/Fintech", - "cities": ["Anaheim"], + "cities": ["North Las Vegas", "Chicago", "San Diego"], "_id": { - "$oid": "666cbc3240af7b375e352248" + "$oid": "66723d958f368f285d303e85" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6035,15 +6035,15 @@ "cohort": "28", "jobTitle": "Sr Software Engineer Back-end", "industry": "Fintech", - "cities": ["Long Beach", "Chula Vista"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352249" + "$oid": "66723d958f368f285d303e86" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6056,15 +6056,15 @@ "cohort": "3", "jobTitle": "Senior Software Engineer", "industry": "Finance/Fintech", - "cities": ["Mexico City", "Charlotte", "Honolulu", "Louisville"], + "cities": ["Portland", "Las Vegas", "Sacramento"], "_id": { - "$oid": "666cbc3240af7b375e35224a" + "$oid": "66723d958f368f285d303e87" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6077,15 +6077,15 @@ "cohort": "23", "jobTitle": "Senior Associate Fullstack Engineer", "industry": "Fintech", - "cities": ["Las Vegas", "Fort Worth"], + "cities": ["Fresno", "Reno"], "_id": { - "$oid": "666cbc3240af7b375e35224b" + "$oid": "66723d958f368f285d303e88" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6098,15 +6098,15 @@ "cohort": "47", "jobTitle": "Software Engineer, Fullstack", "industry": "Finance", - "cities": ["Chicago", "Miami"], + "cities": ["Washington", "San Jose", "Mesa"], "_id": { - "$oid": "666cbc3240af7b375e35224c" + "$oid": "66723d958f368f285d303e89" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6119,15 +6119,15 @@ "cohort": "6", "jobTitle": "Backend Software Engineer", "industry": "Fintech", - "cities": ["Laredo", "Irvine", "Raleigh"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35224d" + "$oid": "66723d958f368f285d303e8a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6140,15 +6140,15 @@ "cohort": "13", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Durham"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35224e" + "$oid": "66723d958f368f285d303e8b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6161,15 +6161,15 @@ "cohort": "43", "jobTitle": "Software Engineer, Full Stack", "industry": "Banking", - "cities": ["Saint Paul"], + "cities": ["San Diego", "Fort Wayne", "Oklahoma City"], "_id": { - "$oid": "666cbc3240af7b375e35224f" + "$oid": "66723d958f368f285d303e8c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6182,15 +6182,15 @@ "cohort": "47", "jobTitle": "Software Engineer, Full Stack", "industry": "Finance/Banking", - "cities": ["Minneapolis", "Saint Paul"], + "cities": ["Long Beach", "Gilbert", "St. Petersburg"], "_id": { - "$oid": "666cbc3240af7b375e352250" + "$oid": "66723d958f368f285d303e8d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6203,15 +6203,15 @@ "cohort": "44", "jobTitle": "Solutions Engineer", "industry": "Healthcare fintech", - "cities": ["Lubbock", "Colorado Springs", "Toronto"], + "cities": ["Reno"], "_id": { - "$oid": "666cbc3240af7b375e352251" + "$oid": "66723d958f368f285d303e8e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6224,15 +6224,15 @@ "cohort": "25", "jobTitle": "Senior Software Engineer", "industry": "Financial Services", - "cities": ["Stockton", "Charlotte", "Reno"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352252" + "$oid": "66723d958f368f285d303e8f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6245,15 +6245,15 @@ "cohort": "26", "jobTitle": "Software Engineer, Full Stack", "industry": "Fintech/ Banking", - "cities": ["Omaha", "Toledo", "Gilbert", "Austin"], + "cities": ["Reno"], "_id": { - "$oid": "666cbc3240af7b375e352253" + "$oid": "66723d958f368f285d303e90" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6266,15 +6266,15 @@ "cohort": "11", "jobTitle": "Senior Software Engineer", "industry": "Other", - "cities": ["Cincinnati", "Jersey City"], + "cities": ["Omaha", "Oakland"], "_id": { - "$oid": "666cbc3240af7b375e352254" + "$oid": "66723d958f368f285d303e91" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6287,15 +6287,15 @@ "cohort": "55", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Anchorage", "El Paso"], + "cities": ["Oklahoma City", "Toronto"], "_id": { - "$oid": "666cbc3240af7b375e352255" + "$oid": "66723d958f368f285d303e92" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6308,15 +6308,15 @@ "cohort": "37", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Tampa"], + "cities": ["Beijing", "Chula Vista", "Long Beach"], "_id": { - "$oid": "666cbc3240af7b375e352256" + "$oid": "66723d958f368f285d303e93" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6329,15 +6329,15 @@ "cohort": "49", "jobTitle": "Senior Full Stack Engineer", "industry": "Fintech", - "cities": ["Phoenix"], + "cities": ["Colorado Springs", "Houston", "Stockton"], "_id": { - "$oid": "666cbc3240af7b375e352257" + "$oid": "66723d958f368f285d303e94" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6350,15 +6350,15 @@ "cohort": "52", "jobTitle": "Senior Fullstack Engineer", "industry": "Fintech", - "cities": ["Irving", "Oklahoma City", "Madison"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352258" + "$oid": "66723d958f368f285d303e95" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6371,15 +6371,15 @@ "cohort": "13", "jobTitle": "Front End Engineer", "industry": "Finance", - "cities": ["Austin", "Washington", "Mesa", "Wichita"], + "cities": ["Aurora"], "_id": { - "$oid": "666cbc3240af7b375e352259" + "$oid": "66723d958f368f285d303e96" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6392,15 +6392,15 @@ "cohort": "2", "jobTitle": "Senior Fullstack Software Engineer", "industry": "Healthcare Tech", - "cities": ["Fort Wayne"], + "cities": ["Boston", "San Francisco"], "_id": { - "$oid": "666cbc3240af7b375e35225a" + "$oid": "66723d958f368f285d303e97" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6413,15 +6413,15 @@ "cohort": "1", "jobTitle": "Senior Fullstack Developer", "industry": "Health Care", - "cities": ["Toledo", "Los Angeles", "Austin", "Bakersfield"], + "cities": ["Newark"], "_id": { - "$oid": "666cbc3240af7b375e35225b" + "$oid": "66723d958f368f285d303e98" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6434,15 +6434,15 @@ "cohort": "6", "jobTitle": "Full Stack Engineer", "industry": "Healthcare", - "cities": ["Philadelphia", "San Antonio", "Tulsa"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35225c" + "$oid": "66723d958f368f285d303e99" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6455,15 +6455,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "Research", - "cities": ["Laredo", "Colorado Springs"], + "cities": ["Santa Ana"], "_id": { - "$oid": "666cbc3240af7b375e35225d" + "$oid": "66723d958f368f285d303e9a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6476,15 +6476,15 @@ "cohort": "30", "jobTitle": "Senior Software Engineer", "industry": "Wellness", - "cities": ["Orlando", "Mexico City", "Gilbert"], + "cities": ["Saint Paul", "St. Petersburg", "Winston-Salem"], "_id": { - "$oid": "666cbc3240af7b375e35225e" + "$oid": "66723d958f368f285d303e9b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6497,15 +6497,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Health tech", - "cities": ["Sydney"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35225f" + "$oid": "66723d958f368f285d303e9c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6518,15 +6518,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Retail", - "cities": ["Garland", "Tucson", "Reno", "Milwaukee"], + "cities": ["Lubbock"], "_id": { - "$oid": "666cbc3240af7b375e352260" + "$oid": "66723d958f368f285d303e9d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6539,15 +6539,15 @@ "cohort": "4", "jobTitle": "Associate Software Engineer", "industry": "Insurance", - "cities": ["Aurora", "Kansas City"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352261" + "$oid": "66723d958f368f285d303e9e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6560,15 +6560,15 @@ "cohort": "34", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Virginia Beach"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352262" + "$oid": "66723d958f368f285d303e9f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6581,15 +6581,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "Entertainment", - "cities": ["Reno"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352263" + "$oid": "66723d958f368f285d303ea0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6602,15 +6602,15 @@ "cohort": "28", "jobTitle": "software engineer", "industry": "fintech/entertainment", - "cities": ["Lubbock", "St. Petersburg", "Beijing"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352264" + "$oid": "66723d958f368f285d303ea1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6623,15 +6623,15 @@ "cohort": "46", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Denver", "El Paso"], + "cities": ["Henderson", "New Orleans"], "_id": { - "$oid": "666cbc3240af7b375e352265" + "$oid": "66723d958f368f285d303ea2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6644,15 +6644,15 @@ "cohort": "7", "jobTitle": "Software Engineer II", "industry": "Advertising", - "cities": ["Honolulu", "Columbus"], + "cities": ["Gilbert"], "_id": { - "$oid": "666cbc3240af7b375e352266" + "$oid": "66723d958f368f285d303ea3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6665,15 +6665,15 @@ "cohort": "37", "jobTitle": "Software Engineer", "industry": "Consumer products", - "cities": ["San Jose", "Philadelphia"], + "cities": ["Seattle", "Albuquerque"], "_id": { - "$oid": "666cbc3240af7b375e352267" + "$oid": "66723d958f368f285d303ea4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6686,15 +6686,15 @@ "cohort": "27", "jobTitle": "Software Engineer III - Frontend", "industry": "business analytics platform", - "cities": ["Orlando"], + "cities": ["Durham", "Colorado Springs", "Jacksonville"], "_id": { - "$oid": "666cbc3240af7b375e352268" + "$oid": "66723d958f368f285d303ea5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6707,15 +6707,15 @@ "cohort": "16", "jobTitle": "Frontend Software Engineer", "industry": "Health", - "cities": ["Tampa", "Lincoln"], + "cities": ["Sรฃo Paulo", "Buffalo"], "_id": { - "$oid": "666cbc3240af7b375e352269" + "$oid": "66723d958f368f285d303ea6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6728,15 +6728,15 @@ "cohort": "12", "jobTitle": "Front End Engineer", "industry": "Health", - "cities": ["Portland"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35226a" + "$oid": "66723d958f368f285d303ea7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6749,15 +6749,15 @@ "cohort": "49", "jobTitle": "Software Engineer/Programming Analyst", "industry": "Healthcare", - "cities": ["Las Vegas"], + "cities": ["Toronto"], "_id": { - "$oid": "666cbc3240af7b375e35226b" + "$oid": "66723d958f368f285d303ea8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6770,15 +6770,15 @@ "cohort": "35", "jobTitle": "Software Engineer", "industry": "Aerospace", - "cities": ["Memphis", "Wichita", "San Francisco", "St. Petersburg"], + "cities": ["Laredo"], "_id": { - "$oid": "666cbc3240af7b375e35226c" + "$oid": "66723d958f368f285d303ea9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6791,15 +6791,15 @@ "cohort": "41", "jobTitle": "Full Stack Developer", "industry": "Healthtech/Healthcare", - "cities": ["Gilbert"], + "cities": ["Kansas City"], "_id": { - "$oid": "666cbc3240af7b375e35226d" + "$oid": "66723d958f368f285d303eaa" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6812,15 +6812,15 @@ "cohort": "51", "jobTitle": "Software Development Engineer", "industry": "Telecommunications", - "cities": ["Chandler", "Virginia Beach", "New York"], + "cities": ["Garland", "Beijing"], "_id": { - "$oid": "666cbc3240af7b375e35226e" + "$oid": "66723d958f368f285d303eab" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6833,15 +6833,15 @@ "cohort": "6", "jobTitle": "Full Stack Engineer II", "industry": "Medicine", - "cities": ["Oakland", "Saint Paul"], + "cities": ["Colorado Springs"], "_id": { - "$oid": "666cbc3240af7b375e35226f" + "$oid": "66723d958f368f285d303eac" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6854,15 +6854,15 @@ "cohort": "39", "jobTitle": "Software Engineer", "industry": "Logistic", - "cities": ["Sรฃo Paulo", "Anchorage", "Riverside", "Columbus"], + "cities": ["Memphis"], "_id": { - "$oid": "666cbc3240af7b375e352270" + "$oid": "66723d958f368f285d303ead" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6875,15 +6875,15 @@ "cohort": "17", "jobTitle": "Technical Writer", "industry": "Fintech", - "cities": ["Philadelphia"], + "cities": ["Mexico City", "Seattle", "Sacramento"], "_id": { - "$oid": "666cbc3240af7b375e352271" + "$oid": "66723d958f368f285d303eae" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6896,15 +6896,15 @@ "cohort": "56", "jobTitle": "Web Developer", "industry": "Marketing/Advertising", - "cities": ["Riverside", "Anaheim", "Mesa"], + "cities": ["Corpus Christi", "Chula Vista", "Fresno"], "_id": { - "$oid": "666cbc3240af7b375e352272" + "$oid": "66723d958f368f285d303eaf" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6917,15 +6917,15 @@ "cohort": "52", "jobTitle": "Software Engineer", "industry": "Blockchain/Web3", - "cities": ["Irving", "North Las Vegas", "Glendale", "Plano"], + "cities": ["Milwaukee", "Kansas City", "Los Angeles"], "_id": { - "$oid": "666cbc3240af7b375e352273" + "$oid": "66723d958f368f285d303eb0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6938,15 +6938,15 @@ "cohort": "29", "jobTitle": "Senior Software Engineer", "industry": "Healthcare", - "cities": ["Anchorage"], + "cities": ["Reno", "San Jose"], "_id": { - "$oid": "666cbc3240af7b375e352274" + "$oid": "66723d958f368f285d303eb1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6959,15 +6959,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Chicago", "Mexico City", "Madison", "Memphis"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352275" + "$oid": "66723d958f368f285d303eb2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.816Z" }, "__v": 0 }, @@ -6980,15 +6980,15 @@ "cohort": "27", "jobTitle": "Software Engineer.", "industry": "Healthcare.", - "cities": ["Chicago", "Anchorage", "Irvine", "Lincoln"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352276" + "$oid": "66723d958f368f285d303eb3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7001,15 +7001,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Houston"], + "cities": ["Virginia Beach", "Tokyo"], "_id": { - "$oid": "666cbc3240af7b375e352277" + "$oid": "66723d958f368f285d303eb4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7022,15 +7022,15 @@ "cohort": "26", "jobTitle": "Senior Software Engineer", "industry": "Subscription Tech", - "cities": ["Paris", "Detroit", "Kansas City"], + "cities": ["Tokyo", "Honolulu"], "_id": { - "$oid": "666cbc3240af7b375e352278" + "$oid": "66723d958f368f285d303eb5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7043,15 +7043,15 @@ "cohort": "24", "jobTitle": "Founding engineer", "industry": "Software as a service", - "cities": ["Scottsdale", "Raleigh", "Beijing"], + "cities": ["Sรฃo Paulo", "San Jose", "Albuquerque"], "_id": { - "$oid": "666cbc3240af7b375e352279" + "$oid": "66723d958f368f285d303eb6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7064,15 +7064,15 @@ "cohort": "13", "jobTitle": "Full Stack Developer", "industry": "Software / Tech", - "cities": ["Raleigh", "Las Vegas"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35227a" + "$oid": "66723d958f368f285d303eb7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7085,15 +7085,15 @@ "cohort": "13", "jobTitle": "Enterprise Engineer", "industry": "Fintech", - "cities": ["Lexington", "Buffalo"], + "cities": ["Indianapolis", "Los Angeles", "Louisville"], "_id": { - "$oid": "666cbc3240af7b375e35227b" + "$oid": "66723d958f368f285d303eb8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7106,15 +7106,15 @@ "cohort": "37", "jobTitle": "Senior Application Developer", "industry": "Retail", - "cities": ["North Las Vegas", "Riverside", "Las Vegas", "Jacksonville"], + "cities": ["Riverside", "Reno"], "_id": { - "$oid": "666cbc3240af7b375e35227c" + "$oid": "66723d958f368f285d303eb9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7127,15 +7127,15 @@ "cohort": "13", "jobTitle": "Sr Software Engineer", "industry": "Media / News", - "cities": ["Reno", "Arlington", "Fresno", "Atlanta"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35227d" + "$oid": "66723d958f368f285d303eba" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7148,15 +7148,15 @@ "cohort": "11", "jobTitle": "Software Engineer", "industry": "EdTech", - "cities": ["Gilbert", "Honolulu", "Madison"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35227e" + "$oid": "66723d958f368f285d303ebb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7169,15 +7169,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Tech Consulting, Client is in HealthTech", - "cities": ["Sydney"], + "cities": ["Orlando", "Milwaukee"], "_id": { - "$oid": "666cbc3240af7b375e35227f" + "$oid": "66723d958f368f285d303ebc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7190,15 +7190,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "E-commerce", - "cities": ["Memphis", "Omaha", "Honolulu", "San Jose"], + "cities": ["Chula Vista"], "_id": { - "$oid": "666cbc3240af7b375e352280" + "$oid": "66723d958f368f285d303ebd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7211,15 +7211,15 @@ "cohort": "32", "jobTitle": "Fullstack Software Engineer", "industry": "Other", - "cities": ["Boston", "Glendale"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352281" + "$oid": "66723d958f368f285d303ebe" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7232,15 +7232,15 @@ "cohort": "46", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Honolulu", "Irvine", "Laredo", "Toledo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352282" + "$oid": "66723d958f368f285d303ebf" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7253,15 +7253,15 @@ "cohort": "50", "jobTitle": "Lead Engineer", "industry": "Healthcare", - "cities": ["Chesapeake", "London"], + "cities": ["Detroit"], "_id": { - "$oid": "666cbc3240af7b375e352283" + "$oid": "66723d958f368f285d303ec0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7274,15 +7274,15 @@ "cohort": "16", "jobTitle": "Backend Engineer", "industry": "Health & Wellness", - "cities": ["Norfolk", "Toronto", "Chula Vista", "Beijing"], + "cities": ["Arlington"], "_id": { - "$oid": "666cbc3240af7b375e352284" + "$oid": "66723d958f368f285d303ec1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7295,15 +7295,15 @@ "cohort": "16", "jobTitle": "Web Developer", "industry": "Meditation/self-care", - "cities": ["Honolulu", "Henderson"], + "cities": ["Los Angeles", "New Orleans", "Oklahoma City"], "_id": { - "$oid": "666cbc3240af7b375e352285" + "$oid": "66723d958f368f285d303ec2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7316,15 +7316,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Bio-Tech", - "cities": ["San Antonio", "Paris", "Mumbai"], + "cities": ["Paris", "Louisville"], "_id": { - "$oid": "666cbc3240af7b375e352286" + "$oid": "66723d958f368f285d303ec3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7337,15 +7337,15 @@ "cohort": "26", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Jacksonville", "Portland", "Bakersfield", "Long Beach"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352287" + "$oid": "66723d958f368f285d303ec4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7358,15 +7358,15 @@ "cohort": "42", "jobTitle": "Full Stack Engineer", "industry": "Health Care", - "cities": ["Oakland", "Albuquerque", "Berlin", "Corpus Christi"], + "cities": ["St. Louis", "Irvine", "Minneapolis"], "_id": { - "$oid": "666cbc3240af7b375e352288" + "$oid": "66723d958f368f285d303ec5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7379,15 +7379,15 @@ "cohort": "7", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Fort Worth", "Boston", "Riverside"], + "cities": ["Albuquerque", "Lexington", "Raleigh"], "_id": { - "$oid": "666cbc3240af7b375e352289" + "$oid": "66723d958f368f285d303ec6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7400,15 +7400,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "Software", - "cities": ["Toledo", "Gilbert"], + "cities": ["Pittsburgh", "North Las Vegas", "Boston"], "_id": { - "$oid": "666cbc3240af7b375e35228a" + "$oid": "66723d958f368f285d303ec7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7421,15 +7421,15 @@ "cohort": "43", "jobTitle": "Software Development Engineer", "industry": "Tech", - "cities": ["Lubbock", "Buffalo", "Tucson", "Detroit"], + "cities": ["Oklahoma City"], "_id": { - "$oid": "666cbc3240af7b375e35228b" + "$oid": "66723d958f368f285d303ec8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7442,15 +7442,15 @@ "cohort": "35", "jobTitle": "Software Engineer", "industry": "Computer Software/Tech", - "cities": ["Oakland", "Toledo", "New Orleans"], + "cities": ["Glendale", "Chesapeake", "Toronto"], "_id": { - "$oid": "666cbc3240af7b375e35228c" + "$oid": "66723d958f368f285d303ec9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.244Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7463,15 +7463,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Dev Ops", - "cities": ["Milwaukee", "Wichita", "Winston-Salem"], + "cities": ["Stockton", "Milwaukee", "Oakland"], "_id": { - "$oid": "666cbc3240af7b375e35228d" + "$oid": "66723d958f368f285d303eca" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7484,15 +7484,15 @@ "cohort": "26", "jobTitle": "Software Engineering", "industry": "Software / Tech", - "cities": ["Oakland", "Atlanta"], + "cities": ["Washington", "Boston"], "_id": { - "$oid": "666cbc3240af7b375e35228e" + "$oid": "66723d958f368f285d303ecb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7505,15 +7505,15 @@ "cohort": "18", "jobTitle": "Senior Software Engineer", "industry": "Computer Engineering", - "cities": ["Memphis", "Irvine"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35228f" + "$oid": "66723d958f368f285d303ecc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7526,15 +7526,15 @@ "cohort": "37", "jobTitle": "Sr. Programmer Analyst", "industry": "Fintech", - "cities": ["Greensboro"], + "cities": ["Irvine", "Sรฃo Paulo", "Minneapolis"], "_id": { - "$oid": "666cbc3240af7b375e352290" + "$oid": "66723d958f368f285d303ecd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7547,15 +7547,15 @@ "cohort": "4", "jobTitle": "Digital Software Engineer / Senior Analyst - C12, Assistant Vice President of Matrix Reportingโ€‹", "industry": "Fintech", - "cities": ["San Jose"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352291" + "$oid": "66723d958f368f285d303ece" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7568,15 +7568,15 @@ "cohort": "18", "jobTitle": "Senior Software Engineer", "industry": "Healthcare", - "cities": ["St. Louis", "Dallas", "Winston-Salem", "Atlanta"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352292" + "$oid": "66723d958f368f285d303ecf" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7589,15 +7589,15 @@ "cohort": "4", "jobTitle": "Data Engineering Fellow", "industry": "Government", - "cities": ["Garland", "Raleigh", "Phoenix"], + "cities": ["Boston"], "_id": { - "$oid": "666cbc3240af7b375e352293" + "$oid": "66723d958f368f285d303ed0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7610,15 +7610,15 @@ "cohort": "14", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Honolulu"], + "cities": ["St. Louis"], "_id": { - "$oid": "666cbc3240af7b375e352294" + "$oid": "66723d958f368f285d303ed1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7631,15 +7631,15 @@ "cohort": "41", "jobTitle": "Software Engineer", "industry": "Software", - "cities": ["Fresno", "Houston"], + "cities": ["Portland"], "_id": { - "$oid": "666cbc3240af7b375e352295" + "$oid": "66723d958f368f285d303ed2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7652,15 +7652,15 @@ "cohort": "21", "jobTitle": "Software Engineer", "industry": "Biometrics / Security services", - "cities": ["Mexico City", "Colorado Springs", "Honolulu"], + "cities": ["Newark", "Cleveland"], "_id": { - "$oid": "666cbc3240af7b375e352296" + "$oid": "66723d958f368f285d303ed3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7673,15 +7673,15 @@ "cohort": "37", "jobTitle": "Associate Software Engineer", "industry": "Fintech, Real Estate", - "cities": ["Oklahoma City", "Philadelphia", "El Paso", "Plano"], + "cities": ["Mexico City", "Detroit", "Sรฃo Paulo"], "_id": { - "$oid": "666cbc3240af7b375e352297" + "$oid": "66723d958f368f285d303ed4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7694,15 +7694,15 @@ "cohort": "8", "jobTitle": "Jr. Software Developer", "industry": "Software / Tech", - "cities": ["El Paso", "Minneapolis", "Fort Wayne", "Madison"], + "cities": ["Sydney"], "_id": { - "$oid": "666cbc3240af7b375e352298" + "$oid": "66723d958f368f285d303ed5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7715,15 +7715,15 @@ "cohort": "48", "jobTitle": "Software Engineer", "industry": "Travel Technology", - "cities": ["Dallas", "Toledo", "Lexington", "Norfolk"], + "cities": ["El Paso", "Norfolk", "Kansas City"], "_id": { - "$oid": "666cbc3240af7b375e352299" + "$oid": "66723d958f368f285d303ed6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7736,15 +7736,15 @@ "cohort": "31", "jobTitle": "Web Software Engineer", "industry": "Software / Tech", - "cities": ["Tulsa", "Saint Paul", "San Jose", "Riverside"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35229a" + "$oid": "66723d958f368f285d303ed7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7757,15 +7757,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "Insurance/Travel", - "cities": ["Wichita", "Berlin", "Norfolk", "Reno"], + "cities": ["Glendale", "Saint Paul"], "_id": { - "$oid": "666cbc3240af7b375e35229b" + "$oid": "66723d958f368f285d303ed8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7778,15 +7778,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Riverside", "Toledo", "Houston"], + "cities": ["Norfolk", "Tampa", "Irvine"], "_id": { - "$oid": "666cbc3240af7b375e35229c" + "$oid": "66723d958f368f285d303ed9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7799,15 +7799,15 @@ "cohort": "35", "jobTitle": "Full Stack Software Engineer", "industry": "Software / Tech", - "cities": ["Chesapeake", "Cincinnati", "Stockton", "El Paso"], + "cities": ["Colorado Springs", "Charlotte"], "_id": { - "$oid": "666cbc3240af7b375e35229d" + "$oid": "66723d958f368f285d303eda" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7820,15 +7820,15 @@ "cohort": "41", "jobTitle": "Backend Engineer", "industry": "Business Tech/Enterprise Tech", - "cities": ["Colorado Springs", "Tokyo", "Cleveland", "Miami"], + "cities": ["North Las Vegas", "Atlanta"], "_id": { - "$oid": "666cbc3240af7b375e35229e" + "$oid": "66723d958f368f285d303edb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7841,15 +7841,15 @@ "cohort": "33", "jobTitle": "Data Engineer", "industry": "Security", - "cities": ["Toronto", "Paris", "Henderson", "Virginia Beach"], + "cities": ["Chandler", "Jacksonville", "Sacramento"], "_id": { - "$oid": "666cbc3240af7b375e35229f" + "$oid": "66723d958f368f285d303edc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7862,15 +7862,15 @@ "cohort": "16", "jobTitle": "Frontend Engineer", "industry": "Leisure, Travel & Tourism", - "cities": ["Chesapeake", "Corpus Christi", "Austin"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522a0" + "$oid": "66723d958f368f285d303edd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7883,15 +7883,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Denver", "Greensboro", "Chandler", "Honolulu"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522a1" + "$oid": "66723d958f368f285d303ede" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7904,15 +7904,15 @@ "cohort": "33", "jobTitle": "Software Engineer", "industry": "Software Solutions/Developer Tools", - "cities": ["Denver", "Irvine", "Louisville", "St. Petersburg"], + "cities": ["Chandler", "Tampa"], "_id": { - "$oid": "666cbc3240af7b375e3522a2" + "$oid": "66723d958f368f285d303edf" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7925,15 +7925,15 @@ "cohort": "44", "jobTitle": "Instruction Training Manager", "industry": "Software/Tech", - "cities": ["Scottsdale", "Louisville", "Charlotte"], + "cities": ["Memphis", "Norfolk"], "_id": { - "$oid": "666cbc3240af7b375e3522a3" + "$oid": "66723d958f368f285d303ee0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7946,15 +7946,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Computer Software", - "cities": ["Dallas", "Jersey City", "San Antonio"], + "cities": ["Louisville"], "_id": { - "$oid": "666cbc3240af7b375e3522a4" + "$oid": "66723d958f368f285d303ee1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7967,15 +7967,15 @@ "cohort": "39", "jobTitle": "Senior Developer", "industry": "Technology", - "cities": ["Los Angeles", "Fort Wayne"], + "cities": ["Memphis", "Anaheim", "Mesa"], "_id": { - "$oid": "666cbc3240af7b375e3522a5" + "$oid": "66723d958f368f285d303ee2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -7988,15 +7988,15 @@ "cohort": "38", "jobTitle": "Senior Full Stack Engineer", "industry": "Artificial Intelligence", - "cities": ["Tucson", "Jacksonville", "Chesapeake", "Raleigh"], + "cities": ["Colorado Springs", "Anchorage", "Boston"], "_id": { - "$oid": "666cbc3240af7b375e3522a6" + "$oid": "66723d958f368f285d303ee3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8009,15 +8009,15 @@ "cohort": "19", "jobTitle": "Software Engineer", "industry": "", - "cities": ["San Antonio", "Charlotte", "Colorado Springs"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522a7" + "$oid": "66723d958f368f285d303ee4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8030,15 +8030,15 @@ "cohort": "42", "jobTitle": "Senior Frontend Engineer", "industry": "Health Tech (Healthplan Administration for 1000 plus employee companies)", - "cities": ["Memphis", "Chesapeake", "Los Angeles"], + "cities": ["Scottsdale", "Durham", "Albuquerque"], "_id": { - "$oid": "666cbc3240af7b375e3522a8" + "$oid": "66723d958f368f285d303ee5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8051,15 +8051,15 @@ "cohort": "55", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["Riverside", "Tokyo", "Mumbai"], + "cities": ["Charlotte"], "_id": { - "$oid": "666cbc3240af7b375e3522a9" + "$oid": "66723d958f368f285d303ee6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8072,15 +8072,15 @@ "cohort": "48", "jobTitle": "Software Engineer", "industry": "Media", - "cities": ["Louisville"], + "cities": ["Madison", "Berlin"], "_id": { - "$oid": "666cbc3240af7b375e3522aa" + "$oid": "66723d958f368f285d303ee7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8093,15 +8093,15 @@ "cohort": "20", "jobTitle": "Software Engineer", "industry": "TeleCom", - "cities": ["Minneapolis"], + "cities": ["Columbus", "Riverside"], "_id": { - "$oid": "666cbc3240af7b375e3522ab" + "$oid": "66723d958f368f285d303ee8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8114,15 +8114,15 @@ "cohort": "7", "jobTitle": "Software Developer", "industry": "", - "cities": ["Gilbert", "Toronto"], + "cities": ["Toronto", "Scottsdale"], "_id": { - "$oid": "666cbc3240af7b375e3522ac" + "$oid": "66723d958f368f285d303ee9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8135,15 +8135,15 @@ "cohort": "7", "jobTitle": "Node.js Engineer", "industry": "Commercial Services", - "cities": ["San Antonio", "Cincinnati", "Scottsdale"], + "cities": ["Scottsdale", "Baltimore", "Buffalo"], "_id": { - "$oid": "666cbc3240af7b375e3522ad" + "$oid": "66723d958f368f285d303eea" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8156,15 +8156,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Finance", - "cities": ["Tulsa", "El Paso"], + "cities": ["Durham", "St. Petersburg", "Las Vegas"], "_id": { - "$oid": "666cbc3240af7b375e3522ae" + "$oid": "66723d958f368f285d303eeb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8177,15 +8177,15 @@ "cohort": "15", "jobTitle": "Full Stack Developer", "industry": "Consulting", - "cities": ["Toronto"], + "cities": ["Albuquerque", "Laredo", "Lexington"], "_id": { - "$oid": "666cbc3240af7b375e3522af" + "$oid": "66723d958f368f285d303eec" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8198,15 +8198,15 @@ "cohort": "38", "jobTitle": "Software Engineer II", "industry": "Real Estate", - "cities": ["St. Petersburg"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522b0" + "$oid": "66723d958f368f285d303eed" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8219,15 +8219,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["Chula Vista", "New Orleans"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522b1" + "$oid": "66723d958f368f285d303eee" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8240,15 +8240,15 @@ "cohort": "12", "jobTitle": "Creative Developer", "industry": "Real Estate", - "cities": ["Mumbai"], + "cities": ["Austin", "Charlotte"], "_id": { - "$oid": "666cbc3240af7b375e3522b2" + "$oid": "66723d958f368f285d303eef" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8261,15 +8261,15 @@ "cohort": "34", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Saint Paul"], + "cities": ["Kansas City"], "_id": { - "$oid": "666cbc3240af7b375e3522b3" + "$oid": "66723d958f368f285d303ef0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8282,15 +8282,15 @@ "cohort": "16", "jobTitle": "Senior Software Engineer", "industry": "Food/Beverage/Restaurant", - "cities": ["New York"], + "cities": ["Jersey City", "Louisville"], "_id": { - "$oid": "666cbc3240af7b375e3522b4" + "$oid": "66723d958f368f285d303ef1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8303,15 +8303,15 @@ "cohort": "26", "jobTitle": "Software Development Engineer", "industry": "Health Tech", - "cities": ["Aurora", "Lubbock", "Washington"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522b5" + "$oid": "66723d958f368f285d303ef2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8324,15 +8324,15 @@ "cohort": "15", "jobTitle": "Back End Software Engineer", "industry": "Defense", - "cities": ["Wichita", "Winston-Salem", "Lubbock"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522b6" + "$oid": "66723d958f368f285d303ef3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8345,15 +8345,15 @@ "cohort": "37", "jobTitle": "Associate Engineer", "industry": "Fintech", - "cities": ["Riverside", "Cleveland", "Scottsdale", "Albuquerque"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522b7" + "$oid": "66723d958f368f285d303ef4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8366,15 +8366,15 @@ "cohort": "14", "jobTitle": "Senior Web Developer", "industry": "Software", - "cities": ["Reno", "St. Petersburg", "Newark"], + "cities": ["Mumbai", "Toronto"], "_id": { - "$oid": "666cbc3240af7b375e3522b8" + "$oid": "66723d958f368f285d303ef5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8387,15 +8387,15 @@ "cohort": "41", "jobTitle": "Software Engineer", "industry": "Entertainment technology", - "cities": ["Jersey City"], + "cities": ["Plano"], "_id": { - "$oid": "666cbc3240af7b375e3522b9" + "$oid": "66723d958f368f285d303ef6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8408,15 +8408,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "Agriculture Science", - "cities": ["Greensboro", "Washington", "Chula Vista"], + "cities": ["Oakland", "San Francisco"], "_id": { - "$oid": "666cbc3240af7b375e3522ba" + "$oid": "66723d958f368f285d303ef7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8429,15 +8429,15 @@ "cohort": "2", "jobTitle": "Lead Software Engineer", "industry": "Commercial Real Estate", - "cities": ["Chula Vista", "Laredo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522bb" + "$oid": "66723d958f368f285d303ef8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8450,15 +8450,15 @@ "cohort": "29", "jobTitle": "Associate Software Engineer", "industry": "Real Estate", - "cities": ["Phoenix", "Toledo"], + "cities": ["Omaha", "El Paso"], "_id": { - "$oid": "666cbc3240af7b375e3522bc" + "$oid": "66723d958f368f285d303ef9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8471,15 +8471,15 @@ "cohort": "32", "jobTitle": "Software Engineer II", "industry": "Real Estate", - "cities": ["Chesapeake", "Cincinnati", "Plano"], + "cities": ["San Jose", "Memphis", "Mumbai"], "_id": { - "$oid": "666cbc3240af7b375e3522bd" + "$oid": "66723d958f368f285d303efa" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8492,15 +8492,15 @@ "cohort": "2", "jobTitle": "Software Engineer II", "industry": "Real Estate", - "cities": ["St. Louis"], + "cities": ["Miami", "Charlotte"], "_id": { - "$oid": "666cbc3240af7b375e3522be" + "$oid": "66723d958f368f285d303efb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8513,15 +8513,15 @@ "cohort": "30", "jobTitle": "Frontend Engineer", "industry": "Commercial Real Estate", - "cities": ["Henderson"], + "cities": ["San Francisco", "Virginia Beach", "Sรฃo Paulo"], "_id": { - "$oid": "666cbc3240af7b375e3522bf" + "$oid": "66723d958f368f285d303efc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8534,15 +8534,15 @@ "cohort": "26", "jobTitle": "Senior Software Engineer/Web App Architect", "industry": "Software / Tech", - "cities": ["Corpus Christi", "Fort Worth", "Paris", "Fort Wayne"], + "cities": ["Reno", "Lincoln"], "_id": { - "$oid": "666cbc3240af7b375e3522c0" + "$oid": "66723d958f368f285d303efd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8555,15 +8555,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["Jersey City"], + "cities": ["Houston"], "_id": { - "$oid": "666cbc3240af7b375e3522c1" + "$oid": "66723d958f368f285d303efe" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8576,15 +8576,15 @@ "cohort": "9", "jobTitle": "Software Engineer II", "industry": "Automotive", - "cities": ["Riverside", "Newark", "Reno"], + "cities": ["Chesapeake"], "_id": { - "$oid": "666cbc3240af7b375e3522c2" + "$oid": "66723d958f368f285d303eff" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8597,15 +8597,15 @@ "cohort": "9", "jobTitle": "Software Engineer II", "industry": "Automotive", - "cities": ["Chicago", "Sacramento", "Wichita", "Fresno"], + "cities": ["Mesa", "Sรฃo Paulo"], "_id": { - "$oid": "666cbc3240af7b375e3522c3" + "$oid": "66723d958f368f285d303f00" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8618,15 +8618,15 @@ "cohort": "1", "jobTitle": "Technology Solutions Consultant", "industry": "Consulting", - "cities": ["Austin", "Aurora"], + "cities": ["Louisville", "Madison", "Omaha"], "_id": { - "$oid": "666cbc3240af7b375e3522c4" + "$oid": "66723d958f368f285d303f01" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8639,15 +8639,15 @@ "cohort": "14", "jobTitle": "Software Engineer", "industry": "VC", - "cities": ["Saint Paul", "Los Angeles"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522c5" + "$oid": "66723d958f368f285d303f02" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8660,15 +8660,15 @@ "cohort": "45", "jobTitle": "Fullstack Software Engineer", "industry": "Healthcare", - "cities": ["Irving"], + "cities": ["Charlotte", "Memphis", "St. Petersburg"], "_id": { - "$oid": "666cbc3240af7b375e3522c6" + "$oid": "66723d958f368f285d303f03" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8681,15 +8681,15 @@ "cohort": "21", "jobTitle": "Software Engineer", "industry": "Mental Health Services", - "cities": ["Plano", "Mumbai", "Scottsdale"], + "cities": ["Memphis", "Oakland", "Madison"], "_id": { - "$oid": "666cbc3240af7b375e3522c7" + "$oid": "66723d958f368f285d303f04" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8702,15 +8702,15 @@ "cohort": "31", "jobTitle": "Senior React Developer", "industry": "Consumer Goods: Fashion", - "cities": ["Santa Ana", "London", "Fresno"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522c8" + "$oid": "66723d958f368f285d303f05" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8723,15 +8723,15 @@ "cohort": "27", "jobTitle": "Software engineer", "industry": "SaaS", - "cities": ["Tokyo", "Virginia Beach", "Glendale"], + "cities": ["Oakland", "Wichita", "Plano"], "_id": { - "$oid": "666cbc3240af7b375e3522c9" + "$oid": "66723d958f368f285d303f06" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8744,15 +8744,15 @@ "cohort": "20", "jobTitle": "Software Engineer", "industry": "Data Analytics", - "cities": ["Miami", "Milwaukee", "Orlando", "San Francisco"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522ca" + "$oid": "66723d958f368f285d303f07" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8765,15 +8765,15 @@ "cohort": "20", "jobTitle": "Senior Software Engineer", "industry": "Health", - "cities": ["Aurora"], + "cities": ["Chesapeake", "San Jose", "Irvine"], "_id": { - "$oid": "666cbc3240af7b375e3522cb" + "$oid": "66723d958f368f285d303f08" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8786,15 +8786,15 @@ "cohort": "20", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Los Angeles", "Columbus", "Omaha", "San Francisco"], + "cities": ["San Diego", "Las Vegas", "Albuquerque"], "_id": { - "$oid": "666cbc3240af7b375e3522cc" + "$oid": "66723d958f368f285d303f09" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8807,15 +8807,15 @@ "cohort": "26", "jobTitle": "Software Developer", "industry": "Cybersecurity", - "cities": ["Washington", "Miami", "Durham"], + "cities": ["Garland", "Bakersfield", "San Diego"], "_id": { - "$oid": "666cbc3240af7b375e3522cd" + "$oid": "66723d958f368f285d303f0a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8828,15 +8828,15 @@ "cohort": "9", "jobTitle": "Software Engineer III", "industry": "Other", - "cities": ["Irvine", "Chicago"], + "cities": ["Charlotte", "Glendale", "Henderson"], "_id": { - "$oid": "666cbc3240af7b375e3522ce" + "$oid": "66723d958f368f285d303f0b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8849,15 +8849,15 @@ "cohort": "39", "jobTitle": "Software engineer", "industry": "Cryptography", - "cities": ["Glendale", "Mumbai"], + "cities": ["Fresno", "Gilbert"], "_id": { - "$oid": "666cbc3240af7b375e3522cf" + "$oid": "66723d958f368f285d303f0c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8870,15 +8870,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Consulting", - "cities": ["Riverside"], + "cities": ["Portland", "St. Petersburg", "Sydney"], "_id": { - "$oid": "666cbc3240af7b375e3522d0" + "$oid": "66723d958f368f285d303f0d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8891,15 +8891,15 @@ "cohort": "5", "jobTitle": "Full Stack Software Engineer", "industry": "Entertainment", - "cities": ["Stockton"], + "cities": ["New York"], "_id": { - "$oid": "666cbc3240af7b375e3522d1" + "$oid": "66723d958f368f285d303f0e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8912,15 +8912,15 @@ "cohort": "55", "jobTitle": "Fullstack Engineer", "industry": "Software / Tech", - "cities": ["Lexington", "Garland", "Chesapeake"], + "cities": ["Fort Worth", "Phoenix"], "_id": { - "$oid": "666cbc3240af7b375e3522d2" + "$oid": "66723d958f368f285d303f0f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8933,15 +8933,15 @@ "cohort": "3", "jobTitle": "Software Engineer I", "industry": "Biotech", - "cities": ["Colorado Springs", "Long Beach", "Pittsburgh"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522d3" + "$oid": "66723d958f368f285d303f10" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8954,15 +8954,15 @@ "cohort": "48", "jobTitle": "Senior Software Engineer", "industry": "Healthcare, AI", - "cities": ["Sydney", "Riverside"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522d4" + "$oid": "66723d958f368f285d303f11" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8975,15 +8975,15 @@ "cohort": "25", "jobTitle": "Full Stack Developer", "industry": "", - "cities": ["London", "Denver"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522d5" + "$oid": "66723d958f368f285d303f12" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -8996,15 +8996,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Colorado Springs", "Newark", "Garland"], + "cities": ["London", "Henderson", "Glendale"], "_id": { - "$oid": "666cbc3240af7b375e3522d6" + "$oid": "66723d958f368f285d303f13" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.817Z" }, "__v": 0 }, @@ -9017,15 +9017,15 @@ "cohort": "40", "jobTitle": "Software Engineer", "industry": "Health/Insurance", - "cities": ["New York", "Raleigh", "Columbus"], + "cities": ["Aurora", "Greensboro"], "_id": { - "$oid": "666cbc3240af7b375e3522d7" + "$oid": "66723d958f368f285d303f14" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9038,15 +9038,15 @@ "cohort": "16", "jobTitle": "Software Engineer", "industry": "Pharmacy", - "cities": ["Fort Wayne"], + "cities": ["Virginia Beach"], "_id": { - "$oid": "666cbc3240af7b375e3522d8" + "$oid": "66723d958f368f285d303f15" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9059,15 +9059,15 @@ "cohort": "16", "jobTitle": "Fullstack Node.js Developer (Software Engineer)", "industry": "Health", - "cities": ["Columbus"], + "cities": ["Honolulu"], "_id": { - "$oid": "666cbc3240af7b375e3522d9" + "$oid": "66723d958f368f285d303f16" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9080,15 +9080,15 @@ "cohort": "5", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["St. Petersburg"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522da" + "$oid": "66723d958f368f285d303f17" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9101,15 +9101,15 @@ "cohort": "40", "jobTitle": "Full Stack Node Developer", "industry": "Health", - "cities": ["Charlotte", "St. Louis"], + "cities": ["Lubbock", "Corpus Christi", "Beijing"], "_id": { - "$oid": "666cbc3240af7b375e3522db" + "$oid": "66723d958f368f285d303f18" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9122,15 +9122,15 @@ "cohort": "3", "jobTitle": "Data Engineer - Web UI Engineer", "industry": "health", - "cities": ["Garland", "Cleveland", "Houston", "Honolulu"], + "cities": ["Houston", "Fort Wayne", "Arlington"], "_id": { - "$oid": "666cbc3240af7b375e3522dc" + "$oid": "66723d958f368f285d303f19" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9143,15 +9143,15 @@ "cohort": "36", "jobTitle": "Lead Full Stack Engineer", "industry": "Software / Tech", - "cities": ["Toledo", "Beijing"], + "cities": ["Columbus", "Seattle", "Norfolk"], "_id": { - "$oid": "666cbc3240af7b375e3522dd" + "$oid": "66723d958f368f285d303f1a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9164,15 +9164,15 @@ "cohort": "36", "jobTitle": "Full Stack Engineer", "industry": "Other", - "cities": ["Fort Worth", "Irving"], + "cities": ["Newark", "Cleveland"], "_id": { - "$oid": "666cbc3240af7b375e3522de" + "$oid": "66723d958f368f285d303f1b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9185,15 +9185,15 @@ "cohort": "19", "jobTitle": "Full-Stack Engineer", "industry": "Computer Software", - "cities": ["Wichita", "Orlando", "Washington"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522df" + "$oid": "66723d958f368f285d303f1c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9206,15 +9206,15 @@ "cohort": "50", "jobTitle": "Software Engineer", "industry": "Security", - "cities": ["Cleveland", "Wichita", "Charlotte", "San Jose"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522e0" + "$oid": "66723d958f368f285d303f1d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9227,15 +9227,15 @@ "cohort": "47", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Reno", "Cincinnati"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522e1" + "$oid": "66723d958f368f285d303f1e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9248,15 +9248,15 @@ "cohort": "16", "jobTitle": "Full Stack Engineer", "industry": "Tech consultant", - "cities": ["St. Louis"], + "cities": ["Plano", "Fort Wayne"], "_id": { - "$oid": "666cbc3240af7b375e3522e2" + "$oid": "66723d958f368f285d303f1f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9269,15 +9269,15 @@ "cohort": "18", "jobTitle": "Data Engineer", "industry": "Data solutions", - "cities": ["Nashville", "Phoenix"], + "cities": ["St. Louis", "Kansas City", "Winston-Salem"], "_id": { - "$oid": "666cbc3240af7b375e3522e3" + "$oid": "66723d958f368f285d303f20" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9290,15 +9290,15 @@ "cohort": "40", "jobTitle": "Sr Software Engineer", "industry": "Sales", - "cities": ["Anaheim"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522e4" + "$oid": "66723d958f368f285d303f21" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9311,15 +9311,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Fashion/E-Commerce", - "cities": ["Riverside", "Lexington"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522e5" + "$oid": "66723d958f368f285d303f22" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9332,15 +9332,15 @@ "cohort": "35", "jobTitle": "Frontend Developer", "industry": "Software / Tech", - "cities": ["Honolulu", "Houston", "Irving"], + "cities": ["Tampa", "Lubbock"], "_id": { - "$oid": "666cbc3240af7b375e3522e6" + "$oid": "66723d958f368f285d303f23" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9353,15 +9353,15 @@ "cohort": "31", "jobTitle": "Backend Software Engineer", "industry": "Media", - "cities": ["Cleveland"], + "cities": ["Jersey City"], "_id": { - "$oid": "666cbc3240af7b375e3522e7" + "$oid": "66723d958f368f285d303f24" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9374,15 +9374,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["Fort Worth", "Paris", "Portland", "Madison"], + "cities": ["Phoenix"], "_id": { - "$oid": "666cbc3240af7b375e3522e8" + "$oid": "66723d958f368f285d303f25" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9395,15 +9395,15 @@ "cohort": "2", "jobTitle": "Full Stack Web3 Engineer", "industry": "Crypto", - "cities": ["San Diego", "Baltimore"], + "cities": ["Sacramento"], "_id": { - "$oid": "666cbc3240af7b375e3522e9" + "$oid": "66723d958f368f285d303f26" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9416,15 +9416,15 @@ "cohort": "3", "jobTitle": "Consultant - front end developer", "industry": "Consulting", - "cities": ["Tampa"], + "cities": ["Lubbock", "Sacramento"], "_id": { - "$oid": "666cbc3240af7b375e3522ea" + "$oid": "66723d958f368f285d303f27" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9437,15 +9437,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Airline", - "cities": ["Reno", "Jacksonville", "Irvine", "Paris"], + "cities": ["Henderson"], "_id": { - "$oid": "666cbc3240af7b375e3522eb" + "$oid": "66723d958f368f285d303f28" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9458,15 +9458,15 @@ "cohort": "52", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Oklahoma City", "Columbus", "Laredo", "Boston"], + "cities": ["Cleveland", "Aurora"], "_id": { - "$oid": "666cbc3240af7b375e3522ec" + "$oid": "66723d958f368f285d303f29" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9479,15 +9479,15 @@ "cohort": "37", "jobTitle": "Software Engineer", "industry": "Software & Tech services", - "cities": ["Greensboro", "London", "Baltimore", "Irvine"], + "cities": ["Louisville"], "_id": { - "$oid": "666cbc3240af7b375e3522ed" + "$oid": "66723d958f368f285d303f2a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9500,15 +9500,15 @@ "cohort": "14", "jobTitle": "Senior Software Engineer", "industry": "Manufacturing and Distribution", - "cities": ["Portland", "Long Beach", "Fort Wayne", "Stockton"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522ee" + "$oid": "66723d958f368f285d303f2b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.245Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9521,15 +9521,15 @@ "cohort": "9", "jobTitle": "Forward deployed software engineer", "industry": "Healthcare", - "cities": ["Lubbock", "Honolulu", "Madison"], + "cities": ["Toledo", "Minneapolis"], "_id": { - "$oid": "666cbc3240af7b375e3522ef" + "$oid": "66723d958f368f285d303f2c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9542,15 +9542,15 @@ "cohort": "23", "jobTitle": "Full Stack Software Engineer", "industry": "International Banking", - "cities": ["Norfolk", "Newark"], + "cities": ["Tulsa", "Corpus Christi", "Irvine"], "_id": { - "$oid": "666cbc3240af7b375e3522f0" + "$oid": "66723d958f368f285d303f2d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9563,15 +9563,15 @@ "cohort": "41", "jobTitle": "Senior Full Stack Software Engineer", "industry": "Data/Analytics/Cloud", - "cities": ["Houston", "Beijing", "Wichita", "Seattle"], + "cities": ["Tokyo", "Chula Vista", "Santa Ana"], "_id": { - "$oid": "666cbc3240af7b375e3522f1" + "$oid": "66723d958f368f285d303f2e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9584,15 +9584,15 @@ "cohort": "6", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Anchorage", "Nashville"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522f2" + "$oid": "66723d958f368f285d303f2f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9605,15 +9605,15 @@ "cohort": "42", "jobTitle": "Software Engineer", "industry": "Pet healthcare", - "cities": ["Chesapeake", "Virginia Beach", "Tokyo"], + "cities": ["Durham"], "_id": { - "$oid": "666cbc3240af7b375e3522f3" + "$oid": "66723d958f368f285d303f30" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9626,15 +9626,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Healthtech", - "cities": ["Houston"], + "cities": ["Chicago"], "_id": { - "$oid": "666cbc3240af7b375e3522f4" + "$oid": "66723d958f368f285d303f31" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9647,15 +9647,15 @@ "cohort": "20", "jobTitle": "Full stack software engineer", "industry": "", - "cities": ["Berlin", "Durham", "Saint Paul", "Dallas"], + "cities": ["Anchorage"], "_id": { - "$oid": "666cbc3240af7b375e3522f5" + "$oid": "66723d958f368f285d303f32" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9668,15 +9668,15 @@ "cohort": "36", "jobTitle": "Fullstack Engineer", "industry": "Entertainment/Consulting", - "cities": ["Wichita"], + "cities": ["Laredo"], "_id": { - "$oid": "666cbc3240af7b375e3522f6" + "$oid": "66723d958f368f285d303f33" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9689,15 +9689,15 @@ "cohort": "22", "jobTitle": "Developer", "industry": "", - "cities": ["Arlington", "Dallas"], + "cities": ["San Jose", "Garland", "Virginia Beach"], "_id": { - "$oid": "666cbc3240af7b375e3522f7" + "$oid": "66723d958f368f285d303f34" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9710,15 +9710,15 @@ "cohort": "4", "jobTitle": "Full Stack Software Engineer", "industry": "Healthtech/Healthcare", - "cities": ["Irvine"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522f8" + "$oid": "66723d958f368f285d303f35" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9731,15 +9731,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Retail", - "cities": ["Oklahoma City"], + "cities": ["Mexico City"], "_id": { - "$oid": "666cbc3240af7b375e3522f9" + "$oid": "66723d958f368f285d303f36" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9752,15 +9752,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "digital certificates / security", - "cities": ["Minneapolis", "Memphis", "Mexico City", "Chesapeake"], + "cities": ["Albuquerque"], "_id": { - "$oid": "666cbc3240af7b375e3522fa" + "$oid": "66723d958f368f285d303f37" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9773,15 +9773,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Electronic Manufacturing", - "cities": ["Henderson", "Denver"], + "cities": ["Sรฃo Paulo", "Irving", "Cleveland"], "_id": { - "$oid": "666cbc3240af7b375e3522fb" + "$oid": "66723d958f368f285d303f38" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9794,15 +9794,15 @@ "cohort": "22", "jobTitle": "Developer", "industry": "SEO", - "cities": ["Chandler"], + "cities": ["St. Louis", "Cincinnati", "Glendale"], "_id": { - "$oid": "666cbc3240af7b375e3522fc" + "$oid": "66723d958f368f285d303f39" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9815,15 +9815,15 @@ "cohort": "17", "jobTitle": "Technical Editor", "industry": "Cloud service", - "cities": ["Miami", "Washington"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522fd" + "$oid": "66723d958f368f285d303f3a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9836,15 +9836,15 @@ "cohort": "29", "jobTitle": "Senior Software Engineer", "industry": "Tech", - "cities": ["Glendale", "North Las Vegas"], + "cities": ["Portland"], "_id": { - "$oid": "666cbc3240af7b375e3522fe" + "$oid": "66723d958f368f285d303f3b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9857,15 +9857,15 @@ "cohort": "9", "jobTitle": "Software Engineer I, UI,", "industry": "Blockchain", - "cities": ["Sรฃo Paulo", "Fort Worth"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3522ff" + "$oid": "66723d958f368f285d303f3c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9878,15 +9878,15 @@ "cohort": "2", "jobTitle": "Software Engineer I", "industry": "Music", - "cities": ["Columbus", "Chesapeake", "Bakersfield", "Newark"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352300" + "$oid": "66723d958f368f285d303f3d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9899,15 +9899,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Jersey City", "Houston"], + "cities": ["Saint Paul"], "_id": { - "$oid": "666cbc3240af7b375e352301" + "$oid": "66723d958f368f285d303f3e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9920,15 +9920,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Entertainment", - "cities": ["Reno", "Tulsa", "Newark", "New York"], + "cities": ["Saint Paul"], "_id": { - "$oid": "666cbc3240af7b375e352302" + "$oid": "66723d958f368f285d303f3f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9941,15 +9941,15 @@ "cohort": "25", "jobTitle": "Sr Frontend and Fullstack Engineer", "industry": "Entertainment", - "cities": ["Chula Vista"], + "cities": ["Aurora", "Wichita"], "_id": { - "$oid": "666cbc3240af7b375e352303" + "$oid": "66723d958f368f285d303f40" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9962,15 +9962,15 @@ "cohort": "38", "jobTitle": "Associate Software Engineer", "industry": "Entertainment", - "cities": ["Irvine", "Greensboro"], + "cities": ["Anchorage"], "_id": { - "$oid": "666cbc3240af7b375e352304" + "$oid": "66723d958f368f285d303f41" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -9983,15 +9983,15 @@ "cohort": "12", "jobTitle": "Lead Software Engineer", "industry": "Entertainment", - "cities": ["Chicago", "Oakland", "Virginia Beach", "Las Vegas"], + "cities": ["Sacramento", "Cleveland", "Wichita"], "_id": { - "$oid": "666cbc3240af7b375e352305" + "$oid": "66723d958f368f285d303f42" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10004,15 +10004,15 @@ "cohort": "24", "jobTitle": "Associate Software Engineer", "industry": "Entertainment", - "cities": ["Boston"], + "cities": ["Baltimore", "Portland"], "_id": { - "$oid": "666cbc3240af7b375e352306" + "$oid": "66723d958f368f285d303f43" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10025,15 +10025,15 @@ "cohort": "25", "jobTitle": "Senior Software Engineer", "industry": "Software / Tech", - "cities": ["Arlington", "Jacksonville", "Garland"], + "cities": ["Santa Ana", "Toledo", "Laredo"], "_id": { - "$oid": "666cbc3240af7b375e352307" + "$oid": "66723d958f368f285d303f44" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10046,15 +10046,15 @@ "cohort": "21", "jobTitle": "CEO, Prediqt", "industry": "Medical", - "cities": ["Los Angeles", "Glendale", "Atlanta", "Portland"], + "cities": ["Norfolk", "Philadelphia", "San Diego"], "_id": { - "$oid": "666cbc3240af7b375e352308" + "$oid": "66723d958f368f285d303f45" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10067,15 +10067,15 @@ "cohort": "48", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Orlando", "Washington"], + "cities": ["San Francisco"], "_id": { - "$oid": "666cbc3240af7b375e352309" + "$oid": "66723d958f368f285d303f46" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10088,15 +10088,15 @@ "cohort": "3", "jobTitle": "Senior Robotics Engineer", "industry": "Crypto Fintech", - "cities": ["Minneapolis", "Louisville", "San Diego"], + "cities": ["Milwaukee", "Virginia Beach"], "_id": { - "$oid": "666cbc3240af7b375e35230a" + "$oid": "66723d958f368f285d303f47" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10109,15 +10109,15 @@ "cohort": "38", "jobTitle": "Software Engineer(Contract)", "industry": "Products", - "cities": ["Plano", "Riverside"], + "cities": ["Chesapeake", "Gilbert"], "_id": { - "$oid": "666cbc3240af7b375e35230b" + "$oid": "66723d958f368f285d303f48" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10130,15 +10130,15 @@ "cohort": "22", "jobTitle": "Software Engineer, Backend", "industry": "", - "cities": ["Chicago", "Las Vegas", "Colorado Springs"], + "cities": ["Durham", "Lexington", "San Jose"], "_id": { - "$oid": "666cbc3240af7b375e35230c" + "$oid": "66723d958f368f285d303f49" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10151,15 +10151,15 @@ "cohort": "30", "jobTitle": "Back end engineer", "industry": "apartment hotels", - "cities": ["Albuquerque", "Henderson", "Irving", "Anaheim"], + "cities": ["Lexington", "St. Petersburg", "Mexico City"], "_id": { - "$oid": "666cbc3240af7b375e35230d" + "$oid": "66723d958f368f285d303f4a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10172,15 +10172,15 @@ "cohort": "51", "jobTitle": "Senior Fullstack Engineer", "industry": "Real Estate", - "cities": ["Seattle", "El Paso", "Lubbock"], + "cities": ["Nashville", "Lincoln", "Scottsdale"], "_id": { - "$oid": "666cbc3240af7b375e35230e" + "$oid": "66723d958f368f285d303f4b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10193,15 +10193,15 @@ "cohort": "11", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["Plano"], + "cities": ["Tulsa"], "_id": { - "$oid": "666cbc3240af7b375e35230f" + "$oid": "66723d958f368f285d303f4c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10214,15 +10214,15 @@ "cohort": "27", "jobTitle": "Senior Software Engineer", "industry": "Fintech - Real Estate", - "cities": ["Glendale", "London", "Charlotte", "Scottsdale"], + "cities": ["Memphis", "El Paso"], "_id": { - "$oid": "666cbc3240af7b375e352310" + "$oid": "66723d958f368f285d303f4d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10235,15 +10235,15 @@ "cohort": "34", "jobTitle": "Full Stack Engineer", "industry": "Retail", - "cities": ["Los Angeles", "Milwaukee", "Denver"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352311" + "$oid": "66723d958f368f285d303f4e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10256,15 +10256,15 @@ "cohort": "45", "jobTitle": "Software Engineer", "industry": "Fantasy Sports", - "cities": ["Charlotte", "Dallas", "Phoenix"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352312" + "$oid": "66723d958f368f285d303f4f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10277,15 +10277,15 @@ "cohort": "23", "jobTitle": "Software Developer II", "industry": "", - "cities": ["Jacksonville", "Mexico City", "Detroit"], + "cities": ["Louisville", "Mexico City", "Miami"], "_id": { - "$oid": "666cbc3240af7b375e352313" + "$oid": "66723d958f368f285d303f50" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10298,15 +10298,15 @@ "cohort": "23", "jobTitle": "Software Engineer II", "industry": "", - "cities": ["North Las Vegas", "Mexico City", "San Jose", "Anchorage"], + "cities": ["Irving", "Memphis"], "_id": { - "$oid": "666cbc3240af7b375e352314" + "$oid": "66723d958f368f285d303f51" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10319,15 +10319,15 @@ "cohort": "8", "jobTitle": "Software Development Engineer - Frontend", "industry": "Software / Tech", - "cities": ["Durham", "Gilbert", "Laredo", "Albuquerque"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352315" + "$oid": "66723d958f368f285d303f52" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10340,15 +10340,15 @@ "cohort": "31", "jobTitle": "Software Engineer", "industry": "Supply Chain & Logistics", - "cities": ["Oklahoma City"], + "cities": ["Irving"], "_id": { - "$oid": "666cbc3240af7b375e352316" + "$oid": "66723d958f368f285d303f53" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10361,15 +10361,15 @@ "cohort": "21", "jobTitle": "Jr. Software Engineer", "industry": "Food & Beverages", - "cities": ["Tokyo", "Chula Vista", "Winston-Salem"], + "cities": ["Berlin"], "_id": { - "$oid": "666cbc3240af7b375e352317" + "$oid": "66723d958f368f285d303f54" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10382,15 +10382,15 @@ "cohort": "37", "jobTitle": "Software Engineer, Product", "industry": "Techonology Services", - "cities": ["Santa Ana", "Los Angeles", "Honolulu", "Scottsdale"], + "cities": ["El Paso", "Aurora"], "_id": { - "$oid": "666cbc3240af7b375e352318" + "$oid": "66723d958f368f285d303f55" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10403,15 +10403,15 @@ "cohort": "24", "jobTitle": "Software Engineer", "industry": "Cloudtech", - "cities": ["Memphis", "Lexington", "Raleigh"], + "cities": ["Fort Wayne"], "_id": { - "$oid": "666cbc3240af7b375e352319" + "$oid": "66723d958f368f285d303f56" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10424,15 +10424,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Cloud Storage", - "cities": ["Boston"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35231a" + "$oid": "66723d958f368f285d303f57" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10445,15 +10445,15 @@ "cohort": "46", "jobTitle": "Software Developer", "industry": "Sustainable E-Commerce", - "cities": ["Saint Paul", "Houston", "Chula Vista", "Berlin"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35231b" + "$oid": "66723d958f368f285d303f58" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10466,15 +10466,15 @@ "cohort": "21", "jobTitle": "Software Engineer", "industry": "Adtech", - "cities": ["Columbus", "Tulsa"], + "cities": ["Colorado Springs", "Honolulu", "Plano"], "_id": { - "$oid": "666cbc3240af7b375e35231c" + "$oid": "66723d958f368f285d303f59" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10487,15 +10487,15 @@ "cohort": "4", "jobTitle": "Senior Software Engineer", "industry": "Fintech, Data Analytics", - "cities": ["Los Angeles", "Orlando", "Aurora"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35231d" + "$oid": "66723d958f368f285d303f5a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10508,15 +10508,15 @@ "cohort": "17", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Paris"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35231e" + "$oid": "66723d958f368f285d303f5b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10529,15 +10529,15 @@ "cohort": "13", "jobTitle": "Senior Fullstack Engineer I", "industry": "Fintech", - "cities": ["Sรฃo Paulo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35231f" + "$oid": "66723d958f368f285d303f5c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10550,15 +10550,15 @@ "cohort": "36", "jobTitle": "Software engineer", "industry": "Software / Tech", - "cities": ["Madison", "Sรฃo Paulo", "Chesapeake", "St. Petersburg"], + "cities": ["Chula Vista"], "_id": { - "$oid": "666cbc3240af7b375e352320" + "$oid": "66723d958f368f285d303f5d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10571,15 +10571,15 @@ "cohort": "45", "jobTitle": "Full Stack Software Engineer", "industry": "Fintech", - "cities": ["Lexington", "Jersey City"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352321" + "$oid": "66723d958f368f285d303f5e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10592,15 +10592,15 @@ "cohort": "33", "jobTitle": "Software Engineer", "industry": "ECcmmerce", - "cities": ["Toledo", "Arlington", "Irvine", "Plano"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352322" + "$oid": "66723d958f368f285d303f5f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10613,15 +10613,15 @@ "cohort": "48", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Mumbai"], + "cities": ["Anaheim", "Lubbock", "Phoenix"], "_id": { - "$oid": "666cbc3240af7b375e352323" + "$oid": "66723d958f368f285d303f60" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10634,15 +10634,15 @@ "cohort": "17", "jobTitle": "Software Engineer", "industry": "Consulting", - "cities": ["Paris", "Scottsdale", "Reno", "Seattle"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352324" + "$oid": "66723d958f368f285d303f61" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10655,15 +10655,15 @@ "cohort": "10", "jobTitle": "Software developer", "industry": "Media Consulting", - "cities": ["Cleveland", "Colorado Springs"], + "cities": ["Orlando", "Chula Vista", "Mumbai"], "_id": { - "$oid": "666cbc3240af7b375e352325" + "$oid": "66723d958f368f285d303f62" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10676,15 +10676,15 @@ "cohort": "32", "jobTitle": "Nodejs Developer", "industry": "Customer Service", - "cities": ["Anaheim", "Laredo", "Irvine"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352326" + "$oid": "66723d958f368f285d303f63" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10697,15 +10697,15 @@ "cohort": "50", "jobTitle": "NodeJS Developer", "industry": "Software / Tech", - "cities": ["Durham", "Washington", "Fresno"], + "cities": ["Plano", "Cincinnati"], "_id": { - "$oid": "666cbc3240af7b375e352327" + "$oid": "66723d958f368f285d303f64" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10718,15 +10718,15 @@ "cohort": "52", "jobTitle": "chief technology officer", "industry": "Education/Edtech", - "cities": ["Colorado Springs"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352328" + "$oid": "66723d958f368f285d303f65" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10739,15 +10739,15 @@ "cohort": "36", "jobTitle": "Associate Software Engineer", "industry": "Tech (Builds solutions for companies - Typically Web Dev)", - "cities": ["Santa Ana", "Detroit"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352329" + "$oid": "66723d958f368f285d303f66" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10760,15 +10760,15 @@ "cohort": "14", "jobTitle": "Data Engineer", "industry": "Artificial Intelligence", - "cities": ["Sรฃo Paulo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35232a" + "$oid": "66723d958f368f285d303f67" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10781,15 +10781,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "Consulting", - "cities": ["Fort Wayne"], + "cities": ["Columbus"], "_id": { - "$oid": "666cbc3240af7b375e35232b" + "$oid": "66723d958f368f285d303f68" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10802,15 +10802,15 @@ "cohort": "21", "jobTitle": "Software Engineer", "industry": "NA", - "cities": ["Colorado Springs", "Riverside"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35232c" + "$oid": "66723d958f368f285d303f69" }, "createdAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.246Z" + "$date": "2024-06-19T02:08:21.818Z" }, "__v": 0 }, @@ -10823,15 +10823,15 @@ "cohort": "17", "jobTitle": "Web / Mobile Developer", "industry": "Design", - "cities": ["Raleigh", "Las Vegas", "Tulsa"], + "cities": ["Santa Ana", "Detroit"], "_id": { - "$oid": "666cbc3240af7b375e35232d" + "$oid": "66723d958f368f285d303f6a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -10844,15 +10844,15 @@ "cohort": "5", "jobTitle": "Software Engineer", "industry": "Finance", - "cities": ["Colorado Springs", "Greensboro"], + "cities": ["Nashville", "Raleigh", "Lexington"], "_id": { - "$oid": "666cbc3240af7b375e35232e" + "$oid": "66723d958f368f285d303f6b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -10865,15 +10865,15 @@ "cohort": "28", "jobTitle": "Software Engineer I", "industry": "Computer Software", - "cities": ["Lexington", "Durham", "Cleveland"], + "cities": ["Fort Worth", "Memphis"], "_id": { - "$oid": "666cbc3240af7b375e35232f" + "$oid": "66723d958f368f285d303f6c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -10886,15 +10886,15 @@ "cohort": "45", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Anchorage", "Fort Wayne", "Aurora", "Mumbai"], + "cities": ["Jersey City", "Stockton", "London"], "_id": { - "$oid": "666cbc3240af7b375e352330" + "$oid": "66723d958f368f285d303f6d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -10907,15 +10907,15 @@ "cohort": "Beta", "jobTitle": "Frontend Engineer", "industry": "eCommerce", - "cities": ["Cincinnati"], + "cities": ["San Antonio", "Pittsburgh", "Sacramento"], "_id": { - "$oid": "666cbc3240af7b375e352331" + "$oid": "66723d958f368f285d303f6e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -10928,15 +10928,15 @@ "cohort": "1", "jobTitle": "Full-Stack Software Developer", "industry": "Real Estate", - "cities": ["Oakland"], + "cities": ["Anchorage", "Tokyo", "Saint Paul"], "_id": { - "$oid": "666cbc3240af7b375e352332" + "$oid": "66723d958f368f285d303f6f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -10949,15 +10949,15 @@ "cohort": "34", "jobTitle": "Front End Software Engineer", "industry": "Security", - "cities": ["Lubbock", "Tokyo", "Colorado Springs", "San Diego"], + "cities": ["Dallas"], "_id": { - "$oid": "666cbc3240af7b375e352333" + "$oid": "66723d958f368f285d303f70" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -10970,15 +10970,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "Workplace tech", - "cities": ["Milwaukee", "Jersey City", "Jacksonville", "Toledo"], + "cities": ["Los Angeles", "Fort Wayne"], "_id": { - "$oid": "666cbc3240af7b375e352334" + "$oid": "66723d958f368f285d303f71" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -10991,15 +10991,15 @@ "cohort": "29", "jobTitle": "Backend/API Engineer", "industry": "Fintech", - "cities": ["Kansas City", "Tampa"], + "cities": ["Beijing", "Orlando"], "_id": { - "$oid": "666cbc3240af7b375e352335" + "$oid": "66723d958f368f285d303f72" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11012,15 +11012,15 @@ "cohort": "8", "jobTitle": "Backend Engineer", "industry": "Other", - "cities": ["Chicago", "Glendale"], + "cities": ["Lexington", "Chandler"], "_id": { - "$oid": "666cbc3240af7b375e352336" + "$oid": "66723d958f368f285d303f73" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11033,15 +11033,15 @@ "cohort": "29", "jobTitle": "Game Systems Programmer", "industry": "Video Games", - "cities": ["Norfolk", "Minneapolis"], + "cities": ["Lexington"], "_id": { - "$oid": "666cbc3240af7b375e352337" + "$oid": "66723d958f368f285d303f74" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11054,15 +11054,15 @@ "cohort": "39", "jobTitle": "Software Developer", "industry": "Gaming", - "cities": ["Aurora"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352338" + "$oid": "66723d958f368f285d303f75" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11075,15 +11075,15 @@ "cohort": "43", "jobTitle": "Senior Technical Consultant", "industry": "Software Consulting Firm", - "cities": ["Lubbock"], + "cities": ["Indianapolis"], "_id": { - "$oid": "666cbc3240af7b375e352339" + "$oid": "66723d958f368f285d303f76" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11096,15 +11096,15 @@ "cohort": "7", "jobTitle": "Firmware Developer", "industry": "Other", - "cities": ["San Francisco", "Buffalo", "Baltimore", "Fresno"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35233a" + "$oid": "66723d958f368f285d303f77" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11117,15 +11117,15 @@ "cohort": "2", "jobTitle": "Senior Software Engineer", "industry": "", - "cities": ["Denver", "Wichita", "Virginia Beach"], + "cities": ["Las Vegas"], "_id": { - "$oid": "666cbc3240af7b375e35233b" + "$oid": "66723d958f368f285d303f78" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11138,15 +11138,15 @@ "cohort": "29", "jobTitle": "Software Development Engineer", "industry": "GIS", - "cities": ["Irving", "North Las Vegas"], + "cities": ["San Jose", "Detroit", "Seattle"], "_id": { - "$oid": "666cbc3240af7b375e35233c" + "$oid": "66723d958f368f285d303f79" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11159,15 +11159,15 @@ "cohort": "33", "jobTitle": "Software Development Engineer", "industry": "Geographic Information System", - "cities": ["Chandler", "Anaheim", "Los Angeles"], + "cities": ["San Francisco", "Cincinnati"], "_id": { - "$oid": "666cbc3240af7b375e35233d" + "$oid": "66723d958f368f285d303f7a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11180,15 +11180,15 @@ "cohort": "41", "jobTitle": "Software Engineering Intern (end date 10/29/21)", "industry": "Geospatial Engineering (GIS)", - "cities": ["Sacramento", "Scottsdale"], + "cities": ["Miami"], "_id": { - "$oid": "666cbc3240af7b375e35233e" + "$oid": "66723d958f368f285d303f7b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11201,15 +11201,15 @@ "cohort": "1", "jobTitle": "Frontend Engineer", "industry": "Fintech", - "cities": ["Charlotte"], + "cities": ["Indianapolis", "Berlin"], "_id": { - "$oid": "666cbc3240af7b375e35233f" + "$oid": "66723d958f368f285d303f7c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11222,15 +11222,15 @@ "cohort": "35", "jobTitle": "Software Engineer, Test", "industry": "Insurance", - "cities": ["St. Louis", "Kansas City", "Baltimore"], + "cities": ["Arlington", "Minneapolis", "Glendale"], "_id": { - "$oid": "666cbc3240af7b375e352340" + "$oid": "66723d958f368f285d303f7d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11243,15 +11243,15 @@ "cohort": "31", "jobTitle": "software engineer", "industry": "Retail", - "cities": ["Norfolk", "Lubbock", "Buffalo"], + "cities": ["Sรฃo Paulo"], "_id": { - "$oid": "666cbc3240af7b375e352341" + "$oid": "66723d958f368f285d303f7e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11264,15 +11264,15 @@ "cohort": "23", "jobTitle": "Software Engineer I", "industry": "Fintech", - "cities": ["Fresno", "Tokyo"], + "cities": ["Newark", "Madison"], "_id": { - "$oid": "666cbc3240af7b375e352342" + "$oid": "66723d958f368f285d303f7f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11285,15 +11285,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Phoenix"], + "cities": ["Anaheim", "Bakersfield", "Toronto"], "_id": { - "$oid": "666cbc3240af7b375e352343" + "$oid": "66723d958f368f285d303f80" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11306,15 +11306,15 @@ "cohort": "2", "jobTitle": "Software Engineer II", "industry": "Entertainment", - "cities": ["Newark", "Los Angeles", "Chandler", "Lexington"], + "cities": ["Arlington"], "_id": { - "$oid": "666cbc3240af7b375e352344" + "$oid": "66723d958f368f285d303f81" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11327,15 +11327,15 @@ "cohort": "23", "jobTitle": "Founder", "industry": "", - "cities": ["Tulsa", "Bakersfield"], + "cities": ["San Jose"], "_id": { - "$oid": "666cbc3240af7b375e352345" + "$oid": "66723d958f368f285d303f82" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11348,15 +11348,15 @@ "cohort": "20", "jobTitle": "Full-Stack Engineer (Sr)", "industry": "UX Design", - "cities": ["Wichita", "Houston", "Detroit"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352346" + "$oid": "66723d958f368f285d303f83" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11369,15 +11369,15 @@ "cohort": "33", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Sacramento", "Seattle", "Riverside"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352347" + "$oid": "66723d958f368f285d303f84" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11390,15 +11390,15 @@ "cohort": "30", "jobTitle": "Frontend Engineer", "industry": "Ed Tech", - "cities": ["Tokyo", "Greensboro"], + "cities": ["Fort Worth"], "_id": { - "$oid": "666cbc3240af7b375e352348" + "$oid": "66723d958f368f285d303f85" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11411,15 +11411,15 @@ "cohort": "53", "jobTitle": "Software Engineer - UI", "industry": "Security", - "cities": ["Beijing", "St. Petersburg", "Milwaukee"], + "cities": ["Plano", "Madison"], "_id": { - "$oid": "666cbc3240af7b375e352349" + "$oid": "66723d958f368f285d303f86" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11432,15 +11432,15 @@ "cohort": "Beta", "jobTitle": "Sr. Software Engineer", "industry": "blockchain/cryptocurrency", - "cities": ["Lincoln", "Columbus", "Tucson"], + "cities": ["London"], "_id": { - "$oid": "666cbc3240af7b375e35234a" + "$oid": "66723d958f368f285d303f87" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11453,15 +11453,15 @@ "cohort": "27", "jobTitle": "Software Development Engineer II", "industry": "Travel", - "cities": ["Arlington", "Irving"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35234b" + "$oid": "66723d958f368f285d303f88" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11474,15 +11474,15 @@ "cohort": "14", "jobTitle": "Backend Software Engineer", "industry": "Insurance", - "cities": ["Detroit", "Buffalo", "St. Petersburg"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35234c" + "$oid": "66723d958f368f285d303f89" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11495,15 +11495,15 @@ "cohort": "56", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Oakland", "Dallas", "Mumbai", "Sacramento"], + "cities": ["Anchorage", "Oklahoma City", "Bakersfield"], "_id": { - "$oid": "666cbc3240af7b375e35234d" + "$oid": "66723d958f368f285d303f8a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11516,15 +11516,15 @@ "cohort": "14", "jobTitle": "Rotational Engineer", "industry": "Tech", - "cities": ["New Orleans"], + "cities": ["Phoenix"], "_id": { - "$oid": "666cbc3240af7b375e35234e" + "$oid": "66723d958f368f285d303f8b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11537,15 +11537,15 @@ "cohort": "42", "jobTitle": "Full-Stack Engineer", "industry": "Social Media/Networking", - "cities": ["London", "Raleigh", "St. Louis"], + "cities": ["Fresno", "Tokyo"], "_id": { - "$oid": "666cbc3240af7b375e35234f" + "$oid": "66723d958f368f285d303f8c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11558,15 +11558,15 @@ "cohort": "42", "jobTitle": "Software Engineer", "industry": "Social Media", - "cities": ["Austin", "Phoenix", "Pittsburgh", "Raleigh"], + "cities": ["Jacksonville", "Tampa"], "_id": { - "$oid": "666cbc3240af7b375e352350" + "$oid": "66723d958f368f285d303f8d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11579,15 +11579,15 @@ "cohort": "14", "jobTitle": "Fullstack Developer - Contract", "industry": "Internet", - "cities": ["Indianapolis", "Mexico City"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352351" + "$oid": "66723d958f368f285d303f8e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11600,15 +11600,15 @@ "cohort": "44", "jobTitle": "Full Stack Software Engineer", "industry": "Social Media", - "cities": ["Lexington", "El Paso"], + "cities": ["Durham", "San Antonio"], "_id": { - "$oid": "666cbc3240af7b375e352352" + "$oid": "66723d958f368f285d303f8f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11621,15 +11621,15 @@ "cohort": "44", "jobTitle": "Full Stack Software Engineer", "industry": "Tech", - "cities": ["Baltimore"], + "cities": ["St. Petersburg", "Nashville", "Virginia Beach"], "_id": { - "$oid": "666cbc3240af7b375e352353" + "$oid": "66723d958f368f285d303f90" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11642,15 +11642,15 @@ "cohort": "21", "jobTitle": "Software Engineer", "industry": "Social Media", - "cities": ["Nashville"], + "cities": ["Indianapolis", "Albuquerque", "Seattle"], "_id": { - "$oid": "666cbc3240af7b375e352354" + "$oid": "66723d958f368f285d303f91" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11663,15 +11663,15 @@ "cohort": "2", "jobTitle": "Full Stack Software Engineer", "industry": "Social Media", - "cities": ["Laredo", "San Jose", "St. Louis", "Scottsdale"], + "cities": ["Chicago", "Austin", "Indianapolis"], "_id": { - "$oid": "666cbc3240af7b375e352355" + "$oid": "66723d958f368f285d303f92" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11684,15 +11684,15 @@ "cohort": "42", "jobTitle": "Full-Stack Engineer", "industry": "Social Media", - "cities": ["Mesa", "Charlotte"], + "cities": ["Laredo", "Chula Vista", "Toronto"], "_id": { - "$oid": "666cbc3240af7b375e352356" + "$oid": "66723d958f368f285d303f93" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11705,15 +11705,15 @@ "cohort": "42", "jobTitle": "Software Engineer", "industry": "Social Media", - "cities": ["Laredo", "Atlanta"], + "cities": ["Mexico City", "Scottsdale", "New Orleans"], "_id": { - "$oid": "666cbc3240af7b375e352357" + "$oid": "66723d958f368f285d303f94" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11726,15 +11726,15 @@ "cohort": "45", "jobTitle": "Full Stack Engineer", "industry": "Social media", - "cities": ["Minneapolis", "Memphis", "Glendale"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352358" + "$oid": "66723d958f368f285d303f95" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11747,15 +11747,15 @@ "cohort": "32", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["North Las Vegas"], + "cities": ["Orlando"], "_id": { - "$oid": "666cbc3240af7b375e352359" + "$oid": "66723d958f368f285d303f96" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11768,15 +11768,15 @@ "cohort": "32", "jobTitle": "Software Engineer II", "industry": "Entertainment", - "cities": ["Chesapeake"], + "cities": ["Fresno", "Irvine"], "_id": { - "$oid": "666cbc3240af7b375e35235a" + "$oid": "66723d958f368f285d303f97" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11789,15 +11789,15 @@ "cohort": "24", "jobTitle": "Software Engineer I", "industry": "", - "cities": ["Lubbock", "Long Beach"], + "cities": ["Albuquerque"], "_id": { - "$oid": "666cbc3240af7b375e35235b" + "$oid": "66723d958f368f285d303f98" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11810,15 +11810,15 @@ "cohort": "27", "jobTitle": "Front end software engineer", "industry": "Entertainment?", - "cities": ["Paris", "Austin"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35235c" + "$oid": "66723d958f368f285d303f99" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11831,15 +11831,15 @@ "cohort": "7", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Albuquerque"], + "cities": ["Dallas"], "_id": { - "$oid": "666cbc3240af7b375e35235d" + "$oid": "66723d958f368f285d303f9a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11852,15 +11852,15 @@ "cohort": "38", "jobTitle": "Senior Software Engineer", "industry": "Entertainment", - "cities": ["Sacramento", "Seattle"], + "cities": ["Philadelphia"], "_id": { - "$oid": "666cbc3240af7b375e35235e" + "$oid": "66723d958f368f285d303f9b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11873,15 +11873,15 @@ "cohort": "26", "jobTitle": "Software Engineer", "industry": "Entertainment", - "cities": ["Milwaukee", "Madison", "Memphis"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35235f" + "$oid": "66723d958f368f285d303f9c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11894,15 +11894,15 @@ "cohort": "11", "jobTitle": "Cloud Engineer", "industry": "Cloud Services", - "cities": ["Newark", "Seattle"], + "cities": ["Chandler", "Plano", "Lincoln"], "_id": { - "$oid": "666cbc3240af7b375e352360" + "$oid": "66723d958f368f285d303f9d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11915,15 +11915,15 @@ "cohort": "4", "jobTitle": "Founding Full-Stack Software Engineer", "industry": "Entertainment", - "cities": ["Mumbai", "Mexico City"], + "cities": ["Sรฃo Paulo"], "_id": { - "$oid": "666cbc3240af7b375e352361" + "$oid": "66723d958f368f285d303f9e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11936,15 +11936,15 @@ "cohort": "36", "jobTitle": "Full Stack Developer", "industry": "Restaurant, Food, and Beverage", - "cities": ["St. Louis"], + "cities": ["Oakland"], "_id": { - "$oid": "666cbc3240af7b375e352362" + "$oid": "66723d958f368f285d303f9f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11957,15 +11957,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "E-commerce", - "cities": ["Oklahoma City", "Tucson", "Aurora", "Milwaukee"], + "cities": ["Anchorage"], "_id": { - "$oid": "666cbc3240af7b375e352363" + "$oid": "66723d958f368f285d303fa0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11978,15 +11978,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Fashion", - "cities": ["Anchorage", "Paris", "Milwaukee", "Lexington"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352364" + "$oid": "66723d958f368f285d303fa1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -11999,15 +11999,15 @@ "cohort": "14", "jobTitle": "Software Development Engineer", "industry": "Software / Tech", - "cities": ["Pittsburgh"], + "cities": ["Chandler", "Santa Ana"], "_id": { - "$oid": "666cbc3240af7b375e352365" + "$oid": "66723d958f368f285d303fa2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12020,15 +12020,15 @@ "cohort": "23", "jobTitle": "Software Engineer II", "industry": "Government Consulting", - "cities": ["Milwaukee", "Detroit", "Sรฃo Paulo"], + "cities": ["Oakland", "Anchorage", "Oklahoma City"], "_id": { - "$oid": "666cbc3240af7b375e352366" + "$oid": "66723d958f368f285d303fa3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12041,15 +12041,15 @@ "cohort": "11", "jobTitle": "Software Engineer", "industry": "Furniture Subscription", - "cities": ["Stockton", "Portland"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352367" + "$oid": "66723d958f368f285d303fa4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12062,15 +12062,15 @@ "cohort": "34", "jobTitle": "Jr Software Engineer, Cloud", "industry": "Cloud Services", - "cities": ["San Jose", "Santa Ana"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352368" + "$oid": "66723d958f368f285d303fa5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12083,15 +12083,15 @@ "cohort": "26", "jobTitle": "Software Engineer 4", "industry": "Government/Banking", - "cities": ["Irvine"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352369" + "$oid": "66723d958f368f285d303fa6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12104,15 +12104,15 @@ "cohort": "19", "jobTitle": "Frontend Developer", "industry": "Finance", - "cities": ["San Francisco"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35236a" + "$oid": "66723d958f368f285d303fa7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12125,15 +12125,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Virginia Beach", "St. Louis"], + "cities": ["Los Angeles"], "_id": { - "$oid": "666cbc3240af7b375e35236b" + "$oid": "66723d958f368f285d303fa8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12146,15 +12146,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "E-commerce", - "cities": ["Paris"], + "cities": ["San Jose", "Orlando"], "_id": { - "$oid": "666cbc3240af7b375e35236c" + "$oid": "66723d958f368f285d303fa9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12167,15 +12167,15 @@ "cohort": "35", "jobTitle": "Software Engineer", "industry": "Manufacturing", - "cities": ["Wichita", "Toronto"], + "cities": ["Tucson", "Portland"], "_id": { - "$oid": "666cbc3240af7b375e35236d" + "$oid": "66723d958f368f285d303faa" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12188,15 +12188,15 @@ "cohort": "10", "jobTitle": "Full Stack Engineer", "industry": "Fintech", - "cities": ["Orlando", "Irving"], + "cities": ["Mesa", "Durham"], "_id": { - "$oid": "666cbc3240af7b375e35236e" + "$oid": "66723d958f368f285d303fab" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12209,15 +12209,15 @@ "cohort": "10", "jobTitle": "Senior Mobile Developer", "industry": "Fintech", - "cities": ["Plano", "Riverside", "Las Vegas"], + "cities": ["Lubbock"], "_id": { - "$oid": "666cbc3240af7b375e35236f" + "$oid": "66723d958f368f285d303fac" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12230,15 +12230,15 @@ "cohort": "40", "jobTitle": "Product Engineer", "industry": "SaaS", - "cities": ["Mexico City", "Tulsa", "Plano", "Wichita"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352370" + "$oid": "66723d958f368f285d303fad" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12251,15 +12251,15 @@ "cohort": "21", "jobTitle": "Mid software engineer", "industry": "genealogy", - "cities": ["Berlin", "Saint Paul", "Norfolk", "Sรฃo Paulo"], + "cities": ["Berlin", "Anchorage"], "_id": { - "$oid": "666cbc3240af7b375e352371" + "$oid": "66723d958f368f285d303fae" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12272,15 +12272,15 @@ "cohort": "Beta", "jobTitle": "Senior Software Architect", "industry": "Fintech", - "cities": ["Oklahoma City"], + "cities": ["Long Beach", "Santa Ana"], "_id": { - "$oid": "666cbc3240af7b375e352372" + "$oid": "66723d958f368f285d303faf" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12293,15 +12293,15 @@ "cohort": "49", "jobTitle": "Data engineer", "industry": "Fintech", - "cities": ["Plano", "Omaha"], + "cities": ["Chula Vista", "Aurora", "Jacksonville"], "_id": { - "$oid": "666cbc3240af7b375e352373" + "$oid": "66723d958f368f285d303fb0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12314,15 +12314,15 @@ "cohort": "14", "jobTitle": "Front End Software Engineer", "industry": "Insurance", - "cities": ["Irving"], + "cities": ["Toledo", "Winston-Salem", "Honolulu"], "_id": { - "$oid": "666cbc3240af7b375e352374" + "$oid": "66723d958f368f285d303fb1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12335,15 +12335,15 @@ "cohort": "37", "jobTitle": "Frontend Software Engineer", "industry": "Fintech", - "cities": ["Greensboro", "Irving"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352375" + "$oid": "66723d958f368f285d303fb2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12356,15 +12356,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Banking", - "cities": ["Wichita", "Gilbert", "Winston-Salem"], + "cities": ["Toledo"], "_id": { - "$oid": "666cbc3240af7b375e352376" + "$oid": "66723d958f368f285d303fb3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12377,15 +12377,15 @@ "cohort": "41", "jobTitle": "Frontend Engineer", "industry": "Manufacturing", - "cities": ["Riverside", "Long Beach", "St. Louis"], + "cities": ["Beijing", "Atlanta", "Aurora"], "_id": { - "$oid": "666cbc3240af7b375e352377" + "$oid": "66723d958f368f285d303fb4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12398,15 +12398,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Baltimore"], + "cities": ["Las Vegas"], "_id": { - "$oid": "666cbc3240af7b375e352378" + "$oid": "66723d958f368f285d303fb5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12419,15 +12419,15 @@ "cohort": "2", "jobTitle": "Software Development Engineer IV", "industry": "Fintech", - "cities": ["Minneapolis", "Chandler", "Mesa", "Fort Worth"], + "cities": ["Irvine", "San Antonio", "St. Petersburg"], "_id": { - "$oid": "666cbc3240af7b375e352379" + "$oid": "66723d958f368f285d303fb6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12440,15 +12440,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "Entertainment", - "cities": ["Sรฃo Paulo"], + "cities": ["Fort Worth", "Nashville"], "_id": { - "$oid": "666cbc3240af7b375e35237a" + "$oid": "66723d958f368f285d303fb7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12461,15 +12461,15 @@ "cohort": "21", "jobTitle": "Lead Software Engineer", "industry": "Meteorology/Environmental Science", - "cities": ["Lubbock", "Lexington", "Cleveland"], + "cities": ["Lubbock"], "_id": { - "$oid": "666cbc3240af7b375e35237b" + "$oid": "66723d958f368f285d303fb8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12482,15 +12482,15 @@ "cohort": "1", "jobTitle": "Security", "industry": "Software / Tech", - "cities": ["San Francisco", "Stockton", "Phoenix", "Beijing"], + "cities": ["Kansas City"], "_id": { - "$oid": "666cbc3240af7b375e35237c" + "$oid": "66723d958f368f285d303fb9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12503,15 +12503,15 @@ "cohort": "3", "jobTitle": "Full Stack Software Developer", "industry": "Consulting, the project I am working on is in the Education industry", - "cities": ["Riverside", "Raleigh"], + "cities": ["Garland", "Madison"], "_id": { - "$oid": "666cbc3240af7b375e35237d" + "$oid": "66723d958f368f285d303fba" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12524,15 +12524,15 @@ "cohort": "24", "jobTitle": "Senior Software Engineer", "industry": "Aviation", - "cities": ["Greensboro"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35237e" + "$oid": "66723d958f368f285d303fbb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12545,15 +12545,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Public Safety", - "cities": ["Riverside", "Tulsa"], + "cities": ["Tulsa"], "_id": { - "$oid": "666cbc3240af7b375e35237f" + "$oid": "66723d958f368f285d303fbc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12566,15 +12566,15 @@ "cohort": "40", "jobTitle": "Software Engineer II", "industry": "Other", - "cities": ["Indianapolis", "Chandler", "Scottsdale", "Norfolk"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352380" + "$oid": "66723d958f368f285d303fbd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12587,15 +12587,15 @@ "cohort": "32", "jobTitle": "Software Engineer I", "industry": "Fintech", - "cities": ["Jersey City", "Detroit", "Baltimore", "Irving"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352381" + "$oid": "66723d958f368f285d303fbe" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12608,15 +12608,15 @@ "cohort": "16", "jobTitle": "Software Engineer I", "industry": "Other", - "cities": ["Seattle", "Sydney", "Mumbai", "Irving"], + "cities": ["Chandler", "Milwaukee", "Nashville"], "_id": { - "$oid": "666cbc3240af7b375e352382" + "$oid": "66723d958f368f285d303fbf" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12629,15 +12629,15 @@ "cohort": "32", "jobTitle": "Senior Full Stack Software Engineer", "industry": "Healthcare", - "cities": ["Oakland"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352383" + "$oid": "66723d958f368f285d303fc0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12650,15 +12650,15 @@ "cohort": "49", "jobTitle": "Software Engineer", "industry": "Retail", - "cities": ["Tucson", "Memphis", "Winston-Salem"], + "cities": ["Chula Vista"], "_id": { - "$oid": "666cbc3240af7b375e352384" + "$oid": "66723d958f368f285d303fc1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.247Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12671,15 +12671,15 @@ "cohort": "12", "jobTitle": "Frontend software engineer", "industry": "Food tech", - "cities": ["Dallas", "Oklahoma City", "Tokyo", "Jacksonville"], + "cities": ["Oklahoma City", "Fresno", "Toledo"], "_id": { - "$oid": "666cbc3240af7b375e352385" + "$oid": "66723d958f368f285d303fc2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12692,15 +12692,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "Human Resources", - "cities": ["Stockton"], + "cities": ["Durham"], "_id": { - "$oid": "666cbc3240af7b375e352386" + "$oid": "66723d958f368f285d303fc3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12713,15 +12713,15 @@ "cohort": "39", "jobTitle": "Software Engineer", "industry": "Education", - "cities": ["Houston", "Chicago", "Austin"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352387" + "$oid": "66723d958f368f285d303fc4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12734,15 +12734,15 @@ "cohort": "12", "jobTitle": "Software Engineer III", "industry": "Consultancy", - "cities": ["San Diego", "Scottsdale", "Omaha", "Virginia Beach"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352388" + "$oid": "66723d958f368f285d303fc5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12755,15 +12755,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "Security", - "cities": ["Dallas", "Aurora", "Buffalo"], + "cities": ["Miami"], "_id": { - "$oid": "666cbc3240af7b375e352389" + "$oid": "66723d958f368f285d303fc6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12776,15 +12776,15 @@ "cohort": "5", "jobTitle": "Associate Software Engineer", "industry": "Fintech", - "cities": ["San Francisco", "Garland"], + "cities": ["Denver"], "_id": { - "$oid": "666cbc3240af7b375e35238a" + "$oid": "66723d958f368f285d303fc7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12797,15 +12797,15 @@ "cohort": "51", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Jersey City", "Toronto"], + "cities": ["Memphis", "Toledo", "Sรฃo Paulo"], "_id": { - "$oid": "666cbc3240af7b375e35238b" + "$oid": "66723d958f368f285d303fc8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12818,15 +12818,15 @@ "cohort": "52", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Nashville", "Glendale", "Berlin"], + "cities": ["Albuquerque", "Paris"], "_id": { - "$oid": "666cbc3240af7b375e35238c" + "$oid": "66723d958f368f285d303fc9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12839,15 +12839,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Kansas City"], + "cities": ["Orlando", "Scottsdale"], "_id": { - "$oid": "666cbc3240af7b375e35238d" + "$oid": "66723d958f368f285d303fca" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12860,15 +12860,15 @@ "cohort": "19", "jobTitle": "Senior Full Stack Software Engineer (Frontend)", "industry": "", - "cities": ["Albuquerque", "Tokyo", "Aurora"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35238e" + "$oid": "66723d958f368f285d303fcb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12881,15 +12881,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "IT", - "cities": ["San Francisco", "Plano", "Reno", "Winston-Salem"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35238f" + "$oid": "66723d958f368f285d303fcc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.819Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.819Z" }, "__v": 0 }, @@ -12902,15 +12902,15 @@ "cohort": "45", "jobTitle": "Backend Developer", "industry": "Telecoms", - "cities": ["New Orleans", "Paris", "Seattle"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352390" + "$oid": "66723d958f368f285d303fcd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -12923,15 +12923,15 @@ "cohort": "7", "jobTitle": "Senior Developer", "industry": "Consumer Goods: Retail (general)", - "cities": ["Mumbai", "San Francisco", "Tulsa", "Anchorage"], + "cities": ["Jersey City", "Long Beach", "Bakersfield"], "_id": { - "$oid": "666cbc3240af7b375e352391" + "$oid": "66723d958f368f285d303fce" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -12944,15 +12944,15 @@ "cohort": "2", "jobTitle": "Software Engineer", "industry": "Manufacturing", - "cities": ["El Paso", "Washington", "Houston"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352392" + "$oid": "66723d958f368f285d303fcf" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -12965,15 +12965,15 @@ "cohort": "20", "jobTitle": "Software Developer", "industry": "Manufacturing", - "cities": ["Riverside"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352393" + "$oid": "66723d958f368f285d303fd0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -12986,15 +12986,15 @@ "cohort": "50", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Henderson", "Las Vegas", "San Francisco", "Norfolk"], + "cities": ["Mesa", "Berlin", "Cincinnati"], "_id": { - "$oid": "666cbc3240af7b375e352394" + "$oid": "66723d958f368f285d303fd1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13007,15 +13007,15 @@ "cohort": "32", "jobTitle": "Backend Software Engineer", "industry": "Entertainment", - "cities": ["New Orleans", "Atlanta"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352395" + "$oid": "66723d958f368f285d303fd2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13028,15 +13028,15 @@ "cohort": "54", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Winston-Salem", "Chula Vista"], + "cities": ["Lexington", "Houston", "Colorado Springs"], "_id": { - "$oid": "666cbc3240af7b375e352396" + "$oid": "66723d958f368f285d303fd3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13049,15 +13049,15 @@ "cohort": "53", "jobTitle": "Software Developer", "industry": "Healthcare", - "cities": ["Los Angeles", "Aurora", "Stockton"], + "cities": ["San Antonio", "Chicago", "Cleveland"], "_id": { - "$oid": "666cbc3240af7b375e352397" + "$oid": "66723d958f368f285d303fd4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13070,15 +13070,15 @@ "cohort": "15", "jobTitle": "Software Engineer", "industry": "IT", - "cities": ["Fresno", "Mexico City"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352398" + "$oid": "66723d958f368f285d303fd5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13091,15 +13091,15 @@ "cohort": "6", "jobTitle": "Software Engineer", "industry": "Research", - "cities": ["Glendale", "Anchorage", "Jersey City"], + "cities": ["Tampa", "Irvine", "Garland"], "_id": { - "$oid": "666cbc3240af7b375e352399" + "$oid": "66723d958f368f285d303fd6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13112,15 +13112,15 @@ "cohort": "42", "jobTitle": "Software Developer", "industry": "Automation", - "cities": ["Columbus", "Wichita", "Irving"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35239a" + "$oid": "66723d958f368f285d303fd7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13133,15 +13133,15 @@ "cohort": "22", "jobTitle": "Frontend Engineer", "industry": "Media", - "cities": ["Memphis"], + "cities": ["Toledo"], "_id": { - "$oid": "666cbc3240af7b375e35239b" + "$oid": "66723d958f368f285d303fd8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13154,15 +13154,15 @@ "cohort": "6", "jobTitle": "Frontend, Software Engineer", "industry": "Tech", - "cities": ["Austin", "Irving", "Lincoln"], + "cities": ["New York"], "_id": { - "$oid": "666cbc3240af7b375e35239c" + "$oid": "66723d958f368f285d303fd9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13175,15 +13175,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Sacramento", "Pittsburgh"], + "cities": ["Fort Worth", "Beijing"], "_id": { - "$oid": "666cbc3240af7b375e35239d" + "$oid": "66723d958f368f285d303fda" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13196,15 +13196,15 @@ "cohort": "44", "jobTitle": "React/JavaScript Developer", "industry": "Clothing", - "cities": ["Lexington"], + "cities": ["Anchorage", "Laredo", "Mesa"], "_id": { - "$oid": "666cbc3240af7b375e35239e" + "$oid": "66723d958f368f285d303fdb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13217,15 +13217,15 @@ "cohort": "3", "jobTitle": "Full Stack Engineer", "industry": "Retail", - "cities": ["Sacramento"], + "cities": ["Stockton", "Virginia Beach"], "_id": { - "$oid": "666cbc3240af7b375e35239f" + "$oid": "66723d958f368f285d303fdc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13238,15 +13238,15 @@ "cohort": "41", "jobTitle": "UI Developer", "industry": "Clothing/E-Commerce", - "cities": ["Wichita", "New York"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523a0" + "$oid": "66723d958f368f285d303fdd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13259,15 +13259,15 @@ "cohort": "44", "jobTitle": "Software Engineer", "industry": "eCommerce", - "cities": ["Seattle"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523a1" + "$oid": "66723d958f368f285d303fde" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13280,15 +13280,15 @@ "cohort": "7", "jobTitle": "Front-End Lead", "industry": "", - "cities": ["Albuquerque", "Greensboro", "Sydney", "Sacramento"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523a2" + "$oid": "66723d958f368f285d303fdf" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13301,15 +13301,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Greensboro", "North Las Vegas"], + "cities": ["Bakersfield"], "_id": { - "$oid": "666cbc3240af7b375e3523a3" + "$oid": "66723d958f368f285d303fe0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13322,15 +13322,15 @@ "cohort": "24", "jobTitle": "Fullstack Developer", "industry": "Aerospace", - "cities": ["Austin", "San Diego"], + "cities": ["New York", "Philadelphia"], "_id": { - "$oid": "666cbc3240af7b375e3523a4" + "$oid": "66723d958f368f285d303fe1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13343,15 +13343,15 @@ "cohort": "17", "jobTitle": "Senior Software Engineer I", "industry": "Healthtech/Healthcare", - "cities": ["Toronto", "Sydney", "Los Angeles"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523a5" + "$oid": "66723d958f368f285d303fe2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13364,15 +13364,15 @@ "cohort": "20", "jobTitle": "Frontend Engineer", "industry": "Biotech", - "cities": ["Kansas City", "Las Vegas", "Charlotte"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523a6" + "$oid": "66723d958f368f285d303fe3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13385,15 +13385,15 @@ "cohort": "8", "jobTitle": "Jr. Software Engineer", "industry": "Internet", - "cities": ["Newark", "San Francisco", "Fort Worth"], + "cities": ["Plano", "Tokyo", "Baltimore"], "_id": { - "$oid": "666cbc3240af7b375e3523a7" + "$oid": "66723d958f368f285d303fe4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13406,15 +13406,15 @@ "cohort": "5", "jobTitle": "Software Engineer", "industry": "Blockchain/Web3", - "cities": ["Sydney", "Cincinnati", "Jersey City", "Henderson"], + "cities": ["Beijing", "Long Beach", "Riverside"], "_id": { - "$oid": "666cbc3240af7b375e3523a8" + "$oid": "66723d958f368f285d303fe5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13427,15 +13427,15 @@ "cohort": "5", "jobTitle": "Software Engineer (Node)", "industry": "Blockchain, Media and Entertainment", - "cities": ["Stockton", "Mexico City", "Columbus", "Virginia Beach"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523a9" + "$oid": "66723d958f368f285d303fe6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13448,15 +13448,15 @@ "cohort": "22", "jobTitle": "Software Engineer II", "industry": "Tech", - "cities": ["Orlando", "San Antonio", "Chesapeake"], + "cities": ["Norfolk", "Long Beach", "San Francisco"], "_id": { - "$oid": "666cbc3240af7b375e3523aa" + "$oid": "66723d958f368f285d303fe7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13469,15 +13469,15 @@ "cohort": "46", "jobTitle": "Full Stack Engineer", "industry": "Information Technology", - "cities": ["Indianapolis"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523ab" + "$oid": "66723d958f368f285d303fe8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13490,15 +13490,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Louisville"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523ac" + "$oid": "66723d958f368f285d303fe9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13511,15 +13511,15 @@ "cohort": "35", "jobTitle": "Software Engineer II", "industry": "E-commerce", - "cities": ["Seattle", "Riverside", "Virginia Beach"], + "cities": ["Arlington", "Seattle", "Glendale"], "_id": { - "$oid": "666cbc3240af7b375e3523ad" + "$oid": "66723d958f368f285d303fea" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13532,15 +13532,15 @@ "cohort": "4", "jobTitle": "Software Developer II", "industry": "Logistics Technology", - "cities": ["Oakland", "Saint Paul", "Milwaukee", "Cincinnati"], + "cities": ["Durham"], "_id": { - "$oid": "666cbc3240af7b375e3523ae" + "$oid": "66723d958f368f285d303feb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13553,15 +13553,15 @@ "cohort": "19", "jobTitle": "Software Engineer", "industry": "Internet", - "cities": ["Washington", "Omaha"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523af" + "$oid": "66723d958f368f285d303fec" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13574,15 +13574,15 @@ "cohort": "46", "jobTitle": "Senior Software Development Engineer", "industry": "Software / Tech", - "cities": ["Chula Vista", "Baltimore", "San Jose", "Phoenix"], + "cities": ["Memphis"], "_id": { - "$oid": "666cbc3240af7b375e3523b0" + "$oid": "66723d958f368f285d303fed" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13595,15 +13595,15 @@ "cohort": "21", "jobTitle": "Software Engineer", "industry": "Crowdfunding/fundraising", - "cities": ["Washington", "Phoenix"], + "cities": ["Plano", "Cleveland"], "_id": { - "$oid": "666cbc3240af7b375e3523b1" + "$oid": "66723d958f368f285d303fee" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13616,15 +13616,15 @@ "cohort": "11", "jobTitle": "Senior Full Stack Developer", "industry": "Advertising", - "cities": ["Atlanta"], + "cities": ["Tokyo", "Oklahoma City", "San Francisco"], "_id": { - "$oid": "666cbc3240af7b375e3523b2" + "$oid": "66723d958f368f285d303fef" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13637,15 +13637,15 @@ "cohort": "12", "jobTitle": "Associate Software Engineer", "industry": "Finance / Banking", - "cities": ["Toledo", "Louisville", "Detroit", "Honolulu"], + "cities": ["Chesapeake", "Columbus"], "_id": { - "$oid": "666cbc3240af7b375e3523b3" + "$oid": "66723d958f368f285d303ff0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13658,15 +13658,15 @@ "cohort": "5", "jobTitle": "Analyst", "industry": "Fintech", - "cities": ["Mexico City"], + "cities": ["Lexington", "Irvine"], "_id": { - "$oid": "666cbc3240af7b375e3523b4" + "$oid": "66723d958f368f285d303ff1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.248Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13679,15 +13679,15 @@ "cohort": "19", "jobTitle": "Vice President", "industry": "Finance", - "cities": ["Boston", "San Jose"], + "cities": ["Henderson"], "_id": { - "$oid": "666cbc3240af7b375e3523b5" + "$oid": "66723d958f368f285d303ff2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13700,15 +13700,15 @@ "cohort": "31", "jobTitle": "Frontend Developer", "industry": "Government contractor", - "cities": ["El Paso", "Stockton", "San Diego"], + "cities": ["Houston", "Bakersfield", "St. Louis"], "_id": { - "$oid": "666cbc3240af7b375e3523b6" + "$oid": "66723d958f368f285d303ff3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13721,15 +13721,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["San Diego", "San Francisco"], + "cities": ["Boston"], "_id": { - "$oid": "666cbc3240af7b375e3523b7" + "$oid": "66723d958f368f285d303ff4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13742,15 +13742,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "Healthcare, Med-tech, Telemedecine", - "cities": ["Irving", "Mumbai", "Colorado Springs", "Chandler"], + "cities": ["London", "Omaha", "Long Beach"], "_id": { - "$oid": "666cbc3240af7b375e3523b8" + "$oid": "66723d958f368f285d303ff5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13763,15 +13763,15 @@ "cohort": "11", "jobTitle": "Senior Frontend Engineer", "industry": "Healthcare", - "cities": ["Glendale", "Riverside", "New Orleans"], + "cities": ["Honolulu", "Henderson"], "_id": { - "$oid": "666cbc3240af7b375e3523b9" + "$oid": "66723d958f368f285d303ff6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13784,15 +13784,15 @@ "cohort": "34", "jobTitle": "Software Engineer", "industry": "Business Intelligence", - "cities": ["Virginia Beach", "Dallas", "Irving", "Chandler"], + "cities": ["Garland", "Lincoln", "Tokyo"], "_id": { - "$oid": "666cbc3240af7b375e3523ba" + "$oid": "66723d958f368f285d303ff7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13805,15 +13805,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Phoenix"], + "cities": ["Saint Paul"], "_id": { - "$oid": "666cbc3240af7b375e3523bb" + "$oid": "66723d958f368f285d303ff8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13826,15 +13826,15 @@ "cohort": "15", "jobTitle": "Senior Software Engineer, Site Reliability Engineering", "industry": "Technology", - "cities": ["Fresno"], + "cities": ["Columbus", "Aurora"], "_id": { - "$oid": "666cbc3240af7b375e3523bc" + "$oid": "66723d958f368f285d303ff9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13847,15 +13847,15 @@ "cohort": "38", "jobTitle": "Software Engineer - Level 3", "industry": "Technology", - "cities": ["Seattle", "Los Angeles", "Cincinnati", "Reno"], + "cities": ["Tokyo"], "_id": { - "$oid": "666cbc3240af7b375e3523bd" + "$oid": "66723d958f368f285d303ffa" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13868,15 +13868,15 @@ "cohort": "10", "jobTitle": "Software Engineer (L3)", "industry": "Frontend Mobile Development", - "cities": ["Tokyo", "Lexington", "Boston", "Cleveland"], + "cities": ["Aurora"], "_id": { - "$oid": "666cbc3240af7b375e3523be" + "$oid": "66723d958f368f285d303ffb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13889,15 +13889,15 @@ "cohort": "5", "jobTitle": "Software Engineer (Frontend III)", "industry": "Software / Tech", - "cities": ["Kansas City", "Cleveland", "Sydney", "Corpus Christi"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523bf" + "$oid": "66723d958f368f285d303ffc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13910,15 +13910,15 @@ "cohort": "45", "jobTitle": "Software Engineer", "industry": "Cloud Service", - "cities": ["Stockton", "Chandler", "Saint Paul", "Raleigh"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523c0" + "$oid": "66723d958f368f285d303ffd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13931,15 +13931,15 @@ "cohort": "12", "jobTitle": "Software Engineer", "industry": "Adtech", - "cities": ["Orlando", "Indianapolis", "Lubbock", "Baltimore"], + "cities": ["Dallas"], "_id": { - "$oid": "666cbc3240af7b375e3523c1" + "$oid": "66723d958f368f285d303ffe" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13952,15 +13952,15 @@ "cohort": "21", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Houston", "Colorado Springs"], + "cities": ["Cleveland", "Dallas", "San Diego"], "_id": { - "$oid": "666cbc3240af7b375e3523c2" + "$oid": "66723d958f368f285d303fff" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13973,15 +13973,15 @@ "cohort": "15", "jobTitle": "Software Engineer", "industry": "Tech", - "cities": ["Kansas City", "Fort Worth", "Memphis"], + "cities": ["Beijing", "Washington", "Mexico City"], "_id": { - "$oid": "666cbc3240af7b375e3523c3" + "$oid": "66723d958f368f285d304000" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -13994,15 +13994,15 @@ "cohort": "47", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Seattle", "Albuquerque"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523c4" + "$oid": "66723d958f368f285d304001" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14015,15 +14015,15 @@ "cohort": "22", "jobTitle": "Software Engineer - Search Engine Privacy", "industry": "Tech", - "cities": ["Corpus Christi", "St. Petersburg"], + "cities": ["Omaha", "Scottsdale"], "_id": { - "$oid": "666cbc3240af7b375e3523c5" + "$oid": "66723d958f368f285d304002" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14036,15 +14036,15 @@ "cohort": "19", "jobTitle": "Software Engineer", "industry": "Social Media", - "cities": ["Paris"], + "cities": ["Saint Paul"], "_id": { - "$oid": "666cbc3240af7b375e3523c6" + "$oid": "66723d958f368f285d304003" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14057,15 +14057,15 @@ "cohort": "2", "jobTitle": "Software Engineer", "industry": "Tech", - "cities": ["Saint Paul", "Glendale", "New Orleans"], + "cities": ["Pittsburgh"], "_id": { - "$oid": "666cbc3240af7b375e3523c7" + "$oid": "66723d958f368f285d304004" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14078,15 +14078,15 @@ "cohort": "6", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Miami", "Portland"], + "cities": ["Tucson", "Mumbai"], "_id": { - "$oid": "666cbc3240af7b375e3523c8" + "$oid": "66723d958f368f285d304005" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14099,15 +14099,15 @@ "cohort": "34", "jobTitle": "Software Engineer", "industry": "Tech", - "cities": ["Louisville", "Jacksonville", "Sydney"], + "cities": ["Norfolk"], "_id": { - "$oid": "666cbc3240af7b375e3523c9" + "$oid": "66723d958f368f285d304006" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14120,15 +14120,15 @@ "cohort": "2", "jobTitle": "Software Engineer", "industry": "Tech", - "cities": ["Mumbai", "San Diego"], + "cities": ["Santa Ana", "Saint Paul", "Indianapolis"], "_id": { - "$oid": "666cbc3240af7b375e3523ca" + "$oid": "66723d958f368f285d304007" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14141,15 +14141,15 @@ "cohort": "19", "jobTitle": "Full Stack Engineer", "industry": "Digital Services", - "cities": ["Miami", "Fresno"], + "cities": ["Sรฃo Paulo"], "_id": { - "$oid": "666cbc3240af7b375e3523cb" + "$oid": "66723d958f368f285d304008" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14162,15 +14162,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Decision Science", - "cities": ["London", "Newark"], + "cities": ["Irving"], "_id": { - "$oid": "666cbc3240af7b375e3523cc" + "$oid": "66723d958f368f285d304009" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14183,15 +14183,15 @@ "cohort": "8", "jobTitle": "Junior Software Engineer", "industry": "HR tech", - "cities": ["Jacksonville"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523cd" + "$oid": "66723d958f368f285d30400a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14204,15 +14204,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Entertainment", - "cities": ["Corpus Christi", "Madison", "Tokyo"], + "cities": ["Fort Wayne", "Fresno"], "_id": { - "$oid": "666cbc3240af7b375e3523ce" + "$oid": "66723d958f368f285d30400b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14225,15 +14225,15 @@ "cohort": "43", "jobTitle": "Software Engineer", "industry": "Agriculture Tech", - "cities": ["Pittsburgh", "Las Vegas", "Indianapolis"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523cf" + "$oid": "66723d958f368f285d30400c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14246,15 +14246,15 @@ "cohort": "21", "jobTitle": "Full Stack Engineer", "industry": "Research & Analytics", - "cities": ["Mexico City", "Beijing", "Raleigh"], + "cities": ["Columbus", "Reno", "Nashville"], "_id": { - "$oid": "666cbc3240af7b375e3523d0" + "$oid": "66723d958f368f285d30400d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14267,15 +14267,15 @@ "cohort": "34", "jobTitle": "Technology Associate", "industry": "Real Estate", - "cities": ["Indianapolis"], + "cities": ["Nashville", "Cleveland"], "_id": { - "$oid": "666cbc3240af7b375e3523d1" + "$oid": "66723d958f368f285d30400e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14288,15 +14288,15 @@ "cohort": "10", "jobTitle": "Application Developer III", "industry": "Healthcare", - "cities": ["Kansas City", "Houston", "Washington", "Jacksonville"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523d2" + "$oid": "66723d958f368f285d30400f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14309,15 +14309,15 @@ "cohort": "48", "jobTitle": "Engineer", "industry": "Fintech", - "cities": ["Austin"], + "cities": ["Lubbock"], "_id": { - "$oid": "666cbc3240af7b375e3523d3" + "$oid": "66723d958f368f285d304010" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14330,15 +14330,15 @@ "cohort": "11", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["El Paso", "Chesapeake", "Newark", "Lexington"], + "cities": ["El Paso", "New York", "Reno"], "_id": { - "$oid": "666cbc3240af7b375e3523d4" + "$oid": "66723d958f368f285d304011" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14351,15 +14351,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Agriculture Science", - "cities": ["Oakland", "St. Petersburg"], + "cities": ["Henderson", "Austin"], "_id": { - "$oid": "666cbc3240af7b375e3523d5" + "$oid": "66723d958f368f285d304012" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14372,15 +14372,15 @@ "cohort": "24", "jobTitle": "Software Engineer (API/Data Visualization Team)", "industry": "Agricultural Analytics", - "cities": ["Kansas City", "Riverside", "St. Louis"], + "cities": ["Chicago"], "_id": { - "$oid": "666cbc3240af7b375e3523d6" + "$oid": "66723d958f368f285d304013" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14393,15 +14393,15 @@ "cohort": "7", "jobTitle": "Senior WebXR Developer", "industry": "Other", - "cities": ["Lubbock", "Lincoln", "London"], + "cities": ["Lubbock"], "_id": { - "$oid": "666cbc3240af7b375e3523d7" + "$oid": "66723d958f368f285d304014" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14414,15 +14414,15 @@ "cohort": "23", "jobTitle": "Technical Consultant", "industry": "Digital Adoption Software", - "cities": ["Nashville", "Berlin", "Los Angeles", "Lexington"], + "cities": ["London", "Saint Paul"], "_id": { - "$oid": "666cbc3240af7b375e3523d8" + "$oid": "66723d958f368f285d304015" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14435,15 +14435,15 @@ "cohort": "36", "jobTitle": "Application Developer", "industry": "Aerospace", - "cities": ["St. Petersburg", "Reno", "Henderson", "Philadelphia"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523d9" + "$oid": "66723d958f368f285d304016" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14456,15 +14456,15 @@ "cohort": "27", "jobTitle": "Developer", "industry": "Insurance", - "cities": ["Gilbert", "Anaheim", "Toronto"], + "cities": ["Atlanta", "St. Louis"], "_id": { - "$oid": "666cbc3240af7b375e3523da" + "$oid": "66723d958f368f285d304017" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14477,15 +14477,15 @@ "cohort": "37", "jobTitle": "Software Engineer II", "industry": "Cybersecurity", - "cities": ["Indianapolis"], + "cities": ["Mumbai", "Oakland"], "_id": { - "$oid": "666cbc3240af7b375e3523db" + "$oid": "66723d958f368f285d304018" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14498,15 +14498,15 @@ "cohort": "37", "jobTitle": "Senior Software Engineer", "industry": "Computer Safety", - "cities": ["Anaheim", "New York", "Cincinnati"], + "cities": ["Long Beach"], "_id": { - "$oid": "666cbc3240af7b375e3523dc" + "$oid": "66723d958f368f285d304019" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14519,15 +14519,15 @@ "cohort": "37", "jobTitle": "Software Engineer", "industry": "Cybersecurity", - "cities": ["Lincoln"], + "cities": ["Mumbai"], "_id": { - "$oid": "666cbc3240af7b375e3523dd" + "$oid": "66723d958f368f285d30401a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14540,15 +14540,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "Finance", - "cities": ["Arlington", "Irving", "Baltimore", "Beijing"], + "cities": ["Houston"], "_id": { - "$oid": "666cbc3240af7b375e3523de" + "$oid": "66723d958f368f285d30401b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14561,15 +14561,15 @@ "cohort": "41", "jobTitle": "Software Engineer, Platform Services Team", "industry": "Recruiting", - "cities": ["Phoenix", "Chandler"], + "cities": ["Riverside", "Corpus Christi"], "_id": { - "$oid": "666cbc3240af7b375e3523df" + "$oid": "66723d958f368f285d30401c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14582,15 +14582,15 @@ "cohort": "37", "jobTitle": "Growth Engineer", "industry": "Other", - "cities": ["Toronto", "Raleigh", "St. Petersburg", "Austin"], + "cities": ["Glendale"], "_id": { - "$oid": "666cbc3240af7b375e3523e0" + "$oid": "66723d958f368f285d30401d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14603,15 +14603,15 @@ "cohort": "Beta", "jobTitle": "Software Engineer", "industry": "Education", - "cities": ["San Francisco", "Colorado Springs", "Memphis", "Orlando"], + "cities": ["Paris", "Houston", "Reno"], "_id": { - "$oid": "666cbc3240af7b375e3523e1" + "$oid": "66723d958f368f285d30401e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14624,15 +14624,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Memphis"], + "cities": ["New York"], "_id": { - "$oid": "666cbc3240af7b375e3523e2" + "$oid": "66723d958f368f285d30401f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14645,15 +14645,15 @@ "cohort": "11", "jobTitle": "Full Stack Developer", "industry": "Insurance Tech", - "cities": ["North Las Vegas", "Chesapeake", "Jersey City", "Memphis"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523e3" + "$oid": "66723d958f368f285d304020" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14666,15 +14666,15 @@ "cohort": "51", "jobTitle": "Senior UX Designer", "industry": "Software / Tech", - "cities": ["Baltimore", "Atlanta", "Austin", "Mexico City"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523e4" + "$oid": "66723d958f368f285d304021" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14687,15 +14687,15 @@ "cohort": "12", "jobTitle": "Fullstack Engineer", "industry": "Applicant Tracking Software", - "cities": ["Lubbock", "Memphis"], + "cities": ["Dallas", "Raleigh"], "_id": { - "$oid": "666cbc3240af7b375e3523e5" + "$oid": "66723d958f368f285d304022" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14708,15 +14708,15 @@ "cohort": "46", "jobTitle": "Software Engineer", "industry": "Medical CRM", - "cities": ["Tulsa"], + "cities": ["Virginia Beach"], "_id": { - "$oid": "666cbc3240af7b375e3523e6" + "$oid": "66723d958f368f285d304023" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14729,15 +14729,15 @@ "cohort": "32", "jobTitle": "Software Engineer - Front End", "industry": "Other", - "cities": ["Fort Worth", "Minneapolis", "Stockton", "St. Louis"], + "cities": ["Paris", "New York", "Stockton"], "_id": { - "$oid": "666cbc3240af7b375e3523e7" + "$oid": "66723d958f368f285d304024" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14750,15 +14750,15 @@ "cohort": "24", "jobTitle": "Software Engineer", "industry": "", - "cities": ["San Jose"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523e8" + "$oid": "66723d958f368f285d304025" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14771,15 +14771,15 @@ "cohort": "2", "jobTitle": "Lead Frontend Engineer", "industry": "Media", - "cities": ["Boston"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523e9" + "$oid": "66723d958f368f285d304026" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14792,15 +14792,15 @@ "cohort": "20", "jobTitle": "Software Engineer", "industry": "Media", - "cities": ["Riverside"], + "cities": ["St. Petersburg"], "_id": { - "$oid": "666cbc3240af7b375e3523ea" + "$oid": "66723d958f368f285d304027" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14813,15 +14813,15 @@ "cohort": "2", "jobTitle": "Associate Software Engineer", "industry": "Media", - "cities": ["Anchorage"], + "cities": ["New York", "Denver"], "_id": { - "$oid": "666cbc3240af7b375e3523eb" + "$oid": "66723d958f368f285d304028" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14834,15 +14834,15 @@ "cohort": "40", "jobTitle": "Backend Engineer", "industry": "Fintech", - "cities": ["Long Beach"], + "cities": ["Long Beach", "Oakland", "Charlotte"], "_id": { - "$oid": "666cbc3240af7b375e3523ec" + "$oid": "66723d958f368f285d304029" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14855,15 +14855,15 @@ "cohort": "3", "jobTitle": "Software Developer", "industry": "Business Tech/Enterprise Tech", - "cities": ["Stockton", "Riverside"], + "cities": ["Chesapeake", "Las Vegas", "Corpus Christi"], "_id": { - "$oid": "666cbc3240af7b375e3523ed" + "$oid": "66723d958f368f285d30402a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14876,15 +14876,15 @@ "cohort": "4", "jobTitle": "Data Visualization Engineer", "industry": "Bio Tech", - "cities": ["Wichita", "Portland", "Mesa", "San Diego"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523ee" + "$oid": "66723d958f368f285d30402b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14897,15 +14897,15 @@ "cohort": "12", "jobTitle": "Software Engineer", "industry": "Automotive", - "cities": ["Glendale", "Sรฃo Paulo", "Atlanta"], + "cities": ["Dallas", "Sรฃo Paulo"], "_id": { - "$oid": "666cbc3240af7b375e3523ef" + "$oid": "66723d958f368f285d30402c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14918,15 +14918,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Software", - "cities": ["Pittsburgh"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523f0" + "$oid": "66723d958f368f285d30402d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14939,15 +14939,15 @@ "cohort": "1", "jobTitle": "Backend Software Engineer", "industry": "Entertainment", - "cities": ["Lincoln", "Aurora"], + "cities": ["Sacramento"], "_id": { - "$oid": "666cbc3240af7b375e3523f1" + "$oid": "66723d958f368f285d30402e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.820Z" }, "__v": 0 }, @@ -14960,15 +14960,15 @@ "cohort": "3", "jobTitle": "Front-End Software Engineer", "industry": "Hospitality", - "cities": ["Henderson", "Cincinnati", "Philadelphia"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523f2" + "$oid": "66723d958f368f285d30402f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -14981,15 +14981,15 @@ "cohort": "11", "jobTitle": "Render Tier Engineer", "industry": "Hospitality", - "cities": ["Chicago"], + "cities": ["Greensboro", "Glendale"], "_id": { - "$oid": "666cbc3240af7b375e3523f3" + "$oid": "66723d958f368f285d304030" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15002,15 +15002,15 @@ "cohort": "34", "jobTitle": "Software Engineer - Full-Stack", "industry": "Healthcare", - "cities": ["Houston"], + "cities": ["Raleigh", "Fort Worth"], "_id": { - "$oid": "666cbc3240af7b375e3523f4" + "$oid": "66723d958f368f285d304031" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15023,15 +15023,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Healthcare Technology", - "cities": ["Austin", "Atlanta"], + "cities": ["Henderson", "Norfolk"], "_id": { - "$oid": "666cbc3240af7b375e3523f5" + "$oid": "66723d958f368f285d304032" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15044,15 +15044,15 @@ "cohort": "2", "jobTitle": "Software Engineer", "industry": "Health", - "cities": ["North Las Vegas", "Mesa"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523f6" + "$oid": "66723d958f368f285d304033" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15065,15 +15065,15 @@ "cohort": "54", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Chicago", "Philadelphia", "Toronto", "Anchorage"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523f7" + "$oid": "66723d958f368f285d304034" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15086,15 +15086,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Anchorage", "Mesa", "Tokyo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523f8" + "$oid": "66723d958f368f285d304035" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15107,15 +15107,15 @@ "cohort": "49", "jobTitle": "Full stack software engineer", "industry": "Other", - "cities": ["Lincoln"], + "cities": ["Portland", "Henderson"], "_id": { - "$oid": "666cbc3240af7b375e3523f9" + "$oid": "66723d958f368f285d304036" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15128,15 +15128,15 @@ "cohort": "2", "jobTitle": "Senior Software Engineer", "industry": "Tech", - "cities": ["Oakland"], + "cities": ["Lubbock"], "_id": { - "$oid": "666cbc3240af7b375e3523fa" + "$oid": "66723d958f368f285d304037" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15149,15 +15149,15 @@ "cohort": "35", "jobTitle": "Software Engineer", "industry": "Automotive", - "cities": ["Washington", "Memphis", "St. Petersburg"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523fb" + "$oid": "66723d958f368f285d304038" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15170,15 +15170,15 @@ "cohort": "2", "jobTitle": "Venture Analyst", "industry": "", - "cities": ["Toledo"], + "cities": ["Norfolk", "Orlando"], "_id": { - "$oid": "666cbc3240af7b375e3523fc" + "$oid": "66723d958f368f285d304039" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15191,15 +15191,15 @@ "cohort": "50", "jobTitle": "Fullstack Software Engineer", "industry": "Retail", - "cities": ["Beijing", "Buffalo", "Kansas City"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523fd" + "$oid": "66723d958f368f285d30403a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15212,15 +15212,15 @@ "cohort": "41", "jobTitle": "Software Engineer II", "industry": "Fintech / Ecommerce", - "cities": ["Paris", "Boston"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3523fe" + "$oid": "66723d958f368f285d30403b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15233,15 +15233,15 @@ "cohort": "34", "jobTitle": "Junior Frontend Developer", "industry": "Marketing & Advertising", - "cities": ["San Jose", "Denver"], + "cities": ["Norfolk", "Greensboro"], "_id": { - "$oid": "666cbc3240af7b375e3523ff" + "$oid": "66723d958f368f285d30403c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15254,15 +15254,15 @@ "cohort": "33", "jobTitle": "Front End Engineer", "industry": "Tech", - "cities": ["Toledo", "Irving", "London", "Columbus"], + "cities": ["Anaheim", "Miami", "Orlando"], "_id": { - "$oid": "666cbc3240af7b375e352400" + "$oid": "66723d958f368f285d30403d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15275,15 +15275,15 @@ "cohort": "33", "jobTitle": "Frontend Engineer", "industry": "Online Events Platform", - "cities": ["Plano", "Buffalo"], + "cities": ["North Las Vegas"], "_id": { - "$oid": "666cbc3240af7b375e352401" + "$oid": "66723d958f368f285d30403e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15296,15 +15296,15 @@ "cohort": "16", "jobTitle": "Senior Full Stack Engineer", "industry": "Law", - "cities": ["Chula Vista"], + "cities": ["Sacramento"], "_id": { - "$oid": "666cbc3240af7b375e352402" + "$oid": "66723d958f368f285d30403f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15317,15 +15317,15 @@ "cohort": "31", "jobTitle": "Front End Software Engineer", "industry": "Cyber Security", - "cities": ["Madison", "Jacksonville", "Portland"], + "cities": ["Mumbai", "Santa Ana"], "_id": { - "$oid": "666cbc3240af7b375e352403" + "$oid": "66723d958f368f285d304040" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15338,15 +15338,15 @@ "cohort": "49", "jobTitle": "Full Stack Software Engineer", "industry": "Other", - "cities": ["Sacramento", "Miami", "Mesa", "Stockton"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352404" + "$oid": "66723d958f368f285d304041" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15359,15 +15359,15 @@ "cohort": "49", "jobTitle": "Software Engineer", "industry": "Media", - "cities": ["Jacksonville"], + "cities": ["Portland", "Gilbert"], "_id": { - "$oid": "666cbc3240af7b375e352405" + "$oid": "66723d958f368f285d304042" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15380,15 +15380,15 @@ "cohort": "49", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Sydney", "Miami", "Tampa"], + "cities": ["Wichita", "Reno"], "_id": { - "$oid": "666cbc3240af7b375e352406" + "$oid": "66723d958f368f285d304043" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15401,15 +15401,15 @@ "cohort": "24", "jobTitle": "Senior Software Engineer", "industry": "Tenant Experience Platform/Commercial Real Estate", - "cities": ["Aurora", "Memphis", "Colorado Springs"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352407" + "$oid": "66723d958f368f285d304044" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15422,15 +15422,15 @@ "cohort": "42", "jobTitle": "Senior Software Engineer I", "industry": "Software", - "cities": ["Oklahoma City", "New York", "Plano"], + "cities": ["Washington", "Tulsa"], "_id": { - "$oid": "666cbc3240af7b375e352408" + "$oid": "66723d958f368f285d304045" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15443,15 +15443,15 @@ "cohort": "2", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Reno"], + "cities": ["Sacramento", "Aurora"], "_id": { - "$oid": "666cbc3240af7b375e352409" + "$oid": "66723d958f368f285d304046" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15464,15 +15464,15 @@ "cohort": "12", "jobTitle": "Senior Software Engineer", "industry": "Insurance", - "cities": ["Oakland", "Indianapolis"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35240a" + "$oid": "66723d958f368f285d304047" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15485,15 +15485,15 @@ "cohort": "55", "jobTitle": "Full Stack Developer", "industry": "Other", - "cities": ["Albuquerque", "Mexico City"], + "cities": ["North Las Vegas", "Dallas", "Scottsdale"], "_id": { - "$oid": "666cbc3240af7b375e35240b" + "$oid": "66723d958f368f285d304048" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15506,15 +15506,15 @@ "cohort": "49", "jobTitle": "Application Developer", "industry": "IT Services", - "cities": ["Las Vegas", "Columbus"], + "cities": ["Gilbert", "Anchorage"], "_id": { - "$oid": "666cbc3240af7b375e35240c" + "$oid": "66723d958f368f285d304049" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15527,15 +15527,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Restaurant, Food, and Beverage", - "cities": ["Reno", "Orlando", "Winston-Salem", "Columbus"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35240d" + "$oid": "66723d958f368f285d30404a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15548,15 +15548,15 @@ "cohort": "31", "jobTitle": "Software Engineer II", "industry": "Restaurant, Food, and Beverage", - "cities": ["Lexington", "Greensboro", "Memphis", "Minneapolis"], + "cities": ["Colorado Springs", "Boston"], "_id": { - "$oid": "666cbc3240af7b375e35240e" + "$oid": "66723d958f368f285d30404b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15569,15 +15569,15 @@ "cohort": "16", "jobTitle": "Senior Full Stack Engineer", "industry": "Electric Vehicles", - "cities": ["Irvine", "Saint Paul", "Philadelphia", "Colorado Springs"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35240f" + "$oid": "66723d958f368f285d30404c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.249Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15590,15 +15590,15 @@ "cohort": "41", "jobTitle": "Senior Frontend Developer", "industry": "Technology", - "cities": ["Indianapolis", "Toronto", "Los Angeles"], + "cities": ["Reno", "Anaheim", "Newark"], "_id": { - "$oid": "666cbc3240af7b375e352410" + "$oid": "66723d958f368f285d30404d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15611,15 +15611,15 @@ "cohort": "Beta", "jobTitle": "Software Engineer", "industry": "Compliance Operations", - "cities": ["Wichita", "Philadelphia", "San Diego"], + "cities": ["Jersey City", "Fort Wayne", "Irving"], "_id": { - "$oid": "666cbc3240af7b375e352411" + "$oid": "66723d958f368f285d30404e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15632,15 +15632,15 @@ "cohort": "49", "jobTitle": "Software Engineer II - Emerging Technology", "industry": "Automotive", - "cities": ["Sรฃo Paulo"], + "cities": ["Orlando", "Reno", "Tucson"], "_id": { - "$oid": "666cbc3240af7b375e352412" + "$oid": "66723d958f368f285d30404f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15653,15 +15653,15 @@ "cohort": "42", "jobTitle": "Fullstack software engineer (Contractor)", "industry": "Consulting", - "cities": ["San Francisco"], + "cities": ["Cleveland", "Seattle"], "_id": { - "$oid": "666cbc3240af7b375e352413" + "$oid": "66723d958f368f285d304050" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15674,15 +15674,15 @@ "cohort": "27", "jobTitle": "Software Developer", "industry": "Architectural Services", - "cities": ["Jacksonville", "Philadelphia", "Kansas City", "Wichita"], + "cities": ["Orlando"], "_id": { - "$oid": "666cbc3240af7b375e352414" + "$oid": "66723d958f368f285d304051" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15695,15 +15695,15 @@ "cohort": "9", "jobTitle": "Software engineer, backend", "industry": "IT", - "cities": ["Houston", "Fort Worth", "Winston-Salem", "Reno"], + "cities": ["Sacramento", "San Antonio"], "_id": { - "$oid": "666cbc3240af7b375e352415" + "$oid": "66723d958f368f285d304052" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15716,15 +15716,15 @@ "cohort": "30", "jobTitle": "Software Developer - Cloud Software Developer", "industry": "Sales? Tbh idk", - "cities": ["North Las Vegas"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352416" + "$oid": "66723d958f368f285d304053" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15737,15 +15737,15 @@ "cohort": "22", "jobTitle": "Cloud Engineer", "industry": "Technology", - "cities": ["Beijing"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352417" + "$oid": "66723d958f368f285d304054" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15758,15 +15758,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Tech", - "cities": ["Minneapolis", "San Diego"], + "cities": ["Chicago"], "_id": { - "$oid": "666cbc3240af7b375e352418" + "$oid": "66723d958f368f285d304055" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15779,15 +15779,15 @@ "cohort": "35", "jobTitle": "Cloud Engineer", "industry": "Information Technology & Services", - "cities": ["New Orleans", "Oklahoma City", "Memphis", "Oakland"], + "cities": ["Honolulu"], "_id": { - "$oid": "666cbc3240af7b375e352419" + "$oid": "66723d958f368f285d304056" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15800,15 +15800,15 @@ "cohort": "15", "jobTitle": "Full Stack Developer", "industry": "Technology & Consulting", - "cities": ["Virginia Beach", "Glendale"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35241a" + "$oid": "66723d958f368f285d304057" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15821,15 +15821,15 @@ "cohort": "15", "jobTitle": "Senior Applications Engineer", "industry": "Other", - "cities": ["Stockton", "Tulsa", "Laredo", "Detroit"], + "cities": ["Tampa"], "_id": { - "$oid": "666cbc3240af7b375e35241b" + "$oid": "66723d958f368f285d304058" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15842,15 +15842,15 @@ "cohort": "11", "jobTitle": "Software Engineer", "industry": "Consulting", - "cities": ["Stockton"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35241c" + "$oid": "66723d958f368f285d304059" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15863,15 +15863,15 @@ "cohort": "6", "jobTitle": "Frontend Developer", "industry": "Consulting", - "cities": ["Lincoln"], + "cities": ["Arlington", "Detroit", "Fort Worth"], "_id": { - "$oid": "666cbc3240af7b375e35241d" + "$oid": "66723d958f368f285d30405a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15884,15 +15884,15 @@ "cohort": "4", "jobTitle": "Software Engineer I", "industry": "Software / Tech", - "cities": ["Mumbai", "Plano"], + "cities": ["Cincinnati"], "_id": { - "$oid": "666cbc3240af7b375e35241e" + "$oid": "66723d958f368f285d30405b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15905,15 +15905,15 @@ "cohort": "2", "jobTitle": "Software Engineer", "industry": "Security", - "cities": ["Tokyo", "Los Angeles", "Anchorage"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35241f" + "$oid": "66723d958f368f285d30405c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15926,15 +15926,15 @@ "cohort": "47", "jobTitle": "Full-Stack Engineer", "industry": "Entertainment", - "cities": ["Durham", "Bakersfield"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352420" + "$oid": "66723d958f368f285d30405d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15947,15 +15947,15 @@ "cohort": "33", "jobTitle": "Software Engineer", "industry": "News/Entertainment/Streaming Platforms", - "cities": ["Durham", "Mesa", "Laredo", "Irving"], + "cities": ["Bakersfield"], "_id": { - "$oid": "666cbc3240af7b375e352421" + "$oid": "66723d958f368f285d30405e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15968,15 +15968,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Hospitality", - "cities": ["Santa Ana", "Washington", "Portland", "Albuquerque"], + "cities": ["Mesa", "Columbus"], "_id": { - "$oid": "666cbc3240af7b375e352422" + "$oid": "66723d958f368f285d30405f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -15989,15 +15989,15 @@ "cohort": "13", "jobTitle": "Data Engineer", "industry": "Fintech", - "cities": ["Wichita", "Mexico City"], + "cities": ["Toledo"], "_id": { - "$oid": "666cbc3240af7b375e352423" + "$oid": "66723d958f368f285d304060" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16010,15 +16010,15 @@ "cohort": "33", "jobTitle": "Full Stack Engineer", "industry": "Biotech/Agriculture", - "cities": ["San Francisco", "Winston-Salem", "Columbus", "Los Angeles"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352424" + "$oid": "66723d958f368f285d304061" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16031,15 +16031,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Health", - "cities": ["St. Petersburg", "Cleveland", "Nashville", "New York"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352425" + "$oid": "66723d958f368f285d304062" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16052,15 +16052,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Atlanta", "Madison"], + "cities": ["Austin", "London", "Sacramento"], "_id": { - "$oid": "666cbc3240af7b375e352426" + "$oid": "66723d958f368f285d304063" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16073,15 +16073,15 @@ "cohort": "35", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Honolulu"], + "cities": ["North Las Vegas", "New Orleans", "Bakersfield"], "_id": { - "$oid": "666cbc3240af7b375e352427" + "$oid": "66723d958f368f285d304064" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16094,15 +16094,15 @@ "cohort": "29", "jobTitle": "Software Engineer 1", "industry": "Social Media", - "cities": ["Aurora", "Reno", "Chesapeake"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352428" + "$oid": "66723d958f368f285d304065" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16115,15 +16115,15 @@ "cohort": "36", "jobTitle": "Engineer I", "industry": "Database service", - "cities": ["Cleveland", "Tampa"], + "cities": ["Reno"], "_id": { - "$oid": "666cbc3240af7b375e352429" + "$oid": "66723d958f368f285d304066" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16136,15 +16136,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "SaaS", - "cities": ["Portland", "Laredo", "Detroit", "Winston-Salem"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35242a" + "$oid": "66723d958f368f285d304067" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16157,15 +16157,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "software", - "cities": ["Corpus Christi", "Scottsdale", "Lubbock"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35242b" + "$oid": "66723d958f368f285d304068" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16178,15 +16178,15 @@ "cohort": "52", "jobTitle": "Technical lead", "industry": "IT Services", - "cities": ["Riverside", "Jacksonville"], + "cities": ["Norfolk"], "_id": { - "$oid": "666cbc3240af7b375e35242c" + "$oid": "66723d958f368f285d304069" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16199,15 +16199,15 @@ "cohort": "41", "jobTitle": "Technology Analyst", "industry": "Tech", - "cities": ["Stockton", "Tokyo", "Tulsa"], + "cities": ["Newark", "Albuquerque", "Chula Vista"], "_id": { - "$oid": "666cbc3240af7b375e35242d" + "$oid": "66723d958f368f285d30406a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16220,15 +16220,15 @@ "cohort": "24", "jobTitle": "Technology lead -US", "industry": "Entertainment", - "cities": ["Baltimore", "Tokyo", "Miami"], + "cities": ["Memphis", "Reno", "Seattle"], "_id": { - "$oid": "666cbc3240af7b375e35242e" + "$oid": "66723d958f368f285d30406b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16241,15 +16241,15 @@ "cohort": "34", "jobTitle": "Software Engineer", "industry": "Marketing", - "cities": ["Irvine", "Greensboro", "Fort Worth", "Buffalo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35242f" + "$oid": "66723d958f368f285d30406c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16262,15 +16262,15 @@ "cohort": "45", "jobTitle": "Full Stack Developer", "industry": "Media Agency", - "cities": ["Pittsburgh"], + "cities": ["Fresno", "Portland"], "_id": { - "$oid": "666cbc3240af7b375e352430" + "$oid": "66723d958f368f285d30406d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16283,15 +16283,15 @@ "cohort": "23", "jobTitle": "Full Stack Developer", "industry": "", - "cities": ["Lincoln"], + "cities": ["San Jose", "Portland"], "_id": { - "$oid": "666cbc3240af7b375e352431" + "$oid": "66723d958f368f285d30406e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16304,15 +16304,15 @@ "cohort": "50", "jobTitle": "Software Developer", "industry": "Real Estate", - "cities": ["Irvine", "Colorado Springs", "Seattle"], + "cities": ["Irvine", "Albuquerque"], "_id": { - "$oid": "666cbc3240af7b375e352432" + "$oid": "66723d958f368f285d30406f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16325,15 +16325,15 @@ "cohort": "1", "jobTitle": "Associate Software Engineer", "industry": "Other", - "cities": ["Durham"], + "cities": ["Detroit", "Mesa", "St. Petersburg"], "_id": { - "$oid": "666cbc3240af7b375e352433" + "$oid": "66723d958f368f285d304070" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16346,15 +16346,15 @@ "cohort": "8", "jobTitle": "Senior Software Engineer", "industry": "Consulting", - "cities": ["Nashville", "Tampa"], + "cities": ["Baltimore", "Seattle", "Garland"], "_id": { - "$oid": "666cbc3240af7b375e352434" + "$oid": "66723d958f368f285d304071" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16367,15 +16367,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "Information Technology & Services", - "cities": ["Lexington", "Lincoln", "Charlotte"], + "cities": ["Los Angeles"], "_id": { - "$oid": "666cbc3240af7b375e352435" + "$oid": "66723d958f368f285d304072" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16388,15 +16388,15 @@ "cohort": "16", "jobTitle": "Software Engineer: Web Accessibility", "industry": "Consulting", - "cities": ["Phoenix"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352436" + "$oid": "66723d958f368f285d304073" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16409,15 +16409,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Consulting", - "cities": ["Columbus", "North Las Vegas", "Riverside"], + "cities": ["Plano", "Philadelphia", "Sydney"], "_id": { - "$oid": "666cbc3240af7b375e352437" + "$oid": "66723d958f368f285d304074" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16430,15 +16430,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "Software Consulting", - "cities": ["Houston", "Berlin", "Philadelphia"], + "cities": ["Tucson"], "_id": { - "$oid": "666cbc3240af7b375e352438" + "$oid": "66723d958f368f285d304075" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16451,15 +16451,15 @@ "cohort": "20", "jobTitle": "Software Engineer II", "industry": "Online Media", - "cities": ["Winston-Salem"], + "cities": ["Dallas", "Denver", "Beijing"], "_id": { - "$oid": "666cbc3240af7b375e352439" + "$oid": "66723d958f368f285d304076" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16472,15 +16472,15 @@ "cohort": "16", "jobTitle": "Software Engineer III", "industry": "Digital Media", - "cities": ["Los Angeles", "Baltimore", "Fresno"], + "cities": ["Charlotte", "Sacramento"], "_id": { - "$oid": "666cbc3240af7b375e35243a" + "$oid": "66723d958f368f285d304077" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16493,15 +16493,15 @@ "cohort": "41", "jobTitle": "Front End Developer", "industry": "Entertainment", - "cities": ["Norfolk", "Arlington"], + "cities": ["Chandler", "Cleveland"], "_id": { - "$oid": "666cbc3240af7b375e35243b" + "$oid": "66723d958f368f285d304078" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16514,15 +16514,15 @@ "cohort": "33", "jobTitle": "Senior Full-Stack Automation Developer", "industry": "athletic footwear and apparel", - "cities": ["Greensboro", "Scottsdale", "Washington"], + "cities": ["Phoenix"], "_id": { - "$oid": "666cbc3240af7b375e35243c" + "$oid": "66723d958f368f285d304079" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16535,15 +16535,15 @@ "cohort": "27", "jobTitle": "React developer", "industry": "Consulting", - "cities": ["Corpus Christi", "Chesapeake"], + "cities": ["Tokyo", "San Diego", "Long Beach"], "_id": { - "$oid": "666cbc3240af7b375e35243d" + "$oid": "66723d958f368f285d30407a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16556,15 +16556,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "Education", - "cities": ["Jacksonville", "Columbus", "Anaheim"], + "cities": ["Henderson", "Riverside", "El Paso"], "_id": { - "$oid": "666cbc3240af7b375e35243e" + "$oid": "66723d958f368f285d30407b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16577,15 +16577,15 @@ "cohort": "36", "jobTitle": "Full-stack Engineer", "industry": "Healthcare", - "cities": ["Chesapeake"], + "cities": ["Berlin", "Bakersfield"], "_id": { - "$oid": "666cbc3240af7b375e35243f" + "$oid": "66723d958f368f285d30407c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16598,15 +16598,15 @@ "cohort": "8", "jobTitle": "Developer", "industry": "Other", - "cities": ["Houston", "Phoenix", "New York", "Detroit"], + "cities": ["Wichita", "Austin"], "_id": { - "$oid": "666cbc3240af7b375e352440" + "$oid": "66723d958f368f285d30407d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16619,15 +16619,15 @@ "cohort": "40", "jobTitle": "Full-Stack Developer", "industry": "Internet", - "cities": ["Irvine", "Lincoln", "Chicago", "Mexico City"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352441" + "$oid": "66723d958f368f285d30407e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16640,15 +16640,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Chicago", "Raleigh", "Aurora"], + "cities": ["Buffalo"], "_id": { - "$oid": "666cbc3240af7b375e352442" + "$oid": "66723d958f368f285d30407f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16661,15 +16661,15 @@ "cohort": "35", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Gilbert"], + "cities": ["North Las Vegas", "Norfolk", "St. Louis"], "_id": { - "$oid": "666cbc3240af7b375e352443" + "$oid": "66723d958f368f285d304080" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16682,15 +16682,15 @@ "cohort": "27", "jobTitle": "Product Engineer", "industry": "SaaS, business creation services", - "cities": ["Louisville"], + "cities": ["Detroit", "Milwaukee", "Lincoln"], "_id": { - "$oid": "666cbc3240af7b375e352444" + "$oid": "66723d958f368f285d304081" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16703,15 +16703,15 @@ "cohort": "33", "jobTitle": "Full Stack Developer", "industry": "Other", - "cities": ["Oakland", "Denver"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352445" + "$oid": "66723d958f368f285d304082" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16724,15 +16724,15 @@ "cohort": "14", "jobTitle": "Lead Full Stack Developer", "industry": "Computer Software", - "cities": ["San Francisco", "Tulsa", "Kansas City"], + "cities": ["Lubbock"], "_id": { - "$oid": "666cbc3240af7b375e352446" + "$oid": "66723d958f368f285d304083" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16745,15 +16745,15 @@ "cohort": "7", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Fort Wayne"], + "cities": ["El Paso"], "_id": { - "$oid": "666cbc3240af7b375e352447" + "$oid": "66723d958f368f285d304084" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16766,15 +16766,15 @@ "cohort": "19", "jobTitle": "Software Engineer", "industry": "Enterprise Software", - "cities": ["Houston", "Madison", "Tokyo"], + "cities": ["Colorado Springs", "Durham"], "_id": { - "$oid": "666cbc3240af7b375e352448" + "$oid": "66723d958f368f285d304085" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16787,15 +16787,15 @@ "cohort": "38", "jobTitle": "Software Engineer III", "industry": "Technology", - "cities": ["Wichita", "Oklahoma City", "Las Vegas"], + "cities": ["New York", "St. Petersburg"], "_id": { - "$oid": "666cbc3240af7b375e352449" + "$oid": "66723d958f368f285d304086" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16808,15 +16808,15 @@ "cohort": "5", "jobTitle": "Senior Frontend Engineer", "industry": "", - "cities": ["Oakland", "Kansas City", "Houston", "Austin"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35244a" + "$oid": "66723d958f368f285d304087" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16829,15 +16829,15 @@ "cohort": "40", "jobTitle": "Software Engineer II", "industry": "Fintech", - "cities": ["Sรฃo Paulo", "North Las Vegas"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35244b" + "$oid": "66723d958f368f285d304088" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16850,15 +16850,15 @@ "cohort": "18", "jobTitle": "Software Engineer II", "industry": "Enterprise software", - "cities": ["Toledo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35244c" + "$oid": "66723d958f368f285d304089" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16871,15 +16871,15 @@ "cohort": "4", "jobTitle": "UI Developer", "industry": "Fintech", - "cities": ["Aurora", "San Antonio"], + "cities": ["Orlando", "Washington", "Aurora"], "_id": { - "$oid": "666cbc3240af7b375e35244d" + "$oid": "66723d958f368f285d30408a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16892,15 +16892,15 @@ "cohort": "14", "jobTitle": "Software Developer", "industry": "Cloud Services", - "cities": ["Buffalo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35244e" + "$oid": "66723d958f368f285d30408b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16913,15 +16913,15 @@ "cohort": "5", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Kansas City"], + "cities": ["Milwaukee"], "_id": { - "$oid": "666cbc3240af7b375e35244f" + "$oid": "66723d958f368f285d30408c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16934,15 +16934,15 @@ "cohort": "34", "jobTitle": "Software Developer II", "industry": "Telecommunications", - "cities": ["Durham", "St. Louis"], + "cities": ["London"], "_id": { - "$oid": "666cbc3240af7b375e352450" + "$oid": "66723d958f368f285d30408d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16955,15 +16955,15 @@ "cohort": "33", "jobTitle": "Senior UI/UX Developer", "industry": "Computer and Network Security", - "cities": ["Anchorage"], + "cities": ["Henderson", "Berlin"], "_id": { - "$oid": "666cbc3240af7b375e352451" + "$oid": "66723d958f368f285d30408e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16976,15 +16976,15 @@ "cohort": "58", "jobTitle": "Full Stack Developer", "industry": "Other", - "cities": ["Honolulu", "Jacksonville", "Newark"], + "cities": ["Toronto"], "_id": { - "$oid": "666cbc3240af7b375e352452" + "$oid": "66723d958f368f285d30408f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -16997,15 +16997,15 @@ "cohort": "41", "jobTitle": "Frontend Developer", "industry": "Creative Agency", - "cities": ["Lincoln", "Orlando", "Paris", "Phoenix"], + "cities": ["Paris"], "_id": { - "$oid": "666cbc3240af7b375e352453" + "$oid": "66723d958f368f285d304090" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -17018,15 +17018,15 @@ "cohort": "15", "jobTitle": "Senior Front End Developer", "industry": "Media", - "cities": ["Berlin", "Sydney", "Pittsburgh"], + "cities": ["Fresno", "Tampa", "Orlando"], "_id": { - "$oid": "666cbc3240af7b375e352454" + "$oid": "66723d958f368f285d304091" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -17039,15 +17039,15 @@ "cohort": "23", "jobTitle": "Senior Web Developer", "industry": "", - "cities": ["Chandler", "Saint Paul"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352455" + "$oid": "66723d958f368f285d304092" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.821Z" }, "__v": 0 }, @@ -17060,15 +17060,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Dallas", "Memphis", "Riverside", "Phoenix"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352456" + "$oid": "66723d958f368f285d304093" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17081,15 +17081,15 @@ "cohort": "39", "jobTitle": "Frontend Engineer", "industry": "Solar", - "cities": ["Tucson", "Columbus", "Raleigh"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352457" + "$oid": "66723d958f368f285d304094" }, "createdAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.250Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17102,15 +17102,15 @@ "cohort": "37", "jobTitle": "Software Developer", "industry": "Clean Energy", - "cities": ["Mexico City", "Kansas City"], + "cities": ["Pittsburgh"], "_id": { - "$oid": "666cbc3240af7b375e352458" + "$oid": "66723d958f368f285d304095" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17123,15 +17123,15 @@ "cohort": "34", "jobTitle": "Platform Engineer", "industry": "Mobile Gaming", - "cities": ["Portland"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352459" + "$oid": "66723d958f368f285d304096" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17144,15 +17144,15 @@ "cohort": "7", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Oakland", "New York", "Atlanta"], + "cities": ["Sydney", "Dallas", "San Antonio"], "_id": { - "$oid": "666cbc3240af7b375e35245a" + "$oid": "66723d958f368f285d304097" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17165,15 +17165,15 @@ "cohort": "8", "jobTitle": "Software Engineer II", "industry": "Healthcare", - "cities": ["Toronto"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35245b" + "$oid": "66723d958f368f285d304098" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17186,15 +17186,15 @@ "cohort": "49", "jobTitle": "Software Engineer II", "industry": "Software / Tech", - "cities": ["Irvine", "Tokyo", "Glendale", "Dallas"], + "cities": ["Gilbert", "Chandler", "Louisville"], "_id": { - "$oid": "666cbc3240af7b375e35245c" + "$oid": "66723d958f368f285d304099" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17207,15 +17207,15 @@ "cohort": "50", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Austin"], + "cities": ["Cleveland", "Bakersfield", "Denver"], "_id": { - "$oid": "666cbc3240af7b375e35245d" + "$oid": "66723d958f368f285d30409a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17228,15 +17228,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Long Beach", "Tokyo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35245e" + "$oid": "66723d958f368f285d30409b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17249,15 +17249,15 @@ "cohort": "40", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Lexington", "Jacksonville"], + "cities": ["Orlando", "Austin", "Atlanta"], "_id": { - "$oid": "666cbc3240af7b375e35245f" + "$oid": "66723d958f368f285d30409c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17270,15 +17270,15 @@ "cohort": "19", "jobTitle": "Junior Developer Associate", "industry": "Fintech", - "cities": ["Nashville"], + "cities": ["Phoenix", "Wichita"], "_id": { - "$oid": "666cbc3240af7b375e352460" + "$oid": "66723d958f368f285d30409d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17291,15 +17291,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Kansas City", "San Jose"], + "cities": ["Indianapolis", "Madison", "Sรฃo Paulo"], "_id": { - "$oid": "666cbc3240af7b375e352461" + "$oid": "66723d958f368f285d30409e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17312,15 +17312,15 @@ "cohort": "26", "jobTitle": "Software Engineer", "industry": "Media", - "cities": ["Irving", "El Paso"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352462" + "$oid": "66723d958f368f285d30409f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17333,15 +17333,15 @@ "cohort": "31", "jobTitle": "Associate Software Engineer", "industry": "Fintech", - "cities": ["Los Angeles", "Arlington", "Washington"], + "cities": ["Fort Wayne"], "_id": { - "$oid": "666cbc3240af7b375e352463" + "$oid": "66723d958f368f285d3040a0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17354,15 +17354,15 @@ "cohort": "52", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Chicago", "Colorado Springs", "Scottsdale", "Buffalo"], + "cities": ["Sรฃo Paulo", "Irving"], "_id": { - "$oid": "666cbc3240af7b375e352464" + "$oid": "66723d958f368f285d3040a1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17375,15 +17375,15 @@ "cohort": "17", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Kansas City", "Cleveland", "Tucson", "Sacramento"], + "cities": ["Arlington", "Portland"], "_id": { - "$oid": "666cbc3240af7b375e352465" + "$oid": "66723d958f368f285d3040a2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17396,15 +17396,15 @@ "cohort": "28", "jobTitle": "Full Stack Developer", "industry": "Banking", - "cities": ["Saint Paul", "Raleigh"], + "cities": ["Scottsdale", "Philadelphia", "Chandler"], "_id": { - "$oid": "666cbc3240af7b375e352466" + "$oid": "66723d958f368f285d3040a3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17417,15 +17417,15 @@ "cohort": "1", "jobTitle": "Associate Engineer", "industry": "Finance", - "cities": ["Detroit"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352467" + "$oid": "66723d958f368f285d3040a4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17438,15 +17438,15 @@ "cohort": "19", "jobTitle": "Software Engineer II", "industry": "Fintech", - "cities": ["Garland", "Omaha", "Portland"], + "cities": ["Toledo", "Gilbert", "Laredo"], "_id": { - "$oid": "666cbc3240af7b375e352468" + "$oid": "66723d958f368f285d3040a5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17459,15 +17459,15 @@ "cohort": "31", "jobTitle": "Senior Associate Software Engineer", "industry": "Fintech", - "cities": ["Henderson", "Wichita", "Milwaukee"], + "cities": ["Virginia Beach", "Minneapolis"], "_id": { - "$oid": "666cbc3240af7b375e352469" + "$oid": "66723d958f368f285d3040a6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17480,15 +17480,15 @@ "cohort": "46", "jobTitle": "Associate Software Engineer", "industry": "Fintech", - "cities": ["Austin", "Irving", "Tampa"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35246a" + "$oid": "66723d958f368f285d3040a7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17501,15 +17501,15 @@ "cohort": "37", "jobTitle": "Software Engineer - Associate II", "industry": "Software / Tech", - "cities": ["Fort Wayne", "Madison"], + "cities": ["Garland"], "_id": { - "$oid": "666cbc3240af7b375e35246b" + "$oid": "66723d958f368f285d3040a8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17522,15 +17522,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Portland", "Jacksonville", "Aurora"], + "cities": ["Fresno", "Omaha"], "_id": { - "$oid": "666cbc3240af7b375e35246c" + "$oid": "66723d958f368f285d3040a9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17543,15 +17543,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Tulsa", "Glendale", "Irving"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35246d" + "$oid": "66723d958f368f285d3040aa" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17564,15 +17564,15 @@ "cohort": "29", "jobTitle": "Associate Software Engineer", "industry": "Merchant Services", - "cities": ["Lexington"], + "cities": ["Stockton"], "_id": { - "$oid": "666cbc3240af7b375e35246e" + "$oid": "66723d958f368f285d3040ab" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17585,15 +17585,15 @@ "cohort": "16", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Aurora"], + "cities": ["Santa Ana", "Houston"], "_id": { - "$oid": "666cbc3240af7b375e35246f" + "$oid": "66723d958f368f285d3040ac" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17606,15 +17606,15 @@ "cohort": "50", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Jersey City", "Lincoln", "Buffalo"], + "cities": ["Portland", "Tucson"], "_id": { - "$oid": "666cbc3240af7b375e352470" + "$oid": "66723d958f368f285d3040ad" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17627,15 +17627,15 @@ "cohort": "16", "jobTitle": "Frontend Software Engineer", "industry": "HR Suite", - "cities": ["St. Louis", "Austin", "Chicago", "Garland"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352471" + "$oid": "66723d958f368f285d3040ae" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17648,15 +17648,15 @@ "cohort": "50", "jobTitle": "Software Developer", "industry": "Other", - "cities": ["Plano"], + "cities": ["Santa Ana", "San Diego", "Orlando"], "_id": { - "$oid": "666cbc3240af7b375e352472" + "$oid": "66723d958f368f285d3040af" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17669,15 +17669,15 @@ "cohort": "44", "jobTitle": "Software Engineer", "industry": "Realty", - "cities": ["Norfolk"], + "cities": ["Seattle", "Tucson"], "_id": { - "$oid": "666cbc3240af7b375e352473" + "$oid": "66723d958f368f285d3040b0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17690,15 +17690,15 @@ "cohort": "46", "jobTitle": "Software Engineer I", "industry": "Automotive", - "cities": ["Dallas", "Omaha"], + "cities": ["Baltimore", "Omaha"], "_id": { - "$oid": "666cbc3240af7b375e352474" + "$oid": "66723d958f368f285d3040b1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17711,15 +17711,15 @@ "cohort": "40", "jobTitle": "Senior Software Engineer (SDE II)", "industry": "Adtech", - "cities": ["Mesa"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352475" + "$oid": "66723d958f368f285d3040b2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17732,15 +17732,15 @@ "cohort": "12", "jobTitle": "Senior Full Stack Engineer", "industry": "Fintech", - "cities": ["Denver", "London", "El Paso"], + "cities": ["Colorado Springs", "Irvine", "North Las Vegas"], "_id": { - "$oid": "666cbc3240af7b375e352476" + "$oid": "66723d958f368f285d3040b3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17753,15 +17753,15 @@ "cohort": "32", "jobTitle": "Front End Engineer", "industry": "Real Estate", - "cities": ["Omaha", "Louisville", "Berlin", "Toronto"], + "cities": ["Indianapolis", "Anchorage"], "_id": { - "$oid": "666cbc3240af7b375e352477" + "$oid": "66723d958f368f285d3040b4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17774,15 +17774,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "Tech Consulting", - "cities": ["Columbus"], + "cities": ["Jersey City", "Pittsburgh"], "_id": { - "$oid": "666cbc3240af7b375e352478" + "$oid": "66723d958f368f285d3040b5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17795,15 +17795,15 @@ "cohort": "53", "jobTitle": "Software Engineer", "industry": "Artificial Intelligence", - "cities": ["San Francisco", "Bakersfield", "Plano", "Toledo"], + "cities": ["Los Angeles"], "_id": { - "$oid": "666cbc3240af7b375e352479" + "$oid": "66723d958f368f285d3040b6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17816,15 +17816,15 @@ "cohort": "24", "jobTitle": "Senior Software Engineer, Frontend", "industry": "Sports data science", - "cities": ["Orlando", "St. Petersburg"], + "cities": ["Charlotte", "Anaheim"], "_id": { - "$oid": "666cbc3240af7b375e35247a" + "$oid": "66723d958f368f285d3040b7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17837,15 +17837,15 @@ "cohort": "16", "jobTitle": "Senior Frontend Engineer", "industry": "Ecommerce", - "cities": ["Irvine"], + "cities": ["Kansas City"], "_id": { - "$oid": "666cbc3240af7b375e35247b" + "$oid": "66723d958f368f285d3040b8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17858,15 +17858,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Marketing Technology", - "cities": ["Las Vegas"], + "cities": ["Los Angeles", "Chicago", "Washington"], "_id": { - "$oid": "666cbc3240af7b375e35247c" + "$oid": "66723d958f368f285d3040b9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17879,15 +17879,15 @@ "cohort": "5", "jobTitle": "Software Engineer II", "industry": "Marketing/Advertising", - "cities": ["Los Angeles", "Irvine", "Aurora", "Irving"], + "cities": ["Greensboro"], "_id": { - "$oid": "666cbc3240af7b375e35247d" + "$oid": "66723d958f368f285d3040ba" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17900,15 +17900,15 @@ "cohort": "12", "jobTitle": "Software engineer", "industry": "Real Estate", - "cities": ["San Jose", "Raleigh", "Norfolk"], + "cities": ["Sydney", "Long Beach"], "_id": { - "$oid": "666cbc3240af7b375e35247e" + "$oid": "66723d958f368f285d3040bb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17921,15 +17921,15 @@ "cohort": "37", "jobTitle": "Software Development Engineer II (Front end)", "industry": "Legal Services", - "cities": ["Mexico City", "Irvine", "Virginia Beach", "Reno"], + "cities": ["Albuquerque"], "_id": { - "$oid": "666cbc3240af7b375e35247f" + "$oid": "66723d958f368f285d3040bc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17942,15 +17942,15 @@ "cohort": "50", "jobTitle": "Software Engineer, Applications", "industry": "Healthcare", - "cities": ["Nashville", "Austin", "Gilbert"], + "cities": ["Garland", "Chandler"], "_id": { - "$oid": "666cbc3240af7b375e352480" + "$oid": "66723d958f368f285d3040bd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17963,15 +17963,15 @@ "cohort": "28", "jobTitle": "Software Engineer II", "industry": "Gaming/casino management software", - "cities": ["Buffalo", "Wichita", "St. Petersburg", "Newark"], + "cities": ["Bakersfield", "Tucson", "Oklahoma City"], "_id": { - "$oid": "666cbc3240af7b375e352481" + "$oid": "66723d958f368f285d3040be" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -17984,15 +17984,15 @@ "cohort": "43", "jobTitle": "Web Platform Engineer", "industry": "Retail", - "cities": ["Detroit", "Kansas City", "San Diego"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352482" + "$oid": "66723d958f368f285d3040bf" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18005,15 +18005,15 @@ "cohort": "15", "jobTitle": "Senior Front End Developer", "industry": "Retail", - "cities": ["Wichita", "Louisville"], + "cities": ["St. Petersburg"], "_id": { - "$oid": "666cbc3240af7b375e352483" + "$oid": "66723d958f368f285d3040c0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18026,15 +18026,15 @@ "cohort": "1", "jobTitle": "Backend Engineer", "industry": "Other", - "cities": ["Jacksonville", "New Orleans", "Chesapeake"], + "cities": ["Chula Vista"], "_id": { - "$oid": "666cbc3240af7b375e352484" + "$oid": "66723d958f368f285d3040c1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18047,15 +18047,15 @@ "cohort": "12", "jobTitle": "Software Engineer", "industry": "Retail", - "cities": ["Wichita", "Memphis"], + "cities": ["Plano"], "_id": { - "$oid": "666cbc3240af7b375e352485" + "$oid": "66723d958f368f285d3040c2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18068,15 +18068,15 @@ "cohort": "45", "jobTitle": "Software Engineer II", "industry": "DevSecOps", - "cities": ["Sacramento", "Los Angeles", "Austin"], + "cities": ["Irvine"], "_id": { - "$oid": "666cbc3240af7b375e352486" + "$oid": "66723d958f368f285d3040c3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18089,15 +18089,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Jacksonville", "Sacramento"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352487" + "$oid": "66723d958f368f285d3040c4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18110,15 +18110,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Orlando", "Tucson"], + "cities": ["London", "Jacksonville"], "_id": { - "$oid": "666cbc3240af7b375e352488" + "$oid": "66723d958f368f285d3040c5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18131,15 +18131,15 @@ "cohort": "11", "jobTitle": "Application Developer II", "industry": "Government", - "cities": ["North Las Vegas", "Long Beach"], + "cities": ["Fresno", "Miami"], "_id": { - "$oid": "666cbc3240af7b375e352489" + "$oid": "66723d958f368f285d3040c6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18152,15 +18152,15 @@ "cohort": "11", "jobTitle": "Full stack Engineer", "industry": "Marketing", - "cities": ["Oakland", "Mesa", "Glendale", "Kansas City"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35248a" + "$oid": "66723d958f368f285d3040c7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18173,15 +18173,15 @@ "cohort": "23", "jobTitle": "Web UI Engineer", "industry": "Fintech Consulting", - "cities": ["Cincinnati"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35248b" + "$oid": "66723d958f368f285d3040c8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18194,15 +18194,15 @@ "cohort": "45", "jobTitle": "Integration Engineer", "industry": "Health Care Marketing", - "cities": ["Arlington", "Orlando", "Nashville"], + "cities": ["San Francisco", "Baltimore"], "_id": { - "$oid": "666cbc3240af7b375e35248c" + "$oid": "66723d958f368f285d3040c9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18215,15 +18215,15 @@ "cohort": "32", "jobTitle": "Front End Engineer", "industry": "Software / Tech", - "cities": ["New York", "Plano"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35248d" + "$oid": "66723d958f368f285d3040ca" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18236,15 +18236,15 @@ "cohort": "57", "jobTitle": "Software Engineer", "industry": "Marketing/Advertising", - "cities": ["El Paso", "San Antonio", "Berlin"], + "cities": ["Durham", "Boston", "Sydney"], "_id": { - "$oid": "666cbc3240af7b375e35248e" + "$oid": "66723d958f368f285d3040cb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18257,15 +18257,15 @@ "cohort": "21", "jobTitle": "Software Engineer (Backend)", "industry": "Developer Tools", - "cities": ["Long Beach"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35248f" + "$oid": "66723d958f368f285d3040cc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18278,15 +18278,15 @@ "cohort": "45", "jobTitle": "Full Stack Engineer", "industry": "CRM for law firms", - "cities": ["Laredo", "Toronto"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352490" + "$oid": "66723d958f368f285d3040cd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18299,15 +18299,15 @@ "cohort": "6", "jobTitle": "Software Engineer II", "industry": "Marketing", - "cities": ["Virginia Beach", "Lincoln", "Colorado Springs"], + "cities": ["Aurora", "Beijing", "Indianapolis"], "_id": { - "$oid": "666cbc3240af7b375e352491" + "$oid": "66723d958f368f285d3040ce" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18320,15 +18320,15 @@ "cohort": "40", "jobTitle": "Frontend Engineer", "industry": "Other", - "cities": ["Kansas City", "Scottsdale"], + "cities": ["Tulsa", "Berlin", "Nashville"], "_id": { - "$oid": "666cbc3240af7b375e352492" + "$oid": "66723d958f368f285d3040cf" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18341,15 +18341,15 @@ "cohort": "35", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["Santa Ana", "Fresno"], + "cities": ["St. Petersburg", "Philadelphia"], "_id": { - "$oid": "666cbc3240af7b375e352493" + "$oid": "66723d958f368f285d3040d0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18362,15 +18362,15 @@ "cohort": "16", "jobTitle": "Senior Frontend Engineer", "industry": "Fintech", - "cities": ["St. Petersburg"], + "cities": ["San Jose"], "_id": { - "$oid": "666cbc3240af7b375e352494" + "$oid": "66723d958f368f285d3040d1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18383,15 +18383,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Jacksonville", "Lincoln", "Raleigh"], + "cities": ["Washington", "Seattle"], "_id": { - "$oid": "666cbc3240af7b375e352495" + "$oid": "66723d958f368f285d3040d2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18404,15 +18404,15 @@ "cohort": "52", "jobTitle": "Software Engineer II, Product Experiences", "industry": "Other", - "cities": ["Glendale", "Buffalo", "Irvine"], + "cities": ["Beijing"], "_id": { - "$oid": "666cbc3240af7b375e352496" + "$oid": "66723d958f368f285d3040d3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18425,15 +18425,15 @@ "cohort": "34", "jobTitle": "Full Stack Engineer Co-op (Internship)", "industry": "Automotive", - "cities": ["Irvine", "Greensboro"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352497" + "$oid": "66723d958f368f285d3040d4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18446,15 +18446,15 @@ "cohort": "26", "jobTitle": "Jr. Software Engineer", "industry": "Real Estate", - "cities": ["Philadelphia", "Chula Vista", "Beijing"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352498" + "$oid": "66723d958f368f285d3040d5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18467,15 +18467,15 @@ "cohort": "7", "jobTitle": "Integrations Engineer", "industry": "IT Services", - "cities": ["Charlotte", "Orlando", "Albuquerque", "Irvine"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352499" + "$oid": "66723d958f368f285d3040d6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18488,15 +18488,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Recruiting", - "cities": ["Henderson", "Paris", "Riverside"], + "cities": ["Pittsburgh", "Sรฃo Paulo", "Detroit"], "_id": { - "$oid": "666cbc3240af7b375e35249a" + "$oid": "66723d958f368f285d3040d7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18509,15 +18509,15 @@ "cohort": "7", "jobTitle": "Software Engineer II", "industry": "Software / Tech", - "cities": ["Saint Paul", "Omaha"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35249b" + "$oid": "66723d958f368f285d3040d8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18530,15 +18530,15 @@ "cohort": "42", "jobTitle": "GraphQL Full Stack Developer", "industry": "Paralegal", - "cities": ["Pittsburgh"], + "cities": ["Boston", "Scottsdale", "Raleigh"], "_id": { - "$oid": "666cbc3240af7b375e35249c" + "$oid": "66723d958f368f285d3040d9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18551,15 +18551,15 @@ "cohort": "1", "jobTitle": "GraphQL Full Stack Developer", "industry": "Legal", - "cities": ["Houston"], + "cities": ["Tampa", "Lubbock", "Greensboro"], "_id": { - "$oid": "666cbc3240af7b375e35249d" + "$oid": "66723d958f368f285d3040da" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18572,15 +18572,15 @@ "cohort": "10", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Long Beach"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35249e" + "$oid": "66723d958f368f285d3040db" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18593,15 +18593,15 @@ "cohort": "33", "jobTitle": "Full Stack Developer", "industry": "Other", - "cities": ["Toledo", "Long Beach"], + "cities": ["New York", "Sydney", "San Diego"], "_id": { - "$oid": "666cbc3240af7b375e35249f" + "$oid": "66723d958f368f285d3040dc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18614,15 +18614,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Sacramento", "San Antonio", "Colorado Springs"], + "cities": ["Berlin"], "_id": { - "$oid": "666cbc3240af7b375e3524a0" + "$oid": "66723d958f368f285d3040dd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18635,15 +18635,15 @@ "cohort": "5", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Reno", "Chesapeake"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524a1" + "$oid": "66723d958f368f285d3040de" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18656,15 +18656,15 @@ "cohort": "43", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Stockton"], + "cities": ["Bakersfield", "Chesapeake", "Minneapolis"], "_id": { - "$oid": "666cbc3240af7b375e3524a2" + "$oid": "66723d958f368f285d3040df" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18677,15 +18677,15 @@ "cohort": "50", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Paris", "Jersey City"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524a3" + "$oid": "66723d958f368f285d3040e0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18698,15 +18698,15 @@ "cohort": "43", "jobTitle": "Software engineer", "industry": "Insurance", - "cities": ["Nashville", "Chesapeake"], + "cities": ["London", "Lexington", "Stockton"], "_id": { - "$oid": "666cbc3240af7b375e3524a4" + "$oid": "66723d958f368f285d3040e1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18719,15 +18719,15 @@ "cohort": "7", "jobTitle": "Associate Software Engineer", "industry": "Healthcare", - "cities": ["Anchorage", "Portland", "New York", "Reno"], + "cities": ["Raleigh", "Colorado Springs"], "_id": { - "$oid": "666cbc3240af7b375e3524a5" + "$oid": "66723d958f368f285d3040e2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18740,15 +18740,15 @@ "cohort": "6", "jobTitle": "Software Developer III", "industry": "Software / Tech", - "cities": ["Bakersfield", "Austin", "Berlin"], + "cities": ["Jersey City", "Lexington", "Tokyo"], "_id": { - "$oid": "666cbc3240af7b375e3524a6" + "$oid": "66723d958f368f285d3040e3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18761,15 +18761,15 @@ "cohort": "29", "jobTitle": "Front End Software Engineer", "industry": "Interpreting", - "cities": ["Fort Worth", "Madison", "Fresno", "Sydney"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524a7" + "$oid": "66723d958f368f285d3040e4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18782,15 +18782,15 @@ "cohort": "2", "jobTitle": "Full Stack Software Engineer", "industry": "Professional Networking", - "cities": ["San Diego"], + "cities": ["Pittsburgh", "Buffalo"], "_id": { - "$oid": "666cbc3240af7b375e3524a8" + "$oid": "66723d958f368f285d3040e5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18803,15 +18803,15 @@ "cohort": "16", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Minneapolis", "Scottsdale", "Long Beach"], + "cities": ["Dallas", "Norfolk"], "_id": { - "$oid": "666cbc3240af7b375e3524a9" + "$oid": "66723d958f368f285d3040e6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18824,15 +18824,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Health tech", - "cities": ["Mumbai", "Portland"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524aa" + "$oid": "66723d958f368f285d3040e7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18845,15 +18845,15 @@ "cohort": "11", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Atlanta", "North Las Vegas"], + "cities": ["St. Petersburg", "St. Louis"], "_id": { - "$oid": "666cbc3240af7b375e3524ab" + "$oid": "66723d958f368f285d3040e8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18866,15 +18866,15 @@ "cohort": "42", "jobTitle": "Junior Software Engineer", "industry": "Education/Edtech", - "cities": ["Mumbai", "Toronto"], + "cities": ["Chicago", "Albuquerque"], "_id": { - "$oid": "666cbc3240af7b375e3524ac" + "$oid": "66723d958f368f285d3040e9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18887,15 +18887,15 @@ "cohort": "15", "jobTitle": "Front End Engineer", "industry": "Entertainment", - "cities": ["Durham", "Aurora", "San Francisco"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524ad" + "$oid": "66723d958f368f285d3040ea" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18908,15 +18908,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Beauty/Cosmetic", - "cities": ["Lincoln", "Scottsdale", "Chandler"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524ae" + "$oid": "66723d958f368f285d3040eb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18929,15 +18929,15 @@ "cohort": "44", "jobTitle": "Software Development Engineer", "industry": "Real Estate", - "cities": ["Milwaukee", "Irvine", "Chula Vista"], + "cities": ["Portland", "Fresno"], "_id": { - "$oid": "666cbc3240af7b375e3524af" + "$oid": "66723d958f368f285d3040ec" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18950,15 +18950,15 @@ "cohort": "22", "jobTitle": "Senior Software Engineer", "industry": "Entertainment/education", - "cities": ["Phoenix", "Kansas City", "Lubbock"], + "cities": ["Houston", "Riverside"], "_id": { - "$oid": "666cbc3240af7b375e3524b0" + "$oid": "66723d958f368f285d3040ed" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18971,15 +18971,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "Computer Software", - "cities": ["Irving"], + "cities": ["Arlington", "Colorado Springs"], "_id": { - "$oid": "666cbc3240af7b375e3524b1" + "$oid": "66723d958f368f285d3040ee" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -18992,15 +18992,15 @@ "cohort": "8", "jobTitle": "Software Development Engineer", "industry": "Software (SAAS)", - "cities": ["Sacramento", "El Paso", "North Las Vegas"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524b2" + "$oid": "66723d958f368f285d3040ef" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -19013,15 +19013,15 @@ "cohort": "8", "jobTitle": "Software Development Engineer", "industry": "Entertainment", - "cities": ["Reno", "Atlanta"], + "cities": ["Durham", "Garland", "San Francisco"], "_id": { - "$oid": "666cbc3240af7b375e3524b3" + "$oid": "66723d958f368f285d3040f0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -19034,15 +19034,15 @@ "cohort": "30", "jobTitle": "frontend developer", "industry": "SaaS", - "cities": ["St. Petersburg", "Washington"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524b4" + "$oid": "66723d958f368f285d3040f1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -19055,15 +19055,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "Information Technology & Services", - "cities": ["Anaheim", "Austin", "Irvine"], + "cities": ["North Las Vegas"], "_id": { - "$oid": "666cbc3240af7b375e3524b5" + "$oid": "66723d958f368f285d3040f2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -19076,15 +19076,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Gilbert", "Atlanta", "Tucson", "Tampa"], + "cities": ["Tokyo", "San Antonio", "Louisville"], "_id": { - "$oid": "666cbc3240af7b375e3524b6" + "$oid": "66723d958f368f285d3040f3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -19097,15 +19097,15 @@ "cohort": "52", "jobTitle": "Developer - AI Models Integration", "industry": "Software / Tech", - "cities": ["Scottsdale", "Toronto", "Anchorage"], + "cities": ["Pittsburgh"], "_id": { - "$oid": "666cbc3240af7b375e3524b7" + "$oid": "66723d958f368f285d3040f4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -19118,15 +19118,15 @@ "cohort": "39", "jobTitle": "Associate Software Engineer", "industry": "Other", - "cities": ["Garland", "Philadelphia", "Wichita"], + "cities": ["Beijing"], "_id": { - "$oid": "666cbc3240af7b375e3524b8" + "$oid": "66723d958f368f285d3040f5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -19139,15 +19139,15 @@ "cohort": "5", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Tucson", "Las Vegas", "Sydney"], + "cities": ["Detroit", "Corpus Christi", "Newark"], "_id": { - "$oid": "666cbc3240af7b375e3524b9" + "$oid": "66723d958f368f285d3040f6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -19160,15 +19160,15 @@ "cohort": "12", "jobTitle": "Software Developer 2", "industry": "Security", - "cities": ["Oakland", "Newark"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524ba" + "$oid": "66723d958f368f285d3040f7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.822Z" }, "__v": 0 }, @@ -19181,15 +19181,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "Mental Health", - "cities": ["Detroit", "Memphis", "Indianapolis"], + "cities": ["London"], "_id": { - "$oid": "666cbc3240af7b375e3524bb" + "$oid": "66723d958f368f285d3040f8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19202,15 +19202,15 @@ "cohort": "50", "jobTitle": "Full Stack Developer", "industry": "Software / Tech", - "cities": ["Gilbert", "Fresno"], + "cities": ["Detroit", "Columbus"], "_id": { - "$oid": "666cbc3240af7b375e3524bc" + "$oid": "66723d958f368f285d3040f9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19223,15 +19223,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "Retail", - "cities": ["Santa Ana", "Baltimore", "San Jose", "Denver"], + "cities": ["Buffalo"], "_id": { - "$oid": "666cbc3240af7b375e3524bd" + "$oid": "66723d958f368f285d3040fa" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19244,15 +19244,15 @@ "cohort": "4", "jobTitle": "Front-End Engineer (six month contract-to-hire)", "industry": "Artificial Intelligence/Machine Learning", - "cities": ["Jersey City", "Fort Worth", "Chicago"], + "cities": ["Madison", "Paris"], "_id": { - "$oid": "666cbc3240af7b375e3524be" + "$oid": "66723d958f368f285d3040fb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19265,15 +19265,15 @@ "cohort": "9", "jobTitle": "Software Developer II", "industry": "Security", - "cities": ["Philadelphia", "Laredo", "Columbus"], + "cities": ["Long Beach", "Henderson"], "_id": { - "$oid": "666cbc3240af7b375e3524bf" + "$oid": "66723d958f368f285d3040fc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19286,15 +19286,15 @@ "cohort": "23", "jobTitle": "Frontend Engineer", "industry": "Food Industry", - "cities": ["Chula Vista", "Long Beach", "Tampa"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524c0" + "$oid": "66723d958f368f285d3040fd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19307,15 +19307,15 @@ "cohort": "21", "jobTitle": "Senior Software Engineer", "industry": "Supply Chain Management", - "cities": ["Miami"], + "cities": ["Durham"], "_id": { - "$oid": "666cbc3240af7b375e3524c1" + "$oid": "66723d958f368f285d3040fe" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19328,15 +19328,15 @@ "cohort": "6", "jobTitle": "Software Engineer II", "industry": "Automotive", - "cities": ["Jacksonville", "Berlin"], + "cities": ["Columbus", "Gilbert"], "_id": { - "$oid": "666cbc3240af7b375e3524c2" + "$oid": "66723d958f368f285d3040ff" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19349,15 +19349,15 @@ "cohort": "33", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Paris"], + "cities": ["Scottsdale", "Tucson", "Austin"], "_id": { - "$oid": "666cbc3240af7b375e3524c3" + "$oid": "66723d958f368f285d304100" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19370,15 +19370,15 @@ "cohort": "21", "jobTitle": "Full Stack Engineer", "industry": "Marketing", - "cities": ["Chicago", "North Las Vegas"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524c4" + "$oid": "66723d958f368f285d304101" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19391,15 +19391,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Media/Entertainment", - "cities": ["New York", "Tulsa", "Kansas City"], + "cities": ["Fort Worth", "Charlotte"], "_id": { - "$oid": "666cbc3240af7b375e3524c5" + "$oid": "66723d958f368f285d304102" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19412,15 +19412,15 @@ "cohort": "31", "jobTitle": "Front-End Software Engineer", "industry": "Augmented Reality", - "cities": ["Tulsa", "Albuquerque", "Colorado Springs", "Las Vegas"], + "cities": ["Arlington"], "_id": { - "$oid": "666cbc3240af7b375e3524c6" + "$oid": "66723d958f368f285d304103" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19433,15 +19433,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Winston-Salem", "New Orleans", "Santa Ana"], + "cities": ["Pittsburgh", "Albuquerque"], "_id": { - "$oid": "666cbc3240af7b375e3524c7" + "$oid": "66723d958f368f285d304104" }, "createdAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.251Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19454,15 +19454,15 @@ "cohort": "37", "jobTitle": "Front End Software Development Engineer", "industry": "Adtech", - "cities": ["Orlando", "Plano", "Nashville"], + "cities": ["Tampa"], "_id": { - "$oid": "666cbc3240af7b375e3524c8" + "$oid": "66723d958f368f285d304105" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19475,15 +19475,15 @@ "cohort": "47", "jobTitle": "SWE II", "industry": "Marketing/financial management", - "cities": ["Saint Paul"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524c9" + "$oid": "66723d958f368f285d304106" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19496,15 +19496,15 @@ "cohort": "6", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Glendale", "Irving"], + "cities": ["Anchorage"], "_id": { - "$oid": "666cbc3240af7b375e3524ca" + "$oid": "66723d958f368f285d304107" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19517,15 +19517,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "E-commerce", - "cities": ["Milwaukee", "Scottsdale"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524cb" + "$oid": "66723d958f368f285d304108" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19538,15 +19538,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Sports", - "cities": ["Madison", "Fort Worth", "San Antonio", "Berlin"], + "cities": ["Charlotte"], "_id": { - "$oid": "666cbc3240af7b375e3524cc" + "$oid": "66723d958f368f285d304109" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19559,15 +19559,15 @@ "cohort": "13", "jobTitle": "Senior Software Engineer", "industry": "Hardware manufacturer (3d printers)", - "cities": ["Fort Wayne", "Anchorage", "Toledo"], + "cities": ["Mesa", "Honolulu"], "_id": { - "$oid": "666cbc3240af7b375e3524cd" + "$oid": "66723d958f368f285d30410a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19580,15 +19580,15 @@ "cohort": "10", "jobTitle": "Software Developer", "industry": "Real Estate", - "cities": ["San Jose", "Reno"], + "cities": ["Miami", "Kansas City"], "_id": { - "$oid": "666cbc3240af7b375e3524ce" + "$oid": "66723d958f368f285d30410b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19601,15 +19601,15 @@ "cohort": "52", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Nashville", "Tucson", "Sacramento", "Stockton"], + "cities": ["Mumbai"], "_id": { - "$oid": "666cbc3240af7b375e3524cf" + "$oid": "66723d958f368f285d30410c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19622,15 +19622,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Artificial Intelligence", - "cities": ["Houston", "Fresno"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524d0" + "$oid": "66723d958f368f285d30410d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19643,15 +19643,15 @@ "cohort": "22", "jobTitle": "Full stack Engineer", "industry": "Fintech", - "cities": ["Fort Wayne", "St. Louis", "Long Beach"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524d1" + "$oid": "66723d958f368f285d30410e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19664,15 +19664,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Colorado Springs", "San Diego", "Riverside"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524d2" + "$oid": "66723d958f368f285d30410f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19685,15 +19685,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "HealthTech", - "cities": ["Atlanta", "Gilbert", "Sรฃo Paulo", "Stockton"], + "cities": ["Stockton"], "_id": { - "$oid": "666cbc3240af7b375e3524d3" + "$oid": "66723d958f368f285d304110" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19706,15 +19706,15 @@ "cohort": "2", "jobTitle": "Senior Software Engineer", "industry": "Blockchain/Web3", - "cities": ["Plano"], + "cities": ["Toronto", "Virginia Beach", "Milwaukee"], "_id": { - "$oid": "666cbc3240af7b375e3524d4" + "$oid": "66723d958f368f285d304111" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19727,15 +19727,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "Fitness Center Saas", - "cities": ["Tucson"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524d5" + "$oid": "66723d958f368f285d304112" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19748,15 +19748,15 @@ "cohort": "12", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Durham", "Toledo", "Tulsa", "Indianapolis"], + "cities": ["Memphis", "St. Louis", "Greensboro"], "_id": { - "$oid": "666cbc3240af7b375e3524d6" + "$oid": "66723d958f368f285d304113" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19769,15 +19769,15 @@ "cohort": "20", "jobTitle": "Software Engineer", "industry": "Law Enforcement", - "cities": ["Anaheim", "Washington", "Honolulu"], + "cities": ["St. Louis"], "_id": { - "$oid": "666cbc3240af7b375e3524d7" + "$oid": "66723d958f368f285d304114" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19790,15 +19790,15 @@ "cohort": "12", "jobTitle": "Software engineer", "industry": "Itโ€™s software for first responders, not sure what industry that is", - "cities": ["Philadelphia", "Fort Worth", "Albuquerque", "Columbus"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524d8" + "$oid": "66723d958f368f285d304115" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19811,15 +19811,15 @@ "cohort": "30", "jobTitle": "Developer", "industry": "Insurance", - "cities": ["Madison", "Virginia Beach", "Chicago", "Mexico City"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524d9" + "$oid": "66723d958f368f285d304116" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19832,15 +19832,15 @@ "cohort": "4", "jobTitle": "React Software Engineer", "industry": "FinTech", - "cities": ["Mexico City", "Lexington"], + "cities": ["Portland", "Pittsburgh"], "_id": { - "$oid": "666cbc3240af7b375e3524da" + "$oid": "66723d958f368f285d304117" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19853,15 +19853,15 @@ "cohort": "24", "jobTitle": "Fullstack Developer", "industry": "Financial Services/Insurance", - "cities": ["Wichita", "Reno", "Paris", "Tampa"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524db" + "$oid": "66723d958f368f285d304118" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19874,15 +19874,15 @@ "cohort": "30", "jobTitle": "Full Stack Developer", "industry": "Insurance", - "cities": ["Glendale", "Tokyo", "New Orleans", "Denver"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524dc" + "$oid": "66723d958f368f285d304119" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19895,15 +19895,15 @@ "cohort": "11", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Fresno", "Fort Wayne", "Stockton"], + "cities": ["Orlando"], "_id": { - "$oid": "666cbc3240af7b375e3524dd" + "$oid": "66723d958f368f285d30411a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19916,15 +19916,15 @@ "cohort": "14", "jobTitle": "JavaScript Engineer", "industry": "Payment card", - "cities": ["Houston", "Reno", "Riverside", "Philadelphia"], + "cities": ["Las Vegas", "Oakland", "Boston"], "_id": { - "$oid": "666cbc3240af7b375e3524de" + "$oid": "66723d958f368f285d30411b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19937,15 +19937,15 @@ "cohort": "40", "jobTitle": "Software Engineer", "industry": "Automotive", - "cities": ["Louisville"], + "cities": ["London"], "_id": { - "$oid": "666cbc3240af7b375e3524df" + "$oid": "66723d958f368f285d30411c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19958,15 +19958,15 @@ "cohort": "9", "jobTitle": "Full Stack Software Engineer", "industry": "Automotive", - "cities": ["San Jose"], + "cities": ["Bakersfield", "Gilbert"], "_id": { - "$oid": "666cbc3240af7b375e3524e0" + "$oid": "66723d958f368f285d30411d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -19979,15 +19979,15 @@ "cohort": "7", "jobTitle": "Senior Full Stack Engineer", "industry": "Automotive", - "cities": ["Tampa", "Saint Paul", "Mumbai"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524e1" + "$oid": "66723d958f368f285d30411e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20000,15 +20000,15 @@ "cohort": "30", "jobTitle": "Front End Engineer", "industry": "Psychedelic Health", - "cities": ["Denver", "Pittsburgh", "Fort Wayne"], + "cities": ["Chicago", "Aurora", "Berlin"], "_id": { - "$oid": "666cbc3240af7b375e3524e2" + "$oid": "66723d958f368f285d30411f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20021,15 +20021,15 @@ "cohort": "18", "jobTitle": "Full Stack Engineer", "industry": "Design", - "cities": ["Nashville"], + "cities": ["Houston", "Kansas City", "Charlotte"], "_id": { - "$oid": "666cbc3240af7b375e3524e3" + "$oid": "66723d958f368f285d304120" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20042,15 +20042,15 @@ "cohort": "34", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Nashville", "Colorado Springs"], + "cities": ["Cincinnati", "Columbus"], "_id": { - "$oid": "666cbc3240af7b375e3524e4" + "$oid": "66723d958f368f285d304121" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20063,15 +20063,15 @@ "cohort": "46", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Plano", "Kansas City", "Sรฃo Paulo"], + "cities": ["Jersey City"], "_id": { - "$oid": "666cbc3240af7b375e3524e5" + "$oid": "66723d958f368f285d304122" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20084,15 +20084,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Consulting and technology services", - "cities": ["New York", "Henderson", "Irvine", "Bakersfield"], + "cities": ["Raleigh", "Boston"], "_id": { - "$oid": "666cbc3240af7b375e3524e6" + "$oid": "66723d958f368f285d304123" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20105,15 +20105,15 @@ "cohort": "8", "jobTitle": "Engineer I", "industry": "Consulting", - "cities": ["Chicago", "Sรฃo Paulo", "Greensboro", "New York"], + "cities": ["Detroit", "Corpus Christi"], "_id": { - "$oid": "666cbc3240af7b375e3524e7" + "$oid": "66723d958f368f285d304124" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20126,15 +20126,15 @@ "cohort": "51", "jobTitle": "Software Engineer", "industry": "Consulting", - "cities": ["Cincinnati", "Riverside"], + "cities": ["Kansas City", "Buffalo", "Detroit"], "_id": { - "$oid": "666cbc3240af7b375e3524e8" + "$oid": "66723d958f368f285d304125" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20147,15 +20147,15 @@ "cohort": "7", "jobTitle": "Software Engineer", "industry": "Fintech, Payment Processing", - "cities": ["San Francisco"], + "cities": ["Greensboro", "Chandler", "Reno"], "_id": { - "$oid": "666cbc3240af7b375e3524e9" + "$oid": "66723d958f368f285d304126" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20168,15 +20168,15 @@ "cohort": "33", "jobTitle": "Full Stack Engineer", "industry": "Gaming", - "cities": ["London", "Saint Paul", "Seattle"], + "cities": ["Tucson"], "_id": { - "$oid": "666cbc3240af7b375e3524ea" + "$oid": "66723d958f368f285d304127" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20189,15 +20189,15 @@ "cohort": "38", "jobTitle": "Creative Technologist", "industry": "Digital Production", - "cities": ["Plano", "Virginia Beach", "Houston"], + "cities": ["Pittsburgh", "Bakersfield"], "_id": { - "$oid": "666cbc3240af7b375e3524eb" + "$oid": "66723d958f368f285d304128" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20210,15 +20210,15 @@ "cohort": "28", "jobTitle": "Senior Software Engineer", "industry": "Advertising & Marketing", - "cities": ["Arlington", "Riverside"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524ec" + "$oid": "66723d958f368f285d304129" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20231,15 +20231,15 @@ "cohort": "16", "jobTitle": "Fullstack Developer", "industry": "Healthtech/Healthcare", - "cities": ["Corpus Christi", "Arlington", "San Jose"], + "cities": ["Laredo", "Louisville", "Fort Wayne"], "_id": { - "$oid": "666cbc3240af7b375e3524ed" + "$oid": "66723d958f368f285d30412a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20252,15 +20252,15 @@ "cohort": "4", "jobTitle": "Frontend Engineer", "industry": "", - "cities": ["Austin", "Stockton", "Scottsdale", "Winston-Salem"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524ee" + "$oid": "66723d958f368f285d30412b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20273,15 +20273,15 @@ "cohort": "18", "jobTitle": "Senior Full Stack Engineer, Trust & Safety", "industry": "Online publishing platform", - "cities": ["Cincinnati"], + "cities": ["Milwaukee"], "_id": { - "$oid": "666cbc3240af7b375e3524ef" + "$oid": "66723d958f368f285d30412c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20294,15 +20294,15 @@ "cohort": "14", "jobTitle": "Software Engineer I", "industry": "Healthcare", - "cities": ["Indianapolis"], + "cities": ["Denver", "Newark"], "_id": { - "$oid": "666cbc3240af7b375e3524f0" + "$oid": "66723d958f368f285d30412d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20315,15 +20315,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "", - "cities": ["New Orleans", "Cincinnati"], + "cities": ["Riverside"], "_id": { - "$oid": "666cbc3240af7b375e3524f1" + "$oid": "66723d958f368f285d30412e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20336,15 +20336,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "Digital Media Intelligence", - "cities": ["Berlin", "Lincoln", "Washington", "Toledo"], + "cities": ["Greensboro", "Sรฃo Paulo", "Winston-Salem"], "_id": { - "$oid": "666cbc3240af7b375e3524f2" + "$oid": "66723d958f368f285d30412f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20357,15 +20357,15 @@ "cohort": "42", "jobTitle": "Backend software engineer level 2", "industry": "Software as a Service", - "cities": ["Garland", "London", "St. Petersburg"], + "cities": ["Garland", "St. Petersburg", "Dallas"], "_id": { - "$oid": "666cbc3240af7b375e3524f3" + "$oid": "66723d958f368f285d304130" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20378,15 +20378,15 @@ "cohort": "17", "jobTitle": "Advanced Software Developer", "industry": "Healthcare", - "cities": ["Fort Worth", "Anaheim", "North Las Vegas"], + "cities": ["Anaheim"], "_id": { - "$oid": "666cbc3240af7b375e3524f4" + "$oid": "66723d958f368f285d304131" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20399,15 +20399,15 @@ "cohort": "5", "jobTitle": "Bioinformatics Software Engineer I", "industry": "Healthcare", - "cities": ["Seattle", "London", "Buffalo", "Tokyo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524f5" + "$oid": "66723d958f368f285d304132" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20420,15 +20420,15 @@ "cohort": "16", "jobTitle": "Frontend Software Engineer", "industry": "Health", - "cities": ["Pittsburgh", "Paris", "Tucson", "St. Petersburg"], + "cities": ["Baltimore", "Henderson"], "_id": { - "$oid": "666cbc3240af7b375e3524f6" + "$oid": "66723d958f368f285d304133" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20441,15 +20441,15 @@ "cohort": "3", "jobTitle": "Software Engineer II", "industry": "Healthcare", - "cities": ["Philadelphia", "Toronto", "San Francisco", "Honolulu"], + "cities": ["London"], "_id": { - "$oid": "666cbc3240af7b375e3524f7" + "$oid": "66723d958f368f285d304134" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20462,15 +20462,15 @@ "cohort": "15", "jobTitle": "Lead Fullstack Engineer", "industry": "HR", - "cities": ["St. Petersburg", "Corpus Christi", "Atlanta", "Wichita"], + "cities": ["Louisville", "North Las Vegas"], "_id": { - "$oid": "666cbc3240af7b375e3524f8" + "$oid": "66723d958f368f285d304135" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20483,15 +20483,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Sacramento", "Washington", "Irving", "San Antonio"], + "cities": ["Durham"], "_id": { - "$oid": "666cbc3240af7b375e3524f9" + "$oid": "66723d958f368f285d304136" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20504,15 +20504,15 @@ "cohort": "9", "jobTitle": "Senior Full Stack Engineer", "industry": "Software / Tech", - "cities": ["Orlando"], + "cities": ["Madison"], "_id": { - "$oid": "666cbc3240af7b375e3524fa" + "$oid": "66723d958f368f285d304137" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20525,15 +20525,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Mumbai", "Oakland", "Santa Ana"], + "cities": ["Louisville", "London", "Toronto"], "_id": { - "$oid": "666cbc3240af7b375e3524fb" + "$oid": "66723d958f368f285d304138" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20546,15 +20546,15 @@ "cohort": "42", "jobTitle": "Software Engineer", "industry": "Media Agency", - "cities": ["Virginia Beach", "Baltimore"], + "cities": ["Phoenix", "Chula Vista", "Portland"], "_id": { - "$oid": "666cbc3240af7b375e3524fc" + "$oid": "66723d958f368f285d304139" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20567,15 +20567,15 @@ "cohort": "15", "jobTitle": "Junior Web Developer", "industry": "Marketing", - "cities": ["Columbus"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524fd" + "$oid": "66723d958f368f285d30413a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20588,15 +20588,15 @@ "cohort": "2", "jobTitle": "Partner Engineer", "industry": "Fintech", - "cities": ["Riverside"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524fe" + "$oid": "66723d958f368f285d30413b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20609,15 +20609,15 @@ "cohort": "0", "jobTitle": "Data Engineer", "industry": "Social Media + VR", - "cities": ["Las Vegas", "Fresno"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3524ff" + "$oid": "66723d958f368f285d30413c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20630,15 +20630,15 @@ "cohort": "16", "jobTitle": "Software Engineer", "industry": "Technology", - "cities": ["Durham", "Las Vegas", "Lubbock"], + "cities": ["Detroit"], "_id": { - "$oid": "666cbc3240af7b375e352500" + "$oid": "66723d958f368f285d30413d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20651,15 +20651,15 @@ "cohort": "14", "jobTitle": "Software engineer - E4", "industry": "", - "cities": ["Berlin"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352501" + "$oid": "66723d958f368f285d30413e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20672,15 +20672,15 @@ "cohort": "48", "jobTitle": "Software Engineer", "industry": "Research", - "cities": ["Indianapolis", "Pittsburgh", "Oklahoma City"], + "cities": ["Durham"], "_id": { - "$oid": "666cbc3240af7b375e352502" + "$oid": "66723d958f368f285d30413f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20693,15 +20693,15 @@ "cohort": "16", "jobTitle": "Software Engineer", "industry": "Information Technology & Services", - "cities": ["Atlanta"], + "cities": ["Henderson"], "_id": { - "$oid": "666cbc3240af7b375e352503" + "$oid": "66723d958f368f285d304140" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20714,15 +20714,15 @@ "cohort": "13", "jobTitle": "Frontend Software Engineer", "industry": "Agriculture Science", - "cities": ["Tucson", "Scottsdale"], + "cities": ["Bakersfield", "Milwaukee"], "_id": { - "$oid": "666cbc3240af7b375e352504" + "$oid": "66723d958f368f285d304141" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20735,15 +20735,15 @@ "cohort": "20", "jobTitle": "Software Engineer II", "industry": "Software", - "cities": ["Detroit", "Sacramento", "Phoenix", "Toledo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352505" + "$oid": "66723d958f368f285d304142" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20756,15 +20756,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Colorado Springs"], + "cities": ["Sacramento", "Louisville"], "_id": { - "$oid": "666cbc3240af7b375e352506" + "$oid": "66723d958f368f285d304143" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20777,15 +20777,15 @@ "cohort": "31", "jobTitle": "UI Engineer", "industry": "Tech", - "cities": ["Omaha", "Laredo", "Charlotte", "Chicago"], + "cities": ["Oklahoma City", "Seattle", "El Paso"], "_id": { - "$oid": "666cbc3240af7b375e352507" + "$oid": "66723d958f368f285d304144" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20798,15 +20798,15 @@ "cohort": "40", "jobTitle": "Software Engineer ll", "industry": "Computer Software", - "cities": ["Indianapolis", "Miami"], + "cities": ["Miami", "Chicago", "Paris"], "_id": { - "$oid": "666cbc3240af7b375e352508" + "$oid": "66723d958f368f285d304145" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20819,15 +20819,15 @@ "cohort": "19", "jobTitle": "Software Engineer", "industry": "Cloud", - "cities": ["Saint Paul", "New Orleans", "Portland"], + "cities": ["Louisville", "Anchorage", "Oakland"], "_id": { - "$oid": "666cbc3240af7b375e352509" + "$oid": "66723d958f368f285d304146" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20840,15 +20840,15 @@ "cohort": "15", "jobTitle": "Software Engineer, Contract", "industry": "tech", - "cities": ["Omaha", "Gilbert", "Memphis"], + "cities": ["Norfolk", "Buffalo", "Madison"], "_id": { - "$oid": "666cbc3240af7b375e35250a" + "$oid": "66723d958f368f285d304147" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20861,15 +20861,15 @@ "cohort": "53", "jobTitle": "Senior Automation Engineer", "industry": "Gaming", - "cities": ["Tucson", "Mexico City", "Denver", "Anchorage"], + "cities": ["St. Louis", "Columbus"], "_id": { - "$oid": "666cbc3240af7b375e35250b" + "$oid": "66723d958f368f285d304148" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20882,15 +20882,15 @@ "cohort": "43", "jobTitle": "Cloud Support Engineer", "industry": "IT Services", - "cities": ["Anchorage", "Garland", "Anaheim"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35250c" + "$oid": "66723d958f368f285d304149" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20903,15 +20903,15 @@ "cohort": "15", "jobTitle": "Software Engineer Apprentice (LEAP Program)", "industry": "Computer Technology", - "cities": ["El Paso", "Scottsdale"], + "cities": ["Washington", "Lubbock"], "_id": { - "$oid": "666cbc3240af7b375e35250d" + "$oid": "66723d958f368f285d30414a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20924,15 +20924,15 @@ "cohort": "19", "jobTitle": "Technical Program Manager", "industry": "Technology", - "cities": ["Houston", "Charlotte", "Lexington"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35250e" + "$oid": "66723d958f368f285d30414b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20945,15 +20945,15 @@ "cohort": "32", "jobTitle": "Software Development Engineer", "industry": "Cloud computing", - "cities": ["Saint Paul", "Kansas City", "Tokyo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35250f" + "$oid": "66723d958f368f285d30414c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20966,15 +20966,15 @@ "cohort": "20", "jobTitle": "Software Engineer", "industry": "Cloud Storage", - "cities": ["Detroit", "Philadelphia", "Louisville"], + "cities": ["Colorado Springs"], "_id": { - "$oid": "666cbc3240af7b375e352510" + "$oid": "66723d958f368f285d30414d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -20987,15 +20987,15 @@ "cohort": "40", "jobTitle": "React/react native/full stack engineer", "industry": "Device payment system", - "cities": ["New Orleans"], + "cities": ["Berlin", "San Jose"], "_id": { - "$oid": "666cbc3240af7b375e352511" + "$oid": "66723d958f368f285d30414e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21008,15 +21008,15 @@ "cohort": "19", "jobTitle": "Software Engineer", "industry": "Computer Software", - "cities": ["Sรฃo Paulo"], + "cities": ["Honolulu", "Saint Paul"], "_id": { - "$oid": "666cbc3240af7b375e352512" + "$oid": "66723d958f368f285d30414f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21029,15 +21029,15 @@ "cohort": "12", "jobTitle": "Software Engineer", "industry": "Consumer Services", - "cities": ["Seattle"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352513" + "$oid": "66723d958f368f285d304150" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21050,15 +21050,15 @@ "cohort": "8", "jobTitle": "Technical Solutions Engineer", "industry": "Insurance/ cybersecurity", - "cities": ["North Las Vegas", "Anchorage"], + "cities": ["Philadelphia", "Albuquerque", "Dallas"], "_id": { - "$oid": "666cbc3240af7b375e352514" + "$oid": "66723d958f368f285d304151" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21071,15 +21071,15 @@ "cohort": "32", "jobTitle": "Senior Software Engineer", "industry": "Security", - "cities": ["Mesa", "Tokyo", "Tampa"], + "cities": ["Boston", "Laredo"], "_id": { - "$oid": "666cbc3240af7b375e352515" + "$oid": "66723d958f368f285d304152" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21092,15 +21092,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "Fitness Tech", - "cities": ["Orlando", "Wichita", "Sydney"], + "cities": ["Kansas City", "Detroit", "Mumbai"], "_id": { - "$oid": "666cbc3240af7b375e352516" + "$oid": "66723d958f368f285d304153" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21113,15 +21113,15 @@ "cohort": "7", "jobTitle": "Software Engineer I", "industry": "Fitness/Wellness", - "cities": ["Fort Worth"], + "cities": ["Riverside", "Norfolk", "Reno"], "_id": { - "$oid": "666cbc3240af7b375e352517" + "$oid": "66723d958f368f285d304154" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21134,15 +21134,15 @@ "cohort": "36", "jobTitle": "Junior Software Engineer", "industry": "Software / Tech", - "cities": ["Madison", "Jacksonville", "Newark", "Santa Ana"], + "cities": ["Baltimore", "Mexico City", "Paris"], "_id": { - "$oid": "666cbc3240af7b375e352518" + "$oid": "66723d958f368f285d304155" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21155,15 +21155,15 @@ "cohort": "6", "jobTitle": "Software Engineer I, Full Stack", "industry": "Healthcare", - "cities": ["Beijing", "Toronto", "Fort Worth", "Memphis"], + "cities": ["Long Beach", "Arlington", "Houston"], "_id": { - "$oid": "666cbc3240af7b375e352519" + "$oid": "66723d958f368f285d304156" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21176,15 +21176,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "Education", - "cities": ["Philadelphia", "Colorado Springs", "Boston", "Omaha"], + "cities": ["Lubbock", "Sacramento"], "_id": { - "$oid": "666cbc3240af7b375e35251a" + "$oid": "66723d958f368f285d304157" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21197,15 +21197,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Portland", "Tulsa"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35251b" + "$oid": "66723d958f368f285d304158" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21218,15 +21218,15 @@ "cohort": "49", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Norfolk", "Colorado Springs", "Fort Wayne", "Lexington"], + "cities": ["Albuquerque"], "_id": { - "$oid": "666cbc3240af7b375e35251c" + "$oid": "66723d958f368f285d304159" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21239,15 +21239,15 @@ "cohort": "21", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["Fort Worth", "Toledo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35251d" + "$oid": "66723d958f368f285d30415a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21260,15 +21260,15 @@ "cohort": "25", "jobTitle": "React Developer", "industry": "Health Care Media", - "cities": ["Nashville", "Durham", "El Paso"], + "cities": ["Santa Ana", "Sรฃo Paulo", "Atlanta"], "_id": { - "$oid": "666cbc3240af7b375e35251e" + "$oid": "66723d958f368f285d30415b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21281,15 +21281,15 @@ "cohort": "19", "jobTitle": "Senior Software Developer", "industry": "Marketing", - "cities": ["Baltimore"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35251f" + "$oid": "66723d958f368f285d30415c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21302,15 +21302,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Advertising", - "cities": ["Nashville", "New York", "Jacksonville"], + "cities": ["Winston-Salem"], "_id": { - "$oid": "666cbc3240af7b375e352520" + "$oid": "66723d958f368f285d30415d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21323,15 +21323,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Advertising", - "cities": ["Louisville", "Norfolk", "Irvine", "Glendale"], + "cities": ["Cleveland", "Lexington", "Miami"], "_id": { - "$oid": "666cbc3240af7b375e352521" + "$oid": "66723d958f368f285d30415e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21344,15 +21344,15 @@ "cohort": "58", "jobTitle": "Fullstack Software Engineer", "industry": "Other", - "cities": ["Dallas", "Glendale", "Tokyo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352522" + "$oid": "66723d958f368f285d30415f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21365,15 +21365,15 @@ "cohort": "10", "jobTitle": "Sr. Software eng", "industry": "Entertainment", - "cities": ["New York", "Glendale"], + "cities": ["Pittsburgh", "Chicago"], "_id": { - "$oid": "666cbc3240af7b375e352523" + "$oid": "66723d958f368f285d304160" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21386,15 +21386,15 @@ "cohort": "23", "jobTitle": "Software Engineer II", "industry": "Tech?", - "cities": ["Minneapolis", "Las Vegas", "Buffalo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352524" + "$oid": "66723d958f368f285d304161" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21407,15 +21407,15 @@ "cohort": "19", "jobTitle": "", "industry": "Healthcare", - "cities": ["Tucson", "Louisville"], + "cities": ["Washington"], "_id": { - "$oid": "666cbc3240af7b375e352525" + "$oid": "66723d958f368f285d304162" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21428,15 +21428,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Washington", "Pittsburgh"], + "cities": ["London"], "_id": { - "$oid": "666cbc3240af7b375e352526" + "$oid": "66723d958f368f285d304163" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21449,15 +21449,15 @@ "cohort": "1", "jobTitle": "Senior Software Engineer", "industry": "Finance", - "cities": ["Greensboro", "Columbus"], + "cities": ["Detroit", "Anchorage", "Cleveland"], "_id": { - "$oid": "666cbc3240af7b375e352527" + "$oid": "66723d958f368f285d304164" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21470,15 +21470,15 @@ "cohort": "13", "jobTitle": "Software Developer", "industry": "Finance", - "cities": ["Mesa", "Honolulu", "Aurora"], + "cities": ["Saint Paul"], "_id": { - "$oid": "666cbc3240af7b375e352528" + "$oid": "66723d958f368f285d304165" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.823Z" }, "__v": 0 }, @@ -21491,15 +21491,15 @@ "cohort": "27", "jobTitle": "Software Engineer II", "industry": "Decision Intelligence", - "cities": ["Garland", "Charlotte", "Seattle", "Las Vegas"], + "cities": ["Miami", "Washington", "Beijing"], "_id": { - "$oid": "666cbc3240af7b375e352529" + "$oid": "66723d958f368f285d304166" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21512,15 +21512,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Freight", - "cities": ["Albuquerque", "Kansas City"], + "cities": ["Sรฃo Paulo"], "_id": { - "$oid": "666cbc3240af7b375e35252a" + "$oid": "66723d958f368f285d304167" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21533,15 +21533,15 @@ "cohort": "25", "jobTitle": "Cloud Developer", "industry": "Automotive", - "cities": ["New York", "Tokyo"], + "cities": ["Sรฃo Paulo", "Greensboro"], "_id": { - "$oid": "666cbc3240af7b375e35252b" + "$oid": "66723d958f368f285d304168" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21554,15 +21554,15 @@ "cohort": "30", "jobTitle": "Mid Software Engineer", "industry": "Health Communications", - "cities": ["Anchorage"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35252c" + "$oid": "66723d958f368f285d304169" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21575,15 +21575,15 @@ "cohort": "20", "jobTitle": "UI Developer", "industry": "Data Consumer", - "cities": ["Greensboro", "Sacramento", "Buffalo", "Laredo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35252d" + "$oid": "66723d958f368f285d30416a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21596,15 +21596,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Philadelphia"], + "cities": ["Austin", "Lexington", "Colorado Springs"], "_id": { - "$oid": "666cbc3240af7b375e35252e" + "$oid": "66723d958f368f285d30416b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21617,15 +21617,15 @@ "cohort": "5", "jobTitle": "Associate Engineer", "industry": "Fintech", - "cities": ["Kansas City", "Lexington", "Aurora"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35252f" + "$oid": "66723d958f368f285d30416c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21638,15 +21638,15 @@ "cohort": "19", "jobTitle": "Product Manager, Growth", "industry": "Entertainment", - "cities": ["Scottsdale"], + "cities": ["Toronto", "Jacksonville"], "_id": { - "$oid": "666cbc3240af7b375e352530" + "$oid": "66723d958f368f285d30416d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21659,15 +21659,15 @@ "cohort": "35", "jobTitle": "Full Stack Developer", "industry": "Other", - "cities": ["Greensboro", "Louisville", "Henderson"], + "cities": ["Denver"], "_id": { - "$oid": "666cbc3240af7b375e352531" + "$oid": "66723d958f368f285d30416e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21680,15 +21680,15 @@ "cohort": "9", "jobTitle": "Full-Stack Software Engineer", "industry": "Media", - "cities": ["Beijing", "Saint Paul", "New Orleans", "St. Louis"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352532" + "$oid": "66723d958f368f285d30416f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21701,15 +21701,15 @@ "cohort": "40", "jobTitle": "Front end Software engineer (mid-sr)", "industry": "Fintech", - "cities": ["Irvine"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352533" + "$oid": "66723d958f368f285d304170" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21722,15 +21722,15 @@ "cohort": "35", "jobTitle": "Backend JavaScript Engineer", "industry": "Fintech", - "cities": ["Albuquerque", "Jersey City", "San Diego", "Berlin"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352534" + "$oid": "66723d958f368f285d304171" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21743,15 +21743,15 @@ "cohort": "6", "jobTitle": "Senior Full Stack Developer", "industry": "Digital Advertising", - "cities": ["Fort Worth", "Laredo", "Honolulu", "El Paso"], + "cities": ["Paris", "Tulsa"], "_id": { - "$oid": "666cbc3240af7b375e352535" + "$oid": "66723d958f368f285d304172" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21764,15 +21764,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "SaaS / HR startup", - "cities": ["Dallas", "Tokyo", "Newark", "Corpus Christi"], + "cities": ["Seattle", "Chesapeake", "Norfolk"], "_id": { - "$oid": "666cbc3240af7b375e352536" + "$oid": "66723d958f368f285d304173" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21785,15 +21785,15 @@ "cohort": "40", "jobTitle": "Solutions Engineer", "industry": "Fintech", - "cities": ["Detroit"], + "cities": ["Stockton"], "_id": { - "$oid": "666cbc3240af7b375e352537" + "$oid": "66723d958f368f285d304174" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21806,15 +21806,15 @@ "cohort": "17", "jobTitle": "Software Engineer", "industry": "E-commerce", - "cities": ["Cincinnati"], + "cities": ["St. Louis"], "_id": { - "$oid": "666cbc3240af7b375e352538" + "$oid": "66723d958f368f285d304175" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21827,15 +21827,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "Utilities", - "cities": ["Colorado Springs", "Norfolk"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352539" + "$oid": "66723d958f368f285d304176" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21848,15 +21848,15 @@ "cohort": "12", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Miami", "St. Petersburg", "Tokyo"], + "cities": ["Garland", "Bakersfield", "San Francisco"], "_id": { - "$oid": "666cbc3240af7b375e35253a" + "$oid": "66723d958f368f285d304177" }, "createdAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.252Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21869,15 +21869,15 @@ "cohort": "29", "jobTitle": "Associate Front-End Engineer", "industry": "Sports & Entertainment Media", - "cities": ["Long Beach", "Lubbock"], + "cities": ["Sacramento", "Seattle", "Henderson"], "_id": { - "$oid": "666cbc3240af7b375e35253b" + "$oid": "66723d958f368f285d304178" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21890,15 +21890,15 @@ "cohort": "3", "jobTitle": "Software Engineer II", "industry": "Entertainment", - "cities": ["Riverside", "North Las Vegas", "Oakland"], + "cities": ["San Francisco", "Saint Paul"], "_id": { - "$oid": "666cbc3240af7b375e35253c" + "$oid": "66723d958f368f285d304179" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21911,15 +21911,15 @@ "cohort": "35", "jobTitle": "Senior Software Engineer", "industry": "Media and Entertainment", - "cities": ["North Las Vegas"], + "cities": ["Sydney"], "_id": { - "$oid": "666cbc3240af7b375e35253d" + "$oid": "66723d958f368f285d30417a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21932,15 +21932,15 @@ "cohort": "47", "jobTitle": "SW Engineer III", "industry": "IT Services", - "cities": ["Garland", "Wichita"], + "cities": ["Lincoln"], "_id": { - "$oid": "666cbc3240af7b375e35253e" + "$oid": "66723d958f368f285d30417b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21953,15 +21953,15 @@ "cohort": "16", "jobTitle": "Full Stack Engineer", "industry": "Business Tech/Enterprise Tech", - "cities": ["Berlin", "Aurora"], + "cities": ["Columbus"], "_id": { - "$oid": "666cbc3240af7b375e35253f" + "$oid": "66723d958f368f285d30417c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21974,15 +21974,15 @@ "cohort": "1", "jobTitle": "Frontend Engineer", "industry": "Artificial Intelligence", - "cities": ["Austin", "Denver"], + "cities": ["Cleveland", "Greensboro", "Virginia Beach"], "_id": { - "$oid": "666cbc3240af7b375e352540" + "$oid": "66723d958f368f285d30417d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -21995,15 +21995,15 @@ "cohort": "41", "jobTitle": "Full-Stack Developer", "industry": "Fintech", - "cities": ["Long Beach", "Winston-Salem", "Buffalo"], + "cities": ["Milwaukee"], "_id": { - "$oid": "666cbc3240af7b375e352541" + "$oid": "66723d958f368f285d30417e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22016,15 +22016,15 @@ "cohort": "45", "jobTitle": "Full-Stack Software Engineer", "industry": "Fintech", - "cities": ["Boston"], + "cities": ["Las Vegas", "Baltimore"], "_id": { - "$oid": "666cbc3240af7b375e352542" + "$oid": "66723d958f368f285d30417f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22037,15 +22037,15 @@ "cohort": "4", "jobTitle": "Senior Full-Stack Software Engineer", "industry": "Fintech", - "cities": ["Lexington", "Columbus", "Sacramento"], + "cities": ["Pittsburgh"], "_id": { - "$oid": "666cbc3240af7b375e352543" + "$oid": "66723d958f368f285d304180" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22058,15 +22058,15 @@ "cohort": "31", "jobTitle": "Associate Front-End Developer", "industry": "Other", - "cities": ["Fresno", "Raleigh"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352544" + "$oid": "66723d958f368f285d304181" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22079,15 +22079,15 @@ "cohort": "25", "jobTitle": "Technologist", "industry": "Fashion", - "cities": ["Irving", "Buffalo", "Glendale"], + "cities": ["Indianapolis"], "_id": { - "$oid": "666cbc3240af7b375e352545" + "$oid": "66723d958f368f285d304182" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22100,15 +22100,15 @@ "cohort": "35", "jobTitle": "Sr. Analytics Engineer", "industry": "Software / Tech", - "cities": ["Nashville", "Sacramento"], + "cities": ["Tokyo", "Tampa"], "_id": { - "$oid": "666cbc3240af7b375e352546" + "$oid": "66723d958f368f285d304183" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22121,15 +22121,15 @@ "cohort": "29", "jobTitle": "Technologist", "industry": "Entertainment", - "cities": ["Mumbai"], + "cities": ["Mexico City", "Irvine", "Cleveland"], "_id": { - "$oid": "666cbc3240af7b375e352547" + "$oid": "66723d958f368f285d304184" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22142,15 +22142,15 @@ "cohort": "Beta", "jobTitle": "Software Engineer", "industry": "Security Cloud", - "cities": ["Tampa", "Mesa"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352548" + "$oid": "66723d958f368f285d304185" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22163,15 +22163,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "", - "cities": ["St. Petersburg", "Cleveland", "Mumbai"], + "cities": ["Dallas"], "_id": { - "$oid": "666cbc3240af7b375e352549" + "$oid": "66723d958f368f285d304186" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22184,15 +22184,15 @@ "cohort": "2", "jobTitle": "Full Stack Developer", "industry": "Education/Edtech", - "cities": ["Fort Worth"], + "cities": ["El Paso"], "_id": { - "$oid": "666cbc3240af7b375e35254a" + "$oid": "66723d958f368f285d304187" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22205,15 +22205,15 @@ "cohort": "7", "jobTitle": "Senior Web Application Developer", "industry": "", - "cities": ["Bakersfield", "Winston-Salem"], + "cities": ["Buffalo"], "_id": { - "$oid": "666cbc3240af7b375e35254b" + "$oid": "66723d958f368f285d304188" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22226,15 +22226,15 @@ "cohort": "22", "jobTitle": "Software Developer II", "industry": "Tech", - "cities": ["San Francisco"], + "cities": ["Omaha", "Tulsa"], "_id": { - "$oid": "666cbc3240af7b375e35254c" + "$oid": "66723d958f368f285d304189" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22247,15 +22247,15 @@ "cohort": "9", "jobTitle": "Frontend Developer", "industry": "Tech products", - "cities": ["Fresno"], + "cities": ["Miami", "Lubbock"], "_id": { - "$oid": "666cbc3240af7b375e35254d" + "$oid": "66723d958f368f285d30418a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22268,15 +22268,15 @@ "cohort": "Beta", "jobTitle": "Front End Software Engineer", "industry": "Media", - "cities": ["Laredo"], + "cities": ["Arlington", "Irving"], "_id": { - "$oid": "666cbc3240af7b375e35254e" + "$oid": "66723d958f368f285d30418b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22289,15 +22289,15 @@ "cohort": "11", "jobTitle": "Software Engineer II", "industry": "Healthcare", - "cities": ["London", "El Paso", "Tokyo"], + "cities": ["Berlin", "Anaheim"], "_id": { - "$oid": "666cbc3240af7b375e35254f" + "$oid": "66723d958f368f285d30418c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22310,15 +22310,15 @@ "cohort": "40", "jobTitle": "Senior Software Engineer", "industry": "Management", - "cities": ["San Antonio"], + "cities": ["Los Angeles", "Omaha"], "_id": { - "$oid": "666cbc3240af7b375e352550" + "$oid": "66723d958f368f285d30418d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22331,15 +22331,15 @@ "cohort": "7", "jobTitle": "Director of Engineering - Platform", "industry": "Media / Sports", - "cities": ["Los Angeles"], + "cities": ["Cincinnati", "Miami"], "_id": { - "$oid": "666cbc3240af7b375e352551" + "$oid": "66723d958f368f285d30418e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22352,15 +22352,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Henderson", "Tampa"], + "cities": ["Wichita", "Glendale"], "_id": { - "$oid": "666cbc3240af7b375e352552" + "$oid": "66723d958f368f285d30418f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22373,15 +22373,15 @@ "cohort": "12", "jobTitle": "Senior Software Engineer", "industry": "Business Analytics", - "cities": ["Colorado Springs", "Glendale"], + "cities": ["Cincinnati", "Jersey City"], "_id": { - "$oid": "666cbc3240af7b375e352553" + "$oid": "66723d958f368f285d304190" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22394,15 +22394,15 @@ "cohort": "31", "jobTitle": "Software Engineer II", "industry": "Business Analytics", - "cities": ["Jersey City"], + "cities": ["Long Beach", "Stockton"], "_id": { - "$oid": "666cbc3240af7b375e352554" + "$oid": "66723d958f368f285d304191" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22415,15 +22415,15 @@ "cohort": "41", "jobTitle": "Sr Software Engineer", "industry": "Information Technology & Services", - "cities": ["Nashville", "Saint Paul", "Laredo", "Fort Worth"], + "cities": ["Greensboro", "Sรฃo Paulo", "Wichita"], "_id": { - "$oid": "666cbc3240af7b375e352555" + "$oid": "66723d958f368f285d304192" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22436,15 +22436,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Travel", - "cities": ["Colorado Springs", "Winston-Salem"], + "cities": ["Toledo"], "_id": { - "$oid": "666cbc3240af7b375e352556" + "$oid": "66723d958f368f285d304193" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22457,15 +22457,15 @@ "cohort": "49", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Wichita", "Glendale", "Louisville", "Columbus"], + "cities": ["Arlington"], "_id": { - "$oid": "666cbc3240af7b375e352557" + "$oid": "66723d958f368f285d304194" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22478,15 +22478,15 @@ "cohort": "36", "jobTitle": "Full Stack Engineer", "industry": "Scientist R&D", - "cities": ["Scottsdale", "Minneapolis", "Tampa", "Seattle"], + "cities": ["Philadelphia", "San Antonio", "Bakersfield"], "_id": { - "$oid": "666cbc3240af7b375e352558" + "$oid": "66723d958f368f285d304195" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22499,15 +22499,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "Health", - "cities": ["San Antonio", "El Paso", "Milwaukee"], + "cities": ["Laredo"], "_id": { - "$oid": "666cbc3240af7b375e352559" + "$oid": "66723d958f368f285d304196" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22520,15 +22520,15 @@ "cohort": "48", "jobTitle": "Fullstack Software Engineer", "industry": "Healthcare", - "cities": ["Sydney", "San Francisco", "Madison"], + "cities": ["Orlando", "Tokyo"], "_id": { - "$oid": "666cbc3240af7b375e35255a" + "$oid": "66723d958f368f285d304197" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22541,15 +22541,15 @@ "cohort": "30", "jobTitle": "Senior Software Engineer", "industry": "Health", - "cities": ["Toledo", "Lubbock", "Raleigh", "Jersey City"], + "cities": ["San Antonio", "Buffalo"], "_id": { - "$oid": "666cbc3240af7b375e35255b" + "$oid": "66723d958f368f285d304198" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22562,15 +22562,15 @@ "cohort": "41", "jobTitle": "Software Engineer", "industry": "E-Commerce / Fashion", - "cities": ["Gilbert", "Kansas City", "Indianapolis"], + "cities": ["Fort Wayne"], "_id": { - "$oid": "666cbc3240af7b375e35255c" + "$oid": "66723d958f368f285d304199" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22583,15 +22583,15 @@ "cohort": "46", "jobTitle": "Engineer 2", "industry": "Fintech", - "cities": ["St. Louis"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35255d" + "$oid": "66723d958f368f285d30419a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22604,15 +22604,15 @@ "cohort": "31", "jobTitle": "Software Engineer I, Web", "industry": "Fashion", - "cities": ["Beijing", "Fort Wayne"], + "cities": ["Corpus Christi"], "_id": { - "$oid": "666cbc3240af7b375e35255e" + "$oid": "66723d958f368f285d30419b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22625,15 +22625,15 @@ "cohort": "13", "jobTitle": "Associate Developer", "industry": "Other", - "cities": ["New York"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35255f" + "$oid": "66723d958f368f285d30419c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22646,15 +22646,15 @@ "cohort": "19", "jobTitle": "Full Stack Engineer", "industry": "Fintech", - "cities": ["Houston", "Glendale", "Portland"], + "cities": ["Lexington", "Honolulu", "Chula Vista"], "_id": { - "$oid": "666cbc3240af7b375e352560" + "$oid": "66723d958f368f285d30419d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22667,15 +22667,15 @@ "cohort": "52", "jobTitle": "Head of Developer Marketing", "industry": "Cloud Services", - "cities": ["Lubbock", "Winston-Salem", "Aurora", "Raleigh"], + "cities": ["Stockton", "San Francisco", "Norfolk"], "_id": { - "$oid": "666cbc3240af7b375e352561" + "$oid": "66723d958f368f285d30419e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22688,15 +22688,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Aerospace", - "cities": ["Chesapeake"], + "cities": ["Mexico City", "Riverside", "Chicago"], "_id": { - "$oid": "666cbc3240af7b375e352562" + "$oid": "66723d958f368f285d30419f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22709,15 +22709,15 @@ "cohort": "10", "jobTitle": "Cognitive Software Engineer", "industry": "Aerospace", - "cities": ["Lubbock", "Fresno"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352563" + "$oid": "66723d958f368f285d3041a0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22730,15 +22730,15 @@ "cohort": "52", "jobTitle": "Full Stack Engineer", "industry": "Real Estate", - "cities": ["Chandler"], + "cities": ["Scottsdale"], "_id": { - "$oid": "666cbc3240af7b375e352564" + "$oid": "66723d958f368f285d3041a1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22751,15 +22751,15 @@ "cohort": "30", "jobTitle": "Software Engineer (P2 - Midlevel)", "industry": "Fintech", - "cities": ["Chandler", "San Antonio", "Phoenix", "Winston-Salem"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352565" + "$oid": "66723d958f368f285d3041a2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22772,15 +22772,15 @@ "cohort": "33", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["New York", "Sรฃo Paulo", "Gilbert"], + "cities": ["Wichita", "Oakland"], "_id": { - "$oid": "666cbc3240af7b375e352566" + "$oid": "66723d958f368f285d3041a3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22793,15 +22793,15 @@ "cohort": "5", "jobTitle": "Full Stack Software Engineer", "industry": "Fintech", - "cities": ["Chula Vista", "Boston", "Lubbock", "Oakland"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352567" + "$oid": "66723d958f368f285d3041a4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22814,15 +22814,15 @@ "cohort": "4", "jobTitle": "Full Stack Software Engineer", "industry": "Fintech/Insurance", - "cities": ["Sรฃo Paulo"], + "cities": ["Toledo", "Cleveland", "Berlin"], "_id": { - "$oid": "666cbc3240af7b375e352568" + "$oid": "66723d958f368f285d3041a5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22835,15 +22835,15 @@ "cohort": "22", "jobTitle": "Full Stack Software Engineer", "industry": "Fintech", - "cities": ["Tokyo", "Seattle", "Anaheim"], + "cities": ["Lincoln", "Norfolk"], "_id": { - "$oid": "666cbc3240af7b375e352569" + "$oid": "66723d958f368f285d3041a6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22856,15 +22856,15 @@ "cohort": "11", "jobTitle": "Registered Nurse", "industry": "Healthtech/Healthcare", - "cities": ["Garland", "Indianapolis", "Toledo"], + "cities": ["Irvine"], "_id": { - "$oid": "666cbc3240af7b375e35256a" + "$oid": "66723d958f368f285d3041a7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22877,15 +22877,15 @@ "cohort": "2", "jobTitle": "Software Engineer", "industry": "", - "cities": ["North Las Vegas"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35256b" + "$oid": "66723d958f368f285d3041a8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22898,15 +22898,15 @@ "cohort": "6", "jobTitle": "Advance Associate", "industry": "IT, SaaS", - "cities": ["Berlin", "North Las Vegas"], + "cities": ["Corpus Christi", "Atlanta"], "_id": { - "$oid": "666cbc3240af7b375e35256c" + "$oid": "66723d958f368f285d3041a9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22919,15 +22919,15 @@ "cohort": "41", "jobTitle": "L1 Engineer", "industry": "Heath care", - "cities": ["Irvine", "Kansas City", "Jacksonville", "Toronto"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35256d" + "$oid": "66723d958f368f285d3041aa" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22940,15 +22940,15 @@ "cohort": "5", "jobTitle": "Junior Software Engineer", "industry": "", - "cities": ["San Francisco", "Buffalo", "Portland"], + "cities": ["Colorado Springs"], "_id": { - "$oid": "666cbc3240af7b375e35256e" + "$oid": "66723d958f368f285d3041ab" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22961,15 +22961,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "Subscriptions", - "cities": ["Anaheim", "Riverside"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35256f" + "$oid": "66723d958f368f285d3041ac" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -22982,15 +22982,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "News Media", - "cities": ["Baltimore", "Washington"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352570" + "$oid": "66723d958f368f285d3041ad" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23003,15 +23003,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Information Technology & Services", - "cities": ["Tucson", "Fort Wayne", "Sacramento"], + "cities": ["Reno", "Mexico City"], "_id": { - "$oid": "666cbc3240af7b375e352571" + "$oid": "66723d958f368f285d3041ae" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23024,15 +23024,15 @@ "cohort": "48", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Winston-Salem", "Honolulu", "Columbus"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352572" + "$oid": "66723d958f368f285d3041af" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23045,15 +23045,15 @@ "cohort": "37", "jobTitle": "Developer 1", "industry": "Healthtech/Healthcare", - "cities": ["Toledo", "St. Louis", "Mesa", "Atlanta"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352573" + "$oid": "66723d958f368f285d3041b0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23066,15 +23066,15 @@ "cohort": "33", "jobTitle": "Software Engineer (eCommerce)", "industry": "E-commerce", - "cities": ["Milwaukee", "St. Petersburg", "Mumbai", "San Antonio"], + "cities": ["Tucson", "Los Angeles", "St. Louis"], "_id": { - "$oid": "666cbc3240af7b375e352574" + "$oid": "66723d958f368f285d3041b1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23087,15 +23087,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "Biotech", - "cities": ["Tampa"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352575" + "$oid": "66723d958f368f285d3041b2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23108,15 +23108,15 @@ "cohort": "29", "jobTitle": "Full Stack Developer", "industry": "E-commerce", - "cities": ["Los Angeles", "Anaheim", "Las Vegas"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352576" + "$oid": "66723d958f368f285d3041b3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23129,15 +23129,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Blockchain", - "cities": ["Baltimore", "Fresno", "Mumbai", "Jersey City"], + "cities": ["Wichita"], "_id": { - "$oid": "666cbc3240af7b375e352577" + "$oid": "66723d958f368f285d3041b4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23150,15 +23150,15 @@ "cohort": "42", "jobTitle": "Software Engineer II", "industry": "Fintech", - "cities": ["Atlanta", "Santa Ana"], + "cities": ["Baltimore"], "_id": { - "$oid": "666cbc3240af7b375e352578" + "$oid": "66723d958f368f285d3041b5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23171,15 +23171,15 @@ "cohort": "5", "jobTitle": "Senior Software Engineer", "industry": "", - "cities": ["Cincinnati"], + "cities": ["Henderson", "Wichita", "Buffalo"], "_id": { - "$oid": "666cbc3240af7b375e352579" + "$oid": "66723d958f368f285d3041b6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23192,15 +23192,15 @@ "cohort": "54", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Oklahoma City", "Albuquerque", "Tampa"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35257a" + "$oid": "66723d958f368f285d3041b7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23213,15 +23213,15 @@ "cohort": "27", "jobTitle": "Software Engineer", "industry": "SaaS - Security", - "cities": ["Las Vegas", "Gilbert"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35257b" + "$oid": "66723d958f368f285d3041b8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23234,15 +23234,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["St. Petersburg", "Anchorage", "Phoenix"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35257c" + "$oid": "66723d958f368f285d3041b9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23255,15 +23255,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Houston", "Irving", "Orlando"], + "cities": ["Cleveland"], "_id": { - "$oid": "666cbc3240af7b375e35257d" + "$oid": "66723d958f368f285d3041ba" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23276,15 +23276,15 @@ "cohort": "1", "jobTitle": "Software Engineer, Front End", "industry": "Other", - "cities": ["Berlin", "Corpus Christi", "Honolulu"], + "cities": ["Irvine", "Newark", "San Francisco"], "_id": { - "$oid": "666cbc3240af7b375e35257e" + "$oid": "66723d958f368f285d3041bb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23297,15 +23297,15 @@ "cohort": "31", "jobTitle": "Software Engineer", "industry": "Fundraising", - "cities": ["Garland"], + "cities": ["Washington"], "_id": { - "$oid": "666cbc3240af7b375e35257f" + "$oid": "66723d958f368f285d3041bc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23318,15 +23318,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "MarTech", - "cities": ["San Antonio"], + "cities": ["Bakersfield", "Chicago", "Tampa"], "_id": { - "$oid": "666cbc3240af7b375e352580" + "$oid": "66723d958f368f285d3041bd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23339,15 +23339,15 @@ "cohort": "53", "jobTitle": "Implementation Support Engineer", "industry": "Artificial Intelligence", - "cities": ["Anchorage", "Fresno", "Detroit", "Bakersfield"], + "cities": ["Garland", "El Paso"], "_id": { - "$oid": "666cbc3240af7b375e352581" + "$oid": "66723d958f368f285d3041be" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23360,15 +23360,15 @@ "cohort": "43", "jobTitle": "Full Stack Developer", "industry": "ECommerce", - "cities": ["Aurora", "Dallas", "Tulsa"], + "cities": ["Arlington", "Henderson"], "_id": { - "$oid": "666cbc3240af7b375e352582" + "$oid": "66723d958f368f285d3041bf" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23381,15 +23381,15 @@ "cohort": "24", "jobTitle": "Senior Blockchain Engineer", "industry": "Blockchain/Web3", - "cities": ["Los Angeles", "Indianapolis"], + "cities": ["Nashville", "Plano"], "_id": { - "$oid": "666cbc3240af7b375e352583" + "$oid": "66723d958f368f285d3041c0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23402,15 +23402,15 @@ "cohort": "1", "jobTitle": "Senior Software Engineer", "industry": "Software / Tech", - "cities": ["Austin", "Sydney", "Indianapolis", "Wichita"], + "cities": ["Chicago", "Irvine", "Newark"], "_id": { - "$oid": "666cbc3240af7b375e352584" + "$oid": "66723d958f368f285d3041c1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23423,15 +23423,15 @@ "cohort": "51", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["San Antonio", "St. Louis"], + "cities": ["Los Angeles", "Kansas City"], "_id": { - "$oid": "666cbc3240af7b375e352585" + "$oid": "66723d958f368f285d3041c2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23444,15 +23444,15 @@ "cohort": "35", "jobTitle": "Software engineer", "industry": "Fintech", - "cities": ["Fresno", "Sรฃo Paulo"], + "cities": ["Jersey City", "Charlotte"], "_id": { - "$oid": "666cbc3240af7b375e352586" + "$oid": "66723d958f368f285d3041c3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23465,15 +23465,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Biotech, Robotics", - "cities": ["Cincinnati", "Buffalo", "Oklahoma City", "Madison"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352587" + "$oid": "66723d958f368f285d3041c4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23486,15 +23486,15 @@ "cohort": "3", "jobTitle": "Senior Software Engineer", "industry": "Biotech", - "cities": ["Irving", "Lubbock"], + "cities": ["Toronto", "Beijing"], "_id": { - "$oid": "666cbc3240af7b375e352588" + "$oid": "66723d958f368f285d3041c5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23507,15 +23507,15 @@ "cohort": "39", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Sacramento", "San Francisco", "Honolulu"], + "cities": ["Sรฃo Paulo", "Greensboro", "Garland"], "_id": { - "$oid": "666cbc3240af7b375e352589" + "$oid": "66723d958f368f285d3041c6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23528,15 +23528,15 @@ "cohort": "33", "jobTitle": "Full stack dev", "industry": "Healthcare", - "cities": ["Jersey City", "Gilbert", "Sacramento"], + "cities": ["Garland"], "_id": { - "$oid": "666cbc3240af7b375e35258a" + "$oid": "66723d958f368f285d3041c7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23549,15 +23549,15 @@ "cohort": "28", "jobTitle": "Software Engineer (E2)", "industry": "Health", - "cities": ["Orlando"], + "cities": ["Seattle", "Colorado Springs", "Tulsa"], "_id": { - "$oid": "666cbc3240af7b375e35258b" + "$oid": "66723d958f368f285d3041c8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23570,15 +23570,15 @@ "cohort": "28", "jobTitle": "Software Engineer (E2)", "industry": "Health", - "cities": ["New Orleans"], + "cities": ["Greensboro"], "_id": { - "$oid": "666cbc3240af7b375e35258c" + "$oid": "66723d958f368f285d3041c9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23591,15 +23591,15 @@ "cohort": "3", "jobTitle": "Software Engineer, Web & Mobile", "industry": "Insurance", - "cities": ["Jacksonville", "Houston"], + "cities": ["Atlanta", "Austin", "Winston-Salem"], "_id": { - "$oid": "666cbc3240af7b375e35258d" + "$oid": "66723d958f368f285d3041ca" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23612,15 +23612,15 @@ "cohort": "29", "jobTitle": "Typescript NodeJS Senior Engineer", "industry": "Hospitality", - "cities": ["Miami", "Jersey City", "Detroit", "Beijing"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35258e" + "$oid": "66723d958f368f285d3041cb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23633,15 +23633,15 @@ "cohort": "45", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Louisville"], + "cities": ["Cleveland", "Gilbert"], "_id": { - "$oid": "666cbc3240af7b375e35258f" + "$oid": "66723d958f368f285d3041cc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23654,15 +23654,15 @@ "cohort": "33", "jobTitle": "Full Stack Developer", "industry": "Other", - "cities": ["Paris", "Austin", "Lexington"], + "cities": ["San Diego"], "_id": { - "$oid": "666cbc3240af7b375e352590" + "$oid": "66723d958f368f285d3041cd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23675,15 +23675,15 @@ "cohort": "24", "jobTitle": "FullStack Software Engineer", "industry": "Analytics, Defense", - "cities": ["Colorado Springs", "Winston-Salem", "Los Angeles", "Virginia Beach"], + "cities": ["Newark", "Anaheim", "Glendale"], "_id": { - "$oid": "666cbc3240af7b375e352591" + "$oid": "66723d958f368f285d3041ce" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23696,15 +23696,15 @@ "cohort": "21", "jobTitle": "Senior Full Stack Developer", "industry": "Fintech", - "cities": ["Pittsburgh", "Jacksonville", "Dallas", "Mexico City"], + "cities": ["Kansas City"], "_id": { - "$oid": "666cbc3240af7b375e352592" + "$oid": "66723d958f368f285d3041cf" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23717,15 +23717,15 @@ "cohort": "18", "jobTitle": "Senior Fullstack Developer", "industry": "Fintech", - "cities": ["Raleigh", "Seattle", "Bakersfield"], + "cities": ["Fresno", "Glendale", "Miami"], "_id": { - "$oid": "666cbc3240af7b375e352593" + "$oid": "66723d958f368f285d3041d0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23738,15 +23738,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Lexington", "San Diego"], + "cities": ["Honolulu", "Albuquerque", "Garland"], "_id": { - "$oid": "666cbc3240af7b375e352594" + "$oid": "66723d958f368f285d3041d1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23759,15 +23759,15 @@ "cohort": "2", "jobTitle": "Senior Software Engineer", "industry": "Media", - "cities": ["Phoenix", "North Las Vegas"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352595" + "$oid": "66723d958f368f285d3041d2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23780,15 +23780,15 @@ "cohort": "18", "jobTitle": "Software Engineer", "industry": "Renewable Energy", - "cities": ["St. Petersburg"], + "cities": ["Toronto"], "_id": { - "$oid": "666cbc3240af7b375e352596" + "$oid": "66723d958f368f285d3041d3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23801,15 +23801,15 @@ "cohort": "31", "jobTitle": "Software developer", "industry": "Restaurant", - "cities": ["Omaha"], + "cities": ["Denver", "Las Vegas"], "_id": { - "$oid": "666cbc3240af7b375e352597" + "$oid": "66723d958f368f285d3041d4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23822,15 +23822,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Contract Manufacturing", - "cities": ["San Diego", "Saint Paul"], + "cities": ["Long Beach"], "_id": { - "$oid": "666cbc3240af7b375e352598" + "$oid": "66723d958f368f285d3041d5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23843,15 +23843,15 @@ "cohort": "52", "jobTitle": "Software Engineer II", "industry": "Fintech", - "cities": ["Orlando", "Greensboro"], + "cities": ["St. Louis"], "_id": { - "$oid": "666cbc3240af7b375e352599" + "$oid": "66723d958f368f285d3041d6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23864,15 +23864,15 @@ "cohort": "35", "jobTitle": "Senior SWE", "industry": "Entertainment", - "cities": ["Minneapolis"], + "cities": ["Irving", "Garland", "Mesa"], "_id": { - "$oid": "666cbc3240af7b375e35259a" + "$oid": "66723d958f368f285d3041d7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23885,15 +23885,15 @@ "cohort": "35", "jobTitle": "Software Engineer, Frontend", "industry": "Entertainment", - "cities": ["Riverside"], + "cities": ["Oakland", "Lexington"], "_id": { - "$oid": "666cbc3240af7b375e35259b" + "$oid": "66723d958f368f285d3041d8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23906,15 +23906,15 @@ "cohort": "9", "jobTitle": "Senior Front End Engineer", "industry": "Sales", - "cities": ["Houston"], + "cities": ["Santa Ana", "Paris", "Austin"], "_id": { - "$oid": "666cbc3240af7b375e35259c" + "$oid": "66723d958f368f285d3041d9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.824Z" }, "__v": 0 }, @@ -23927,15 +23927,15 @@ "cohort": "33", "jobTitle": "Full Stack Developer", "industry": "Blockchain/Web3", - "cities": ["Durham", "Corpus Christi", "Mesa", "Mumbai"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35259d" + "$oid": "66723d958f368f285d3041da" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -23948,15 +23948,15 @@ "cohort": "11", "jobTitle": "Junior Software Engineer", "industry": "Software / Tech", - "cities": ["San Jose", "Kansas City", "Reno"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35259e" + "$oid": "66723d958f368f285d3041db" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -23969,15 +23969,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Federal Defense", - "cities": ["Denver", "Aurora"], + "cities": ["Wichita", "Charlotte"], "_id": { - "$oid": "666cbc3240af7b375e35259f" + "$oid": "66723d958f368f285d3041dc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -23990,15 +23990,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Parking", - "cities": ["Charlotte"], + "cities": ["St. Petersburg"], "_id": { - "$oid": "666cbc3240af7b375e3525a0" + "$oid": "66723d958f368f285d3041dd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24011,15 +24011,15 @@ "cohort": "35", "jobTitle": "Software Engineer II", "industry": "Cloud services", - "cities": ["Jacksonville"], + "cities": ["Norfolk", "Philadelphia", "Minneapolis"], "_id": { - "$oid": "666cbc3240af7b375e3525a1" + "$oid": "66723d958f368f285d3041de" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24032,15 +24032,15 @@ "cohort": "19", "jobTitle": "Software Engineer II", "industry": "Fintech", - "cities": ["Mumbai"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525a2" + "$oid": "66723d958f368f285d3041df" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24053,15 +24053,15 @@ "cohort": "20", "jobTitle": "Software Engineer II (T23)", "industry": "electronic Payment/ financial services", - "cities": ["Virginia Beach", "Toledo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525a3" + "$oid": "66723d958f368f285d3041e0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24074,15 +24074,15 @@ "cohort": "32", "jobTitle": "Software Engineer 2", "industry": "Fintech", - "cities": ["Newark", "Las Vegas"], + "cities": ["Irvine"], "_id": { - "$oid": "666cbc3240af7b375e3525a4" + "$oid": "66723d958f368f285d3041e1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24095,15 +24095,15 @@ "cohort": "3", "jobTitle": "Software Engineer I", "industry": "Fintech", - "cities": ["Tulsa", "Lubbock"], + "cities": ["San Francisco"], "_id": { - "$oid": "666cbc3240af7b375e3525a5" + "$oid": "66723d958f368f285d3041e2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24116,15 +24116,15 @@ "cohort": "20", "jobTitle": "Full Stack Developer", "industry": "Fintech", - "cities": ["Raleigh", "Miami"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525a6" + "$oid": "66723d958f368f285d3041e3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24137,15 +24137,15 @@ "cohort": "43", "jobTitle": "Software Engineer", "industry": "Logistics", - "cities": ["Baltimore"], + "cities": ["Paris"], "_id": { - "$oid": "666cbc3240af7b375e3525a7" + "$oid": "66723d958f368f285d3041e4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24158,15 +24158,15 @@ "cohort": "25", "jobTitle": "Engineering Manager, Software Development 2", "industry": "Fintech", - "cities": ["Aurora", "Santa Ana"], + "cities": ["Los Angeles", "Detroit", "Tulsa"], "_id": { - "$oid": "666cbc3240af7b375e3525a8" + "$oid": "66723d958f368f285d3041e5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24179,15 +24179,15 @@ "cohort": "3", "jobTitle": "Software Engineer II", "industry": "Software / Tech", - "cities": ["Honolulu"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525a9" + "$oid": "66723d958f368f285d3041e6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24200,15 +24200,15 @@ "cohort": "16", "jobTitle": "Fullstack Developer - Video Software Engineering", "industry": "Video Streaming", - "cities": ["Nashville"], + "cities": ["Laredo"], "_id": { - "$oid": "666cbc3240af7b375e3525aa" + "$oid": "66723d958f368f285d3041e7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24221,15 +24221,15 @@ "cohort": "17", "jobTitle": "Software Engineer", "industry": "Entertainment", - "cities": ["Orlando"], + "cities": ["Detroit", "San Antonio"], "_id": { - "$oid": "666cbc3240af7b375e3525ab" + "$oid": "66723d958f368f285d3041e8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24242,15 +24242,15 @@ "cohort": "43", "jobTitle": "Software Engineer", "industry": "Tech/Health & Wellness", - "cities": ["Tokyo", "Minneapolis", "Beijing", "Baltimore"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525ac" + "$oid": "66723d958f368f285d3041e9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24263,15 +24263,15 @@ "cohort": "24", "jobTitle": "Front End Lead Engineer", "industry": "Sports?", - "cities": ["Berlin", "Henderson", "St. Petersburg", "Omaha"], + "cities": ["Tulsa", "Stockton"], "_id": { - "$oid": "666cbc3240af7b375e3525ad" + "$oid": "66723d958f368f285d3041ea" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24284,15 +24284,15 @@ "cohort": "33", "jobTitle": "Full Stack (UI/UX) Senior Application Developer", "industry": "Loan/Mortgage", - "cities": ["Sacramento", "Lincoln", "Mesa"], + "cities": ["Miami"], "_id": { - "$oid": "666cbc3240af7b375e3525ae" + "$oid": "66723d958f368f285d3041eb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.253Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24305,15 +24305,15 @@ "cohort": "25", "jobTitle": "Front End Engineer", "industry": "Medical", - "cities": ["Las Vegas"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525af" + "$oid": "66723d958f368f285d3041ec" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24326,15 +24326,15 @@ "cohort": "3", "jobTitle": "Full Stack Engineer", "industry": "Healthtech/Healthcare", - "cities": ["Santa Ana"], + "cities": ["Los Angeles", "Arlington"], "_id": { - "$oid": "666cbc3240af7b375e3525b0" + "$oid": "66723d958f368f285d3041ed" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24347,15 +24347,15 @@ "cohort": "10", "jobTitle": "Cyber Software Engineer", "industry": "Public Safety", - "cities": ["Raleigh", "Detroit", "Kansas City", "Bakersfield"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525b1" + "$oid": "66723d958f368f285d3041ee" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24368,15 +24368,15 @@ "cohort": "35", "jobTitle": "Software Engineer", "industry": "Digital", - "cities": ["Omaha", "Honolulu", "Cincinnati", "Laredo"], + "cities": ["New York", "Cincinnati"], "_id": { - "$oid": "666cbc3240af7b375e3525b2" + "$oid": "66723d958f368f285d3041ef" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24389,15 +24389,15 @@ "cohort": "19", "jobTitle": "Software Engineer I", "industry": "Video", - "cities": ["Albuquerque", "Virginia Beach"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525b3" + "$oid": "66723d958f368f285d3041f0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24410,15 +24410,15 @@ "cohort": "10", "jobTitle": "Senior Software Engineer", "industry": "Energy/Cleantech/Greentech", - "cities": ["New York", "Columbus"], + "cities": ["Lubbock", "Boston"], "_id": { - "$oid": "666cbc3240af7b375e3525b4" + "$oid": "66723d958f368f285d3041f1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24431,15 +24431,15 @@ "cohort": "5", "jobTitle": "Software Automation Engineer", "industry": "", - "cities": ["Nashville", "St. Louis", "Garland"], + "cities": ["Anchorage"], "_id": { - "$oid": "666cbc3240af7b375e3525b5" + "$oid": "66723d958f368f285d3041f2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24452,15 +24452,15 @@ "cohort": "4", "jobTitle": "Software engineer", "industry": "Green tech", - "cities": ["Henderson", "Kansas City", "Buffalo"], + "cities": ["Wichita"], "_id": { - "$oid": "666cbc3240af7b375e3525b6" + "$oid": "66723d958f368f285d3041f3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24473,15 +24473,15 @@ "cohort": "40", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Lubbock", "Sรฃo Paulo", "Dallas", "Tulsa"], + "cities": ["Omaha"], "_id": { - "$oid": "666cbc3240af7b375e3525b7" + "$oid": "66723d958f368f285d3041f4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24494,15 +24494,15 @@ "cohort": "7", "jobTitle": "IT Applications Engineer", "industry": "Other", - "cities": ["Greensboro", "Fort Worth", "Stockton", "Tampa"], + "cities": ["Winston-Salem", "St. Petersburg", "Reno"], "_id": { - "$oid": "666cbc3240af7b375e3525b8" + "$oid": "66723d958f368f285d3041f5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24515,15 +24515,15 @@ "cohort": "46", "jobTitle": "Software Engineer L4", "industry": "Social Media", - "cities": ["Paris", "Minneapolis"], + "cities": ["Tulsa"], "_id": { - "$oid": "666cbc3240af7b375e3525b9" + "$oid": "66723d958f368f285d3041f6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24536,15 +24536,15 @@ "cohort": "47", "jobTitle": "Web Developer", "industry": "Other", - "cities": ["Philadelphia", "Santa Ana", "Fresno", "Irvine"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525ba" + "$oid": "66723d958f368f285d3041f7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24557,15 +24557,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Advertising", - "cities": ["Kansas City"], + "cities": ["Mumbai", "Tulsa", "North Las Vegas"], "_id": { - "$oid": "666cbc3240af7b375e3525bb" + "$oid": "66723d958f368f285d3041f8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24578,15 +24578,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Bakersfield", "Toronto"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525bc" + "$oid": "66723d958f368f285d3041f9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24599,15 +24599,15 @@ "cohort": "7", "jobTitle": "software development engineer - FMS", "industry": "Automotive", - "cities": ["Garland", "Philadelphia", "Phoenix"], + "cities": ["Saint Paul", "Miami"], "_id": { - "$oid": "666cbc3240af7b375e3525bd" + "$oid": "66723d958f368f285d3041fa" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24620,15 +24620,15 @@ "cohort": "49", "jobTitle": "Software Engineer II", "industry": "Gaming", - "cities": ["Colorado Springs"], + "cities": ["Austin", "Mumbai", "El Paso"], "_id": { - "$oid": "666cbc3240af7b375e3525be" + "$oid": "66723d958f368f285d3041fb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24641,15 +24641,15 @@ "cohort": "54", "jobTitle": "Senior Software Engineer", "industry": "Gaming", - "cities": ["Stockton", "Charlotte", "Cincinnati", "Denver"], + "cities": ["Chesapeake", "Toledo"], "_id": { - "$oid": "666cbc3240af7b375e3525bf" + "$oid": "66723d958f368f285d3041fc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24662,15 +24662,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "E-Sports", - "cities": ["Atlanta"], + "cities": ["San Francisco", "Santa Ana", "Jacksonville"], "_id": { - "$oid": "666cbc3240af7b375e3525c0" + "$oid": "66723d958f368f285d3041fd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24683,15 +24683,15 @@ "cohort": "56", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Memphis", "Toronto"], + "cities": ["Bakersfield", "Milwaukee", "Garland"], "_id": { - "$oid": "666cbc3240af7b375e3525c1" + "$oid": "66723d958f368f285d3041fe" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24704,15 +24704,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Education", - "cities": ["Stockton", "Atlanta", "Irving"], + "cities": ["Laredo", "Philadelphia"], "_id": { - "$oid": "666cbc3240af7b375e3525c2" + "$oid": "66723d958f368f285d3041ff" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24725,15 +24725,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "EdTech", - "cities": ["Sรฃo Paulo", "Cleveland", "Boston"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525c3" + "$oid": "66723d958f368f285d304200" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24746,15 +24746,15 @@ "cohort": "16", "jobTitle": "Backend Engineer", "industry": "Internet/AI/Energy", - "cities": ["Sydney", "North Las Vegas", "Albuquerque"], + "cities": ["Columbus", "San Antonio", "Sรฃo Paulo"], "_id": { - "$oid": "666cbc3240af7b375e3525c4" + "$oid": "66723d958f368f285d304201" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24767,15 +24767,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "Podcast Analytics", - "cities": ["Washington", "Minneapolis"], + "cities": ["Jersey City"], "_id": { - "$oid": "666cbc3240af7b375e3525c5" + "$oid": "66723d958f368f285d304202" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24788,15 +24788,15 @@ "cohort": "29", "jobTitle": "Front-end Engineering Consultant", "industry": "Sports Betting", - "cities": ["Mumbai", "Santa Ana", "Detroit"], + "cities": ["Toronto", "Lubbock"], "_id": { - "$oid": "666cbc3240af7b375e3525c6" + "$oid": "66723d958f368f285d304203" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24809,15 +24809,15 @@ "cohort": "31", "jobTitle": "Frontend Engineer", "industry": "Entertainment", - "cities": ["Albuquerque", "Corpus Christi"], + "cities": ["Beijing"], "_id": { - "$oid": "666cbc3240af7b375e3525c7" + "$oid": "66723d958f368f285d304204" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24830,15 +24830,15 @@ "cohort": "24", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Chicago", "Baltimore", "Las Vegas", "El Paso"], + "cities": ["Stockton"], "_id": { - "$oid": "666cbc3240af7b375e3525c8" + "$oid": "66723d958f368f285d304205" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24851,15 +24851,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["San Jose", "Louisville", "Tokyo"], + "cities": ["Irvine", "North Las Vegas"], "_id": { - "$oid": "666cbc3240af7b375e3525c9" + "$oid": "66723d958f368f285d304206" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24872,15 +24872,15 @@ "cohort": "2", "jobTitle": "Full Stack Integrations Engineer", "industry": "IT Services", - "cities": ["Nashville", "Orlando"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525ca" + "$oid": "66723d958f368f285d304207" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24893,15 +24893,15 @@ "cohort": "8", "jobTitle": "Senior Software Engineer, Web", "industry": "Blockchain/Web3", - "cities": ["Sacramento", "Jersey City"], + "cities": ["El Paso", "Paris"], "_id": { - "$oid": "666cbc3240af7b375e3525cb" + "$oid": "66723d958f368f285d304208" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24914,15 +24914,15 @@ "cohort": "42", "jobTitle": "Software Engineer", "industry": "Data Analytics", - "cities": ["Anaheim", "Portland", "Washington", "Greensboro"], + "cities": ["Memphis", "Beijing", "Fort Wayne"], "_id": { - "$oid": "666cbc3240af7b375e3525cc" + "$oid": "66723d958f368f285d304209" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24935,15 +24935,15 @@ "cohort": "33", "jobTitle": "Software Engineer", "industry": "Data Analysis", - "cities": ["Indianapolis", "Omaha", "Santa Ana"], + "cities": ["Gilbert"], "_id": { - "$oid": "666cbc3240af7b375e3525cd" + "$oid": "66723d958f368f285d30420a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24956,15 +24956,15 @@ "cohort": "33", "jobTitle": "Front End Software Engineer", "industry": "Security", - "cities": ["Bakersfield", "Irvine", "Buffalo", "Albuquerque"], + "cities": ["Corpus Christi", "Santa Ana"], "_id": { - "$oid": "666cbc3240af7b375e3525ce" + "$oid": "66723d958f368f285d30420b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24977,15 +24977,15 @@ "cohort": "6", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Lubbock", "Albuquerque"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525cf" + "$oid": "66723d958f368f285d30420c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -24998,15 +24998,15 @@ "cohort": "32", "jobTitle": "Full stack engineer", "industry": "Technology", - "cities": ["Arlington"], + "cities": ["Chesapeake"], "_id": { - "$oid": "666cbc3240af7b375e3525d0" + "$oid": "66723d958f368f285d30420d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25019,15 +25019,15 @@ "cohort": "45", "jobTitle": "Jr. Software Engineer", "industry": "Marketing", - "cities": ["Chula Vista", "Buffalo", "Paris"], + "cities": ["Laredo", "Seattle", "Las Vegas"], "_id": { - "$oid": "666cbc3240af7b375e3525d1" + "$oid": "66723d958f368f285d30420e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25040,15 +25040,15 @@ "cohort": "11", "jobTitle": "Frontend Developer", "industry": "Building Management", - "cities": ["Toronto", "Chandler", "Atlanta", "Tokyo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525d2" + "$oid": "66723d958f368f285d30420f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25061,15 +25061,15 @@ "cohort": "23", "jobTitle": "Software Engineer - Frontend", "industry": "Travel", - "cities": ["Tucson", "Tulsa", "Colorado Springs"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525d3" + "$oid": "66723d958f368f285d304210" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25082,15 +25082,15 @@ "cohort": "50", "jobTitle": "Shopify Developer", "industry": "Restaurant, Food, and Beverage", - "cities": ["Fort Wayne", "Tampa", "Omaha"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525d4" + "$oid": "66723d958f368f285d304211" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25103,15 +25103,15 @@ "cohort": "37", "jobTitle": "Senior Software Engineer", "industry": "Healthcare", - "cities": ["Gilbert", "Anchorage", "Paris", "Virginia Beach"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525d5" + "$oid": "66723d958f368f285d304212" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25124,15 +25124,15 @@ "cohort": "2", "jobTitle": "Software Engineer II", "industry": "Insurance", - "cities": ["Philadelphia", "Glendale", "Oakland"], + "cities": ["Chandler"], "_id": { - "$oid": "666cbc3240af7b375e3525d6" + "$oid": "66723d958f368f285d304213" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25145,15 +25145,15 @@ "cohort": "15", "jobTitle": "Software Engineer", "industry": "Business Tech/Enterprise Tech", - "cities": ["Denver"], + "cities": ["Irvine"], "_id": { - "$oid": "666cbc3240af7b375e3525d7" + "$oid": "66723d958f368f285d304214" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25166,15 +25166,15 @@ "cohort": "53", "jobTitle": "Frontend Engineer", "industry": "Healthcare", - "cities": ["Milwaukee", "Chula Vista", "Henderson", "Pittsburgh"], + "cities": ["Jacksonville", "Sydney"], "_id": { - "$oid": "666cbc3240af7b375e3525d8" + "$oid": "66723d958f368f285d304215" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25187,15 +25187,15 @@ "cohort": "28", "jobTitle": "Senior Software Engineer", "industry": "", - "cities": ["Sydney", "Winston-Salem"], + "cities": ["Saint Paul", "Beijing", "Reno"], "_id": { - "$oid": "666cbc3240af7b375e3525d9" + "$oid": "66723d958f368f285d304216" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25208,15 +25208,15 @@ "cohort": "2", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Fort Worth"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525da" + "$oid": "66723d958f368f285d304217" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25229,15 +25229,15 @@ "cohort": "35", "jobTitle": "Director, Tech Lead", "industry": "Insurance", - "cities": ["Gilbert", "Aurora", "Cincinnati", "Beijing"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525db" + "$oid": "66723d958f368f285d304218" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25250,15 +25250,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Nashville"], + "cities": ["Chandler"], "_id": { - "$oid": "666cbc3240af7b375e3525dc" + "$oid": "66723d958f368f285d304219" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25271,15 +25271,15 @@ "cohort": "1", "jobTitle": "Full Stack Developer", "industry": "Fintech/Insurance software", - "cities": ["Beijing", "Chandler"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525dd" + "$oid": "66723d958f368f285d30421a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25292,15 +25292,15 @@ "cohort": "40", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Scottsdale", "Phoenix", "Lincoln"], + "cities": ["Tokyo", "Columbus"], "_id": { - "$oid": "666cbc3240af7b375e3525de" + "$oid": "66723d958f368f285d30421b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25313,15 +25313,15 @@ "cohort": "6", "jobTitle": "Senior Associate - Node Engineer", "industry": "", - "cities": ["San Antonio", "Toronto", "Fort Wayne"], + "cities": ["Dallas"], "_id": { - "$oid": "666cbc3240af7b375e3525df" + "$oid": "66723d958f368f285d30421c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25334,15 +25334,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Cryptography", - "cities": ["Durham", "Sacramento"], + "cities": ["Tokyo", "Irving"], "_id": { - "$oid": "666cbc3240af7b375e3525e0" + "$oid": "66723d958f368f285d30421d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25355,15 +25355,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Entertainment", - "cities": ["Sรฃo Paulo", "St. Petersburg", "Houston"], + "cities": ["London", "Irvine"], "_id": { - "$oid": "666cbc3240af7b375e3525e1" + "$oid": "66723d958f368f285d30421e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25376,15 +25376,15 @@ "cohort": "3", "jobTitle": "Sr. Full Stack Software Engineer", "industry": "", - "cities": ["Chicago", "Omaha", "Mesa"], + "cities": ["San Jose", "Anchorage"], "_id": { - "$oid": "666cbc3240af7b375e3525e2" + "$oid": "66723d958f368f285d30421f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25397,15 +25397,15 @@ "cohort": "1", "jobTitle": "Software Developer", "industry": "Conversational AI", - "cities": ["Las Vegas", "Tucson", "Memphis"], + "cities": ["Colorado Springs", "Anaheim", "Newark"], "_id": { - "$oid": "666cbc3240af7b375e3525e3" + "$oid": "66723d958f368f285d304220" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25418,15 +25418,15 @@ "cohort": "5", "jobTitle": "Customer Success Engineer", "industry": "Technology", - "cities": ["Toronto", "Tampa", "Chula Vista"], + "cities": ["Indianapolis", "Toledo"], "_id": { - "$oid": "666cbc3240af7b375e3525e4" + "$oid": "66723d958f368f285d304221" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25439,15 +25439,15 @@ "cohort": "52", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Tampa", "Detroit", "Fort Worth"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525e5" + "$oid": "66723d958f368f285d304222" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25460,15 +25460,15 @@ "cohort": "2", "jobTitle": "Lead Frontend Engineer (Web3)", "industry": "Blockchain baby", - "cities": ["Las Vegas"], + "cities": ["Detroit", "Oklahoma City", "Washington"], "_id": { - "$oid": "666cbc3240af7b375e3525e6" + "$oid": "66723d958f368f285d304223" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25481,15 +25481,15 @@ "cohort": "38", "jobTitle": "Software Engineer II", "industry": "Health/Insurance", - "cities": ["Wichita", "Bakersfield", "St. Louis", "Indianapolis"], + "cities": ["Berlin"], "_id": { - "$oid": "666cbc3240af7b375e3525e7" + "$oid": "66723d958f368f285d304224" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25502,15 +25502,15 @@ "cohort": "54", "jobTitle": "Software Engineer II", "industry": "Aerospace", - "cities": ["Long Beach", "Laredo", "North Las Vegas"], + "cities": ["Sรฃo Paulo", "Santa Ana"], "_id": { - "$oid": "666cbc3240af7b375e3525e8" + "$oid": "66723d958f368f285d304225" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25523,15 +25523,15 @@ "cohort": "11", "jobTitle": "React Developer", "industry": "Healthcare", - "cities": ["Memphis", "North Las Vegas", "Paris", "Indianapolis"], + "cities": ["San Jose", "Pittsburgh"], "_id": { - "$oid": "666cbc3240af7b375e3525e9" + "$oid": "66723d958f368f285d304226" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25544,15 +25544,15 @@ "cohort": "12", "jobTitle": "CEO", "industry": "Rental Inspection", - "cities": ["New York", "Aurora", "Chicago"], + "cities": ["Cincinnati", "London"], "_id": { - "$oid": "666cbc3240af7b375e3525ea" + "$oid": "66723d958f368f285d304227" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25565,15 +25565,15 @@ "cohort": "3", "jobTitle": "Frontend Engineer", "industry": "Retail", - "cities": ["Tucson", "Winston-Salem", "Madison"], + "cities": ["Santa Ana", "Chandler"], "_id": { - "$oid": "666cbc3240af7b375e3525eb" + "$oid": "66723d958f368f285d304228" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25586,15 +25586,15 @@ "cohort": "3", "jobTitle": "Lead Frontend Engineer", "industry": "Business Tech/Enterprise Tech", - "cities": ["Sรฃo Paulo", "Lexington", "Buffalo"], + "cities": ["Albuquerque", "Orlando", "Las Vegas"], "_id": { - "$oid": "666cbc3240af7b375e3525ec" + "$oid": "66723d958f368f285d304229" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25607,15 +25607,15 @@ "cohort": "43", "jobTitle": "Software Automation Engineer", "industry": "Restaurant, Food, and Beverage", - "cities": ["Saint Paul"], + "cities": ["San Diego"], "_id": { - "$oid": "666cbc3240af7b375e3525ed" + "$oid": "66723d958f368f285d30422a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25628,15 +25628,15 @@ "cohort": "34", "jobTitle": "Junior Front End Engineer", "industry": "Internet Media", - "cities": ["Milwaukee", "Sacramento"], + "cities": ["Chula Vista", "Philadelphia"], "_id": { - "$oid": "666cbc3240af7b375e3525ee" + "$oid": "66723d958f368f285d30422b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25649,15 +25649,15 @@ "cohort": "4", "jobTitle": "Full Stack Engineer", "industry": "Healthcare", - "cities": ["Colorado Springs", "San Francisco", "Bakersfield"], + "cities": ["Garland", "Tokyo"], "_id": { - "$oid": "666cbc3240af7b375e3525ef" + "$oid": "66723d958f368f285d30422c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25670,15 +25670,15 @@ "cohort": "38", "jobTitle": "Software Dev Instructor", "industry": "Edtech", - "cities": ["Henderson", "Santa Ana"], + "cities": ["Minneapolis", "Anchorage"], "_id": { - "$oid": "666cbc3240af7b375e3525f0" + "$oid": "66723d958f368f285d30422d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25691,15 +25691,15 @@ "cohort": "18", "jobTitle": "Front end engineer", "industry": "Real Estate", - "cities": ["Anaheim"], + "cities": ["Laredo"], "_id": { - "$oid": "666cbc3240af7b375e3525f1" + "$oid": "66723d958f368f285d30422e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25712,15 +25712,15 @@ "cohort": "33", "jobTitle": "Software Engineer II - Web/Mobile", "industry": "PropTech", - "cities": ["Pittsburgh", "Raleigh", "Laredo"], + "cities": ["Gilbert", "Henderson", "Milwaukee"], "_id": { - "$oid": "666cbc3240af7b375e3525f2" + "$oid": "66723d958f368f285d30422f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25733,15 +25733,15 @@ "cohort": "50", "jobTitle": "Software Engineer I", "industry": "Research", - "cities": ["Tucson"], + "cities": ["Virginia Beach"], "_id": { - "$oid": "666cbc3240af7b375e3525f3" + "$oid": "66723d958f368f285d304230" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25754,15 +25754,15 @@ "cohort": "25", "jobTitle": "Senior Front End Engineer", "industry": "Fashion", - "cities": ["San Jose", "Denver", "Bakersfield"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525f4" + "$oid": "66723d958f368f285d304231" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25775,15 +25775,15 @@ "cohort": "6", "jobTitle": "Full Stack Software Engineer", "industry": "Other", - "cities": ["Stockton"], + "cities": ["San Antonio", "Sรฃo Paulo", "Norfolk"], "_id": { - "$oid": "666cbc3240af7b375e3525f5" + "$oid": "66723d958f368f285d304232" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25796,15 +25796,15 @@ "cohort": "23", "jobTitle": "Senior Front End Developer", "industry": "", - "cities": ["Tampa", "Henderson"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525f6" + "$oid": "66723d958f368f285d304233" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25817,15 +25817,15 @@ "cohort": "24", "jobTitle": "Software Engineer", "industry": "Cloud computing", - "cities": ["Pittsburgh", "Miami", "Winston-Salem"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525f7" + "$oid": "66723d958f368f285d304234" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25838,15 +25838,15 @@ "cohort": "51", "jobTitle": "Software Engineer Apprentice", "industry": "Other", - "cities": ["Anchorage"], + "cities": ["Jersey City", "Newark"], "_id": { - "$oid": "666cbc3240af7b375e3525f8" + "$oid": "66723d958f368f285d304235" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25859,15 +25859,15 @@ "cohort": "53", "jobTitle": "Fullstack App SWE", "industry": "Healthcare", - "cities": ["Baltimore", "Indianapolis"], + "cities": ["Chandler"], "_id": { - "$oid": "666cbc3240af7b375e3525f9" + "$oid": "66723d958f368f285d304236" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25880,15 +25880,15 @@ "cohort": "27", "jobTitle": "Full Stack Software Engineer", "industry": "Food", - "cities": ["Philadelphia"], + "cities": ["Scottsdale"], "_id": { - "$oid": "666cbc3240af7b375e3525fa" + "$oid": "66723d958f368f285d304237" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25901,15 +25901,15 @@ "cohort": "7", "jobTitle": "Senior Front-End Engineer", "industry": "Restaurant, Food, Beverage", - "cities": ["Charlotte", "Las Vegas"], + "cities": ["Cincinnati"], "_id": { - "$oid": "666cbc3240af7b375e3525fb" + "$oid": "66723d958f368f285d304238" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25922,15 +25922,15 @@ "cohort": "21", "jobTitle": "Frontend Developer", "industry": "Logistics & Supply Chain", - "cities": ["Los Angeles", "Tampa", "Arlington", "Charlotte"], + "cities": ["Houston"], "_id": { - "$oid": "666cbc3240af7b375e3525fc" + "$oid": "66723d958f368f285d304239" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25943,15 +25943,15 @@ "cohort": "31", "jobTitle": "Full Stack Engineer", "industry": "Renewables & Environment", - "cities": ["Phoenix", "Washington", "Columbus"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3525fd" + "$oid": "66723d958f368f285d30423a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25964,15 +25964,15 @@ "cohort": "20", "jobTitle": "software engineer", "industry": "ecommerce", - "cities": ["Aurora"], + "cities": ["Columbus"], "_id": { - "$oid": "666cbc3240af7b375e3525fe" + "$oid": "66723d958f368f285d30423b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -25985,15 +25985,15 @@ "cohort": "42", "jobTitle": "Software Engineer", "industry": "Education", - "cities": ["Los Angeles", "Toledo"], + "cities": ["Baltimore"], "_id": { - "$oid": "666cbc3240af7b375e3525ff" + "$oid": "66723d958f368f285d30423c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26006,15 +26006,15 @@ "cohort": "6", "jobTitle": "JavaScript Applications Developer", "industry": "Software / Tech", - "cities": ["Milwaukee", "Pittsburgh", "Bakersfield", "Fort Worth"], + "cities": ["Norfolk", "Charlotte"], "_id": { - "$oid": "666cbc3240af7b375e352600" + "$oid": "66723d958f368f285d30423d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26027,15 +26027,15 @@ "cohort": "7", "jobTitle": "Front End Software Engineer", "industry": "Research", - "cities": ["San Jose", "Honolulu", "Toledo", "Saint Paul"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352601" + "$oid": "66723d958f368f285d30423e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26048,15 +26048,15 @@ "cohort": "45", "jobTitle": "Software engineer", "industry": "Healthcare navigation", - "cities": ["San Diego", "Chesapeake", "Memphis", "London"], + "cities": ["St. Louis"], "_id": { - "$oid": "666cbc3240af7b375e352602" + "$oid": "66723d958f368f285d30423f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26069,15 +26069,15 @@ "cohort": "22", "jobTitle": "Associate Software Engineer", "industry": "", - "cities": ["Atlanta", "North Las Vegas", "Lubbock", "Jersey City"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352603" + "$oid": "66723d958f368f285d304240" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26090,15 +26090,15 @@ "cohort": "51", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Mumbai", "Newark", "Buffalo"], + "cities": ["Milwaukee", "New Orleans", "Plano"], "_id": { - "$oid": "666cbc3240af7b375e352604" + "$oid": "66723d958f368f285d304241" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26111,15 +26111,15 @@ "cohort": "37", "jobTitle": "Software Engineer", "industry": "Electric Vehicle", - "cities": ["Chesapeake", "Sacramento"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352605" + "$oid": "66723d958f368f285d304242" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26132,15 +26132,15 @@ "cohort": "24", "jobTitle": "Full Stack Software Engineer II", "industry": "Automotive", - "cities": ["San Francisco", "Mumbai", "Nashville", "Wichita"], + "cities": ["El Paso", "Minneapolis"], "_id": { - "$oid": "666cbc3240af7b375e352606" + "$oid": "66723d958f368f285d304243" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26153,15 +26153,15 @@ "cohort": "24", "jobTitle": "Software Engineer II", "industry": "Automotive", - "cities": ["Sydney"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352607" + "$oid": "66723d958f368f285d304244" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26174,15 +26174,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Automotive", - "cities": ["San Francisco"], + "cities": ["Detroit"], "_id": { - "$oid": "666cbc3240af7b375e352608" + "$oid": "66723d958f368f285d304245" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26195,15 +26195,15 @@ "cohort": "18", "jobTitle": "Senior Javascript Software Engineer", "industry": "Fintech", - "cities": ["Fort Worth", "Aurora", "Philadelphia"], + "cities": ["San Francisco", "Cleveland", "Corpus Christi"], "_id": { - "$oid": "666cbc3240af7b375e352609" + "$oid": "66723d958f368f285d304246" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26216,15 +26216,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "Jewelry Ecommerce", - "cities": ["Oklahoma City", "St. Louis", "Jersey City"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35260a" + "$oid": "66723d958f368f285d304247" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26237,15 +26237,15 @@ "cohort": "11", "jobTitle": "Software Release Manager", "industry": "Software / Tech", - "cities": ["Madison"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35260b" + "$oid": "66723d958f368f285d304248" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26258,15 +26258,15 @@ "cohort": "7", "jobTitle": "Full Stack Engineer", "industry": "Artificial Intelligence", - "cities": ["Phoenix", "San Antonio"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35260c" + "$oid": "66723d958f368f285d304249" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26279,15 +26279,15 @@ "cohort": "7", "jobTitle": "Full Stack Engineer", "industry": "Artificial Intelligence", - "cities": ["Oakland", "Fort Worth", "Chandler", "Milwaukee"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35260d" + "$oid": "66723d958f368f285d30424a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26300,15 +26300,15 @@ "cohort": "1", "jobTitle": "Technology Analyst", "industry": "Biotech", - "cities": ["San Diego", "Virginia Beach", "San Jose", "Gilbert"], + "cities": ["New York", "Mesa", "Philadelphia"], "_id": { - "$oid": "666cbc3240af7b375e35260e" + "$oid": "66723d958f368f285d30424b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26321,15 +26321,15 @@ "cohort": "29", "jobTitle": "Frontend Software Engineer", "industry": "Digital Advertising/E-commerce", - "cities": ["Riverside"], + "cities": ["Philadelphia", "Riverside"], "_id": { - "$oid": "666cbc3240af7b375e35260f" + "$oid": "66723d958f368f285d30424c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26342,15 +26342,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["Seattle", "New Orleans", "Indianapolis"], + "cities": ["Honolulu", "Cincinnati", "Memphis"], "_id": { - "$oid": "666cbc3240af7b375e352610" + "$oid": "66723d958f368f285d30424d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26363,15 +26363,15 @@ "cohort": "8", "jobTitle": "Software engineer", "industry": "Entertainment", - "cities": ["St. Petersburg", "Tampa", "St. Louis"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352611" + "$oid": "66723d958f368f285d30424e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26384,15 +26384,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Search and ads", - "cities": ["Greensboro", "London", "Saint Paul", "Tulsa"], + "cities": ["Laredo", "Virginia Beach"], "_id": { - "$oid": "666cbc3240af7b375e352612" + "$oid": "66723d958f368f285d30424f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26405,15 +26405,15 @@ "cohort": "28", "jobTitle": "Jr. Frontend Engineer", "industry": "Digital Agency/Client Services", - "cities": ["Boston", "Tucson"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352613" + "$oid": "66723d958f368f285d304250" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26426,15 +26426,15 @@ "cohort": "3", "jobTitle": "Junior Software Engineer", "industry": "", - "cities": ["Scottsdale", "Reno"], + "cities": ["Anchorage"], "_id": { - "$oid": "666cbc3240af7b375e352614" + "$oid": "66723d958f368f285d304251" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26447,15 +26447,15 @@ "cohort": "31", "jobTitle": "Sr. Software Engineer", "industry": "Commerce", - "cities": ["Louisville", "Madison", "San Jose", "North Las Vegas"], + "cities": ["Madison", "Phoenix", "Louisville"], "_id": { - "$oid": "666cbc3240af7b375e352615" + "$oid": "66723d958f368f285d304252" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26468,15 +26468,15 @@ "cohort": "29", "jobTitle": "Sr. Front-End Engineer", "industry": "E-Commerce", - "cities": ["San Antonio", "Colorado Springs", "Sacramento"], + "cities": ["Fort Wayne"], "_id": { - "$oid": "666cbc3240af7b375e352616" + "$oid": "66723d958f368f285d304253" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26489,15 +26489,15 @@ "cohort": "28", "jobTitle": "Front End Engineer", "industry": "E-Commerce", - "cities": ["Honolulu", "St. Petersburg", "Fresno"], + "cities": ["Lexington", "Reno", "Baltimore"], "_id": { - "$oid": "666cbc3240af7b375e352617" + "$oid": "66723d958f368f285d304254" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.825Z" }, "__v": 0 }, @@ -26510,15 +26510,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "Automative", - "cities": ["Anchorage", "Orlando", "Tulsa"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352618" + "$oid": "66723d958f368f285d304255" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26531,15 +26531,15 @@ "cohort": "54", "jobTitle": "Front End Software Engineer", "industry": "Marketing", - "cities": ["Sacramento", "Baltimore", "Mexico City"], + "cities": ["Chicago", "Baltimore"], "_id": { - "$oid": "666cbc3240af7b375e352619" + "$oid": "66723d958f368f285d304256" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26552,15 +26552,15 @@ "cohort": "2", "jobTitle": "Full-stack Analytics Engineer", "industry": "Big Data, Analytics", - "cities": ["Memphis"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35261a" + "$oid": "66723d958f368f285d304257" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26573,15 +26573,15 @@ "cohort": "22", "jobTitle": "Full Stack Engineer", "industry": "B2B", - "cities": ["Milwaukee", "Chandler", "Fort Wayne", "New York"], + "cities": ["Stockton"], "_id": { - "$oid": "666cbc3240af7b375e35261b" + "$oid": "66723d958f368f285d304258" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26594,15 +26594,15 @@ "cohort": "22", "jobTitle": "Senior Web and Mobile Developer", "industry": "Software / Tech", - "cities": ["Tampa"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35261c" + "$oid": "66723d958f368f285d304259" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26615,15 +26615,15 @@ "cohort": "35", "jobTitle": "Front End Developer", "industry": "Enterprise Software", - "cities": ["Cleveland", "Riverside", "Chula Vista"], + "cities": ["Detroit", "San Jose"], "_id": { - "$oid": "666cbc3240af7b375e35261d" + "$oid": "66723d958f368f285d30425a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26636,15 +26636,15 @@ "cohort": "46", "jobTitle": "Frontend Software Engineer", "industry": "Business Software", - "cities": ["Portland"], + "cities": ["Gilbert"], "_id": { - "$oid": "666cbc3240af7b375e35261e" + "$oid": "66723d958f368f285d30425b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26657,15 +26657,15 @@ "cohort": "2", "jobTitle": "Senior Full Stack Developer", "industry": "Data Intelligence", - "cities": ["Chicago"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35261f" + "$oid": "66723d958f368f285d30425c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26678,15 +26678,15 @@ "cohort": "22", "jobTitle": "Senior Full Stack Engineer", "industry": "Financial Data", - "cities": ["Reno", "Cleveland", "Louisville"], + "cities": ["Pittsburgh", "Charlotte"], "_id": { - "$oid": "666cbc3240af7b375e352620" + "$oid": "66723d958f368f285d30425d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26699,15 +26699,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Cloud Technology", - "cities": ["Washington", "Winston-Salem"], + "cities": ["Winston-Salem", "Toronto", "Sรฃo Paulo"], "_id": { - "$oid": "666cbc3240af7b375e352621" + "$oid": "66723d958f368f285d30425e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26720,15 +26720,15 @@ "cohort": "16", "jobTitle": "Software Development Engineer", "industry": "Business Tech/Enterprise Tech", - "cities": ["Winston-Salem", "Miami", "Washington", "Plano"], + "cities": ["Saint Paul"], "_id": { - "$oid": "666cbc3240af7b375e352622" + "$oid": "66723d958f368f285d30425f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26741,15 +26741,15 @@ "cohort": "56", "jobTitle": "Software Engineer", "industry": "Biotech", - "cities": ["Boston", "Lincoln"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352623" + "$oid": "66723d958f368f285d304260" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26762,15 +26762,15 @@ "cohort": "26", "jobTitle": "Sr. Frontend Engineer", "industry": "Research", - "cities": ["Anaheim", "Laredo"], + "cities": ["Newark", "Minneapolis", "Denver"], "_id": { - "$oid": "666cbc3240af7b375e352624" + "$oid": "66723d958f368f285d304261" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26783,15 +26783,15 @@ "cohort": "20", "jobTitle": "Engineer", "industry": "AIOps, IT monitoring and automation", - "cities": ["Fort Worth", "Fresno", "Philadelphia", "North Las Vegas"], + "cities": ["Kansas City", "London", "Austin"], "_id": { - "$oid": "666cbc3240af7b375e352625" + "$oid": "66723d958f368f285d304262" }, "createdAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.254Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26804,15 +26804,15 @@ "cohort": "53", "jobTitle": "Senior Software Engineer", "industry": "Other", - "cities": ["Louisville"], + "cities": ["Lubbock"], "_id": { - "$oid": "666cbc3240af7b375e352626" + "$oid": "66723d958f368f285d304263" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26825,15 +26825,15 @@ "cohort": "30", "jobTitle": "Front End Engineer (Mid Level)", "industry": "Translation", - "cities": ["Wichita", "Bakersfield"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352627" + "$oid": "66723d958f368f285d304264" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26846,15 +26846,15 @@ "cohort": "5", "jobTitle": "Senior Fullstack Engineer", "industry": "Software / Tech", - "cities": ["Berlin", "Phoenix", "Beijing"], + "cities": ["Washington"], "_id": { - "$oid": "666cbc3240af7b375e352628" + "$oid": "66723d958f368f285d304265" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26867,15 +26867,15 @@ "cohort": "5", "jobTitle": "Software Engineer", "industry": "Consulting", - "cities": ["San Francisco", "Laredo"], + "cities": ["Corpus Christi", "Phoenix", "Philadelphia"], "_id": { - "$oid": "666cbc3240af7b375e352629" + "$oid": "66723d958f368f285d304266" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26888,15 +26888,15 @@ "cohort": "15", "jobTitle": "Software Developer", "industry": "Hospitals", - "cities": ["Tampa"], + "cities": ["New Orleans", "Lubbock"], "_id": { - "$oid": "666cbc3240af7b375e35262a" + "$oid": "66723d958f368f285d304267" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26909,15 +26909,15 @@ "cohort": "39", "jobTitle": "Fullstack Software Engineer I", "industry": "Fitness/Wellness", - "cities": ["Fort Wayne"], + "cities": ["Anchorage", "Newark", "Lexington"], "_id": { - "$oid": "666cbc3240af7b375e35262b" + "$oid": "66723d958f368f285d304268" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26930,15 +26930,15 @@ "cohort": "26", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Kansas City", "Scottsdale", "New York", "Arlington"], + "cities": ["Madison", "Plano"], "_id": { - "$oid": "666cbc3240af7b375e35262c" + "$oid": "66723d958f368f285d304269" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26951,15 +26951,15 @@ "cohort": "3", "jobTitle": "Senior Software Engineer", "industry": "Finance", - "cities": ["Jacksonville"], + "cities": ["Dallas", "Indianapolis", "Mexico City"], "_id": { - "$oid": "666cbc3240af7b375e35262d" + "$oid": "66723d958f368f285d30426a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26972,15 +26972,15 @@ "cohort": "51", "jobTitle": "Software Engineer - Front End", "industry": "Energy/Cleantech/Greentech", - "cities": ["London"], + "cities": ["Anaheim", "Paris", "Aurora"], "_id": { - "$oid": "666cbc3240af7b375e35262e" + "$oid": "66723d958f368f285d30426b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -26993,15 +26993,15 @@ "cohort": "15", "jobTitle": "Front end engineer", "industry": "Not sure: itโ€™s a subscription service for designing hallmark style cards", - "cities": ["Henderson", "New Orleans", "Lincoln"], + "cities": ["Orlando", "Toronto"], "_id": { - "$oid": "666cbc3240af7b375e35262f" + "$oid": "66723d958f368f285d30426c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27014,15 +27014,15 @@ "cohort": "25", "jobTitle": "Senior Mobile Developer", "industry": "Consulting", - "cities": ["Jersey City", "Chicago", "Cincinnati", "Reno"], + "cities": ["Fort Worth", "Laredo", "North Las Vegas"], "_id": { - "$oid": "666cbc3240af7b375e352630" + "$oid": "66723d958f368f285d30426d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27035,15 +27035,15 @@ "cohort": "37", "jobTitle": "Senior Frontend Engineer", "industry": "Wellness", - "cities": ["San Jose", "Orlando"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352631" + "$oid": "66723d958f368f285d30426e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27056,15 +27056,15 @@ "cohort": "37", "jobTitle": "Software Engineer", "industry": "Augmented Reality, Entertainment", - "cities": ["Albuquerque"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352632" + "$oid": "66723d958f368f285d30426f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27077,15 +27077,15 @@ "cohort": "31", "jobTitle": "Software Engineer II", "industry": "Contractor Software", - "cities": ["Toronto"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352633" + "$oid": "66723d958f368f285d304270" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27098,15 +27098,15 @@ "cohort": "57", "jobTitle": "Software Engineer", "industry": "Marketing/Advertising", - "cities": ["Denver"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352634" + "$oid": "66723d958f368f285d304271" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27119,15 +27119,15 @@ "cohort": "15", "jobTitle": "Full Stack Developer", "industry": "Government", - "cities": ["Phoenix", "Winston-Salem", "Garland", "Orlando"], + "cities": ["Chicago", "Omaha", "Anaheim"], "_id": { - "$oid": "666cbc3240af7b375e352635" + "$oid": "66723d958f368f285d304272" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27140,15 +27140,15 @@ "cohort": "4", "jobTitle": "Software Engineer II", "industry": "Virtual Reality Education", - "cities": ["Baltimore", "San Jose", "Phoenix", "Chula Vista"], + "cities": ["Austin", "Cleveland", "Glendale"], "_id": { - "$oid": "666cbc3240af7b375e352636" + "$oid": "66723d958f368f285d304273" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27161,15 +27161,15 @@ "cohort": "8", "jobTitle": "Senior Full Stack Developer", "industry": "Software / Tech", - "cities": ["Tokyo", "Irving"], + "cities": ["Bakersfield", "Madison"], "_id": { - "$oid": "666cbc3240af7b375e352637" + "$oid": "66723d958f368f285d304274" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27182,15 +27182,15 @@ "cohort": "39", "jobTitle": "React Developer", "industry": "Consumer", - "cities": ["Plano", "Toledo", "Kansas City"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352638" + "$oid": "66723d958f368f285d304275" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27203,15 +27203,15 @@ "cohort": "2", "jobTitle": "Software Engineer", "industry": "", - "cities": ["El Paso", "Beijing", "Scottsdale", "San Diego"], + "cities": ["Garland", "Dallas"], "_id": { - "$oid": "666cbc3240af7b375e352639" + "$oid": "66723d958f368f285d304276" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27224,15 +27224,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Entertainment", - "cities": ["Paris", "Sacramento", "Buffalo"], + "cities": ["Pittsburgh", "Sacramento", "Raleigh"], "_id": { - "$oid": "666cbc3240af7b375e35263a" + "$oid": "66723d958f368f285d304277" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27245,15 +27245,15 @@ "cohort": "11", "jobTitle": "Full Stack Developer", "industry": "Events", - "cities": ["Colorado Springs", "Irvine"], + "cities": ["Buffalo", "Atlanta"], "_id": { - "$oid": "666cbc3240af7b375e35263b" + "$oid": "66723d958f368f285d304278" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27266,15 +27266,15 @@ "cohort": "31", "jobTitle": "Software Engineer III", "industry": "Photography", - "cities": ["Madison", "Kansas City", "New Orleans"], + "cities": ["Fort Worth", "San Francisco", "Nashville"], "_id": { - "$oid": "666cbc3240af7b375e35263c" + "$oid": "66723d958f368f285d304279" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27287,15 +27287,15 @@ "cohort": "31", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Oakland", "Chicago", "Berlin"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35263d" + "$oid": "66723d958f368f285d30427a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27308,15 +27308,15 @@ "cohort": "46", "jobTitle": "SDET III", "industry": "Entertainment", - "cities": ["Aurora"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35263e" + "$oid": "66723d958f368f285d30427b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27329,15 +27329,15 @@ "cohort": "11", "jobTitle": "Software Engineer, Projects", "industry": "Tech? stock photography?", - "cities": ["Charlotte", "San Diego", "Norfolk"], + "cities": ["Kansas City", "Berlin", "Detroit"], "_id": { - "$oid": "666cbc3240af7b375e35263f" + "$oid": "66723d958f368f285d30427c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27350,15 +27350,15 @@ "cohort": "41", "jobTitle": "Software Engineer", "industry": "Healthcare / insurance", - "cities": ["Jersey City", "Kansas City"], + "cities": ["Gilbert", "North Las Vegas"], "_id": { - "$oid": "666cbc3240af7b375e352640" + "$oid": "66723d958f368f285d30427d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27371,15 +27371,15 @@ "cohort": "6", "jobTitle": "Software Engineer II - Space Systems", "industry": "Other", - "cities": ["Beijing"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352641" + "$oid": "66723d958f368f285d30427e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27392,15 +27392,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Indianapolis"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352642" + "$oid": "66723d958f368f285d30427f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27413,15 +27413,15 @@ "cohort": "29", "jobTitle": "Fullstack Software Engineer", "industry": "Fintech", - "cities": ["Dallas", "Madison"], + "cities": ["Toledo", "Jersey City", "New York"], "_id": { - "$oid": "666cbc3240af7b375e352643" + "$oid": "66723d958f368f285d304280" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27434,15 +27434,15 @@ "cohort": "23", "jobTitle": "Software Engineer II", "industry": "Security", - "cities": ["Gilbert"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352644" + "$oid": "66723d958f368f285d304281" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27455,15 +27455,15 @@ "cohort": "1", "jobTitle": "Front end engineer", "industry": "Customer service software", - "cities": ["Las Vegas", "Berlin"], + "cities": ["London", "Cincinnati"], "_id": { - "$oid": "666cbc3240af7b375e352645" + "$oid": "66723d958f368f285d304282" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27476,15 +27476,15 @@ "cohort": "20", "jobTitle": "Software Engineer", "industry": "Cloud storage", - "cities": ["Boston", "Oakland", "Orlando", "Irvine"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352646" + "$oid": "66723d958f368f285d304283" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27497,15 +27497,15 @@ "cohort": "6", "jobTitle": "Full Stack Software Engineer III", "industry": "Media", - "cities": ["Fort Worth", "Paris"], + "cities": ["Lubbock", "New Orleans"], "_id": { - "$oid": "666cbc3240af7b375e352647" + "$oid": "66723d958f368f285d304284" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27518,15 +27518,15 @@ "cohort": "55", "jobTitle": "Associate Software Developer", "industry": "Media", - "cities": ["Chicago", "Columbus"], + "cities": ["Berlin"], "_id": { - "$oid": "666cbc3240af7b375e352648" + "$oid": "66723d958f368f285d304285" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27539,15 +27539,15 @@ "cohort": "54", "jobTitle": "Associate Development Engineer", "industry": "Telecommunications", - "cities": ["Detroit", "Mexico City", "Winston-Salem", "Buffalo"], + "cities": ["Henderson", "Winston-Salem", "Boston"], "_id": { - "$oid": "666cbc3240af7b375e352649" + "$oid": "66723d958f368f285d304286" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27560,15 +27560,15 @@ "cohort": "3", "jobTitle": "Engineer", "industry": "Outdoor Recreation", - "cities": ["Chicago", "Miami", "Dallas", "Toronto"], + "cities": ["Chicago", "Omaha"], "_id": { - "$oid": "666cbc3240af7b375e35264a" + "$oid": "66723d958f368f285d304287" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27581,15 +27581,15 @@ "cohort": "21", "jobTitle": "Software Engineer III", "industry": "Entertainment", - "cities": ["Columbus", "New Orleans"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35264b" + "$oid": "66723d958f368f285d304288" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27602,15 +27602,15 @@ "cohort": "22", "jobTitle": "Front end engineer", "industry": "Retail/Manufacturing", - "cities": ["Omaha"], + "cities": ["Oklahoma City"], "_id": { - "$oid": "666cbc3240af7b375e35264c" + "$oid": "66723d958f368f285d304289" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27623,15 +27623,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Greensboro"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35264d" + "$oid": "66723d958f368f285d30428a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27644,15 +27644,15 @@ "cohort": "46", "jobTitle": "Founding Engineer", "industry": "Retail", - "cities": ["Arlington", "Honolulu", "Albuquerque"], + "cities": ["Tampa"], "_id": { - "$oid": "666cbc3240af7b375e35264e" + "$oid": "66723d958f368f285d30428b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27665,15 +27665,15 @@ "cohort": "19", "jobTitle": "Front End Developer", "industry": "Manufacturing", - "cities": ["Pittsburgh"], + "cities": ["El Paso"], "_id": { - "$oid": "666cbc3240af7b375e35264f" + "$oid": "66723d958f368f285d30428c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27686,15 +27686,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Edtech", - "cities": ["Long Beach"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352650" + "$oid": "66723d958f368f285d30428d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27707,15 +27707,15 @@ "cohort": "10", "jobTitle": "Application Programmer", "industry": "Fintech", - "cities": ["Durham", "Raleigh", "Bakersfield"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352651" + "$oid": "66723d958f368f285d30428e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27728,15 +27728,15 @@ "cohort": "21", "jobTitle": "Senior Software Engineer", "industry": "Cybersecurity", - "cities": ["Toronto", "Miami"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352652" + "$oid": "66723d958f368f285d30428f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27749,15 +27749,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Sports/Sports betting", - "cities": ["Chesapeake", "Durham", "Honolulu"], + "cities": ["San Antonio", "Boston", "Chesapeake"], "_id": { - "$oid": "666cbc3240af7b375e352653" + "$oid": "66723d958f368f285d304290" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27770,15 +27770,15 @@ "cohort": "12", "jobTitle": "Senior Full Stack Developer", "industry": "Travel", - "cities": ["Greensboro", "Austin", "Wichita"], + "cities": ["Sydney"], "_id": { - "$oid": "666cbc3240af7b375e352654" + "$oid": "66723d958f368f285d304291" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27791,15 +27791,15 @@ "cohort": "27", "jobTitle": "Full Stack Engineer", "industry": "Consumer Goods", - "cities": ["Arlington"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352655" + "$oid": "66723d958f368f285d304292" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27812,15 +27812,15 @@ "cohort": "43", "jobTitle": "Software Engineer (Consultant)", "industry": "Consulting", - "cities": ["Las Vegas"], + "cities": ["San Diego", "Phoenix", "Fresno"], "_id": { - "$oid": "666cbc3240af7b375e352656" + "$oid": "66723d958f368f285d304293" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27833,15 +27833,15 @@ "cohort": "49", "jobTitle": "Software Engineer", "industry": "Consulting", - "cities": ["Honolulu", "Detroit", "Madison", "Arlington"], + "cities": ["Tokyo"], "_id": { - "$oid": "666cbc3240af7b375e352657" + "$oid": "66723d958f368f285d304294" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27854,15 +27854,15 @@ "cohort": "17", "jobTitle": "Software Engineer", "industry": "Customer Service", - "cities": ["Aurora", "Nashville", "Minneapolis"], + "cities": ["Kansas City", "Arlington", "Baltimore"], "_id": { - "$oid": "666cbc3240af7b375e352658" + "$oid": "66723d958f368f285d304295" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27875,15 +27875,15 @@ "cohort": "2", "jobTitle": "Lead Software Engineer", "industry": "Energy/Cleantech/Greentech", - "cities": ["New Orleans"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352659" + "$oid": "66723d958f368f285d304296" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27896,15 +27896,15 @@ "cohort": "36", "jobTitle": "Frontend Engineer", "industry": "Fintech", - "cities": ["Honolulu", "Beijing"], + "cities": ["Corpus Christi", "Lincoln", "Raleigh"], "_id": { - "$oid": "666cbc3240af7b375e35265a" + "$oid": "66723d958f368f285d304297" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27917,15 +27917,15 @@ "cohort": "40", "jobTitle": "Frontend Engineer", "industry": "Fintech", - "cities": ["Saint Paul", "Chesapeake"], + "cities": ["Reno"], "_id": { - "$oid": "666cbc3240af7b375e35265b" + "$oid": "66723d958f368f285d304298" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27938,15 +27938,15 @@ "cohort": "26", "jobTitle": "Software Developer", "industry": "SaaS", - "cities": ["Austin", "Denver", "Jersey City", "Lubbock"], + "cities": ["Reno", "Anaheim"], "_id": { - "$oid": "666cbc3240af7b375e35265c" + "$oid": "66723d958f368f285d304299" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27959,15 +27959,15 @@ "cohort": "4", "jobTitle": "Software Engineer I", "industry": "Computer Hardware & Software", - "cities": ["Los Angeles"], + "cities": ["Chandler", "Bakersfield", "Irvine"], "_id": { - "$oid": "666cbc3240af7b375e35265d" + "$oid": "66723d958f368f285d30429a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -27980,15 +27980,15 @@ "cohort": "31", "jobTitle": "Associate Software Engineer", "industry": "Software / Tech", - "cities": ["Long Beach"], + "cities": ["New York", "Miami"], "_id": { - "$oid": "666cbc3240af7b375e35265e" + "$oid": "66723d958f368f285d30429b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28001,15 +28001,15 @@ "cohort": "3", "jobTitle": "Software Developer", "industry": "", - "cities": ["Sรฃo Paulo", "Chandler", "Irvine"], + "cities": ["Saint Paul", "London"], "_id": { - "$oid": "666cbc3240af7b375e35265f" + "$oid": "66723d958f368f285d30429c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28022,15 +28022,15 @@ "cohort": "45", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Atlanta"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352660" + "$oid": "66723d958f368f285d30429d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28043,15 +28043,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Entertainment", - "cities": ["Detroit"], + "cities": ["Glendale", "Wichita", "Sacramento"], "_id": { - "$oid": "666cbc3240af7b375e352661" + "$oid": "66723d958f368f285d30429e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28064,15 +28064,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["New Orleans"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352662" + "$oid": "66723d958f368f285d30429f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28085,15 +28085,15 @@ "cohort": "42", "jobTitle": "Software Engineer", "industry": "camera, social media", - "cities": ["Tampa", "Glendale"], + "cities": ["Long Beach", "Wichita", "New Orleans"], "_id": { - "$oid": "666cbc3240af7b375e352663" + "$oid": "66723d958f368f285d3042a0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28106,15 +28106,15 @@ "cohort": "35", "jobTitle": "Platform Engineer", "industry": "Video Streaming", - "cities": ["Atlanta"], + "cities": ["Scottsdale"], "_id": { - "$oid": "666cbc3240af7b375e352664" + "$oid": "66723d958f368f285d3042a1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28127,15 +28127,15 @@ "cohort": "52", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Laredo"], + "cities": ["Cleveland"], "_id": { - "$oid": "666cbc3240af7b375e352665" + "$oid": "66723d958f368f285d3042a2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28148,15 +28148,15 @@ "cohort": "38", "jobTitle": "Frontend software engineer", "industry": "Hospitality", - "cities": ["Paris", "Norfolk", "New Orleans", "Toledo"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352666" + "$oid": "66723d958f368f285d3042a3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28169,15 +28169,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Anchorage", "Albuquerque", "San Francisco"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352667" + "$oid": "66723d958f368f285d3042a4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28190,15 +28190,15 @@ "cohort": "40", "jobTitle": "DevOps Software Developer", "industry": "Data/Analytics/Cloud", - "cities": ["Lincoln", "Plano"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352668" + "$oid": "66723d958f368f285d3042a5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28211,15 +28211,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Atlanta", "Beijing", "Sรฃo Paulo"], + "cities": ["Minneapolis", "Las Vegas", "Phoenix"], "_id": { - "$oid": "666cbc3240af7b375e352669" + "$oid": "66723d958f368f285d3042a6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28232,15 +28232,15 @@ "cohort": "35", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Fort Wayne"], + "cities": ["Lincoln"], "_id": { - "$oid": "666cbc3240af7b375e35266a" + "$oid": "66723d958f368f285d3042a7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28253,15 +28253,15 @@ "cohort": "6", "jobTitle": "Platform Engineer", "industry": "Public Safety", - "cities": ["St. Louis", "Durham", "Chandler", "Los Angeles"], + "cities": ["North Las Vegas", "Riverside"], "_id": { - "$oid": "666cbc3240af7b375e35266b" + "$oid": "66723d958f368f285d3042a8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28274,15 +28274,15 @@ "cohort": "7", "jobTitle": "Release Engineer", "industry": "Software / Tech", - "cities": ["Las Vegas", "Tulsa", "Fresno", "Anaheim"], + "cities": ["Newark", "New Orleans"], "_id": { - "$oid": "666cbc3240af7b375e35266c" + "$oid": "66723d958f368f285d3042a9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28295,15 +28295,15 @@ "cohort": "23", "jobTitle": "Senior Software Engineer", "industry": "Consumer Electronics", - "cities": ["New Orleans"], + "cities": ["Boston", "Henderson"], "_id": { - "$oid": "666cbc3240af7b375e35266d" + "$oid": "66723d958f368f285d3042aa" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28316,15 +28316,15 @@ "cohort": "3", "jobTitle": "Full Stack Developer", "industry": "Web3", - "cities": ["Toledo", "Austin"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35266e" + "$oid": "66723d958f368f285d3042ab" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28337,15 +28337,15 @@ "cohort": "18", "jobTitle": "Software Engineer", "industry": "SaaS", - "cities": ["Sacramento", "Fort Worth", "Chesapeake", "Portland"], + "cities": ["Tokyo", "Detroit"], "_id": { - "$oid": "666cbc3240af7b375e35266f" + "$oid": "66723d958f368f285d3042ac" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28358,15 +28358,15 @@ "cohort": "33", "jobTitle": "Sr. Full Stack Developer", "industry": "Energy", - "cities": ["San Jose", "Philadelphia", "Minneapolis"], + "cities": ["Arlington"], "_id": { - "$oid": "666cbc3240af7b375e352670" + "$oid": "66723d958f368f285d3042ad" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28379,15 +28379,15 @@ "cohort": "47", "jobTitle": "Software Engineer II", "industry": "Artificial intelligence", - "cities": ["Santa Ana", "Riverside", "Boston", "Omaha"], + "cities": ["New York"], "_id": { - "$oid": "666cbc3240af7b375e352671" + "$oid": "66723d958f368f285d3042ae" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28400,15 +28400,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Jersey City"], + "cities": ["Kansas City", "Milwaukee", "Baltimore"], "_id": { - "$oid": "666cbc3240af7b375e352672" + "$oid": "66723d958f368f285d3042af" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28421,15 +28421,15 @@ "cohort": "34", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Baltimore"], + "cities": ["Colorado Springs"], "_id": { - "$oid": "666cbc3240af7b375e352673" + "$oid": "66723d958f368f285d3042b0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28442,15 +28442,15 @@ "cohort": "33", "jobTitle": "Senior Software Engineer", "industry": "Security", - "cities": ["Scottsdale", "Charlotte", "Denver", "Greensboro"], + "cities": ["Tokyo", "North Las Vegas"], "_id": { - "$oid": "666cbc3240af7b375e352674" + "$oid": "66723d958f368f285d3042b1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28463,15 +28463,15 @@ "cohort": "5", "jobTitle": "Software Engineer", "industry": "Cybercrime", - "cities": ["Chicago"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352675" + "$oid": "66723d958f368f285d3042b2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28484,15 +28484,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Telecom", - "cities": ["Durham", "Raleigh"], + "cities": ["Omaha", "Berlin", "Riverside"], "_id": { - "$oid": "666cbc3240af7b375e352676" + "$oid": "66723d958f368f285d3042b3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28505,15 +28505,15 @@ "cohort": "42", "jobTitle": "Software Engineer", "industry": "Telecommunications", - "cities": ["Pittsburgh", "San Jose", "Toronto", "Detroit"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352677" + "$oid": "66723d958f368f285d3042b4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28526,15 +28526,15 @@ "cohort": "15", "jobTitle": "Senior Software Engineer", "industry": "Finance", - "cities": ["Scottsdale", "Stockton", "Nashville", "Colorado Springs"], + "cities": ["Chula Vista"], "_id": { - "$oid": "666cbc3240af7b375e352678" + "$oid": "66723d958f368f285d3042b5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28547,15 +28547,15 @@ "cohort": "37", "jobTitle": "Software Engineer", "industry": "Security/Data Privacy", - "cities": ["Wichita"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352679" + "$oid": "66723d958f368f285d3042b6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28568,15 +28568,15 @@ "cohort": "6", "jobTitle": "Web Engineer II", "industry": "", - "cities": ["Tucson", "Riverside", "Berlin", "San Jose"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35267a" + "$oid": "66723d958f368f285d3042b7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28589,15 +28589,15 @@ "cohort": "12", "jobTitle": "Senior Web Engineer", "industry": "Entertainment", - "cities": ["St. Petersburg", "Las Vegas", "Tulsa", "Charlotte"], + "cities": ["Sydney", "Orlando", "Saint Paul"], "_id": { - "$oid": "666cbc3240af7b375e35267b" + "$oid": "66723d958f368f285d3042b8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28610,15 +28610,15 @@ "cohort": "21", "jobTitle": "Technical Writer", "industry": "Entertainment", - "cities": ["St. Petersburg", "Toronto", "Scottsdale", "Durham"], + "cities": ["Winston-Salem", "Henderson"], "_id": { - "$oid": "666cbc3240af7b375e35267c" + "$oid": "66723d958f368f285d3042b9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28631,15 +28631,15 @@ "cohort": "7", "jobTitle": "Frontend Engineer", "industry": "Entertainment", - "cities": ["Saint Paul", "Kansas City", "Charlotte", "Atlanta"], + "cities": ["Sacramento"], "_id": { - "$oid": "666cbc3240af7b375e35267d" + "$oid": "66723d958f368f285d3042ba" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28652,15 +28652,15 @@ "cohort": "31", "jobTitle": "Frontend Engineer", "industry": "Healthcare", - "cities": ["Mesa", "London", "Charlotte", "Tokyo"], + "cities": ["Chicago", "Glendale", "Sรฃo Paulo"], "_id": { - "$oid": "666cbc3240af7b375e35267e" + "$oid": "66723d958f368f285d3042bb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28673,15 +28673,15 @@ "cohort": "46", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Lexington", "Lincoln", "Washington", "Charlotte"], + "cities": ["Sรฃo Paulo", "Winston-Salem", "Las Vegas"], "_id": { - "$oid": "666cbc3240af7b375e35267f" + "$oid": "66723d958f368f285d3042bc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28694,15 +28694,15 @@ "cohort": "27", "jobTitle": "Software Engineer", "industry": "Hospitality Services", - "cities": ["Mexico City", "Philadelphia", "Phoenix"], + "cities": ["Honolulu"], "_id": { - "$oid": "666cbc3240af7b375e352680" + "$oid": "66723d958f368f285d3042bd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28715,15 +28715,15 @@ "cohort": "15", "jobTitle": "Application Developer", "industry": "Healthtech/Healthcare", - "cities": ["New York", "Austin"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352681" + "$oid": "66723d958f368f285d3042be" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28736,15 +28736,15 @@ "cohort": "9", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Buffalo", "Minneapolis", "Boston"], + "cities": ["Henderson", "Jacksonville"], "_id": { - "$oid": "666cbc3240af7b375e352682" + "$oid": "66723d958f368f285d3042bf" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28757,15 +28757,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Washington", "Cincinnati", "Pittsburgh", "Toronto"], + "cities": ["San Diego"], "_id": { - "$oid": "666cbc3240af7b375e352683" + "$oid": "66723d958f368f285d3042c0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28778,15 +28778,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Scottsdale"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352684" + "$oid": "66723d958f368f285d3042c1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28799,15 +28799,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "Information Technology", - "cities": ["Austin"], + "cities": ["Oakland"], "_id": { - "$oid": "666cbc3240af7b375e352685" + "$oid": "66723d958f368f285d3042c2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28820,15 +28820,15 @@ "cohort": "42", "jobTitle": "UI Engineer", "industry": "Consulting", - "cities": ["Winston-Salem", "Madison"], + "cities": ["Paris", "Cleveland", "Berlin"], "_id": { - "$oid": "666cbc3240af7b375e352686" + "$oid": "66723d958f368f285d3042c3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28841,15 +28841,15 @@ "cohort": "5", "jobTitle": "Software Engineer - Front End", "industry": "Cryptocurrency / Fintech", - "cities": ["Jacksonville"], + "cities": ["Irving", "St. Louis", "Madison"], "_id": { - "$oid": "666cbc3240af7b375e352687" + "$oid": "66723d958f368f285d3042c4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28862,15 +28862,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "Robotics / Industrial Automation", - "cities": ["Buffalo", "Nashville", "Raleigh"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352688" + "$oid": "66723d958f368f285d3042c5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28883,15 +28883,15 @@ "cohort": "50", "jobTitle": "Software Engineer", "industry": "Restaurant, Food, and Beverage", - "cities": ["Stockton", "Garland"], + "cities": ["Phoenix"], "_id": { - "$oid": "666cbc3240af7b375e352689" + "$oid": "66723d958f368f285d3042c6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28904,15 +28904,15 @@ "cohort": "21", "jobTitle": "Full Stack Engineer", "industry": "", - "cities": ["Milwaukee", "Jacksonville"], + "cities": ["San Francisco"], "_id": { - "$oid": "666cbc3240af7b375e35268a" + "$oid": "66723d958f368f285d3042c7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28925,15 +28925,15 @@ "cohort": "34", "jobTitle": "Software Developer", "industry": "Insurance", - "cities": ["Durham", "Newark"], + "cities": ["St. Louis", "Fort Worth"], "_id": { - "$oid": "666cbc3240af7b375e35268b" + "$oid": "66723d958f368f285d3042c8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28946,15 +28946,15 @@ "cohort": "2", "jobTitle": "Initiative Lead: Social Media", "industry": "Software / Tech", - "cities": ["Lubbock"], + "cities": ["Pittsburgh", "Boston", "Stockton"], "_id": { - "$oid": "666cbc3240af7b375e35268c" + "$oid": "66723d958f368f285d3042c9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28967,15 +28967,15 @@ "cohort": "26", "jobTitle": "Software Engineer - Backend", "industry": "Healthcare", - "cities": ["San Diego", "Madison", "Jacksonville"], + "cities": ["Cincinnati", "Mesa"], "_id": { - "$oid": "666cbc3240af7b375e35268d" + "$oid": "66723d958f368f285d3042ca" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -28988,15 +28988,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Ad Tech", - "cities": ["Aurora", "Newark", "North Las Vegas", "Stockton"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35268e" + "$oid": "66723d958f368f285d3042cb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -29009,15 +29009,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Chandler"], + "cities": ["North Las Vegas", "Charlotte", "St. Petersburg"], "_id": { - "$oid": "666cbc3240af7b375e35268f" + "$oid": "66723d958f368f285d3042cc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -29030,15 +29030,15 @@ "cohort": "48", "jobTitle": "Senior Software Engineer", "industry": "Software / Tech", - "cities": ["Tulsa", "Mexico City", "Cincinnati", "Gilbert"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352690" + "$oid": "66723d958f368f285d3042cd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -29051,15 +29051,15 @@ "cohort": "21", "jobTitle": "Software Engineer", "industry": "ML / Data / Open Source", - "cities": ["Fresno", "Anchorage", "Lincoln"], + "cities": ["Mumbai", "Anaheim"], "_id": { - "$oid": "666cbc3240af7b375e352691" + "$oid": "66723d958f368f285d3042ce" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -29072,15 +29072,15 @@ "cohort": "9", "jobTitle": "Software Engineer, Writer/Instructor", "industry": "Software / Tech", - "cities": ["Houston"], + "cities": ["Tokyo"], "_id": { - "$oid": "666cbc3240af7b375e352692" + "$oid": "66723d958f368f285d3042cf" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -29093,15 +29093,15 @@ "cohort": "37", "jobTitle": "Software Engineer, Full Stack", "industry": "Insurance", - "cities": ["Winston-Salem", "Chula Vista", "Miami"], + "cities": ["Plano"], "_id": { - "$oid": "666cbc3240af7b375e352693" + "$oid": "66723d958f368f285d3042d0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -29114,15 +29114,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["San Jose", "St. Petersburg", "Albuquerque", "Irving"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352694" + "$oid": "66723d958f368f285d3042d1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.826Z" }, "__v": 0 }, @@ -29135,15 +29135,15 @@ "cohort": "20", "jobTitle": "Full-Stack Software Developer", "industry": "", - "cities": ["St. Petersburg"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352695" + "$oid": "66723d958f368f285d3042d2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29156,15 +29156,15 @@ "cohort": "23", "jobTitle": "Software Developer", "industry": "On-Demand Work", - "cities": ["Reno", "Stockton"], + "cities": ["Berlin", "Minneapolis", "Toledo"], "_id": { - "$oid": "666cbc3240af7b375e352696" + "$oid": "66723d958f368f285d3042d3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29177,15 +29177,15 @@ "cohort": "11", "jobTitle": "Full Stack Developer", "industry": "Retail", - "cities": ["Oklahoma City"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352697" + "$oid": "66723d958f368f285d3042d4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29198,15 +29198,15 @@ "cohort": "39", "jobTitle": "Senior Frontend Engineer", "industry": "Fashion", - "cities": ["Scottsdale", "Glendale"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352698" + "$oid": "66723d958f368f285d3042d5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29219,15 +29219,15 @@ "cohort": "39", "jobTitle": "Software Engineer", "industry": "Medical Transcription", - "cities": ["Beijing"], + "cities": ["Santa Ana", "Miami"], "_id": { - "$oid": "666cbc3240af7b375e352699" + "$oid": "66723d958f368f285d3042d6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29240,15 +29240,15 @@ "cohort": "17", "jobTitle": "Software Engineer - Platform Integration", "industry": "Advertising", - "cities": ["Philadelphia"], + "cities": ["Irvine", "Charlotte", "New Orleans"], "_id": { - "$oid": "666cbc3240af7b375e35269a" + "$oid": "66723d958f368f285d3042d7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29261,15 +29261,15 @@ "cohort": "11", "jobTitle": "Senior Full Stack Engineer", "industry": "Manufacturing", - "cities": ["Stockton", "Winston-Salem"], + "cities": ["Omaha", "New Orleans", "Memphis"], "_id": { - "$oid": "666cbc3240af7b375e35269b" + "$oid": "66723d958f368f285d3042d8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29282,15 +29282,15 @@ "cohort": "26", "jobTitle": "Software Engineer", "industry": "Food", - "cities": ["St. Petersburg"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35269c" + "$oid": "66723d958f368f285d3042d9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29303,15 +29303,15 @@ "cohort": "26", "jobTitle": "Engineer I", "industry": "Fast Casual Dining", - "cities": ["Orlando"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35269d" + "$oid": "66723d958f368f285d3042da" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29324,15 +29324,15 @@ "cohort": "13", "jobTitle": "eCommerce Development Supervisor", "industry": "Other", - "cities": ["Omaha", "Lexington"], + "cities": ["St. Louis", "Sydney"], "_id": { - "$oid": "666cbc3240af7b375e35269e" + "$oid": "66723d958f368f285d3042db" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29345,15 +29345,15 @@ "cohort": "10", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["San Diego"], + "cities": ["New York"], "_id": { - "$oid": "666cbc3240af7b375e35269f" + "$oid": "66723d958f368f285d3042dc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29366,15 +29366,15 @@ "cohort": "28", "jobTitle": "Front-End Engineer II", "industry": "Fintech", - "cities": ["Scottsdale", "Seattle"], + "cities": ["Irvine", "Paris", "Garland"], "_id": { - "$oid": "666cbc3240af7b375e3526a0" + "$oid": "66723d958f368f285d3042dd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29387,15 +29387,15 @@ "cohort": "7", "jobTitle": "Software Engineer", "industry": "Telecommunications", - "cities": ["Winston-Salem", "San Francisco", "Sรฃo Paulo", "Virginia Beach"], + "cities": ["Cincinnati", "Dallas", "Memphis"], "_id": { - "$oid": "666cbc3240af7b375e3526a1" + "$oid": "66723d958f368f285d3042de" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29408,15 +29408,15 @@ "cohort": "7", "jobTitle": "Associate Software Engineer", "industry": "Telecommunications", - "cities": ["Tampa", "Saint Paul", "Houston", "Cleveland"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526a2" + "$oid": "66723d958f368f285d3042df" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29429,15 +29429,15 @@ "cohort": "28", "jobTitle": "Associate Software Engineer", "industry": "Fintech", - "cities": ["Riverside", "Las Vegas", "Irvine", "Saint Paul"], + "cities": ["Austin", "Toronto"], "_id": { - "$oid": "666cbc3240af7b375e3526a3" + "$oid": "66723d958f368f285d3042e0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29450,15 +29450,15 @@ "cohort": "26", "jobTitle": "Mid-Level Software Engineer (contract-to-hire)", "industry": "Fintech", - "cities": ["Orlando", "San Francisco", "Reno"], + "cities": ["Las Vegas", "Atlanta", "Plano"], "_id": { - "$oid": "666cbc3240af7b375e3526a4" + "$oid": "66723d958f368f285d3042e1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.255Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29471,15 +29471,15 @@ "cohort": "45", "jobTitle": "UI Engineer", "industry": "Retail", - "cities": ["Reno", "Madison", "Norfolk"], + "cities": ["Toronto"], "_id": { - "$oid": "666cbc3240af7b375e3526a5" + "$oid": "66723d958f368f285d3042e2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29492,15 +29492,15 @@ "cohort": "32", "jobTitle": "Front End Developer", "industry": "Insurance", - "cities": ["Baltimore"], + "cities": ["Virginia Beach", "Durham", "Jersey City"], "_id": { - "$oid": "666cbc3240af7b375e3526a6" + "$oid": "66723d958f368f285d3042e3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29513,15 +29513,15 @@ "cohort": "4", "jobTitle": "Senior Software Engineer", "industry": "Insurtech", - "cities": ["Jersey City", "Irving", "Tampa"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526a7" + "$oid": "66723d958f368f285d3042e4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29534,15 +29534,15 @@ "cohort": "47", "jobTitle": "Software Engineer 2", "industry": "Financial Services & Digital Payments", - "cities": ["Boston", "Corpus Christi"], + "cities": ["Indianapolis", "Arlington", "San Antonio"], "_id": { - "$oid": "666cbc3240af7b375e3526a8" + "$oid": "66723d958f368f285d3042e5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29555,15 +29555,15 @@ "cohort": "44", "jobTitle": "Software Engineer", "industry": "Communication/Productivity Software", - "cities": ["Chicago", "Durham", "Newark", "San Jose"], + "cities": ["Denver", "Raleigh"], "_id": { - "$oid": "666cbc3240af7b375e3526a9" + "$oid": "66723d958f368f285d3042e6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29576,15 +29576,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "E-Commerce", - "cities": ["Riverside", "Atlanta", "Los Angeles", "Houston"], + "cities": ["Lubbock", "Charlotte", "Anchorage"], "_id": { - "$oid": "666cbc3240af7b375e3526aa" + "$oid": "66723d958f368f285d3042e7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29597,15 +29597,15 @@ "cohort": "40", "jobTitle": "Software Engineer", "industry": "Retail", - "cities": ["Baltimore", "Detroit"], + "cities": ["El Paso", "Chandler"], "_id": { - "$oid": "666cbc3240af7b375e3526ab" + "$oid": "66723d958f368f285d3042e8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29618,15 +29618,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "TV ads", - "cities": ["Charlotte", "Gilbert", "Tampa"], + "cities": ["Chula Vista", "Riverside"], "_id": { - "$oid": "666cbc3240af7b375e3526ac" + "$oid": "66723d958f368f285d3042e9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29639,15 +29639,15 @@ "cohort": "51", "jobTitle": "Software Engineer", "industry": "Business Tech/Enterprise Tech", - "cities": ["Chesapeake", "Milwaukee", "Seattle", "Tulsa"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526ad" + "$oid": "66723d958f368f285d3042ea" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29660,15 +29660,15 @@ "cohort": "9", "jobTitle": "Full Stack Developer", "industry": "Other", - "cities": ["Tampa"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526ae" + "$oid": "66723d958f368f285d3042eb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29681,15 +29681,15 @@ "cohort": "13", "jobTitle": "Full Stack Engineer", "industry": "Media", - "cities": ["Oakland"], + "cities": ["Toronto", "London", "Baltimore"], "_id": { - "$oid": "666cbc3240af7b375e3526af" + "$oid": "66723d958f368f285d3042ec" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29702,15 +29702,15 @@ "cohort": "24", "jobTitle": "Software Engineer", "industry": "Media & Advertisement", - "cities": ["Baltimore", "Jacksonville", "Aurora", "Glendale"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526b0" + "$oid": "66723d958f368f285d3042ed" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29723,15 +29723,15 @@ "cohort": "24", "jobTitle": "Programmer I", "industry": "Software Development/Consulting", - "cities": ["London", "Raleigh"], + "cities": ["Tampa"], "_id": { - "$oid": "666cbc3240af7b375e3526b1" + "$oid": "66723d958f368f285d3042ee" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29744,15 +29744,15 @@ "cohort": "8", "jobTitle": "Junior Software Engineer", "industry": "Software / Tech", - "cities": ["Columbus"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526b2" + "$oid": "66723d958f368f285d3042ef" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29765,15 +29765,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Columbus", "Glendale", "New York", "Chandler"], + "cities": ["Norfolk"], "_id": { - "$oid": "666cbc3240af7b375e3526b3" + "$oid": "66723d958f368f285d3042f0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29786,15 +29786,15 @@ "cohort": "37", "jobTitle": "Developer", "industry": "Banking", - "cities": ["London", "Tulsa", "Buffalo", "Virginia Beach"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526b4" + "$oid": "66723d958f368f285d3042f1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29807,15 +29807,15 @@ "cohort": "40", "jobTitle": "Software Engineer II", "industry": "Tech", - "cities": ["Colorado Springs", "Austin", "Anchorage", "Fort Wayne"], + "cities": ["Denver"], "_id": { - "$oid": "666cbc3240af7b375e3526b5" + "$oid": "66723d958f368f285d3042f2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29828,15 +29828,15 @@ "cohort": "7", "jobTitle": "Software engineer", "industry": "", - "cities": ["Madison", "Chicago", "Colorado Springs"], + "cities": ["North Las Vegas", "Santa Ana"], "_id": { - "$oid": "666cbc3240af7b375e3526b6" + "$oid": "66723d958f368f285d3042f3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29849,15 +29849,15 @@ "cohort": "39", "jobTitle": "Junior Software Developer", "industry": "Dentistry", - "cities": ["Honolulu", "Fort Wayne", "Aurora", "Portland"], + "cities": ["Fort Worth", "Detroit", "Minneapolis"], "_id": { - "$oid": "666cbc3240af7b375e3526b7" + "$oid": "66723d958f368f285d3042f4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29870,15 +29870,15 @@ "cohort": "39", "jobTitle": "Software Engineer", "industry": "Marketing Tevh", - "cities": ["Virginia Beach", "Indianapolis"], + "cities": ["Wichita"], "_id": { - "$oid": "666cbc3240af7b375e3526b8" + "$oid": "66723d958f368f285d3042f5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29891,15 +29891,15 @@ "cohort": "31", "jobTitle": "Software Engineer II", "industry": "Entertainment", - "cities": ["Columbus"], + "cities": ["Kansas City", "Lexington", "Jacksonville"], "_id": { - "$oid": "666cbc3240af7b375e3526b9" + "$oid": "66723d958f368f285d3042f6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29912,15 +29912,15 @@ "cohort": "42", "jobTitle": "Software Engineer II", "industry": "Entertainment", - "cities": ["Nashville", "Fort Worth", "Newark"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526ba" + "$oid": "66723d958f368f285d3042f7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29933,15 +29933,15 @@ "cohort": "3", "jobTitle": "Member of Technical Staff in Fullstack Web Group", "industry": "Research", - "cities": ["Chesapeake", "Aurora", "Fort Worth", "Cleveland"], + "cities": ["Mexico City"], "_id": { - "$oid": "666cbc3240af7b375e3526bb" + "$oid": "66723d958f368f285d3042f8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29954,15 +29954,15 @@ "cohort": "13", "jobTitle": "Typescript Full Stack Engineer", "industry": "Software / Tech", - "cities": ["Boston", "Columbus", "Arlington"], + "cities": ["Sรฃo Paulo"], "_id": { - "$oid": "666cbc3240af7b375e3526bc" + "$oid": "66723d958f368f285d3042f9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29975,15 +29975,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "Professional Training & Coaching", - "cities": ["Fort Wayne", "Chicago", "Bakersfield"], + "cities": ["Scottsdale", "Cleveland", "Irvine"], "_id": { - "$oid": "666cbc3240af7b375e3526bd" + "$oid": "66723d958f368f285d3042fa" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -29996,15 +29996,15 @@ "cohort": "47", "jobTitle": "Web Developer", "industry": "Healthcare", - "cities": ["San Antonio", "Virginia Beach"], + "cities": ["London", "Henderson"], "_id": { - "$oid": "666cbc3240af7b375e3526be" + "$oid": "66723d958f368f285d3042fb" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30017,15 +30017,15 @@ "cohort": "26", "jobTitle": "Lead Web UI Engineer?", "industry": "Telecommunications", - "cities": ["El Paso", "Berlin"], + "cities": ["Chicago"], "_id": { - "$oid": "666cbc3240af7b375e3526bf" + "$oid": "66723d958f368f285d3042fc" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30038,15 +30038,15 @@ "cohort": "1", "jobTitle": "Software Engineer III", "industry": "Other", - "cities": ["Fort Worth"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526c0" + "$oid": "66723d958f368f285d3042fd" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30059,15 +30059,15 @@ "cohort": "12", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Jersey City", "Los Angeles", "Irving", "Irvine"], + "cities": ["Saint Paul"], "_id": { - "$oid": "666cbc3240af7b375e3526c1" + "$oid": "66723d958f368f285d3042fe" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30080,15 +30080,15 @@ "cohort": "48", "jobTitle": "Front-End Developer", "industry": "Retail", - "cities": ["Beijing", "Anaheim", "Omaha", "Riverside"], + "cities": ["Henderson", "Long Beach"], "_id": { - "$oid": "666cbc3240af7b375e3526c2" + "$oid": "66723d958f368f285d3042ff" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30101,15 +30101,15 @@ "cohort": "40", "jobTitle": "Full Stack Software Engineer", "industry": "Construction/retail", - "cities": ["Las Vegas"], + "cities": ["Chandler"], "_id": { - "$oid": "666cbc3240af7b375e3526c3" + "$oid": "66723d958f368f285d304300" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30122,15 +30122,15 @@ "cohort": "10", "jobTitle": "Software Engineer", "industry": "News/Entertainment/Streaming Platforms", - "cities": ["Detroit", "Charlotte"], + "cities": ["Reno"], "_id": { - "$oid": "666cbc3240af7b375e3526c4" + "$oid": "66723d958f368f285d304301" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30143,15 +30143,15 @@ "cohort": "38", "jobTitle": "Software Developer", "industry": "News/Entertainment/Streaming Platforms", - "cities": ["Buffalo", "Greensboro", "Chicago", "Lincoln"], + "cities": ["Sydney"], "_id": { - "$oid": "666cbc3240af7b375e3526c5" + "$oid": "66723d958f368f285d304302" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30164,15 +30164,15 @@ "cohort": "36", "jobTitle": "Full Stack Developer", "industry": "Healthcare", - "cities": ["Milwaukee", "Oklahoma City", "Charlotte"], + "cities": ["El Paso"], "_id": { - "$oid": "666cbc3240af7b375e3526c6" + "$oid": "66723d958f368f285d304303" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30185,15 +30185,15 @@ "cohort": "36", "jobTitle": "Lead Frontend Engineer", "industry": "Social Impact/Nonprofit", - "cities": ["Mesa"], + "cities": ["Kansas City", "Fort Worth"], "_id": { - "$oid": "666cbc3240af7b375e3526c7" + "$oid": "66723d958f368f285d304304" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30206,15 +30206,15 @@ "cohort": "9", "jobTitle": "Software Engineer II / Software Engineering Mentor", "industry": "Software / Tech", - "cities": ["Chandler", "Nashville", "Las Vegas"], + "cities": ["Anaheim", "Mesa", "Chicago"], "_id": { - "$oid": "666cbc3240af7b375e3526c8" + "$oid": "66723d958f368f285d304305" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30227,15 +30227,15 @@ "cohort": "41", "jobTitle": "Software Engineer", "industry": "Entertainment", - "cities": ["Miami"], + "cities": ["Arlington", "Virginia Beach", "Scottsdale"], "_id": { - "$oid": "666cbc3240af7b375e3526c9" + "$oid": "66723d958f368f285d304306" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30248,15 +30248,15 @@ "cohort": "18", "jobTitle": "Senior Software Engineer", "industry": "IT", - "cities": ["Dallas", "Milwaukee", "Virginia Beach", "Fresno"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526ca" + "$oid": "66723d958f368f285d304307" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30269,15 +30269,15 @@ "cohort": "27", "jobTitle": "Software Engineer", "industry": "Entertainment/Media", - "cities": ["Aurora", "Kansas City", "Jersey City"], + "cities": ["Norfolk", "Albuquerque", "Riverside"], "_id": { - "$oid": "666cbc3240af7b375e3526cb" + "$oid": "66723d958f368f285d304308" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30290,15 +30290,15 @@ "cohort": "31", "jobTitle": "Software Engineer II", "industry": "Software / Tech", - "cities": ["Los Angeles", "Paris", "Phoenix"], + "cities": ["Washington", "Dallas", "New Orleans"], "_id": { - "$oid": "666cbc3240af7b375e3526cc" + "$oid": "66723d958f368f285d304309" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30311,15 +30311,15 @@ "cohort": "39", "jobTitle": "Full stack engineer", "industry": "Newsroom", - "cities": ["Virginia Beach", "Sรฃo Paulo", "Greensboro", "Oakland"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526cd" + "$oid": "66723d958f368f285d30430a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30332,15 +30332,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "Co-working spaces", - "cities": ["San Antonio"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526ce" + "$oid": "66723d958f368f285d30430b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30353,15 +30353,15 @@ "cohort": "28", "jobTitle": "Senior Software Engineer", "industry": "Real Estate", - "cities": ["North Las Vegas", "Dallas", "Long Beach"], + "cities": ["Laredo"], "_id": { - "$oid": "666cbc3240af7b375e3526cf" + "$oid": "66723d958f368f285d30430c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30374,15 +30374,15 @@ "cohort": "9", "jobTitle": "Full-Stack Engineer", "industry": "Robotics", - "cities": ["Phoenix", "St. Louis", "Irving", "Saint Paul"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526d0" + "$oid": "66723d958f368f285d30430d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30395,15 +30395,15 @@ "cohort": "50", "jobTitle": "Integration Engineer", "industry": "IT Services", - "cities": ["Toledo", "Mexico City"], + "cities": ["London"], "_id": { - "$oid": "666cbc3240af7b375e3526d1" + "$oid": "66723d958f368f285d30430e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30416,15 +30416,15 @@ "cohort": "31", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Sรฃo Paulo"], + "cities": ["Glendale"], "_id": { - "$oid": "666cbc3240af7b375e3526d2" + "$oid": "66723d958f368f285d30430f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30437,15 +30437,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Lincoln", "Los Angeles", "Stockton"], + "cities": ["Riverside", "Jersey City"], "_id": { - "$oid": "666cbc3240af7b375e3526d3" + "$oid": "66723d958f368f285d304310" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30458,15 +30458,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Chula Vista"], + "cities": ["Colorado Springs"], "_id": { - "$oid": "666cbc3240af7b375e3526d4" + "$oid": "66723d958f368f285d304311" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30479,15 +30479,15 @@ "cohort": "20", "jobTitle": "Founder", "industry": "Live Events", - "cities": ["Baltimore", "Tampa", "Honolulu", "Indianapolis"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526d5" + "$oid": "66723d958f368f285d304312" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30500,15 +30500,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "Social Media", - "cities": ["Garland", "New York", "Kansas City", "Philadelphia"], + "cities": ["Beijing", "Virginia Beach"], "_id": { - "$oid": "666cbc3240af7b375e3526d6" + "$oid": "66723d958f368f285d304313" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30521,15 +30521,15 @@ "cohort": "41", "jobTitle": "Site Reliability Engineer", "industry": "Video Social Networking", - "cities": ["Garland", "Paris", "Saint Paul", "Indianapolis"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526d7" + "$oid": "66723d958f368f285d304314" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30542,15 +30542,15 @@ "cohort": "46", "jobTitle": "Software Engineer", "industry": "Social", - "cities": ["Durham", "Newark", "Milwaukee", "Lexington"], + "cities": ["Fort Wayne"], "_id": { - "$oid": "666cbc3240af7b375e3526d8" + "$oid": "66723d958f368f285d304315" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30563,15 +30563,15 @@ "cohort": "46", "jobTitle": "Software Engineer II, Web Development", "industry": "Dating", - "cities": ["Houston", "Paris", "Baltimore"], + "cities": ["Colorado Springs", "Baltimore", "Mesa"], "_id": { - "$oid": "666cbc3240af7b375e3526d9" + "$oid": "66723d958f368f285d304316" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30584,15 +30584,15 @@ "cohort": "24", "jobTitle": "Senior Backend Engineer", "industry": "", - "cities": ["Houston"], + "cities": ["Norfolk", "Durham", "Anaheim"], "_id": { - "$oid": "666cbc3240af7b375e3526da" + "$oid": "66723d958f368f285d304317" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30605,15 +30605,15 @@ "cohort": "53", "jobTitle": "Frontend Engineer", "industry": "Blockchain/Web3", - "cities": ["Mexico City"], + "cities": ["Tokyo", "Indianapolis", "Omaha"], "_id": { - "$oid": "666cbc3240af7b375e3526db" + "$oid": "66723d958f368f285d304318" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30626,15 +30626,15 @@ "cohort": "18", "jobTitle": "Software Engineer II", "industry": "Restaurant software", - "cities": ["Greensboro", "Jersey City", "Plano"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526dc" + "$oid": "66723d958f368f285d304319" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30647,15 +30647,15 @@ "cohort": "2", "jobTitle": "Associate Software Engineer", "industry": "Entertainment", - "cities": ["Fort Wayne", "Anchorage", "Minneapolis"], + "cities": ["Irvine"], "_id": { - "$oid": "666cbc3240af7b375e3526dd" + "$oid": "66723d958f368f285d30431a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30668,15 +30668,15 @@ "cohort": "41", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Cincinnati"], + "cities": ["Toronto"], "_id": { - "$oid": "666cbc3240af7b375e3526de" + "$oid": "66723d958f368f285d30431b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30689,15 +30689,15 @@ "cohort": "15", "jobTitle": "Senior Software Engineer", "industry": "Web Dev for Air Force", - "cities": ["Washington", "Plano", "Pittsburgh", "Atlanta"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526df" + "$oid": "66723d958f368f285d30431c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30710,15 +30710,15 @@ "cohort": "19", "jobTitle": "Software Engineer", "industry": "Real Estate Tech", - "cities": ["Berlin", "Washington"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526e0" + "$oid": "66723d958f368f285d30431d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30731,15 +30731,15 @@ "cohort": "5", "jobTitle": "Senior Engineer II", "industry": "", - "cities": ["Santa Ana", "Miami", "Louisville", "Sรฃo Paulo"], + "cities": ["Sacramento", "Minneapolis"], "_id": { - "$oid": "666cbc3240af7b375e3526e1" + "$oid": "66723d958f368f285d30431e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30752,15 +30752,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "Education tools", - "cities": ["Albuquerque"], + "cities": ["Mumbai", "Virginia Beach", "Berlin"], "_id": { - "$oid": "666cbc3240af7b375e3526e2" + "$oid": "66723d958f368f285d30431f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30773,15 +30773,15 @@ "cohort": "12", "jobTitle": "Software Engineer", "industry": "Automotive", - "cities": ["Cincinnati", "Arlington"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526e3" + "$oid": "66723d958f368f285d304320" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30794,15 +30794,15 @@ "cohort": "14", "jobTitle": "Software Engineer", "industry": "Automotive", - "cities": ["Corpus Christi"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526e4" + "$oid": "66723d958f368f285d304321" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30815,15 +30815,15 @@ "cohort": "7", "jobTitle": "Backend Engineer", "industry": "Software / Tech", - "cities": ["Lexington"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526e5" + "$oid": "66723d958f368f285d304322" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30836,15 +30836,15 @@ "cohort": "2", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Seattle", "Cincinnati"], + "cities": ["Cincinnati", "Riverside"], "_id": { - "$oid": "666cbc3240af7b375e3526e6" + "$oid": "66723d958f368f285d304323" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30857,15 +30857,15 @@ "cohort": "41", "jobTitle": "Software engineer", "industry": "Web security", - "cities": ["Memphis", "Colorado Springs"], + "cities": ["San Diego"], "_id": { - "$oid": "666cbc3240af7b375e3526e7" + "$oid": "66723d958f368f285d304324" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30878,15 +30878,15 @@ "cohort": "55", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Stockton"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526e8" + "$oid": "66723d958f368f285d304325" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30899,15 +30899,15 @@ "cohort": "38", "jobTitle": "Frontend Software Engineer", "industry": "Communication Tech", - "cities": ["Detroit"], + "cities": ["Las Vegas", "Winston-Salem", "Pittsburgh"], "_id": { - "$oid": "666cbc3240af7b375e3526e9" + "$oid": "66723d958f368f285d304326" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30920,15 +30920,15 @@ "cohort": "39", "jobTitle": "Software Engineer II", "industry": "Software Consultancy", - "cities": ["Portland"], + "cities": ["New York"], "_id": { - "$oid": "666cbc3240af7b375e3526ea" + "$oid": "66723d958f368f285d304327" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30941,15 +30941,15 @@ "cohort": "49", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Chicago", "San Jose", "Glendale"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526eb" + "$oid": "66723d958f368f285d304328" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30962,15 +30962,15 @@ "cohort": "2", "jobTitle": "Cloud Infrastructure Engineer", "industry": "Ad-Tech", - "cities": ["Oakland", "Irvine"], + "cities": ["San Jose", "Cleveland"], "_id": { - "$oid": "666cbc3240af7b375e3526ec" + "$oid": "66723d958f368f285d304329" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -30983,15 +30983,15 @@ "cohort": "9", "jobTitle": "Engineer I", "industry": "Social Impact", - "cities": ["Virginia Beach"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526ed" + "$oid": "66723d958f368f285d30432a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31004,15 +31004,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Glendale"], + "cities": ["Irvine"], "_id": { - "$oid": "666cbc3240af7b375e3526ee" + "$oid": "66723d958f368f285d30432b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31025,15 +31025,15 @@ "cohort": "48", "jobTitle": "Software Engineer II", "industry": "Marketing", - "cities": ["Scottsdale", "Greensboro", "Pittsburgh", "St. Louis"], + "cities": ["Lexington"], "_id": { - "$oid": "666cbc3240af7b375e3526ef" + "$oid": "66723d958f368f285d30432c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31046,15 +31046,15 @@ "cohort": "17", "jobTitle": "Software Engineer", "industry": "Automotive", - "cities": ["Saint Paul"], + "cities": ["Boston", "Phoenix"], "_id": { - "$oid": "666cbc3240af7b375e3526f0" + "$oid": "66723d958f368f285d30432d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31067,15 +31067,15 @@ "cohort": "27", "jobTitle": "full stack developer", "industry": "computer vision", - "cities": ["Corpus Christi"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526f1" + "$oid": "66723d958f368f285d30432e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31088,15 +31088,15 @@ "cohort": "42", "jobTitle": "Associate Software Engineer", "industry": "Health Tech", - "cities": ["Chula Vista", "San Antonio", "Dallas"], + "cities": ["Indianapolis", "Albuquerque"], "_id": { - "$oid": "666cbc3240af7b375e3526f2" + "$oid": "66723d958f368f285d30432f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31109,15 +31109,15 @@ "cohort": "22", "jobTitle": "Associate Software Engineer - Backend", "industry": "Healthtech", - "cities": ["Paris", "Stockton", "Oklahoma City", "Tampa"], + "cities": ["Corpus Christi"], "_id": { - "$oid": "666cbc3240af7b375e3526f3" + "$oid": "66723d958f368f285d304330" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31130,15 +31130,15 @@ "cohort": "34", "jobTitle": "Senior Software Engineer", "industry": "Cloud & Network Monitoring", - "cities": ["Sรฃo Paulo"], + "cities": ["Detroit"], "_id": { - "$oid": "666cbc3240af7b375e3526f4" + "$oid": "66723d958f368f285d304331" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31151,15 +31151,15 @@ "cohort": "40", "jobTitle": "Software Engineer (Personas R&D)", "industry": "Communications", - "cities": ["Las Vegas"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526f5" + "$oid": "66723d958f368f285d304332" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31172,15 +31172,15 @@ "cohort": "11", "jobTitle": "Frontend Engineer", "industry": "IoT", - "cities": ["Las Vegas"], + "cities": ["Garland", "Greensboro"], "_id": { - "$oid": "666cbc3240af7b375e3526f6" + "$oid": "66723d958f368f285d304333" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31193,15 +31193,15 @@ "cohort": "4", "jobTitle": "Front End Developer", "industry": "Software / Tech", - "cities": ["New York", "Houston", "Lincoln"], + "cities": ["Philadelphia", "Fort Worth"], "_id": { - "$oid": "666cbc3240af7b375e3526f7" + "$oid": "66723d958f368f285d304334" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31214,15 +31214,15 @@ "cohort": "31", "jobTitle": "Software Engineer - Front End", "industry": "Cybersecurity", - "cities": ["Las Vegas", "Garland", "Gilbert"], + "cities": ["New York", "Sydney"], "_id": { - "$oid": "666cbc3240af7b375e3526f8" + "$oid": "66723d958f368f285d304335" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31235,15 +31235,15 @@ "cohort": "31", "jobTitle": "Jr. Frontend Developer", "industry": "Government", - "cities": ["San Francisco"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526f9" + "$oid": "66723d958f368f285d304336" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31256,15 +31256,15 @@ "cohort": "10", "jobTitle": "Backend Engineer", "industry": "Crypto", - "cities": ["Minneapolis", "Long Beach"], + "cities": ["San Francisco", "Mumbai", "Chicago"], "_id": { - "$oid": "666cbc3240af7b375e3526fa" + "$oid": "66723d958f368f285d304337" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31277,15 +31277,15 @@ "cohort": "31", "jobTitle": "Software Engineer II", "industry": "Transportation", - "cities": ["St. Petersburg", "Indianapolis"], + "cities": ["Corpus Christi", "Boston"], "_id": { - "$oid": "666cbc3240af7b375e3526fb" + "$oid": "66723d958f368f285d304338" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31298,15 +31298,15 @@ "cohort": "31", "jobTitle": "Software Engineer (SE1)", "industry": "Software / Tech", - "cities": ["Mexico City", "Chandler", "Toronto", "San Francisco"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526fc" + "$oid": "66723d958f368f285d304339" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31319,15 +31319,15 @@ "cohort": "34", "jobTitle": "Software Engineer", "industry": "Aerospace", - "cities": ["New Orleans"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e3526fd" + "$oid": "66723d958f368f285d30433a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31340,15 +31340,15 @@ "cohort": "34", "jobTitle": "Integrationโ€™s Developer", "industry": "Other", - "cities": ["Milwaukee", "Toronto", "Anaheim"], + "cities": ["Toronto"], "_id": { - "$oid": "666cbc3240af7b375e3526fe" + "$oid": "66723d958f368f285d30433b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31361,15 +31361,15 @@ "cohort": "5", "jobTitle": "Senior Consultant", "industry": "Consulting", - "cities": ["Minneapolis", "New York", "San Diego", "Arlington"], + "cities": ["Austin", "Toledo"], "_id": { - "$oid": "666cbc3240af7b375e3526ff" + "$oid": "66723d958f368f285d30433c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31382,15 +31382,15 @@ "cohort": "42", "jobTitle": "Full Stack Developer", "industry": "Conversational Service Automation", - "cities": ["Washington"], + "cities": ["Plano", "Newark", "Phoenix"], "_id": { - "$oid": "666cbc3240af7b375e352700" + "$oid": "66723d958f368f285d30433d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31403,15 +31403,15 @@ "cohort": "19", "jobTitle": "Software Engineer", "industry": "AI / ML", - "cities": ["Milwaukee", "Chicago", "Cleveland", "Albuquerque"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352701" + "$oid": "66723d958f368f285d30433e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31424,15 +31424,15 @@ "cohort": "36", "jobTitle": "Developer - IT", "industry": "Aerospace", - "cities": ["Corpus Christi"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352702" + "$oid": "66723d958f368f285d30433f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31445,15 +31445,15 @@ "cohort": "16", "jobTitle": "Sr Fullstack Developer", "industry": "", - "cities": ["Toronto"], + "cities": ["Oklahoma City", "Wichita", "Durham"], "_id": { - "$oid": "666cbc3240af7b375e352703" + "$oid": "66723d958f368f285d304340" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31466,15 +31466,15 @@ "cohort": "7", "jobTitle": "Software Developer ERP", "industry": "Other", - "cities": ["Mexico City", "Charlotte", "Atlanta"], + "cities": ["Corpus Christi", "Toronto"], "_id": { - "$oid": "666cbc3240af7b375e352704" + "$oid": "66723d958f368f285d304341" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31487,15 +31487,15 @@ "cohort": "9", "jobTitle": "Junior application developer", "industry": "Other", - "cities": ["Portland", "North Las Vegas", "Lubbock"], + "cities": ["Glendale"], "_id": { - "$oid": "666cbc3240af7b375e352705" + "$oid": "66723d958f368f285d304342" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31508,15 +31508,15 @@ "cohort": "36", "jobTitle": "Web Developer", "industry": "Art", - "cities": ["Detroit"], + "cities": ["Berlin", "Jacksonville"], "_id": { - "$oid": "666cbc3240af7b375e352706" + "$oid": "66723d958f368f285d304343" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31529,15 +31529,15 @@ "cohort": "11", "jobTitle": "Senior Software Engineer", "industry": "Tech", - "cities": ["Nashville"], + "cities": ["Winston-Salem"], "_id": { - "$oid": "666cbc3240af7b375e352707" + "$oid": "66723d958f368f285d304344" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31550,15 +31550,15 @@ "cohort": "51", "jobTitle": "Full Stack Developer", "industry": "Other", - "cities": ["Memphis", "Mesa", "Oakland"], + "cities": ["Austin", "New Orleans"], "_id": { - "$oid": "666cbc3240af7b375e352708" + "$oid": "66723d958f368f285d304345" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31571,15 +31571,15 @@ "cohort": "22", "jobTitle": "Frontend Engineer", "industry": "Crypto", - "cities": ["Stockton", "Glendale", "San Francisco"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352709" + "$oid": "66723d958f368f285d304346" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31592,15 +31592,15 @@ "cohort": "34", "jobTitle": "Software Engineer", "industry": "CRM", - "cities": ["Denver", "Chula Vista", "Nashville", "Charlotte"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35270a" + "$oid": "66723d958f368f285d304347" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31613,15 +31613,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Software Solutions/Developer Tools", - "cities": ["Mesa", "Fort Worth", "Tokyo"], + "cities": ["Tokyo", "Corpus Christi", "Cincinnati"], "_id": { - "$oid": "666cbc3240af7b375e35270b" + "$oid": "66723d958f368f285d304348" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31634,15 +31634,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Travel", - "cities": ["Chula Vista", "Gilbert", "Miami", "Charlotte"], + "cities": ["Aurora"], "_id": { - "$oid": "666cbc3240af7b375e35270c" + "$oid": "66723d958f368f285d304349" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31655,15 +31655,15 @@ "cohort": "35", "jobTitle": "Senior Software Engineer", "industry": "Other", - "cities": ["Jacksonville", "Chula Vista", "Detroit"], + "cities": ["Toronto", "Mumbai", "Santa Ana"], "_id": { - "$oid": "666cbc3240af7b375e35270d" + "$oid": "66723d958f368f285d30434a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31676,15 +31676,15 @@ "cohort": "30", "jobTitle": "Mobile Software Engineer", "industry": "Consumer / Transportation", - "cities": ["North Las Vegas", "Toledo", "Stockton", "Tucson"], + "cities": ["St. Petersburg", "Toledo"], "_id": { - "$oid": "666cbc3240af7b375e35270e" + "$oid": "66723d958f368f285d30434b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31697,15 +31697,15 @@ "cohort": "35", "jobTitle": "Application Developer", "industry": "Software / Tech", - "cities": ["London", "Sydney", "Albuquerque", "Virginia Beach"], + "cities": ["Dallas", "Laredo", "Omaha"], "_id": { - "$oid": "666cbc3240af7b375e35270f" + "$oid": "66723d958f368f285d30434c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31718,15 +31718,15 @@ "cohort": "42", "jobTitle": "Application Developer", "industry": "Other", - "cities": ["Charlotte", "Minneapolis", "Oakland", "St. Louis"], + "cities": ["Tampa"], "_id": { - "$oid": "666cbc3240af7b375e352710" + "$oid": "66723d958f368f285d30434d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31739,15 +31739,15 @@ "cohort": "21", "jobTitle": "Full Stack Engineer", "industry": "Consulting", - "cities": ["Berlin", "Sacramento"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352711" + "$oid": "66723d958f368f285d30434e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31760,15 +31760,15 @@ "cohort": "41", "jobTitle": "Software Engineer + Solutions Architect", "industry": "E-Commerce", - "cities": ["Henderson", "Berlin"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352712" + "$oid": "66723d958f368f285d30434f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31781,15 +31781,15 @@ "cohort": "49", "jobTitle": "Software Developer", "industry": "Healthcare", - "cities": ["Boston"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352713" + "$oid": "66723d958f368f285d304350" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31802,15 +31802,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "Gaming hardware", - "cities": ["Minneapolis", "Nashville", "Plano", "Beijing"], + "cities": ["Riverside"], "_id": { - "$oid": "666cbc3240af7b375e352714" + "$oid": "66723d958f368f285d304351" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.827Z" }, "__v": 0 }, @@ -31823,15 +31823,15 @@ "cohort": "2", "jobTitle": "Software Engineer", "industry": "Life Sciences", - "cities": ["Anaheim"], + "cities": ["Laredo", "Nashville"], "_id": { - "$oid": "666cbc3240af7b375e352715" + "$oid": "66723d958f368f285d304352" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -31844,15 +31844,15 @@ "cohort": "27", "jobTitle": "Software Engineer", "industry": "Law", - "cities": ["Washington", "Boston", "Oklahoma City"], + "cities": ["Newark"], "_id": { - "$oid": "666cbc3240af7b375e352716" + "$oid": "66723d958f368f285d304353" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -31865,15 +31865,15 @@ "cohort": "27", "jobTitle": "Backend Developer", "industry": "Legal", - "cities": ["Detroit", "Tampa", "Nashville", "Tucson"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352717" + "$oid": "66723d958f368f285d304354" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -31886,15 +31886,15 @@ "cohort": "4", "jobTitle": "Software Development Engineer II", "industry": "Media", - "cities": ["Cincinnati"], + "cities": ["Beijing", "Garland"], "_id": { - "$oid": "666cbc3240af7b375e352718" + "$oid": "66723d958f368f285d304355" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -31907,15 +31907,15 @@ "cohort": "41", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Atlanta", "Oklahoma City", "Dallas", "Chesapeake"], + "cities": ["Los Angeles", "Irving", "Toronto"], "_id": { - "$oid": "666cbc3240af7b375e352719" + "$oid": "66723d958f368f285d304356" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -31928,15 +31928,15 @@ "cohort": "27", "jobTitle": "Software Developer", "industry": "Consulting/Contracting Agency", - "cities": ["Honolulu", "Chesapeake", "Beijing"], + "cities": ["Houston", "Norfolk"], "_id": { - "$oid": "666cbc3240af7b375e35271a" + "$oid": "66723d958f368f285d304357" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -31949,15 +31949,15 @@ "cohort": "41", "jobTitle": "Senior Software Engineer", "industry": "Consulting", - "cities": ["Irving", "Plano", "North Las Vegas", "Nashville"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35271b" + "$oid": "66723d958f368f285d304358" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -31970,15 +31970,15 @@ "cohort": "45", "jobTitle": "Software Engineer, Front-End", "industry": "Software / Tech", - "cities": ["Columbus", "Greensboro", "Honolulu", "Louisville"], + "cities": ["Baltimore", "Greensboro"], "_id": { - "$oid": "666cbc3240af7b375e35271c" + "$oid": "66723d958f368f285d304359" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -31991,15 +31991,15 @@ "cohort": "13", "jobTitle": "Senior Full Stack Engineer", "industry": "Software / Tech", - "cities": ["New York", "Houston", "Corpus Christi"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35271d" + "$oid": "66723d958f368f285d30435a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32012,15 +32012,15 @@ "cohort": "52", "jobTitle": "Application Developer", "industry": "Data Analytics", - "cities": ["Kansas City", "Greensboro", "San Francisco", "Cleveland"], + "cities": ["Buffalo", "El Paso", "Corpus Christi"], "_id": { - "$oid": "666cbc3240af7b375e35271e" + "$oid": "66723d958f368f285d30435b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32033,15 +32033,15 @@ "cohort": "30", "jobTitle": "Front-End Developer", "industry": "Transportation", - "cities": ["Glendale", "Chicago", "Oakland", "Tulsa"], + "cities": ["Laredo", "San Francisco"], "_id": { - "$oid": "666cbc3240af7b375e35271f" + "$oid": "66723d958f368f285d30435c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32054,15 +32054,15 @@ "cohort": "23", "jobTitle": "Full Stack Developer", "industry": "Aerospace", - "cities": ["Philadelphia"], + "cities": ["Mumbai", "Oklahoma City", "Oakland"], "_id": { - "$oid": "666cbc3240af7b375e352720" + "$oid": "66723d958f368f285d30435d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32075,15 +32075,15 @@ "cohort": "48", "jobTitle": "Full Stack Developer", "industry": "Aerospace", - "cities": ["Chandler", "Las Vegas"], + "cities": ["Portland", "Sรฃo Paulo", "Winston-Salem"], "_id": { - "$oid": "666cbc3240af7b375e352721" + "$oid": "66723d958f368f285d30435e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32096,15 +32096,15 @@ "cohort": "5", "jobTitle": "Senior Full Stack Engineer", "industry": "Security", - "cities": ["Santa Ana", "Paris", "Albuquerque"], + "cities": ["Denver", "Reno", "Saint Paul"], "_id": { - "$oid": "666cbc3240af7b375e352722" + "$oid": "66723d958f368f285d30435f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32117,15 +32117,15 @@ "cohort": "12", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["London", "Winston-Salem", "Albuquerque"], + "cities": ["London", "Las Vegas", "Beijing"], "_id": { - "$oid": "666cbc3240af7b375e352723" + "$oid": "66723d958f368f285d304360" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32138,15 +32138,15 @@ "cohort": "24", "jobTitle": "Software Engineer", "industry": "Tech", - "cities": ["Anaheim", "San Francisco"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352724" + "$oid": "66723d958f368f285d304361" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32159,15 +32159,15 @@ "cohort": "29", "jobTitle": "Full Stack Software Engineer, Cloud Platform", "industry": "Transportation", - "cities": ["Mexico City", "Houston"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352725" + "$oid": "66723d958f368f285d304362" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32180,15 +32180,15 @@ "cohort": "52", "jobTitle": "JavaScript Developer", "industry": "Entertainment", - "cities": ["Durham"], + "cities": ["Winston-Salem", "Beijing"], "_id": { - "$oid": "666cbc3240af7b375e352726" + "$oid": "66723d958f368f285d304363" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32201,15 +32201,15 @@ "cohort": "39", "jobTitle": "Software Engineer, Platform", "industry": "Commercial Real Estate", - "cities": ["Chicago", "Long Beach"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352727" + "$oid": "66723d958f368f285d304364" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32222,15 +32222,15 @@ "cohort": "39", "jobTitle": "Backend Developer", "industry": "Manufacturing", - "cities": ["Madison"], + "cities": ["Arlington", "Bakersfield"], "_id": { - "$oid": "666cbc3240af7b375e352728" + "$oid": "66723d958f368f285d304365" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32243,15 +32243,15 @@ "cohort": "24", "jobTitle": "Software Engineer", "industry": "Pet Care", - "cities": ["Chula Vista", "Los Angeles", "New Orleans"], + "cities": ["Sydney"], "_id": { - "$oid": "666cbc3240af7b375e352729" + "$oid": "66723d958f368f285d304366" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32264,15 +32264,15 @@ "cohort": "12", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Bakersfield", "Irvine", "Tulsa"], + "cities": ["Washington", "Atlanta", "Tokyo"], "_id": { - "$oid": "666cbc3240af7b375e35272a" + "$oid": "66723d958f368f285d304367" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32285,15 +32285,15 @@ "cohort": "35", "jobTitle": "Software Engineer II", "industry": "Marketing", - "cities": ["El Paso", "Beijing"], + "cities": ["Denver"], "_id": { - "$oid": "666cbc3240af7b375e35272b" + "$oid": "66723d958f368f285d304368" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32306,15 +32306,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "Retail", - "cities": ["Reno", "Winston-Salem"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35272c" + "$oid": "66723d958f368f285d304369" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32327,15 +32327,15 @@ "cohort": "19", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Honolulu", "Pittsburgh", "Albuquerque"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35272d" + "$oid": "66723d958f368f285d30436a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.256Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32348,15 +32348,15 @@ "cohort": "31", "jobTitle": "Senior Software Engineer", "industry": "Health and Wellness", - "cities": ["Cleveland", "Cincinnati"], + "cities": ["Lubbock"], "_id": { - "$oid": "666cbc3240af7b375e35272e" + "$oid": "66723d958f368f285d30436b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32369,15 +32369,15 @@ "cohort": "25", "jobTitle": "Senior Backend Engineer (Node)", "industry": "FinTech (?)", - "cities": ["Cleveland", "Fresno", "Saint Paul", "Sacramento"], + "cities": ["Pittsburgh", "Buffalo"], "_id": { - "$oid": "666cbc3240af7b375e35272f" + "$oid": "66723d958f368f285d30436c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32390,15 +32390,15 @@ "cohort": "24", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Irvine", "St. Petersburg", "Winston-Salem", "St. Louis"], + "cities": ["Anaheim", "San Francisco", "Chesapeake"], "_id": { - "$oid": "666cbc3240af7b375e352730" + "$oid": "66723d958f368f285d30436d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32411,15 +32411,15 @@ "cohort": "22", "jobTitle": "BackendSoftware Engineer II", "industry": "Retail", - "cities": ["Plano", "Arlington"], + "cities": ["Boston"], "_id": { - "$oid": "666cbc3240af7b375e352731" + "$oid": "66723d958f368f285d30436e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32432,15 +32432,15 @@ "cohort": "13", "jobTitle": "Software Development Engineer II", "industry": "Entertainment", - "cities": ["Phoenix", "Fresno", "Chula Vista"], + "cities": ["Denver", "Norfolk"], "_id": { - "$oid": "666cbc3240af7b375e352732" + "$oid": "66723d958f368f285d30436f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32453,15 +32453,15 @@ "cohort": "42", "jobTitle": "Software UI Engineer", "industry": "Electronics", - "cities": ["Miami"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352733" + "$oid": "66723d958f368f285d304370" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32474,15 +32474,15 @@ "cohort": "26", "jobTitle": "Senior Software Engineer", "industry": "Consumer Services", - "cities": ["Mexico City", "Lincoln", "Garland"], + "cities": ["Fort Wayne", "Las Vegas"], "_id": { - "$oid": "666cbc3240af7b375e352734" + "$oid": "66723d958f368f285d304371" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32495,15 +32495,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "HVAC distributor", - "cities": ["Orlando", "North Las Vegas"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352735" + "$oid": "66723d958f368f285d304372" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32516,15 +32516,15 @@ "cohort": "23", "jobTitle": "Software Engineer L1", "industry": "E-Commerce", - "cities": ["Columbus", "Anaheim"], + "cities": ["St. Petersburg"], "_id": { - "$oid": "666cbc3240af7b375e352736" + "$oid": "66723d958f368f285d304373" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32537,15 +32537,15 @@ "cohort": "26", "jobTitle": "Software Engineer II", "industry": "Fintech", - "cities": ["Seattle", "Sydney"], + "cities": ["Atlanta", "North Las Vegas"], "_id": { - "$oid": "666cbc3240af7b375e352737" + "$oid": "66723d958f368f285d304374" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32558,15 +32558,15 @@ "cohort": "12", "jobTitle": "Software Engineer Intern", "industry": "E-Commerce", - "cities": ["Arlington", "Laredo", "Oakland", "Austin"], + "cities": ["Dallas", "Stockton", "Glendale"], "_id": { - "$oid": "666cbc3240af7b375e352738" + "$oid": "66723d958f368f285d304375" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32579,15 +32579,15 @@ "cohort": "36", "jobTitle": "Front End Software Engineer", "industry": "Developer Tools", - "cities": ["Tokyo", "Mesa"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352739" + "$oid": "66723d958f368f285d304376" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32600,15 +32600,15 @@ "cohort": "2", "jobTitle": "Frontend Software Engineer", "industry": "", - "cities": ["San Jose", "St. Louis"], + "cities": ["Indianapolis"], "_id": { - "$oid": "666cbc3240af7b375e35273a" + "$oid": "66723d958f368f285d304377" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32621,15 +32621,15 @@ "cohort": "5", "jobTitle": "Web Developer", "industry": "Healthcare", - "cities": ["Tulsa", "Indianapolis"], + "cities": ["Mesa"], "_id": { - "$oid": "666cbc3240af7b375e35273b" + "$oid": "66723d958f368f285d304378" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32642,15 +32642,15 @@ "cohort": "39", "jobTitle": "Software Engineer, Front End", "industry": "Healtchare", - "cities": ["Chandler", "Pittsburgh", "Cincinnati"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35273c" + "$oid": "66723d958f368f285d304379" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32663,15 +32663,15 @@ "cohort": "39", "jobTitle": "Mid-level Frontend Engineer", "industry": "Health", - "cities": ["Mumbai", "Mexico City", "St. Petersburg"], + "cities": ["Garland", "St. Louis"], "_id": { - "$oid": "666cbc3240af7b375e35273d" + "$oid": "66723d958f368f285d30437a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32684,15 +32684,15 @@ "cohort": "38", "jobTitle": "Frontend Software Engineer", "industry": "Health Tech", - "cities": ["Norfolk"], + "cities": ["Berlin", "Minneapolis"], "_id": { - "$oid": "666cbc3240af7b375e35273e" + "$oid": "66723d958f368f285d30437b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32705,15 +32705,15 @@ "cohort": "36", "jobTitle": "Software Engineer (Backend)", "industry": "Health Tech", - "cities": ["Gilbert", "Indianapolis", "Oklahoma City", "Irving"], + "cities": ["Wichita", "Cleveland"], "_id": { - "$oid": "666cbc3240af7b375e35273f" + "$oid": "66723d958f368f285d30437c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32726,15 +32726,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Omaha", "Jacksonville"], + "cities": ["Newark", "Orlando"], "_id": { - "$oid": "666cbc3240af7b375e352740" + "$oid": "66723d958f368f285d30437d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32747,15 +32747,15 @@ "cohort": "13", "jobTitle": "Senior Software Engineer", "industry": "Foodtech", - "cities": ["San Francisco", "Los Angeles", "St. Louis", "Fort Wayne"], + "cities": ["Durham", "Sacramento", "San Francisco"], "_id": { - "$oid": "666cbc3240af7b375e352741" + "$oid": "66723d958f368f285d30437e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32768,15 +32768,15 @@ "cohort": "41", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Plano", "Anchorage"], + "cities": ["Denver", "Louisville", "Tucson"], "_id": { - "$oid": "666cbc3240af7b375e352742" + "$oid": "66723d958f368f285d30437f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32789,15 +32789,15 @@ "cohort": "4", "jobTitle": "Microservices Engineer", "industry": "Health Tech", - "cities": ["Baltimore"], + "cities": ["Arlington", "Tulsa", "Fort Worth"], "_id": { - "$oid": "666cbc3240af7b375e352743" + "$oid": "66723d958f368f285d304380" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32810,15 +32810,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Real Estate / Hospitality", - "cities": ["Jacksonville", "Anchorage"], + "cities": ["Mexico City", "Stockton", "Irvine"], "_id": { - "$oid": "666cbc3240af7b375e352744" + "$oid": "66723d958f368f285d304381" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32831,15 +32831,15 @@ "cohort": "24", "jobTitle": "Server Developer", "industry": "", - "cities": ["Miami", "Fort Worth"], + "cities": ["Reno"], "_id": { - "$oid": "666cbc3240af7b375e352745" + "$oid": "66723d958f368f285d304382" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32852,15 +32852,15 @@ "cohort": "14", "jobTitle": "Frontend Software Engineer", "industry": "Sports/Entertainment", - "cities": ["Oklahoma City", "New Orleans"], + "cities": ["Reno"], "_id": { - "$oid": "666cbc3240af7b375e352746" + "$oid": "66723d958f368f285d304383" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32873,15 +32873,15 @@ "cohort": "24", "jobTitle": "front end software engineer", "industry": "casino", - "cities": ["Scottsdale", "Milwaukee", "St. Louis", "Fresno"], + "cities": ["Phoenix", "Paris", "Sacramento"], "_id": { - "$oid": "666cbc3240af7b375e352747" + "$oid": "66723d958f368f285d304384" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32894,15 +32894,15 @@ "cohort": "51", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["Fresno", "St. Louis", "Aurora"], + "cities": ["Omaha", "Fort Worth", "Atlanta"], "_id": { - "$oid": "666cbc3240af7b375e352748" + "$oid": "66723d958f368f285d304385" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32915,15 +32915,15 @@ "cohort": "42", "jobTitle": "Senior Full Stack Engineer", "industry": "Fintech, ML, AI", - "cities": ["Newark"], + "cities": ["Orlando"], "_id": { - "$oid": "666cbc3240af7b375e352749" + "$oid": "66723d958f368f285d304386" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32936,15 +32936,15 @@ "cohort": "53", "jobTitle": "Software Engineer", "industry": "Aerospace", - "cities": ["Glendale"], + "cities": ["Cincinnati"], "_id": { - "$oid": "666cbc3240af7b375e35274a" + "$oid": "66723d958f368f285d304387" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32957,15 +32957,15 @@ "cohort": "31", "jobTitle": "Software Engineer", "industry": "Business Analytics", - "cities": ["Corpus Christi", "Memphis"], + "cities": ["Atlanta"], "_id": { - "$oid": "666cbc3240af7b375e35274b" + "$oid": "66723d958f368f285d304388" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32978,15 +32978,15 @@ "cohort": "48", "jobTitle": "Software Engineer II", "industry": "Data Analytics", - "cities": ["Saint Paul", "Jersey City", "Norfolk"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35274c" + "$oid": "66723d958f368f285d304389" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -32999,15 +32999,15 @@ "cohort": "27", "jobTitle": "Solutions Engineer", "industry": "Software / Tech", - "cities": ["New Orleans"], + "cities": ["Louisville", "Denver"], "_id": { - "$oid": "666cbc3240af7b375e35274d" + "$oid": "66723d958f368f285d30438a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33020,15 +33020,15 @@ "cohort": "22", "jobTitle": "Senior Full Stack Developer", "industry": "", - "cities": ["Chandler", "Irvine", "St. Louis"], + "cities": ["Omaha"], "_id": { - "$oid": "666cbc3240af7b375e35274e" + "$oid": "66723d958f368f285d30438b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33041,15 +33041,15 @@ "cohort": "46", "jobTitle": "Software Development Engineer", "industry": "FinTech, HR", - "cities": ["Raleigh", "Charlotte", "Cleveland"], + "cities": ["Irving", "Toledo", "Bakersfield"], "_id": { - "$oid": "666cbc3240af7b375e35274f" + "$oid": "66723d958f368f285d30438c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33062,15 +33062,15 @@ "cohort": "20", "jobTitle": "Front-End Developer", "industry": "Intelligent Automation", - "cities": ["Sacramento"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352750" + "$oid": "66723d958f368f285d30438d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33083,15 +33083,15 @@ "cohort": "40", "jobTitle": "Internal Tools/Customer Support Engineer", "industry": "SaaS", - "cities": ["Charlotte", "Milwaukee", "Plano"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352751" + "$oid": "66723d958f368f285d30438e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33104,15 +33104,15 @@ "cohort": "11", "jobTitle": "JavaScript Developer - Material Planning", "industry": "IT Services", - "cities": ["Pittsburgh", "Austin"], + "cities": ["Lexington"], "_id": { - "$oid": "666cbc3240af7b375e352752" + "$oid": "66723d958f368f285d30438f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33125,15 +33125,15 @@ "cohort": "10", "jobTitle": "Full Stack Developer", "industry": "IT Services", - "cities": ["Honolulu", "Lexington", "Orlando", "New Orleans"], + "cities": ["St. Louis", "El Paso"], "_id": { - "$oid": "666cbc3240af7b375e352753" + "$oid": "66723d958f368f285d304390" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33146,15 +33146,15 @@ "cohort": "11", "jobTitle": "Associate Developer", "industry": "Consulting", - "cities": ["Portland"], + "cities": ["Milwaukee", "Gilbert", "Jersey City"], "_id": { - "$oid": "666cbc3240af7b375e352754" + "$oid": "66723d958f368f285d304391" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33167,15 +33167,15 @@ "cohort": "10", "jobTitle": "Software Engineer", "industry": "IT Services", - "cities": ["Tucson", "Anchorage", "Corpus Christi", "London"], + "cities": ["New York", "Stockton"], "_id": { - "$oid": "666cbc3240af7b375e352755" + "$oid": "66723d958f368f285d304392" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33188,15 +33188,15 @@ "cohort": "19", "jobTitle": "Software Engineer", "industry": "Digital Marketing", - "cities": ["Laredo", "Long Beach", "New York"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352756" + "$oid": "66723d958f368f285d304393" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33209,15 +33209,15 @@ "cohort": "59", "jobTitle": "Software Develooper", "industry": "Consulting", - "cities": ["Baltimore", "Tampa", "Lubbock", "Norfolk"], + "cities": ["Henderson", "Baltimore", "Norfolk"], "_id": { - "$oid": "666cbc3240af7b375e352757" + "$oid": "66723d958f368f285d304394" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33230,15 +33230,15 @@ "cohort": "43", "jobTitle": "Software Engineer", "industry": "Health and Wellness", - "cities": ["Oakland", "Lincoln"], + "cities": ["Milwaukee"], "_id": { - "$oid": "666cbc3240af7b375e352758" + "$oid": "66723d958f368f285d304395" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33251,15 +33251,15 @@ "cohort": "38", "jobTitle": "Jr. Front End Engineer", "industry": "IoT", - "cities": ["Charlotte", "Columbus"], + "cities": ["Kansas City"], "_id": { - "$oid": "666cbc3240af7b375e352759" + "$oid": "66723d958f368f285d304396" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33272,15 +33272,15 @@ "cohort": "25", "jobTitle": "Software Engineer II", "industry": "Advertising / Telecom", - "cities": ["Minneapolis", "Long Beach"], + "cities": ["Gilbert", "Fresno", "Raleigh"], "_id": { - "$oid": "666cbc3240af7b375e35275a" + "$oid": "66723d958f368f285d304397" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33293,15 +33293,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Adtech", - "cities": ["Anchorage", "Minneapolis", "Riverside"], + "cities": ["Mexico City", "Toronto"], "_id": { - "$oid": "666cbc3240af7b375e35275b" + "$oid": "66723d958f368f285d304398" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33314,15 +33314,15 @@ "cohort": "22", "jobTitle": "Software Engineer 2", "industry": "", - "cities": ["Garland", "Philadelphia", "Reno", "Cincinnati"], + "cities": ["Toronto", "Durham", "Miami"], "_id": { - "$oid": "666cbc3240af7b375e35275c" + "$oid": "66723d958f368f285d304399" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33335,15 +33335,15 @@ "cohort": "52", "jobTitle": "Jr. UI Developer", "industry": "IT Services", - "cities": ["Tucson", "New Orleans", "Berlin"], + "cities": ["San Francisco"], "_id": { - "$oid": "666cbc3240af7b375e35275d" + "$oid": "66723d958f368f285d30439a" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33356,15 +33356,15 @@ "cohort": "49", "jobTitle": "Software Apps Engineer I", "industry": "Software / Tech", - "cities": ["Scottsdale"], + "cities": ["Fresno", "Pittsburgh", "Beijing"], "_id": { - "$oid": "666cbc3240af7b375e35275e" + "$oid": "66723d958f368f285d30439b" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33377,15 +33377,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["San Francisco", "Nashville"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35275f" + "$oid": "66723d958f368f285d30439c" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33398,15 +33398,15 @@ "cohort": "8", "jobTitle": "Web Developer", "industry": "Healthtech/Healthcare", - "cities": ["Pittsburgh"], + "cities": ["Seattle", "Mexico City"], "_id": { - "$oid": "666cbc3240af7b375e352760" + "$oid": "66723d958f368f285d30439d" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33419,15 +33419,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Fort Worth"], + "cities": ["Henderson", "Mesa"], "_id": { - "$oid": "666cbc3240af7b375e352761" + "$oid": "66723d958f368f285d30439e" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33440,15 +33440,15 @@ "cohort": "15", "jobTitle": "UX Designer & Developer (It's complicated - let me know if you want more details)", "industry": "Financial Services", - "cities": ["Orlando", "Denver"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352762" + "$oid": "66723d958f368f285d30439f" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33461,15 +33461,15 @@ "cohort": "1", "jobTitle": "Software Engineer II", "industry": "Fintech", - "cities": ["Nashville", "Chicago"], + "cities": ["Anchorage", "Memphis", "Colorado Springs"], "_id": { - "$oid": "666cbc3240af7b375e352763" + "$oid": "66723d958f368f285d3043a0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33482,15 +33482,15 @@ "cohort": "2", "jobTitle": "Software Engineer II", "industry": "Healthtech/Healthcare", - "cities": ["Chesapeake", "Oklahoma City"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352764" + "$oid": "66723d958f368f285d3043a1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33503,15 +33503,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "Entrepreneurship", - "cities": ["Anchorage"], + "cities": ["Fort Wayne", "Philadelphia"], "_id": { - "$oid": "666cbc3240af7b375e352765" + "$oid": "66723d958f368f285d3043a2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33524,15 +33524,15 @@ "cohort": "46", "jobTitle": "Software Engineer II", "industry": "SaaS, business creation services", - "cities": ["Chicago", "London"], + "cities": ["Lincoln", "Pittsburgh", "Henderson"], "_id": { - "$oid": "666cbc3240af7b375e352766" + "$oid": "66723d958f368f285d3043a3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33545,15 +33545,15 @@ "cohort": "42", "jobTitle": "Senior Software Engineer", "industry": "Software/Tech", - "cities": ["Baltimore"], + "cities": ["Lexington"], "_id": { - "$oid": "666cbc3240af7b375e352767" + "$oid": "66723d958f368f285d3043a4" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33566,15 +33566,15 @@ "cohort": "14", "jobTitle": "Software Engineer", "industry": "med tech", - "cities": ["London"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352768" + "$oid": "66723d958f368f285d3043a5" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33587,15 +33587,15 @@ "cohort": "15", "jobTitle": "Frontend Engineer", "industry": "Computer & Network Security", - "cities": ["Gilbert", "Honolulu", "Tokyo"], + "cities": ["New Orleans", "Santa Ana", "Long Beach"], "_id": { - "$oid": "666cbc3240af7b375e352769" + "$oid": "66723d958f368f285d3043a6" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33608,15 +33608,15 @@ "cohort": "36", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Lexington"], + "cities": ["Corpus Christi", "Fresno", "Greensboro"], "_id": { - "$oid": "666cbc3240af7b375e35276a" + "$oid": "66723d958f368f285d3043a7" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33629,15 +33629,15 @@ "cohort": "46", "jobTitle": "Software Engineer", "industry": "Data", - "cities": ["Irvine", "Arlington", "Kansas City"], + "cities": ["Santa Ana", "Bakersfield", "Fort Wayne"], "_id": { - "$oid": "666cbc3240af7b375e35276b" + "$oid": "66723d958f368f285d3043a8" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33650,15 +33650,15 @@ "cohort": "35", "jobTitle": "Full Stack Engineer", "industry": "Entertainment", - "cities": ["Chula Vista", "St. Louis", "Mexico City"], + "cities": ["San Francisco"], "_id": { - "$oid": "666cbc3240af7b375e35276c" + "$oid": "66723d958f368f285d3043a9" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33671,15 +33671,15 @@ "cohort": "37", "jobTitle": "Software Engineer", "industry": "Entertainment", - "cities": ["Tucson", "Albuquerque"], + "cities": ["Lincoln", "Mesa", "Beijing"], "_id": { - "$oid": "666cbc3240af7b375e35276d" + "$oid": "66723d958f368f285d3043aa" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33692,15 +33692,15 @@ "cohort": "1", "jobTitle": "Software Development Engineer", "industry": "Real Estate", - "cities": ["Los Angeles", "Glendale", "Austin", "Fresno"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e35276e" + "$oid": "66723d958f368f285d3043ab" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33713,15 +33713,15 @@ "cohort": "10", "jobTitle": "Founding Software Engineer", "industry": "Security", - "cities": ["Baltimore", "Milwaukee", "Lexington"], + "cities": ["Albuquerque"], "_id": { - "$oid": "666cbc3240af7b375e35276f" + "$oid": "66723d958f368f285d3043ac" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33734,15 +33734,15 @@ "cohort": "36", "jobTitle": "Software Engineer (Front End)", "industry": "Transportation", - "cities": ["Colorado Springs", "New York", "Austin"], + "cities": ["Scottsdale", "Indianapolis", "Corpus Christi"], "_id": { - "$oid": "666cbc3240af7b375e352770" + "$oid": "66723d958f368f285d3043ad" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33755,15 +33755,15 @@ "cohort": "10", "jobTitle": "Senior Software Engineer", "industry": "Health Care", - "cities": ["Denver", "Norfolk"], + "cities": ["Bakersfield", "Chicago"], "_id": { - "$oid": "666cbc3240af7b375e352771" + "$oid": "66723d958f368f285d3043ae" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33776,15 +33776,15 @@ "cohort": "46", "jobTitle": "Software Engineer III", "industry": "Other", - "cities": ["Philadelphia"], + "cities": ["Chicago", "Pittsburgh", "Tucson"], "_id": { - "$oid": "666cbc3240af7b375e352772" + "$oid": "66723d958f368f285d3043af" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33797,15 +33797,15 @@ "cohort": "56", "jobTitle": "Data Systems Engineer", "industry": "Other", - "cities": ["Santa Ana", "Toronto"], + "cities": ["Bakersfield"], "_id": { - "$oid": "666cbc3240af7b375e352773" + "$oid": "66723d958f368f285d3043b0" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33818,15 +33818,15 @@ "cohort": "22", "jobTitle": "Full Stack Engineer", "industry": "education, financial services, banking", - "cities": ["Sydney", "Mumbai"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352774" + "$oid": "66723d958f368f285d3043b1" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33839,15 +33839,15 @@ "cohort": "33", "jobTitle": "Software Development Engineer", "industry": "Telecommunications", - "cities": ["Colorado Springs"], + "cities": [], "_id": { - "$oid": "666cbc3240af7b375e352775" + "$oid": "66723d958f368f285d3043b2" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 }, @@ -33860,15 +33860,15 @@ "cohort": "4", "jobTitle": "Senior DevSecOps Engineer", "industry": "Software / Tech", - "cities": ["Fort Worth", "Kansas City"], + "cities": ["Columbus", "Paris", "Minneapolis"], "_id": { - "$oid": "666cbc3240af7b375e352776" + "$oid": "66723d958f368f285d3043b3" }, "createdAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "updatedAt": { - "$date": "2024-06-14T21:54:58.257Z" + "$date": "2024-06-19T02:08:21.828Z" }, "__v": 0 } diff --git a/scripts/db/mongo-dev-init/MOCK_FORUMS.json b/scripts/db/mongo-dev-init/MOCK_FORUMS.json index d3a03531..eed03cfd 100644 --- a/scripts/db/mongo-dev-init/MOCK_FORUMS.json +++ b/scripts/db/mongo-dev-init/MOCK_FORUMS.json @@ -3,13 +3,13 @@ "title": "Code Crunch & Job Hunt: Battle Logs", "description": "Share your epic (or tragic) tales from the job search battlefield. Did you bravely conquer the coding test, or did it conquer you?", "_id": { - "$oid": "666cbc4a40af7b375e352f56" + "$oid": "66723dae8f368f285d304b92" }, "createdAt": { - "$date": "2024-06-14T21:55:22.453Z" + "$date": "2024-06-19T02:08:46.282Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:22.453Z" + "$date": "2024-06-19T02:08:46.282Z" }, "__v": 0 }, @@ -17,13 +17,13 @@ "title": "Debugging My Resume", "description": "Need help squashing those pesky resume bugs? Post your CV here and let the community help you refactor it into a job offer magnet.", "_id": { - "$oid": "666cbc4a40af7b375e352f57" + "$oid": "66723dae8f368f285d304b93" }, "createdAt": { - "$date": "2024-06-14T21:55:22.454Z" + "$date": "2024-06-19T02:08:46.282Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:22.454Z" + "$date": "2024-06-19T02:08:46.282Z" }, "__v": 0 }, @@ -31,13 +31,13 @@ "title": "Interview Nightmares & Dream Jobs", "description": "Spill the beans on your worst interview disasters and celebrate those rare moments when it actually went well. Misery loves company, and so do success stories!", "_id": { - "$oid": "666cbc4a40af7b375e352f58" + "$oid": "66723dae8f368f285d304b94" }, "createdAt": { - "$date": "2024-06-14T21:55:22.454Z" + "$date": "2024-06-19T02:08:46.282Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:22.454Z" + "$date": "2024-06-19T02:08:46.282Z" }, "__v": 0 }, @@ -45,13 +45,13 @@ "title": "HR: Humans or Robots?", "description": "Ever wonder if that HR person was a cleverly disguised bot? Share your weirdest and most robotic interactions with hiring departments.", "_id": { - "$oid": "666cbc4a40af7b375e352f59" + "$oid": "66723dae8f368f285d304b95" }, "createdAt": { - "$date": "2024-06-14T21:55:22.454Z" + "$date": "2024-06-19T02:08:46.282Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:22.454Z" + "$date": "2024-06-19T02:08:46.282Z" }, "__v": 0 }, @@ -59,83 +59,13 @@ "title": "Salary Negotiation: The Boss Fight", "description": "Tips, tricks, and epic fails from the final boss battle of job hunting: salary negotiations. Did you get the loot or just a consolation prize?", "_id": { - "$oid": "666cbc4a40af7b375e352f5a" + "$oid": "66723dae8f368f285d304b96" }, "createdAt": { - "$date": "2024-06-14T21:55:22.454Z" + "$date": "2024-06-19T02:08:46.282Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:22.454Z" - }, - "__v": 0 - }, - { - "title": "Coding Challenge Gauntlet", - "description": "Post and discuss the coding challenges that made you cry, laugh, or question your career choices. Help others survive the gauntlet!", - "_id": { - "$oid": "666cbc4a40af7b375e352f5b" - }, - "createdAt": { - "$date": "2024-06-14T21:55:22.454Z" - }, - "updatedAt": { - "$date": "2024-06-14T21:55:22.454Z" - }, - "__v": 0 - }, - { - "title": "Office Buzzwords & Bingo", - "description": "Share and decipher the latest buzzwords and jargon from job postings and interviews. Bonus points for the most absurd phrases.", - "_id": { - "$oid": "666cbc4a40af7b375e352f5c" - }, - "createdAt": { - "$date": "2024-06-14T21:55:22.454Z" - }, - "updatedAt": { - "$date": "2024-06-14T21:55:22.454Z" - }, - "__v": 0 - }, - { - "title": "Side Projects & Procrastination", - "description": "Brag about your side projects or confess how theyโ€™re really just elaborate ways to procrastinate. Either way, weโ€™re impressed!", - "_id": { - "$oid": "666cbc4a40af7b375e352f5d" - }, - "createdAt": { - "$date": "2024-06-14T21:55:22.454Z" - }, - "updatedAt": { - "$date": "2024-06-14T21:55:22.454Z" - }, - "__v": 0 - }, - { - "title": "LinkedIn Lamentations", - "description": "Rant and rave about the peculiarities of LinkedIn. Endorsements, random connection requests, and the mysterious 'we found your profile' emails.", - "_id": { - "$oid": "666cbc4a40af7b375e352f5e" - }, - "createdAt": { - "$date": "2024-06-14T21:55:22.454Z" - }, - "updatedAt": { - "$date": "2024-06-14T21:55:22.454Z" - }, - "__v": 0 - }, - { - "title": "Rejected & Dejected: Therapy Sessions", - "description": "A safe space to vent about job rejections and support each other through the emotional rollercoaster of the job hunt. Cookies and virtual hugs provided.", - "_id": { - "$oid": "666cbc4a40af7b375e352f5f" - }, - "createdAt": { - "$date": "2024-06-14T21:55:22.455Z" - }, - "updatedAt": { - "$date": "2024-06-14T21:55:22.455Z" + "$date": "2024-06-19T02:08:46.282Z" }, "__v": 0 } diff --git a/scripts/db/mongo-dev-init/MOCK_GRADUATE_INVITATIONS.json b/scripts/db/mongo-dev-init/MOCK_GRADUATE_INVITATIONS.json index 95fb5b6c..3cd90331 100644 --- a/scripts/db/mongo-dev-init/MOCK_GRADUATE_INVITATIONS.json +++ b/scripts/db/mongo-dev-init/MOCK_GRADUATE_INVITATIONS.json @@ -8,18 +8,18 @@ "isRegistered": true, "firstName": "Alonso", "lastName": "Carradice", - "cohort": "WCRI 86", + "cohort": "FTRI 69", "registeredAt": { "$date": "1970-01-20T09:52:04.950Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dc4" + "$oid": "66723da58f368f285d304a01" }, "createdAt": { - "$date": "2024-06-14T21:55:13.909Z" + "$date": "2024-06-19T02:08:37.643Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.909Z" + "$date": "2024-06-19T02:08:37.643Z" }, "__v": 0 }, @@ -32,18 +32,18 @@ "isRegistered": false, "firstName": "Wilton", "lastName": "Bleaden", - "cohort": "NYC 65", + "cohort": "PTRI 93", "registeredAt": { "$date": "1970-01-20T19:09:48.748Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dc5" + "$oid": "66723da58f368f285d304a02" }, "createdAt": { - "$date": "2024-06-14T21:55:13.909Z" + "$date": "2024-06-19T02:08:37.643Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.909Z" + "$date": "2024-06-19T02:08:37.643Z" }, "__v": 0 }, @@ -56,18 +56,18 @@ "isRegistered": true, "firstName": "Gannon", "lastName": "Halso", - "cohort": "WCRI 94", + "cohort": "FTRI 0", "registeredAt": { "$date": "1970-01-20T12:18:04.782Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dc6" + "$oid": "66723da58f368f285d304a03" }, "createdAt": { - "$date": "2024-06-14T21:55:13.909Z" + "$date": "2024-06-19T02:08:37.643Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.909Z" + "$date": "2024-06-19T02:08:37.643Z" }, "__v": 0 }, @@ -80,18 +80,18 @@ "isRegistered": false, "firstName": "Doralynn", "lastName": "Grinter", - "cohort": "WCRI 88", + "cohort": "CTRI 6", "registeredAt": { "$date": "1970-01-20T14:33:07.127Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dc7" + "$oid": "66723da58f368f285d304a04" }, "createdAt": { - "$date": "2024-06-14T21:55:13.910Z" + "$date": "2024-06-19T02:08:37.644Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.910Z" + "$date": "2024-06-19T02:08:37.644Z" }, "__v": 0 }, @@ -104,18 +104,18 @@ "isRegistered": true, "firstName": "Winn", "lastName": "Weatherley", - "cohort": "LA 0", + "cohort": "WCRI 39", "registeredAt": { "$date": "1970-01-20T19:01:06.414Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dc8" + "$oid": "66723da58f368f285d304a05" }, "createdAt": { - "$date": "2024-06-14T21:55:13.910Z" + "$date": "2024-06-19T02:08:37.644Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.910Z" + "$date": "2024-06-19T02:08:37.644Z" }, "__v": 0 }, @@ -128,18 +128,18 @@ "isRegistered": true, "firstName": "Hermon", "lastName": "Regis", - "cohort": "WCRI 77", + "cohort": "NYC 5", "registeredAt": { "$date": "1970-01-20T14:35:42.909Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dc9" + "$oid": "66723da58f368f285d304a06" }, "createdAt": { - "$date": "2024-06-14T21:55:13.910Z" + "$date": "2024-06-19T02:08:37.644Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.910Z" + "$date": "2024-06-19T02:08:37.644Z" }, "__v": 0 }, @@ -152,18 +152,18 @@ "isRegistered": false, "firstName": "Cordie", "lastName": "Rousby", - "cohort": "NYC 93", + "cohort": "LA 22", "registeredAt": { "$date": "1970-01-20T11:13:45.913Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dca" + "$oid": "66723da58f368f285d304a07" }, "createdAt": { - "$date": "2024-06-14T21:55:13.910Z" + "$date": "2024-06-19T02:08:37.644Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.910Z" + "$date": "2024-06-19T02:08:37.644Z" }, "__v": 0 }, @@ -176,18 +176,18 @@ "isRegistered": false, "firstName": "Maureene", "lastName": "Riseborough", - "cohort": "LA 82", + "cohort": "NYC 14", "registeredAt": { "$date": "1970-01-20T12:21:32.791Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dcb" + "$oid": "66723da58f368f285d304a08" }, "createdAt": { - "$date": "2024-06-14T21:55:13.910Z" + "$date": "2024-06-19T02:08:37.644Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.910Z" + "$date": "2024-06-19T02:08:37.644Z" }, "__v": 0 }, @@ -200,18 +200,18 @@ "isRegistered": false, "firstName": "Orelle", "lastName": "Lawson", - "cohort": "LA 56", + "cohort": "CTRI 44", "registeredAt": { "$date": "1970-01-20T13:15:33.880Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dcc" + "$oid": "66723da58f368f285d304a09" }, "createdAt": { - "$date": "2024-06-14T21:55:13.910Z" + "$date": "2024-06-19T02:08:37.644Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.910Z" + "$date": "2024-06-19T02:08:37.644Z" }, "__v": 0 }, @@ -224,18 +224,18 @@ "isRegistered": false, "firstName": "Jess", "lastName": "Emer", - "cohort": "LA 93", + "cohort": "PTRI 80", "registeredAt": { "$date": "1970-01-20T13:02:37.374Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dcd" + "$oid": "66723da58f368f285d304a0a" }, "createdAt": { - "$date": "2024-06-14T21:55:13.910Z" + "$date": "2024-06-19T02:08:37.644Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.910Z" + "$date": "2024-06-19T02:08:37.644Z" }, "__v": 0 }, @@ -248,18 +248,18 @@ "isRegistered": true, "firstName": "Mariel", "lastName": "Tubbles", - "cohort": "CTRI 92", + "cohort": "PTRI 10", "registeredAt": { "$date": "1970-01-20T10:33:43.674Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dce" + "$oid": "66723da58f368f285d304a0b" }, "createdAt": { - "$date": "2024-06-14T21:55:13.910Z" + "$date": "2024-06-19T02:08:37.644Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.910Z" + "$date": "2024-06-19T02:08:37.644Z" }, "__v": 0 }, @@ -272,18 +272,18 @@ "isRegistered": true, "firstName": "Perice", "lastName": "Keightley", - "cohort": "LA 96", + "cohort": "WCRI 3", "registeredAt": { "$date": "1970-01-20T13:31:16.231Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dcf" + "$oid": "66723da58f368f285d304a0c" }, "createdAt": { - "$date": "2024-06-14T21:55:13.910Z" + "$date": "2024-06-19T02:08:37.645Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.910Z" + "$date": "2024-06-19T02:08:37.645Z" }, "__v": 0 }, @@ -296,18 +296,18 @@ "isRegistered": false, "firstName": "Eula", "lastName": "Falcus", - "cohort": "WCRI 92", + "cohort": "ECRI 37", "registeredAt": { "$date": "1970-01-20T18:29:02.836Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dd0" + "$oid": "66723da58f368f285d304a0d" }, "createdAt": { - "$date": "2024-06-14T21:55:13.910Z" + "$date": "2024-06-19T02:08:37.645Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.910Z" + "$date": "2024-06-19T02:08:37.645Z" }, "__v": 0 }, @@ -320,18 +320,18 @@ "isRegistered": true, "firstName": "Jacqui", "lastName": "Baldini", - "cohort": "NYC 63", + "cohort": "LA 69", "registeredAt": { "$date": "1970-01-20T14:11:21.038Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dd1" + "$oid": "66723da58f368f285d304a0e" }, "createdAt": { - "$date": "2024-06-14T21:55:13.911Z" + "$date": "2024-06-19T02:08:37.645Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.911Z" + "$date": "2024-06-19T02:08:37.645Z" }, "__v": 0 }, @@ -344,18 +344,18 @@ "isRegistered": true, "firstName": "Scottie", "lastName": "Northridge", - "cohort": "ECRI 44", + "cohort": "CTRI 6", "registeredAt": { "$date": "1970-01-20T13:47:43.603Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dd2" + "$oid": "66723da58f368f285d304a0f" }, "createdAt": { - "$date": "2024-06-14T21:55:13.911Z" + "$date": "2024-06-19T02:08:37.645Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.911Z" + "$date": "2024-06-19T02:08:37.645Z" }, "__v": 0 }, @@ -368,18 +368,18 @@ "isRegistered": false, "firstName": "Dorie", "lastName": "Hedger", - "cohort": "WCRI 8", + "cohort": "ECRI 37", "registeredAt": { "$date": "1970-01-20T12:40:26.473Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dd3" + "$oid": "66723da58f368f285d304a10" }, "createdAt": { - "$date": "2024-06-14T21:55:13.911Z" + "$date": "2024-06-19T02:08:37.645Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.911Z" + "$date": "2024-06-19T02:08:37.645Z" }, "__v": 0 }, @@ -392,18 +392,18 @@ "isRegistered": false, "firstName": "Nadia", "lastName": "Skeen", - "cohort": "CTRI 56", + "cohort": "FTRI 38", "registeredAt": { "$date": "1970-01-20T14:58:04.577Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dd4" + "$oid": "66723da58f368f285d304a11" }, "createdAt": { - "$date": "2024-06-14T21:55:13.911Z" + "$date": "2024-06-19T02:08:37.645Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.911Z" + "$date": "2024-06-19T02:08:37.645Z" }, "__v": 0 }, @@ -416,18 +416,18 @@ "isRegistered": true, "firstName": "Mickie", "lastName": "Groom", - "cohort": "WCRI 35", + "cohort": "PTRI 97", "registeredAt": { "$date": "1970-01-20T13:47:19.049Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dd5" + "$oid": "66723da58f368f285d304a12" }, "createdAt": { - "$date": "2024-06-14T21:55:13.911Z" + "$date": "2024-06-19T02:08:37.645Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.911Z" + "$date": "2024-06-19T02:08:37.645Z" }, "__v": 0 }, @@ -440,18 +440,18 @@ "isRegistered": true, "firstName": "Leticia", "lastName": "Kupisz", - "cohort": "WCRI 69", + "cohort": "CTRI 83", "registeredAt": { "$date": "1970-01-20T11:33:31.294Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dd6" + "$oid": "66723da58f368f285d304a13" }, "createdAt": { - "$date": "2024-06-14T21:55:13.911Z" + "$date": "2024-06-19T02:08:37.645Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.911Z" + "$date": "2024-06-19T02:08:37.645Z" }, "__v": 0 }, @@ -464,18 +464,18 @@ "isRegistered": false, "firstName": "Babb", "lastName": "Dean", - "cohort": "PTRI 46", + "cohort": "ECRI 29", "registeredAt": { "$date": "1970-01-20T12:25:42.997Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dd7" + "$oid": "66723da58f368f285d304a14" }, "createdAt": { - "$date": "2024-06-14T21:55:13.911Z" + "$date": "2024-06-19T02:08:37.646Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.911Z" + "$date": "2024-06-19T02:08:37.646Z" }, "__v": 0 }, @@ -488,18 +488,18 @@ "isRegistered": false, "firstName": "Burtie", "lastName": "Lilley", - "cohort": "NYC 83", + "cohort": "ECRI 86", "registeredAt": { "$date": "1970-01-20T10:38:22.087Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dd8" + "$oid": "66723da58f368f285d304a15" }, "createdAt": { - "$date": "2024-06-14T21:55:13.911Z" + "$date": "2024-06-19T02:08:37.646Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.911Z" + "$date": "2024-06-19T02:08:37.646Z" }, "__v": 0 }, @@ -512,18 +512,18 @@ "isRegistered": true, "firstName": "Dorelle", "lastName": "Woodland", - "cohort": "PTRI 5", + "cohort": "NYC 49", "registeredAt": { "$date": "1970-01-20T21:05:10.004Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dd9" + "$oid": "66723da58f368f285d304a16" }, "createdAt": { - "$date": "2024-06-14T21:55:13.911Z" + "$date": "2024-06-19T02:08:37.646Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.911Z" + "$date": "2024-06-19T02:08:37.646Z" }, "__v": 0 }, @@ -536,18 +536,18 @@ "isRegistered": false, "firstName": "Burk", "lastName": "Dunlap", - "cohort": "WCRI 20", + "cohort": "WCRI 32", "registeredAt": { "$date": "1970-01-20T10:46:36.642Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dda" + "$oid": "66723da58f368f285d304a17" }, "createdAt": { - "$date": "2024-06-14T21:55:13.911Z" + "$date": "2024-06-19T02:08:37.646Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.911Z" + "$date": "2024-06-19T02:08:37.646Z" }, "__v": 0 }, @@ -560,18 +560,18 @@ "isRegistered": false, "firstName": "Cecilius", "lastName": "Darrel", - "cohort": "NYC 34", + "cohort": "PTRI 92", "registeredAt": { "$date": "1970-01-20T18:04:03.899Z" }, "_id": { - "$oid": "666cbc4140af7b375e352ddb" + "$oid": "66723da58f368f285d304a18" }, "createdAt": { - "$date": "2024-06-14T21:55:13.911Z" + "$date": "2024-06-19T02:08:37.646Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.911Z" + "$date": "2024-06-19T02:08:37.646Z" }, "__v": 0 }, @@ -584,18 +584,18 @@ "isRegistered": true, "firstName": "Brod", "lastName": "Budcock", - "cohort": "NYC 43", + "cohort": "FTRI 69", "registeredAt": { "$date": "1970-01-20T09:40:43.900Z" }, "_id": { - "$oid": "666cbc4140af7b375e352ddc" + "$oid": "66723da58f368f285d304a19" }, "createdAt": { - "$date": "2024-06-14T21:55:13.912Z" + "$date": "2024-06-19T02:08:37.646Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.912Z" + "$date": "2024-06-19T02:08:37.646Z" }, "__v": 0 }, @@ -608,18 +608,18 @@ "isRegistered": false, "firstName": "Bayard", "lastName": "Thickin", - "cohort": "CTRI 53", + "cohort": "LA 72", "registeredAt": { "$date": "1970-01-20T14:59:50.750Z" }, "_id": { - "$oid": "666cbc4140af7b375e352ddd" + "$oid": "66723da58f368f285d304a1a" }, "createdAt": { - "$date": "2024-06-14T21:55:13.912Z" + "$date": "2024-06-19T02:08:37.646Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.912Z" + "$date": "2024-06-19T02:08:37.646Z" }, "__v": 0 }, @@ -632,18 +632,18 @@ "isRegistered": true, "firstName": "Lorenza", "lastName": "Larrington", - "cohort": "LA 28", + "cohort": "FTRI 61", "registeredAt": { "$date": "1970-01-20T11:34:38.978Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dde" + "$oid": "66723da58f368f285d304a1b" }, "createdAt": { - "$date": "2024-06-14T21:55:13.912Z" + "$date": "2024-06-19T02:08:37.646Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.912Z" + "$date": "2024-06-19T02:08:37.646Z" }, "__v": 0 }, @@ -656,18 +656,18 @@ "isRegistered": true, "firstName": "Ranna", "lastName": "Stanton", - "cohort": "FTRI 13", + "cohort": "NYC 55", "registeredAt": { "$date": "1970-01-20T14:35:02.332Z" }, "_id": { - "$oid": "666cbc4140af7b375e352ddf" + "$oid": "66723da58f368f285d304a1c" }, "createdAt": { - "$date": "2024-06-14T21:55:13.912Z" + "$date": "2024-06-19T02:08:37.646Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.912Z" + "$date": "2024-06-19T02:08:37.646Z" }, "__v": 0 }, @@ -680,18 +680,18 @@ "isRegistered": false, "firstName": "Silvan", "lastName": "Cowdroy", - "cohort": "CTRI 29", + "cohort": "ECRI 43", "registeredAt": { "$date": "1970-01-20T15:46:38.807Z" }, "_id": { - "$oid": "666cbc4140af7b375e352de0" + "$oid": "66723da58f368f285d304a1d" }, "createdAt": { - "$date": "2024-06-14T21:55:13.912Z" + "$date": "2024-06-19T02:08:37.646Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.912Z" + "$date": "2024-06-19T02:08:37.646Z" }, "__v": 0 }, @@ -704,18 +704,18 @@ "isRegistered": false, "firstName": "Pepita", "lastName": "Skirling", - "cohort": "NYC 79", + "cohort": "WCRI 90", "registeredAt": { "$date": "1970-01-20T17:04:37.019Z" }, "_id": { - "$oid": "666cbc4140af7b375e352de1" + "$oid": "66723da58f368f285d304a1e" }, "createdAt": { - "$date": "2024-06-14T21:55:13.912Z" + "$date": "2024-06-19T02:08:37.646Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.912Z" + "$date": "2024-06-19T02:08:37.646Z" }, "__v": 0 }, @@ -728,18 +728,18 @@ "isRegistered": true, "firstName": "Brinna", "lastName": "Spensley", - "cohort": "LA 97", + "cohort": "PTRI 14", "registeredAt": { "$date": "1970-01-20T13:33:35.190Z" }, "_id": { - "$oid": "666cbc4140af7b375e352de2" + "$oid": "66723da58f368f285d304a1f" }, "createdAt": { - "$date": "2024-06-14T21:55:13.912Z" + "$date": "2024-06-19T02:08:37.646Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.912Z" + "$date": "2024-06-19T02:08:37.646Z" }, "__v": 0 }, @@ -752,18 +752,18 @@ "isRegistered": true, "firstName": "Leta", "lastName": "Blais", - "cohort": "FTRI 35", + "cohort": "ECRI 27", "registeredAt": { "$date": "1970-01-20T17:20:30.885Z" }, "_id": { - "$oid": "666cbc4140af7b375e352de3" + "$oid": "66723da58f368f285d304a20" }, "createdAt": { - "$date": "2024-06-14T21:55:13.912Z" + "$date": "2024-06-19T02:08:37.646Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.912Z" + "$date": "2024-06-19T02:08:37.646Z" }, "__v": 0 }, @@ -776,18 +776,18 @@ "isRegistered": true, "firstName": "Onfre", "lastName": "Le Huquet", - "cohort": "ECRI 81", + "cohort": "WCRI 22", "registeredAt": { "$date": "1970-01-20T16:24:15.434Z" }, "_id": { - "$oid": "666cbc4140af7b375e352de4" + "$oid": "66723da58f368f285d304a21" }, "createdAt": { - "$date": "2024-06-14T21:55:13.912Z" + "$date": "2024-06-19T02:08:37.647Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.912Z" + "$date": "2024-06-19T02:08:37.647Z" }, "__v": 0 }, @@ -800,18 +800,18 @@ "isRegistered": false, "firstName": "Cairistiona", "lastName": "Edworthie", - "cohort": "CTRI 12", + "cohort": "LA 34", "registeredAt": { "$date": "1970-01-20T14:57:07.010Z" }, "_id": { - "$oid": "666cbc4140af7b375e352de5" + "$oid": "66723da58f368f285d304a22" }, "createdAt": { - "$date": "2024-06-14T21:55:13.912Z" + "$date": "2024-06-19T02:08:37.647Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.912Z" + "$date": "2024-06-19T02:08:37.647Z" }, "__v": 0 }, @@ -824,18 +824,18 @@ "isRegistered": true, "firstName": "Jonas", "lastName": "Chong", - "cohort": "NYC 8", + "cohort": "CTRI 51", "registeredAt": { "$date": "1970-01-20T16:23:24.074Z" }, "_id": { - "$oid": "666cbc4140af7b375e352de6" + "$oid": "66723da58f368f285d304a23" }, "createdAt": { - "$date": "2024-06-14T21:55:13.913Z" + "$date": "2024-06-19T02:08:37.647Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.913Z" + "$date": "2024-06-19T02:08:37.647Z" }, "__v": 0 }, @@ -848,18 +848,18 @@ "isRegistered": true, "firstName": "Ezra", "lastName": "Minto", - "cohort": "WCRI 46", + "cohort": "LA 55", "registeredAt": { "$date": "1970-01-20T16:45:04.952Z" }, "_id": { - "$oid": "666cbc4140af7b375e352de7" + "$oid": "66723da58f368f285d304a24" }, "createdAt": { - "$date": "2024-06-14T21:55:13.913Z" + "$date": "2024-06-19T02:08:37.647Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.913Z" + "$date": "2024-06-19T02:08:37.647Z" }, "__v": 0 }, @@ -872,18 +872,18 @@ "isRegistered": false, "firstName": "Virgina", "lastName": "Licari", - "cohort": "PTRI 30", + "cohort": "FTRI 90", "registeredAt": { "$date": "1970-01-20T18:31:24.774Z" }, "_id": { - "$oid": "666cbc4140af7b375e352de8" + "$oid": "66723da58f368f285d304a25" }, "createdAt": { - "$date": "2024-06-14T21:55:13.913Z" + "$date": "2024-06-19T02:08:37.647Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.913Z" + "$date": "2024-06-19T02:08:37.647Z" }, "__v": 0 }, @@ -896,18 +896,18 @@ "isRegistered": true, "firstName": "Rickert", "lastName": "Lambrick", - "cohort": "FTRI 50", + "cohort": "FTRI 81", "registeredAt": { "$date": "1970-01-20T10:22:28.854Z" }, "_id": { - "$oid": "666cbc4140af7b375e352de9" + "$oid": "66723da58f368f285d304a26" }, "createdAt": { - "$date": "2024-06-14T21:55:13.913Z" + "$date": "2024-06-19T02:08:37.647Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.913Z" + "$date": "2024-06-19T02:08:37.647Z" }, "__v": 0 }, @@ -920,18 +920,18 @@ "isRegistered": true, "firstName": "Jesselyn", "lastName": "Madner", - "cohort": "ECRI 24", + "cohort": "LA 98", "registeredAt": { "$date": "1970-01-20T12:18:09.400Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dea" + "$oid": "66723da58f368f285d304a27" }, "createdAt": { - "$date": "2024-06-14T21:55:13.913Z" + "$date": "2024-06-19T02:08:37.647Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.913Z" + "$date": "2024-06-19T02:08:37.647Z" }, "__v": 0 }, @@ -944,18 +944,18 @@ "isRegistered": false, "firstName": "Peirce", "lastName": "Test", - "cohort": "FTRI 49", + "cohort": "WCRI 75", "registeredAt": { "$date": "1970-01-20T10:10:01.051Z" }, "_id": { - "$oid": "666cbc4140af7b375e352deb" + "$oid": "66723da58f368f285d304a28" }, "createdAt": { - "$date": "2024-06-14T21:55:13.913Z" + "$date": "2024-06-19T02:08:37.647Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.913Z" + "$date": "2024-06-19T02:08:37.647Z" }, "__v": 0 }, @@ -968,18 +968,18 @@ "isRegistered": true, "firstName": "Saraann", "lastName": "Walcher", - "cohort": "PTRI 41", + "cohort": "CTRI 7", "registeredAt": { "$date": "1970-01-20T19:08:59.027Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dec" + "$oid": "66723da58f368f285d304a29" }, "createdAt": { - "$date": "2024-06-14T21:55:13.913Z" + "$date": "2024-06-19T02:08:37.648Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.913Z" + "$date": "2024-06-19T02:08:37.648Z" }, "__v": 0 }, @@ -992,18 +992,18 @@ "isRegistered": true, "firstName": "Giff", "lastName": "Bank", - "cohort": "FTRI 49", + "cohort": "WCRI 44", "registeredAt": { "$date": "1970-01-20T12:07:22.746Z" }, "_id": { - "$oid": "666cbc4140af7b375e352ded" + "$oid": "66723da58f368f285d304a2a" }, "createdAt": { - "$date": "2024-06-14T21:55:13.913Z" + "$date": "2024-06-19T02:08:37.648Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.913Z" + "$date": "2024-06-19T02:08:37.648Z" }, "__v": 0 }, @@ -1016,18 +1016,18 @@ "isRegistered": false, "firstName": "Ronny", "lastName": "Allmen", - "cohort": "PTRI 94", + "cohort": "NYC 50", "registeredAt": { "$date": "1970-01-20T12:51:39.673Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dee" + "$oid": "66723da58f368f285d304a2b" }, "createdAt": { - "$date": "2024-06-14T21:55:13.913Z" + "$date": "2024-06-19T02:08:37.648Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.913Z" + "$date": "2024-06-19T02:08:37.648Z" }, "__v": 0 }, @@ -1040,18 +1040,18 @@ "isRegistered": true, "firstName": "Kimmi", "lastName": "Yarrow", - "cohort": "FTRI 28", + "cohort": "WCRI 92", "registeredAt": { "$date": "1970-01-20T13:45:24.672Z" }, "_id": { - "$oid": "666cbc4140af7b375e352def" + "$oid": "66723da58f368f285d304a2c" }, "createdAt": { - "$date": "2024-06-14T21:55:13.914Z" + "$date": "2024-06-19T02:08:37.648Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.914Z" + "$date": "2024-06-19T02:08:37.648Z" }, "__v": 0 }, @@ -1064,18 +1064,18 @@ "isRegistered": false, "firstName": "Portia", "lastName": "Shepard", - "cohort": "LA 75", + "cohort": "CTRI 53", "registeredAt": { "$date": "1970-01-20T08:36:25.642Z" }, "_id": { - "$oid": "666cbc4140af7b375e352df0" + "$oid": "66723da58f368f285d304a2d" }, "createdAt": { - "$date": "2024-06-14T21:55:13.914Z" + "$date": "2024-06-19T02:08:37.648Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.914Z" + "$date": "2024-06-19T02:08:37.648Z" }, "__v": 0 }, @@ -1088,18 +1088,18 @@ "isRegistered": false, "firstName": "Emlen", "lastName": "Gook", - "cohort": "PTRI 57", + "cohort": "FTRI 47", "registeredAt": { "$date": "1970-01-20T11:42:55.506Z" }, "_id": { - "$oid": "666cbc4140af7b375e352df1" + "$oid": "66723da58f368f285d304a2e" }, "createdAt": { - "$date": "2024-06-14T21:55:13.914Z" + "$date": "2024-06-19T02:08:37.648Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.914Z" + "$date": "2024-06-19T02:08:37.648Z" }, "__v": 0 }, @@ -1112,18 +1112,18 @@ "isRegistered": false, "firstName": "Debee", "lastName": "Rocks", - "cohort": "CTRI 22", + "cohort": "FTRI 55", "registeredAt": { "$date": "1970-01-20T17:53:43.454Z" }, "_id": { - "$oid": "666cbc4140af7b375e352df2" + "$oid": "66723da58f368f285d304a2f" }, "createdAt": { - "$date": "2024-06-14T21:55:13.914Z" + "$date": "2024-06-19T02:08:37.648Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.914Z" + "$date": "2024-06-19T02:08:37.648Z" }, "__v": 0 }, @@ -1136,18 +1136,18 @@ "isRegistered": false, "firstName": "Valina", "lastName": "Dhennin", - "cohort": "PTRI 69", + "cohort": "CTRI 33", "registeredAt": { "$date": "1970-01-20T10:57:45.096Z" }, "_id": { - "$oid": "666cbc4140af7b375e352df3" + "$oid": "66723da58f368f285d304a30" }, "createdAt": { - "$date": "2024-06-14T21:55:13.914Z" + "$date": "2024-06-19T02:08:37.648Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.914Z" + "$date": "2024-06-19T02:08:37.648Z" }, "__v": 0 }, @@ -1160,18 +1160,18 @@ "isRegistered": false, "firstName": "Dwayne", "lastName": "Cheasman", - "cohort": "WCRI 30", + "cohort": "CTRI 40", "registeredAt": { "$date": "1970-01-20T11:36:58.150Z" }, "_id": { - "$oid": "666cbc4140af7b375e352df4" + "$oid": "66723da58f368f285d304a31" }, "createdAt": { - "$date": "2024-06-14T21:55:13.914Z" + "$date": "2024-06-19T02:08:37.648Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.914Z" + "$date": "2024-06-19T02:08:37.648Z" }, "__v": 0 }, @@ -1184,18 +1184,18 @@ "isRegistered": false, "firstName": "Nellie", "lastName": "Gladhill", - "cohort": "ECRI 47", + "cohort": "LA 31", "registeredAt": { "$date": "1970-01-20T13:09:23.480Z" }, "_id": { - "$oid": "666cbc4140af7b375e352df5" + "$oid": "66723da58f368f285d304a32" }, "createdAt": { - "$date": "2024-06-14T21:55:13.914Z" + "$date": "2024-06-19T02:08:37.648Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.914Z" + "$date": "2024-06-19T02:08:37.648Z" }, "__v": 0 }, @@ -1208,18 +1208,18 @@ "isRegistered": true, "firstName": "Eziechiele", "lastName": "Livzey", - "cohort": "CTRI 32", + "cohort": "NYC 87", "registeredAt": { "$date": "1970-01-20T11:12:55.403Z" }, "_id": { - "$oid": "666cbc4140af7b375e352df6" + "$oid": "66723da58f368f285d304a33" }, "createdAt": { - "$date": "2024-06-14T21:55:13.914Z" + "$date": "2024-06-19T02:08:37.649Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.914Z" + "$date": "2024-06-19T02:08:37.649Z" }, "__v": 0 }, @@ -1232,18 +1232,18 @@ "isRegistered": true, "firstName": "Sallyanne", "lastName": "Mingasson", - "cohort": "PTRI 12", + "cohort": "NYC 38", "registeredAt": { "$date": "1970-01-20T11:45:13.073Z" }, "_id": { - "$oid": "666cbc4140af7b375e352df7" + "$oid": "66723da58f368f285d304a34" }, "createdAt": { - "$date": "2024-06-14T21:55:13.915Z" + "$date": "2024-06-19T02:08:37.649Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.915Z" + "$date": "2024-06-19T02:08:37.649Z" }, "__v": 0 }, @@ -1256,18 +1256,18 @@ "isRegistered": true, "firstName": "Heall", "lastName": "Pattullo", - "cohort": "FTRI 36", + "cohort": "WCRI 72", "registeredAt": { "$date": "1970-01-20T10:34:33.540Z" }, "_id": { - "$oid": "666cbc4140af7b375e352df8" + "$oid": "66723da58f368f285d304a35" }, "createdAt": { - "$date": "2024-06-14T21:55:13.915Z" + "$date": "2024-06-19T02:08:37.649Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.915Z" + "$date": "2024-06-19T02:08:37.649Z" }, "__v": 0 }, @@ -1280,18 +1280,18 @@ "isRegistered": true, "firstName": "Amaleta", "lastName": "Scarlan", - "cohort": "WCRI 67", + "cohort": "WCRI 81", "registeredAt": { "$date": "1970-01-20T19:45:01.940Z" }, "_id": { - "$oid": "666cbc4140af7b375e352df9" + "$oid": "66723da58f368f285d304a36" }, "createdAt": { - "$date": "2024-06-14T21:55:13.916Z" + "$date": "2024-06-19T02:08:37.649Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.916Z" + "$date": "2024-06-19T02:08:37.649Z" }, "__v": 0 }, @@ -1304,18 +1304,18 @@ "isRegistered": true, "firstName": "Zonda", "lastName": "Lawlance", - "cohort": "CTRI 99", + "cohort": "NYC 59", "registeredAt": { "$date": "1970-01-20T16:45:24.480Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dfa" + "$oid": "66723da58f368f285d304a37" }, "createdAt": { - "$date": "2024-06-14T21:55:13.916Z" + "$date": "2024-06-19T02:08:37.649Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.916Z" + "$date": "2024-06-19T02:08:37.649Z" }, "__v": 0 }, @@ -1328,18 +1328,18 @@ "isRegistered": false, "firstName": "Livvy", "lastName": "Romney", - "cohort": "PTRI 15", + "cohort": "CTRI 36", "registeredAt": { "$date": "1970-01-20T17:22:54.160Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dfb" + "$oid": "66723da58f368f285d304a38" }, "createdAt": { - "$date": "2024-06-14T21:55:13.916Z" + "$date": "2024-06-19T02:08:37.649Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.916Z" + "$date": "2024-06-19T02:08:37.649Z" }, "__v": 0 }, @@ -1352,18 +1352,18 @@ "isRegistered": true, "firstName": "Brockie", "lastName": "Allardyce", - "cohort": "LA 10", + "cohort": "NYC 61", "registeredAt": { "$date": "1970-01-20T10:24:01.128Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dfc" + "$oid": "66723da58f368f285d304a39" }, "createdAt": { - "$date": "2024-06-14T21:55:13.916Z" + "$date": "2024-06-19T02:08:37.649Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.916Z" + "$date": "2024-06-19T02:08:37.649Z" }, "__v": 0 }, @@ -1376,18 +1376,18 @@ "isRegistered": false, "firstName": "Jaquelyn", "lastName": "Atthowe", - "cohort": "FTRI 47", + "cohort": "WCRI 33", "registeredAt": { "$date": "1970-01-20T18:20:08.705Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dfd" + "$oid": "66723da58f368f285d304a3a" }, "createdAt": { - "$date": "2024-06-14T21:55:13.916Z" + "$date": "2024-06-19T02:08:37.649Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.916Z" + "$date": "2024-06-19T02:08:37.649Z" }, "__v": 0 }, @@ -1400,18 +1400,18 @@ "isRegistered": true, "firstName": "Barn", "lastName": "Guerre", - "cohort": "NYC 24", + "cohort": "ECRI 56", "registeredAt": { "$date": "1970-01-20T20:43:22.221Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dfe" + "$oid": "66723da58f368f285d304a3b" }, "createdAt": { - "$date": "2024-06-14T21:55:13.916Z" + "$date": "2024-06-19T02:08:37.650Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.916Z" + "$date": "2024-06-19T02:08:37.650Z" }, "__v": 0 }, @@ -1424,18 +1424,18 @@ "isRegistered": false, "firstName": "Carina", "lastName": "Millions", - "cohort": "CTRI 74", + "cohort": "CTRI 56", "registeredAt": { "$date": "1970-01-20T15:50:36.752Z" }, "_id": { - "$oid": "666cbc4140af7b375e352dff" + "$oid": "66723da58f368f285d304a3c" }, "createdAt": { - "$date": "2024-06-14T21:55:13.916Z" + "$date": "2024-06-19T02:08:37.650Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.916Z" + "$date": "2024-06-19T02:08:37.650Z" }, "__v": 0 }, @@ -1448,18 +1448,18 @@ "isRegistered": true, "firstName": "Micaela", "lastName": "Grigorini", - "cohort": "WCRI 28", + "cohort": "LA 81", "registeredAt": { "$date": "1970-01-20T09:06:40.482Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e00" + "$oid": "66723da58f368f285d304a3d" }, "createdAt": { - "$date": "2024-06-14T21:55:13.916Z" + "$date": "2024-06-19T02:08:37.650Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.916Z" + "$date": "2024-06-19T02:08:37.650Z" }, "__v": 0 }, @@ -1472,18 +1472,18 @@ "isRegistered": false, "firstName": "Fran", "lastName": "Redwin", - "cohort": "WCRI 85", + "cohort": "CTRI 27", "registeredAt": { "$date": "1970-01-20T13:29:42.467Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e01" + "$oid": "66723da58f368f285d304a3e" }, "createdAt": { - "$date": "2024-06-14T21:55:13.916Z" + "$date": "2024-06-19T02:08:37.650Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.916Z" + "$date": "2024-06-19T02:08:37.650Z" }, "__v": 0 }, @@ -1496,18 +1496,18 @@ "isRegistered": true, "firstName": "Kalina", "lastName": "Firmager", - "cohort": "ECRI 87", + "cohort": "CTRI 63", "registeredAt": { "$date": "1970-01-20T15:14:33.707Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e02" + "$oid": "66723da58f368f285d304a3f" }, "createdAt": { - "$date": "2024-06-14T21:55:13.917Z" + "$date": "2024-06-19T02:08:37.650Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.917Z" + "$date": "2024-06-19T02:08:37.650Z" }, "__v": 0 }, @@ -1520,18 +1520,18 @@ "isRegistered": true, "firstName": "Lurline", "lastName": "Blyth", - "cohort": "CTRI 98", + "cohort": "PTRI 8", "registeredAt": { "$date": "1970-01-20T14:18:34.651Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e03" + "$oid": "66723da58f368f285d304a40" }, "createdAt": { - "$date": "2024-06-14T21:55:13.917Z" + "$date": "2024-06-19T02:08:37.650Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.917Z" + "$date": "2024-06-19T02:08:37.650Z" }, "__v": 0 }, @@ -1544,18 +1544,18 @@ "isRegistered": true, "firstName": "Julianne", "lastName": "Stowte", - "cohort": "PTRI 77", + "cohort": "ECRI 92", "registeredAt": { "$date": "1970-01-20T10:56:05.284Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e04" + "$oid": "66723da58f368f285d304a41" }, "createdAt": { - "$date": "2024-06-14T21:55:13.917Z" + "$date": "2024-06-19T02:08:37.650Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.917Z" + "$date": "2024-06-19T02:08:37.650Z" }, "__v": 0 }, @@ -1568,18 +1568,18 @@ "isRegistered": true, "firstName": "Tierney", "lastName": "Patrie", - "cohort": "NYC 88", + "cohort": "LA 71", "registeredAt": { "$date": "1970-01-20T16:53:05.719Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e05" + "$oid": "66723da58f368f285d304a42" }, "createdAt": { - "$date": "2024-06-14T21:55:13.917Z" + "$date": "2024-06-19T02:08:37.650Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.917Z" + "$date": "2024-06-19T02:08:37.650Z" }, "__v": 0 }, @@ -1592,18 +1592,18 @@ "isRegistered": false, "firstName": "Gerladina", "lastName": "Sherborne", - "cohort": "CTRI 10", + "cohort": "PTRI 71", "registeredAt": { "$date": "1970-01-20T19:28:48.496Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e06" + "$oid": "66723da58f368f285d304a43" }, "createdAt": { - "$date": "2024-06-14T21:55:13.917Z" + "$date": "2024-06-19T02:08:37.650Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.917Z" + "$date": "2024-06-19T02:08:37.650Z" }, "__v": 0 }, @@ -1616,18 +1616,18 @@ "isRegistered": true, "firstName": "Phil", "lastName": "Farress", - "cohort": "WCRI 14", + "cohort": "FTRI 7", "registeredAt": { "$date": "1970-01-20T14:30:52.128Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e07" + "$oid": "66723da58f368f285d304a44" }, "createdAt": { - "$date": "2024-06-14T21:55:13.917Z" + "$date": "2024-06-19T02:08:37.650Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.917Z" + "$date": "2024-06-19T02:08:37.650Z" }, "__v": 0 }, @@ -1640,18 +1640,18 @@ "isRegistered": false, "firstName": "Elisha", "lastName": "Allsop", - "cohort": "WCRI 72", + "cohort": "FTRI 56", "registeredAt": { "$date": "1970-01-20T20:03:21.737Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e08" + "$oid": "66723da58f368f285d304a45" }, "createdAt": { - "$date": "2024-06-14T21:55:13.917Z" + "$date": "2024-06-19T02:08:37.650Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.917Z" + "$date": "2024-06-19T02:08:37.650Z" }, "__v": 0 }, @@ -1664,18 +1664,18 @@ "isRegistered": false, "firstName": "Carline", "lastName": "Skipton", - "cohort": "NYC 21", + "cohort": "CTRI 95", "registeredAt": { "$date": "1970-01-20T16:49:15.150Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e09" + "$oid": "66723da58f368f285d304a46" }, "createdAt": { - "$date": "2024-06-14T21:55:13.917Z" + "$date": "2024-06-19T02:08:37.650Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.917Z" + "$date": "2024-06-19T02:08:37.650Z" }, "__v": 0 }, @@ -1688,18 +1688,18 @@ "isRegistered": false, "firstName": "Mia", "lastName": "Northridge", - "cohort": "LA 39", + "cohort": "CTRI 62", "registeredAt": { "$date": "1970-01-20T11:07:10.387Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e0a" + "$oid": "66723da58f368f285d304a47" }, "createdAt": { - "$date": "2024-06-14T21:55:13.917Z" + "$date": "2024-06-19T02:08:37.650Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.917Z" + "$date": "2024-06-19T02:08:37.650Z" }, "__v": 0 }, @@ -1712,18 +1712,18 @@ "isRegistered": true, "firstName": "Isaiah", "lastName": "Friedenbach", - "cohort": "FTRI 66", + "cohort": "ECRI 21", "registeredAt": { "$date": "1970-01-20T16:50:30.245Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e0b" + "$oid": "66723da58f368f285d304a48" }, "createdAt": { - "$date": "2024-06-14T21:55:13.917Z" + "$date": "2024-06-19T02:08:37.651Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.917Z" + "$date": "2024-06-19T02:08:37.651Z" }, "__v": 0 }, @@ -1736,18 +1736,18 @@ "isRegistered": true, "firstName": "Tallulah", "lastName": "Dulton", - "cohort": "WCRI 83", + "cohort": "NYC 84", "registeredAt": { "$date": "1970-01-20T13:17:09.264Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e0c" + "$oid": "66723da58f368f285d304a49" }, "createdAt": { - "$date": "2024-06-14T21:55:13.918Z" + "$date": "2024-06-19T02:08:37.651Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.918Z" + "$date": "2024-06-19T02:08:37.651Z" }, "__v": 0 }, @@ -1760,18 +1760,18 @@ "isRegistered": false, "firstName": "Bel", "lastName": "Esherwood", - "cohort": "WCRI 94", + "cohort": "PTRI 37", "registeredAt": { "$date": "1970-01-20T19:40:17.366Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e0d" + "$oid": "66723da58f368f285d304a4a" }, "createdAt": { - "$date": "2024-06-14T21:55:13.918Z" + "$date": "2024-06-19T02:08:37.651Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.918Z" + "$date": "2024-06-19T02:08:37.651Z" }, "__v": 0 }, @@ -1784,18 +1784,18 @@ "isRegistered": true, "firstName": "Anatol", "lastName": "Kiley", - "cohort": "WCRI 26", + "cohort": "FTRI 30", "registeredAt": { "$date": "1970-01-20T20:15:39.754Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e0e" + "$oid": "66723da58f368f285d304a4b" }, "createdAt": { - "$date": "2024-06-14T21:55:13.918Z" + "$date": "2024-06-19T02:08:37.651Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.918Z" + "$date": "2024-06-19T02:08:37.651Z" }, "__v": 0 }, @@ -1808,18 +1808,18 @@ "isRegistered": true, "firstName": "Corabel", "lastName": "Meth", - "cohort": "CTRI 0", + "cohort": "LA 31", "registeredAt": { "$date": "1970-01-20T11:26:24.205Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e0f" + "$oid": "66723da58f368f285d304a4c" }, "createdAt": { - "$date": "2024-06-14T21:55:13.918Z" + "$date": "2024-06-19T02:08:37.651Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.918Z" + "$date": "2024-06-19T02:08:37.651Z" }, "__v": 0 }, @@ -1832,18 +1832,18 @@ "isRegistered": false, "firstName": "Shae", "lastName": "Terrill", - "cohort": "ECRI 29", + "cohort": "CTRI 15", "registeredAt": { "$date": "1970-01-20T12:46:02.944Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e10" + "$oid": "66723da58f368f285d304a4d" }, "createdAt": { - "$date": "2024-06-14T21:55:13.918Z" + "$date": "2024-06-19T02:08:37.651Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.918Z" + "$date": "2024-06-19T02:08:37.651Z" }, "__v": 0 }, @@ -1856,18 +1856,18 @@ "isRegistered": false, "firstName": "Dotty", "lastName": "Mahedy", - "cohort": "LA 11", + "cohort": "ECRI 86", "registeredAt": { "$date": "1970-01-20T17:04:00.599Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e11" + "$oid": "66723da58f368f285d304a4e" }, "createdAt": { - "$date": "2024-06-14T21:55:13.918Z" + "$date": "2024-06-19T02:08:37.652Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.918Z" + "$date": "2024-06-19T02:08:37.652Z" }, "__v": 0 }, @@ -1880,18 +1880,18 @@ "isRegistered": false, "firstName": "Salaidh", "lastName": "Attiwill", - "cohort": "WCRI 23", + "cohort": "ECRI 78", "registeredAt": { "$date": "1970-01-20T19:08:51.917Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e12" + "$oid": "66723da58f368f285d304a4f" }, "createdAt": { - "$date": "2024-06-14T21:55:13.918Z" + "$date": "2024-06-19T02:08:37.652Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.918Z" + "$date": "2024-06-19T02:08:37.652Z" }, "__v": 0 }, @@ -1904,18 +1904,18 @@ "isRegistered": true, "firstName": "Billi", "lastName": "Bomb", - "cohort": "FTRI 34", + "cohort": "LA 16", "registeredAt": { "$date": "1970-01-20T17:13:38.131Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e13" + "$oid": "66723da58f368f285d304a50" }, "createdAt": { - "$date": "2024-06-14T21:55:13.918Z" + "$date": "2024-06-19T02:08:37.652Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.918Z" + "$date": "2024-06-19T02:08:37.652Z" }, "__v": 0 }, @@ -1928,18 +1928,18 @@ "isRegistered": true, "firstName": "Burty", "lastName": "Bedells", - "cohort": "FTRI 36", + "cohort": "PTRI 76", "registeredAt": { "$date": "1970-01-20T17:08:45.382Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e14" + "$oid": "66723da58f368f285d304a51" }, "createdAt": { - "$date": "2024-06-14T21:55:13.918Z" + "$date": "2024-06-19T02:08:37.652Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.918Z" + "$date": "2024-06-19T02:08:37.652Z" }, "__v": 0 }, @@ -1952,18 +1952,18 @@ "isRegistered": false, "firstName": "De", "lastName": "Lemin", - "cohort": "PTRI 5", + "cohort": "PTRI 97", "registeredAt": { "$date": "1970-01-20T19:38:34.981Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e15" + "$oid": "66723da58f368f285d304a52" }, "createdAt": { - "$date": "2024-06-14T21:55:13.918Z" + "$date": "2024-06-19T02:08:37.652Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.918Z" + "$date": "2024-06-19T02:08:37.652Z" }, "__v": 0 }, @@ -1976,18 +1976,18 @@ "isRegistered": true, "firstName": "Morgen", "lastName": "Draco", - "cohort": "LA 74", + "cohort": "FTRI 92", "registeredAt": { "$date": "1970-01-20T11:40:37.999Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e16" + "$oid": "66723da58f368f285d304a53" }, "createdAt": { - "$date": "2024-06-14T21:55:13.918Z" + "$date": "2024-06-19T02:08:37.652Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.918Z" + "$date": "2024-06-19T02:08:37.652Z" }, "__v": 0 }, @@ -2000,18 +2000,18 @@ "isRegistered": true, "firstName": "Urban", "lastName": "Grassin", - "cohort": "ECRI 17", + "cohort": "FTRI 85", "registeredAt": { "$date": "1970-01-20T19:01:11.474Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e17" + "$oid": "66723da58f368f285d304a54" }, "createdAt": { - "$date": "2024-06-14T21:55:13.919Z" + "$date": "2024-06-19T02:08:37.652Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.919Z" + "$date": "2024-06-19T02:08:37.652Z" }, "__v": 0 }, @@ -2024,18 +2024,18 @@ "isRegistered": false, "firstName": "Archy", "lastName": "Atto", - "cohort": "CTRI 25", + "cohort": "CTRI 32", "registeredAt": { "$date": "1970-01-20T19:34:03.526Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e18" + "$oid": "66723da58f368f285d304a55" }, "createdAt": { - "$date": "2024-06-14T21:55:13.919Z" + "$date": "2024-06-19T02:08:37.652Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.919Z" + "$date": "2024-06-19T02:08:37.652Z" }, "__v": 0 }, @@ -2048,18 +2048,18 @@ "isRegistered": true, "firstName": "Lothaire", "lastName": "Murfill", - "cohort": "CTRI 49", + "cohort": "CTRI 10", "registeredAt": { "$date": "1970-01-20T17:22:13.684Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e19" + "$oid": "66723da58f368f285d304a56" }, "createdAt": { - "$date": "2024-06-14T21:55:13.919Z" + "$date": "2024-06-19T02:08:37.653Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.919Z" + "$date": "2024-06-19T02:08:37.653Z" }, "__v": 0 }, @@ -2072,18 +2072,18 @@ "isRegistered": true, "firstName": "Anne", "lastName": "O'Crigan", - "cohort": "WCRI 61", + "cohort": "ECRI 61", "registeredAt": { "$date": "1970-01-20T09:36:48.159Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e1a" + "$oid": "66723da58f368f285d304a57" }, "createdAt": { - "$date": "2024-06-14T21:55:13.919Z" + "$date": "2024-06-19T02:08:37.653Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.919Z" + "$date": "2024-06-19T02:08:37.653Z" }, "__v": 0 }, @@ -2096,18 +2096,18 @@ "isRegistered": true, "firstName": "Nisse", "lastName": "Meacher", - "cohort": "NYC 54", + "cohort": "NYC 98", "registeredAt": { "$date": "1970-01-20T11:07:19.572Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e1b" + "$oid": "66723da58f368f285d304a58" }, "createdAt": { - "$date": "2024-06-14T21:55:13.919Z" + "$date": "2024-06-19T02:08:37.653Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.919Z" + "$date": "2024-06-19T02:08:37.653Z" }, "__v": 0 }, @@ -2120,18 +2120,18 @@ "isRegistered": false, "firstName": "Dix", "lastName": "Traill", - "cohort": "CTRI 55", + "cohort": "WCRI 96", "registeredAt": { "$date": "1970-01-20T13:00:41.678Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e1c" + "$oid": "66723da58f368f285d304a59" }, "createdAt": { - "$date": "2024-06-14T21:55:13.919Z" + "$date": "2024-06-19T02:08:37.653Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.919Z" + "$date": "2024-06-19T02:08:37.653Z" }, "__v": 0 }, @@ -2144,18 +2144,18 @@ "isRegistered": false, "firstName": "Verla", "lastName": "Proske", - "cohort": "WCRI 13", + "cohort": "PTRI 67", "registeredAt": { "$date": "1970-01-20T13:09:03.295Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e1d" + "$oid": "66723da58f368f285d304a5a" }, "createdAt": { - "$date": "2024-06-14T21:55:13.919Z" + "$date": "2024-06-19T02:08:37.653Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.919Z" + "$date": "2024-06-19T02:08:37.653Z" }, "__v": 0 }, @@ -2168,18 +2168,18 @@ "isRegistered": false, "firstName": "Pennie", "lastName": "Dahmke", - "cohort": "FTRI 44", + "cohort": "PTRI 75", "registeredAt": { "$date": "1970-01-20T17:46:08.448Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e1e" + "$oid": "66723da58f368f285d304a5b" }, "createdAt": { - "$date": "2024-06-14T21:55:13.919Z" + "$date": "2024-06-19T02:08:37.653Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.919Z" + "$date": "2024-06-19T02:08:37.653Z" }, "__v": 0 }, @@ -2192,18 +2192,18 @@ "isRegistered": true, "firstName": "Anestassia", "lastName": "Kilroy", - "cohort": "CTRI 13", + "cohort": "LA 33", "registeredAt": { "$date": "1970-01-20T18:12:42.650Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e1f" + "$oid": "66723da58f368f285d304a5c" }, "createdAt": { - "$date": "2024-06-14T21:55:13.919Z" + "$date": "2024-06-19T02:08:37.653Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.919Z" + "$date": "2024-06-19T02:08:37.653Z" }, "__v": 0 }, @@ -2216,18 +2216,18 @@ "isRegistered": true, "firstName": "Remus", "lastName": "Vanelli", - "cohort": "NYC 77", + "cohort": "PTRI 99", "registeredAt": { "$date": "1970-01-20T13:01:08.428Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e20" + "$oid": "66723da58f368f285d304a5d" }, "createdAt": { - "$date": "2024-06-14T21:55:13.919Z" + "$date": "2024-06-19T02:08:37.653Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.919Z" + "$date": "2024-06-19T02:08:37.653Z" }, "__v": 0 }, @@ -2240,18 +2240,18 @@ "isRegistered": true, "firstName": "Gil", "lastName": "Tarbert", - "cohort": "FTRI 32", + "cohort": "NYC 2", "registeredAt": { "$date": "1970-01-20T12:06:31.965Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e21" + "$oid": "66723da58f368f285d304a5e" }, "createdAt": { - "$date": "2024-06-14T21:55:13.920Z" + "$date": "2024-06-19T02:08:37.653Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.920Z" + "$date": "2024-06-19T02:08:37.653Z" }, "__v": 0 }, @@ -2264,18 +2264,18 @@ "isRegistered": true, "firstName": "Yulma", "lastName": "Smelley", - "cohort": "NYC 48", + "cohort": "NYC 44", "registeredAt": { "$date": "1970-01-20T20:28:53.795Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e22" + "$oid": "66723da58f368f285d304a5f" }, "createdAt": { - "$date": "2024-06-14T21:55:13.920Z" + "$date": "2024-06-19T02:08:37.653Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.920Z" + "$date": "2024-06-19T02:08:37.653Z" }, "__v": 0 }, @@ -2288,18 +2288,18 @@ "isRegistered": false, "firstName": "Timmy", "lastName": "Longworth", - "cohort": "LA 64", + "cohort": "CTRI 3", "registeredAt": { "$date": "1970-01-20T18:47:58.351Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e23" + "$oid": "66723da58f368f285d304a60" }, "createdAt": { - "$date": "2024-06-14T21:55:13.920Z" + "$date": "2024-06-19T02:08:37.653Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.920Z" + "$date": "2024-06-19T02:08:37.653Z" }, "__v": 0 }, @@ -2312,18 +2312,18 @@ "isRegistered": true, "firstName": "Arthur", "lastName": "Mollatt", - "cohort": "LA 25", + "cohort": "FTRI 43", "registeredAt": { "$date": "1970-01-20T18:28:04.127Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e24" + "$oid": "66723da58f368f285d304a61" }, "createdAt": { - "$date": "2024-06-14T21:55:13.920Z" + "$date": "2024-06-19T02:08:37.654Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.920Z" + "$date": "2024-06-19T02:08:37.654Z" }, "__v": 0 }, @@ -2336,18 +2336,18 @@ "isRegistered": false, "firstName": "Griffin", "lastName": "Taylor", - "cohort": "PTRI 62", + "cohort": "NYC 38", "registeredAt": { "$date": "1970-01-20T18:10:31.385Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e25" + "$oid": "66723da58f368f285d304a62" }, "createdAt": { - "$date": "2024-06-14T21:55:13.920Z" + "$date": "2024-06-19T02:08:37.654Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.920Z" + "$date": "2024-06-19T02:08:37.654Z" }, "__v": 0 }, @@ -2360,18 +2360,18 @@ "isRegistered": true, "firstName": "Odelinda", "lastName": "Studholme", - "cohort": "PTRI 81", + "cohort": "WCRI 26", "registeredAt": { "$date": "1970-01-20T09:11:35.487Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e26" + "$oid": "66723da58f368f285d304a63" }, "createdAt": { - "$date": "2024-06-14T21:55:13.920Z" + "$date": "2024-06-19T02:08:37.654Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.920Z" + "$date": "2024-06-19T02:08:37.654Z" }, "__v": 0 }, @@ -2384,18 +2384,18 @@ "isRegistered": true, "firstName": "Ardith", "lastName": "Duffill", - "cohort": "NYC 44", + "cohort": "CTRI 91", "registeredAt": { "$date": "1970-01-20T14:21:35.088Z" }, "_id": { - "$oid": "666cbc4140af7b375e352e27" + "$oid": "66723da58f368f285d304a64" }, "createdAt": { - "$date": "2024-06-14T21:55:13.920Z" + "$date": "2024-06-19T02:08:37.655Z" }, "lastEmailSent": { - "$date": "2024-06-14T21:55:13.920Z" + "$date": "2024-06-19T02:08:37.655Z" }, "__v": 0 } diff --git a/scripts/db/mongo-dev-init/MOCK_POSTS.json b/scripts/db/mongo-dev-init/MOCK_POSTS.json index 7ac39374..6f92b141 100644 --- a/scripts/db/mongo-dev-init/MOCK_POSTS.json +++ b/scripts/db/mongo-dev-init/MOCK_POSTS.json @@ -1,970 +1,989 @@ [ { "thread": { - "$oid": "666cbc4b40af7b375e353468" + "$oid": "66723db08f368f285d304f67" }, "user": { - "$oid": "666cbc4240af7b375e352ea6" + "$oid": "66723da68f368f285d304acb" }, - "content": "Exploring the benefits of using TypeScript in large-scale JavaScript applications. Is it worth the learning curve?", + "content": "Exploring the role of AI in enhancing cybersecurity measures. How can AI algorithms detect threats?", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.294Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2027-01-28T07:33:27.394Z" }, "_id": { - "$oid": "666cbc4b40af7b375e353497" + "$oid": "66723db08f368f285d304f7f" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353475" + "$oid": "66723db08f368f285d304f5f" }, "user": { - "$oid": "666cbc4240af7b375e352ecd" + "$oid": "66723da68f368f285d304acb" }, - "content": "Discussing the ethics of AI in decision-making processes. How can we ensure fairness and accountability?", + "content": "Seeking recommendations for online platforms or courses to learn data science and machine learning.", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.295Z" }, "_id": { - "$oid": "666cbc4b40af7b375e353498" + "$oid": "66723db08f368f285d304f80" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353471" + "$oid": "66723db08f368f285d304f6e" }, "user": { - "$oid": "666cbc4240af7b375e352edc" + "$oid": "66723da68f368f285d304acb" }, - "content": "What are your thoughts on the future of cybersecurity in the era of AI and automation?", + "content": "What are the key factors to consider when choosing a tech stack for a new startup project?", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.295Z" }, "_id": { - "$oid": "666cbc4b40af7b375e353499" + "$oid": "66723db08f368f285d304f81" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e35346f" + "$oid": "66723db08f368f285d304f6e" }, "user": { - "$oid": "666cbc4240af7b375e352eec" + "$oid": "66723da68f368f285d304acb" }, - "content": "Discussing the pros and cons of using NoSQL databases like MongoDB versus traditional SQL databases.", + "content": "Debating the future of AI and its potential impact on industries like healthcare and finance.", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.295Z" }, "_id": { - "$oid": "666cbc4b40af7b375e35349a" + "$oid": "66723db08f368f285d304f82" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e35346e" + "$oid": "66723db08f368f285d304f66" }, "user": { - "$oid": "666cbc4240af7b375e352e8e" + "$oid": "66723da68f368f285d304ac9" }, - "content": "How can blockchain technology revolutionize industries beyond finance? Discussing real-world applications.", + "content": "Tips for building responsive and accessible user interfaces in web development. Best practices?", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.295Z" }, "_id": { - "$oid": "666cbc4b40af7b375e35349b" + "$oid": "66723db08f368f285d304f83" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e35345c" + "$oid": "66723db08f368f285d304f64" }, "user": { - "$oid": "666cbc4240af7b375e352eef" + "$oid": "66723da68f368f285d304ac9" }, - "content": "Seeking advice on building a personal brand as a software engineer. How can networking help career growth?", + "content": "Discussing the adoption of serverless architecture in enterprise applications. What are the use cases?", "createdAt": { - "$date": "2024-06-14T21:55:23.688Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2026-02-28T06:59:52.656Z" + "$date": "2024-06-19T02:08:48.295Z" }, "_id": { - "$oid": "666cbc4b40af7b375e35349c" + "$oid": "66723db08f368f285d304f84" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e35345a" + "$oid": "66723db08f368f285d304f6c" }, "user": { - "$oid": "666cbc4240af7b375e352e90" + "$oid": "66723da68f368f285d304acc" }, - "content": "Exploring the challenges of implementing AI-driven chatbots in customer service applications.", + "content": "Tips for optimizing database performance in high-traffic web applications. Best practices?", "createdAt": { - "$date": "2024-06-14T21:55:23.688Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2026-04-26T12:09:48.915Z" + "$date": "2024-06-19T02:08:48.295Z" }, "_id": { - "$oid": "666cbc4b40af7b375e35349d" + "$oid": "66723db08f368f285d304f85" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353463" + "$oid": "66723db08f368f285d304f6c" }, "user": { - "$oid": "666cbc4240af7b375e352eb8" + "$oid": "66723da68f368f285d304aca" }, - "content": "I'm new to web development. Can anyone recommend a good beginner-friendly JavaScript framework?", + "content": "Seeking recommendations for online platforms or courses to learn data science and machine learning.", "createdAt": { - "$date": "2024-06-14T21:55:23.690Z" + "$date": "2024-06-19T02:08:48.294Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.690Z" + "$date": "2026-08-29T17:17:05.009Z" }, "_id": { - "$oid": "666cbc4b40af7b375e35349e" + "$oid": "66723db08f368f285d304f86" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353460" + "$oid": "66723db08f368f285d304f62" }, "user": { - "$oid": "666cbc4240af7b375e352ed9" + "$oid": "66723da68f368f285d304acb" }, - "content": "Discussing the evolution of programming languages and their impact on software development practices.", + "content": "Tips for optimizing database performance in high-traffic web applications. Best practices?", "createdAt": { - "$date": "2024-06-14T21:55:23.690Z" + "$date": "2024-06-19T02:08:48.294Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.690Z" + "$date": "2025-12-27T12:52:09.207Z" }, "_id": { - "$oid": "666cbc4b40af7b375e35349f" + "$oid": "66723db08f368f285d304f87" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353464" + "$oid": "66723db08f368f285d304f67" }, "user": { - "$oid": "666cbc4240af7b375e352ef0" + "$oid": "66723da68f368f285d304acd" }, "content": "What are your favorite design patterns for building scalable backend systems? Discussing architecture.", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2025-07-06T04:53:40.638Z" + "$date": "2024-06-19T02:08:48.295Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534a0" + "$oid": "66723db08f368f285d304f88" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e35346b" + "$oid": "66723db08f368f285d304f6c" }, "user": { - "$oid": "666cbc4240af7b375e352ee3" + "$oid": "66723da68f368f285d304acd" }, - "content": "What are the essential skills for a successful software engineering career in the next decade?", + "content": "Share your experiences with continuous integration and deployment tools like Jenkins and GitLab CI/CD.", "createdAt": { - "$date": "2024-06-14T21:55:23.690Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.690Z" + "$date": "2024-10-24T00:40:46.677Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534a1" + "$oid": "66723db08f368f285d304f89" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353473" + "$oid": "66723db08f368f285d304f66" }, "user": { - "$oid": "666cbc4240af7b375e352ee5" + "$oid": "66723da68f368f285d304acb" }, - "content": "Exploring the role of microservices in modern software architectures. What are the benefits and challenges?", + "content": "Discussing the impact of IoT on everyday life and its implications for software developers.", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2027-10-30T01:51:43.225Z" + "$date": "2028-02-01T11:18:34.588Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534a2" + "$oid": "66723db08f368f285d304f8a" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353470" + "$oid": "66723db08f368f285d304f6b" }, "user": { - "$oid": "666cbc4240af7b375e352ee9" + "$oid": "66723da68f368f285d304aca" }, - "content": "Discussing the adoption of serverless architecture in enterprise applications. What are the use cases?", + "content": "Discussing the challenges and benefits of implementing blockchain technology in supply chain management.", "createdAt": { - "$date": "2024-06-14T21:55:23.690Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.690Z" + "$date": "2025-05-13T00:15:44.168Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534a3" + "$oid": "66723db08f368f285d304f8b" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353464" + "$oid": "66723db08f368f285d304f66" }, "user": { - "$oid": "666cbc4240af7b375e352e9a" + "$oid": "66723da68f368f285d304aca" }, - "content": "How can developers contribute to open-source projects? Discussing the impact of community contributions.", + "content": "Discussing the best practices for securing RESTful APIs. How do you protect against common vulnerabilities?", "createdAt": { - "$date": "2024-06-14T21:55:23.690Z" + "$date": "2024-06-19T02:08:48.296Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.690Z" + "$date": "2024-06-19T02:08:48.296Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534a4" + "$oid": "66723db08f368f285d304f8c" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e35346c" + "$oid": "66723db08f368f285d304f67" }, "user": { - "$oid": "666cbc4240af7b375e352ed0" + "$oid": "66723da68f368f285d304aca" }, - "content": "Exploring the challenges of implementing AI-driven chatbots in customer service applications.", + "content": "How can AI and machine learning be leveraged to enhance personalized user experiences in applications?", "createdAt": { - "$date": "2024-06-14T21:55:23.690Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.690Z" + "$date": "2025-06-14T02:00:54.499Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534a5" + "$oid": "66723db08f368f285d304f8d" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e35346e" + "$oid": "66723db08f368f285d304f63" }, "user": { - "$oid": "666cbc4240af7b375e352ee1" + "$oid": "66723da68f368f285d304acc" }, - "content": "What are the key factors to consider when choosing a tech stack for a new startup project?", + "content": "Seeking advice on building a personal brand as a software engineer. How can networking help career growth?", "createdAt": { - "$date": "2024-06-14T21:55:23.691Z" + "$date": "2024-06-19T02:08:48.296Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.691Z" + "$date": "2024-06-19T02:08:48.296Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534a6" + "$oid": "66723db08f368f285d304f8e" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353468" + "$oid": "66723db08f368f285d304f67" }, "user": { - "$oid": "666cbc4240af7b375e352eee" + "$oid": "66723da68f368f285d304ac9" }, - "content": "Exploring the benefits of adopting a microservices architecture over monolithic applications.", + "content": "Tips for building scalable and maintainable frontend architectures. How do you structure your codebase?", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2025-10-21T03:07:41.505Z" + "$date": "2024-06-30T04:39:41.449Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534a7" + "$oid": "66723db08f368f285d304f8f" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e35346f" + "$oid": "66723db08f368f285d304f68" }, "user": { - "$oid": "666cbc4240af7b375e352ec7" + "$oid": "66723da68f368f285d304acc" }, - "content": "What are your strategies for improving team productivity and motivation in remote work environments?", + "content": "Discussing the evolution of programming languages and their impact on software development practices.", "createdAt": { - "$date": "2024-06-14T21:55:23.691Z" + "$date": "2024-06-19T02:08:48.296Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.691Z" + "$date": "2024-06-19T02:08:48.296Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534a8" + "$oid": "66723db08f368f285d304f90" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353465" + "$oid": "66723db08f368f285d304f5f" }, "user": { - "$oid": "666cbc4240af7b375e352e9f" + "$oid": "66723da68f368f285d304aca" }, - "content": "Seeking advice on transitioning from frontend to full-stack development. What skills should I focus on?", + "content": "Tips for optimizing database performance in high-traffic web applications. Best practices?", "createdAt": { - "$date": "2024-06-14T21:55:23.691Z" + "$date": "2024-06-19T02:08:48.296Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.691Z" + "$date": "2024-06-19T02:08:48.296Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534a9" + "$oid": "66723db08f368f285d304f91" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e35346b" + "$oid": "66723db08f368f285d304f66" }, "user": { - "$oid": "666cbc4240af7b375e352edf" + "$oid": "66723da68f368f285d304aca" }, - "content": "How do you approach designing intuitive user interfaces? Share your UX/UI design principles.", + "content": "Tips for managing technical debt in software projects. How do you prioritize and refactor?", "createdAt": { - "$date": "2024-06-14T21:55:23.691Z" + "$date": "2024-06-19T02:08:48.296Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.691Z" + "$date": "2024-06-19T02:08:48.296Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534aa" + "$oid": "66723db08f368f285d304f92" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353459" + "$oid": "66723db08f368f285d304f61" }, "user": { - "$oid": "666cbc4240af7b375e352e96" + "$oid": "66723da68f368f285d304acb" }, - "content": "Seeking advice on transitioning from academia to industry as a software engineer. What are the challenges?", + "content": "How do you approach refactoring legacy codebases? Share your strategies for modernization.", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2027-01-21T02:44:02.416Z" + "$date": "2027-04-01T08:54:19.130Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534ab" + "$oid": "66723db08f368f285d304f93" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353467" + "$oid": "66723db08f368f285d304f6d" }, "user": { - "$oid": "666cbc4240af7b375e352ebc" + "$oid": "66723da68f368f285d304ad5" }, - "content": "What are your favorite VS Code extensions for productivity? Looking to optimize my workflow.", + "content": "What are the essential skills for a successful software engineering career in the next decade?", "createdAt": { - "$date": "2024-06-14T21:55:23.691Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.691Z" + "$date": "2025-10-07T14:22:25.733Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534ac" + "$oid": "66723db08f368f285d304f94" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353459" + "$oid": "66723db08f368f285d304f65" }, "user": { - "$oid": "666cbc4240af7b375e352eaf" + "$oid": "66723da68f368f285d304afb" }, - "content": "Discussing the benefits of adopting agile methodologies in non-software development teams.", + "content": "Discussing the adoption of serverless architecture in enterprise applications. What are the use cases?", "createdAt": { - "$date": "2024-06-14T21:55:23.691Z" + "$date": "2024-06-19T02:08:48.297Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.691Z" + "$date": "2024-06-19T02:08:48.297Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534ad" + "$oid": "66723db08f368f285d304f95" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353467" + "$oid": "66723db08f368f285d304f63" }, "user": { - "$oid": "666cbc4240af7b375e352e91" + "$oid": "66723da68f368f285d304b06" }, - "content": "What are the essential skills for a successful software engineering career in the next decade?", + "content": "Discussing the impact of IoT on everyday life and its implications for software developers.", "createdAt": { - "$date": "2024-06-14T21:55:23.691Z" + "$date": "2024-06-19T02:08:48.297Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.691Z" + "$date": "2024-06-19T02:08:48.297Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534ae" + "$oid": "66723db08f368f285d304f96" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353464" + "$oid": "66723db08f368f285d304f64" }, "user": { - "$oid": "666cbc4240af7b375e352eb4" + "$oid": "66723da68f368f285d304adb" }, - "content": "Share your experiences with remote team collaboration tools like Slack, Zoom, and Microsoft Teams.", + "content": "Discussing the challenges and benefits of implementing blockchain technology in supply chain management.", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2025-11-10T19:15:05.483Z" + "$date": "2027-06-28T20:40:39.345Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534af" + "$oid": "66723db08f368f285d304f97" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e35346b" + "$oid": "66723db08f368f285d304f62" }, "user": { - "$oid": "666cbc4240af7b375e352e9f" + "$oid": "66723da68f368f285d304b0c" }, - "content": "What are your strategies for improving team productivity and motivation in remote work environments?", + "content": "Tips for managing technical debt in software projects. How do you prioritize and refactor?", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.297Z" }, "updatedAt": { - "$date": "2026-11-25T17:35:04.165Z" + "$date": "2024-06-19T02:08:48.297Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534b0" + "$oid": "66723db08f368f285d304f98" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353467" + "$oid": "66723db08f368f285d304f6e" }, "user": { - "$oid": "666cbc4240af7b375e352eef" + "$oid": "66723da68f368f285d304b00" }, - "content": "How do you approach code reviews in your team? Share your process for constructive feedback and improvement.", + "content": "What are the emerging trends in mobile app development? Discussing technologies like Flutter and React Native.", "createdAt": { - "$date": "2024-06-14T21:55:23.692Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.692Z" + "$date": "2027-07-29T13:28:02.709Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534b1" + "$oid": "66723db08f368f285d304f99" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353464" + "$oid": "66723db08f368f285d304f6b" }, "user": { - "$oid": "666cbc4240af7b375e352ec5" + "$oid": "66723da68f368f285d304aec" }, - "content": "What are the key factors to consider when choosing a tech stack for a new startup project?", + "content": "Seeking advice on transitioning from frontend to full-stack development. What skills should I focus on?", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.297Z" }, "updatedAt": { - "$date": "2024-10-07T05:10:56.870Z" + "$date": "2024-06-19T02:08:48.297Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534b2" + "$oid": "66723db08f368f285d304f9a" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353468" + "$oid": "66723db08f368f285d304f6d" }, "user": { - "$oid": "666cbc4240af7b375e352ee4" + "$oid": "66723da68f368f285d304b05" }, - "content": "Tips for building scalable and maintainable frontend architectures. How do you structure your codebase?", + "content": "Share your insights on DevOps culture and its impact on software development teams.", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.297Z" }, "updatedAt": { - "$date": "2025-09-19T21:00:34.253Z" + "$date": "2024-06-19T02:08:48.297Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534b3" + "$oid": "66723db08f368f285d304f9b" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e35346a" + "$oid": "66723db08f368f285d304f61" }, "user": { - "$oid": "666cbc4240af7b375e352ed4" + "$oid": "66723da68f368f285d304b16" }, - "content": "How do you approach refactoring legacy codebases? Share your strategies for modernization.", + "content": "Seeking advice on transitioning from frontend to full-stack development. What skills should I focus on?", "createdAt": { - "$date": "2024-06-14T21:55:23.692Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.692Z" + "$date": "2026-11-17T19:55:23.566Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534b4" + "$oid": "66723db08f368f285d304f9c" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353465" + "$oid": "66723db08f368f285d304f69" }, "user": { - "$oid": "666cbc4240af7b375e352ed2" + "$oid": "66723da68f368f285d304b0c" }, - "content": "Exploring the benefits of adopting a microservices architecture over monolithic applications.", + "content": "Tips for effective project management in software development teams. How do you ensure deadlines are met?", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.297Z" }, "updatedAt": { - "$date": "2026-02-13T13:41:17.166Z" + "$date": "2024-06-19T02:08:48.297Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534b5" + "$oid": "66723db08f368f285d304f9d" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e35346f" + "$oid": "66723db08f368f285d304f61" }, "user": { - "$oid": "666cbc4240af7b375e352ea2" + "$oid": "66723da68f368f285d304b2a" }, - "content": "How can AI and machine learning be leveraged to enhance personalized user experiences in applications?", + "content": "How do you approach code reviews in your team? Share your process for constructive feedback and improvement.", "createdAt": { - "$date": "2024-06-14T21:55:23.692Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.692Z" + "$date": "2024-09-30T19:35:44.170Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534b6" + "$oid": "66723db08f368f285d304f9e" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e35345c" + "$oid": "66723db08f368f285d304f65" }, "user": { - "$oid": "666cbc4240af7b375e352edc" + "$oid": "66723da68f368f285d304b14" }, - "content": "What are your thoughts on the future of cybersecurity in the era of AI and automation?", + "content": "Seeking recommendations for online platforms or courses to learn data science and machine learning.", "createdAt": { - "$date": "2024-06-14T21:55:23.692Z" + "$date": "2024-06-19T02:08:48.298Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.692Z" + "$date": "2024-06-19T02:08:48.298Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534b7" + "$oid": "66723db08f368f285d304f9f" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353476" + "$oid": "66723db08f368f285d304f66" }, "user": { - "$oid": "666cbc4240af7b375e352ed6" + "$oid": "66723da68f368f285d304b1c" }, - "content": "How do you approach designing intuitive user interfaces? Share your UX/UI design principles.", + "content": "Exploring the benefits of adopting a microservices architecture over monolithic applications.", "createdAt": { - "$date": "2024-06-14T21:55:23.692Z" + "$date": "2024-06-19T02:08:48.298Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.692Z" + "$date": "2024-06-19T02:08:48.298Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534b8" + "$oid": "66723db08f368f285d304fa0" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353462" + "$oid": "66723db08f368f285d304f66" }, "user": { - "$oid": "666cbc4240af7b375e352ec9" + "$oid": "66723da68f368f285d304ae8" }, - "content": "Discussing the benefits of adopting agile methodologies in non-software development teams.", + "content": "Tips for building responsive and accessible user interfaces in web development. Best practices?", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.298Z" }, "updatedAt": { - "$date": "2027-01-09T13:19:34.035Z" + "$date": "2024-06-19T02:08:48.298Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534b9" + "$oid": "66723db08f368f285d304fa1" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e35346c" + "$oid": "66723db08f368f285d304f69" }, "user": { - "$oid": "666cbc4240af7b375e352eed" + "$oid": "66723da68f368f285d304af0" }, - "content": "What are the emerging trends in mobile app development? Discussing technologies like Flutter and React Native.", + "content": "How do you balance feature development with technical debt reduction in agile development?", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.298Z" }, "updatedAt": { - "$date": "2026-07-20T00:21:07.415Z" + "$date": "2024-06-19T02:08:48.298Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534ba" + "$oid": "66723db08f368f285d304fa2" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e35346c" + "$oid": "66723db08f368f285d304f5f" }, "user": { - "$oid": "666cbc4240af7b375e352ebd" + "$oid": "66723da68f368f285d304b23" }, - "content": "Exploring the role of AI in enhancing cybersecurity measures. How can AI algorithms detect threats?", + "content": "What are your favorite VS Code extensions for productivity? Looking to optimize my workflow.", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2027-08-08T01:35:53.686Z" + "$date": "2026-05-18T11:23:04.320Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534bb" + "$oid": "66723db08f368f285d304fa3" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353469" + "$oid": "66723db08f368f285d304f6a" }, "user": { - "$oid": "666cbc4240af7b375e352eba" + "$oid": "66723da68f368f285d304ad0" }, - "content": "What are your thoughts on the future of cybersecurity in the era of AI and automation?", + "content": "Discussing the benefits of adopting agile methodologies in non-software development teams.", "createdAt": { - "$date": "2024-06-14T21:55:23.693Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.693Z" + "$date": "2026-01-04T06:30:01.252Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534bc" + "$oid": "66723db08f368f285d304fa4" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e35346b" + "$oid": "66723db08f368f285d304f63" }, "user": { - "$oid": "666cbc4240af7b375e352e9b" + "$oid": "66723da68f368f285d304ad5" }, - "content": "Seeking advice on transitioning from frontend to full-stack development. What skills should I focus on?", + "content": "Tips for managing technical debt in software projects. How do you prioritize and refactor?", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2025-08-24T02:31:32.213Z" + "$date": "2027-10-19T08:27:55.399Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534bd" + "$oid": "66723db08f368f285d304fa5" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e35346e" + "$oid": "66723db08f368f285d304f6e" }, "user": { - "$oid": "666cbc4240af7b375e352e92" + "$oid": "66723da68f368f285d304ac9" }, - "content": "Discussing the pros and cons of using NoSQL databases like MongoDB versus traditional SQL databases.", + "content": "Discussing the impact of IoT on everyday life and its implications for software developers.", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2026-09-18T05:57:32.739Z" + "$date": "2027-10-18T22:55:00.577Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534be" + "$oid": "66723db08f368f285d304fa6" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353466" + "$oid": "66723db08f368f285d304f66" }, "user": { - "$oid": "666cbc4240af7b375e352ed7" + "$oid": "66723da68f368f285d304ae4" }, "content": "How do you approach designing intuitive user interfaces? Share your UX/UI design principles.", "createdAt": { - "$date": "2024-06-14T21:55:23.693Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.693Z" + "$date": "2026-06-20T05:46:36.489Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534bf" + "$oid": "66723db08f368f285d304fa7" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353474" + "$oid": "66723db08f368f285d304f60" }, "user": { - "$oid": "666cbc4240af7b375e352eb2" + "$oid": "66723da68f368f285d304ad5" }, - "content": "Seeking recommendations for online platforms or courses to learn data science and machine learning.", + "content": "Seeking advice on transitioning from academia to industry as a software engineer. What are the challenges?", "createdAt": { - "$date": "2024-06-14T21:55:23.693Z" + "$date": "2024-06-19T02:08:48.298Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.693Z" + "$date": "2024-06-19T02:08:48.298Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534c0" + "$oid": "66723db08f368f285d304fa8" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e35345b" + "$oid": "66723db08f368f285d304f69" }, "user": { - "$oid": "666cbc4240af7b375e352ea6" + "$oid": "66723da68f368f285d304ace" }, - "content": "What are your thoughts on the future of cybersecurity in the era of AI and automation?", + "content": "Exploring the role of microservices in modern software architectures. What are the benefits and challenges?", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.298Z" }, "updatedAt": { - "$date": "2026-09-01T11:02:20.422Z" + "$date": "2024-06-19T02:08:48.298Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534c1" + "$oid": "66723db08f368f285d304fa9" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353473" + "$oid": "66723db08f368f285d304f67" }, "user": { - "$oid": "666cbc4240af7b375e352eb8" + "$oid": "66723da68f368f285d304af4" }, - "content": "How do you approach refactoring legacy codebases? Share your strategies for modernization.", + "content": "How can blockchain technology revolutionize industries beyond finance? Discussing real-world applications.", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.298Z" }, "updatedAt": { - "$date": "2026-10-26T18:24:02.555Z" + "$date": "2024-06-19T02:08:48.298Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534c2" + "$oid": "66723db08f368f285d304faa" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e35346e" + "$oid": "66723db08f368f285d304f68" }, "user": { - "$oid": "666cbc4240af7b375e352ea0" + "$oid": "66723da68f368f285d304acd" }, - "content": "What are your favorite VS Code extensions for productivity? Looking to optimize my workflow.", + "content": "Discussing the evolution of programming languages and their impact on software development practices.", + "createdAt": { + "$date": "2024-06-19T02:08:48.295Z" + }, + "updatedAt": { + "$date": "2028-04-27T19:50:20.860Z" + }, + "_id": { + "$oid": "66723db08f368f285d304fab" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "66723db08f368f285d304f63" + }, + "user": { + "$oid": "66723da68f368f285d304ac9" + }, + "content": "Discussing the adoption of serverless architecture in enterprise applications. What are the use cases?", "createdAt": { - "$date": "2024-06-14T21:55:23.693Z" + "$date": "2024-06-19T02:08:48.298Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.693Z" + "$date": "2024-06-19T02:08:48.298Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534c3" + "$oid": "66723db08f368f285d304fac" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353463" + "$oid": "66723db08f368f285d304f5f" }, "user": { - "$oid": "666cbc4240af7b375e352e9b" + "$oid": "66723da68f368f285d304adc" }, - "content": "Share your favorite resources for staying updated with the latest tech trends and industry news.", + "content": "How can blockchain technology revolutionize industries beyond finance? Discussing real-world applications.", "createdAt": { - "$date": "2024-06-14T21:55:23.693Z" + "$date": "2024-06-19T02:08:48.299Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.693Z" + "$date": "2024-06-19T02:08:48.299Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534c4" + "$oid": "66723db08f368f285d304fad" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e35345e" + "$oid": "66723db08f368f285d304f6a" }, "user": { - "$oid": "666cbc4240af7b375e352e9d" + "$oid": "66723da68f368f285d304af7" }, - "content": "What are the key factors to consider when choosing a tech stack for a new startup project?", + "content": "Exploring the challenges of scaling applications globally. How do you design for international users?", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.299Z" }, "updatedAt": { - "$date": "2027-05-04T21:58:45.216Z" + "$date": "2024-06-19T02:08:48.299Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534c5" + "$oid": "66723db08f368f285d304fae" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353460" + "$oid": "66723db08f368f285d304f6c" }, "user": { - "$oid": "666cbc4240af7b375e352ef0" + "$oid": "66723da68f368f285d304b0d" }, - "content": "Comparing popular cloud providers for hosting web applications: AWS, Azure, and Google Cloud Platform.", + "content": "How do you handle software architecture design in agile development? Share your strategies and experiences.", "createdAt": { - "$date": "2024-06-14T21:55:23.694Z" + "$date": "2024-06-19T02:08:48.299Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.694Z" + "$date": "2024-06-19T02:08:48.299Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534c6" + "$oid": "66723db08f368f285d304faf" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353471" + "$oid": "66723db08f368f285d304f60" }, "user": { - "$oid": "666cbc4240af7b375e352e9b" + "$oid": "66723da68f368f285d304ad6" }, - "content": "How do you balance feature development with technical debt reduction in agile development?", + "content": "Seeking advice on preparing for technical interviews at top tech companies. What are common interview questions?", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.299Z" }, "updatedAt": { - "$date": "2025-09-11T04:24:08.049Z" + "$date": "2024-06-19T02:08:48.299Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534c7" + "$oid": "66723db08f368f285d304fb0" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353461" + "$oid": "66723db08f368f285d304f64" }, "user": { - "$oid": "666cbc4240af7b375e352ea7" + "$oid": "66723da68f368f285d304adf" }, - "content": "How do you balance feature development with technical debt reduction in agile development?", + "content": "How do you approach code reviews in your team? Share your process for constructive feedback and improvement.", "createdAt": { - "$date": "2024-06-14T21:55:23.689Z" + "$date": "2024-06-19T02:08:48.299Z" }, "updatedAt": { - "$date": "2025-06-23T04:28:57.616Z" + "$date": "2024-06-19T02:08:48.299Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534c8" + "$oid": "66723db08f368f285d304fb1" }, "__v": 0 }, { "thread": { - "$oid": "666cbc4b40af7b375e353475" + "$oid": "66723db08f368f285d304f6b" }, "user": { - "$oid": "666cbc4240af7b375e352ee6" + "$oid": "66723da68f368f285d304adc" }, - "content": "Share your favorite resources for staying updated with the latest tech trends and industry news.", + "content": "How do you handle software architecture design in agile development? Share your strategies and experiences.", "createdAt": { - "$date": "2024-06-14T21:55:23.694Z" + "$date": "2024-06-19T02:08:48.295Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.694Z" + "$date": "2027-01-29T01:00:15.398Z" }, "_id": { - "$oid": "666cbc4b40af7b375e3534c9" + "$oid": "66723db08f368f285d304fb2" }, "__v": 0 } diff --git a/scripts/db/mongo-dev-init/MOCK_PROFILES.json b/scripts/db/mongo-dev-init/MOCK_PROFILES.json index a69770cb..6edbda08 100644 --- a/scripts/db/mongo-dev-init/MOCK_PROFILES.json +++ b/scripts/db/mongo-dev-init/MOCK_PROFILES.json @@ -1,165 +1,169 @@ [ { "user": { - "$oid": "666cbc4240af7b375e352e8c" + "$oid": "66723da68f368f285d304ac9" }, "firstName": "Testy", "lastName": "McTesterson", "profilePhoto": "https://www.codesmith.io/hubfs/Screen%20Shot%202024-06-10%20at%2010.46.24%20AM.png", - "cohort": "PTRI 12", + "cohort": "PTRI 96", "graduationYear": 2024, "email": "tester@codehammers.com", "linkedInProfile": "https://www.linkedin.com/in/Testy-McTesterson-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", "skills": [ - "WebSockets", - "Leadership", - "Parallel Computing", - "Machine Learning", - "System Design", - "AWS", - "HTML", - "Integration Testing", - "User Interface (UI) Design", - "Data Warehousing", - "Scrum", - "RESTful APIs", - "Database Design" - ], - "specializations": [ - "Version Control", - "Automated Testing", - "Code Review", - "IoT (Internet of Things)", - "Critical Thinking", - "Natural Language Processing", - "Java", - "BDD (Behavior-Driven Development)", - "Functional Programming", - "Google Cloud Platform", - "Graph Theory", - "Collaboration", - "Laravel", + "Android Development", "Reactive Programming", - "Technical Writing", - "Parallel Computing" + "Laravel", + "Scrum", + "Serverless Architecture", + "Concurrency", + "Software Architecture", + "HTML", + "Angular", + "API Integration", + "AWS", + "Cybersecurity", + "Leadership" ], + "specializations": ["Spring Boot", "Google Cloud Platform", "User Experience (UX) Design"], "careerInformation": { - "currentPosition": { "title": "Frontend Developer", "company": "DoorDash" }, + "currentPosition": { "title": "QA Engineer", "company": "Adobe" }, "pastPositions": [ { - "title": "Technical Lead", - "company": "DoorDash", + "title": "Software Architect", + "company": "Red Hat", "startDate": { - "$date": "2024-06-14T21:55:22.545Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2028-04-24T23:35:06.622Z" + "$date": "2027-07-11T14:07:07.297Z" }, "_id": { - "$oid": "666cbc4a40af7b375e352f6b" + "$oid": "66723dae8f368f285d304b9d" } }, { - "title": "Android Developer", - "company": "Twitter", + "title": "Senior Software Engineer", + "company": "Apple", "startDate": { - "$date": "2024-06-14T21:55:22.545Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2024-09-10T05:48:30.769Z" + "$date": "2027-09-19T05:16:57.568Z" }, "_id": { - "$oid": "666cbc4a40af7b375e352f6c" + "$oid": "66723dae8f368f285d304b9e" } }, { - "title": "Junior Software Engineer", - "company": "Activision Blizzard", + "title": "iOS Developer", + "company": "PayPal", "startDate": { - "$date": "2024-06-14T21:55:22.545Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-07-19T09:30:53.328Z" + "$date": "2026-12-22T09:25:16.741Z" }, "_id": { - "$oid": "666cbc4a40af7b375e352f6d" + "$oid": "66723dae8f368f285d304b9f" } }, { - "title": "AI Engineer", - "company": "DocuSign", + "title": "Android Developer", + "company": "DoorDash", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2028-02-08T11:33:45.001Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304ba0" + } + }, + { + "title": "Technical Lead", + "company": "Intel", "startDate": { - "$date": "2024-06-14T21:55:22.545Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2024-07-31T07:12:45.527Z" + "$date": "2026-04-17T02:41:08.500Z" }, "_id": { - "$oid": "666cbc4a40af7b375e352f6e" + "$oid": "66723dae8f368f285d304ba1" } } ] }, "education": [ { - "institution": "University of Michigan", - "degree": "Doctor of Pharmacy (PharmD)", - "fieldOfStudy": "Biochemistry", + "institution": "University of California, Santa Barbara (UCSB)", + "degree": "Diploma Program", + "fieldOfStudy": "Film Studies", "startDate": { - "$date": "2024-06-14T21:55:22.545Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-10-17T22:54:25.129Z" + "$date": "2025-07-24T04:55:48.488Z" }, "_id": { - "$oid": "666cbc4a40af7b375e352f6f" + "$oid": "66723dae8f368f285d304ba2" } }, { - "institution": "University of Vermont", - "degree": "Doctor of Dental Surgery (DDS)", - "fieldOfStudy": "Pharmacy", + "institution": "Rice University", + "degree": "Associate Degree", + "fieldOfStudy": "Urban Planning", "startDate": { - "$date": "2024-06-14T21:55:22.545Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2026-03-23T02:49:31.765Z" + "$date": "2025-01-20T05:28:22.944Z" }, "_id": { - "$oid": "666cbc4a40af7b375e352f70" + "$oid": "66723dae8f368f285d304ba3" } }, { - "institution": "University of Rochester", - "degree": "Doctoral Degree", - "fieldOfStudy": "Biomedical Engineering", + "institution": "Case Western Reserve University", + "degree": "Bachelor of Fine Arts (BFA)", + "fieldOfStudy": "Management", "startDate": { - "$date": "2024-06-14T21:55:22.545Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-01-18T03:55:55.398Z" + "$date": "2024-10-04T19:33:12.706Z" }, "_id": { - "$oid": "666cbc4a40af7b375e352f71" + "$oid": "66723dae8f368f285d304ba4" } } ], "projects": [ { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", + "name": "SmartInventory", + "description": "Inventory management system with RFID and IoT integration for tracking assets.", + "link": "https://github.com/username/smartinventory", "_id": { - "$oid": "666cbc4a40af7b375e352f72" + "$oid": "66723dae8f368f285d304ba5" } }, { - "name": "CloudGuard", - "description": "Advanced cloud security suite ensuring data protection and compliance.", - "link": "https://github.com/username/cloudguard", + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", + "_id": { + "$oid": "66723dae8f368f285d304ba6" + } + }, + { + "name": "NetPlanner", + "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", + "link": "https://github.com/username/netplanner", "_id": { - "$oid": "666cbc4a40af7b375e352f73" + "$oid": "66723dae8f368f285d304ba7" } }, { @@ -167,658 +171,641 @@ "description": "AI-driven code optimization tool for improving software performance and efficiency.", "link": "https://github.com/username/codeoptimizer", "_id": { - "$oid": "666cbc4a40af7b375e352f74" + "$oid": "66723dae8f368f285d304ba8" } } ], - "personalBio": "Devoted to fostering a collaborative team environment and mentoring junior developers.", + "personalBio": "Passionate about leveraging data-driven insights to optimize software performance and user engagement.", "testimonials": [ { - "from": "Alice Johnson", - "relation": "Manager at TechSolutions Inc.", - "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", - "_id": { - "$oid": "666cbc4a40af7b375e352f75" - } - }, - { - "from": "Sophie Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "666cbc4a40af7b375e352f76" + "$oid": "66723dae8f368f285d304ba9" } }, { - "from": "Sophie Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", "_id": { - "$oid": "666cbc4a40af7b375e352f77" + "$oid": "66723dae8f368f285d304baa" } }, { - "from": "David Smith", - "relation": "Colleague at InnovateTech Ltd.", - "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", "_id": { - "$oid": "666cbc4a40af7b375e352f78" + "$oid": "66723dae8f368f285d304bab" } } ], "socialMediaLinks": { - "blog": "https://www.Testy-McTesterson-fake-blog.com", + "twitter": "https://x.com/Testy-McTesterson-fake", "other": ["https://www.instagram.com/Testy-McTesterson-fake"] }, "availabilityForNetworking": false, - "bootcampExperience": "Kenzie Academy", + "bootcampExperience": "Nucamp", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e352f6a" + "$oid": "66723dae8f368f285d304b9c" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352e8d" + "$oid": "66723da68f368f285d304aca" }, - "firstName": "Corine", - "lastName": "Tugwell", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "LA 96", + "firstName": "Jane", + "lastName": "Doe", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "WCRI 49", "graduationYear": 2024, - "email": "ctugwell0@ovh.net", - "linkedInProfile": "https://www.linkedin.com/in/Corine-Tugwell-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", - "skills": ["Scrum", "FaaS (Function as a Service)", "Agile Development"], + "email": "jane@codehammers.com", + "linkedInProfile": "https://www.linkedin.com/in/Jane-Doe-fake", + "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", + "skills": [ + "C#", + "Infrastructure as Code", + "Concurrency", + "Machine Learning", + "Agile Development", + "Functional Programming" + ], "specializations": [ - "Kubernetes", + "Project Management", + "Unit Testing", + "Edge Computing", + "Legacy Code Management", + "Cybersecurity", "RESTful APIs", - "Blockchain", - "API Integration", - "Android Development", - "Automated Testing", - "Serverless Architecture", - "Graph Databases", - "Design Patterns", - "Data Science", - "PaaS (Platform as a Service)", - "DevOps", - "Software Architecture", - "Graph Theory", - "Infrastructure as Code" + "Mobile Development", + "HTML", + "Angular", + "TDD (Test-Driven Development)", + "Agile Development", + "Machine Learning" ], "careerInformation": { - "currentPosition": { "title": "Security Engineer", "company": "Facebook" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "University of Montreal", - "degree": "Doctor of Dental Medicine (DMD)", - "fieldOfStudy": "Public Health", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" + "currentPosition": { "title": "Junior Software Engineer", "company": "Dropbox" }, + "pastPositions": [ + { + "title": "QA Engineer", + "company": "LinkedIn", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2026-12-11T23:41:42.324Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304bad" + } }, - "endDate": { - "$date": "2027-05-29T01:25:50.822Z" + { + "title": "Product Manager", + "company": "Dropbox", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2027-08-16T18:45:30.658Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304bae" + } }, + { + "title": "Android Developer", + "company": "Snowflake", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2026-06-02T01:42:00.530Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304baf" + } + } + ] + }, + "education": [], + "projects": [ + { + "name": "LearnHub", + "description": "Online learning platform offering courses on various subjects with interactive content.", + "link": "https://github.com/username/learnhub", "_id": { - "$oid": "666cbc4a40af7b375e352f7a" + "$oid": "66723dae8f368f285d304bb0" } }, { - "institution": "University of Georgia", - "degree": "Doctor of Dental Medicine (DMD)", - "fieldOfStudy": "Mechanical Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-07-20T20:16:11.020Z" - }, + "name": "VirtualTour", + "description": "Virtual reality tour application for immersive travel experiences.", + "link": "https://github.com/username/virtualtour", "_id": { - "$oid": "666cbc4a40af7b375e352f7b" + "$oid": "66723dae8f368f285d304bb1" } }, { - "institution": "University of California, Berkeley", - "degree": "Executive Education", - "fieldOfStudy": "Architecture", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2028-01-29T07:39:55.316Z" - }, + "name": "SmartCity", + "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", + "link": "https://github.com/username/smartcity", + "_id": { + "$oid": "66723dae8f368f285d304bb2" + } + }, + { + "name": "VoiceAssistant", + "description": "Voice-controlled personal assistant using natural language processing.", + "link": "https://github.com/username/voiceassistant", "_id": { - "$oid": "666cbc4a40af7b375e352f7c" + "$oid": "66723dae8f368f285d304bb3" } } ], - "projects": [ + "personalBio": "Experienced in rapid prototyping and iterative development methodologies.", + "testimonials": [ { - "name": "AIChatbot", - "description": "AI-powered chatbot for customer support and interactive communication.", - "link": "https://github.com/username/aichatbot", + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "666cbc4a40af7b375e352f7d" + "$oid": "66723dae8f368f285d304bb4" } }, { - "name": "MediCare", - "description": "Medical appointment scheduling and patient management system for healthcare providers.", - "link": "https://github.com/username/medicare", - "_id": { - "$oid": "666cbc4a40af7b375e352f7e" - } - }, - { - "name": "AugmentWorks", - "description": "Augmented reality application for enhancing workplace productivity and training.", - "link": "https://github.com/username/augmentworks", - "_id": { - "$oid": "666cbc4a40af7b375e352f7f" - } - }, - { - "name": "RoboTrader", - "description": "Algorithmic trading platform for automated stock market analysis and trading.", - "link": "https://github.com/username/robotrader", - "_id": { - "$oid": "666cbc4a40af7b375e352f80" - } - }, - { - "name": "TourismApp", - "description": "Mobile application for tourists providing travel guides and local recommendations.", - "link": "https://github.com/username/tourismapp", - "_id": { - "$oid": "666cbc4a40af7b375e352f81" - } - } - ], - "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", - "testimonials": [ - { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - "_id": { - "$oid": "666cbc4a40af7b375e352f82" - } - }, - { - "from": "Olivia White", - "relation": "Tech Lead at Cloud Innovations", - "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", "_id": { - "$oid": "666cbc4a40af7b375e352f83" + "$oid": "66723dae8f368f285d304bb5" } } ], - "socialMediaLinks": { "other": ["https://www.instagram.com/Corine-Tugwell-fake"] }, + "socialMediaLinks": { "other": [] }, "availabilityForNetworking": true, - "bootcampExperience": "Hack Reactor", + "bootcampExperience": "Le Wagon", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e352f79" + "$oid": "66723dae8f368f285d304bac" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352e8e" + "$oid": "66723da68f368f285d304acb" }, - "firstName": "Brody", - "lastName": "Cumpton", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "ECRI 44", + "firstName": "John", + "lastName": "Dough", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "CTRI 40", "graduationYear": 2024, - "email": "bcumpton1@bluehost.com", - "linkedInProfile": "https://www.linkedin.com/in/Brody-Cumpton-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", - "skills": [ - "Graph Databases", - "Vue.js", - "CSS", - "Legacy Code Management", - "C#", - "React", - "SQL", - "Scrum", - "Java", - "Flask", - "Parallel Computing", - "Data Visualization", - "Pair Programming", - "Integration Testing" - ], + "email": "john@codehammers.com", + "linkedInProfile": "https://www.linkedin.com/in/John-Dough-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": ["C#", "SQL", "Angular"], "specializations": [ - "Technical Writing", - "Git", - "Edge Computing", - "Node.js", - "Unit Testing", - "Object-Oriented Programming", - "User Interface (UI) Design", - "Java", - "Graph Databases", - "Automated Testing", + "Azure", + "Functional Programming", "Leadership", - "Continuous Deployment" + "Quantum Computing", + "Serverless Architecture" ], "careerInformation": { - "currentPosition": { "title": "Automation Engineer", "company": "Coinbase" }, + "currentPosition": { "title": "Product Manager", "company": "Snowflake" }, "pastPositions": [ { - "title": "Mobile Developer", - "company": "DoorDash", + "title": "Android Developer", + "company": "Spotify", "startDate": { - "$date": "2024-06-14T21:55:22.546Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2024-11-17T14:55:25.705Z" + "$date": "2024-12-15T20:00:40.088Z" }, "_id": { - "$oid": "666cbc4a40af7b375e352f85" + "$oid": "66723dae8f368f285d304bb7" } }, { - "title": "Senior Software Engineer", - "company": "Red Hat", + "title": "Software Developer", + "company": "Google", "startDate": { - "$date": "2024-06-14T21:55:22.546Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2028-02-28T19:57:20.443Z" + "$date": "2024-12-13T20:23:34.071Z" }, "_id": { - "$oid": "666cbc4a40af7b375e352f86" + "$oid": "66723dae8f368f285d304bb8" } - } - ] - }, - "education": [ - { - "institution": "University of Tokyo", - "degree": "Master of Science (MS)", - "fieldOfStudy": "Marketing", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" }, - "endDate": { - "$date": "2027-04-03T08:10:41.641Z" + { + "title": "Lead Software Engineer", + "company": "Robinhood", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2024-09-13T02:05:00.978Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304bb9" + } }, - "_id": { - "$oid": "666cbc4a40af7b375e352f87" + { + "title": "Full Stack Developer", + "company": "Okta", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2026-12-25T23:50:51.225Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304bba" + } + }, + { + "title": "AI Engineer", + "company": "Spotify", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2025-07-11T16:32:16.694Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304bbb" + } } - } - ], + ] + }, + "education": [], "projects": [ { - "name": "TravelGuide", - "description": "Interactive travel guide application providing travel tips and destination insights.", - "link": "https://github.com/username/travelguide", + "name": "EcoTech", + "description": "Environmental monitoring and conservation app with real-time data visualization.", + "link": "https://github.com/username/ecotech", "_id": { - "$oid": "666cbc4a40af7b375e352f88" + "$oid": "66723dae8f368f285d304bbc" } }, { - "name": "TravelGuide", - "description": "Interactive travel guide application providing travel tips and destination insights.", - "link": "https://github.com/username/travelguide", + "name": "SmartHomeHub", + "description": "Centralized home automation system integrating IoT devices for smart living.", + "link": "https://github.com/username/smarthomehub", "_id": { - "$oid": "666cbc4a40af7b375e352f89" + "$oid": "66723dae8f368f285d304bbd" } }, { - "name": "CryptoTrack", - "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", - "link": "https://github.com/username/cryptotrack", + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", "_id": { - "$oid": "666cbc4a40af7b375e352f8a" + "$oid": "66723dae8f368f285d304bbe" } }, { - "name": "SmartFarm", - "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", - "link": "https://github.com/username/smartfarm", + "name": "ARNavigation", + "description": "Augmented reality navigation app for real-time directions and location-based information.", + "link": "https://github.com/username/arnavigation", "_id": { - "$oid": "666cbc4a40af7b375e352f8b" + "$oid": "66723dae8f368f285d304bbf" } }, { - "name": "RoboTrader", - "description": "Algorithmic trading platform for automated stock market analysis and trading.", - "link": "https://github.com/username/robotrader", + "name": "AIChatbot", + "description": "AI-powered chatbot for customer support and interactive communication.", + "link": "https://github.com/username/aichatbot", "_id": { - "$oid": "666cbc4a40af7b375e352f8c" + "$oid": "66723dae8f368f285d304bc0" } } ], - "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", + "personalBio": "Skilled in working with cross-functional teams to deliver innovative software solutions that exceed expectations.", "testimonials": [ { - "from": "Sophia Martinez", - "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", "_id": { - "$oid": "666cbc4a40af7b375e352f8d" + "$oid": "66723dae8f368f285d304bc1" } }, { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "666cbc4a40af7b375e352f8e" + "$oid": "66723dae8f368f285d304bc2" } }, { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "from": "Olivia White", + "relation": "Tech Lead at Cloud Innovations", + "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "_id": { + "$oid": "66723dae8f368f285d304bc3" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "666cbc4a40af7b375e352f8f" + "$oid": "66723dae8f368f285d304bc4" } } ], "socialMediaLinks": { - "twitter": "https://x.com/Brody-Cumpton-fake", - "blog": "https://www.Brody-Cumpton-fake-blog.com", - "other": [] + "blog": "https://www.John-Dough-fake-blog.com", + "other": ["https://www.instagram.com/John-Dough-fake"] }, "availabilityForNetworking": false, - "bootcampExperience": "Fullstack Academy", + "bootcampExperience": "Codesmith", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e352f84" + "$oid": "66723dae8f368f285d304bb6" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352e8f" + "$oid": "66723da68f368f285d304acc" }, - "firstName": "Moselle", - "lastName": "Duro", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "LA 58", + "firstName": "Jaime", + "lastName": "Doh", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "cohort": "WCRI 41", "graduationYear": 2024, - "email": "mduro2@technorati.com", - "linkedInProfile": "https://www.linkedin.com/in/Moselle-Duro-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "email": "jaime@codehammers.com", + "linkedInProfile": "https://www.linkedin.com/in/Jaime-Doh-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", "skills": [ - "Django", - "Critical Thinking", - "Blockchain", - "Continuous Deployment", - "Design Patterns", - "Agile Development", + "Graph Theory", + "JavaScript", + "Docker", + "ETL (Extract, Transform, Load)", "Java", - "Data Visualization", + "Machine Learning", + "Integration Testing", + "Functional Programming", + "System Design", + "BDD (Behavior-Driven Development)", + "Refactoring", + "HTML", "Database Design", - "Problem-Solving", + "Vue.js", + "ASP.NET", + "Legacy Code Management", + "Critical Thinking" + ], + "specializations": [ + "Pair Programming", + "Project Management", + "Communication Skills", + "Continuous Deployment", "Quantum Computing", - "C#" + "CSS", + "Android Development", + "JavaScript", + "Blockchain" ], - "specializations": ["Technical Writing", "Data Science"], "careerInformation": { - "currentPosition": { "title": "Senior Software Engineer", "company": "Spotify" }, + "currentPosition": { "title": "Site Reliability Engineer", "company": "DocuSign" }, "pastPositions": [ { - "title": "Android Developer", - "company": "DoorDash", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2028-03-25T21:02:14.475Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352f91" - } - }, - { - "title": "Lead Software Engineer", - "company": "GitHub", + "title": "QA Engineer", + "company": "Robinhood", "startDate": { - "$date": "2024-06-14T21:55:22.546Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-04-17T23:15:54.080Z" + "$date": "2027-08-29T11:09:24.650Z" }, "_id": { - "$oid": "666cbc4a40af7b375e352f92" + "$oid": "66723dae8f368f285d304bc6" } }, { - "title": "DevOps Engineer", - "company": "Twilio", + "title": "Software Developer", + "company": "Intel", "startDate": { - "$date": "2024-06-14T21:55:22.546Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2026-09-23T05:12:03.232Z" + "$date": "2025-01-08T07:59:17.660Z" }, "_id": { - "$oid": "666cbc4a40af7b375e352f93" - } - }, - { - "title": "Technical Lead", - "company": "Facebook", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-07-30T10:15:04.135Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352f94" + "$oid": "66723dae8f368f285d304bc7" } } ] }, - "education": [ - { - "institution": "University of Georgia", - "degree": "Doctor of Pharmacy (PharmD)", - "fieldOfStudy": "Medicine", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-04-10T15:44:35.589Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352f95" - } - }, - { - "institution": "University of Kentucky", - "degree": "Doctor of Dental Surgery (DDS)", - "fieldOfStudy": "Education", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-01-21T09:49:48.796Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352f96" - } - } - ], + "education": [], "projects": [ { - "name": "SmartWatch", - "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", - "link": "https://github.com/username/smartwatch", - "_id": { - "$oid": "666cbc4a40af7b375e352f97" - } - }, - { - "name": "CodeBot", - "description": "Automated code generation tool using AI for faster development cycles.", - "link": "https://github.com/username/codebot", - "_id": { - "$oid": "666cbc4a40af7b375e352f98" - } - }, - { - "name": "RecruitmentAI", - "description": "AI-powered recruitment platform for matching candidates with job opportunities.", - "link": "https://github.com/username/recruitmentai", - "_id": { - "$oid": "666cbc4a40af7b375e352f99" - } - }, - { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", "_id": { - "$oid": "666cbc4a40af7b375e352f9a" + "$oid": "66723dae8f368f285d304bc8" } }, { - "name": "SmartFarm", - "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", - "link": "https://github.com/username/smartfarm", + "name": "EduTech", + "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", + "link": "https://github.com/username/edutech", "_id": { - "$oid": "666cbc4a40af7b375e352f9b" + "$oid": "66723dae8f368f285d304bc9" } } ], - "personalBio": "Dedicated to upholding best practices in software engineering, including testing, code reviews, and version control.", + "personalBio": "Passionate about leveraging data-driven insights to optimize software performance and user engagement.", "testimonials": [], - "socialMediaLinks": { "twitter": "https://x.com/Moselle-Duro-fake", "other": [] }, + "socialMediaLinks": { "other": [] }, "availabilityForNetworking": false, - "bootcampExperience": "CareerFoundry", + "bootcampExperience": "Lambda School", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e352f90" + "$oid": "66723dae8f368f285d304bc5" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352e90" + "$oid": "66723da68f368f285d304acd" }, - "firstName": "Winifred", - "lastName": "Carnelley", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "cohort": "WCRI 85", + "firstName": "Homer", + "lastName": "Simpson", + "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "cohort": "LA 76", "graduationYear": 2024, - "email": "wcarnelley3@ucsd.edu", - "linkedInProfile": "https://www.linkedin.com/in/Winifred-Carnelley-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", - "skills": ["Event-Driven Architecture", "Microservices", "Node.js", "Android Development"], - "specializations": [ - "Algorithm Design", - "SQL", - "Cybersecurity", + "email": "homer@donuts.com", + "linkedInProfile": "https://www.linkedin.com/in/Homer-Simpson-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": [ + "Django", + "FaaS (Function as a Service)", + "Agile Development", + "Robotic Process Automation", + "ETL (Extract, Transform, Load)", + "Graph Databases", + "Functional Programming", + "CSS", + "Unit Testing", + "HTML", + "Ruby", "Containerization", "Infrastructure as Code", - "CI/CD" + "Database Design", + "Continuous Deployment", + "iOS Development", + "JavaScript", + "Collaboration" ], + "specializations": ["API Development"], "careerInformation": { - "currentPosition": { "title": "Embedded Systems Engineer", "company": "Netflix" }, - "pastPositions": [] + "currentPosition": { "title": "Security Engineer", "company": "Snapchat" }, + "pastPositions": [ + { + "title": "Software Developer", + "company": "Netflix", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2027-11-25T13:08:26.974Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304bcb" + } + }, + { + "title": "Machine Learning Engineer", + "company": "Coinbase", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2026-09-17T09:07:19.280Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304bcc" + } + } + ] }, "education": [ { - "institution": "Michigan State University", - "degree": "Doctor of Philosophy (PhD)", - "fieldOfStudy": "Statistics", + "institution": "Georgetown University", + "degree": "Doctor of Dental Medicine (DMD)", + "fieldOfStudy": "Nursing", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2027-04-09T01:00:29.970Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304bcd" + } + }, + { + "institution": "University College London (UCL)", + "degree": "Bachelor of Technology (BTech)", + "fieldOfStudy": "Film Studies", "startDate": { - "$date": "2024-06-14T21:55:22.546Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2028-02-21T12:30:37.648Z" + "$date": "2025-11-10T11:28:20.511Z" }, "_id": { - "$oid": "666cbc4a40af7b375e352f9d" + "$oid": "66723dae8f368f285d304bce" } } ], "projects": [ { - "name": "EventPlanner", - "description": "Event management and planning software for organizing and coordinating events.", - "link": "https://github.com/username/eventplanner", + "name": "CodeBot", + "description": "Automated code generation tool using AI for faster development cycles.", + "link": "https://github.com/username/codebot", "_id": { - "$oid": "666cbc4a40af7b375e352f9e" + "$oid": "66723dae8f368f285d304bcf" } }, { - "name": "GenomeQuest", - "description": "Genomic data analysis tool for researchers and bioinformaticians.", - "link": "https://github.com/username/genomequest", + "name": "TravelGuide", + "description": "Interactive travel guide application providing travel tips and destination insights.", + "link": "https://github.com/username/travelguide", "_id": { - "$oid": "666cbc4a40af7b375e352f9f" + "$oid": "66723dae8f368f285d304bd0" } }, { - "name": "VirtualMarket", - "description": "Virtual reality shopping experience allowing users to browse and buy products online.", - "link": "https://github.com/username/virtualmarket", + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", "_id": { - "$oid": "666cbc4a40af7b375e352fa0" + "$oid": "66723dae8f368f285d304bd1" } - } - ], - "personalBio": "Advocate for diversity and inclusion in the tech industry, fostering a welcoming and supportive workplace culture.", - "testimonials": [ + }, { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "name": "LearnHub", + "description": "Online learning platform offering courses on various subjects with interactive content.", + "link": "https://github.com/username/learnhub", "_id": { - "$oid": "666cbc4a40af7b375e352fa1" + "$oid": "66723dae8f368f285d304bd2" } - }, + } + ], + "personalBio": "Dedicated to upholding best practices in software engineering, including testing, code reviews, and version control.", + "testimonials": [ { - "from": "Sophia Martinez", - "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", "_id": { - "$oid": "666cbc4a40af7b375e352fa2" + "$oid": "66723dae8f368f285d304bd3" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", "_id": { - "$oid": "666cbc4a40af7b375e352fa3" + "$oid": "66723dae8f368f285d304bd4" } }, { - "from": "Isabella Clark", - "relation": "HR Manager at TechFusion", - "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", "_id": { - "$oid": "666cbc4a40af7b375e352fa4" + "$oid": "66723dae8f368f285d304bd5" } }, { @@ -826,377 +813,288 @@ "relation": "Product Owner at AgileSoft", "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "666cbc4a40af7b375e352fa5" + "$oid": "66723dae8f368f285d304bd6" } } ], - "socialMediaLinks": { "twitter": "https://x.com/Winifred-Carnelley-fake", "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "General Assembly", + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "App Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e352f9c" + "$oid": "66723dae8f368f285d304bca" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352e91" + "$oid": "66723da68f368f285d304ace" }, - "firstName": "Marchelle", - "lastName": "Truin", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "WCRI 52", + "firstName": "Corine", + "lastName": "Tugwell", + "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "cohort": "WCRI 62", "graduationYear": 2024, - "email": "mtruin4@stumbleupon.com", - "linkedInProfile": "https://www.linkedin.com/in/Marchelle-Truin-fake", + "email": "ctugwell0@ovh.net", + "linkedInProfile": "https://www.linkedin.com/in/Corine-Tugwell-fake", "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", "skills": [ - "Edge Computing", + "Critical Thinking", + "JavaScript", "ETL (Extract, Transform, Load)", - "C++", "Google Cloud Platform", + "Scrum", + "Collaboration", + "SaaS (Software as a Service)", + "CSS", "FaaS (Function as a Service)", - "Time Management", - "Quantum Computing", - "Python", - "C#", - "Technical Writing" + "Flask", + "Laravel", + "Java", + "Docker", + "Microservices", + "Database Design", + "Refactoring" ], - "specializations": ["WebSockets", "Flask"], + "specializations": ["Natural Language Processing"], "careerInformation": { - "currentPosition": { "title": "Software Architect", "company": "Atlassian" }, + "currentPosition": { "title": "Principal Software Engineer", "company": "IBM" }, "pastPositions": [ { - "title": "Machine Learning Engineer", - "company": "Microsoft", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-02-06T08:54:17.977Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fa7" - } - }, - { - "title": "Security Engineer", - "company": "Tesla", + "title": "Software Architect", + "company": "IBM", "startDate": { - "$date": "2024-06-14T21:55:22.546Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-12-27T08:12:53.131Z" + "$date": "2026-09-12T17:12:26.563Z" }, "_id": { - "$oid": "666cbc4a40af7b375e352fa8" + "$oid": "66723dae8f368f285d304bd8" } }, { - "title": "Frontend Developer", - "company": "Tesla", + "title": "Android Developer", + "company": "Dropbox", "startDate": { - "$date": "2024-06-14T21:55:22.546Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2026-11-30T11:52:38.982Z" + "$date": "2024-12-15T01:52:43.225Z" }, "_id": { - "$oid": "666cbc4a40af7b375e352fa9" + "$oid": "66723dae8f368f285d304bd9" } }, { - "title": "Technical Program Manager", - "company": "Apple", + "title": "Security Engineer", + "company": "LinkedIn", "startDate": { - "$date": "2024-06-14T21:55:22.546Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-05-07T20:40:39.718Z" + "$date": "2026-09-27T06:56:31.173Z" }, "_id": { - "$oid": "666cbc4a40af7b375e352faa" + "$oid": "66723dae8f368f285d304bda" } } ] }, "education": [ { - "institution": "Georgia Institute of Technology", - "degree": "Master of Social Work (MSW)", - "fieldOfStudy": "Economics", + "institution": "University of South Carolina", + "degree": "Bachelor of Science (BS)", + "fieldOfStudy": "International Relations", "startDate": { - "$date": "2024-06-14T21:55:22.546Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2024-08-25T00:18:12.934Z" + "$date": "2027-10-23T23:37:01.570Z" }, "_id": { - "$oid": "666cbc4a40af7b375e352fab" + "$oid": "66723dae8f368f285d304bdb" } } ], "projects": [ { - "name": "CryptoTrack", - "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", - "link": "https://github.com/username/cryptotrack", + "name": "MediCare", + "description": "Medical appointment scheduling and patient management system for healthcare providers.", + "link": "https://github.com/username/medicare", "_id": { - "$oid": "666cbc4a40af7b375e352fac" + "$oid": "66723dae8f368f285d304bdc" } }, { - "name": "VirtualTour", - "description": "Virtual reality tour application for immersive travel experiences.", - "link": "https://github.com/username/virtualtour", + "name": "CryptoTrack", + "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", + "link": "https://github.com/username/cryptotrack", "_id": { - "$oid": "666cbc4a40af7b375e352fad" - } - }, - { - "name": "CryptoWallet", - "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", - "link": "https://github.com/username/cryptowallet", - "_id": { - "$oid": "666cbc4a40af7b375e352fae" - } - }, - { - "name": "SmartFarm", - "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", - "link": "https://github.com/username/smartfarm", - "_id": { - "$oid": "666cbc4a40af7b375e352faf" + "$oid": "66723dae8f368f285d304bdd" } } ], - "personalBio": "Experienced in international collaboration and remote work, with a strong appreciation for cultural diversity.", + "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", "testimonials": [ { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "from": "Ethan Taylor", + "relation": "Co-founder at StartupX", + "text": "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", "_id": { - "$oid": "666cbc4a40af7b375e352fb0" + "$oid": "66723dae8f368f285d304bde" } }, { - "from": "Liam Harris", + "from": "Mia Davis", "relation": "Lead Developer at CloudTech", - "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "666cbc4a40af7b375e352fb1" - } - }, - { - "from": "David Smith", - "relation": "Colleague at InnovateTech Ltd.", - "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", "_id": { - "$oid": "666cbc4a40af7b375e352fb2" + "$oid": "66723dae8f368f285d304bdf" } }, { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", "_id": { - "$oid": "666cbc4a40af7b375e352fb3" + "$oid": "66723dae8f368f285d304be0" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", "_id": { - "$oid": "666cbc4a40af7b375e352fb4" + "$oid": "66723dae8f368f285d304be1" } } ], - "socialMediaLinks": { "other": ["https://www.instagram.com/Marchelle-Truin-fake"] }, - "availabilityForNetworking": true, - "bootcampExperience": "CareerFoundry", + "socialMediaLinks": { "twitter": "https://x.com/Corine-Tugwell-fake", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Le Wagon", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e352fa6" + "$oid": "66723dae8f368f285d304bd7" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352e92" + "$oid": "66723da68f368f285d304acf" }, - "firstName": "Cally", - "lastName": "Gisbey", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "PTRI 52", + "firstName": "Brody", + "lastName": "Cumpton", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "LA 94", "graduationYear": 2024, - "email": "cgisbey5@squarespace.com", - "linkedInProfile": "https://www.linkedin.com/in/Cally-Gisbey-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", - "skills": [ - "User Experience (UX) Design", - "Big Data", - "Data Science", - "Graph Theory", - "Unit Testing", - "C#", - "Blockchain", - "PaaS (Platform as a Service)", - "Concurrency", - "Pair Programming", - "WebSockets" - ], + "email": "bcumpton1@bluehost.com", + "linkedInProfile": "https://www.linkedin.com/in/Brody-Cumpton-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": ["FaaS (Function as a Service)", "C++", "Agile Development"], "specializations": [ - "Concurrency", - "Refactoring", "Performance Optimization", - "Microservices", + "Pair Programming", + "Leadership", + "Legacy Code Management", + "Android Development", + "Integration Testing", + "Critical Thinking", + "Cloud Computing", + "AWS", + "Machine Learning", "GraphQL", - "Continuous Deployment", - "Android Development" + "Time Management", + "Scrum", + "ASP.NET", + "BDD (Behavior-Driven Development)" ], "careerInformation": { - "currentPosition": { "title": "QA Engineer", "company": "Dropbox" }, + "currentPosition": { "title": "Mobile Developer", "company": "HubSpot" }, "pastPositions": [ { - "title": "Backend Developer", - "company": "Spotify", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-08-20T14:51:35.112Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fb6" - } - }, - { - "title": "Junior Software Engineer", - "company": "Palantir", + "title": "Embedded Systems Engineer", + "company": "ServiceNow", "startDate": { - "$date": "2024-06-14T21:55:22.546Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-07-28T09:04:52.640Z" + "$date": "2025-04-18T00:59:24.882Z" }, "_id": { - "$oid": "666cbc4a40af7b375e352fb7" + "$oid": "66723dae8f368f285d304be3" } }, { - "title": "Android Developer", - "company": "Activision Blizzard", + "title": "Technical Program Manager", + "company": "Twilio", "startDate": { - "$date": "2024-06-14T21:55:22.546Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2026-12-08T11:19:45.231Z" + "$date": "2027-09-05T14:06:42.146Z" }, "_id": { - "$oid": "666cbc4a40af7b375e352fb8" + "$oid": "66723dae8f368f285d304be4" } } ] }, "education": [ { - "institution": "University of Delaware", - "degree": "Associate Degree", + "institution": "University of Virginia", + "degree": "Master of Education (MEd)", "fieldOfStudy": "Electrical Engineering", "startDate": { - "$date": "2024-06-14T21:55:22.546Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-06-11T07:24:48.237Z" + "$date": "2028-05-17T05:36:09.767Z" }, "_id": { - "$oid": "666cbc4a40af7b375e352fb9" + "$oid": "66723dae8f368f285d304be5" } }, { - "institution": "University of Massachusetts Amherst", - "degree": "High School Diploma", - "fieldOfStudy": "Pharmacy", + "institution": "University of Missouri", + "degree": "Associate Degree", + "fieldOfStudy": "Electrical Engineering", "startDate": { - "$date": "2024-06-14T21:55:22.546Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2028-02-14T11:37:23.190Z" + "$date": "2025-05-19T11:54:01.609Z" }, "_id": { - "$oid": "666cbc4a40af7b375e352fba" - } - } - ], - "projects": [ - { - "name": "RoboTrader", - "description": "Algorithmic trading platform for automated stock market analysis and trading.", - "link": "https://github.com/username/robotrader", - "_id": { - "$oid": "666cbc4a40af7b375e352fbb" - } - }, - { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", - "_id": { - "$oid": "666cbc4a40af7b375e352fbc" - } - }, - { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", - "_id": { - "$oid": "666cbc4a40af7b375e352fbd" - } - }, - { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", - "_id": { - "$oid": "666cbc4a40af7b375e352fbe" + "$oid": "66723dae8f368f285d304be6" } } ], - "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", + "projects": [], + "personalBio": "Experienced in deploying and maintaining applications on cloud platforms like AWS and Azure.", "testimonials": [ { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "666cbc4a40af7b375e352fbf" - } - }, - { - "from": "Ava Miller", + "from": "Lucas Miller", "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", "_id": { - "$oid": "666cbc4a40af7b375e352fc0" + "$oid": "66723dae8f368f285d304be7" } }, { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "666cbc4a40af7b375e352fc1" + "$oid": "66723dae8f368f285d304be8" } }, { @@ -1204,5763 +1102,805 @@ "relation": "Product Owner at AgileSoft", "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "666cbc4a40af7b375e352fc2" + "$oid": "66723dae8f368f285d304be9" } }, { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "_id": { + "$oid": "66723dae8f368f285d304bea" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e352fc3" + "$oid": "66723dae8f368f285d304beb" } } ], - "socialMediaLinks": { "other": ["https://www.instagram.com/Cally-Gisbey-fake"] }, - "availabilityForNetworking": false, - "bootcampExperience": "The Tech Academy", + "socialMediaLinks": { + "twitter": "https://x.com/Brody-Cumpton-fake", + "other": ["https://www.instagram.com/Brody-Cumpton-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "App Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e352fb5" + "$oid": "66723dae8f368f285d304be2" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352e93" + "$oid": "66723da68f368f285d304ad0" }, - "firstName": "Arlina", - "lastName": "Moodie", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "PTRI 6", - "graduationYear": 2024, - "email": "amoodie6@twitpic.com", - "linkedInProfile": "https://www.linkedin.com/in/Arlina-Moodie-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", - "skills": [ - "Agile Development", - "Graph Databases", - "Leadership", - "Critical Thinking", - "Spring Boot", - "ETL (Extract, Transform, Load)", - "Git", - "System Design", - "Pair Programming", - "Cloud Computing", - "Microservices", - "Python", - "Unit Testing", - "React", - "GraphQL", - "Data Warehousing", - "Android Development" - ], - "specializations": ["Graph Theory", "Robotic Process Automation", "Azure", "Cloud Computing"], - "careerInformation": { - "currentPosition": { "title": "Data Scientist", "company": "Robinhood" }, - "pastPositions": [] + "firstName": "Moselle", + "lastName": "Duro", + "cohort": "ECRI 91", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304bec" }, - "education": [ - { - "institution": "University of Washington", - "degree": "Professional Development", - "fieldOfStudy": "Marketing", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-02-12T03:56:22.462Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fc5" - } - }, - { - "institution": "Purdue University", - "degree": "Master of Technology (MTech)", - "fieldOfStudy": "Fine Arts", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-07-11T03:04:52.523Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fc6" - } - }, - { - "institution": "University of California, Berkeley", - "degree": "Master of Arts (MA)", - "fieldOfStudy": "Fine Arts", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-08-05T08:51:14.991Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fc7" - } - }, - { - "institution": "Michigan State University", - "degree": "High School Diploma", - "fieldOfStudy": "Management", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-02-12T06:42:36.863Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fc8" - } - } - ], - "projects": [ - { - "name": "CloudStorage", - "description": "Cloud storage service with file synchronization and sharing capabilities.", - "link": "https://github.com/username/cloudstorage", - "_id": { - "$oid": "666cbc4a40af7b375e352fc9" - } - }, - { - "name": "HealthLink", - "description": "Telemedicine platform connecting patients with healthcare providers remotely.", - "link": "https://github.com/username/healthlink", - "_id": { - "$oid": "666cbc4a40af7b375e352fca" - } - } - ], - "personalBio": "Detail-oriented developer with a strong foundation in algorithms and data structures.", - "testimonials": [ - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "666cbc4a40af7b375e352fcb" - } - }, - { - "from": "Sophia Martinez", - "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", - "_id": { - "$oid": "666cbc4a40af7b375e352fcc" - } - }, - { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", - "_id": { - "$oid": "666cbc4a40af7b375e352fcd" - } - }, - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "666cbc4a40af7b375e352fce" - } - }, - { - "from": "Olivia White", - "relation": "Tech Lead at Cloud Innovations", - "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", - "_id": { - "$oid": "666cbc4a40af7b375e352fcf" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Arlina-Moodie-fake", - "other": ["https://www.instagram.com/Arlina-Moodie-fake"] + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304ad1" }, - "availabilityForNetworking": false, - "bootcampExperience": "Tech Elevator", + "firstName": "Winifred", + "lastName": "Carnelley", + "cohort": "LA 54", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e352fc4" + "$oid": "66723dae8f368f285d304bed" }, + "education": [], + "projects": [], + "testimonials": [], "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352e94" - }, - "firstName": "Phineas", - "lastName": "Coon", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "LA 33", - "graduationYear": 2024, - "email": "pcoon7@hc360.com", - "linkedInProfile": "https://www.linkedin.com/in/Phineas-Coon-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": [ - "Angular", - "Spring Boot", - "System Design", - "PaaS (Platform as a Service)", - "DevOps", - "Data Visualization", - "Robotic Process Automation", - "Machine Learning", - "Project Management", - "Google Cloud Platform", - "Natural Language Processing", - "FaaS (Function as a Service)" - ], - "specializations": [ - "Parallel Computing", - "Containerization", - "Functional Programming", - "Microservices", - "PaaS (Platform as a Service)", - "Big Data", - "RESTful APIs", - "Problem-Solving", - "Design Patterns", - "Legacy Code Management", - "Time Management", - "NoSQL", - "Angular", - "GraphQL", - "Software Architecture", - "iOS Development" - ], - "careerInformation": { - "currentPosition": { "title": "Principal Software Engineer", "company": "Stripe" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "Emory University", - "degree": "Master of Arts (MA)", - "fieldOfStudy": "Mechanical Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2028-02-26T07:11:36.400Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fd1" - } - }, - { - "institution": "Nanyang Technological University (NTU)", - "degree": "Doctoral Degree", - "fieldOfStudy": "Medicine", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-03-17T00:33:58.940Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fd2" - } - } - ], - "projects": [], - "personalBio": "Skilled in UX/UI design principles, with a focus on creating intuitive and visually appealing interfaces.", - "testimonials": [ - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", - "_id": { - "$oid": "666cbc4a40af7b375e352fd3" - } - }, - { - "from": "Sophie Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "666cbc4a40af7b375e352fd4" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Phineas-Coon-fake", - "blog": "https://www.Phineas-Coon-fake-blog.com", - "other": ["https://www.instagram.com/Phineas-Coon-fake"] + "$oid": "66723da68f368f285d304ad2" }, - "availabilityForNetworking": true, - "bootcampExperience": "Fullstack Academy", + "firstName": "Marchelle", + "lastName": "Truin", + "cohort": "CTRI 6", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e352fd0" + "$oid": "66723dae8f368f285d304bee" }, + "education": [], + "projects": [], + "testimonials": [], "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352e95" + "$oid": "66723da68f368f285d304ad3" }, - "firstName": "Shurlock", - "lastName": "Tytcomb", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "ECRI 63", - "graduationYear": 2024, - "email": "stytcomb8@google.it", - "linkedInProfile": "https://www.linkedin.com/in/Shurlock-Tytcomb-fake", - "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", - "skills": [ - "Vue.js", - "PaaS (Platform as a Service)", - "Version Control", - "Continuous Deployment", - "Machine Learning", - "TDD (Test-Driven Development)", - "GraphQL", - "Database Design", - "WebSockets", - "Azure", - "API Development", - "Reactive Programming", - "Laravel", - "Cloud Computing", - "Code Review" - ], - "specializations": [ - "Time Management", - "Integration Testing", - "Cloud Computing", - "TDD (Test-Driven Development)", - "Reactive Programming", - "Node.js", - "Concurrency", - "Pair Programming", - "SaaS (Software as a Service)", - "NoSQL", - "Code Review" - ], - "careerInformation": { - "currentPosition": { "title": "DevOps Engineer", "company": "Spotify" }, - "pastPositions": [ - { - "title": "Product Manager", - "company": "Intel", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-02-03T06:45:57.268Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fd6" - } - }, - { - "title": "AI Engineer", - "company": "Microsoft", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2024-10-27T14:21:08.971Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fd7" - } - }, - { - "title": "Android Developer", - "company": "Google", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2024-10-22T16:50:17.004Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fd8" - } - } - ] + "firstName": "Cally", + "lastName": "Gisbey", + "cohort": "NYC 36", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304bef" }, - "education": [ - { - "institution": "University of South Carolina", - "degree": "Executive Education", - "fieldOfStudy": "International Relations", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2028-05-24T14:50:07.727Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fd9" - } - }, - { - "institution": "University of Southern California", - "degree": "Juris Doctor (JD)", - "fieldOfStudy": "Theater", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-01-07T09:49:58.144Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fda" - } - }, - { - "institution": "University of Georgia", - "degree": "Master of Business Administration (MBA)", - "fieldOfStudy": "Statistics", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-08-22T14:32:19.663Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fdb" - } - }, - { - "institution": "Case Western Reserve University", - "degree": "Master's Degree", - "fieldOfStudy": "Communication Studies", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2024-12-30T02:21:26.389Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fdc" - } - } - ], - "projects": [ - { - "name": "SmartHomeHub", - "description": "Centralized home automation system integrating IoT devices for smart living.", - "link": "https://github.com/username/smarthomehub", - "_id": { - "$oid": "666cbc4a40af7b375e352fdd" - } - }, - { - "name": "AIChatbot", - "description": "AI-powered chatbot for customer support and interactive communication.", - "link": "https://github.com/username/aichatbot", - "_id": { - "$oid": "666cbc4a40af7b375e352fde" - } - }, - { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", - "_id": { - "$oid": "666cbc4a40af7b375e352fdf" - } - }, - { - "name": "HealthLink", - "description": "Telemedicine platform connecting patients with healthcare providers remotely.", - "link": "https://github.com/username/healthlink", - "_id": { - "$oid": "666cbc4a40af7b375e352fe0" - } - }, - { - "name": "SmartHomeHub", - "description": "Centralized home automation system integrating IoT devices for smart living.", - "link": "https://github.com/username/smarthomehub", - "_id": { - "$oid": "666cbc4a40af7b375e352fe1" - } - } - ], - "personalBio": "Passionate about building inclusive and accessible software that improves people's lives.", - "testimonials": [], - "socialMediaLinks": { - "blog": "https://www.Shurlock-Tytcomb-fake-blog.com", - "other": ["https://www.instagram.com/Shurlock-Tytcomb-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Flatiron School", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e352fd5" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352e96" - }, - "firstName": "Ermina", - "lastName": "Guyton", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "CTRI 94", - "graduationYear": 2024, - "email": "eguyton9@blog.com", - "linkedInProfile": "https://www.linkedin.com/in/Ermina-Guyton-fake", - "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", - "skills": [ - "Blockchain", - "Quantum Computing", - "Algorithm Design", - "TDD (Test-Driven Development)", - "NoSQL", - "Concurrency", - "ASP.NET", - "Parallel Computing", - "Docker", - "Python", - "DevOps", - "ETL (Extract, Transform, Load)", - "System Design", - "iOS Development" - ], - "specializations": [ - "User Interface (UI) Design", - "Graph Theory", - "Communication Skills", - "React", - "Project Management", - "Data Visualization", - "API Integration", - "Concurrency", - "Machine Learning", - "GraphQL", - "AR/VR (Augmented/Virtual Reality)", - "Deep Learning", - "Continuous Deployment", - "Android Development", - "Ruby", - "User Experience (UX) Design" - ], - "careerInformation": { - "currentPosition": { "title": "Test Engineer", "company": "Shopify" }, - "pastPositions": [ - { - "title": "Android Developer", - "company": "Shopify", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-12-27T20:30:58.268Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fe3" - } - }, - { - "title": "Junior Software Engineer", - "company": "Salesforce", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2028-05-13T22:20:36.572Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fe4" - } - } - ] - }, - "education": [ - { - "institution": "University of Colorado Boulder", - "degree": "Doctor of Pharmacy (PharmD)", - "fieldOfStudy": "Economics", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-07-15T11:41:08.521Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fe5" - } - }, - { - "institution": "University of Queensland", - "degree": "Doctor of Pharmacy (PharmD)", - "fieldOfStudy": "Aerospace Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-08-20T16:22:00.124Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fe6" - } - } - ], - "projects": [ - { - "name": "LearnHub", - "description": "Online learning platform offering courses on various subjects with interactive content.", - "link": "https://github.com/username/learnhub", - "_id": { - "$oid": "666cbc4a40af7b375e352fe7" - } - }, - { - "name": "SmartLearning", - "description": "AI-driven personalized learning platform with adaptive learning algorithms.", - "link": "https://github.com/username/smartlearning", - "_id": { - "$oid": "666cbc4a40af7b375e352fe8" - } - }, - { - "name": "NetPlanner", - "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", - "link": "https://github.com/username/netplanner", - "_id": { - "$oid": "666cbc4a40af7b375e352fe9" - } - } - ], - "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", - "testimonials": [ - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "666cbc4a40af7b375e352fea" - } - }, - { - "from": "Isabella Clark", - "relation": "HR Manager at TechFusion", - "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", - "_id": { - "$oid": "666cbc4a40af7b375e352feb" - } - } - ], - "socialMediaLinks": { "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "Galvanize", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e352fe2" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352e97" - }, - "firstName": "Shelton", - "lastName": "Halwood", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "FTRI 66", - "graduationYear": 2024, - "email": "shalwooda@sciencedirect.com", - "linkedInProfile": "https://www.linkedin.com/in/Shelton-Halwood-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", - "skills": ["Ruby", "JavaScript", "Laravel"], - "specializations": [ - "CI/CD", - "Project Management", - "Java", - "Git", - "Django", - "Unit Testing", - "WebSockets", - "Machine Learning", - "DevOps", - "Ruby", - "Blockchain", - "JavaScript", - "Natural Language Processing", - "Communication Skills", - "Python", - "Software Architecture", - "Android Development" - ], - "careerInformation": { - "currentPosition": { "title": "Lead Software Engineer", "company": "Red Hat" }, - "pastPositions": [ - { - "title": "Site Reliability Engineer", - "company": "Workday", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2024-11-11T01:17:04.188Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fed" - } - }, - { - "title": "DevOps Engineer", - "company": "Workday", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2024-11-08T12:21:47.299Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fee" - } - }, - { - "title": "Backend Developer", - "company": "Amazon", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2028-04-20T13:14:26.334Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fef" - } - } - ] - }, - "education": [ - { - "institution": "Tsinghua University", - "degree": "Doctor of Philosophy (PhD)", - "fieldOfStudy": "Political Science", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2024-11-10T19:29:34.935Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352ff0" - } - }, - { - "institution": "University of Tennessee", - "degree": "Doctor of Education (EdD)", - "fieldOfStudy": "Dentistry", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2028-01-04T11:14:50.306Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352ff1" - } - }, - { - "institution": "Nanyang Technological University (NTU)", - "degree": "Doctor of Dental Medicine (DMD)", - "fieldOfStudy": "Chemical Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-11-18T18:19:13.601Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352ff2" - } - }, - { - "institution": "University of Illinois at Urbana-Champaign", - "degree": "Executive Education", - "fieldOfStudy": "Nursing", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2028-03-18T02:02:35.100Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352ff3" - } - } - ], - "projects": [ - { - "name": "MediCare", - "description": "Medical appointment scheduling and patient management system for healthcare providers.", - "link": "https://github.com/username/medicare", - "_id": { - "$oid": "666cbc4a40af7b375e352ff4" - } - }, - { - "name": "EcoTech", - "description": "Environmental monitoring and conservation app with real-time data visualization.", - "link": "https://github.com/username/ecotech", - "_id": { - "$oid": "666cbc4a40af7b375e352ff5" - } - }, - { - "name": "AugmentWorks", - "description": "Augmented reality application for enhancing workplace productivity and training.", - "link": "https://github.com/username/augmentworks", - "_id": { - "$oid": "666cbc4a40af7b375e352ff6" - } - } - ], - "personalBio": "Skilled in working with cross-functional teams to deliver innovative software solutions that exceed expectations.", - "testimonials": [ - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "666cbc4a40af7b375e352ff7" - } - }, - { - "from": "Sophia Martinez", - "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", - "_id": { - "$oid": "666cbc4a40af7b375e352ff8" - } - } - ], - "socialMediaLinks": { "other": ["https://www.instagram.com/Shelton-Halwood-fake"] }, - "availabilityForNetworking": false, - "bootcampExperience": "Springboard", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e352fec" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352e98" - }, - "firstName": "Nigel", - "lastName": "Clemenzo", - "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "cohort": "LA 45", - "graduationYear": 2024, - "email": "nclemenzob@fotki.com", - "linkedInProfile": "https://www.linkedin.com/in/Nigel-Clemenzo-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": [ - "API Integration", - "Critical Thinking", - "Data Warehousing", - "Time Management", - "Reactive Programming", - "Angular", - "Infrastructure as Code", - "Event-Driven Architecture", - "Integration Testing", - "Communication Skills", - "Collaboration", - "Edge Computing", - "Vue.js" - ], - "specializations": [ - "Communication Skills", - "Python", - "Node.js", - "Vue.js", - "Google Cloud Platform", - "C#", - "Agile Development", - "Mobile Development", - "Microservices", - "Version Control", - "FaaS (Function as a Service)", - "Serverless Architecture", - "Data Science", - "Project Management" - ], - "careerInformation": { - "currentPosition": { "title": "Android Developer", "company": "Slack" }, - "pastPositions": [ - { - "title": "iOS Developer", - "company": "Lyft", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-02-13T18:26:22.261Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352ffa" - } - }, - { - "title": "Backend Developer", - "company": "Coinbase", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-03-21T20:05:07.281Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352ffb" - } - }, - { - "title": "Automation Engineer", - "company": "Tesla", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-01-09T18:10:45.543Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352ffc" - } - }, - { - "title": "Junior Software Engineer", - "company": "NVIDIA", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-03-17T05:02:46.280Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352ffd" - } - }, - { - "title": "Machine Learning Engineer", - "company": "Twitter", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-05-20T16:54:33.286Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352ffe" - } - } - ] - }, - "education": [ - { - "institution": "Georgetown University", - "degree": "High School Diploma", - "fieldOfStudy": "Mathematics", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-05-28T05:45:06.904Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e352fff" - } - } - ], - "projects": [ - { - "name": "DataCrunch", - "description": "Real-time data analytics platform for extracting insights from big data.", - "link": "https://github.com/username/datacrunch", - "_id": { - "$oid": "666cbc4a40af7b375e353000" - } - }, - { - "name": "CodeBot", - "description": "Automated code generation tool using AI for faster development cycles.", - "link": "https://github.com/username/codebot", - "_id": { - "$oid": "666cbc4a40af7b375e353001" - } - }, - { - "name": "SmartWatch", - "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", - "link": "https://github.com/username/smartwatch", - "_id": { - "$oid": "666cbc4a40af7b375e353002" - } - }, - { - "name": "SmartGrid", - "description": "Smart grid technology for efficient energy distribution and consumption.", - "link": "https://github.com/username/smartgrid", - "_id": { - "$oid": "666cbc4a40af7b375e353003" - } - }, - { - "name": "SmartCarPark", - "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", - "link": "https://github.com/username/smartcarpark", - "_id": { - "$oid": "666cbc4a40af7b375e353004" - } - } - ], - "personalBio": "Devoted to fostering a collaborative team environment and mentoring junior developers.", - "testimonials": [ - { - "from": "Noah Rodriguez", - "relation": "Product Owner at AgileSoft", - "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", - "_id": { - "$oid": "666cbc4a40af7b375e353005" - } - }, - { - "from": "Aiden Walker", - "relation": "CTO at Innovate Solutions", - "text": "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", - "_id": { - "$oid": "666cbc4a40af7b375e353006" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "666cbc4a40af7b375e353007" - } - }, - { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", - "_id": { - "$oid": "666cbc4a40af7b375e353008" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Nigel-Clemenzo-fake", - "other": ["https://www.instagram.com/Nigel-Clemenzo-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Thinkful", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e352ff9" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352e99" - }, - "firstName": "Colver", - "lastName": "Oswell", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "NYC 11", - "graduationYear": 2024, - "email": "coswellc@wsj.com", - "linkedInProfile": "https://www.linkedin.com/in/Colver-Oswell-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": [ - "API Integration", - "ETL (Extract, Transform, Load)", - "User Experience (UX) Design", - "Ruby", - "Pair Programming", - "Design Patterns", - "Quantum Computing", - "TDD (Test-Driven Development)", - "Continuous Deployment", - "Integration Testing", - "iOS Development", - "Big Data", - "C++", - "Microservices", - "Deep Learning" - ], - "specializations": [ - "Scrum", - "Node.js", - "Python", - "WebSockets", - "CI/CD", - "Legacy Code Management", - "Software Architecture", - "Google Cloud Platform", - "Containerization", - "BDD (Behavior-Driven Development)", - "Django", - "Spring Boot", - "Natural Language Processing", - "Flask" - ], - "careerInformation": { - "currentPosition": { "title": "Full Stack Developer", "company": "Salesforce" }, - "pastPositions": [ - { - "title": "Data Scientist", - "company": "Airbnb", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-10-30T14:44:10.116Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35300a" - } - }, - { - "title": "Lead Software Engineer", - "company": "Red Hat", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-03-09T15:40:11.726Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35300b" - } - }, - { - "title": "Embedded Systems Engineer", - "company": "Microsoft", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2028-02-06T13:58:41.417Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35300c" - } - }, - { - "title": "Junior Software Engineer", - "company": "Stripe", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2028-04-06T03:33:59.263Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35300d" - } - }, - { - "title": "Principal Software Engineer", - "company": "Coinbase", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2024-11-05T13:05:15.556Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35300e" - } - } - ] - }, - "education": [ - { - "institution": "Georgetown University", - "degree": "Master of Business Administration (MBA)", - "fieldOfStudy": "Urban Planning", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-11-25T14:31:22.978Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35300f" - } - }, - { - "institution": "Rutgers University", - "degree": "Diploma Program", - "fieldOfStudy": "Business Administration", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-04-30T09:36:21.880Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353010" - } - }, - { - "institution": "University of Oklahoma", - "degree": "Master of Education (MEd)", - "fieldOfStudy": "Dentistry", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-12-27T13:25:03.334Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353011" - } - }, - { - "institution": "McGill University", - "degree": "Master of Arts (MA)", - "fieldOfStudy": "Psychology", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-10-26T14:28:20.764Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353012" - } - } - ], - "projects": [], - "personalBio": "Adaptable problem solver who thrives in dynamic, fast-paced environments.", - "testimonials": [], - "socialMediaLinks": { - "blog": "https://www.Colver-Oswell-fake-blog.com", - "other": ["https://www.instagram.com/Colver-Oswell-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Fullstack Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e353009" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352e9a" - }, - "firstName": "Saundra", - "lastName": "Normabell", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "FTRI 66", - "graduationYear": 2024, - "email": "snormabelld@businessinsider.com", - "linkedInProfile": "https://www.linkedin.com/in/Saundra-Normabell-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": [ - "Machine Learning", - "Laravel", - "CI/CD", - "C#", - "FaaS (Function as a Service)", - "IoT (Internet of Things)", - "System Design", - "Technical Writing" - ], - "specializations": [ - "Spring Boot", - "NoSQL", - "Concurrency", - "Integration Testing", - "Natural Language Processing", - "Infrastructure as Code", - "Serverless Architecture", - "Cloud Computing", - "WebSockets", - "DevOps", - "Angular", - "Azure", - "AR/VR (Augmented/Virtual Reality)", - "Git", - "TDD (Test-Driven Development)" - ], - "careerInformation": { - "currentPosition": { "title": "Automation Engineer", "company": "PayPal" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "University of Wisconsin-Madison", - "degree": "Master of Technology (MTech)", - "fieldOfStudy": "Statistics", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-05-18T08:55:30.961Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353014" - } - } - ], - "projects": [ - { - "name": "RoboVision", - "description": "AI-powered computer vision system for object detection and recognition.", - "link": "https://github.com/username/robovision", - "_id": { - "$oid": "666cbc4a40af7b375e353015" - } - }, - { - "name": "FoodDelivery", - "description": "Online food delivery platform connecting restaurants with customers for food ordering.", - "link": "https://github.com/username/fooddelivery", - "_id": { - "$oid": "666cbc4a40af7b375e353016" - } - } - ], - "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", - "testimonials": [ - { - "from": "Liam Harris", - "relation": "Lead Developer at CloudTech", - "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "666cbc4a40af7b375e353017" - } - }, - { - "from": "David Smith", - "relation": "Colleague at InnovateTech Ltd.", - "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", - "_id": { - "$oid": "666cbc4a40af7b375e353018" - } - } - ], - "socialMediaLinks": { "blog": "https://www.Saundra-Normabell-fake-blog.com", "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "DevMountain", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e353013" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352e9b" - }, - "firstName": "Grant", - "lastName": "Chasney", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "CTRI 95", - "graduationYear": 2024, - "email": "gchasneye@mediafire.com", - "linkedInProfile": "https://www.linkedin.com/in/Grant-Chasney-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", - "skills": [ - "Pair Programming", - "Quantum Computing", - "GraphQL", - "HTML", - "Ruby", - "Agile Development", - "Django", - "Integration Testing", - "ETL (Extract, Transform, Load)", - "Data Science", - "Data Visualization", - "Natural Language Processing", - "Algorithm Design", - "Functional Programming", - "C++", - "C#" - ], - "specializations": [ - "System Design", - "Version Control", - "Ruby", - "Technical Writing", - "Serverless Architecture", - "API Integration", - "Graph Theory", - "Algorithm Design" - ], - "careerInformation": { - "currentPosition": { "title": "iOS Developer", "company": "Amazon" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "Princeton University", - "degree": "Master of Education (MEd)", - "fieldOfStudy": "Aerospace Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-12-16T08:19:34.970Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35301a" - } - }, - { - "institution": "Rice University", - "degree": "Doctor of Medicine (MD)", - "fieldOfStudy": "Mathematics", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-01-27T19:52:49.941Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35301b" - } - }, - { - "institution": "McGill University", - "degree": "Professional Development", - "fieldOfStudy": "International Relations", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-02-07T15:31:40.557Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35301c" - } - }, - { - "institution": "University of Tokyo", - "degree": "Doctor of Philosophy (PhD)", - "fieldOfStudy": "Biology", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-02-18T08:04:18.334Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35301d" - } - } - ], - "projects": [ - { - "name": "CloudGuard", - "description": "Advanced cloud security suite ensuring data protection and compliance.", - "link": "https://github.com/username/cloudguard", - "_id": { - "$oid": "666cbc4a40af7b375e35301e" - } - }, - { - "name": "SmartHomeHub", - "description": "Centralized home automation system integrating IoT devices for smart living.", - "link": "https://github.com/username/smarthomehub", - "_id": { - "$oid": "666cbc4a40af7b375e35301f" - } - }, - { - "name": "CloudGuard", - "description": "Advanced cloud security suite ensuring data protection and compliance.", - "link": "https://github.com/username/cloudguard", - "_id": { - "$oid": "666cbc4a40af7b375e353020" - } - }, - { - "name": "SmartHomeHub", - "description": "Centralized home automation system integrating IoT devices for smart living.", - "link": "https://github.com/username/smarthomehub", - "_id": { - "$oid": "666cbc4a40af7b375e353021" - } - }, - { - "name": "EduTech", - "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", - "link": "https://github.com/username/edutech", - "_id": { - "$oid": "666cbc4a40af7b375e353022" - } - } - ], - "personalBio": "Skilled in UX/UI design principles, with a focus on creating intuitive and visually appealing interfaces.", - "testimonials": [], - "socialMediaLinks": { "blog": "https://www.Grant-Chasney-fake-blog.com", "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "Fullstack Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e353019" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352e9c" - }, - "firstName": "Franni", - "lastName": "Chance", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "NYC 90", - "graduationYear": 2024, - "email": "fchancef@ted.com", - "linkedInProfile": "https://www.linkedin.com/in/Franni-Chance-fake", - "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", - "skills": [ - "Git", - "Code Review", - "Flask", - "Containerization", - "CI/CD", - "NoSQL", - "Node.js", - "Laravel", - "TDD (Test-Driven Development)", - "Docker" - ], - "specializations": [ - "Robotic Process Automation", - "Graph Theory", - "Legacy Code Management", - "User Interface (UI) Design", - "C#", - "Project Management", - "ASP.NET", - "Continuous Deployment" - ], - "careerInformation": { - "currentPosition": { "title": "Mobile Developer", "company": "Robinhood" }, - "pastPositions": [ - { - "title": "Backend Developer", - "company": "Zoom", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-05-09T16:31:19.820Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353024" - } - }, - { - "title": "Data Engineer", - "company": "Spotify", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-04-16T18:21:59.479Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353025" - } - }, - { - "title": "Junior Software Engineer", - "company": "IBM", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-12-20T07:50:36.924Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353026" - } - }, - { - "title": "Software Architect", - "company": "PayPal", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-01-26T13:09:16.839Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353027" - } - } - ] - }, - "education": [ - { - "institution": "Duke University", - "degree": "Trade School Certification", - "fieldOfStudy": "Electrical Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-10-02T03:43:58.037Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353028" - } - }, - { - "institution": "University of South Carolina", - "degree": "Master of Social Work (MSW)", - "fieldOfStudy": "Public Health", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2028-02-12T16:49:52.760Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353029" - } - }, - { - "institution": "University of British Columbia", - "degree": "Professional Development", - "fieldOfStudy": "Computer Science", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-01-19T20:20:00.085Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35302a" - } - }, - { - "institution": "Duke University", - "degree": "Juris Doctor (JD)", - "fieldOfStudy": "Marketing", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-01-30T12:44:46.846Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35302b" - } - } - ], - "projects": [], - "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", - "testimonials": [ - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "666cbc4a40af7b375e35302c" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "666cbc4a40af7b375e35302d" - } - }, - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "666cbc4a40af7b375e35302e" - } - }, - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", - "_id": { - "$oid": "666cbc4a40af7b375e35302f" - } - } - ], - "socialMediaLinks": { - "blog": "https://www.Franni-Chance-fake-blog.com", - "other": ["https://www.instagram.com/Franni-Chance-fake"] - }, - "availabilityForNetworking": false, - "bootcampExperience": "General Assembly", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e353023" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352e9d" - }, - "firstName": "Clarance", - "lastName": "Meecher", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "NYC 29", - "graduationYear": 2024, - "email": "cmeecherg@addthis.com", - "linkedInProfile": "https://www.linkedin.com/in/Clarance-Meecher-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": [ - "Reactive Programming", - "System Design", - "Containerization", - "Code Review", - "Azure", - "Collaboration", - "Design Patterns", - "CSS", - "JavaScript", - "Agile Development", - "Graph Databases", - "Time Management", - "FaaS (Function as a Service)" - ], - "specializations": [ - "Automated Testing", - "Reactive Programming", - "Angular", - "Event-Driven Architecture", - "DevOps", - "Cloud Computing", - "FaaS (Function as a Service)", - "Android Development" - ], - "careerInformation": { - "currentPosition": { "title": "Embedded Systems Engineer", "company": "Robinhood" }, - "pastPositions": [ - { - "title": "Android Developer", - "company": "Atlassian", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-11-06T17:31:56.072Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353031" - } - }, - { - "title": "Security Engineer", - "company": "Amazon", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-07-07T11:32:17.108Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353032" - } - }, - { - "title": "Engineering Manager", - "company": "Amazon", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2028-04-06T19:55:08.493Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353033" - } - }, - { - "title": "Web Developer", - "company": "Red Hat", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-09-05T05:38:29.097Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353034" - } - }, - { - "title": "iOS Developer", - "company": "Shopify", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2024-12-02T02:43:18.235Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353035" - } - } - ] - }, - "education": [ - { - "institution": "University of Missouri", - "degree": "Certificate Program", - "fieldOfStudy": "Environmental Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-07-05T01:40:24.617Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353036" - } - }, - { - "institution": "University of California, Berkeley", - "degree": "Continuing Education", - "fieldOfStudy": "Veterinary Medicine", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-10-09T02:38:50.092Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353037" - } - }, - { - "institution": "Johns Hopkins University", - "degree": "Bachelor of Fine Arts (BFA)", - "fieldOfStudy": "Political Science", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-10-21T02:19:14.482Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353038" - } - } - ], - "projects": [ - { - "name": "SmartInventory", - "description": "Inventory management system with RFID and IoT integration for tracking assets.", - "link": "https://github.com/username/smartinventory", - "_id": { - "$oid": "666cbc4a40af7b375e353039" - } - }, - { - "name": "RecruitmentAI", - "description": "AI-powered recruitment platform for matching candidates with job opportunities.", - "link": "https://github.com/username/recruitmentai", - "_id": { - "$oid": "666cbc4a40af7b375e35303a" - } - }, - { - "name": "MediCare", - "description": "Medical appointment scheduling and patient management system for healthcare providers.", - "link": "https://github.com/username/medicare", - "_id": { - "$oid": "666cbc4a40af7b375e35303b" - } - }, - { - "name": "NetPlanner", - "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", - "link": "https://github.com/username/netplanner", - "_id": { - "$oid": "666cbc4a40af7b375e35303c" - } - }, - { - "name": "TourismApp", - "description": "Mobile application for tourists providing travel guides and local recommendations.", - "link": "https://github.com/username/tourismapp", - "_id": { - "$oid": "666cbc4a40af7b375e35303d" - } - } - ], - "personalBio": "Dedicated to upholding best practices in software engineering, including testing, code reviews, and version control.", - "testimonials": [ - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "666cbc4a40af7b375e35303e" - } - }, - { - "from": "Sophie Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "666cbc4a40af7b375e35303f" - } - }, - { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", - "_id": { - "$oid": "666cbc4a40af7b375e353040" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Clarance-Meecher-fake", - "blog": "https://www.Clarance-Meecher-fake-blog.com", - "other": [] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Galvanize", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e353030" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352e9e" - }, - "firstName": "Katharine", - "lastName": "Lancett", - "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "cohort": "FTRI 28", - "graduationYear": 2024, - "email": "klancetth@sfgate.com", - "linkedInProfile": "https://www.linkedin.com/in/Katharine-Lancett-fake", - "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", - "skills": [ - "Python", - "HTML", - "DevOps", - "IoT (Internet of Things)", - "Version Control", - "Docker", - "Serverless Architecture", - "SQL", - "GraphQL", - "TDD (Test-Driven Development)", - "Kubernetes", - "Spring Boot", - "Deep Learning" - ], - "specializations": [ - "User Experience (UX) Design", - "Deep Learning", - "Robotic Process Automation", - "Data Science" - ], - "careerInformation": { - "currentPosition": { "title": "Product Manager", "company": "Zoom" }, - "pastPositions": [ - { - "title": "Site Reliability Engineer", - "company": "Airbnb", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-09-07T17:17:49.009Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353042" - } - }, - { - "title": "Full Stack Developer", - "company": "Atlassian", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-02-20T10:01:07.736Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353043" - } - }, - { - "title": "Embedded Systems Engineer", - "company": "Intel", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-01-29T07:08:54.560Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353044" - } - }, - { - "title": "Engineering Manager", - "company": "Red Hat", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2028-02-26T16:16:36.331Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353045" - } - } - ] - }, - "education": [ - { - "institution": "London School of Economics and Political Science (LSE)", - "degree": "Master of Public Administration (MPA)", - "fieldOfStudy": "Architecture", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-08-21T20:26:00.644Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353046" - } - } - ], - "projects": [ - { - "name": "SmartFarm", - "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", - "link": "https://github.com/username/smartfarm", - "_id": { - "$oid": "666cbc4a40af7b375e353047" - } - }, - { - "name": "MediCare", - "description": "Medical appointment scheduling and patient management system for healthcare providers.", - "link": "https://github.com/username/medicare", - "_id": { - "$oid": "666cbc4a40af7b375e353048" - } - }, - { - "name": "JobFinder", - "description": "Job search and application management platform with personalized recommendations.", - "link": "https://github.com/username/jobfinder", - "_id": { - "$oid": "666cbc4a40af7b375e353049" - } - }, - { - "name": "SmartInventory", - "description": "Inventory management system with RFID and IoT integration for tracking assets.", - "link": "https://github.com/username/smartinventory", - "_id": { - "$oid": "666cbc4a40af7b375e35304a" - } - } - ], - "personalBio": "Proven ability to lead technical projects from inception to successful deployment and maintenance.", - "testimonials": [ - { - "from": "Emma Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "666cbc4a40af7b375e35304b" - } - }, - { - "from": "Sophia Martinez", - "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", - "_id": { - "$oid": "666cbc4a40af7b375e35304c" - } - }, - { - "from": "Daniel Lee", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", - "_id": { - "$oid": "666cbc4a40af7b375e35304d" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "666cbc4a40af7b375e35304e" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "666cbc4a40af7b375e35304f" - } - } - ], - "socialMediaLinks": { "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "App Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e353041" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352e9f" - }, - "firstName": "Margaret", - "lastName": "Dubber", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "NYC 59", - "graduationYear": 2024, - "email": "mdubberi@dropbox.com", - "linkedInProfile": "https://www.linkedin.com/in/Margaret-Dubber-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", - "skills": [ - "Edge Computing", - "Scrum", - "Android Development", - "Angular", - "Project Management", - "Laravel", - "Graph Theory", - "User Interface (UI) Design", - "Ruby", - "Time Management", - "API Integration", - "Infrastructure as Code", - "Problem-Solving" - ], - "specializations": [ - "HTML", - "Concurrency", - "Java", - "Laravel", - "Software Architecture", - "AWS", - "Automated Testing", - "DevOps", - "Android Development", - "Containerization", - "Code Review", - "Object-Oriented Programming", - "Legacy Code Management", - "Version Control" - ], - "careerInformation": { - "currentPosition": { "title": "Lead Software Engineer", "company": "Dropbox" }, - "pastPositions": [ - { - "title": "Technical Program Manager", - "company": "Microsoft", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-08-12T02:47:12.556Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353051" - } - }, - { - "title": "Machine Learning Engineer", - "company": "Red Hat", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-12-12T03:58:07.864Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353052" - } - } - ] - }, - "education": [ - { - "institution": "University of Wisconsin-Madison", - "degree": "Postdoctoral Research", - "fieldOfStudy": "Finance", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2028-04-09T06:49:19.625Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353053" - } - }, - { - "institution": "Indiana University Bloomington", - "degree": "Master of Fine Arts (MFA)", - "fieldOfStudy": "Mechanical Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2028-04-25T12:23:42.488Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353054" - } - }, - { - "institution": "University of Oregon", - "degree": "Bachelor of Arts (BA)", - "fieldOfStudy": "English Literature", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-03-06T00:07:59.014Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353055" - } - } - ], - "projects": [ - { - "name": "SmartInventory", - "description": "Inventory management system with RFID and IoT integration for tracking assets.", - "link": "https://github.com/username/smartinventory", - "_id": { - "$oid": "666cbc4a40af7b375e353056" - } - }, - { - "name": "SocialConnect", - "description": "Social media integration platform for managing multiple social accounts.", - "link": "https://github.com/username/socialconnect", - "_id": { - "$oid": "666cbc4a40af7b375e353057" - } - } - ], - "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", - "testimonials": [ - { - "from": "Noah Rodriguez", - "relation": "Product Owner at AgileSoft", - "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", - "_id": { - "$oid": "666cbc4a40af7b375e353058" - } - }, - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "666cbc4a40af7b375e353059" - } - }, - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "666cbc4a40af7b375e35305a" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "666cbc4a40af7b375e35305b" - } - }, - { - "from": "Daniel Lee", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", - "_id": { - "$oid": "666cbc4a40af7b375e35305c" - } - } - ], - "socialMediaLinks": { - "blog": "https://www.Margaret-Dubber-fake-blog.com", - "other": ["https://www.instagram.com/Margaret-Dubber-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "General Assembly", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e353050" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352ea0" - }, - "firstName": "Addy", - "lastName": "Fass", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "PTRI 63", - "graduationYear": 2024, - "email": "afassj@vistaprint.com", - "linkedInProfile": "https://www.linkedin.com/in/Addy-Fass-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", - "skills": [ - "API Integration", - "Communication Skills", - "Technical Writing", - "Graph Theory", - "Serverless Architecture", - "Continuous Deployment", - "Integration Testing", - "C#", - "Version Control", - "GraphQL", - "Flask", - "Robotic Process Automation", - "SaaS (Software as a Service)", - "Code Review", - "User Experience (UX) Design", - "Containerization" - ], - "specializations": ["Serverless Architecture"], - "careerInformation": { - "currentPosition": { "title": "Software Engineer", "company": "Twitter" }, - "pastPositions": [ - { - "title": "Software Engineer", - "company": "Facebook", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-01-20T16:00:12.972Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35305e" - } - }, - { - "title": "Data Scientist", - "company": "DoorDash", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2028-02-23T08:49:13.708Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35305f" - } - } - ] - }, - "education": [ - { - "institution": "University of North Carolina at Chapel Hill", - "degree": "Diploma Program", - "fieldOfStudy": "Biology", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-06-30T16:23:40.324Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353060" - } - }, - { - "institution": "Tsinghua University", - "degree": "Master of Engineering (ME)", - "fieldOfStudy": "History", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-03-16T23:30:55.244Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353061" - } - } - ], - "projects": [ - { - "name": "SmartCarPark", - "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", - "link": "https://github.com/username/smartcarpark", - "_id": { - "$oid": "666cbc4a40af7b375e353062" - } - }, - { - "name": "HealthMonitor", - "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", - "link": "https://github.com/username/healthmonitor", - "_id": { - "$oid": "666cbc4a40af7b375e353063" - } - }, - { - "name": "MediCare", - "description": "Medical appointment scheduling and patient management system for healthcare providers.", - "link": "https://github.com/username/medicare", - "_id": { - "$oid": "666cbc4a40af7b375e353064" - } - }, - { - "name": "FoodDelivery", - "description": "Online food delivery platform connecting restaurants with customers for food ordering.", - "link": "https://github.com/username/fooddelivery", - "_id": { - "$oid": "666cbc4a40af7b375e353065" - } - } - ], - "personalBio": "Devoted to fostering a collaborative team environment and mentoring junior developers.", - "testimonials": [ - { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - "_id": { - "$oid": "666cbc4a40af7b375e353066" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "666cbc4a40af7b375e353067" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "666cbc4a40af7b375e353068" - } - } - ], - "socialMediaLinks": { "blog": "https://www.Addy-Fass-fake-blog.com", "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "App Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e35305d" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352ea1" - }, - "firstName": "Sollie", - "lastName": "Puckinghorne", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "ECRI 66", - "graduationYear": 2024, - "email": "spuckinghornek@topsy.com", - "linkedInProfile": "https://www.linkedin.com/in/Sollie-Puckinghorne-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": ["Data Visualization", "API Integration", "Spring Boot", "C#"], - "specializations": [ - "Docker", - "BDD (Behavior-Driven Development)", - "Infrastructure as Code", - "Data Warehousing", - "Node.js", - "Deep Learning", - "Mobile Development" - ], - "careerInformation": { - "currentPosition": { "title": "Principal Software Engineer", "company": "Robinhood" }, - "pastPositions": [ - { - "title": "Product Manager", - "company": "Datadog", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-12-13T00:28:44.644Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35306a" - } - }, - { - "title": "Test Engineer", - "company": "Robinhood", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-12-31T10:45:55.581Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35306b" - } - }, - { - "title": "Senior Software Engineer", - "company": "Microsoft", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-04-26T16:26:16.999Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35306c" - } - } - ] - }, - "education": [ - { - "institution": "Harvard University", - "degree": "Doctor of Dental Surgery (DDS)", - "fieldOfStudy": "Statistics", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-03-19T20:28:41.546Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35306d" - } - }, - { - "institution": "University of Melbourne", - "degree": "Master of Social Work (MSW)", - "fieldOfStudy": "Communication Studies", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-12-24T19:21:56.579Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35306e" - } - }, - { - "institution": "Peking University", - "degree": "Master of Engineering (ME)", - "fieldOfStudy": "Aerospace Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-07-28T04:04:30.497Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35306f" - } - } - ], - "projects": [ - { - "name": "AIAssistant", - "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", - "link": "https://github.com/username/aiassistant", - "_id": { - "$oid": "666cbc4a40af7b375e353070" - } - }, - { - "name": "SmartFarm", - "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", - "link": "https://github.com/username/smartfarm", - "_id": { - "$oid": "666cbc4a40af7b375e353071" - } - }, - { - "name": "VirtualMarket", - "description": "Virtual reality shopping experience allowing users to browse and buy products online.", - "link": "https://github.com/username/virtualmarket", - "_id": { - "$oid": "666cbc4a40af7b375e353072" - } - } - ], - "personalBio": "Experienced in rapid prototyping and iterative development methodologies.", - "testimonials": [ - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "666cbc4a40af7b375e353073" - } - }, - { - "from": "Sophia Martinez", - "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", - "_id": { - "$oid": "666cbc4a40af7b375e353074" - } - } - ], - "socialMediaLinks": { "other": ["https://www.instagram.com/Sollie-Puckinghorne-fake"] }, - "availabilityForNetworking": true, - "bootcampExperience": "App Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e353069" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352ea2" - }, - "firstName": "Xena", - "lastName": "Tomczynski", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "ECRI 23", - "graduationYear": 2024, - "email": "xtomczynskil@ted.com", - "linkedInProfile": "https://www.linkedin.com/in/Xena-Tomczynski-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", - "skills": [ - "Django", - "Event-Driven Architecture", - "Machine Learning", - "Object-Oriented Programming", - "Reactive Programming" - ], - "specializations": [ - "Cloud Computing", - "Mobile Development", - "React", - "IoT (Internet of Things)", - "GraphQL", - "Robotic Process Automation" - ], - "careerInformation": { - "currentPosition": { "title": "Principal Software Engineer", "company": "Stripe" }, - "pastPositions": [ - { - "title": "Product Manager", - "company": "Adobe", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-01-20T04:19:06.471Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353076" - } - }, - { - "title": "Full Stack Developer", - "company": "Apple", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-07-05T11:21:14.238Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353077" - } - }, - { - "title": "DevOps Engineer", - "company": "Airbnb", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-11-27T05:07:07.847Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353078" - } - } - ] - }, - "education": [ - { - "institution": "University of Virginia", - "degree": "High School Diploma", - "fieldOfStudy": "Political Science", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-09-27T22:32:06.902Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353079" - } - }, - { - "institution": "Purdue University", - "degree": "Doctor of Veterinary Medicine (DVM)", - "fieldOfStudy": "Mechanical Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2024-07-29T18:57:26.708Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35307a" - } - }, - { - "institution": "Tsinghua University", - "degree": "Master of Public Administration (MPA)", - "fieldOfStudy": "Political Science", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-05-20T21:28:13.322Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35307b" - } - }, - { - "institution": "National University of Singapore (NUS)", - "degree": "Diploma Program", - "fieldOfStudy": "Mathematics", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-01-15T08:47:59.527Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35307c" - } - } - ], - "projects": [ - { - "name": "EduTech", - "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", - "link": "https://github.com/username/edutech", - "_id": { - "$oid": "666cbc4a40af7b375e35307d" - } - }, - { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", - "_id": { - "$oid": "666cbc4a40af7b375e35307e" - } - }, - { - "name": "EduTech", - "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", - "link": "https://github.com/username/edutech", - "_id": { - "$oid": "666cbc4a40af7b375e35307f" - } - }, - { - "name": "CloudStorage", - "description": "Cloud storage service with file synchronization and sharing capabilities.", - "link": "https://github.com/username/cloudstorage", - "_id": { - "$oid": "666cbc4a40af7b375e353080" - } - } - ], - "personalBio": "Advocate for diversity and inclusion in the tech industry, fostering a welcoming and supportive workplace culture.", - "testimonials": [ - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "666cbc4a40af7b375e353081" - } - }, - { - "from": "Isabella Clark", - "relation": "HR Manager at TechFusion", - "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", - "_id": { - "$oid": "666cbc4a40af7b375e353082" - } - } - ], - "socialMediaLinks": { "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "Tech Elevator", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e353075" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352ea3" - }, - "firstName": "Harmonie", - "lastName": "Karpinski", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "LA 22", - "graduationYear": 2024, - "email": "hkarpinskim@g.co", - "linkedInProfile": "https://www.linkedin.com/in/Harmonie-Karpinski-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", - "skills": [ - "Data Visualization", - "AWS", - "Code Review", - "Algorithm Design", - "Continuous Deployment", - "Laravel", - "Google Cloud Platform", - "Technical Writing", - "User Interface (UI) Design", - "Concurrency", - "Communication Skills", - "Version Control", - "Java", - "Cybersecurity", - "Robotic Process Automation", - "Performance Optimization", - "Flask" - ], - "specializations": [ - "Python", - "Parallel Computing", - "API Integration", - "Node.js", - "Pair Programming", - "AWS", - "ASP.NET" - ], - "careerInformation": { - "currentPosition": { "title": "Software Architect", "company": "Snowflake" }, - "pastPositions": [ - { - "title": "DevOps Engineer", - "company": "Red Hat", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2024-12-01T11:54:45.389Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353084" - } - }, - { - "title": "Frontend Developer", - "company": "NVIDIA", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-08-28T14:52:31.049Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353085" - } - }, - { - "title": "Technical Lead", - "company": "Shopify", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-10-28T03:42:49.926Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353086" - } - } - ] - }, - "education": [ - { - "institution": "University of Delaware", - "degree": "Doctor of Dental Surgery (DDS)", - "fieldOfStudy": "Biochemistry", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-01-02T15:47:07.267Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353087" - } - } - ], - "projects": [ - { - "name": "VirtualAssistant", - "description": "Virtual assistant software for voice command-based tasks and personal assistance.", - "link": "https://github.com/username/virtualassistant", - "_id": { - "$oid": "666cbc4a40af7b375e353088" - } - }, - { - "name": "DataCrunch", - "description": "Real-time data analytics platform for extracting insights from big data.", - "link": "https://github.com/username/datacrunch", - "_id": { - "$oid": "666cbc4a40af7b375e353089" - } - }, - { - "name": "SmartCarPark", - "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", - "link": "https://github.com/username/smartcarpark", - "_id": { - "$oid": "666cbc4a40af7b375e35308a" - } - } - ], - "personalBio": "Dedicated to upholding best practices in software engineering, including testing, code reviews, and version control.", - "testimonials": [ - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "666cbc4a40af7b375e35308b" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "666cbc4a40af7b375e35308c" - } - }, - { - "from": "Sophie Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "666cbc4a40af7b375e35308d" - } - }, - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "666cbc4a40af7b375e35308e" - } - }, - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", - "_id": { - "$oid": "666cbc4a40af7b375e35308f" - } - } - ], - "socialMediaLinks": { "twitter": "https://x.com/Harmonie-Karpinski-fake", "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "Fullstack Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e353083" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352ea4" - }, - "firstName": "Marielle", - "lastName": "Crocket", - "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "cohort": "CTRI 96", - "graduationYear": 2024, - "email": "mcrocketn@craigslist.org", - "linkedInProfile": "https://www.linkedin.com/in/Marielle-Crocket-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": [ - "Software Architecture", - "Data Science", - "IoT (Internet of Things)", - "System Design", - "Continuous Deployment" - ], - "specializations": [ - "AWS", - "Communication Skills", - "Laravel", - "Django", - "API Development", - "PaaS (Platform as a Service)", - "Integration Testing", - "Blockchain", - "System Design", - "IoT (Internet of Things)", - "Quantum Computing", - "React", - "Code Review", - "Software Architecture", - "API Integration", - "Mobile Development", - "Design Patterns", - "Android Development" - ], - "careerInformation": { - "currentPosition": { "title": "Senior Software Engineer", "company": "Adobe" }, - "pastPositions": [ - { - "title": "Software Engineer", - "company": "Pinterest", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-04-11T06:24:48.693Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353091" - } - }, - { - "title": "Junior Software Engineer", - "company": "Apple", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-12-08T18:36:20.412Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353092" - } - }, - { - "title": "Backend Developer", - "company": "Microsoft", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-11-07T14:36:58.409Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353093" - } - }, - { - "title": "QA Engineer", - "company": "Datadog", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-07-18T20:39:04.300Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353094" - } - }, - { - "title": "Data Engineer", - "company": "Red Hat", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-12-02T07:33:36.560Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353095" - } - } - ] - }, - "education": [ - { - "institution": "Ohio State University", - "degree": "Doctor of Business Administration (DBA)", - "fieldOfStudy": "History", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2025-07-18T03:27:48.998Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353096" - } - } - ], - "projects": [ - { - "name": "TourismApp", - "description": "Mobile application for tourists providing travel guides and local recommendations.", - "link": "https://github.com/username/tourismapp", - "_id": { - "$oid": "666cbc4a40af7b375e353097" - } - }, - { - "name": "RoboTrader", - "description": "Algorithmic trading platform for automated stock market analysis and trading.", - "link": "https://github.com/username/robotrader", - "_id": { - "$oid": "666cbc4a40af7b375e353098" - } - }, - { - "name": "HealthLink", - "description": "Telemedicine platform connecting patients with healthcare providers remotely.", - "link": "https://github.com/username/healthlink", - "_id": { - "$oid": "666cbc4a40af7b375e353099" - } - }, - { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", - "_id": { - "$oid": "666cbc4a40af7b375e35309a" - } - }, - { - "name": "HomeSecurity", - "description": "Home security system with video surveillance, motion detection, and alarm integration.", - "link": "https://github.com/username/homesecurity", - "_id": { - "$oid": "666cbc4a40af7b375e35309b" - } - } - ], - "personalBio": "Experienced in deploying and maintaining applications on cloud platforms like AWS and Azure.", - "testimonials": [ - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "666cbc4a40af7b375e35309c" - } - }, - { - "from": "Olivia White", - "relation": "Tech Lead at Cloud Innovations", - "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", - "_id": { - "$oid": "666cbc4a40af7b375e35309d" - } - } - ], - "socialMediaLinks": { "blog": "https://www.Marielle-Crocket-fake-blog.com", "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "Thinkful", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e353090" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352ea5" - }, - "firstName": "Ulrick", - "lastName": "Blasing", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "CTRI 11", - "graduationYear": 2024, - "email": "ublasingo@yahoo.com", - "linkedInProfile": "https://www.linkedin.com/in/Ulrick-Blasing-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": ["Problem-Solving"], - "specializations": ["TDD (Test-Driven Development)"], - "careerInformation": { - "currentPosition": { "title": "Engineering Manager", "company": "Oracle" }, - "pastPositions": [ - { - "title": "Software Engineer", - "company": "HubSpot", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-04-02T17:36:49.462Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35309f" - } - }, - { - "title": "Embedded Systems Engineer", - "company": "Twilio", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2026-09-01T19:29:59.165Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530a0" - } - }, - { - "title": "Lead Software Engineer", - "company": "Zoom", - "startDate": { - "$date": "2024-06-14T21:55:22.546Z" - }, - "endDate": { - "$date": "2027-05-17T18:37:40.864Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530a1" - } - }, - { - "title": "Cloud Engineer", - "company": "Google", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2028-03-11T22:21:54.248Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530a2" - } - } - ] - }, - "education": [ - { - "institution": "McGill University", - "degree": "Bachelor of Technology (BTech)", - "fieldOfStudy": "Public Health", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-01-24T03:28:14.883Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530a3" - } - }, - { - "institution": "Emory University", - "degree": "Professional Degree", - "fieldOfStudy": "Computer Science", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-10-16T20:49:38.689Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530a4" - } - } - ], - "projects": [ - { - "name": "GenomeQuest", - "description": "Genomic data analysis tool for researchers and bioinformaticians.", - "link": "https://github.com/username/genomequest", - "_id": { - "$oid": "666cbc4a40af7b375e3530a5" - } - }, - { - "name": "CodeAnalyzer", - "description": "Static code analysis tool for detecting bugs and code quality improvements.", - "link": "https://github.com/username/codeanalyzer", - "_id": { - "$oid": "666cbc4a40af7b375e3530a6" - } - }, - { - "name": "SmartHomeHub", - "description": "Centralized home automation system integrating IoT devices for smart living.", - "link": "https://github.com/username/smarthomehub", - "_id": { - "$oid": "666cbc4a40af7b375e3530a7" - } - }, - { - "name": "VoiceAssistant", - "description": "Voice-controlled personal assistant using natural language processing.", - "link": "https://github.com/username/voiceassistant", - "_id": { - "$oid": "666cbc4a40af7b375e3530a8" - } - } - ], - "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", - "testimonials": [ - { - "from": "Olivia White", - "relation": "Tech Lead at Cloud Innovations", - "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", - "_id": { - "$oid": "666cbc4a40af7b375e3530a9" - } - }, - { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - "_id": { - "$oid": "666cbc4a40af7b375e3530aa" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "666cbc4a40af7b375e3530ab" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Ulrick-Blasing-fake", - "blog": "https://www.Ulrick-Blasing-fake-blog.com", - "other": [] - }, - "availabilityForNetworking": false, - "bootcampExperience": "CareerFoundry", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e35309e" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352ea6" - }, - "firstName": "Cheri", - "lastName": "Danielsson", - "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "cohort": "LA 10", - "graduationYear": 2024, - "email": "cdanielssonp@example.com", - "linkedInProfile": "https://www.linkedin.com/in/Cheri-Danielsson-fake", - "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", - "skills": [ - "Robotic Process Automation", - "Continuous Deployment", - "Laravel", - "TDD (Test-Driven Development)" - ], - "specializations": [ - "ASP.NET", - "Quantum Computing", - "Functional Programming", - "DevOps", - "Blockchain", - "Azure", - "React", - "Robotic Process Automation", - "NoSQL", - "SQL", - "Version Control", - "Data Visualization", - "CI/CD", - "Code Review", - "Machine Learning" - ], - "careerInformation": { - "currentPosition": { "title": "Web Developer", "company": "Intel" }, - "pastPositions": [ - { - "title": "Data Engineer", - "company": "Activision Blizzard", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-01-26T13:19:13.417Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530ad" - } - }, - { - "title": "Backend Developer", - "company": "HubSpot", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-06-30T18:49:21.079Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530ae" - } - }, - { - "title": "Security Engineer", - "company": "Workday", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2028-01-05T04:16:42.453Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530af" - } - } - ] - }, - "education": [ - { - "institution": "ETH Zurich - Swiss Federal Institute of Technology", - "degree": "Professional Degree", - "fieldOfStudy": "Accounting", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-05-30T18:23:34.071Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530b0" - } - }, - { - "institution": "University of Missouri", - "degree": "Master of Science (MS)", - "fieldOfStudy": "Pharmacy", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-10-11T11:12:36.036Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530b1" - } - }, - { - "institution": "Duke University", - "degree": "Doctoral Degree", - "fieldOfStudy": "Music", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-02-23T18:57:06.400Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530b2" - } - }, - { - "institution": "Clemson University", - "degree": "Master of Arts (MA)", - "fieldOfStudy": "Graphic Design", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-07-23T01:33:25.690Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530b3" - } - } - ], - "projects": [ - { - "name": "NetPlanner", - "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", - "link": "https://github.com/username/netplanner", - "_id": { - "$oid": "666cbc4a40af7b375e3530b4" - } - }, - { - "name": "EduTech", - "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", - "link": "https://github.com/username/edutech", - "_id": { - "$oid": "666cbc4a40af7b375e3530b5" - } - }, - { - "name": "RoboTrader", - "description": "Algorithmic trading platform for automated stock market analysis and trading.", - "link": "https://github.com/username/robotrader", - "_id": { - "$oid": "666cbc4a40af7b375e3530b6" - } - }, - { - "name": "VirtualAssistant", - "description": "Virtual assistant software for voice command-based tasks and personal assistance.", - "link": "https://github.com/username/virtualassistant", - "_id": { - "$oid": "666cbc4a40af7b375e3530b7" - } - } - ], - "personalBio": "Devoted to fostering a collaborative team environment and mentoring junior developers.", - "testimonials": [], - "socialMediaLinks": { - "twitter": "https://x.com/Cheri-Danielsson-fake", - "blog": "https://www.Cheri-Danielsson-fake-blog.com", - "other": [] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Kenzie Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e3530ac" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352ea7" - }, - "firstName": "Durand", - "lastName": "Joron", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "FTRI 0", - "graduationYear": 2024, - "email": "djoronq@google.cn", - "linkedInProfile": "https://www.linkedin.com/in/Durand-Joron-fake", - "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", - "skills": [ - "Scrum", - "Collaboration", - "Kubernetes", - "C++", - "CI/CD", - "Parallel Computing", - "PaaS (Platform as a Service)" - ], - "specializations": [ - "Flask", - "Agile Development", - "Database Design", - "System Design", - "Concurrency" - ], - "careerInformation": { - "currentPosition": { "title": "Frontend Developer", "company": "Datadog" }, - "pastPositions": [ - { - "title": "Automation Engineer", - "company": "Slack", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-01-10T20:38:24.278Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530b9" - } - }, - { - "title": "Software Developer", - "company": "DocuSign", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-06-05T02:55:38.558Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530ba" - } - } - ] - }, - "education": [ - { - "institution": "California Institute of Technology (Caltech)", - "degree": "Certificate Program", - "fieldOfStudy": "Electrical Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-02-09T06:34:03.312Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530bb" - } - } - ], - "projects": [], - "personalBio": "Experienced in Agile methodologies, with a track record of delivering projects on time and within budget.", - "testimonials": [], - "socialMediaLinks": { "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "App Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e3530b8" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352ea8" - }, - "firstName": "Kristien", - "lastName": "Burgett", - "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "cohort": "WCRI 8", - "graduationYear": 2024, - "email": "kburgettr@kickstarter.com", - "linkedInProfile": "https://www.linkedin.com/in/Kristien-Burgett-fake", - "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", - "skills": [ - "Data Warehousing", - "React", - "User Interface (UI) Design", - "Flask", - "WebSockets", - "Java", - "IoT (Internet of Things)", - "Technical Writing", - "Node.js" - ], - "specializations": [ - "Robotic Process Automation", - "ASP.NET", - "FaaS (Function as a Service)", - "Leadership", - "Docker", - "WebSockets", - "Laravel", - "Automated Testing", - "Technical Writing", - "Database Design", - "CI/CD" - ], - "careerInformation": { - "currentPosition": { "title": "Engineering Manager", "company": "Oracle" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "University of Miami", - "degree": "Postdoctoral Research", - "fieldOfStudy": "Political Science", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2028-03-09T13:12:07.020Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530bd" - } - }, - { - "institution": "Carnegie Mellon University", - "degree": "Doctor of Philosophy (PhD)", - "fieldOfStudy": "Accounting", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-06-14T22:38:04.222Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530be" - } - } - ], - "projects": [ - { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", - "_id": { - "$oid": "666cbc4a40af7b375e3530bf" - } - }, - { - "name": "VirtualMarket", - "description": "Virtual reality shopping experience allowing users to browse and buy products online.", - "link": "https://github.com/username/virtualmarket", - "_id": { - "$oid": "666cbc4a40af7b375e3530c0" - } - } - ], - "personalBio": "Passionate about leveraging data-driven insights to optimize software performance and user engagement.", - "testimonials": [ - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "666cbc4a40af7b375e3530c1" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "666cbc4a40af7b375e3530c2" - } - }, - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", - "_id": { - "$oid": "666cbc4a40af7b375e3530c3" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "666cbc4a40af7b375e3530c4" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Kristien-Burgett-fake", - "blog": "https://www.Kristien-Burgett-fake-blog.com", - "other": [] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Makers Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e3530bc" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352ea9" - }, - "firstName": "Kaia", - "lastName": "Fassmann", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "ECRI 70", - "graduationYear": 2024, - "email": "kfassmanns@ted.com", - "linkedInProfile": "https://www.linkedin.com/in/Kaia-Fassmann-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", - "skills": ["JavaScript", "Robotic Process Automation", "Algorithm Design"], - "specializations": [ - "Project Management", - "Critical Thinking", - "Microservices", - "Software Architecture", - "FaaS (Function as a Service)", - "Mobile Development", - "Event-Driven Architecture" - ], - "careerInformation": { - "currentPosition": { "title": "Web Developer", "company": "ServiceNow" }, - "pastPositions": [ - { - "title": "Automation Engineer", - "company": "Dropbox", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-06-21T12:07:28.970Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530c6" - } - }, - { - "title": "Backend Developer", - "company": "Workday", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-10-30T15:08:12.328Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530c7" - } - }, - { - "title": "Technical Lead", - "company": "Palantir", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-04-09T08:28:41.034Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530c8" - } - }, - { - "title": "Product Manager", - "company": "Dropbox", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-07-14T22:22:04.826Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530c9" - } - } - ] - }, - "education": [ - { - "institution": "Duke University", - "degree": "Master of Public Administration (MPA)", - "fieldOfStudy": "Computer Science", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2028-06-04T08:02:26.504Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530ca" - } - }, - { - "institution": "Brown University", - "degree": "Bachelor's Degree", - "fieldOfStudy": "Statistics", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-03-30T23:33:59.957Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530cb" - } - }, - { - "institution": "University of Vermont", - "degree": "Bachelor of Fine Arts (BFA)", - "fieldOfStudy": "Data Science", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-07-30T12:59:44.765Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530cc" - } - } - ], - "projects": [ - { - "name": "RecruitmentAI", - "description": "AI-powered recruitment platform for matching candidates with job opportunities.", - "link": "https://github.com/username/recruitmentai", - "_id": { - "$oid": "666cbc4a40af7b375e3530cd" - } - }, - { - "name": "VirtualMarket", - "description": "Virtual reality shopping experience allowing users to browse and buy products online.", - "link": "https://github.com/username/virtualmarket", - "_id": { - "$oid": "666cbc4a40af7b375e3530ce" - } - } - ], - "personalBio": "Driven by a passion for problem-solving and a commitment to continuous professional development.", - "testimonials": [ - { - "from": "Emma Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "666cbc4a40af7b375e3530cf" - } - }, - { - "from": "Emma Thompson", - "relation": "Manager at DataTech Solutions", - "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", - "_id": { - "$oid": "666cbc4a40af7b375e3530d0" - } - }, - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", - "_id": { - "$oid": "666cbc4a40af7b375e3530d1" - } - }, - { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - "_id": { - "$oid": "666cbc4a40af7b375e3530d2" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Kaia-Fassmann-fake", - "blog": "https://www.Kaia-Fassmann-fake-blog.com", - "other": ["https://www.instagram.com/Kaia-Fassmann-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "The Tech Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e3530c5" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352eaa" - }, - "firstName": "Lockwood", - "lastName": "Moxham", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "FTRI 71", - "graduationYear": 2024, - "email": "lmoxhamt@wikia.com", - "linkedInProfile": "https://www.linkedin.com/in/Lockwood-Moxham-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": [ - "Critical Thinking", - "DevOps", - "Spring Boot", - "System Design", - "FaaS (Function as a Service)", - "Blockchain", - "Concurrency", - "Quantum Computing", - "Reactive Programming", - "Time Management", - "Machine Learning", - "Database Design", - "C++", - "C#", - "Big Data", - "Algorithm Design" - ], - "specializations": [ - "Docker", - "Pair Programming", - "IoT (Internet of Things)", - "Performance Optimization", - "Kubernetes", - "Quantum Computing", - "Continuous Deployment" - ], - "careerInformation": { - "currentPosition": { "title": "Test Engineer", "company": "ServiceNow" }, - "pastPositions": [ - { - "title": "Test Engineer", - "company": "Datadog", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-08-16T18:19:53.007Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530d4" - } - }, - { - "title": "Android Developer", - "company": "PayPal", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-11-14T21:09:29.689Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530d5" - } - } - ] - }, - "education": [ - { - "institution": "University of Florida", - "degree": "Certificate Program", - "fieldOfStudy": "Education", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-11-25T22:30:11.069Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530d6" - } - }, - { - "institution": "Emory University", - "degree": "Master of Fine Arts (MFA)", - "fieldOfStudy": "Biology", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-12-24T22:13:14.630Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530d7" - } - }, - { - "institution": "Syracuse University", - "degree": "Doctor of Education (EdD)", - "fieldOfStudy": "Finance", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-02-05T21:58:34.805Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530d8" - } - }, - { - "institution": "University of Chicago", - "degree": "Doctor of Medicine (MD)", - "fieldOfStudy": "Data Science", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-12-26T08:20:52.465Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530d9" - } - } - ], - "projects": [ - { - "name": "SocialConnect", - "description": "Social media integration platform for managing multiple social accounts.", - "link": "https://github.com/username/socialconnect", - "_id": { - "$oid": "666cbc4a40af7b375e3530da" - } - }, - { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", - "_id": { - "$oid": "666cbc4a40af7b375e3530db" - } - }, - { - "name": "SmartCity", - "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", - "link": "https://github.com/username/smartcity", - "_id": { - "$oid": "666cbc4a40af7b375e3530dc" - } - }, - { - "name": "CodeAnalyzer", - "description": "Static code analysis tool for detecting bugs and code quality improvements.", - "link": "https://github.com/username/codeanalyzer", - "_id": { - "$oid": "666cbc4a40af7b375e3530dd" - } - } - ], - "personalBio": "Committed to writing clean, maintainable code that meets rigorous performance standards.", - "testimonials": [], - "socialMediaLinks": { "blog": "https://www.Lockwood-Moxham-fake-blog.com", "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "Thinkful", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e3530d3" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352eab" - }, - "firstName": "Tessie", - "lastName": "Sugden", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "cohort": "WCRI 17", - "graduationYear": 2024, - "email": "tsugdenu@npr.org", - "linkedInProfile": "https://www.linkedin.com/in/Tessie-Sugden-fake", - "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", - "skills": ["Microservices"], - "specializations": [ - "Google Cloud Platform", - "Project Management", - "CSS", - "Android Development", - "Software Architecture", - "Node.js", - "Collaboration", - "PaaS (Platform as a Service)", - "TDD (Test-Driven Development)", - "Agile Development", - "Leadership", - "Database Design", - "HTML", - "BDD (Behavior-Driven Development)" - ], - "careerInformation": { - "currentPosition": { "title": "Principal Software Engineer", "company": "Uber" }, - "pastPositions": [ - { - "title": "Junior Software Engineer", - "company": "Microsoft", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-01-21T23:10:44.583Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530df" - } - }, - { - "title": "Engineering Manager", - "company": "Microsoft", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-12-28T05:51:30.604Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530e0" - } - }, - { - "title": "QA Engineer", - "company": "Airbnb", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-03-13T22:21:55.633Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530e1" - } - }, - { - "title": "Software Developer", - "company": "Twitter", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-11-17T06:17:09.663Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530e2" - } - } - ] - }, - "education": [ - { - "institution": "Rutgers University", - "degree": "Technical School Certification", - "fieldOfStudy": "Psychology", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-02-03T12:33:41.512Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530e3" - } - }, - { - "institution": "Fudan University", - "degree": "Doctor of Medicine (MD)", - "fieldOfStudy": "Information Technology", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-03-11T18:34:49.041Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530e4" - } - }, - { - "institution": "University of Oklahoma", - "degree": "Doctor of Dental Medicine (DMD)", - "fieldOfStudy": "Computer Science", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-12-16T13:16:25.316Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530e5" - } - }, - { - "institution": "Shanghai Jiao Tong University", - "degree": "Bachelor of Engineering (BE)", - "fieldOfStudy": "Urban Planning", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-02-09T20:58:37.194Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530e6" - } - } - ], - "projects": [ - { - "name": "VirtualMarket", - "description": "Virtual reality shopping experience allowing users to browse and buy products online.", - "link": "https://github.com/username/virtualmarket", - "_id": { - "$oid": "666cbc4a40af7b375e3530e7" - } - }, - { - "name": "CodeBot", - "description": "Automated code generation tool using AI for faster development cycles.", - "link": "https://github.com/username/codebot", - "_id": { - "$oid": "666cbc4a40af7b375e3530e8" - } - }, - { - "name": "SmartGrid", - "description": "Smart grid technology for efficient energy distribution and consumption.", - "link": "https://github.com/username/smartgrid", - "_id": { - "$oid": "666cbc4a40af7b375e3530e9" - } - }, - { - "name": "ARNavigation", - "description": "Augmented reality navigation app for real-time directions and location-based information.", - "link": "https://github.com/username/arnavigation", - "_id": { - "$oid": "666cbc4a40af7b375e3530ea" - } - } - ], - "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", - "testimonials": [], - "socialMediaLinks": { - "twitter": "https://x.com/Tessie-Sugden-fake", - "blog": "https://www.Tessie-Sugden-fake-blog.com", - "other": ["https://www.instagram.com/Tessie-Sugden-fake"] - }, - "availabilityForNetworking": false, - "bootcampExperience": "Codesmith", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e3530de" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352eac" - }, - "firstName": "Rea", - "lastName": "Jeremiah", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "WCRI 79", - "graduationYear": 2024, - "email": "rjeremiahv@wikispaces.com", - "linkedInProfile": "https://www.linkedin.com/in/Rea-Jeremiah-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", - "skills": [ - "ETL (Extract, Transform, Load)", - "API Development", - "Data Warehousing", - "Azure", - "User Interface (UI) Design", - "Machine Learning", - "WebSockets", - "Big Data", - "Spring Boot", - "Docker", - "Java", - "Edge Computing", - "API Integration" - ], - "specializations": [ - "Pair Programming", - "Edge Computing", - "ASP.NET", - "C++", - "CSS", - "WebSockets", - "PaaS (Platform as a Service)", - "React", - "Object-Oriented Programming", - "Refactoring", - "Parallel Computing", - "Laravel", - "User Experience (UX) Design", - "Project Management" - ], - "careerInformation": { - "currentPosition": { "title": "Engineering Manager", "company": "Spotify" }, - "pastPositions": [ - { - "title": "iOS Developer", - "company": "Twilio", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-05-04T12:41:56.632Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530ec" - } - }, - { - "title": "DevOps Engineer", - "company": "Intel", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-06-22T18:09:02.461Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530ed" - } - }, - { - "title": "Android Developer", - "company": "Intel", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-01-21T19:44:13.947Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530ee" - } - } - ] - }, - "education": [ - { - "institution": "Boston University", - "degree": "Executive Education", - "fieldOfStudy": "Nursing", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2028-01-26T00:26:47.716Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530ef" - } - } - ], - "projects": [ - { - "name": "SmartWatch", - "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", - "link": "https://github.com/username/smartwatch", - "_id": { - "$oid": "666cbc4a40af7b375e3530f0" - } - }, - { - "name": "EventPlanner", - "description": "Event management and planning software for organizing and coordinating events.", - "link": "https://github.com/username/eventplanner", - "_id": { - "$oid": "666cbc4a40af7b375e3530f1" - } - }, - { - "name": "SmartLearning", - "description": "AI-driven personalized learning platform with adaptive learning algorithms.", - "link": "https://github.com/username/smartlearning", - "_id": { - "$oid": "666cbc4a40af7b375e3530f2" - } - } - ], - "personalBio": "Adaptable problem solver who thrives in dynamic, fast-paced environments.", - "testimonials": [ - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "666cbc4a40af7b375e3530f3" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "666cbc4a40af7b375e3530f4" - } - }, - { - "from": "Alice Johnson", - "relation": "Manager at TechSolutions Inc.", - "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", - "_id": { - "$oid": "666cbc4a40af7b375e3530f5" - } - }, - { - "from": "Ethan Taylor", - "relation": "Co-founder at StartupX", - "text": "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", - "_id": { - "$oid": "666cbc4a40af7b375e3530f6" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "666cbc4a40af7b375e3530f7" - } - } - ], - "socialMediaLinks": { "twitter": "https://x.com/Rea-Jeremiah-fake", "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "Lambda School", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e3530eb" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352ead" - }, - "firstName": "Cassie", - "lastName": "Meadows", - "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "cohort": "LA 95", - "graduationYear": 2024, - "email": "cmeadowsw@smugmug.com", - "linkedInProfile": "https://www.linkedin.com/in/Cassie-Meadows-fake", - "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", - "skills": [ - "Database Design", - "Kubernetes", - "SaaS (Software as a Service)", - "Object-Oriented Programming", - "Machine Learning", - "ETL (Extract, Transform, Load)", - "Cloud Computing", - "AWS", - "User Interface (UI) Design", - "Concurrency", - "Mobile Development", - "Graph Databases", - "Code Review", - "Containerization", - "JavaScript", - "CSS", - "Edge Computing" - ], - "specializations": [], - "careerInformation": { - "currentPosition": { "title": "AI Engineer", "company": "Qualcomm" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "University of Queensland", - "degree": "Master's Degree", - "fieldOfStudy": "Biomedical Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-12-16T17:07:26.297Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530f9" - } - }, - { - "institution": "Pennsylvania State University", - "degree": "Doctor of Business Administration (DBA)", - "fieldOfStudy": "Urban Planning", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-03-07T06:08:19.433Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530fa" - } - }, - { - "institution": "University of Washington", - "degree": "Doctor of Dental Surgery (DDS)", - "fieldOfStudy": "Film Studies", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2028-06-07T05:08:56.282Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3530fb" - } - } - ], - "projects": [ - { - "name": "CryptoTrack", - "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", - "link": "https://github.com/username/cryptotrack", - "_id": { - "$oid": "666cbc4a40af7b375e3530fc" - } - }, - { - "name": "NetPlanner", - "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", - "link": "https://github.com/username/netplanner", - "_id": { - "$oid": "666cbc4a40af7b375e3530fd" - } - }, - { - "name": "SmartCity", - "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", - "link": "https://github.com/username/smartcity", - "_id": { - "$oid": "666cbc4a40af7b375e3530fe" - } - }, - { - "name": "JobFinder", - "description": "Job search and application management platform with personalized recommendations.", - "link": "https://github.com/username/jobfinder", - "_id": { - "$oid": "666cbc4a40af7b375e3530ff" - } - }, - { - "name": "CodeBot", - "description": "Automated code generation tool using AI for faster development cycles.", - "link": "https://github.com/username/codebot", - "_id": { - "$oid": "666cbc4a40af7b375e353100" - } - } - ], - "personalBio": "Skilled in working with cross-functional teams to deliver innovative software solutions that exceed expectations.", - "testimonials": [], - "socialMediaLinks": { - "twitter": "https://x.com/Cassie-Meadows-fake", - "blog": "https://www.Cassie-Meadows-fake-blog.com", - "other": ["https://www.instagram.com/Cassie-Meadows-fake"] - }, - "availabilityForNetworking": false, - "bootcampExperience": "Nucamp", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e3530f8" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352eae" - }, - "firstName": "Kelci", - "lastName": "Bastide", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "cohort": "WCRI 22", - "graduationYear": 2024, - "email": "kbastidex@latimes.com", - "linkedInProfile": "https://www.linkedin.com/in/Kelci-Bastide-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": [ - "Android Development", - "Natural Language Processing", - "Microservices", - "Google Cloud Platform", - "API Development", - "Code Review", - "Algorithm Design", - "API Integration", - "Kubernetes", - "ASP.NET", - "Parallel Computing", - "Deep Learning", - "Infrastructure as Code", - "User Interface (UI) Design", - "React", - "TDD (Test-Driven Development)", - "Leadership" - ], - "specializations": [ - "Legacy Code Management", - "Software Architecture", - "Scrum", - "ASP.NET", - "Data Warehousing", - "User Experience (UX) Design", - "SaaS (Software as a Service)", - "Google Cloud Platform", - "Critical Thinking" - ], - "careerInformation": { - "currentPosition": { "title": "Technical Program Manager", "company": "Activision Blizzard" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "University of Southern California", - "degree": "Professional Degree", - "fieldOfStudy": "Data Science", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-11-24T11:03:34.991Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353102" - } - } - ], - "projects": [ - { - "name": "CryptoWallet", - "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", - "link": "https://github.com/username/cryptowallet", - "_id": { - "$oid": "666cbc4a40af7b375e353103" - } - }, - { - "name": "HealthMonitor", - "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", - "link": "https://github.com/username/healthmonitor", - "_id": { - "$oid": "666cbc4a40af7b375e353104" - } - }, - { - "name": "EventPlanner", - "description": "Event management and planning software for organizing and coordinating events.", - "link": "https://github.com/username/eventplanner", - "_id": { - "$oid": "666cbc4a40af7b375e353105" - } - } - ], - "personalBio": "Adept at optimizing SQL and NoSQL databases for performance and scalability.", - "testimonials": [], - "socialMediaLinks": { - "blog": "https://www.Kelci-Bastide-fake-blog.com", - "other": ["https://www.instagram.com/Kelci-Bastide-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "The Tech Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e353101" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352eaf" - }, - "firstName": "Thurston", - "lastName": "Speechly", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "LA 82", - "graduationYear": 2024, - "email": "tspeechlyy@plala.or.jp", - "linkedInProfile": "https://www.linkedin.com/in/Thurston-Speechly-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", - "skills": [ - "User Experience (UX) Design", - "Node.js", - "Time Management", - "Angular", - "Spring Boot", - "RESTful APIs", - "AWS" - ], - "specializations": [ - "Design Patterns", - "Data Science", - "Graph Databases", - "AR/VR (Augmented/Virtual Reality)", - "Project Management", - "Concurrency", - "Java", - "Docker", - "IoT (Internet of Things)", - "BDD (Behavior-Driven Development)" - ], - "careerInformation": { - "currentPosition": { "title": "AI Engineer", "company": "Coinbase" }, - "pastPositions": [ - { - "title": "Data Engineer", - "company": "Pinterest", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-08-01T05:40:15.627Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353107" - } - }, - { - "title": "Cloud Engineer", - "company": "IBM", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-01-17T04:28:43.896Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353108" - } - } - ] - }, - "education": [ - { - "institution": "University of Sydney", - "degree": "Master of Arts (MA)", - "fieldOfStudy": "Music", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-10-21T09:42:05.504Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353109" - } - }, - { - "institution": "Georgia Institute of Technology", - "degree": "Master of Public Administration (MPA)", - "fieldOfStudy": "Statistics", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-06-23T01:20:06.499Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35310a" - } - }, - { - "institution": "University of Massachusetts Amherst", - "degree": "Bachelor of Technology (BTech)", - "fieldOfStudy": "Theater", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-09-23T23:42:40.320Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35310b" - } - } - ], - "projects": [ - { - "name": "DataCrunch", - "description": "Real-time data analytics platform for extracting insights from big data.", - "link": "https://github.com/username/datacrunch", - "_id": { - "$oid": "666cbc4a40af7b375e35310c" - } - }, - { - "name": "AugmentWorks", - "description": "Augmented reality application for enhancing workplace productivity and training.", - "link": "https://github.com/username/augmentworks", - "_id": { - "$oid": "666cbc4a40af7b375e35310d" - } - }, - { - "name": "CodeAnalyzer", - "description": "Static code analysis tool for detecting bugs and code quality improvements.", - "link": "https://github.com/username/codeanalyzer", - "_id": { - "$oid": "666cbc4a40af7b375e35310e" - } - }, - { - "name": "SmartGrid", - "description": "Smart grid technology for efficient energy distribution and consumption.", - "link": "https://github.com/username/smartgrid", - "_id": { - "$oid": "666cbc4a40af7b375e35310f" - } - }, - { - "name": "SmartInventory", - "description": "Inventory management system with RFID and IoT integration for tracking assets.", - "link": "https://github.com/username/smartinventory", - "_id": { - "$oid": "666cbc4a40af7b375e353110" - } - } - ], - "personalBio": "Innovative thinker with a track record of proposing and implementing creative solutions to technical challenges.", - "testimonials": [ - { - "from": "David Smith", - "relation": "Colleague at InnovateTech Ltd.", - "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", - "_id": { - "$oid": "666cbc4a40af7b375e353111" - } - }, - { - "from": "Alice Johnson", - "relation": "Manager at TechSolutions Inc.", - "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", - "_id": { - "$oid": "666cbc4a40af7b375e353112" - } - }, - { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - "_id": { - "$oid": "666cbc4a40af7b375e353113" - } - } - ], - "socialMediaLinks": { "blog": "https://www.Thurston-Speechly-fake-blog.com", "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "Nucamp", + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304ad4" + }, + "firstName": "Arlina", + "lastName": "Moodie", + "cohort": "ECRI 84", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353106" + "$oid": "66723dae8f368f285d304bf0" }, + "education": [], + "projects": [], + "testimonials": [], "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352eb0" + "$oid": "66723da68f368f285d304ad5" }, - "firstName": "Silas", - "lastName": "Reyes", - "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "cohort": "NYC 31", + "firstName": "Shurlock", + "lastName": "Tytcomb", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "LA 7", "graduationYear": 2024, - "email": "sreyesz@google.co.jp", - "linkedInProfile": "https://www.linkedin.com/in/Silas-Reyes-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": ["Object-Oriented Programming"], + "email": "stytcomb8@google.it", + "linkedInProfile": "https://www.linkedin.com/in/Shurlock-Tytcomb-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": [ + "Azure", + "Event-Driven Architecture", + "SaaS (Software as a Service)", + "Edge Computing", + "Unit Testing", + "Git", + "Critical Thinking", + "NoSQL", + "Big Data", + "Integration Testing", + "API Integration" + ], "specializations": [ - "Parallel Computing", - "Database Design", - "Algorithm Design", - "Mobile Development", - "Android Development", + "Angular", "C++", - "Continuous Deployment", - "Integration Testing" + "Git", + "Java", + "Blockchain", + "Android Development", + "JavaScript", + "Big Data", + "Integration Testing", + "Microservices", + "Performance Optimization" ], "careerInformation": { - "currentPosition": { "title": "Security Engineer", "company": "VMware" }, + "currentPosition": { "title": "Embedded Systems Engineer", "company": "ServiceNow" }, "pastPositions": [ { - "title": "Security Engineer", - "company": "Lyft", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-11-09T13:33:55.086Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353115" - } - }, - { - "title": "Embedded Systems Engineer", - "company": "Stripe", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-02-18T05:54:31.383Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353116" - } - }, - { - "title": "AI Engineer", - "company": "Qualcomm", + "title": "Data Scientist", + "company": "Netflix", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2024-09-21T21:13:35.235Z" + "$date": "2026-05-02T10:36:15.927Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353117" + "$oid": "66723dae8f368f285d304bf2" } }, { - "title": "Technical Program Manager", - "company": "Datadog", + "title": "DevOps Engineer", + "company": "Snowflake", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2026-06-19T13:00:17.722Z" + "$date": "2028-01-11T03:36:57.065Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353118" + "$oid": "66723dae8f368f285d304bf3" } }, { - "title": "Data Scientist", - "company": "DoorDash", + "title": "Senior Software Engineer", + "company": "Microsoft", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2028-03-06T23:23:50.632Z" + "$date": "2025-07-06T15:36:06.061Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353119" + "$oid": "66723dae8f368f285d304bf4" } } ] }, - "education": [ - { - "institution": "University of Queensland", - "degree": "Executive Education", - "fieldOfStudy": "Public Health", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-11-14T23:00:20.752Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35311a" - } - }, - { - "institution": "University of Maryland, College Park", - "degree": "Master's Degree", - "fieldOfStudy": "Law", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-05-02T17:43:18.413Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35311b" - } - }, - { - "institution": "University of Toronto", - "degree": "High School Diploma", - "fieldOfStudy": "Pharmacy", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-02-05T15:59:04.353Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35311c" - } - } - ], - "projects": [], - "personalBio": "Detail-oriented developer with a strong foundation in algorithms and data structures.", - "testimonials": [ - { - "from": "Daniel Lee", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", - "_id": { - "$oid": "666cbc4a40af7b375e35311d" - } - }, + "education": [], + "projects": [ { - "from": "Emma Thompson", - "relation": "Manager at DataTech Solutions", - "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + "name": "FoodDelivery", + "description": "Online food delivery platform connecting restaurants with customers for food ordering.", + "link": "https://github.com/username/fooddelivery", "_id": { - "$oid": "666cbc4a40af7b375e35311e" + "$oid": "66723dae8f368f285d304bf5" } }, { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "name": "ARNavigation", + "description": "Augmented reality navigation app for real-time directions and location-based information.", + "link": "https://github.com/username/arnavigation", "_id": { - "$oid": "666cbc4a40af7b375e35311f" + "$oid": "66723dae8f368f285d304bf6" } }, { - "from": "Isabella Clark", - "relation": "HR Manager at TechFusion", - "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", "_id": { - "$oid": "666cbc4a40af7b375e353120" + "$oid": "66723dae8f368f285d304bf7" } }, { - "from": "Daniel Lee", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "name": "CloudGuard", + "description": "Advanced cloud security suite ensuring data protection and compliance.", + "link": "https://github.com/username/cloudguard", "_id": { - "$oid": "666cbc4a40af7b375e353121" + "$oid": "66723dae8f368f285d304bf8" } } ], + "personalBio": "Skilled in UX/UI design principles, with a focus on creating intuitive and visually appealing interfaces.", + "testimonials": [], "socialMediaLinks": { - "twitter": "https://x.com/Silas-Reyes-fake", - "other": ["https://www.instagram.com/Silas-Reyes-fake"] + "twitter": "https://x.com/Shurlock-Tytcomb-fake", + "other": ["https://www.instagram.com/Shurlock-Tytcomb-fake"] }, "availabilityForNetworking": false, - "bootcampExperience": "Coding Dojo", + "bootcampExperience": "Hack Reactor", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353114" + "$oid": "66723dae8f368f285d304bf1" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352eb1" + "$oid": "66723da68f368f285d304ad6" }, - "firstName": "Marley", - "lastName": "Boshard", - "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "cohort": "PTRI 94", + "firstName": "Ermina", + "lastName": "Guyton", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "CTRI 76", "graduationYear": 2024, - "email": "mboshard10@tiny.cc", - "linkedInProfile": "https://www.linkedin.com/in/Marley-Boshard-fake", + "email": "eguyton9@blog.com", + "linkedInProfile": "https://www.linkedin.com/in/Ermina-Guyton-fake", "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", "skills": [ - "Graph Theory", - "Deep Learning", - "Ruby", - "Django", - "Functional Programming", - "Quantum Computing", - "NoSQL", - "Vue.js", - "BDD (Behavior-Driven Development)", - "Leadership", - "Node.js", - "IoT (Internet of Things)", - "Big Data", - "C++" - ], - "specializations": [ - "Concurrency", - "Algorithm Design", - "SQL", - "Blockchain", - "TDD (Test-Driven Development)", - "Angular", + "Data Science", + "Graph Databases", + "Performance Optimization", + "Refactoring", "Functional Programming", - "Graph Theory", - "iOS Development", - "DevOps", - "JavaScript" + "Azure", + "User Experience (UX) Design", + "Event-Driven Architecture", + "Communication Skills", + "Quantum Computing" ], + "specializations": ["Edge Computing", "Automated Testing"], "careerInformation": { - "currentPosition": { "title": "Web Developer", "company": "Netflix" }, + "currentPosition": { "title": "Engineering Manager", "company": "Pinterest" }, "pastPositions": [ { - "title": "Software Architect", - "company": "Asana", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2028-05-24T19:51:52.265Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353123" - } - }, - { - "title": "Engineering Manager", + "title": "Technical Lead", "company": "Square", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-10-13T07:34:29.959Z" + "$date": "2026-06-11T00:16:49.256Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353124" + "$oid": "66723dae8f368f285d304bfa" } }, { - "title": "Engineering Manager", - "company": "Okta", + "title": "Software Engineer", + "company": "Datadog", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-08-01T03:53:36.684Z" + "$date": "2026-11-27T09:45:55.758Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353125" + "$oid": "66723dae8f368f285d304bfb" } }, { - "title": "iOS Developer", - "company": "Salesforce", + "title": "Backend Developer", + "company": "Qualcomm", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2028-02-05T05:13:40.462Z" + "$date": "2025-06-24T20:34:29.079Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353126" + "$oid": "66723dae8f368f285d304bfc" } }, { - "title": "iOS Developer", + "title": "Cloud Engineer", "company": "Datadog", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2024-09-21T21:14:50.878Z" + "$date": "2024-11-20T16:41:03.163Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353127" + "$oid": "66723dae8f368f285d304bfd" } } ] }, "education": [ { - "institution": "University of Virginia", - "degree": "Bachelor of Engineering (BE)", - "fieldOfStudy": "Mechanical Engineering", + "institution": "University of California, San Diego (UCSD)", + "degree": "Doctoral Degree", + "fieldOfStudy": "Finance", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-01-23T11:19:52.636Z" + "$date": "2026-01-22T20:46:31.447Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353128" + "$oid": "66723dae8f368f285d304bfe" + } + } + ], + "projects": [ + { + "name": "AIAssistant", + "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", + "link": "https://github.com/username/aiassistant", + "_id": { + "$oid": "66723dae8f368f285d304bff" + } + }, + { + "name": "SmartGrid", + "description": "Smart grid technology for efficient energy distribution and consumption.", + "link": "https://github.com/username/smartgrid", + "_id": { + "$oid": "66723dae8f368f285d304c00" + } + }, + { + "name": "HealthMonitor", + "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", + "link": "https://github.com/username/healthmonitor", + "_id": { + "$oid": "66723dae8f368f285d304c01" } }, { - "institution": "New York University (NYU)", - "degree": "Master of Engineering (ME)", - "fieldOfStudy": "Biomedical Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-07-18T23:42:27.896Z" - }, + "name": "LearnHub", + "description": "Online learning platform offering courses on various subjects with interactive content.", + "link": "https://github.com/username/learnhub", "_id": { - "$oid": "666cbc4a40af7b375e353129" + "$oid": "66723dae8f368f285d304c02" } }, { - "institution": "Vanderbilt University", - "degree": "Master's Degree", - "fieldOfStudy": "Mathematics", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-05-08T14:25:32.961Z" - }, + "name": "ARNavigation", + "description": "Augmented reality navigation app for real-time directions and location-based information.", + "link": "https://github.com/username/arnavigation", "_id": { - "$oid": "666cbc4a40af7b375e35312a" + "$oid": "66723dae8f368f285d304c03" } } ], - "projects": [ + "personalBio": "Passionate about contributing to the tech community through open-source projects and knowledge sharing.", + "testimonials": [ { - "name": "LearnHub", - "description": "Online learning platform offering courses on various subjects with interactive content.", - "link": "https://github.com/username/learnhub", + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "666cbc4a40af7b375e35312b" + "$oid": "66723dae8f368f285d304c04" } }, { - "name": "GenomeQuest", - "description": "Genomic data analysis tool for researchers and bioinformaticians.", - "link": "https://github.com/username/genomequest", + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "66723dae8f368f285d304c05" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "666cbc4a40af7b375e35312c" + "$oid": "66723dae8f368f285d304c06" } } ], - "personalBio": "Detail-oriented developer with a strong foundation in algorithms and data structures.", - "testimonials": [], "socialMediaLinks": { - "blog": "https://www.Marley-Boshard-fake-blog.com", - "other": ["https://www.instagram.com/Marley-Boshard-fake"] + "blog": "https://www.Ermina-Guyton-fake-blog.com", + "other": ["https://www.instagram.com/Ermina-Guyton-fake"] }, "availabilityForNetworking": true, - "bootcampExperience": "BrainStation", + "bootcampExperience": "Makers Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353122" + "$oid": "66723dae8f368f285d304bf9" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352eb2" + "$oid": "66723da68f368f285d304ad7" }, - "firstName": "Eb", - "lastName": "Dargie", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "CTRI 32", + "firstName": "Shelton", + "lastName": "Halwood", + "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "cohort": "LA 83", "graduationYear": 2024, - "email": "edargie11@artisteer.com", - "linkedInProfile": "https://www.linkedin.com/in/Eb-Dargie-fake", + "email": "shalwooda@sciencedirect.com", + "linkedInProfile": "https://www.linkedin.com/in/Shelton-Halwood-fake", "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", "skills": [ - "GraphQL", - "Legacy Code Management", + "PaaS (Platform as a Service)", + "Mobile Development", "Leadership", - "WebSockets", - "Node.js", - "Robotic Process Automation" - ], - "specializations": [ - "Algorithm Design", - "Laravel", - "React", - "ASP.NET", - "Time Management", - "Cloud Computing", - "Code Review", - "Event-Driven Architecture", - "Integration Testing", + "Spring Boot", "Microservices", - "CSS", - "Infrastructure as Code", - "Kubernetes", - "Design Patterns", - "WebSockets", - "Data Warehousing", - "Object-Oriented Programming" + "Edge Computing", + "Data Science", + "Vue.js", + "FaaS (Function as a Service)", + "Integration Testing", + "Agile Development", + "Automated Testing" ], + "specializations": ["Data Visualization", "Leadership"], "careerInformation": { - "currentPosition": { "title": "Software Engineer", "company": "VMware" }, + "currentPosition": { "title": "Backend Developer", "company": "Shopify" }, "pastPositions": [ { - "title": "Test Engineer", - "company": "Qualcomm", + "title": "Automation Engineer", + "company": "Datadog", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2028-02-22T23:10:03.309Z" + "$date": "2027-10-23T22:34:02.474Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35312e" + "$oid": "66723dae8f368f285d304c08" } }, { - "title": "Software Engineer", - "company": "Okta", + "title": "Senior Software Engineer", + "company": "Robinhood", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2026-09-02T13:42:32.039Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304c09" + } + }, + { + "title": "Software Developer", + "company": "Snowflake", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-01-10T23:42:24.333Z" + "$date": "2027-04-04T12:24:55.498Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35312f" + "$oid": "66723dae8f368f285d304c0a" } } ] }, "education": [ { - "institution": "Yale University", - "degree": "Master of Science (MS)", - "fieldOfStudy": "Chemistry", + "institution": "Vanderbilt University", + "degree": "Doctor of Pharmacy (PharmD)", + "fieldOfStudy": "Computer Science", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2027-10-06T22:26:05.951Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304c0b" + } + }, + { + "institution": "University of Alberta", + "degree": "Master of Public Administration (MPA)", + "fieldOfStudy": "Urban Planning", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-01-22T23:10:20.337Z" + "$date": "2028-06-08T07:30:17.321Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353130" + "$oid": "66723dae8f368f285d304c0c" } } ], "projects": [ { - "name": "CloudStorage", - "description": "Cloud storage service with file synchronization and sharing capabilities.", - "link": "https://github.com/username/cloudstorage", + "name": "SmartHomeHub", + "description": "Centralized home automation system integrating IoT devices for smart living.", + "link": "https://github.com/username/smarthomehub", "_id": { - "$oid": "666cbc4a40af7b375e353131" + "$oid": "66723dae8f368f285d304c0d" } }, { - "name": "DataCrunch", - "description": "Real-time data analytics platform for extracting insights from big data.", - "link": "https://github.com/username/datacrunch", + "name": "EcoTech", + "description": "Environmental monitoring and conservation app with real-time data visualization.", + "link": "https://github.com/username/ecotech", "_id": { - "$oid": "666cbc4a40af7b375e353132" + "$oid": "66723dae8f368f285d304c0e" } }, { - "name": "SmartInventory", - "description": "Inventory management system with RFID and IoT integration for tracking assets.", - "link": "https://github.com/username/smartinventory", + "name": "CloudStorage", + "description": "Cloud storage service with file synchronization and sharing capabilities.", + "link": "https://github.com/username/cloudstorage", "_id": { - "$oid": "666cbc4a40af7b375e353133" + "$oid": "66723dae8f368f285d304c0f" } - } - ], - "personalBio": "Focused on delivering user-centric solutions that address real-world needs and challenges.", - "testimonials": [ + }, { - "from": "Daniel Lee", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "name": "SmartHomeHub", + "description": "Centralized home automation system integrating IoT devices for smart living.", + "link": "https://github.com/username/smarthomehub", "_id": { - "$oid": "666cbc4a40af7b375e353134" + "$oid": "66723dae8f368f285d304c10" } }, { - "from": "Aiden Walker", - "relation": "CTO at Innovate Solutions", - "text": "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", + "name": "AIAssistant", + "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", + "link": "https://github.com/username/aiassistant", "_id": { - "$oid": "666cbc4a40af7b375e353135" + "$oid": "66723dae8f368f285d304c11" } } ], - "socialMediaLinks": { "other": ["https://www.instagram.com/Eb-Dargie-fake"] }, - "availabilityForNetworking": false, - "bootcampExperience": "BrainStation", + "personalBio": "Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Shelton-Halwood-fake", + "other": ["https://www.instagram.com/Shelton-Halwood-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Coding Dojo", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e35312d" + "$oid": "66723dae8f368f285d304c07" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352eb3" + "$oid": "66723da68f368f285d304ad8" }, - "firstName": "Porter", - "lastName": "Paladini", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "cohort": "ECRI 97", + "firstName": "Nigel", + "lastName": "Clemenzo", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "CTRI 75", "graduationYear": 2024, - "email": "ppaladini12@deliciousdays.com", - "linkedInProfile": "https://www.linkedin.com/in/Porter-Paladini-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", - "skills": [ - "IoT (Internet of Things)", - "Technical Writing", - "Django", - "Event-Driven Architecture", - "Concurrency", - "Pair Programming", - "Docker", - "CI/CD", - "Machine Learning", - "Natural Language Processing", - "Vue.js", - "Java", - "Software Architecture", - "AWS" - ], + "email": "nclemenzob@fotki.com", + "linkedInProfile": "https://www.linkedin.com/in/Nigel-Clemenzo-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": ["Event-Driven Architecture"], "specializations": [ - "FaaS (Function as a Service)", - "Agile Development", - "API Integration", - "Flask", "Data Science", - "Infrastructure as Code", - "PaaS (Platform as a Service)", + "Python", + "IoT (Internet of Things)", "Time Management", - "Node.js", - "Performance Optimization", - "AWS", - "Collaboration", - "CI/CD", - "HTML" + "Database Design", + "BDD (Behavior-Driven Development)", + "Big Data" ], "careerInformation": { - "currentPosition": { "title": "Product Manager", "company": "PayPal" }, + "currentPosition": { "title": "iOS Developer", "company": "HubSpot" }, "pastPositions": [ { - "title": "Backend Developer", - "company": "Airbnb", + "title": "Site Reliability Engineer", + "company": "Facebook", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2028-03-02T19:09:09.527Z" + "$date": "2027-08-13T15:22:23.830Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353137" + "$oid": "66723dae8f368f285d304c13" } }, { - "title": "Android Developer", - "company": "Zoom", + "title": "Data Engineer", + "company": "Palantir", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2028-05-07T03:21:08.245Z" + "$date": "2026-07-12T07:14:02.706Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353138" + "$oid": "66723dae8f368f285d304c14" } }, { - "title": "Android Developer", - "company": "Red Hat", + "title": "Technical Lead", + "company": "Qualcomm", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2026-05-08T03:58:43.449Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304c15" + } + }, + { + "title": "Lead Software Engineer", + "company": "Asana", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2025-03-18T18:46:31.823Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304c16" + } + }, + { + "title": "Product Manager", + "company": "IBM", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-01-18T02:48:38.058Z" + "$date": "2026-12-12T09:44:25.866Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353139" + "$oid": "66723dae8f368f285d304c17" } } ] }, "education": [ { - "institution": "University of South Carolina", - "degree": "Postdoctoral Research", - "fieldOfStudy": "Theater", + "institution": "Case Western Reserve University", + "degree": "Master of Science (MS)", + "fieldOfStudy": "Film Studies", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-04-07T00:22:55.743Z" + "$date": "2026-08-14T21:04:11.241Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35313a" + "$oid": "66723dae8f368f285d304c18" + } + } + ], + "projects": [ + { + "name": "CryptoWallet", + "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", + "link": "https://github.com/username/cryptowallet", + "_id": { + "$oid": "66723dae8f368f285d304c19" + } + }, + { + "name": "ARNavigation", + "description": "Augmented reality navigation app for real-time directions and location-based information.", + "link": "https://github.com/username/arnavigation", + "_id": { + "$oid": "66723dae8f368f285d304c1a" } - } - ], - "projects": [ + }, { - "name": "SmartCarPark", - "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", - "link": "https://github.com/username/smartcarpark", + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", "_id": { - "$oid": "666cbc4a40af7b375e35313b" + "$oid": "66723dae8f368f285d304c1b" } - }, + } + ], + "personalBio": "Passionate about improving codebase efficiency through refactoring and performance tuning.", + "testimonials": [ { - "name": "DataCrunch", - "description": "Real-time data analytics platform for extracting insights from big data.", - "link": "https://github.com/username/datacrunch", + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "666cbc4a40af7b375e35313c" + "$oid": "66723dae8f368f285d304c1c" } }, { - "name": "GenomeQuest", - "description": "Genomic data analysis tool for researchers and bioinformaticians.", - "link": "https://github.com/username/genomequest", + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "666cbc4a40af7b375e35313d" + "$oid": "66723dae8f368f285d304c1d" } }, { - "name": "EduTech", - "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", - "link": "https://github.com/username/edutech", + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", "_id": { - "$oid": "666cbc4a40af7b375e35313e" + "$oid": "66723dae8f368f285d304c1e" } } ], - "personalBio": "Experienced in building scalable microservices architectures and integrating third-party APIs.", - "testimonials": [], "socialMediaLinks": { - "twitter": "https://x.com/Porter-Paladini-fake", - "other": ["https://www.instagram.com/Porter-Paladini-fake"] + "twitter": "https://x.com/Nigel-Clemenzo-fake", + "other": ["https://www.instagram.com/Nigel-Clemenzo-fake"] }, "availabilityForNetworking": true, "bootcampExperience": "Makers Academy", @@ -6969,1705 +1909,1616 @@ "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353136" + "$oid": "66723dae8f368f285d304c12" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352eb4" + "$oid": "66723da68f368f285d304ad9" }, - "firstName": "Dian", - "lastName": "Dackombe", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "LA 32", + "firstName": "Colver", + "lastName": "Oswell", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "NYC 48", "graduationYear": 2024, - "email": "ddackombe13@ihg.com", - "linkedInProfile": "https://www.linkedin.com/in/Dian-Dackombe-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", - "skills": [ - "Software Architecture", - "RESTful APIs", + "email": "coswellc@wsj.com", + "linkedInProfile": "https://www.linkedin.com/in/Colver-Oswell-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": ["Agile Development", "NoSQL", "Vue.js"], + "specializations": [ + "Angular", "FaaS (Function as a Service)", - "Quantum Computing", - "Performance Optimization", - "Functional Programming", - "Laravel", - "Ruby", - "Design Patterns", - "Automated Testing", - "WebSockets", - "Leadership", - "Infrastructure as Code", - "System Design", - "Event-Driven Architecture" + "Data Science", + "Parallel Computing", + "PaaS (Platform as a Service)", + "Event-Driven Architecture", + "Git", + "Graph Theory", + "Natural Language Processing" ], - "specializations": ["Unit Testing", "Graph Databases", "Angular"], "careerInformation": { - "currentPosition": { "title": "Engineering Manager", "company": "Pinterest" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "Ohio State University", - "degree": "Associate Degree", - "fieldOfStudy": "Biochemistry", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "currentPosition": { "title": "Frontend Developer", "company": "Zoom" }, + "pastPositions": [ + { + "title": "Backend Developer", + "company": "Intel", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2028-03-19T19:53:16.224Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304c20" + } }, - "endDate": { - "$date": "2025-08-01T21:14:26.484Z" + { + "title": "Mobile Developer", + "company": "Netflix", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2024-09-20T21:26:30.040Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304c21" + } }, - "_id": { - "$oid": "666cbc4a40af7b375e353140" + { + "title": "Technical Lead", + "company": "DoorDash", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2026-03-03T09:58:37.154Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304c22" + } } - }, + ] + }, + "education": [], + "projects": [ { - "institution": "University College London (UCL)", - "degree": "Master of Social Work (MSW)", - "fieldOfStudy": "Education", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-09-19T23:03:44.448Z" - }, + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", "_id": { - "$oid": "666cbc4a40af7b375e353141" + "$oid": "66723dae8f368f285d304c23" } }, { - "institution": "Rice University", - "degree": "Doctor of Dental Medicine (DMD)", - "fieldOfStudy": "Biochemistry", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-07-28T06:10:32.764Z" - }, + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", "_id": { - "$oid": "666cbc4a40af7b375e353142" + "$oid": "66723dae8f368f285d304c24" } }, { - "institution": "University of California, San Diego (UCSD)", - "degree": "Master of Fine Arts (MFA)", - "fieldOfStudy": "Anthropology", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-02-25T17:44:12.834Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353143" - } - } - ], - "projects": [ - { - "name": "CloudGuard", - "description": "Advanced cloud security suite ensuring data protection and compliance.", - "link": "https://github.com/username/cloudguard", + "name": "HealthMonitor", + "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", + "link": "https://github.com/username/healthmonitor", "_id": { - "$oid": "666cbc4a40af7b375e353144" + "$oid": "66723dae8f368f285d304c25" } }, { - "name": "CryptoTrack", - "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", - "link": "https://github.com/username/cryptotrack", + "name": "VirtualAssistant", + "description": "Virtual assistant software for voice command-based tasks and personal assistance.", + "link": "https://github.com/username/virtualassistant", "_id": { - "$oid": "666cbc4a40af7b375e353145" + "$oid": "66723dae8f368f285d304c26" } }, { - "name": "SmartHomeHub", - "description": "Centralized home automation system integrating IoT devices for smart living.", - "link": "https://github.com/username/smarthomehub", + "name": "EcoTech", + "description": "Environmental monitoring and conservation app with real-time data visualization.", + "link": "https://github.com/username/ecotech", "_id": { - "$oid": "666cbc4a40af7b375e353146" + "$oid": "66723dae8f368f285d304c27" } } ], - "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", + "personalBio": "Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.", "testimonials": [ { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", "_id": { - "$oid": "666cbc4a40af7b375e353147" + "$oid": "66723dae8f368f285d304c28" } }, { - "from": "Sophia Turner", + "from": "Sophie Turner", "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "66723dae8f368f285d304c29" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "_id": { + "$oid": "66723dae8f368f285d304c2a" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "666cbc4a40af7b375e353148" + "$oid": "66723dae8f368f285d304c2b" } } ], - "socialMediaLinks": { - "twitter": "https://x.com/Dian-Dackombe-fake", - "blog": "https://www.Dian-Dackombe-fake-blog.com", - "other": ["https://www.instagram.com/Dian-Dackombe-fake"] + "socialMediaLinks": { "other": ["https://www.instagram.com/Colver-Oswell-fake"] }, + "availabilityForNetworking": false, + "bootcampExperience": "The Tech Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304c1f" }, - "availabilityForNetworking": true, - "bootcampExperience": "General Assembly", + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304ada" + }, + "firstName": "Saundra", + "lastName": "Normabell", + "cohort": "WCRI 76", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e35313f" + "$oid": "66723dae8f368f285d304c2c" }, + "education": [], + "projects": [], + "testimonials": [], "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352eb5" + "$oid": "66723da68f368f285d304adb" }, - "firstName": "Freedman", - "lastName": "Scrafton", + "firstName": "Grant", + "lastName": "Chasney", "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "FTRI 65", + "cohort": "WCRI 72", "graduationYear": 2024, - "email": "fscrafton14@posterous.com", - "linkedInProfile": "https://www.linkedin.com/in/Freedman-Scrafton-fake", - "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "email": "gchasneye@mediafire.com", + "linkedInProfile": "https://www.linkedin.com/in/Grant-Chasney-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", "skills": [ - "Flask", - "Google Cloud Platform", - "Edge Computing", - "Pair Programming", - "Cybersecurity", - "AR/VR (Augmented/Virtual Reality)", - "Blockchain", + "Docker", + "Big Data", + "Automated Testing", + "Continuous Deployment", + "Infrastructure as Code", + "CSS", + "Problem-Solving", "Kubernetes", - "Angular", - "Legacy Code Management", - "System Design", - "Natural Language Processing", - "CSS" + "Algorithm Design", + "Integration Testing", + "Concurrency" ], "specializations": [ + "Natural Language Processing", "AWS", - "Mobile Development", - "Django", - "Ruby", - "React", + "Algorithm Design", + "Graph Theory", + "Quantum Computing", + "Functional Programming", + "Azure", + "Code Review", "Continuous Deployment", - "Microservices", - "Infrastructure as Code", - "Quantum Computing", - "FaaS (Function as a Service)", - "AR/VR (Augmented/Virtual Reality)", - "Docker", - "User Experience (UX) Design" + "Angular", + "Cybersecurity", + "Google Cloud Platform" ], "careerInformation": { - "currentPosition": { "title": "Technical Program Manager", "company": "Amazon" }, + "currentPosition": { "title": "Engineering Manager", "company": "DocuSign" }, "pastPositions": [ { - "title": "Web Developer", - "company": "VMware", + "title": "Backend Developer", + "company": "Apple", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-02-09T15:24:50.598Z" + "$date": "2024-10-24T08:31:44.574Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35314a" + "$oid": "66723dae8f368f285d304c2e" } }, { - "title": "Technical Lead", - "company": "Intel", + "title": "Security Engineer", + "company": "Twilio", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2026-07-28T19:52:30.032Z" + "$date": "2028-04-13T03:33:18.075Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35314b" + "$oid": "66723dae8f368f285d304c2f" } }, { - "title": "Automation Engineer", - "company": "Datadog", + "title": "Technical Lead", + "company": "Intel", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2026-08-31T06:48:13.947Z" + "$date": "2027-08-15T01:49:38.957Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35314c" + "$oid": "66723dae8f368f285d304c30" } }, { - "title": "Junior Software Engineer", - "company": "Asana", + "title": "Product Manager", + "company": "Spotify", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-10-05T03:14:56.711Z" + "$date": "2026-03-31T20:44:29.452Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35314d" + "$oid": "66723dae8f368f285d304c31" } }, { - "title": "Technical Program Manager", - "company": "Shopify", + "title": "Software Architect", + "company": "ServiceNow", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2028-01-28T17:34:22.410Z" + "$date": "2025-01-01T13:23:31.621Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35314e" + "$oid": "66723dae8f368f285d304c32" } } ] }, "education": [ { - "institution": "University of Rochester", - "degree": "Bachelor of Technology (BTech)", - "fieldOfStudy": "Mathematics", + "institution": "University of Houston", + "degree": "Master of Business Administration (MBA)", + "fieldOfStudy": "Psychology", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-01-09T16:37:20.305Z" + "$date": "2025-12-21T04:02:00.672Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35314f" + "$oid": "66723dae8f368f285d304c33" } }, { - "institution": "Boston University", - "degree": "Bachelor of Arts (BA)", - "fieldOfStudy": "Biomedical Engineering", + "institution": "Tsinghua University", + "degree": "Professional Development", + "fieldOfStudy": "Chemical Engineering", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-08-17T17:10:03.754Z" + "$date": "2027-06-15T01:32:50.478Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353150" + "$oid": "66723dae8f368f285d304c34" } }, { - "institution": "Johns Hopkins University", - "degree": "Master of Arts (MA)", - "fieldOfStudy": "Aerospace Engineering", + "institution": "University of Minnesota", + "degree": "Doctor of Medicine (MD)", + "fieldOfStudy": "Dentistry", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-11-18T00:40:13.771Z" + "$date": "2027-10-28T22:32:27.119Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353151" + "$oid": "66723dae8f368f285d304c35" } } ], "projects": [ { - "name": "RecruitmentAI", - "description": "AI-powered recruitment platform for matching candidates with job opportunities.", - "link": "https://github.com/username/recruitmentai", + "name": "FoodDelivery", + "description": "Online food delivery platform connecting restaurants with customers for food ordering.", + "link": "https://github.com/username/fooddelivery", "_id": { - "$oid": "666cbc4a40af7b375e353152" + "$oid": "66723dae8f368f285d304c36" } }, { - "name": "VirtualTour", - "description": "Virtual reality tour application for immersive travel experiences.", - "link": "https://github.com/username/virtualtour", - "_id": { - "$oid": "666cbc4a40af7b375e353153" - } - } - ], - "personalBio": "Devoted to fostering a collaborative team environment and mentoring junior developers.", - "testimonials": [ - { - "from": "Sophia Martinez", - "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", "_id": { - "$oid": "666cbc4a40af7b375e353154" + "$oid": "66723dae8f368f285d304c37" } }, { - "from": "Sophia Martinez", - "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", "_id": { - "$oid": "666cbc4a40af7b375e353155" + "$oid": "66723dae8f368f285d304c38" } }, { - "from": "Liam Harris", - "relation": "Lead Developer at CloudTech", - "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", "_id": { - "$oid": "666cbc4a40af7b375e353156" + "$oid": "66723dae8f368f285d304c39" } } ], - "socialMediaLinks": { "other": ["https://www.instagram.com/Freedman-Scrafton-fake"] }, - "availabilityForNetworking": true, - "bootcampExperience": "CareerFoundry", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e353149" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352eb6" - }, - "firstName": "Tabbitha", - "lastName": "Jolliffe", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "ECRI 71", - "graduationYear": 2024, - "email": "tjolliffe15@bbb.org", - "linkedInProfile": "https://www.linkedin.com/in/Tabbitha-Jolliffe-fake", - "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", - "skills": [ - "Parallel Computing", - "Machine Learning", - "GraphQL", - "Big Data", - "Reactive Programming", - "Functional Programming", - "Scrum", - "Data Science", - "SaaS (Software as a Service)", - "Performance Optimization", - "Software Architecture", - "Google Cloud Platform", - "Android Development" - ], - "specializations": [ - "User Experience (UX) Design", - "Software Architecture", - "Scrum", - "SQL", - "Deep Learning", - "Project Management", - "Quantum Computing", - "HTML" - ], - "careerInformation": { - "currentPosition": { "title": "Backend Developer", "company": "Snowflake" }, - "pastPositions": [ - { - "title": "AI Engineer", - "company": "Slack", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-07-02T14:58:24.865Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353158" - } - }, - { - "title": "Automation Engineer", - "company": "Uber", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-12-27T23:33:49.774Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353159" - } - }, - { - "title": "Mobile Developer", - "company": "Facebook", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-12-16T04:30:35.543Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35315a" - } - } - ] - }, - "education": [ + "personalBio": "Experienced in Agile methodologies, with a track record of delivering projects on time and within budget.", + "testimonials": [ { - "institution": "Georgia Institute of Technology", - "degree": "Bachelor of Engineering (BE)", - "fieldOfStudy": "Medicine", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-08-06T01:34:24.076Z" - }, + "from": "Olivia White", + "relation": "Tech Lead at Cloud Innovations", + "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", "_id": { - "$oid": "666cbc4a40af7b375e35315b" + "$oid": "66723dae8f368f285d304c3a" } }, { - "institution": "California Institute of Technology (Caltech)", - "degree": "Executive Education", - "fieldOfStudy": "Linguistics", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2028-01-16T02:42:18.777Z" - }, + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e35315c" + "$oid": "66723dae8f368f285d304c3b" } }, - { - "institution": "Australian National University", - "degree": "Master of Technology (MTech)", - "fieldOfStudy": "Electrical Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-03-29T23:10:26.787Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35315d" - } - } - ], - "projects": [], - "personalBio": "Driven by a passion for problem-solving and a commitment to continuous professional development.", - "testimonials": [ { "from": "Sophia Brown", "relation": "Product Owner at AgileSoft", "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "666cbc4a40af7b375e35315e" + "$oid": "66723dae8f368f285d304c3c" } }, { - "from": "David Smith", - "relation": "Colleague at InnovateTech Ltd.", - "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "66723dae8f368f285d304c3d" + } + }, + { + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", "_id": { - "$oid": "666cbc4a40af7b375e35315f" + "$oid": "66723dae8f368f285d304c3e" } } ], "socialMediaLinks": { - "twitter": "https://x.com/Tabbitha-Jolliffe-fake", - "blog": "https://www.Tabbitha-Jolliffe-fake-blog.com", - "other": ["https://www.instagram.com/Tabbitha-Jolliffe-fake"] + "twitter": "https://x.com/Grant-Chasney-fake", + "blog": "https://www.Grant-Chasney-fake-blog.com", + "other": ["https://www.instagram.com/Grant-Chasney-fake"] }, "availabilityForNetworking": true, - "bootcampExperience": "Lambda School", + "bootcampExperience": "Springboard", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353157" + "$oid": "66723dae8f368f285d304c2d" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352eb7" + "$oid": "66723da68f368f285d304adc" }, - "firstName": "Jordon", - "lastName": "Ganley", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "cohort": "PTRI 71", + "firstName": "Franni", + "lastName": "Chance", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "PTRI 63", "graduationYear": 2024, - "email": "jganley16@geocities.jp", - "linkedInProfile": "https://www.linkedin.com/in/Jordon-Ganley-fake", - "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", - "skills": ["Django", "User Experience (UX) Design", "Cloud Computing"], + "email": "fchancef@ted.com", + "linkedInProfile": "https://www.linkedin.com/in/Franni-Chance-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "skills": [], "specializations": [ - "C#", - "Ruby", - "IoT (Internet of Things)", - "Cloud Computing", - "CI/CD", + "Performance Optimization", + "Quantum Computing", + "Graph Databases", + "Cybersecurity", + "WebSockets", + "Functional Programming", + "Version Control", + "Reactive Programming", + "C++", + "HTML", + "DevOps", "ASP.NET", - "Code Review", - "Leadership" - ], - "careerInformation": { - "currentPosition": { "title": "Technical Program Manager", "company": "LinkedIn" }, - "pastPositions": [ - { - "title": "Test Engineer", - "company": "HubSpot", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-12-29T00:07:38.410Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353161" - } - }, + "Critical Thinking", + "Software Architecture", + "NoSQL", + "Data Science" + ], + "careerInformation": { + "currentPosition": { "title": "Lead Software Engineer", "company": "Datadog" }, + "pastPositions": [ { - "title": "Data Engineer", - "company": "Snapchat", + "title": "Senior Software Engineer", + "company": "Oracle", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2026-07-10T06:14:16.318Z" + "$date": "2025-02-06T06:27:50.238Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353162" + "$oid": "66723dae8f368f285d304c40" } }, { - "title": "Machine Learning Engineer", - "company": "IBM", + "title": "Technical Program Manager", + "company": "PayPal", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-09-17T19:39:34.567Z" + "$date": "2024-08-11T12:27:05.541Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353163" + "$oid": "66723dae8f368f285d304c41" } }, { - "title": "Lead Software Engineer", - "company": "Snapchat", + "title": "Full Stack Developer", + "company": "Oracle", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2024-12-25T21:10:19.549Z" + "$date": "2027-05-29T21:24:21.794Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353164" + "$oid": "66723dae8f368f285d304c42" } } ] }, "education": [ { - "institution": "London School of Economics and Political Science (LSE)", - "degree": "Executive Education", - "fieldOfStudy": "Journalism", + "institution": "Washington University in St. Louis", + "degree": "Doctor of Veterinary Medicine (DVM)", + "fieldOfStudy": "Interior Design", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-05-05T01:52:19.265Z" + "$date": "2025-05-07T03:08:27.606Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353165" + "$oid": "66723dae8f368f285d304c43" } - } - ], - "projects": [ + }, { - "name": "SecureBackup", - "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", - "link": "https://github.com/username/securebackup", + "institution": "University of Edinburgh", + "degree": "Diploma Program", + "fieldOfStudy": "Electrical Engineering", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2027-01-06T12:59:18.404Z" + }, "_id": { - "$oid": "666cbc4a40af7b375e353166" + "$oid": "66723dae8f368f285d304c44" } }, { - "name": "CodeAnalyzer", - "description": "Static code analysis tool for detecting bugs and code quality improvements.", - "link": "https://github.com/username/codeanalyzer", + "institution": "University of Rochester", + "degree": "Master of Fine Arts (MFA)", + "fieldOfStudy": "History", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2027-05-25T18:16:03.964Z" + }, "_id": { - "$oid": "666cbc4a40af7b375e353167" + "$oid": "66723dae8f368f285d304c45" } } ], - "personalBio": "Experienced in building scalable microservices architectures and integrating third-party APIs.", + "projects": [], + "personalBio": "Advocate for diversity and inclusion in the tech industry, fostering a welcoming and supportive workplace culture.", "testimonials": [ { - "from": "Lucas Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", "_id": { - "$oid": "666cbc4a40af7b375e353168" + "$oid": "66723dae8f368f285d304c46" } }, { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", "_id": { - "$oid": "666cbc4a40af7b375e353169" + "$oid": "66723dae8f368f285d304c47" } }, { - "from": "Emily Brown", - "relation": "Client at GlobalSoft Solutions", - "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "66723dae8f368f285d304c48" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "66723dae8f368f285d304c49" + } + }, + { + "from": "Olivia White", + "relation": "Tech Lead at Cloud Innovations", + "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", "_id": { - "$oid": "666cbc4a40af7b375e35316a" + "$oid": "66723dae8f368f285d304c4a" } } ], - "socialMediaLinks": { - "twitter": "https://x.com/Jordon-Ganley-fake", - "blog": "https://www.Jordon-Ganley-fake-blog.com", - "other": ["https://www.instagram.com/Jordon-Ganley-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Kenzie Academy", + "socialMediaLinks": { "other": ["https://www.instagram.com/Franni-Chance-fake"] }, + "availabilityForNetworking": false, + "bootcampExperience": "Codesmith", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353160" + "$oid": "66723dae8f368f285d304c3f" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352eb8" + "$oid": "66723da68f368f285d304add" }, - "firstName": "Annora", - "lastName": "Brigge", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "cohort": "FTRI 2", + "firstName": "Clarance", + "lastName": "Meecher", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "NYC 48", "graduationYear": 2024, - "email": "abrigge17@joomla.org", - "linkedInProfile": "https://www.linkedin.com/in/Annora-Brigge-fake", - "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", - "skills": [], + "email": "cmeecherg@addthis.com", + "linkedInProfile": "https://www.linkedin.com/in/Clarance-Meecher-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": ["Microservices", "Functional Programming", "Problem-Solving", "Deep Learning"], "specializations": [ - "Scrum", - "TDD (Test-Driven Development)", - "React", - "Microservices", - "Leadership", + "Quantum Computing", "CSS", - "C++", - "Problem-Solving", - "Containerization", - "ASP.NET", - "Django", - "Android Development", - "AWS", - "Agile Development", + "Google Cloud Platform", + "Time Management", "Machine Learning", - "IoT (Internet of Things)", - "AR/VR (Augmented/Virtual Reality)" + "Collaboration", + "Azure", + "WebSockets", + "Natural Language Processing", + "Technical Writing", + "CI/CD", + "SaaS (Software as a Service)", + "BDD (Behavior-Driven Development)", + "Continuous Deployment", + "Django", + "JavaScript", + "Leadership", + "Laravel" ], "careerInformation": { - "currentPosition": { "title": "Senior Software Engineer", "company": "Apple" }, + "currentPosition": { "title": "Machine Learning Engineer", "company": "Salesforce" }, "pastPositions": [ { - "title": "Software Architect", - "company": "Activision Blizzard", + "title": "Lead Software Engineer", + "company": "DoorDash", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2028-04-08T17:44:40.529Z" + "$date": "2026-12-22T21:50:04.148Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35316c" + "$oid": "66723dae8f368f285d304c4c" } }, { - "title": "DevOps Engineer", - "company": "Atlassian", + "title": "Senior Software Engineer", + "company": "Tesla", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2028-04-17T12:18:53.171Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304c4d" + } + }, + { + "title": "Technical Lead", + "company": "Netflix", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2027-02-06T13:01:58.274Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304c4e" + } + }, + { + "title": "Security Engineer", + "company": "Oracle", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2028-04-22T17:04:03.094Z" + "$date": "2025-05-04T18:29:08.861Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35316d" + "$oid": "66723dae8f368f285d304c4f" } } ] }, "education": [ { - "institution": "University of Utah", - "degree": "Doctor of Veterinary Medicine (DVM)", - "fieldOfStudy": "History", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-09-26T14:44:32.220Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35316e" - } - }, - { - "institution": "National University of Singapore (NUS)", - "degree": "Master of Engineering (ME)", - "fieldOfStudy": "Education", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-07-29T09:55:05.313Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35316f" - } - }, - { - "institution": "Carnegie Mellon University", - "degree": "Master of Science (MS)", - "fieldOfStudy": "Veterinary Medicine", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2028-02-21T00:19:30.089Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353170" - } - }, - { - "institution": "Yale University", - "degree": "Bachelor of Science (BS)", - "fieldOfStudy": "Biology", + "institution": "University of Oklahoma", + "degree": "Executive Education", + "fieldOfStudy": "Civil Engineering", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2028-03-06T12:51:03.148Z" + "$date": "2027-08-27T05:54:24.377Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353171" + "$oid": "66723dae8f368f285d304c50" } } ], "projects": [ { - "name": "SocialConnect", - "description": "Social media integration platform for managing multiple social accounts.", - "link": "https://github.com/username/socialconnect", - "_id": { - "$oid": "666cbc4a40af7b375e353172" - } - }, - { - "name": "RecruitmentAI", - "description": "AI-powered recruitment platform for matching candidates with job opportunities.", - "link": "https://github.com/username/recruitmentai", - "_id": { - "$oid": "666cbc4a40af7b375e353173" - } - }, - { - "name": "VirtualTour", - "description": "Virtual reality tour application for immersive travel experiences.", - "link": "https://github.com/username/virtualtour", - "_id": { - "$oid": "666cbc4a40af7b375e353174" - } - } - ], - "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", - "testimonials": [ - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "666cbc4a40af7b375e353175" - } - }, - { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "name": "SmartLearning", + "description": "AI-driven personalized learning platform with adaptive learning algorithms.", + "link": "https://github.com/username/smartlearning", "_id": { - "$oid": "666cbc4a40af7b375e353176" + "$oid": "66723dae8f368f285d304c51" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "name": "AIAssistant", + "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", + "link": "https://github.com/username/aiassistant", "_id": { - "$oid": "666cbc4a40af7b375e353177" + "$oid": "66723dae8f368f285d304c52" } } ], + "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", + "testimonials": [], "socialMediaLinks": { - "twitter": "https://x.com/Annora-Brigge-fake", - "blog": "https://www.Annora-Brigge-fake-blog.com", - "other": ["https://www.instagram.com/Annora-Brigge-fake"] + "blog": "https://www.Clarance-Meecher-fake-blog.com", + "other": ["https://www.instagram.com/Clarance-Meecher-fake"] }, "availabilityForNetworking": true, - "bootcampExperience": "Lambda School", + "bootcampExperience": "Codesmith", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e35316b" + "$oid": "66723dae8f368f285d304c4b" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352eb9" + "$oid": "66723da68f368f285d304ade" }, - "firstName": "Bethanne", - "lastName": "Osband", - "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "cohort": "FTRI 9", - "graduationYear": 2024, - "email": "bosband18@blinklist.com", - "linkedInProfile": "https://www.linkedin.com/in/Bethanne-Osband-fake", - "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "firstName": "Katharine", + "lastName": "Lancett", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "LA 89", + "graduationYear": 2024, + "email": "klancetth@sfgate.com", + "linkedInProfile": "https://www.linkedin.com/in/Katharine-Lancett-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", "skills": [ - "IoT (Internet of Things)", - "Leadership", - "Object-Oriented Programming", - "Cloud Computing", - "User Experience (UX) Design", - "Technical Writing", - "Git" + "Problem-Solving", + "Deep Learning", + "NoSQL", + "API Development", + "Parallel Computing" ], "specializations": [ - "Vue.js", - "ETL (Extract, Transform, Load)", - "Critical Thinking", - "Functional Programming", - "Edge Computing", - "Parallel Computing", - "FaaS (Function as a Service)", - "User Interface (UI) Design", + "WebSockets", "Natural Language Processing", - "Google Cloud Platform", - "Microservices", - "Robotic Process Automation", - "Problem-Solving", - "PaaS (Platform as a Service)", - "RESTful APIs", - "Continuous Deployment", - "Containerization" + "Azure", + "Docker", + "API Development", + "FaaS (Function as a Service)" ], "careerInformation": { - "currentPosition": { "title": "Software Engineer", "company": "ServiceNow" }, + "currentPosition": { "title": "Data Engineer", "company": "Zoom" }, "pastPositions": [ { - "title": "Mobile Developer", - "company": "Lyft", + "title": "Android Developer", + "company": "Amazon", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-08-25T20:25:41.833Z" + "$date": "2024-12-06T05:13:42.318Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353179" + "$oid": "66723dae8f368f285d304c54" } }, { - "title": "Full Stack Developer", - "company": "DoorDash", + "title": "Software Architect", + "company": "Coinbase", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2026-04-28T17:00:20.512Z" + "$date": "2027-08-15T10:52:29.202Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35317a" + "$oid": "66723dae8f368f285d304c55" } }, { - "title": "Test Engineer", - "company": "Spotify", + "title": "Junior Software Engineer", + "company": "Apple", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2026-02-15T06:58:31.428Z" + "$date": "2028-03-04T10:15:45.448Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35317b" + "$oid": "66723dae8f368f285d304c56" } } ] }, "education": [ { - "institution": "Rutgers University", - "degree": "Executive Education", - "fieldOfStudy": "Civil Engineering", + "institution": "Pennsylvania State University", + "degree": "Professional Development", + "fieldOfStudy": "Economics", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-11-12T08:27:13.424Z" + "$date": "2028-05-26T08:40:21.284Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35317c" + "$oid": "66723dae8f368f285d304c57" } }, { - "institution": "University of Wisconsin-Madison", - "degree": "Professional Degree", - "fieldOfStudy": "Chemical Engineering", + "institution": "Georgetown University", + "degree": "Doctor of Philosophy (PhD)", + "fieldOfStudy": "Marketing", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-06-07T02:16:05.276Z" + "$date": "2026-06-05T14:53:30.934Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35317d" + "$oid": "66723dae8f368f285d304c58" } }, { - "institution": "Clemson University", - "degree": "Doctor of Philosophy (PhD)", + "institution": "University of Oxford", + "degree": "Master of Technology (MTech)", "fieldOfStudy": "Aerospace Engineering", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-08-20T12:00:28.273Z" + "$date": "2026-06-24T18:49:50.403Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35317e" + "$oid": "66723dae8f368f285d304c59" } } ], "projects": [ { - "name": "SmartWatch", - "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", - "link": "https://github.com/username/smartwatch", - "_id": { - "$oid": "666cbc4a40af7b375e35317f" - } - }, - { - "name": "DataCrunch", - "description": "Real-time data analytics platform for extracting insights from big data.", - "link": "https://github.com/username/datacrunch", + "name": "CryptoTrack", + "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", + "link": "https://github.com/username/cryptotrack", "_id": { - "$oid": "666cbc4a40af7b375e353180" + "$oid": "66723dae8f368f285d304c5a" } }, { - "name": "NetPlanner", - "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", - "link": "https://github.com/username/netplanner", + "name": "EcoTech", + "description": "Environmental monitoring and conservation app with real-time data visualization.", + "link": "https://github.com/username/ecotech", "_id": { - "$oid": "666cbc4a40af7b375e353181" + "$oid": "66723dae8f368f285d304c5b" } }, { - "name": "CodeAnalyzer", - "description": "Static code analysis tool for detecting bugs and code quality improvements.", - "link": "https://github.com/username/codeanalyzer", + "name": "SmartGrid", + "description": "Smart grid technology for efficient energy distribution and consumption.", + "link": "https://github.com/username/smartgrid", "_id": { - "$oid": "666cbc4a40af7b375e353182" + "$oid": "66723dae8f368f285d304c5c" } } ], - "personalBio": "Adept at optimizing SQL and NoSQL databases for performance and scalability.", + "personalBio": "Devoted to fostering a collaborative team environment and mentoring junior developers.", "testimonials": [ { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", "_id": { - "$oid": "666cbc4a40af7b375e353183" + "$oid": "66723dae8f368f285d304c5d" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "666cbc4a40af7b375e353184" + "$oid": "66723dae8f368f285d304c5e" } }, { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "from": "Olivia White", + "relation": "Tech Lead at Cloud Innovations", + "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", "_id": { - "$oid": "666cbc4a40af7b375e353185" + "$oid": "66723dae8f368f285d304c5f" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "from": "Emily Brown", + "relation": "Client at GlobalSoft Solutions", + "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", "_id": { - "$oid": "666cbc4a40af7b375e353186" + "$oid": "66723dae8f368f285d304c60" } } ], - "socialMediaLinks": { - "twitter": "https://x.com/Bethanne-Osband-fake", - "blog": "https://www.Bethanne-Osband-fake-blog.com", - "other": ["https://www.instagram.com/Bethanne-Osband-fake"] + "socialMediaLinks": { "blog": "https://www.Katharine-Lancett-fake-blog.com", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Tech Elevator", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304c53" }, - "availabilityForNetworking": true, - "bootcampExperience": "Makers Academy", + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304adf" + }, + "firstName": "Margaret", + "lastName": "Dubber", + "cohort": "CTRI 39", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353178" + "$oid": "66723dae8f368f285d304c61" }, + "education": [], + "projects": [], + "testimonials": [], "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352eba" + "$oid": "66723da68f368f285d304ae0" }, - "firstName": "Hedda", - "lastName": "Tallquist", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "PTRI 10", + "firstName": "Addy", + "lastName": "Fass", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "CTRI 39", "graduationYear": 2024, - "email": "htallquist19@cisco.com", - "linkedInProfile": "https://www.linkedin.com/in/Hedda-Tallquist-fake", + "email": "afassj@vistaprint.com", + "linkedInProfile": "https://www.linkedin.com/in/Addy-Fass-fake", "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", "skills": [ - "AR/VR (Augmented/Virtual Reality)", - "Legacy Code Management", - "Vue.js", - "Integration Testing" + "RESTful APIs", + "Mobile Development", + "IoT (Internet of Things)", + "Database Design", + "Scrum", + "FaaS (Function as a Service)", + "iOS Development" ], "specializations": [ - "System Design", - "Kubernetes", - "BDD (Behavior-Driven Development)", - "GraphQL", - "Python", - "Graph Databases", - "Blockchain", - "Event-Driven Architecture", "Data Warehousing", - "Legacy Code Management", - "Docker" + "Database Design", + "Technical Writing", + "Ruby", + "Natural Language Processing", + "Vue.js", + "System Design", + "AR/VR (Augmented/Virtual Reality)", + "Cloud Computing", + "User Experience (UX) Design" ], "careerInformation": { - "currentPosition": { "title": "Engineering Manager", "company": "Activision Blizzard" }, + "currentPosition": { "title": "Software Developer", "company": "GitHub" }, "pastPositions": [ { - "title": "Senior Software Engineer", - "company": "Slack", + "title": "Web Developer", + "company": "Palantir", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-09-29T06:23:48.872Z" + "$date": "2026-05-16T15:19:16.506Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353188" + "$oid": "66723dae8f368f285d304c63" } }, { - "title": "Backend Developer", - "company": "Apple", + "title": "Principal Software Engineer", + "company": "Palantir", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2025-06-08T10:37:01.953Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304c64" + } + }, + { + "title": "Software Architect", + "company": "VMware", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-03-24T02:20:15.925Z" + "$date": "2025-02-27T20:46:16.528Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353189" + "$oid": "66723dae8f368f285d304c65" } } ] }, "education": [ { - "institution": "Nanyang Technological University (NTU)", - "degree": "Doctor of Dental Surgery (DDS)", - "fieldOfStudy": "Biomedical Engineering", + "institution": "Shanghai Jiao Tong University", + "degree": "Master of Arts (MA)", + "fieldOfStudy": "Theater", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2026-11-12T17:26:46.283Z" + "$date": "2025-04-30T15:58:47.957Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35318a" + "$oid": "66723dae8f368f285d304c66" } }, { - "institution": "University of Utah", - "degree": "Juris Doctor (JD)", - "fieldOfStudy": "Graphic Design", + "institution": "Peking University", + "degree": "Master of Business Administration (MBA)", + "fieldOfStudy": "Interior Design", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2028-01-28T17:35:46.352Z" + "$date": "2026-10-01T17:51:53.067Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35318b" + "$oid": "66723dae8f368f285d304c67" } }, { - "institution": "Purdue University", - "degree": "Doctor of Education (EdD)", - "fieldOfStudy": "Accounting", + "institution": "University of North Carolina at Chapel Hill", + "degree": "Diploma Program", + "fieldOfStudy": "Data Science", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-01-11T15:31:46.970Z" + "$date": "2025-10-11T06:47:07.458Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35318c" + "$oid": "66723dae8f368f285d304c68" } } ], "projects": [ { - "name": "SecureBackup", - "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", - "link": "https://github.com/username/securebackup", + "name": "RoboTrader", + "description": "Algorithmic trading platform for automated stock market analysis and trading.", + "link": "https://github.com/username/robotrader", "_id": { - "$oid": "666cbc4a40af7b375e35318d" + "$oid": "66723dae8f368f285d304c69" } }, { - "name": "LearnHub", - "description": "Online learning platform offering courses on various subjects with interactive content.", - "link": "https://github.com/username/learnhub", + "name": "CloudStorage", + "description": "Cloud storage service with file synchronization and sharing capabilities.", + "link": "https://github.com/username/cloudstorage", "_id": { - "$oid": "666cbc4a40af7b375e35318e" + "$oid": "66723dae8f368f285d304c6a" } }, { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", + "name": "AugmentWorks", + "description": "Augmented reality application for enhancing workplace productivity and training.", + "link": "https://github.com/username/augmentworks", "_id": { - "$oid": "666cbc4a40af7b375e35318f" + "$oid": "66723dae8f368f285d304c6b" } } ], - "personalBio": "Proven ability to lead technical projects from inception to successful deployment and maintenance.", + "personalBio": "Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.", "testimonials": [ { - "from": "Aiden Walker", - "relation": "CTO at Innovate Solutions", - "text": "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", "_id": { - "$oid": "666cbc4a40af7b375e353190" + "$oid": "66723dae8f368f285d304c6c" } }, { - "from": "Sophia Martinez", + "from": "Ella Watson", "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "666cbc4a40af7b375e353191" + "$oid": "66723dae8f368f285d304c6d" } }, { - "from": "Daniel Lee", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e353192" + "$oid": "66723dae8f368f285d304c6e" } }, { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "66723dae8f368f285d304c6f" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e353193" + "$oid": "66723dae8f368f285d304c70" } } ], - "socialMediaLinks": { "twitter": "https://x.com/Hedda-Tallquist-fake", "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "Nucamp", + "socialMediaLinks": { + "blog": "https://www.Addy-Fass-fake-blog.com", + "other": ["https://www.instagram.com/Addy-Fass-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "CareerFoundry", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353187" + "$oid": "66723dae8f368f285d304c62" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ebb" + "$oid": "66723da68f368f285d304ae1" }, - "firstName": "Lynelle", - "lastName": "Grosvener", - "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "cohort": "FTRI 15", + "firstName": "Sollie", + "lastName": "Puckinghorne", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "LA 54", "graduationYear": 2024, - "email": "lgrosvener1a@google.cn", - "linkedInProfile": "https://www.linkedin.com/in/Lynelle-Grosvener-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "email": "spuckinghornek@topsy.com", + "linkedInProfile": "https://www.linkedin.com/in/Sollie-Puckinghorne-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", "skills": [ - "Problem-Solving", - "Laravel", - "CSS", - "Refactoring", - "Big Data", - "SQL", - "Automated Testing" + "Vue.js", + "Microservices", + "Azure", + "IoT (Internet of Things)", + "Android Development", + "Data Science", + "Parallel Computing", + "Docker", + "WebSockets", + "PaaS (Platform as a Service)", + "iOS Development" ], "specializations": [ - "API Integration", - "SaaS (Software as a Service)", - "Flask", + "GraphQL", "User Experience (UX) Design", - "TDD (Test-Driven Development)", - "API Development", - "Refactoring", + "Laravel", + "Parallel Computing", + "Event-Driven Architecture", + "Blockchain", + "Code Review", + "Critical Thinking", + "CI/CD", "PaaS (Platform as a Service)", - "Concurrency", - "Android Development", - "React", - "Algorithm Design", - "DevOps", - "User Interface (UI) Design", - "Problem-Solving" + "System Design", + "Reactive Programming", + "Graph Databases", + "Django" ], "careerInformation": { - "currentPosition": { "title": "Technical Lead", "company": "HubSpot" }, - "pastPositions": [] + "currentPosition": { "title": "Mobile Developer", "company": "Amazon" }, + "pastPositions": [ + { + "title": "Technical Program Manager", + "company": "Dropbox", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2024-11-23T22:04:50.277Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304c72" + } + }, + { + "title": "Test Engineer", + "company": "Dropbox", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2027-06-24T01:15:45.320Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304c73" + } + } + ] }, "education": [ { - "institution": "University of Oklahoma", - "degree": "Master of Public Administration (MPA)", - "fieldOfStudy": "Interior Design", + "institution": "University of Massachusetts Amherst", + "degree": "Doctor of Medicine (MD)", + "fieldOfStudy": "Chemical Engineering", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2025-06-29T06:22:31.884Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304c74" + } + }, + { + "institution": "Case Western Reserve University", + "degree": "Continuing Education", + "fieldOfStudy": "Anthropology", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-07-24T08:49:17.590Z" + "$date": "2027-05-18T21:09:19.566Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353195" + "$oid": "66723dae8f368f285d304c75" } } ], "projects": [ { - "name": "RoboTrader", - "description": "Algorithmic trading platform for automated stock market analysis and trading.", - "link": "https://github.com/username/robotrader", + "name": "MediCare", + "description": "Medical appointment scheduling and patient management system for healthcare providers.", + "link": "https://github.com/username/medicare", "_id": { - "$oid": "666cbc4a40af7b375e353196" + "$oid": "66723dae8f368f285d304c76" } }, { - "name": "SmartInventory", - "description": "Inventory management system with RFID and IoT integration for tracking assets.", - "link": "https://github.com/username/smartinventory", + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", "_id": { - "$oid": "666cbc4a40af7b375e353197" + "$oid": "66723dae8f368f285d304c77" } }, { - "name": "HealthLink", - "description": "Telemedicine platform connecting patients with healthcare providers remotely.", - "link": "https://github.com/username/healthlink", + "name": "SmartHomeHub", + "description": "Centralized home automation system integrating IoT devices for smart living.", + "link": "https://github.com/username/smarthomehub", + "_id": { + "$oid": "66723dae8f368f285d304c78" + } + }, + { + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", + "_id": { + "$oid": "66723dae8f368f285d304c79" + } + }, + { + "name": "EduTech", + "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", + "link": "https://github.com/username/edutech", "_id": { - "$oid": "666cbc4a40af7b375e353198" + "$oid": "66723dae8f368f285d304c7a" } } ], - "personalBio": "Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.", + "personalBio": "Strong analytical thinker with a knack for troubleshooting and resolving complex technical issues.", "testimonials": [ { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "666cbc4a40af7b375e353199" + "$oid": "66723dae8f368f285d304c7b" } }, { - "from": "Lucas Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "666cbc4a40af7b375e35319a" + "$oid": "66723dae8f368f285d304c7c" } }, { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "666cbc4a40af7b375e35319b" + "$oid": "66723dae8f368f285d304c7d" } }, { - "from": "Sophia Martinez", - "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e35319c" + "$oid": "66723dae8f368f285d304c7e" } } ], - "socialMediaLinks": { "blog": "https://www.Lynelle-Grosvener-fake-blog.com", "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "Flatiron School", + "socialMediaLinks": { + "twitter": "https://x.com/Sollie-Puckinghorne-fake", + "other": ["https://www.instagram.com/Sollie-Puckinghorne-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Codesmith", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353194" + "$oid": "66723dae8f368f285d304c71" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ebc" + "$oid": "66723da68f368f285d304ae2" }, - "firstName": "Lenee", - "lastName": "Pethybridge", + "firstName": "Xena", + "lastName": "Tomczynski", "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "cohort": "CTRI 91", + "cohort": "NYC 22", "graduationYear": 2024, - "email": "lpethybridge1b@chron.com", - "linkedInProfile": "https://www.linkedin.com/in/Lenee-Pethybridge-fake", + "email": "xtomczynskil@ted.com", + "linkedInProfile": "https://www.linkedin.com/in/Xena-Tomczynski-fake", "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", "skills": [ - "Azure", - "Cloud Computing", - "GraphQL", - "Infrastructure as Code", - "WebSockets", "Google Cloud Platform", - "Refactoring" + "SaaS (Software as a Service)", + "Agile Development", + "API Development" + ], + "specializations": [ + "Continuous Deployment", + "Serverless Architecture", + "Deep Learning", + "Project Management", + "Infrastructure as Code", + "Vue.js", + "IoT (Internet of Things)" ], - "specializations": ["ASP.NET", "Laravel", "Serverless Architecture"], "careerInformation": { - "currentPosition": { "title": "Automation Engineer", "company": "Stripe" }, - "pastPositions": [ - { - "title": "Technical Program Manager", - "company": "Snapchat", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-06-29T13:01:25.468Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35319e" - } - }, - { - "title": "Software Developer", - "company": "Atlassian", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-12-16T18:03:24.211Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35319f" - } - }, - { - "title": "Technical Lead", - "company": "Okta", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-11-25T23:40:03.685Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3531a0" - } - }, - { - "title": "Site Reliability Engineer", - "company": "Google", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-12-27T08:30:28.173Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3531a1" - } - } - ] + "currentPosition": { + "title": "Technical Program Manager", + "company": "EA (Electronic Arts)" + }, + "pastPositions": [] }, "education": [ { - "institution": "Rice University", - "degree": "Master of Fine Arts (MFA)", - "fieldOfStudy": "Medicine", + "institution": "Georgia Institute of Technology", + "degree": "Doctor of Business Administration (DBA)", + "fieldOfStudy": "Aerospace Engineering", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-08-09T14:01:32.627Z" + "$date": "2026-12-25T20:45:38.163Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531a2" + "$oid": "66723dae8f368f285d304c80" } }, { - "institution": "Vanderbilt University", - "degree": "Executive Education", - "fieldOfStudy": "Environmental Engineering", + "institution": "University of Houston", + "degree": "Bachelor of Arts (BA)", + "fieldOfStudy": "Civil Engineering", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2026-05-12T08:20:25.233Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304c81" + } + }, + { + "institution": "Georgia Institute of Technology", + "degree": "Associate Degree", + "fieldOfStudy": "Marketing", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-08-22T07:55:31.685Z" + "$date": "2028-06-10T19:59:05.249Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531a3" + "$oid": "66723dae8f368f285d304c82" } } ], "projects": [ { - "name": "CloudGuard", - "description": "Advanced cloud security suite ensuring data protection and compliance.", - "link": "https://github.com/username/cloudguard", + "name": "HealthMonitor", + "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", + "link": "https://github.com/username/healthmonitor", "_id": { - "$oid": "666cbc4a40af7b375e3531a4" + "$oid": "66723dae8f368f285d304c83" } }, { - "name": "RoboTrader", - "description": "Algorithmic trading platform for automated stock market analysis and trading.", - "link": "https://github.com/username/robotrader", + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", "_id": { - "$oid": "666cbc4a40af7b375e3531a5" + "$oid": "66723dae8f368f285d304c84" } }, { - "name": "CodeReview", - "description": "Collaborative code review platform with annotations and feedback features.", - "link": "https://github.com/username/codereview", + "name": "SocialConnect", + "description": "Social media integration platform for managing multiple social accounts.", + "link": "https://github.com/username/socialconnect", "_id": { - "$oid": "666cbc4a40af7b375e3531a6" + "$oid": "66723dae8f368f285d304c85" } }, { - "name": "SocialConnect", - "description": "Social media integration platform for managing multiple social accounts.", - "link": "https://github.com/username/socialconnect", + "name": "TourismApp", + "description": "Mobile application for tourists providing travel guides and local recommendations.", + "link": "https://github.com/username/tourismapp", "_id": { - "$oid": "666cbc4a40af7b375e3531a7" + "$oid": "66723dae8f368f285d304c86" } } ], - "personalBio": "Innovative thinker with a track record of proposing and implementing creative solutions to technical challenges.", + "personalBio": "Committed to writing clean, maintainable code that meets rigorous performance standards.", "testimonials": [], - "socialMediaLinks": { - "twitter": "https://x.com/Lenee-Pethybridge-fake", - "blog": "https://www.Lenee-Pethybridge-fake-blog.com", - "other": ["https://www.instagram.com/Lenee-Pethybridge-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "General Assembly", + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Thinkful", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e35319d" + "$oid": "66723dae8f368f285d304c7f" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ebd" + "$oid": "66723da68f368f285d304ae3" }, - "firstName": "Ninnette", - "lastName": "Maden", - "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "cohort": "FTRI 94", + "firstName": "Harmonie", + "lastName": "Karpinski", + "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "cohort": "LA 37", "graduationYear": 2024, - "email": "nmaden1c@sciencedirect.com", - "linkedInProfile": "https://www.linkedin.com/in/Ninnette-Maden-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", - "skills": ["Problem-Solving"], - "specializations": [ - "Graph Theory", - "Google Cloud Platform", - "Critical Thinking", - "User Interface (UI) Design", - "Infrastructure as Code", - "Docker" + "email": "hkarpinskim@g.co", + "linkedInProfile": "https://www.linkedin.com/in/Harmonie-Karpinski-fake", + "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", + "skills": [ + "Kubernetes", + "C++", + "API Integration", + "HTML", + "Functional Programming", + "Laravel", + "CI/CD", + "Parallel Computing", + "RESTful APIs", + "Continuous Deployment", + "User Interface (UI) Design" ], + "specializations": ["Leadership", "API Integration"], "careerInformation": { - "currentPosition": { "title": "Data Engineer", "company": "Red Hat" }, + "currentPosition": { "title": "Technical Program Manager", "company": "Stripe" }, "pastPositions": [] }, "education": [ { - "institution": "University of Sydney", - "degree": "Postdoctoral Research", - "fieldOfStudy": "Theater", + "institution": "Purdue University", + "degree": "Master of Public Health (MPH)", + "fieldOfStudy": "Environmental Engineering", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-06-05T08:05:14.495Z" + "$date": "2027-12-27T10:00:44.784Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531a9" + "$oid": "66723dae8f368f285d304c88" } }, { - "institution": "Pennsylvania State University", - "degree": "Master's Degree", - "fieldOfStudy": "Nursing", + "institution": "University of Missouri", + "degree": "Master of Technology (MTech)", + "fieldOfStudy": "Computer Science", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2024-12-27T08:27:04.924Z" + "$date": "2027-02-16T19:13:32.244Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531aa" + "$oid": "66723dae8f368f285d304c89" } }, { - "institution": "University of California, Santa Barbara (UCSB)", - "degree": "Bachelor of Science (BS)", - "fieldOfStudy": "History", + "institution": "Kyoto University", + "degree": "Master of Social Work (MSW)", + "fieldOfStudy": "Accounting", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-03-17T08:40:29.603Z" + "$date": "2027-10-23T06:18:16.122Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531ab" + "$oid": "66723dae8f368f285d304c8a" } } ], "projects": [ { - "name": "VirtualAssistant", - "description": "Virtual assistant software for voice command-based tasks and personal assistance.", - "link": "https://github.com/username/virtualassistant", - "_id": { - "$oid": "666cbc4a40af7b375e3531ac" - } - }, - { - "name": "VoiceAssistant", - "description": "Voice-controlled personal assistant using natural language processing.", - "link": "https://github.com/username/voiceassistant", - "_id": { - "$oid": "666cbc4a40af7b375e3531ad" - } - }, - { - "name": "CodeBot", - "description": "Automated code generation tool using AI for faster development cycles.", - "link": "https://github.com/username/codebot", + "name": "RecruitmentAI", + "description": "AI-powered recruitment platform for matching candidates with job opportunities.", + "link": "https://github.com/username/recruitmentai", "_id": { - "$oid": "666cbc4a40af7b375e3531ae" + "$oid": "66723dae8f368f285d304c8b" } }, { - "name": "CodeAnalyzer", - "description": "Static code analysis tool for detecting bugs and code quality improvements.", - "link": "https://github.com/username/codeanalyzer", + "name": "FoodDelivery", + "description": "Online food delivery platform connecting restaurants with customers for food ordering.", + "link": "https://github.com/username/fooddelivery", "_id": { - "$oid": "666cbc4a40af7b375e3531af" + "$oid": "66723dae8f368f285d304c8c" } } ], - "personalBio": "Innovative thinker with a track record of proposing and implementing creative solutions to technical challenges.", + "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", "testimonials": [ { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "666cbc4a40af7b375e3531b0" + "$oid": "66723dae8f368f285d304c8d" } }, { - "from": "Emily Brown", - "relation": "Client at GlobalSoft Solutions", - "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", "_id": { - "$oid": "666cbc4a40af7b375e3531b1" + "$oid": "66723dae8f368f285d304c8e" } }, { - "from": "David Smith", - "relation": "Colleague at InnovateTech Ltd.", - "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "666cbc4a40af7b375e3531b2" + "$oid": "66723dae8f368f285d304c8f" } }, { @@ -8675,182 +3526,207 @@ "relation": "CTO at Innovate Solutions", "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "666cbc4a40af7b375e3531b3" + "$oid": "66723dae8f368f285d304c90" } }, { - "from": "Alice Johnson", - "relation": "Manager at TechSolutions Inc.", - "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", "_id": { - "$oid": "666cbc4a40af7b375e3531b4" + "$oid": "66723dae8f368f285d304c91" } } ], "socialMediaLinks": { - "twitter": "https://x.com/Ninnette-Maden-fake", - "blog": "https://www.Ninnette-Maden-fake-blog.com", - "other": ["https://www.instagram.com/Ninnette-Maden-fake"] + "twitter": "https://x.com/Harmonie-Karpinski-fake", + "blog": "https://www.Harmonie-Karpinski-fake-blog.com", + "other": ["https://www.instagram.com/Harmonie-Karpinski-fake"] }, "availabilityForNetworking": true, - "bootcampExperience": "Makers Academy", + "bootcampExperience": "Lambda School", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e3531a8" + "$oid": "66723dae8f368f285d304c87" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ebe" + "$oid": "66723da68f368f285d304ae4" }, - "firstName": "Jolynn", - "lastName": "Catenot", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "NYC 41", + "firstName": "Marielle", + "lastName": "Crocket", + "cohort": "PTRI 30", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304c92" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304ae5" + }, + "firstName": "Ulrick", + "lastName": "Blasing", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "PTRI 85", "graduationYear": 2024, - "email": "jcatenot1d@oakley.com", - "linkedInProfile": "https://www.linkedin.com/in/Jolynn-Catenot-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", - "skills": ["ASP.NET"], - "specializations": [ - "C++", - "Spring Boot", + "email": "ublasingo@yahoo.com", + "linkedInProfile": "https://www.linkedin.com/in/Ulrick-Blasing-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": [ + "User Interface (UI) Design", + "Blockchain", "Reactive Programming", - "React", - "Integration Testing", - "Pair Programming", - "Database Design", - "Azure", - "iOS Development", - "API Development", - "HTML", - "CI/CD" + "Python", + "Django", + "DevOps", + "Agile Development", + "Algorithm Design", + "SaaS (Software as a Service)", + "Big Data" + ], + "specializations": [ + "Concurrency", + "Git", + "Angular", + "ETL (Extract, Transform, Load)", + "RESTful APIs", + "Time Management", + "Java", + "JavaScript", + "Software Architecture", + "Legacy Code Management" ], "careerInformation": { - "currentPosition": { "title": "Software Architect", "company": "Twilio" }, - "pastPositions": [ - { - "title": "Software Engineer", - "company": "Netflix", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-05-11T13:40:11.908Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3531b6" - } + "currentPosition": { "title": "Software Developer", "company": "Oracle" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "University of Connecticut", + "degree": "Doctor of Dental Surgery (DDS)", + "fieldOfStudy": "Economics", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" }, - { - "title": "Software Architect", - "company": "Activision Blizzard", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2028-03-14T06:43:40.766Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3531b7" - } + "endDate": { + "$date": "2026-08-21T15:53:35.289Z" }, - { - "title": "Principal Software Engineer", - "company": "Snapchat", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-07-03T08:00:30.297Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3531b8" - } + "_id": { + "$oid": "66723dae8f368f285d304c94" } - ] - }, - "education": [ + }, { - "institution": "University of Kansas", - "degree": "Professional Degree", - "fieldOfStudy": "Music", + "institution": "Yale University", + "degree": "Master of Technology (MTech)", + "fieldOfStudy": "Political Science", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2026-03-02T19:29:12.133Z" + "$date": "2027-06-18T03:48:04.078Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531b9" + "$oid": "66723dae8f368f285d304c95" + } + } + ], + "projects": [ + { + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", + "_id": { + "$oid": "66723dae8f368f285d304c96" } }, { - "institution": "National University of Singapore (NUS)", - "degree": "Bachelor of Business Administration (BBA)", - "fieldOfStudy": "Architecture", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-01-28T01:12:53.272Z" - }, + "name": "AugmentWorks", + "description": "Augmented reality application for enhancing workplace productivity and training.", + "link": "https://github.com/username/augmentworks", "_id": { - "$oid": "666cbc4a40af7b375e3531ba" + "$oid": "66723dae8f368f285d304c97" } - } - ], - "projects": [ + }, { - "name": "CodeBot", - "description": "Automated code generation tool using AI for faster development cycles.", - "link": "https://github.com/username/codebot", + "name": "ARNavigation", + "description": "Augmented reality navigation app for real-time directions and location-based information.", + "link": "https://github.com/username/arnavigation", "_id": { - "$oid": "666cbc4a40af7b375e3531bb" + "$oid": "66723dae8f368f285d304c98" } }, { - "name": "EventPlanner", - "description": "Event management and planning software for organizing and coordinating events.", - "link": "https://github.com/username/eventplanner", + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", "_id": { - "$oid": "666cbc4a40af7b375e3531bc" + "$oid": "66723dae8f368f285d304c99" + } + }, + { + "name": "SmartHomeHub", + "description": "Centralized home automation system integrating IoT devices for smart living.", + "link": "https://github.com/username/smarthomehub", + "_id": { + "$oid": "66723dae8f368f285d304c9a" } } ], - "personalBio": "Advocate for diversity and inclusion in the tech industry, fostering a welcoming and supportive workplace culture.", + "personalBio": "Driven by a curiosity for innovation and a commitment to delivering high-quality software solutions.", "testimonials": [ { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", "_id": { - "$oid": "666cbc4a40af7b375e3531bd" + "$oid": "66723dae8f368f285d304c9b" } }, { - "from": "Isabella Clark", - "relation": "HR Manager at TechFusion", - "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "from": "Lucas Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", "_id": { - "$oid": "666cbc4a40af7b375e3531be" + "$oid": "66723dae8f368f285d304c9c" } }, { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "from": "Emily Brown", + "relation": "Client at GlobalSoft Solutions", + "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "_id": { + "$oid": "66723dae8f368f285d304c9d" + } + }, + { + "from": "Olivia White", + "relation": "Tech Lead at Cloud Innovations", + "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", "_id": { - "$oid": "666cbc4a40af7b375e3531bf" + "$oid": "66723dae8f368f285d304c9e" } } ], - "socialMediaLinks": { "twitter": "https://x.com/Jolynn-Catenot-fake", "other": [] }, + "socialMediaLinks": { "blog": "https://www.Ulrick-Blasing-fake-blog.com", "other": [] }, "availabilityForNetworking": true, "bootcampExperience": "Springboard", "achievementsAndCertifications": [], @@ -8858,839 +3734,883 @@ "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e3531b5" + "$oid": "66723dae8f368f285d304c93" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ebf" + "$oid": "66723da68f368f285d304ae6" }, - "firstName": "Marabel", - "lastName": "Puleston", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "CTRI 90", + "firstName": "Cheri", + "lastName": "Danielsson", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "NYC 40", "graduationYear": 2024, - "email": "mpuleston1e@utexas.edu", - "linkedInProfile": "https://www.linkedin.com/in/Marabel-Puleston-fake", - "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "email": "cdanielssonp@example.com", + "linkedInProfile": "https://www.linkedin.com/in/Cheri-Danielsson-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", "skills": [ - "Git", - "SaaS (Software as a Service)", - "AR/VR (Augmented/Virtual Reality)", - "Functional Programming", - "Big Data", - "Flask", - "C#" - ], - "specializations": [ - "Refactoring", - "Version Control", - "Graph Databases", - "GraphQL", - "API Integration" + "PaaS (Platform as a Service)", + "Spring Boot", + "Technical Writing", + "Agile Development" ], + "specializations": ["Graph Databases", "Cloud Computing", "CI/CD"], "careerInformation": { - "currentPosition": { "title": "Software Architect", "company": "Robinhood" }, + "currentPosition": { "title": "Engineering Manager", "company": "VMware" }, "pastPositions": [ { - "title": "Product Manager", - "company": "PayPal", + "title": "Cloud Engineer", + "company": "Asana", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2024-07-29T13:22:02.276Z" + "$date": "2025-06-03T08:54:09.280Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531c1" + "$oid": "66723dae8f368f285d304ca0" } }, { - "title": "Lead Software Engineer", - "company": "GitHub", + "title": "Data Engineer", + "company": "Lyft", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-12-18T22:49:54.284Z" + "$date": "2025-03-12T23:31:49.932Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531c2" + "$oid": "66723dae8f368f285d304ca1" } }, { - "title": "DevOps Engineer", - "company": "Salesforce", + "title": "QA Engineer", + "company": "Atlassian", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2026-08-22T02:06:55.850Z" + "$date": "2027-12-05T15:16:53.118Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531c3" + "$oid": "66723dae8f368f285d304ca2" } }, { - "title": "Automation Engineer", - "company": "LinkedIn", + "title": "Junior Software Engineer", + "company": "Spotify", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-10-19T19:20:34.388Z" + "$date": "2025-03-13T04:32:38.222Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531c4" + "$oid": "66723dae8f368f285d304ca3" } } ] }, "education": [ { - "institution": "Peking University", - "degree": "Bachelor of Engineering (BE)", - "fieldOfStudy": "Finance", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-11-01T17:11:41.999Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3531c5" - } - }, - { - "institution": "London School of Economics and Political Science (LSE)", - "degree": "Bachelor of Business Administration (BBA)", - "fieldOfStudy": "Veterinary Medicine", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-11-09T18:48:14.981Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3531c6" - } - } - ], - "projects": [ - { - "name": "SmartCity", - "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", - "link": "https://github.com/username/smartcity", - "_id": { - "$oid": "666cbc4a40af7b375e3531c7" - } - }, - { - "name": "RecruitmentAI", - "description": "AI-powered recruitment platform for matching candidates with job opportunities.", - "link": "https://github.com/username/recruitmentai", - "_id": { - "$oid": "666cbc4a40af7b375e3531c8" - } - }, - { - "name": "CodeBot", - "description": "Automated code generation tool using AI for faster development cycles.", - "link": "https://github.com/username/codebot", - "_id": { - "$oid": "666cbc4a40af7b375e3531c9" - } - }, - { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", - "_id": { - "$oid": "666cbc4a40af7b375e3531ca" - } - }, - { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", - "_id": { - "$oid": "666cbc4a40af7b375e3531cb" - } - } - ], - "personalBio": "Passionate about building inclusive and accessible software that improves people's lives.", - "testimonials": [], - "socialMediaLinks": { - "blog": "https://www.Marabel-Puleston-fake-blog.com", - "other": ["https://www.instagram.com/Marabel-Puleston-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Fullstack Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e3531c0" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352ec0" - }, - "firstName": "Bryn", - "lastName": "Arias", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "CTRI 64", - "graduationYear": 2024, - "email": "barias1f@flavors.me", - "linkedInProfile": "https://www.linkedin.com/in/Bryn-Arias-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", - "skills": [ - "System Design", - "Natural Language Processing", - "Leadership", - "Object-Oriented Programming", - "Refactoring", - "NoSQL", - "iOS Development", - "API Development", - "Deep Learning", - "TDD (Test-Driven Development)" - ], - "specializations": [ - "Quantum Computing", - "Graph Theory", - "SaaS (Software as a Service)", - "Communication Skills", - "Continuous Deployment", - "System Design", - "Time Management", - "Natural Language Processing", - "Legacy Code Management", - "Parallel Computing", - "BDD (Behavior-Driven Development)" - ], - "careerInformation": { - "currentPosition": { "title": "Principal Software Engineer", "company": "Qualcomm" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "University of Texas at Austin", - "degree": "Doctor of Business Administration (DBA)", - "fieldOfStudy": "English Literature", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-12-10T20:12:42.142Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3531cd" - } - }, - { - "institution": "New York University (NYU)", - "degree": "Master of Technology (MTech)", - "fieldOfStudy": "Accounting", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-03-22T07:56:17.636Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3531ce" - } - }, - { - "institution": "University of Oklahoma", - "degree": "Doctor of Dental Surgery (DDS)", + "institution": "Vanderbilt University", + "degree": "Doctor of Dental Medicine (DMD)", "fieldOfStudy": "Mechanical Engineering", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2024-06-22T02:06:07.064Z" + "$date": "2025-11-24T02:57:54.357Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531cf" - } - } - ], - "projects": [ - { - "name": "HomeSecurity", - "description": "Home security system with video surveillance, motion detection, and alarm integration.", - "link": "https://github.com/username/homesecurity", - "_id": { - "$oid": "666cbc4a40af7b375e3531d0" + "$oid": "66723dae8f368f285d304ca4" } - }, - { - "name": "SmartFarm", - "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", - "link": "https://github.com/username/smartfarm", - "_id": { - "$oid": "666cbc4a40af7b375e3531d1" - } - }, + } + ], + "projects": [ { - "name": "SmartWatch", - "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", - "link": "https://github.com/username/smartwatch", + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", "_id": { - "$oid": "666cbc4a40af7b375e3531d2" + "$oid": "66723dae8f368f285d304ca5" } }, { - "name": "RoboTrader", - "description": "Algorithmic trading platform for automated stock market analysis and trading.", - "link": "https://github.com/username/robotrader", + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", "_id": { - "$oid": "666cbc4a40af7b375e3531d3" + "$oid": "66723dae8f368f285d304ca6" } } ], - "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", + "personalBio": "Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.", "testimonials": [ { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "666cbc4a40af7b375e3531d4" + "$oid": "66723dae8f368f285d304ca7" } }, { - "from": "Sophia Martinez", + "from": "Emma Watson", "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "666cbc4a40af7b375e3531d5" + "$oid": "66723dae8f368f285d304ca8" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "from": "Liam Harris", + "relation": "Lead Developer at CloudTech", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "666cbc4a40af7b375e3531d6" + "$oid": "66723dae8f368f285d304ca9" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "from": "Emily Brown", + "relation": "Client at GlobalSoft Solutions", + "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", "_id": { - "$oid": "666cbc4a40af7b375e3531d7" + "$oid": "66723dae8f368f285d304caa" } }, { - "from": "Noah Rodriguez", - "relation": "Product Owner at AgileSoft", - "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "666cbc4a40af7b375e3531d8" + "$oid": "66723dae8f368f285d304cab" } } ], "socialMediaLinks": { - "blog": "https://www.Bryn-Arias-fake-blog.com", - "other": ["https://www.instagram.com/Bryn-Arias-fake"] + "twitter": "https://x.com/Cheri-Danielsson-fake", + "blog": "https://www.Cheri-Danielsson-fake-blog.com", + "other": [] }, "availabilityForNetworking": true, - "bootcampExperience": "Makers Academy", + "bootcampExperience": "Fullstack Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e3531cc" + "$oid": "66723dae8f368f285d304c9f" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ec1" + "$oid": "66723da68f368f285d304ae7" }, - "firstName": "Arni", - "lastName": "Jertz", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "NYC 93", + "firstName": "Durand", + "lastName": "Joron", + "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "cohort": "PTRI 39", "graduationYear": 2024, - "email": "ajertz1g@tuttocitta.it", - "linkedInProfile": "https://www.linkedin.com/in/Arni-Jertz-fake", - "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "email": "djoronq@google.cn", + "linkedInProfile": "https://www.linkedin.com/in/Durand-Joron-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", "skills": [ - "Big Data", - "CI/CD", - "Python", - "Mobile Development", - "Git", - "Reactive Programming", - "Integration Testing", - "Java" + "Machine Learning", + "Vue.js", + "Containerization", + "Unit Testing", + "Performance Optimization", + "Node.js", + "Infrastructure as Code", + "Version Control", + "SQL", + "ETL (Extract, Transform, Load)", + "User Interface (UI) Design", + "Functional Programming", + "Cloud Computing", + "NoSQL" ], "specializations": [ - "Continuous Deployment", - "BDD (Behavior-Driven Development)", - "Natural Language Processing", - "Design Patterns", - "Pair Programming", - "Project Management", - "Automated Testing", - "NoSQL", - "API Development", - "CI/CD", - "HTML", - "C#" + "Integration Testing", + "Legacy Code Management", + "Code Review", + "Algorithm Design", + "Machine Learning", + "C#", + "API Integration" ], "careerInformation": { - "currentPosition": { "title": "Security Engineer", "company": "LinkedIn" }, + "currentPosition": { "title": "Machine Learning Engineer", "company": "Cisco" }, "pastPositions": [ { "title": "Lead Software Engineer", - "company": "Red Hat", + "company": "Microsoft", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2026-02-15T05:11:28.341Z" + "$date": "2028-05-13T22:26:46.728Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531da" + "$oid": "66723dae8f368f285d304cad" } }, { - "title": "Embedded Systems Engineer", - "company": "Zoom", + "title": "Security Engineer", + "company": "HubSpot", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2028-02-17T00:53:04.719Z" + "$date": "2025-06-09T05:08:24.878Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531db" + "$oid": "66723dae8f368f285d304cae" } }, { - "title": "Full Stack Developer", - "company": "Asana", + "title": "Software Engineer", + "company": "Twilio", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-04-28T07:34:19.493Z" + "$date": "2025-08-28T06:25:38.775Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531dc" + "$oid": "66723dae8f368f285d304caf" } }, { - "title": "Senior Software Engineer", - "company": "Red Hat", + "title": "Backend Developer", + "company": "Tesla", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2028-04-28T15:34:48.841Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304cb0" + } + } + ] + }, + "education": [ + { + "institution": "University of California, Santa Barbara (UCSB)", + "degree": "Trade School Certification", + "fieldOfStudy": "Data Science", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2026-12-21T06:16:54.572Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304cb1" + } + } + ], + "projects": [ + { + "name": "SmartGrid", + "description": "Smart grid technology for efficient energy distribution and consumption.", + "link": "https://github.com/username/smartgrid", + "_id": { + "$oid": "66723dae8f368f285d304cb2" + } + }, + { + "name": "SmartWatch", + "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", + "link": "https://github.com/username/smartwatch", + "_id": { + "$oid": "66723dae8f368f285d304cb3" + } + }, + { + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", + "_id": { + "$oid": "66723dae8f368f285d304cb4" + } + } + ], + "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", + "testimonials": [], + "socialMediaLinks": { "twitter": "https://x.com/Durand-Joron-fake", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Le Wagon", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304cac" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304ae8" + }, + "firstName": "Kristien", + "lastName": "Burgett", + "cohort": "PTRI 99", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304cb5" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304ae9" + }, + "firstName": "Kaia", + "lastName": "Fassmann", + "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "cohort": "WCRI 34", + "graduationYear": 2024, + "email": "kfassmanns@ted.com", + "linkedInProfile": "https://www.linkedin.com/in/Kaia-Fassmann-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "skills": ["Docker", "Algorithm Design", "Blockchain", "GraphQL", "System Design"], + "specializations": [ + "Design Patterns", + "Unit Testing", + "System Design", + "Robotic Process Automation", + "React", + "Flask", + "Collaboration", + "ASP.NET", + "Serverless Architecture", + "Data Science", + "Algorithm Design", + "Mobile Development", + "Concurrency", + "AR/VR (Augmented/Virtual Reality)" + ], + "careerInformation": { + "currentPosition": { "title": "Android Developer", "company": "Lyft" }, + "pastPositions": [ + { + "title": "Product Manager", + "company": "Okta", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-12-03T18:17:53.805Z" + "$date": "2028-02-29T14:48:47.739Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531dd" + "$oid": "66723dae8f368f285d304cb7" } }, { - "title": "DevOps Engineer", - "company": "Stripe", + "title": "Software Architect", + "company": "Spotify", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2027-10-19T18:49:04.550Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304cb8" + } + }, + { + "title": "iOS Developer", + "company": "DoorDash", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2026-09-23T20:35:40.913Z" + "$date": "2026-06-12T08:28:11.038Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531de" + "$oid": "66723dae8f368f285d304cb9" } } - ] - }, - "education": [ + ] + }, + "education": [ + { + "institution": "Pennsylvania State University", + "degree": "Master of Business Administration (MBA)", + "fieldOfStudy": "Electrical Engineering", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2024-08-09T19:36:04.194Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304cba" + } + }, + { + "institution": "Washington University in St. Louis", + "degree": "Master of Business Administration (MBA)", + "fieldOfStudy": "Statistics", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2026-02-05T00:15:07.565Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304cbb" + } + }, { "institution": "Rutgers University", - "degree": "Bachelor of Science (BS)", - "fieldOfStudy": "Aerospace Engineering", + "degree": "Doctor of Pharmacy (PharmD)", + "fieldOfStudy": "Dentistry", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-02-16T08:14:25.087Z" + "$date": "2024-10-21T06:35:40.803Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531df" + "$oid": "66723dae8f368f285d304cbc" } } ], - "projects": [], - "personalBio": "Experienced in Agile methodologies, with a track record of delivering projects on time and within budget.", - "testimonials": [], - "socialMediaLinks": { - "twitter": "https://x.com/Arni-Jertz-fake", - "blog": "https://www.Arni-Jertz-fake-blog.com", - "other": [] + "projects": [ + { + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", + "_id": { + "$oid": "66723dae8f368f285d304cbd" + } + }, + { + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", + "_id": { + "$oid": "66723dae8f368f285d304cbe" + } + }, + { + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", + "_id": { + "$oid": "66723dae8f368f285d304cbf" + } + } + ], + "personalBio": "Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.", + "testimonials": [ + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "_id": { + "$oid": "66723dae8f368f285d304cc0" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "66723dae8f368f285d304cc1" + } + } + ], + "socialMediaLinks": { "twitter": "https://x.com/Kaia-Fassmann-fake", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Lambda School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304cb6" }, - "availabilityForNetworking": false, - "bootcampExperience": "DevMountain", + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304aea" + }, + "firstName": "Lockwood", + "lastName": "Moxham", + "cohort": "PTRI 83", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e3531d9" + "$oid": "66723dae8f368f285d304cc2" }, + "education": [], + "projects": [], + "testimonials": [], "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ec2" + "$oid": "66723da68f368f285d304aeb" }, - "firstName": "Maegan", - "lastName": "Mulhall", + "firstName": "Tessie", + "lastName": "Sugden", "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "cohort": "LA 82", + "cohort": "LA 53", "graduationYear": 2024, - "email": "mmulhall1h@wikipedia.org", - "linkedInProfile": "https://www.linkedin.com/in/Maegan-Mulhall-fake", - "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", - "skills": [ - "Agile Development", - "Java", - "Communication Skills", - "Design Patterns", - "Performance Optimization", - "Algorithm Design", - "Collaboration", - "GraphQL", - "Critical Thinking", - "Infrastructure as Code", - "RESTful APIs" + "email": "tsugdenu@npr.org", + "linkedInProfile": "https://www.linkedin.com/in/Tessie-Sugden-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "skills": ["Concurrency", "User Interface (UI) Design", "Agile Development"], + "specializations": [ + "NoSQL", + "Serverless Architecture", + "BDD (Behavior-Driven Development)", + "Concurrency", + "ASP.NET", + "Unit Testing", + "Cybersecurity", + "Angular", + "Git", + "Refactoring", + "Vue.js", + "Node.js", + "JavaScript" ], - "specializations": [], "careerInformation": { - "currentPosition": { "title": "Cloud Engineer", "company": "Netflix" }, + "currentPosition": { "title": "Data Engineer", "company": "EA (Electronic Arts)" }, "pastPositions": [ { - "title": "Backend Developer", - "company": "Coinbase", + "title": "QA Engineer", + "company": "Robinhood", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-06-16T08:41:35.322Z" + "$date": "2026-06-17T11:08:48.544Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531e1" + "$oid": "66723dae8f368f285d304cc4" } }, { - "title": "Software Developer", - "company": "Uber", + "title": "DevOps Engineer", + "company": "Oracle", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2024-07-11T02:56:26.387Z" + "$date": "2025-05-14T12:02:11.339Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531e2" + "$oid": "66723dae8f368f285d304cc5" } }, { - "title": "Lead Software Engineer", - "company": "Google", + "title": "iOS Developer", + "company": "GitHub", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-10-13T14:47:26.525Z" + "$date": "2024-12-21T17:42:45.286Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531e3" + "$oid": "66723dae8f368f285d304cc6" } }, { - "title": "Embedded Systems Engineer", - "company": "Adobe", + "title": "Full Stack Developer", + "company": "Salesforce", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2026-05-03T08:18:44.694Z" + "$date": "2025-12-24T16:34:04.910Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531e4" + "$oid": "66723dae8f368f285d304cc7" } } ] }, "education": [ { - "institution": "University of Houston", - "degree": "Bachelor's Degree", - "fieldOfStudy": "Information Technology", + "institution": "University of British Columbia", + "degree": "Master of Arts (MA)", + "fieldOfStudy": "Education", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2026-09-10T23:24:56.639Z" + "$date": "2025-01-03T15:05:03.134Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531e5" + "$oid": "66723dae8f368f285d304cc8" } } ], "projects": [ { - "name": "SecureChat", - "description": "End-to-end encrypted messaging app ensuring user privacy and security.", - "link": "https://github.com/username/securechat", + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", "_id": { - "$oid": "666cbc4a40af7b375e3531e6" + "$oid": "66723dae8f368f285d304cc9" } }, { - "name": "VoiceAssistant", - "description": "Voice-controlled personal assistant using natural language processing.", - "link": "https://github.com/username/voiceassistant", + "name": "VirtualAssistant", + "description": "Virtual assistant software for voice command-based tasks and personal assistance.", + "link": "https://github.com/username/virtualassistant", "_id": { - "$oid": "666cbc4a40af7b375e3531e7" + "$oid": "66723dae8f368f285d304cca" } }, { - "name": "TravelGuide", - "description": "Interactive travel guide application providing travel tips and destination insights.", - "link": "https://github.com/username/travelguide", + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", "_id": { - "$oid": "666cbc4a40af7b375e3531e8" + "$oid": "66723dae8f368f285d304ccb" } - } - ], - "personalBio": "Proven ability to lead technical projects from inception to successful deployment and maintenance.", - "testimonials": [ + }, { - "from": "Sophia Martinez", - "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", "_id": { - "$oid": "666cbc4a40af7b375e3531e9" + "$oid": "66723dae8f368f285d304ccc" } }, + { + "name": "SmartGrid", + "description": "Smart grid technology for efficient energy distribution and consumption.", + "link": "https://github.com/username/smartgrid", + "_id": { + "$oid": "66723dae8f368f285d304ccd" + } + } + ], + "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", + "testimonials": [ { "from": "Oliver Jackson", "relation": "HR Manager at TechFusion", "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e3531ea" + "$oid": "66723dae8f368f285d304cce" } }, { - "from": "Sophia Martinez", - "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "from": "Emily Brown", + "relation": "Client at GlobalSoft Solutions", + "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "_id": { + "$oid": "66723dae8f368f285d304ccf" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e3531eb" + "$oid": "66723dae8f368f285d304cd0" } } ], "socialMediaLinks": { - "twitter": "https://x.com/Maegan-Mulhall-fake", - "blog": "https://www.Maegan-Mulhall-fake-blog.com", - "other": ["https://www.instagram.com/Maegan-Mulhall-fake"] + "blog": "https://www.Tessie-Sugden-fake-blog.com", + "other": ["https://www.instagram.com/Tessie-Sugden-fake"] }, - "availabilityForNetworking": true, - "bootcampExperience": "Ironhack", + "availabilityForNetworking": false, + "bootcampExperience": "Lambda School", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e3531e0" + "$oid": "66723dae8f368f285d304cc3" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ec3" + "$oid": "66723da68f368f285d304aec" }, - "firstName": "Nicolai", - "lastName": "Brugsma", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "LA 79", + "firstName": "Rea", + "lastName": "Jeremiah", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "PTRI 45", "graduationYear": 2024, - "email": "nbrugsma1i@4shared.com", - "linkedInProfile": "https://www.linkedin.com/in/Nicolai-Brugsma-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": ["WebSockets", "C++", "Node.js", "Graph Databases", "Data Science", "Blockchain"], + "email": "rjeremiahv@wikispaces.com", + "linkedInProfile": "https://www.linkedin.com/in/Rea-Jeremiah-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": [ + "Automated Testing", + "Problem-Solving", + "Vue.js", + "Parallel Computing", + "Collaboration", + "Algorithm Design", + "Agile Development", + "AWS" + ], "specializations": [ - "System Design", - "Graph Databases", - "DevOps", + "Data Science", "Version Control", - "Data Warehousing", - "Cybersecurity", - "Docker", - "Code Review", - "Integration Testing", - "Scrum", - "Flask", - "Communication Skills" - ], - "careerInformation": { - "currentPosition": { "title": "Cloud Engineer", "company": "ServiceNow" }, - "pastPositions": [ - { - "title": "QA Engineer", - "company": "GitHub", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-09-08T00:15:53.538Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3531ed" - } - }, - { - "title": "Automation Engineer", - "company": "Red Hat", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-03-07T20:26:34.318Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3531ee" - } - }, + "Technical Writing", + "Mobile Development", + "C++", + "Event-Driven Architecture", + "Infrastructure as Code", + "JavaScript", + "C#" + ], + "careerInformation": { + "currentPosition": { "title": "Frontend Developer", "company": "Workday" }, + "pastPositions": [ { - "title": "Security Engineer", - "company": "Okta", + "title": "Cloud Engineer", + "company": "PayPal", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2026-05-30T04:41:27.997Z" + "$date": "2025-11-07T14:32:37.664Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531ef" + "$oid": "66723dae8f368f285d304cd2" } }, { - "title": "Backend Developer", - "company": "NVIDIA", + "title": "Automation Engineer", + "company": "Atlassian", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-11-22T01:13:44.599Z" + "$date": "2025-07-17T01:29:05.657Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531f0" + "$oid": "66723dae8f368f285d304cd3" } } ] }, "education": [ { - "institution": "Cornell University", - "degree": "Master of Science (MS)", - "fieldOfStudy": "History", + "institution": "University of Tokyo", + "degree": "Doctor of Pharmacy (PharmD)", + "fieldOfStudy": "Biomedical Engineering", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2024-06-17T13:09:07.890Z" + "$date": "2028-02-01T15:19:38.760Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531f1" + "$oid": "66723dae8f368f285d304cd4" } }, { - "institution": "Washington University in St. Louis", - "degree": "Bachelor of Fine Arts (BFA)", - "fieldOfStudy": "Mathematics", + "institution": "Nanyang Technological University (NTU)", + "degree": "Doctor of Medicine (MD)", + "fieldOfStudy": "Business Administration", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-08-02T13:30:00.640Z" + "$date": "2028-06-09T13:41:06.295Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531f2" + "$oid": "66723dae8f368f285d304cd5" } - } - ], - "projects": [ + }, { - "name": "NetPlanner", - "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", - "link": "https://github.com/username/netplanner", + "institution": "University of Pennsylvania", + "degree": "Master of Fine Arts (MFA)", + "fieldOfStudy": "Biochemistry", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2024-08-02T19:16:06.020Z" + }, "_id": { - "$oid": "666cbc4a40af7b375e3531f3" + "$oid": "66723dae8f368f285d304cd6" } - }, + } + ], + "projects": [ { - "name": "RoboVision", - "description": "AI-powered computer vision system for object detection and recognition.", - "link": "https://github.com/username/robovision", + "name": "SocialConnect", + "description": "Social media integration platform for managing multiple social accounts.", + "link": "https://github.com/username/socialconnect", "_id": { - "$oid": "666cbc4a40af7b375e3531f4" + "$oid": "66723dae8f368f285d304cd7" } }, { - "name": "RoboVision", - "description": "AI-powered computer vision system for object detection and recognition.", - "link": "https://github.com/username/robovision", + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", "_id": { - "$oid": "666cbc4a40af7b375e3531f5" + "$oid": "66723dae8f368f285d304cd8" } }, { - "name": "NetPlanner", - "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", - "link": "https://github.com/username/netplanner", + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", "_id": { - "$oid": "666cbc4a40af7b375e3531f6" + "$oid": "66723dae8f368f285d304cd9" } } ], - "personalBio": "Passionate about contributing to the tech community through open-source projects and knowledge sharing.", + "personalBio": "Advocate for diversity and inclusion in the tech industry, fostering a welcoming and supportive workplace culture.", "testimonials": [ { - "from": "Emily Brown", - "relation": "Client at GlobalSoft Solutions", - "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", - "_id": { - "$oid": "666cbc4a40af7b375e3531f7" - } - }, - { - "from": "Ella Watson", + "from": "Sophia Martinez", "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", "_id": { - "$oid": "666cbc4a40af7b375e3531f8" + "$oid": "66723dae8f368f285d304cda" } }, { @@ -9698,174 +4618,233 @@ "relation": "CTO at Innovate Solutions", "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "666cbc4a40af7b375e3531f9" - } - }, - { - "from": "Daniel Lee", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", - "_id": { - "$oid": "666cbc4a40af7b375e3531fa" - } - }, - { - "from": "Emma Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "666cbc4a40af7b375e3531fb" + "$oid": "66723dae8f368f285d304cdb" } } ], "socialMediaLinks": { - "twitter": "https://x.com/Nicolai-Brugsma-fake", - "blog": "https://www.Nicolai-Brugsma-fake-blog.com", - "other": ["https://www.instagram.com/Nicolai-Brugsma-fake"] + "twitter": "https://x.com/Rea-Jeremiah-fake", + "other": ["https://www.instagram.com/Rea-Jeremiah-fake"] }, "availabilityForNetworking": false, - "bootcampExperience": "CareerFoundry", + "bootcampExperience": "Codesmith", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e3531ec" + "$oid": "66723dae8f368f285d304cd1" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ec4" + "$oid": "66723da68f368f285d304aed" }, - "firstName": "Bryan", - "lastName": "Heffy", - "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "cohort": "ECRI 62", - "graduationYear": 2024, - "email": "bheffy1j@cbsnews.com", - "linkedInProfile": "https://www.linkedin.com/in/Bryan-Heffy-fake", - "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "firstName": "Cassie", + "lastName": "Meadows", + "cohort": "WCRI 10", "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304cdc" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304aee" + }, + "firstName": "Kelci", + "lastName": "Bastide", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "cohort": "LA 51", + "graduationYear": 2024, + "email": "kbastidex@latimes.com", + "linkedInProfile": "https://www.linkedin.com/in/Kelci-Bastide-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "skills": [ + "Kubernetes", + "Azure", + "RESTful APIs", + "ETL (Extract, Transform, Load)", + "BDD (Behavior-Driven Development)", + "Quantum Computing", + "Google Cloud Platform" + ], "specializations": [ - "TDD (Test-Driven Development)", - "Unit Testing", - "User Experience (UX) Design", - "Continuous Deployment", - "GraphQL" + "Version Control", + "Data Warehousing", + "Machine Learning", + "Serverless Architecture", + "Docker", + "Database Design", + "FaaS (Function as a Service)", + "C#" ], "careerInformation": { - "currentPosition": { "title": "Senior Software Engineer", "company": "Snapchat" }, - "pastPositions": [ - { - "title": "DevOps Engineer", - "company": "Robinhood", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-06-22T15:20:12.810Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3531fd" - } - }, - { - "title": "Machine Learning Engineer", - "company": "Qualcomm", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-04-19T05:40:23.128Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3531fe" - } - } - ] + "currentPosition": { "title": "Android Developer", "company": "IBM" }, + "pastPositions": [] + }, + "education": [], + "projects": [], + "personalBio": "Strong analytical thinker with a knack for troubleshooting and resolving complex technical issues.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Kelci-Bastide-fake", + "other": ["https://www.instagram.com/Kelci-Bastide-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Thinkful", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304cdd" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304aef" + }, + "firstName": "Thurston", + "lastName": "Speechly", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "CTRI 29", + "graduationYear": 2024, + "email": "tspeechlyy@plala.or.jp", + "linkedInProfile": "https://www.linkedin.com/in/Thurston-Speechly-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": ["User Interface (UI) Design", "AWS", "Software Architecture"], + "specializations": [ + "C#", + "SQL", + "Robotic Process Automation", + "Integration Testing", + "Data Visualization", + "Version Control", + "Scrum", + "C++", + "Deep Learning", + "Project Management", + "Automated Testing", + "Cloud Computing", + "Technical Writing", + "WebSockets", + "RESTful APIs" + ], + "careerInformation": { + "currentPosition": { "title": "Backend Developer", "company": "Pinterest" }, + "pastPositions": [] }, "education": [ + { + "institution": "Australian National University", + "degree": "Postdoctoral Research", + "fieldOfStudy": "Environmental Engineering", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2028-04-15T22:48:48.506Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304cdf" + } + }, { "institution": "University of Pittsburgh", - "degree": "Associate Degree", - "fieldOfStudy": "Fine Arts", + "degree": "Master of Public Administration (MPA)", + "fieldOfStudy": "Chemical Engineering", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-06-14T09:27:21.548Z" + "$date": "2024-08-22T08:44:29.470Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3531ff" + "$oid": "66723dae8f368f285d304ce0" } }, { "institution": "University of Nebraska-Lincoln", - "degree": "Technical School Certification", - "fieldOfStudy": "Journalism", + "degree": "Doctor of Education (EdD)", + "fieldOfStudy": "Medicine", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2026-10-15T21:29:58.812Z" + "$date": "2025-03-05T05:45:15.520Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353200" + "$oid": "66723dae8f368f285d304ce1" } } ], "projects": [ { - "name": "CryptoTrack", - "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", - "link": "https://github.com/username/cryptotrack", - "_id": { - "$oid": "666cbc4a40af7b375e353201" - } - }, - { - "name": "DataCrunch", - "description": "Real-time data analytics platform for extracting insights from big data.", - "link": "https://github.com/username/datacrunch", + "name": "RoboTrader", + "description": "Algorithmic trading platform for automated stock market analysis and trading.", + "link": "https://github.com/username/robotrader", "_id": { - "$oid": "666cbc4a40af7b375e353202" + "$oid": "66723dae8f368f285d304ce2" } }, { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", + "name": "GenomeQuest", + "description": "Genomic data analysis tool for researchers and bioinformaticians.", + "link": "https://github.com/username/genomequest", "_id": { - "$oid": "666cbc4a40af7b375e353203" + "$oid": "66723dae8f368f285d304ce3" } - }, - { - "name": "SmartCarPark", - "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", - "link": "https://github.com/username/smartcarpark", + }, + { + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", "_id": { - "$oid": "666cbc4a40af7b375e353204" + "$oid": "66723dae8f368f285d304ce4" } }, { - "name": "FoodDelivery", - "description": "Online food delivery platform connecting restaurants with customers for food ordering.", - "link": "https://github.com/username/fooddelivery", + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", "_id": { - "$oid": "666cbc4a40af7b375e353205" + "$oid": "66723dae8f368f285d304ce5" } } ], - "personalBio": "Devoted to fostering a collaborative team environment and mentoring junior developers.", + "personalBio": "Experienced in building scalable microservices architectures and integrating third-party APIs.", "testimonials": [ { - "from": "Noah Rodriguez", - "relation": "Product Owner at AgileSoft", - "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "_id": { + "$oid": "66723dae8f368f285d304ce6" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "666cbc4a40af7b375e353206" + "$oid": "66723dae8f368f285d304ce7" } }, { @@ -9873,854 +4852,1361 @@ "relation": "CTO at Innovate Solutions", "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "666cbc4a40af7b375e353207" + "$oid": "66723dae8f368f285d304ce8" } } ], - "socialMediaLinks": { "blog": "https://www.Bryan-Heffy-fake-blog.com", "other": [] }, + "socialMediaLinks": { + "twitter": "https://x.com/Thurston-Speechly-fake", + "blog": "https://www.Thurston-Speechly-fake-blog.com", + "other": [] + }, "availabilityForNetworking": true, - "bootcampExperience": "Fullstack Academy", + "bootcampExperience": "Le Wagon", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e3531fc" + "$oid": "66723dae8f368f285d304cde" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ec5" + "$oid": "66723da68f368f285d304af0" }, - "firstName": "Donavon", - "lastName": "Osichev", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "FTRI 50", + "firstName": "Silas", + "lastName": "Reyes", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "NYC 11", "graduationYear": 2024, - "email": "dosichev1k@pinterest.com", - "linkedInProfile": "https://www.linkedin.com/in/Donavon-Osichev-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", - "skills": [ - "Object-Oriented Programming", - "System Design", - "Integration Testing", - "Time Management", - "Reactive Programming", + "email": "sreyesz@google.co.jp", + "linkedInProfile": "https://www.linkedin.com/in/Silas-Reyes-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": ["API Development"], + "specializations": [ + "User Interface (UI) Design", + "SaaS (Software as a Service)", + "Microservices", + "Collaboration", + "SQL", + "HTML", + "RESTful APIs", + "Legacy Code Management", + "ASP.NET", + "Event-Driven Architecture", "Data Warehousing", - "Software Architecture", - "Data Visualization", - "Data Science", - "ETL (Extract, Transform, Load)", - "Natural Language Processing", - "AWS", + "Time Management", + "Agile Development", + "API Integration", "Android Development", - "Kubernetes", - "Edge Computing" - ], - "specializations": [ - "Technical Writing", - "NoSQL", - "GraphQL", - "Azure", - "AWS", - "API Development", - "BDD (Behavior-Driven Development)", - "Project Management", - "Deep Learning", - "Ruby" + "Node.js", + "IoT (Internet of Things)", + "Communication Skills" ], "careerInformation": { - "currentPosition": { "title": "Lead Software Engineer", "company": "Snapchat" }, + "currentPosition": { "title": "Senior Software Engineer", "company": "Facebook" }, "pastPositions": [ { - "title": "Mobile Developer", - "company": "DocuSign", + "title": "Senior Software Engineer", + "company": "Oracle", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-03-16T09:27:57.963Z" + "$date": "2024-06-20T01:50:11.295Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353209" + "$oid": "66723dae8f368f285d304cea" } }, { - "title": "QA Engineer", - "company": "Airbnb", + "title": "Mobile Developer", + "company": "GitHub", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-11-23T03:09:14.985Z" + "$date": "2027-05-18T04:16:52.469Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35320a" + "$oid": "66723dae8f368f285d304ceb" } }, { - "title": "QA Engineer", - "company": "ServiceNow", + "title": "Frontend Developer", + "company": "Twitter", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-04-05T18:23:29.927Z" + "$date": "2024-07-06T01:55:20.986Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35320b" + "$oid": "66723dae8f368f285d304cec" } }, { - "title": "AI Engineer", - "company": "Dropbox", + "title": "Full Stack Developer", + "company": "Palantir", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2026-09-25T06:51:29.027Z" + "$date": "2024-08-02T01:32:49.326Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35320c" + "$oid": "66723dae8f368f285d304ced" } }, { - "title": "Cloud Engineer", - "company": "Qualcomm", + "title": "Junior Software Engineer", + "company": "Zoom", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2027-03-22T02:14:45.721Z" + "$date": "2025-11-15T04:33:26.412Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35320d" + "$oid": "66723dae8f368f285d304cee" } } ] }, - "education": [ + "education": [ + { + "institution": "Stanford University", + "degree": "Master of Fine Arts (MFA)", + "fieldOfStudy": "History", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2025-07-04T23:46:16.151Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304cef" + } + }, + { + "institution": "University of Minnesota", + "degree": "Bachelor's Degree", + "fieldOfStudy": "English Literature", + "startDate": { + "$date": "2024-06-19T02:08:46.632Z" + }, + "endDate": { + "$date": "2028-05-15T19:39:21.866Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304cf0" + } + } + ], + "projects": [ + { + "name": "VoiceAssistant", + "description": "Voice-controlled personal assistant using natural language processing.", + "link": "https://github.com/username/voiceassistant", + "_id": { + "$oid": "66723dae8f368f285d304cf1" + } + }, + { + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", + "_id": { + "$oid": "66723dae8f368f285d304cf2" + } + }, + { + "name": "SecureChat", + "description": "End-to-end encrypted messaging app ensuring user privacy and security.", + "link": "https://github.com/username/securechat", + "_id": { + "$oid": "66723dae8f368f285d304cf3" + } + }, + { + "name": "RecruitmentAI", + "description": "AI-powered recruitment platform for matching candidates with job opportunities.", + "link": "https://github.com/username/recruitmentai", + "_id": { + "$oid": "66723dae8f368f285d304cf4" + } + } + ], + "personalBio": "Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Silas-Reyes-fake", + "blog": "https://www.Silas-Reyes-fake-blog.com", + "other": ["https://www.instagram.com/Silas-Reyes-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "App Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304ce9" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304af1" + }, + "firstName": "Marley", + "lastName": "Boshard", + "cohort": "NYC 16", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304cf5" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304af2" + }, + "firstName": "Eb", + "lastName": "Dargie", + "cohort": "NYC 32", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304cf6" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304af3" + }, + "firstName": "Dian", + "lastName": "Dackombe", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "CTRI 34", + "graduationYear": 2024, + "email": "ddackombe13@ihg.com", + "linkedInProfile": "https://www.linkedin.com/in/Dian-Dackombe-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": [ + "Natural Language Processing", + "Communication Skills", + "Deep Learning", + "DevOps", + "Infrastructure as Code", + "Ruby", + "BDD (Behavior-Driven Development)", + "Performance Optimization", + "PaaS (Platform as a Service)", + "Python" + ], + "specializations": [ + "Event-Driven Architecture", + "Cloud Computing", + "Agile Development", + "Concurrency", + "Communication Skills", + "Critical Thinking", + "Reactive Programming", + "Django", + "AR/VR (Augmented/Virtual Reality)", + "IoT (Internet of Things)", + "Java", + "HTML", + "Scrum", + "Big Data", + "BDD (Behavior-Driven Development)", + "Ruby" + ], + "careerInformation": { + "currentPosition": { "title": "AI Engineer", "company": "Google" }, + "pastPositions": [] + }, + "education": [], + "projects": [ { - "institution": "Rutgers University", - "degree": "Master of Arts (MA)", - "fieldOfStudy": "Mechanical Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-01-02T12:46:14.349Z" - }, + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", "_id": { - "$oid": "666cbc4a40af7b375e35320e" + "$oid": "66723dae8f368f285d304cf8" } - } - ], - "projects": [ + }, { - "name": "SmartFarm", - "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", - "link": "https://github.com/username/smartfarm", + "name": "HealthMonitor", + "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", + "link": "https://github.com/username/healthmonitor", "_id": { - "$oid": "666cbc4a40af7b375e35320f" + "$oid": "66723dae8f368f285d304cf9" } }, { - "name": "EduTech", - "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", - "link": "https://github.com/username/edutech", + "name": "MediCare", + "description": "Medical appointment scheduling and patient management system for healthcare providers.", + "link": "https://github.com/username/medicare", + "_id": { + "$oid": "66723dae8f368f285d304cfa" + } + }, + { + "name": "SmartHomeHub", + "description": "Centralized home automation system integrating IoT devices for smart living.", + "link": "https://github.com/username/smarthomehub", "_id": { - "$oid": "666cbc4a40af7b375e353210" + "$oid": "66723dae8f368f285d304cfb" } } ], - "personalBio": "Skilled in working with cross-functional teams to deliver innovative software solutions that exceed expectations.", + "personalBio": "Experienced in Agile methodologies, with a track record of delivering projects on time and within budget.", "testimonials": [ { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "666cbc4a40af7b375e353211" + "$oid": "66723dae8f368f285d304cfc" } }, { - "from": "Emma Watson", + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "_id": { + "$oid": "66723dae8f368f285d304cfd" + } + }, + { + "from": "Ella Watson", "relation": "Director of Engineering at FutureTech", "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "666cbc4a40af7b375e353212" + "$oid": "66723dae8f368f285d304cfe" + } + } + ], + "socialMediaLinks": { "twitter": "https://x.com/Dian-Dackombe-fake", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "General Assembly", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304cf7" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304af4" + }, + "firstName": "Freedman", + "lastName": "Scrafton", + "cohort": "NYC 18", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304cff" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304af5" + }, + "firstName": "Tabbitha", + "lastName": "Jolliffe", + "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "cohort": "PTRI 42", + "graduationYear": 2024, + "email": "tjolliffe15@bbb.org", + "linkedInProfile": "https://www.linkedin.com/in/Tabbitha-Jolliffe-fake", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "skills": ["Vue.js"], + "specializations": [ + "Version Control", + "Continuous Deployment", + "SQL", + "Object-Oriented Programming", + "Node.js", + "Design Patterns", + "WebSockets" + ], + "careerInformation": { + "currentPosition": { "title": "DevOps Engineer", "company": "Snapchat" }, + "pastPositions": [] + }, + "education": [], + "projects": [ + { + "name": "SmartInventory", + "description": "Inventory management system with RFID and IoT integration for tracking assets.", + "link": "https://github.com/username/smartinventory", + "_id": { + "$oid": "66723dae8f368f285d304d01" } }, { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", "_id": { - "$oid": "666cbc4a40af7b375e353213" + "$oid": "66723dae8f368f285d304d02" } }, { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "name": "RecruitmentAI", + "description": "AI-powered recruitment platform for matching candidates with job opportunities.", + "link": "https://github.com/username/recruitmentai", "_id": { - "$oid": "666cbc4a40af7b375e353214" + "$oid": "66723dae8f368f285d304d03" + } + }, + { + "name": "SmartInventory", + "description": "Inventory management system with RFID and IoT integration for tracking assets.", + "link": "https://github.com/username/smartinventory", + "_id": { + "$oid": "66723dae8f368f285d304d04" } } ], - "socialMediaLinks": { - "twitter": "https://x.com/Donavon-Osichev-fake", - "blog": "https://www.Donavon-Osichev-fake-blog.com", - "other": [] - }, + "personalBio": "Experienced in deploying and maintaining applications on cloud platforms like AWS and Azure.", + "testimonials": [], + "socialMediaLinks": { "blog": "https://www.Tabbitha-Jolliffe-fake-blog.com", "other": [] }, "availabilityForNetworking": true, - "bootcampExperience": "Le Wagon", + "bootcampExperience": "Coding Dojo", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353208" + "$oid": "66723dae8f368f285d304d00" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ec6" + "$oid": "66723da68f368f285d304af6" }, - "firstName": "Kennan", - "lastName": "Dugget", - "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "cohort": "ECRI 91", + "firstName": "Jordon", + "lastName": "Ganley", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "cohort": "LA 74", "graduationYear": 2024, - "email": "kdugget1l@opensource.org", - "linkedInProfile": "https://www.linkedin.com/in/Kennan-Dugget-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": ["Software Architecture"], + "email": "jganley16@geocities.jp", + "linkedInProfile": "https://www.linkedin.com/in/Jordon-Ganley-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": ["Unit Testing", "Collaboration"], "specializations": [ - "Database Design", - "Angular", - "TDD (Test-Driven Development)", - "NoSQL", - "Containerization", + "Spring Boot", "iOS Development", - "Integration Testing" + "API Development", + "Critical Thinking", + "Azure", + "DevOps", + "Functional Programming", + "Agile Development", + "GraphQL", + "Blockchain", + "Android Development", + "Continuous Deployment", + "Integration Testing", + "Object-Oriented Programming", + "Cloud Computing" ], "careerInformation": { - "currentPosition": { "title": "Site Reliability Engineer", "company": "Epic Games" }, - "pastPositions": [ - { - "title": "Web Developer", - "company": "Facebook", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2028-02-11T19:27:59.308Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353216" - } - }, - { - "title": "Data Scientist", - "company": "Oracle", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-08-17T01:34:52.501Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353217" - } - } - ] + "currentPosition": { "title": "Mobile Developer", "company": "Twitter" }, + "pastPositions": [] }, "education": [ { - "institution": "Massachusetts Institute of Technology (MIT)", - "degree": "Master of Fine Arts (MFA)", + "institution": "London School of Economics and Political Science (LSE)", + "degree": "Master of Arts (MA)", "fieldOfStudy": "Marketing", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.632Z" }, "endDate": { - "$date": "2025-11-23T03:55:18.606Z" + "$date": "2027-12-22T16:24:24.577Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353218" + "$oid": "66723dae8f368f285d304d06" } } ], "projects": [], - "personalBio": "Experienced in both frontend and backend development, with a focus on creating elegant and efficient solutions.", + "personalBio": "Experienced in international collaboration and remote work, with a strong appreciation for cultural diversity.", "testimonials": [ - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "666cbc4a40af7b375e353219" - } - }, - { - "from": "Sophia Martinez", - "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", - "_id": { - "$oid": "666cbc4a40af7b375e35321a" - } - }, { "from": "Emma Thompson", "relation": "Manager at DataTech Solutions", "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", "_id": { - "$oid": "666cbc4a40af7b375e35321b" + "$oid": "66723dae8f368f285d304d07" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "666cbc4a40af7b375e35321c" + "$oid": "66723dae8f368f285d304d08" } }, { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "666cbc4a40af7b375e35321d" + "$oid": "66723dae8f368f285d304d09" } } ], "socialMediaLinks": { - "twitter": "https://x.com/Kennan-Dugget-fake", - "blog": "https://www.Kennan-Dugget-fake-blog.com", - "other": [] + "twitter": "https://x.com/Jordon-Ganley-fake", + "blog": "https://www.Jordon-Ganley-fake-blog.com", + "other": ["https://www.instagram.com/Jordon-Ganley-fake"] }, - "availabilityForNetworking": false, - "bootcampExperience": "Thinkful", + "availabilityForNetworking": true, + "bootcampExperience": "Le Wagon", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353215" + "$oid": "66723dae8f368f285d304d05" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ec7" + "$oid": "66723da68f368f285d304af7" }, - "firstName": "Paton", - "lastName": "Climance", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "WCRI 91", + "firstName": "Annora", + "lastName": "Brigge", + "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "cohort": "ECRI 48", "graduationYear": 2024, - "email": "pclimance1m@webnode.com", - "linkedInProfile": "https://www.linkedin.com/in/Paton-Climance-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": ["Vue.js", "Technical Writing", "Git", "Database Design"], - "specializations": ["Design Patterns"], + "email": "abrigge17@joomla.org", + "linkedInProfile": "https://www.linkedin.com/in/Annora-Brigge-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": [ + "Communication Skills", + "TDD (Test-Driven Development)", + "Containerization", + "JavaScript", + "Version Control", + "Microservices", + "Machine Learning", + "Laravel", + "CI/CD", + "Edge Computing" + ], + "specializations": [ + "Vue.js", + "RESTful APIs", + "PaaS (Platform as a Service)", + "GraphQL", + "HTML", + "Edge Computing", + "Node.js", + "Machine Learning", + "Mobile Development", + "Natural Language Processing" + ], "careerInformation": { - "currentPosition": { "title": "iOS Developer", "company": "GitHub" }, + "currentPosition": { "title": "DevOps Engineer", "company": "Facebook" }, "pastPositions": [ { - "title": "Junior Software Engineer", - "company": "Asana", + "title": "AI Engineer", + "company": "ServiceNow", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-01-03T16:11:07.507Z" + "$date": "2026-03-08T12:39:08.793Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35321f" + "$oid": "66723dae8f368f285d304d0b" } }, { - "title": "Technical Program Manager", - "company": "Shopify", + "title": "AI Engineer", + "company": "DoorDash", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-07-03T01:56:28.102Z" + "$date": "2027-12-16T22:28:04.375Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353220" + "$oid": "66723dae8f368f285d304d0c" } }, { - "title": "Machine Learning Engineer", - "company": "Epic Games", + "title": "Data Engineer", + "company": "PayPal", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-09-20T15:13:14.953Z" + "$date": "2028-04-11T18:26:03.638Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353221" + "$oid": "66723dae8f368f285d304d0d" } }, { - "title": "Backend Developer", - "company": "EA (Electronic Arts)", + "title": "Software Engineer", + "company": "Cisco", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-01-17T16:14:11.487Z" + "$date": "2027-07-09T18:16:44.041Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353222" + "$oid": "66723dae8f368f285d304d0e" } }, { - "title": "Android Developer", + "title": "Full Stack Developer", "company": "VMware", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-04-15T20:22:26.431Z" + "$date": "2028-02-26T09:31:15.221Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353223" + "$oid": "66723dae8f368f285d304d0f" } } ] }, "education": [ { - "institution": "Ohio State University", + "institution": "University of New South Wales (UNSW Sydney)", + "degree": "Professional Degree", + "fieldOfStudy": "Computer Science", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2026-12-08T23:47:59.445Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304d10" + } + } + ], + "projects": [ + { + "name": "SmartCity", + "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", + "link": "https://github.com/username/smartcity", + "_id": { + "$oid": "66723dae8f368f285d304d11" + } + }, + { + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", + "_id": { + "$oid": "66723dae8f368f285d304d12" + } + }, + { + "name": "AIAssistant", + "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", + "link": "https://github.com/username/aiassistant", + "_id": { + "$oid": "66723dae8f368f285d304d13" + } + } + ], + "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", + "testimonials": [ + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "_id": { + "$oid": "66723dae8f368f285d304d14" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "66723dae8f368f285d304d15" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Annora-Brigge-fake", + "other": ["https://www.instagram.com/Annora-Brigge-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "BrainStation", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304d0a" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304af8" + }, + "firstName": "Bethanne", + "lastName": "Osband", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "LA 50", + "graduationYear": 2024, + "email": "bosband18@blinklist.com", + "linkedInProfile": "https://www.linkedin.com/in/Bethanne-Osband-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": [ + "Collaboration", + "Android Development", + "System Design", + "Containerization", + "Leadership", + "Edge Computing", + "Cloud Computing", + "Reactive Programming", + "C++", + "Refactoring", + "Automated Testing", + "Functional Programming", + "Natural Language Processing", + "CSS", + "Communication Skills", + "Ruby", + "Critical Thinking" + ], + "specializations": [ + "Integration Testing", + "Algorithm Design", + "Data Science", + "Mobile Development", + "Blockchain", + "Containerization" + ], + "careerInformation": { + "currentPosition": { "title": "Engineering Manager", "company": "Apple" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "University of Arizona", "degree": "Continuing Education", - "fieldOfStudy": "History", + "fieldOfStudy": "Accounting", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-01-04T08:26:54.292Z" + "$date": "2028-05-26T11:31:51.132Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353224" + "$oid": "66723dae8f368f285d304d17" } }, { - "institution": "Clemson University", - "degree": "Certificate Program", - "fieldOfStudy": "Political Science", + "institution": "Australian National University", + "degree": "Master of Arts (MA)", + "fieldOfStudy": "Pharmacy", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-04-18T02:30:09.236Z" + "$date": "2027-06-16T21:45:18.143Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353225" + "$oid": "66723dae8f368f285d304d18" } }, { - "institution": "University of Utah", - "degree": "Master of Public Administration (MPA)", - "fieldOfStudy": "Finance", + "institution": "University of Florida", + "degree": "Master of Business Administration (MBA)", + "fieldOfStudy": "Philosophy", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-07-18T13:38:03.252Z" + "$date": "2024-07-08T00:57:55.480Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353226" + "$oid": "66723dae8f368f285d304d19" } } ], "projects": [ { - "name": "AIChatbot", - "description": "AI-powered chatbot for customer support and interactive communication.", - "link": "https://github.com/username/aichatbot", + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", "_id": { - "$oid": "666cbc4a40af7b375e353227" + "$oid": "66723dae8f368f285d304d1a" } }, { - "name": "EduTech", - "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", - "link": "https://github.com/username/edutech", + "name": "CloudGuard", + "description": "Advanced cloud security suite ensuring data protection and compliance.", + "link": "https://github.com/username/cloudguard", "_id": { - "$oid": "666cbc4a40af7b375e353228" + "$oid": "66723dae8f368f285d304d1b" } }, { - "name": "SecureBackup", - "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", - "link": "https://github.com/username/securebackup", + "name": "VoiceAssistant", + "description": "Voice-controlled personal assistant using natural language processing.", + "link": "https://github.com/username/voiceassistant", "_id": { - "$oid": "666cbc4a40af7b375e353229" + "$oid": "66723dae8f368f285d304d1c" } } ], - "personalBio": "Passionate about building inclusive and accessible software that improves people's lives.", + "personalBio": "Adept at optimizing SQL and NoSQL databases for performance and scalability.", "testimonials": [ { - "from": "Olivia White", - "relation": "Tech Lead at Cloud Innovations", - "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "666cbc4a40af7b375e35322a" + "$oid": "66723dae8f368f285d304d1d" } }, { - "from": "Emily Brown", - "relation": "Client at GlobalSoft Solutions", - "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "66723dae8f368f285d304d1e" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "66723dae8f368f285d304d1f" + } + }, + { + "from": "Lucas Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", + "_id": { + "$oid": "66723dae8f368f285d304d20" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "666cbc4a40af7b375e35322b" + "$oid": "66723dae8f368f285d304d21" } } ], - "socialMediaLinks": { "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "BrainStation", + "socialMediaLinks": { + "blog": "https://www.Bethanne-Osband-fake-blog.com", + "other": ["https://www.instagram.com/Bethanne-Osband-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Coding Dojo", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e35321e" + "$oid": "66723dae8f368f285d304d16" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ec8" + "$oid": "66723da68f368f285d304af9" }, - "firstName": "Caitrin", - "lastName": "McAllister", - "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "cohort": "LA 47", + "firstName": "Hedda", + "lastName": "Tallquist", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "LA 64", "graduationYear": 2024, - "email": "cmcallister1n@ft.com", - "linkedInProfile": "https://www.linkedin.com/in/Caitrin-McAllister-fake", - "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", - "skills": [ - "Project Management", - "HTML", - "React", - "Legacy Code Management", - "GraphQL", - "Critical Thinking", - "Database Design", - "Angular", - "Event-Driven Architecture", - "Blockchain", - "Flask", - "Docker", - "Reactive Programming" - ], + "email": "htallquist19@cisco.com", + "linkedInProfile": "https://www.linkedin.com/in/Hedda-Tallquist-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [], "specializations": [ - "Communication Skills", - "Data Science", + "Graph Databases", + "Data Visualization", + "Natural Language Processing", + "User Experience (UX) Design", "Infrastructure as Code", - "Pair Programming", - "Laravel", - "API Integration", - "FaaS (Function as a Service)", - "Concurrency", + "Design Patterns", + "Angular", "ASP.NET", - "Django", - "AWS", - "HTML", - "Angular" + "SQL", + "WebSockets" ], "careerInformation": { - "currentPosition": { "title": "Software Developer", "company": "Salesforce" }, + "currentPosition": { "title": "Junior Software Engineer", "company": "Activision Blizzard" }, "pastPositions": [ { - "title": "Software Developer", - "company": "Stripe", + "title": "Frontend Developer", + "company": "VMware", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-07-30T18:26:41.107Z" + "$date": "2025-03-01T13:31:50.544Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35322d" + "$oid": "66723dae8f368f285d304d23" } }, { - "title": "Machine Learning Engineer", - "company": "IBM", + "title": "Security Engineer", + "company": "HubSpot", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2024-07-23T11:49:14.852Z" + "$date": "2026-02-04T09:18:28.816Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35322e" + "$oid": "66723dae8f368f285d304d24" } }, { - "title": "Web Developer", - "company": "GitHub", + "title": "Android Developer", + "company": "EA (Electronic Arts)", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2025-07-01T12:38:42.761Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304d25" + } + }, + { + "title": "Backend Developer", + "company": "Snapchat", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2027-01-01T11:29:37.946Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304d26" + } + }, + { + "title": "Cloud Engineer", + "company": "Stripe", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-06-28T07:01:22.336Z" + "$date": "2028-04-18T10:08:35.372Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35322f" + "$oid": "66723dae8f368f285d304d27" } } ] }, "education": [ { - "institution": "Tsinghua University", - "degree": "Master of Science (MS)", - "fieldOfStudy": "Sociology", + "institution": "University of Colorado Boulder", + "degree": "Doctor of Philosophy (PhD)", + "fieldOfStudy": "Aerospace Engineering", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2028-04-29T04:05:51.043Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304d28" + } + }, + { + "institution": "University of Minnesota", + "degree": "Bachelor of Fine Arts (BFA)", + "fieldOfStudy": "English Literature", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2027-06-01T14:21:12.269Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304d29" + } + }, + { + "institution": "University of Toronto", + "degree": "Continuing Education", + "fieldOfStudy": "Law", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-08-09T10:38:35.558Z" + "$date": "2025-01-20T10:46:03.418Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353230" + "$oid": "66723dae8f368f285d304d2a" } } ], "projects": [ { - "name": "EventPlanner", - "description": "Event management and planning software for organizing and coordinating events.", - "link": "https://github.com/username/eventplanner", + "name": "ARNavigation", + "description": "Augmented reality navigation app for real-time directions and location-based information.", + "link": "https://github.com/username/arnavigation", "_id": { - "$oid": "666cbc4a40af7b375e353231" + "$oid": "66723dae8f368f285d304d2b" } }, { - "name": "DataCrunch", - "description": "Real-time data analytics platform for extracting insights from big data.", - "link": "https://github.com/username/datacrunch", + "name": "CloudGuard", + "description": "Advanced cloud security suite ensuring data protection and compliance.", + "link": "https://github.com/username/cloudguard", "_id": { - "$oid": "666cbc4a40af7b375e353232" + "$oid": "66723dae8f368f285d304d2c" } }, { - "name": "CloudStorage", - "description": "Cloud storage service with file synchronization and sharing capabilities.", - "link": "https://github.com/username/cloudstorage", + "name": "SmartHomeHub", + "description": "Centralized home automation system integrating IoT devices for smart living.", + "link": "https://github.com/username/smarthomehub", "_id": { - "$oid": "666cbc4a40af7b375e353233" + "$oid": "66723dae8f368f285d304d2d" } } ], - "personalBio": "Experienced in rapid prototyping and iterative development methodologies.", + "personalBio": "Dedicated to upholding best practices in software engineering, including testing, code reviews, and version control.", "testimonials": [], - "socialMediaLinks": { - "twitter": "https://x.com/Caitrin-McAllister-fake", - "blog": "https://www.Caitrin-McAllister-fake-blog.com", - "other": ["https://www.instagram.com/Caitrin-McAllister-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Galvanize", + "socialMediaLinks": { "blog": "https://www.Hedda-Tallquist-fake-blog.com", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "General Assembly", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e35322c" + "$oid": "66723dae8f368f285d304d22" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ec9" + "$oid": "66723da68f368f285d304afa" }, - "firstName": "Sephira", - "lastName": "Kaming", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "FTRI 3", + "firstName": "Lynelle", + "lastName": "Grosvener", + "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "cohort": "NYC 27", "graduationYear": 2024, - "email": "skaming1o@about.me", - "linkedInProfile": "https://www.linkedin.com/in/Sephira-Kaming-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", - "skills": [ - "Continuous Deployment", - "Performance Optimization", - "WebSockets", - "JavaScript", - "User Interface (UI) Design", - "BDD (Behavior-Driven Development)", - "Scrum", - "Time Management", - "Android Development", - "Legacy Code Management", - "IoT (Internet of Things)", - "Python" - ], + "email": "lgrosvener1a@google.cn", + "linkedInProfile": "https://www.linkedin.com/in/Lynelle-Grosvener-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "skills": [], "specializations": [ - "RESTful APIs", - "BDD (Behavior-Driven Development)", "iOS Development", - "Collaboration", + "Legacy Code Management", + "Mobile Development", + "Microservices", "Object-Oriented Programming", - "Quantum Computing", - "Java", - "System Design" + "Kubernetes", + "Deep Learning", + "Cybersecurity", + "DevOps", + "Graph Databases", + "Ruby", + "CSS", + "WebSockets", + "Time Management", + "Machine Learning" ], "careerInformation": { - "currentPosition": { "title": "iOS Developer", "company": "NVIDIA" }, + "currentPosition": { "title": "Test Engineer", "company": "ServiceNow" }, "pastPositions": [ { - "title": "Embedded Systems Engineer", - "company": "Epic Games", + "title": "Software Architect", + "company": "GitHub", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-11-05T01:23:00.221Z" + "$date": "2027-12-28T18:42:02.470Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353235" + "$oid": "66723dae8f368f285d304d2f" } }, { - "title": "Full Stack Developer", - "company": "Zoom", + "title": "Automation Engineer", + "company": "Epic Games", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-03-18T20:20:30.774Z" + "$date": "2025-06-11T11:54:02.772Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353236" + "$oid": "66723dae8f368f285d304d30" } }, { - "title": "Test Engineer", - "company": "Spotify", + "title": "Product Manager", + "company": "Netflix", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-06-27T05:50:31.468Z" + "$date": "2025-11-04T15:07:14.940Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353237" + "$oid": "66723dae8f368f285d304d31" } }, { - "title": "Product Manager", - "company": "Snapchat", + "title": "Engineering Manager", + "company": "Palantir", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-10-22T21:29:39.456Z" + "$date": "2026-03-30T09:09:44.844Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353238" + "$oid": "66723dae8f368f285d304d32" } } ] }, "education": [ { - "institution": "University College London (UCL)", - "degree": "Bachelor of Fine Arts (BFA)", - "fieldOfStudy": "Graphic Design", + "institution": "University of Arizona", + "degree": "Doctor of Pharmacy (PharmD)", + "fieldOfStudy": "History", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-04-17T16:29:27.160Z" + "$date": "2027-12-20T21:33:55.047Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353239" + "$oid": "66723dae8f368f285d304d33" } }, { - "institution": "University of Pittsburgh", - "degree": "Professional Degree", - "fieldOfStudy": "Mechanical Engineering", + "institution": "Yale University", + "degree": "Master of Fine Arts (MFA)", + "fieldOfStudy": "Political Science", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2024-07-14T11:38:11.747Z" + "$date": "2028-05-02T22:42:12.692Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35323a" + "$oid": "66723dae8f368f285d304d34" + } + } + ], + "projects": [], + "personalBio": "Passionate about contributing to the tech community through open-source projects and knowledge sharing.", + "testimonials": [ + { + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "_id": { + "$oid": "66723dae8f368f285d304d35" } }, { - "institution": "University of Florida", - "degree": "Bachelor of Arts (BA)", - "fieldOfStudy": "Communication Studies", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-08-03T18:40:51.961Z" - }, + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "_id": { + "$oid": "66723dae8f368f285d304d36" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "66723dae8f368f285d304d37" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e35323b" + "$oid": "66723dae8f368f285d304d38" } } ], + "socialMediaLinks": { + "twitter": "https://x.com/Lynelle-Grosvener-fake", + "blog": "https://www.Lynelle-Grosvener-fake-blog.com", + "other": ["https://www.instagram.com/Lynelle-Grosvener-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Hack Reactor", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304d2e" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304afb" + }, + "firstName": "Lenee", + "lastName": "Pethybridge", + "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "cohort": "ECRI 26", + "graduationYear": 2024, + "email": "lpethybridge1b@chron.com", + "linkedInProfile": "https://www.linkedin.com/in/Lenee-Pethybridge-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": ["Microservices"], + "specializations": [ + "Docker", + "AR/VR (Augmented/Virtual Reality)", + "CSS", + "React", + "System Design", + "Algorithm Design", + "Time Management", + "Performance Optimization", + "JavaScript" + ], + "careerInformation": { + "currentPosition": { "title": "Automation Engineer", "company": "NVIDIA" }, + "pastPositions": [] + }, + "education": [], "projects": [ { - "name": "JobFinder", - "description": "Job search and application management platform with personalized recommendations.", - "link": "https://github.com/username/jobfinder", + "name": "RoboTrader", + "description": "Algorithmic trading platform for automated stock market analysis and trading.", + "link": "https://github.com/username/robotrader", "_id": { - "$oid": "666cbc4a40af7b375e35323c" + "$oid": "66723dae8f368f285d304d3a" } }, { - "name": "RoboVision", - "description": "AI-powered computer vision system for object detection and recognition.", - "link": "https://github.com/username/robovision", + "name": "FoodDelivery", + "description": "Online food delivery platform connecting restaurants with customers for food ordering.", + "link": "https://github.com/username/fooddelivery", + "_id": { + "$oid": "66723dae8f368f285d304d3b" + } + }, + { + "name": "CodeBot", + "description": "Automated code generation tool using AI for faster development cycles.", + "link": "https://github.com/username/codebot", + "_id": { + "$oid": "66723dae8f368f285d304d3c" + } + }, + { + "name": "SocialConnect", + "description": "Social media integration platform for managing multiple social accounts.", + "link": "https://github.com/username/socialconnect", "_id": { - "$oid": "666cbc4a40af7b375e35323d" + "$oid": "66723dae8f368f285d304d3d" } }, { - "name": "FoodDelivery", - "description": "Online food delivery platform connecting restaurants with customers for food ordering.", - "link": "https://github.com/username/fooddelivery", + "name": "ARNavigation", + "description": "Augmented reality navigation app for real-time directions and location-based information.", + "link": "https://github.com/username/arnavigation", "_id": { - "$oid": "666cbc4a40af7b375e35323e" + "$oid": "66723dae8f368f285d304d3e" } } ], - "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", + "personalBio": "Experienced in rapid prototyping and iterative development methodologies.", "testimonials": [ { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "from": "Olivia White", + "relation": "Tech Lead at Cloud Innovations", + "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", "_id": { - "$oid": "666cbc4a40af7b375e35323f" + "$oid": "66723dae8f368f285d304d3f" } }, { @@ -10728,582 +6214,494 @@ "relation": "Director of Engineering at FutureTech", "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "666cbc4a40af7b375e353240" - } - }, - { - "from": "Sophia Martinez", - "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", - "_id": { - "$oid": "666cbc4a40af7b375e353241" - } - }, - { - "from": "Emma Thompson", - "relation": "Manager at DataTech Solutions", - "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", - "_id": { - "$oid": "666cbc4a40af7b375e353242" + "$oid": "66723dae8f368f285d304d40" } } ], - "socialMediaLinks": { "blog": "https://www.Sephira-Kaming-fake-blog.com", "other": [] }, + "socialMediaLinks": { "blog": "https://www.Lenee-Pethybridge-fake-blog.com", "other": [] }, "availabilityForNetworking": true, - "bootcampExperience": "Springboard", + "bootcampExperience": "Le Wagon", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353234" + "$oid": "66723dae8f368f285d304d39" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352eca" + "$oid": "66723da68f368f285d304afc" }, - "firstName": "Fraser", - "lastName": "Londsdale", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "CTRI 66", + "firstName": "Ninnette", + "lastName": "Maden", + "cohort": "ECRI 52", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304d41" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304afd" + }, + "firstName": "Jolynn", + "lastName": "Catenot", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "LA 55", "graduationYear": 2024, - "email": "flondsdale1p@freewebs.com", - "linkedInProfile": "https://www.linkedin.com/in/Fraser-Londsdale-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "email": "jcatenot1d@oakley.com", + "linkedInProfile": "https://www.linkedin.com/in/Jolynn-Catenot-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", "skills": [ - "FaaS (Function as a Service)", - "TDD (Test-Driven Development)", - "Legacy Code Management", - "Infrastructure as Code", - "Scrum", - "WebSockets", - "Critical Thinking", - "Event-Driven Architecture", - "Git", - "IoT (Internet of Things)", - "C++", - "Collaboration", - "Android Development", - "AWS", - "Algorithm Design", - "DevOps" - ], - "specializations": [ - "Natural Language Processing", - "Refactoring", - "Database Design", - "RESTful APIs", - "Vue.js", - "Algorithm Design", - "Critical Thinking", + "Java", + "Ruby", + "ASP.NET", + "React", "PaaS (Platform as a Service)", - "Pair Programming", - "AWS" + "Kubernetes", + "Reactive Programming", + "Concurrency", + "Database Design" ], + "specializations": ["Problem-Solving", "Graph Theory", "Agile Development"], "careerInformation": { - "currentPosition": { "title": "AI Engineer", "company": "Snapchat" }, + "currentPosition": { "title": "Android Developer", "company": "Square" }, "pastPositions": [ { - "title": "Mobile Developer", - "company": "Square", + "title": "Engineering Manager", + "company": "DoorDash", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-03-09T10:31:59.160Z" + "$date": "2024-09-14T13:12:44.183Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353244" + "$oid": "66723dae8f368f285d304d43" } }, { - "title": "Automation Engineer", - "company": "Snapchat", + "title": "QA Engineer", + "company": "Datadog", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-03-09T15:20:32.975Z" + "$date": "2024-06-21T15:57:03.206Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353245" + "$oid": "66723dae8f368f285d304d44" } }, { - "title": "Security Engineer", - "company": "Microsoft", + "title": "Software Architect", + "company": "Salesforce", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-06-14T20:53:23.863Z" + "$date": "2024-11-23T03:27:35.839Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353246" + "$oid": "66723dae8f368f285d304d45" } }, { - "title": "Software Engineer", - "company": "Atlassian", + "title": "Test Engineer", + "company": "Square", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-09-17T05:32:15.775Z" + "$date": "2026-11-30T11:40:09.072Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353247" + "$oid": "66723dae8f368f285d304d46" } }, { - "title": "Cloud Engineer", - "company": "Square", + "title": "Lead Software Engineer", + "company": "Red Hat", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-08-25T00:40:37.332Z" + "$date": "2025-11-28T02:03:58.554Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353248" + "$oid": "66723dae8f368f285d304d47" } } ] }, "education": [ { - "institution": "Shanghai Jiao Tong University", - "degree": "Bachelor of Science (BS)", - "fieldOfStudy": "Film Studies", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-01-23T02:37:09.812Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353249" - } - }, - { - "institution": "New York University (NYU)", - "degree": "Executive Education", - "fieldOfStudy": "Physics", + "institution": "Brigham Young University", + "degree": "Professional Degree", + "fieldOfStudy": "Communication Studies", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-06-01T18:15:14.723Z" + "$date": "2024-11-29T16:38:48.306Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35324a" + "$oid": "66723dae8f368f285d304d48" } } ], "projects": [ { - "name": "EcoTech", - "description": "Environmental monitoring and conservation app with real-time data visualization.", - "link": "https://github.com/username/ecotech", - "_id": { - "$oid": "666cbc4a40af7b375e35324b" - } - }, - { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", - "_id": { - "$oid": "666cbc4a40af7b375e35324c" - } - }, - { - "name": "SmartLearning", - "description": "AI-driven personalized learning platform with adaptive learning algorithms.", - "link": "https://github.com/username/smartlearning", + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", "_id": { - "$oid": "666cbc4a40af7b375e35324d" + "$oid": "66723dae8f368f285d304d49" } }, { - "name": "SecureBackup", - "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", - "link": "https://github.com/username/securebackup", + "name": "ARNavigation", + "description": "Augmented reality navigation app for real-time directions and location-based information.", + "link": "https://github.com/username/arnavigation", "_id": { - "$oid": "666cbc4a40af7b375e35324e" + "$oid": "66723dae8f368f285d304d4a" } } ], - "personalBio": "Experienced in rapid prototyping and iterative development methodologies.", + "personalBio": "Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.", "testimonials": [ { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", "_id": { - "$oid": "666cbc4a40af7b375e35324f" + "$oid": "66723dae8f368f285d304d4b" } }, { - "from": "Olivia White", - "relation": "Tech Lead at Cloud Innovations", - "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "666cbc4a40af7b375e353250" + "$oid": "66723dae8f368f285d304d4c" } } ], "socialMediaLinks": { - "twitter": "https://x.com/Fraser-Londsdale-fake", - "blog": "https://www.Fraser-Londsdale-fake-blog.com", - "other": [] + "twitter": "https://x.com/Jolynn-Catenot-fake", + "other": ["https://www.instagram.com/Jolynn-Catenot-fake"] }, - "availabilityForNetworking": true, - "bootcampExperience": "Flatiron School", + "availabilityForNetworking": false, + "bootcampExperience": "App Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353243" + "$oid": "66723dae8f368f285d304d42" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ecb" + "$oid": "66723da68f368f285d304afe" }, - "firstName": "Alyssa", - "lastName": "Bangham", - "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "cohort": "CTRI 97", + "firstName": "Marabel", + "lastName": "Puleston", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "FTRI 6", "graduationYear": 2024, - "email": "abangham1q@usgs.gov", - "linkedInProfile": "https://www.linkedin.com/in/Alyssa-Bangham-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", - "skills": ["Robotic Process Automation", "Unit Testing"], - "specializations": [ - "Kubernetes", - "Critical Thinking", - "Vue.js", - "Agile Development", - "Ruby", - "Cloud Computing", - "React", - "Database Design", - "Functional Programming", - "Graph Databases", - "Leadership", + "email": "mpuleston1e@utexas.edu", + "linkedInProfile": "https://www.linkedin.com/in/Marabel-Puleston-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": [ + "Design Patterns", "Laravel", - "ETL (Extract, Transform, Load)" + "Integration Testing", + "Android Development", + "Performance Optimization", + "Blockchain" ], + "specializations": [], "careerInformation": { - "currentPosition": { "title": "Software Engineer", "company": "Red Hat" }, + "currentPosition": { "title": "Data Engineer", "company": "Salesforce" }, "pastPositions": [ { - "title": "Product Manager", - "company": "Salesforce", + "title": "Android Developer", + "company": "Twilio", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-04-18T19:02:18.926Z" + "$date": "2026-06-28T19:44:23.132Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353252" + "$oid": "66723dae8f368f285d304d4e" } }, { - "title": "Software Architect", - "company": "Palantir", + "title": "Data Scientist", + "company": "Google", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-01-31T04:26:21.195Z" + "$date": "2027-05-18T20:04:35.764Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353253" + "$oid": "66723dae8f368f285d304d4f" } }, { - "title": "Mobile Developer", - "company": "Red Hat", + "title": "Technical Lead", + "company": "Epic Games", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-11-28T14:14:44.148Z" + "$date": "2026-11-24T11:05:05.287Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353254" + "$oid": "66723dae8f368f285d304d50" } }, { - "title": "Software Architect", - "company": "Amazon", + "title": "Data Engineer", + "company": "Snowflake", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-07-27T11:09:36.163Z" + "$date": "2025-02-08T08:50:13.205Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353255" + "$oid": "66723dae8f368f285d304d51" } } ] }, "education": [ { - "institution": "University of Hong Kong (HKU)", - "degree": "Doctor of Dental Medicine (DMD)", - "fieldOfStudy": "Chemistry", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-04-30T06:35:24.263Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353256" - } - }, - { - "institution": "University of California, Santa Barbara (UCSB)", - "degree": "Doctor of Dental Surgery (DDS)", - "fieldOfStudy": "Mechanical Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-10-08T09:35:37.336Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353257" - } - }, - { - "institution": "London School of Economics and Political Science (LSE)", - "degree": "Master of Public Administration (MPA)", - "fieldOfStudy": "Journalism", + "institution": "McGill University", + "degree": "Bachelor of Engineering (BE)", + "fieldOfStudy": "Mathematics", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-12-15T22:55:05.312Z" + "$date": "2024-08-06T13:34:44.663Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353258" + "$oid": "66723dae8f368f285d304d52" } } ], "projects": [ { - "name": "TourismApp", - "description": "Mobile application for tourists providing travel guides and local recommendations.", - "link": "https://github.com/username/tourismapp", - "_id": { - "$oid": "666cbc4a40af7b375e353259" - } - }, - { - "name": "JobFinder", - "description": "Job search and application management platform with personalized recommendations.", - "link": "https://github.com/username/jobfinder", + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", "_id": { - "$oid": "666cbc4a40af7b375e35325a" + "$oid": "66723dae8f368f285d304d53" } }, { - "name": "TourismApp", - "description": "Mobile application for tourists providing travel guides and local recommendations.", - "link": "https://github.com/username/tourismapp", + "name": "RecruitmentAI", + "description": "AI-powered recruitment platform for matching candidates with job opportunities.", + "link": "https://github.com/username/recruitmentai", "_id": { - "$oid": "666cbc4a40af7b375e35325b" + "$oid": "66723dae8f368f285d304d54" } }, { - "name": "SmartCarPark", - "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", - "link": "https://github.com/username/smartcarpark", + "name": "SmartHomeHub", + "description": "Centralized home automation system integrating IoT devices for smart living.", + "link": "https://github.com/username/smarthomehub", "_id": { - "$oid": "666cbc4a40af7b375e35325c" + "$oid": "66723dae8f368f285d304d55" } }, { - "name": "RoboVision", - "description": "AI-powered computer vision system for object detection and recognition.", - "link": "https://github.com/username/robovision", + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", "_id": { - "$oid": "666cbc4a40af7b375e35325d" + "$oid": "66723dae8f368f285d304d56" } } ], - "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", + "personalBio": "Enthusiastic about open-source contributions and collaborating with diverse teams to deliver impactful projects.", "testimonials": [ { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", "_id": { - "$oid": "666cbc4a40af7b375e35325e" + "$oid": "66723dae8f368f285d304d57" } }, { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", "_id": { - "$oid": "666cbc4a40af7b375e35325f" + "$oid": "66723dae8f368f285d304d58" } }, { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "_id": { + "$oid": "66723dae8f368f285d304d59" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e353260" + "$oid": "66723dae8f368f285d304d5a" } } ], - "socialMediaLinks": { - "twitter": "https://x.com/Alyssa-Bangham-fake", - "other": ["https://www.instagram.com/Alyssa-Bangham-fake"] - }, + "socialMediaLinks": { "twitter": "https://x.com/Marabel-Puleston-fake", "other": [] }, "availabilityForNetworking": false, - "bootcampExperience": "Galvanize", + "bootcampExperience": "General Assembly", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353251" + "$oid": "66723dae8f368f285d304d4d" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ecc" + "$oid": "66723da68f368f285d304aff" }, - "firstName": "Clarette", - "lastName": "Alcock", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "LA 70", + "firstName": "Bryn", + "lastName": "Arias", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "ECRI 84", "graduationYear": 2024, - "email": "calcock1r@amazonaws.com", - "linkedInProfile": "https://www.linkedin.com/in/Clarette-Alcock-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "email": "barias1f@flavors.me", + "linkedInProfile": "https://www.linkedin.com/in/Bryn-Arias-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", "skills": [ - "Spring Boot", - "Graph Theory", - "ETL (Extract, Transform, Load)", - "Mobile Development", "DevOps", + "Robotic Process Automation", + "Node.js", + "Problem-Solving", + "Django", + "Performance Optimization", + "Cybersecurity", + "Vue.js", + "Automated Testing", + "Critical Thinking", "BDD (Behavior-Driven Development)", - "SQL", - "CSS", - "Technical Writing", - "WebSockets", - "Data Science", - "Android Development" + "API Integration", + "Design Patterns", + "Git", + "Project Management", + "C++", + "User Interface (UI) Design", + "Collaboration" ], - "specializations": [], + "specializations": ["Git", "Machine Learning", "Data Science", "Agile Development"], "careerInformation": { - "currentPosition": { "title": "Backend Developer", "company": "Oracle" }, + "currentPosition": { "title": "Engineering Manager", "company": "VMware" }, "pastPositions": [ { - "title": "Web Developer", + "title": "Backend Developer", + "company": "Twitter", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2026-01-09T04:51:11.948Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304d5c" + } + }, + { + "title": "Lead Software Engineer", "company": "Adobe", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-07-21T04:30:41.742Z" + "$date": "2026-03-01T13:47:35.462Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353262" + "$oid": "66723dae8f368f285d304d5d" } }, { - "title": "Principal Software Engineer", - "company": "Airbnb", + "title": "Data Scientist", + "company": "Google", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-02-18T18:54:17.293Z" + "$date": "2027-03-28T10:15:44.607Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353263" + "$oid": "66723dae8f368f285d304d5e" } } ] }, "education": [ { - "institution": "Columbia University", - "degree": "Diploma Program", - "fieldOfStudy": "Journalism", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-11-02T04:16:08.829Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353264" - } - }, - { - "institution": "Massachusetts Institute of Technology (MIT)", - "degree": "Juris Doctor (JD)", - "fieldOfStudy": "International Relations", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-03-01T05:33:41.601Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353265" - } - }, - { - "institution": "University of Cambridge", - "degree": "Doctor of Veterinary Medicine (DVM)", - "fieldOfStudy": "Urban Planning", + "institution": "Syracuse University", + "degree": "Master of Public Administration (MPA)", + "fieldOfStudy": "Business Administration", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-01-05T18:36:05.850Z" + "$date": "2025-07-03T21:11:33.656Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353266" + "$oid": "66723dae8f368f285d304d5f" } } ], "projects": [ { - "name": "VoiceAssistant", - "description": "Voice-controlled personal assistant using natural language processing.", - "link": "https://github.com/username/voiceassistant", + "name": "GenomeQuest", + "description": "Genomic data analysis tool for researchers and bioinformaticians.", + "link": "https://github.com/username/genomequest", "_id": { - "$oid": "666cbc4a40af7b375e353267" + "$oid": "66723dae8f368f285d304d60" } }, { - "name": "SmartWatch", - "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", - "link": "https://github.com/username/smartwatch", + "name": "CloudGuard", + "description": "Advanced cloud security suite ensuring data protection and compliance.", + "link": "https://github.com/username/cloudguard", "_id": { - "$oid": "666cbc4a40af7b375e353268" + "$oid": "66723dae8f368f285d304d61" } }, { @@ -11311,34 +6709,26 @@ "description": "AI-driven code optimization tool for improving software performance and efficiency.", "link": "https://github.com/username/codeoptimizer", "_id": { - "$oid": "666cbc4a40af7b375e353269" + "$oid": "66723dae8f368f285d304d62" } }, { - "name": "CloudGuard", - "description": "Advanced cloud security suite ensuring data protection and compliance.", - "link": "https://github.com/username/cloudguard", + "name": "SmartCity", + "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", + "link": "https://github.com/username/smartcity", "_id": { - "$oid": "666cbc4a40af7b375e35326a" + "$oid": "66723dae8f368f285d304d63" } } ], - "personalBio": "Proactive learner constantly exploring emerging technologies and trends in the software industry.", + "personalBio": "Experienced in building scalable microservices architectures and integrating third-party APIs.", "testimonials": [ { - "from": "Isabella Clark", - "relation": "HR Manager at TechFusion", - "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", - "_id": { - "$oid": "666cbc4a40af7b375e35326b" - } - }, - { - "from": "Mia Davis", + "from": "Liam Harris", "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "666cbc4a40af7b375e35326c" + "$oid": "66723dae8f368f285d304d64" } }, { @@ -11346,2999 +6736,3126 @@ "relation": "HR Manager at TechFusion", "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e35326d" + "$oid": "66723dae8f368f285d304d65" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", "_id": { - "$oid": "666cbc4a40af7b375e35326e" + "$oid": "66723dae8f368f285d304d66" } } ], "socialMediaLinks": { - "twitter": "https://x.com/Clarette-Alcock-fake", - "blog": "https://www.Clarette-Alcock-fake-blog.com", - "other": ["https://www.instagram.com/Clarette-Alcock-fake"] + "twitter": "https://x.com/Bryn-Arias-fake", + "other": ["https://www.instagram.com/Bryn-Arias-fake"] }, "availabilityForNetworking": true, - "bootcampExperience": "Ironhack", + "bootcampExperience": "Nucamp", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353261" + "$oid": "66723dae8f368f285d304d5b" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ecd" + "$oid": "66723da68f368f285d304b00" }, - "firstName": "Lizbeth", - "lastName": "France", + "firstName": "Arni", + "lastName": "Jertz", "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "cohort": "FTRI 52", + "cohort": "PTRI 9", "graduationYear": 2024, - "email": "lfrance1s@yahoo.com", - "linkedInProfile": "https://www.linkedin.com/in/Lizbeth-France-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "email": "ajertz1g@tuttocitta.it", + "linkedInProfile": "https://www.linkedin.com/in/Arni-Jertz-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", "skills": [ - "Functional Programming", - "NoSQL", - "Refactoring", + "Infrastructure as Code", + "TDD (Test-Driven Development)", + "Version Control", "Leadership", - "Reactive Programming", - "Quantum Computing", - "Data Science", - "Node.js", - "Graph Theory", - "Data Visualization", + "Django", + "Serverless Architecture", + "AWS", + "AR/VR (Augmented/Virtual Reality)", + "Critical Thinking" + ], + "specializations": [ + "Performance Optimization", + "Pair Programming", + "Integration Testing", "React", + "Continuous Deployment", + "Microservices", + "TDD (Test-Driven Development)", + "Infrastructure as Code", + "Spring Boot", + "System Design", + "Version Control", "Automated Testing", - "Collaboration", - "Database Design" + "Kubernetes", + "PaaS (Platform as a Service)" ], - "specializations": [], "careerInformation": { - "currentPosition": { "title": "Full Stack Developer", "company": "Snowflake" }, + "currentPosition": { "title": "Data Scientist", "company": "Square" }, "pastPositions": [ { - "title": "Embedded Systems Engineer", - "company": "Airbnb", + "title": "Security Engineer", + "company": "Qualcomm", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-12-16T20:03:10.345Z" + "$date": "2025-08-17T09:15:43.076Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353270" + "$oid": "66723dae8f368f285d304d68" } }, { - "title": "Principal Software Engineer", - "company": "LinkedIn", + "title": "Full Stack Developer", + "company": "Okta", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-11-23T15:05:45.365Z" + "$date": "2028-05-27T08:15:39.568Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353271" + "$oid": "66723dae8f368f285d304d69" } - } - ] - }, - "education": [ - { - "institution": "Indiana University Bloomington", - "degree": "Bachelor of Science (BS)", - "fieldOfStudy": "Business Administration", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-03-24T18:33:51.275Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353272" - } - }, - { - "institution": "University of Pittsburgh", - "degree": "Doctor of Dental Surgery (DDS)", - "fieldOfStudy": "Philosophy", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-08-17T12:40:17.466Z" }, - "_id": { - "$oid": "666cbc4a40af7b375e353273" - } - }, - { - "institution": "Clemson University", - "degree": "Technical School Certification", - "fieldOfStudy": "Linguistics", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + { + "title": "Web Developer", + "company": "Google", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2024-06-24T02:56:13.497Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304d6a" + } }, - "endDate": { - "$date": "2027-11-06T20:56:06.882Z" + { + "title": "Software Architect", + "company": "Lyft", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2026-08-06T06:13:55.501Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304d6b" + } }, - "_id": { - "$oid": "666cbc4a40af7b375e353274" - } - } - ], - "projects": [ - { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", - "_id": { - "$oid": "666cbc4a40af7b375e353275" - } - }, - { - "name": "EcoTech", - "description": "Environmental monitoring and conservation app with real-time data visualization.", - "link": "https://github.com/username/ecotech", - "_id": { - "$oid": "666cbc4a40af7b375e353276" - } - }, - { - "name": "CodeAnalyzer", - "description": "Static code analysis tool for detecting bugs and code quality improvements.", - "link": "https://github.com/username/codeanalyzer", - "_id": { - "$oid": "666cbc4a40af7b375e353277" - } - }, - { - "name": "JobFinder", - "description": "Job search and application management platform with personalized recommendations.", - "link": "https://github.com/username/jobfinder", - "_id": { - "$oid": "666cbc4a40af7b375e353278" - } - } - ], - "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", - "testimonials": [ - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "666cbc4a40af7b375e353279" - } - }, - { - "from": "Emma Thompson", - "relation": "Manager at DataTech Solutions", - "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", - "_id": { - "$oid": "666cbc4a40af7b375e35327a" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "666cbc4a40af7b375e35327b" + { + "title": "Software Engineer", + "company": "Adobe", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2025-08-04T05:14:29.095Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304d6c" + } } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Lizbeth-France-fake", - "blog": "https://www.Lizbeth-France-fake-blog.com", - "other": ["https://www.instagram.com/Lizbeth-France-fake"] + ] }, - "availabilityForNetworking": false, - "bootcampExperience": "BrainStation", + "education": [], + "projects": [], + "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", + "testimonials": [], + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Flatiron School", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e35326f" + "$oid": "66723dae8f368f285d304d67" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ece" + "$oid": "66723da68f368f285d304b01" }, - "firstName": "Abramo", - "lastName": "Sparkwell", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "NYC 9", + "firstName": "Maegan", + "lastName": "Mulhall", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "PTRI 48", "graduationYear": 2024, - "email": "asparkwell1t@berkeley.edu", - "linkedInProfile": "https://www.linkedin.com/in/Abramo-Sparkwell-fake", - "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", - "skills": ["Cybersecurity", "Big Data", "Graph Theory", "Database Design", "Python", "AWS"], - "specializations": [ - "Azure", - "HTML", - "Microservices", - "Performance Optimization", + "email": "mmulhall1h@wikipedia.org", + "linkedInProfile": "https://www.linkedin.com/in/Maegan-Mulhall-fake", + "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", + "skills": [ + "Machine Learning", + "C++", + "AWS", + "Infrastructure as Code", + "Quantum Computing", + "Design Patterns", + "Java", + "Vue.js", + "Big Data", + "Pair Programming", + "CSS", "Database Design", - "Refactoring", - "Google Cloud Platform" + "Kubernetes" + ], + "specializations": [ + "Data Science", + "Project Management", + "Agile Development", + "SaaS (Software as a Service)", + "Problem-Solving", + "Automated Testing", + "Node.js", + "Collaboration", + "CSS", + "Software Architecture", + "Git", + "Graph Databases", + "Event-Driven Architecture", + "Robotic Process Automation", + "Data Visualization", + "Serverless Architecture" ], "careerInformation": { - "currentPosition": { "title": "Full Stack Developer", "company": "Zoom" }, + "currentPosition": { "title": "Mobile Developer", "company": "DocuSign" }, "pastPositions": [ { - "title": "Principal Software Engineer", - "company": "VMware", + "title": "Senior Software Engineer", + "company": "Cisco", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-04-08T08:13:48.432Z" + "$date": "2026-03-18T00:55:04.766Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35327d" + "$oid": "66723dae8f368f285d304d6e" } }, { - "title": "Site Reliability Engineer", - "company": "Zoom", + "title": "Lead Software Engineer", + "company": "Asana", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2028-05-31T12:33:33.556Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304d6f" + } + }, + { + "title": "Cloud Engineer", + "company": "Netflix", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-10-12T17:16:24.958Z" + "$date": "2027-05-01T02:41:39.567Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35327e" + "$oid": "66723dae8f368f285d304d70" } } ] }, "education": [ { - "institution": "Seoul National University", - "degree": "Master of Public Administration (MPA)", - "fieldOfStudy": "Music", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-09-09T14:51:06.753Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35327f" - } - }, - { - "institution": "Michigan State University", - "degree": "Doctor of Veterinary Medicine (DVM)", - "fieldOfStudy": "Psychology", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-01-07T23:27:18.130Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353280" - } - }, - { - "institution": "Clemson University", - "degree": "Doctor of Veterinary Medicine (DVM)", - "fieldOfStudy": "Graphic Design", + "institution": "University of Cambridge", + "degree": "Master of Education (MEd)", + "fieldOfStudy": "Law", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-10-02T18:25:54.427Z" + "$date": "2026-07-25T05:55:24.704Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353281" + "$oid": "66723dae8f368f285d304d71" } } ], "projects": [], - "personalBio": "Dedicated to upholding best practices in software engineering, including testing, code reviews, and version control.", + "personalBio": "Passionate about improving codebase efficiency through refactoring and performance tuning.", "testimonials": [ { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", "_id": { - "$oid": "666cbc4a40af7b375e353282" + "$oid": "66723dae8f368f285d304d72" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "666cbc4a40af7b375e353283" + "$oid": "66723dae8f368f285d304d73" } }, { - "from": "Isabella Clark", - "relation": "HR Manager at TechFusion", - "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "from": "Olivia White", + "relation": "Tech Lead at Cloud Innovations", + "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", "_id": { - "$oid": "666cbc4a40af7b375e353284" + "$oid": "66723dae8f368f285d304d74" } }, { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "666cbc4a40af7b375e353285" + "$oid": "66723dae8f368f285d304d75" } }, { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e353286" + "$oid": "66723dae8f368f285d304d76" } } ], - "socialMediaLinks": { "blog": "https://www.Abramo-Sparkwell-fake-blog.com", "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "Nucamp", + "socialMediaLinks": { "other": ["https://www.instagram.com/Maegan-Mulhall-fake"] }, + "availabilityForNetworking": true, + "bootcampExperience": "Makers Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e35327c" + "$oid": "66723dae8f368f285d304d6d" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ecf" + "$oid": "66723da68f368f285d304b02" }, - "firstName": "Darb", - "lastName": "Coen", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "WCRI 79", + "firstName": "Nicolai", + "lastName": "Brugsma", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "ECRI 91", "graduationYear": 2024, - "email": "dcoen1u@prlog.org", - "linkedInProfile": "https://www.linkedin.com/in/Darb-Coen-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "email": "nbrugsma1i@4shared.com", + "linkedInProfile": "https://www.linkedin.com/in/Nicolai-Brugsma-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", "skills": [ - "Leadership", - "Ruby", - "Data Warehousing", - "Time Management", - "Reactive Programming", - "IoT (Internet of Things)", - "Continuous Deployment", + "DevOps", + "Serverless Architecture", + "AWS", + "Kubernetes", "Concurrency", - "SQL", - "Agile Development", - "Unit Testing" + "Quantum Computing", + "Data Warehousing", + "Code Review", + "WebSockets", + "Project Management", + "Data Visualization", + "Communication Skills", + "Machine Learning" ], "specializations": [ - "Agile Development", - "Git", + "Performance Optimization", + "Concurrency", "AWS", - "Scrum", - "Unit Testing", - "Mobile Development", - "JavaScript", - "Natural Language Processing", - "Design Patterns", + "Legacy Code Management", "Cybersecurity", - "Functional Programming", - "Concurrency", - "IoT (Internet of Things)", - "API Integration", - "Parallel Computing", - "Technical Writing", - "GraphQL" + "Integration Testing", + "React", + "Quantum Computing", + "Project Management" ], "careerInformation": { - "currentPosition": { "title": "Principal Software Engineer", "company": "Cisco" }, - "pastPositions": [ - { - "title": "Android Developer", - "company": "Facebook", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-07-20T15:35:33.057Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353288" - } - }, - { - "title": "Engineering Manager", - "company": "LinkedIn", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-07-21T00:05:43.178Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353289" - } - } - ] + "currentPosition": { "title": "Backend Developer", "company": "Snowflake" }, + "pastPositions": [] }, "education": [ { - "institution": "University of Colorado Boulder", - "degree": "Doctor of Dental Surgery (DDS)", - "fieldOfStudy": "Accounting", + "institution": "University of Alberta", + "degree": "Master of Social Work (MSW)", + "fieldOfStudy": "Medicine", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-07-13T17:41:40.464Z" + "$date": "2027-01-10T23:10:54.640Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35328a" - } - } - ], - "projects": [ - { - "name": "SmartCarPark", - "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", - "link": "https://github.com/username/smartcarpark", - "_id": { - "$oid": "666cbc4a40af7b375e35328b" - } - }, - { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", - "_id": { - "$oid": "666cbc4a40af7b375e35328c" + "$oid": "66723dae8f368f285d304d78" } } ], - "personalBio": "Skilled in conducting technical workshops and seminars to share knowledge and mentor aspiring developers.", + "projects": [], + "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", "testimonials": [ { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "from": "Lucas Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", "_id": { - "$oid": "666cbc4a40af7b375e35328d" + "$oid": "66723dae8f368f285d304d79" } }, { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "from": "Olivia White", + "relation": "Tech Lead at Cloud Innovations", + "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", "_id": { - "$oid": "666cbc4a40af7b375e35328e" + "$oid": "66723dae8f368f285d304d7a" } }, { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", "_id": { - "$oid": "666cbc4a40af7b375e35328f" + "$oid": "66723dae8f368f285d304d7b" } } ], "socialMediaLinks": { "other": [] }, "availabilityForNetworking": true, - "bootcampExperience": "Lambda School", + "bootcampExperience": "DevMountain", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353287" + "$oid": "66723dae8f368f285d304d77" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ed0" + "$oid": "66723da68f368f285d304b03" }, - "firstName": "Gusty", - "lastName": "Besnardeau", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "FTRI 56", + "firstName": "Bryan", + "lastName": "Heffy", + "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "cohort": "ECRI 27", "graduationYear": 2024, - "email": "gbesnardeau1v@themeforest.net", - "linkedInProfile": "https://www.linkedin.com/in/Gusty-Besnardeau-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", - "skills": ["Integration Testing", "Cloud Computing", "System Design", "Big Data", "Flask"], + "email": "bheffy1j@cbsnews.com", + "linkedInProfile": "https://www.linkedin.com/in/Bryan-Heffy-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "skills": [ + "Integration Testing", + "Refactoring", + "Technical Writing", + "Serverless Architecture", + "Data Warehousing", + "Laravel", + "RESTful APIs", + "Big Data" + ], "specializations": [ - "Java", - "ETL (Extract, Transform, Load)", + "Data Visualization", + "Containerization", + "SaaS (Software as a Service)", + "Scrum", + "Legacy Code Management", + "TDD (Test-Driven Development)", + "Event-Driven Architecture", + "Object-Oriented Programming", + "Functional Programming", "NoSQL", - "BDD (Behavior-Driven Development)", - "Data Warehousing", - "Natural Language Processing", - "Android Development", - "Python", - "Blockchain", - "Version Control", - "Refactoring", - "iOS Development", - "Ruby", - "AR/VR (Augmented/Virtual Reality)", - "System Design", - "SaaS (Software as a Service)" + "Graph Databases", + "JavaScript", + "Technical Writing", + "Kubernetes", + "Mobile Development" ], "careerInformation": { - "currentPosition": { "title": "iOS Developer", "company": "Epic Games" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "University of Miami", - "degree": "Master of Fine Arts (MFA)", - "fieldOfStudy": "Communication Studies", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-12-07T21:48:52.028Z" + "currentPosition": { "title": "DevOps Engineer", "company": "VMware" }, + "pastPositions": [ + { + "title": "Principal Software Engineer", + "company": "Adobe", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2027-09-20T09:30:19.952Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304d7d" + } }, - "_id": { - "$oid": "666cbc4a40af7b375e353291" + { + "title": "Data Engineer", + "company": "Twitter", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2026-07-06T00:25:21.976Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304d7e" + } } - }, + ] + }, + "education": [ { - "institution": "Massachusetts Institute of Technology (MIT)", - "degree": "Master of Public Health (MPH)", - "fieldOfStudy": "Film Studies", + "institution": "Columbia University", + "degree": "Diploma Program", + "fieldOfStudy": "Pharmacy", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-02-04T20:10:37.693Z" + "$date": "2026-04-25T06:21:03.451Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353292" + "$oid": "66723dae8f368f285d304d7f" } } ], "projects": [ { - "name": "SmartCity", - "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", - "link": "https://github.com/username/smartcity", + "name": "AugmentWorks", + "description": "Augmented reality application for enhancing workplace productivity and training.", + "link": "https://github.com/username/augmentworks", "_id": { - "$oid": "666cbc4a40af7b375e353293" + "$oid": "66723dae8f368f285d304d80" } }, { - "name": "SmartGrid", - "description": "Smart grid technology for efficient energy distribution and consumption.", - "link": "https://github.com/username/smartgrid", + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", "_id": { - "$oid": "666cbc4a40af7b375e353294" + "$oid": "66723dae8f368f285d304d81" } }, { - "name": "VirtualMarket", - "description": "Virtual reality shopping experience allowing users to browse and buy products online.", - "link": "https://github.com/username/virtualmarket", - "_id": { - "$oid": "666cbc4a40af7b375e353295" - } - } - ], - "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", - "testimonials": [ - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "name": "FoodDelivery", + "description": "Online food delivery platform connecting restaurants with customers for food ordering.", + "link": "https://github.com/username/fooddelivery", "_id": { - "$oid": "666cbc4a40af7b375e353296" + "$oid": "66723dae8f368f285d304d82" } }, { - "from": "Liam Harris", - "relation": "Lead Developer at CloudTech", - "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "name": "CodeBot", + "description": "Automated code generation tool using AI for faster development cycles.", + "link": "https://github.com/username/codebot", "_id": { - "$oid": "666cbc4a40af7b375e353297" + "$oid": "66723dae8f368f285d304d83" } } ], - "socialMediaLinks": { "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "Makers Academy", + "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Bryan-Heffy-fake", + "blog": "https://www.Bryan-Heffy-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": true, + "bootcampExperience": "CareerFoundry", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353290" + "$oid": "66723dae8f368f285d304d7c" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ed1" + "$oid": "66723da68f368f285d304b04" }, - "firstName": "Randy", - "lastName": "Verriour", - "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "cohort": "PTRI 72", + "firstName": "Donavon", + "lastName": "Osichev", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "CTRI 27", "graduationYear": 2024, - "email": "rverriour1w@ebay.co.uk", - "linkedInProfile": "https://www.linkedin.com/in/Randy-Verriour-fake", + "email": "dosichev1k@pinterest.com", + "linkedInProfile": "https://www.linkedin.com/in/Donavon-Osichev-fake", "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", "skills": [ - "Docker", - "Communication Skills", - "Azure", - "FaaS (Function as a Service)", - "Critical Thinking", + "CSS", + "Unit Testing", + "Refactoring", "Machine Learning", + "API Integration", + "Git", + "Blockchain", + "Natural Language Processing", + "Scrum", + "AR/VR (Augmented/Virtual Reality)", + "Automated Testing", + "Containerization", + "Node.js", + "SaaS (Software as a Service)", + "React" + ], + "specializations": [ + "Concurrency", "Python", - "IoT (Internet of Things)", - "GraphQL", - "Performance Optimization", - "Code Review", - "Flask" + "Edge Computing", + "API Integration", + "ETL (Extract, Transform, Load)", + "C#", + "User Interface (UI) Design", + "API Development", + "Mobile Development", + "Ruby", + "System Design", + "Reactive Programming", + "Java", + "Technical Writing" ], - "specializations": ["CI/CD", "Performance Optimization", "AWS"], "careerInformation": { - "currentPosition": { "title": "DevOps Engineer", "company": "Netflix" }, + "currentPosition": { "title": "Software Engineer", "company": "Snapchat" }, "pastPositions": [ { - "title": "DevOps Engineer", - "company": "Stripe", + "title": "Web Developer", + "company": "DocuSign", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-06-25T23:54:55.671Z" + "$date": "2027-12-04T06:20:52.416Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353299" + "$oid": "66723dae8f368f285d304d85" } }, { - "title": "Backend Developer", - "company": "Spotify", + "title": "Web Developer", + "company": "Atlassian", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2025-03-25T20:00:16.128Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304d86" + } + }, + { + "title": "Technical Program Manager", + "company": "Facebook", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2025-11-28T05:13:29.603Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304d87" + } + }, + { + "title": "Technical Program Manager", + "company": "Microsoft", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-09-30T11:34:41.836Z" + "$date": "2025-06-03T06:46:22.525Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35329a" + "$oid": "66723dae8f368f285d304d88" } } ] }, - "education": [ + "education": [], + "projects": [ { - "institution": "University of California, Los Angeles (UCLA)", - "degree": "Master of Science (MS)", - "fieldOfStudy": "Mathematics", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2028-05-09T03:09:26.576Z" - }, + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", "_id": { - "$oid": "666cbc4a40af7b375e35329b" + "$oid": "66723dae8f368f285d304d89" } - } - ], - "projects": [], - "personalBio": "Experienced in international collaboration and remote work, with a strong appreciation for cultural diversity.", - "testimonials": [ + }, { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "name": "VirtualTour", + "description": "Virtual reality tour application for immersive travel experiences.", + "link": "https://github.com/username/virtualtour", "_id": { - "$oid": "666cbc4a40af7b375e35329c" + "$oid": "66723dae8f368f285d304d8a" } }, { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", "_id": { - "$oid": "666cbc4a40af7b375e35329d" + "$oid": "66723dae8f368f285d304d8b" } }, { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "name": "HealthLink", + "description": "Telemedicine platform connecting patients with healthcare providers remotely.", + "link": "https://github.com/username/healthlink", "_id": { - "$oid": "666cbc4a40af7b375e35329e" + "$oid": "66723dae8f368f285d304d8c" } }, { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "name": "TourismApp", + "description": "Mobile application for tourists providing travel guides and local recommendations.", + "link": "https://github.com/username/tourismapp", + "_id": { + "$oid": "66723dae8f368f285d304d8d" + } + } + ], + "personalBio": "Committed to writing clean, maintainable code that meets rigorous performance standards.", + "testimonials": [ + { + "from": "Ethan Taylor", + "relation": "Co-founder at StartupX", + "text": "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", "_id": { - "$oid": "666cbc4a40af7b375e35329f" + "$oid": "66723dae8f368f285d304d8e" } }, { - "from": "Alice Johnson", - "relation": "Manager at TechSolutions Inc.", - "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "66723dae8f368f285d304d8f" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e3532a0" + "$oid": "66723dae8f368f285d304d90" + } + }, + { + "from": "Aiden Walker", + "relation": "CTO at Innovate Solutions", + "text": "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", + "_id": { + "$oid": "66723dae8f368f285d304d91" } } ], - "socialMediaLinks": { "twitter": "https://x.com/Randy-Verriour-fake", "other": [] }, + "socialMediaLinks": { "blog": "https://www.Donavon-Osichev-fake-blog.com", "other": [] }, "availabilityForNetworking": false, - "bootcampExperience": "Kenzie Academy", + "bootcampExperience": "Lambda School", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353298" + "$oid": "66723dae8f368f285d304d84" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ed2" + "$oid": "66723da68f368f285d304b05" }, - "firstName": "Israel", - "lastName": "Canti", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "CTRI 91", - "graduationYear": 2024, - "email": "icanti1x@businesswire.com", - "linkedInProfile": "https://www.linkedin.com/in/Israel-Canti-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "firstName": "Kennan", + "lastName": "Dugget", + "cohort": "PTRI 89", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304d92" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304b06" + }, + "firstName": "Paton", + "lastName": "Climance", + "cohort": "WCRI 92", "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304d93" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304b07" + }, + "firstName": "Caitrin", + "lastName": "McAllister", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "ECRI 84", + "graduationYear": 2024, + "email": "cmcallister1n@ft.com", + "linkedInProfile": "https://www.linkedin.com/in/Caitrin-McAllister-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": [ + "ETL (Extract, Transform, Load)", + "Java", + "Edge Computing", + "ASP.NET", + "Django", + "Python", + "Git", + "Cloud Computing", + "NoSQL", + "Unit Testing", + "PaaS (Platform as a Service)", + "Continuous Deployment", + "CI/CD", + "SQL", + "Blockchain", + "Big Data", + "HTML", + "Natural Language Processing" + ], "specializations": [ + "JavaScript", "Data Warehousing", - "Kubernetes", - "Microservices", - "Integration Testing", - "Algorithm Design", - "SQL", - "Robotic Process Automation", - "Docker", "Communication Skills", - "Object-Oriented Programming", - "SaaS (Software as a Service)", - "Pair Programming", - "Vue.js", - "Database Design", - "Collaboration", - "Parallel Computing", - "AR/VR (Augmented/Virtual Reality)" + "SQL", + "Cybersecurity" ], "careerInformation": { - "currentPosition": { "title": "Site Reliability Engineer", "company": "DoorDash" }, - "pastPositions": [] + "currentPosition": { "title": "Data Scientist", "company": "Amazon" }, + "pastPositions": [ + { + "title": "Principal Software Engineer", + "company": "Netflix", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2026-02-11T01:29:05.348Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304d95" + } + }, + { + "title": "AI Engineer", + "company": "Tesla", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2025-02-02T20:25:28.155Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304d96" + } + }, + { + "title": "Data Scientist", + "company": "Intel", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2027-07-08T22:37:46.570Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304d97" + } + }, + { + "title": "Junior Software Engineer", + "company": "DocuSign", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2025-01-05T15:56:46.646Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304d98" + } + } + ] }, "education": [ { - "institution": "Columbia University", - "degree": "Professional Development", - "fieldOfStudy": "Computer Science", + "institution": "University of New South Wales (UNSW Sydney)", + "degree": "Continuing Education", + "fieldOfStudy": "Fine Arts", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2027-09-28T17:59:04.136Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304d99" + } + }, + { + "institution": "University of New South Wales (UNSW Sydney)", + "degree": "Doctor of Education (EdD)", + "fieldOfStudy": "Management", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-05-30T15:17:25.392Z" + "$date": "2025-09-07T01:04:09.633Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532a2" + "$oid": "66723dae8f368f285d304d9a" } }, { - "institution": "Harvard University", - "degree": "Associate Degree", - "fieldOfStudy": "Graphic Design", + "institution": "University of Georgia", + "degree": "Master of Public Health (MPH)", + "fieldOfStudy": "Biology", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-03-25T22:04:25.831Z" + "$date": "2026-10-12T19:58:17.528Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532a3" + "$oid": "66723dae8f368f285d304d9b" } } ], "projects": [ { - "name": "SocialConnect", - "description": "Social media integration platform for managing multiple social accounts.", - "link": "https://github.com/username/socialconnect", + "name": "CryptoWallet", + "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", + "link": "https://github.com/username/cryptowallet", "_id": { - "$oid": "666cbc4a40af7b375e3532a4" + "$oid": "66723dae8f368f285d304d9c" } }, { - "name": "LearnHub", - "description": "Online learning platform offering courses on various subjects with interactive content.", - "link": "https://github.com/username/learnhub", + "name": "CryptoWallet", + "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", + "link": "https://github.com/username/cryptowallet", + "_id": { + "$oid": "66723dae8f368f285d304d9d" + } + }, + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "66723dae8f368f285d304d9e" + } + }, + { + "name": "CloudGuard", + "description": "Advanced cloud security suite ensuring data protection and compliance.", + "link": "https://github.com/username/cloudguard", "_id": { - "$oid": "666cbc4a40af7b375e3532a5" + "$oid": "66723dae8f368f285d304d9f" } } ], - "personalBio": "Detail-oriented developer with a strong foundation in algorithms and data structures.", + "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", "testimonials": [ { - "from": "David Smith", - "relation": "Colleague at InnovateTech Ltd.", - "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "666cbc4a40af7b375e3532a6" + "$oid": "66723dae8f368f285d304da0" } }, { - "from": "Aiden Walker", - "relation": "CTO at Innovate Solutions", - "text": "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e3532a7" + "$oid": "66723dae8f368f285d304da1" } }, { - "from": "David Smith", - "relation": "Colleague at InnovateTech Ltd.", - "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "666cbc4a40af7b375e3532a8" + "$oid": "66723dae8f368f285d304da2" } }, { - "from": "Sophie Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "_id": { + "$oid": "66723dae8f368f285d304da3" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e3532a9" + "$oid": "66723dae8f368f285d304da4" } } ], - "socialMediaLinks": { - "twitter": "https://x.com/Israel-Canti-fake", - "other": ["https://www.instagram.com/Israel-Canti-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "DevMountain", + "socialMediaLinks": { "blog": "https://www.Caitrin-McAllister-fake-blog.com", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Ironhack", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e3532a1" + "$oid": "66723dae8f368f285d304d94" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ed3" + "$oid": "66723da68f368f285d304b08" }, - "firstName": "Micky", - "lastName": "Dunseath", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "WCRI 33", + "firstName": "Sephira", + "lastName": "Kaming", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "LA 89", "graduationYear": 2024, - "email": "mdunseath1y@miibeian.gov.cn", - "linkedInProfile": "https://www.linkedin.com/in/Micky-Dunseath-fake", + "email": "skaming1o@about.me", + "linkedInProfile": "https://www.linkedin.com/in/Sephira-Kaming-fake", "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", "skills": [ - "System Design", - "Machine Learning", - "Software Architecture", - "Version Control", "Communication Skills", - "Unit Testing", - "Integration Testing", + "ASP.NET", + "API Integration", + "Time Management", + "API Development", + "Google Cloud Platform", + "CSS", + "Code Review", + "JavaScript" + ], + "specializations": [ "Scrum", - "JavaScript", + "HTML", + "Critical Thinking", + "AR/VR (Augmented/Virtual Reality)", + "Version Control", + "Automated Testing", + "Android Development", + "User Interface (UI) Design", "ETL (Extract, Transform, Load)", - "Infrastructure as Code", - "BDD (Behavior-Driven Development)", - "Data Warehousing", - "Python", - "Edge Computing", - "Vue.js" + "Azure" ], - "specializations": ["Legacy Code Management"], "careerInformation": { - "currentPosition": { "title": "Automation Engineer", "company": "Uber" }, + "currentPosition": { "title": "Software Architect", "company": "Coinbase" }, "pastPositions": [ { - "title": "Site Reliability Engineer", - "company": "Epic Games", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-03-30T00:50:16.885Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3532ab" - } - }, - { - "title": "Software Architect", - "company": "LinkedIn", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-04-04T00:19:20.434Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3532ac" - } - }, - { - "title": "Engineering Manager", - "company": "DocuSign", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-09-09T01:44:32.037Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3532ad" - } - }, - { - "title": "Technical Program Manager", - "company": "Activision Blizzard", + "title": "Frontend Developer", + "company": "Twilio", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-08-29T02:18:48.718Z" + "$date": "2027-08-10T16:26:57.640Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532ae" + "$oid": "66723dae8f368f285d304da6" } }, { - "title": "QA Engineer", - "company": "Epic Games", + "title": "Mobile Developer", + "company": "Cisco", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2024-06-27T23:13:13.148Z" + "$date": "2027-07-01T08:16:18.652Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532af" + "$oid": "66723dae8f368f285d304da7" } } ] }, "education": [ { - "institution": "University of New South Wales (UNSW Sydney)", - "degree": "Master of Technology (MTech)", - "fieldOfStudy": "Physics", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-09-10T05:01:01.537Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3532b0" - } - }, - { - "institution": "Georgia Institute of Technology", - "degree": "Doctor of Dental Medicine (DMD)", - "fieldOfStudy": "Chemistry", + "institution": "University of Arizona", + "degree": "Bachelor's Degree", + "fieldOfStudy": "Fine Arts", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-04-11T05:49:31.613Z" + "$date": "2026-04-01T10:27:28.760Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532b1" + "$oid": "66723dae8f368f285d304da8" } }, { - "institution": "University College London (UCL)", - "degree": "Master of Education (MEd)", - "fieldOfStudy": "Information Technology", + "institution": "University of Wisconsin-Madison", + "degree": "Diploma Program", + "fieldOfStudy": "Pharmacy", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2024-12-14T03:30:23.862Z" + "$date": "2027-03-31T23:37:22.434Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532b2" + "$oid": "66723dae8f368f285d304da9" } }, { - "institution": "ETH Zurich - Swiss Federal Institute of Technology", - "degree": "Executive Education", - "fieldOfStudy": "Economics", + "institution": "University of Chicago", + "degree": "Certificate Program", + "fieldOfStudy": "Education", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-08-30T06:43:26.717Z" + "$date": "2027-01-23T17:47:03.433Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532b3" + "$oid": "66723dae8f368f285d304daa" } } ], "projects": [ { - "name": "HealthLink", - "description": "Telemedicine platform connecting patients with healthcare providers remotely.", - "link": "https://github.com/username/healthlink", + "name": "TravelGuide", + "description": "Interactive travel guide application providing travel tips and destination insights.", + "link": "https://github.com/username/travelguide", "_id": { - "$oid": "666cbc4a40af7b375e3532b4" + "$oid": "66723dae8f368f285d304dab" } }, { - "name": "RoboVision", - "description": "AI-powered computer vision system for object detection and recognition.", - "link": "https://github.com/username/robovision", + "name": "SmartGrid", + "description": "Smart grid technology for efficient energy distribution and consumption.", + "link": "https://github.com/username/smartgrid", + "_id": { + "$oid": "66723dae8f368f285d304dac" + } + }, + { + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", "_id": { - "$oid": "666cbc4a40af7b375e3532b5" + "$oid": "66723dae8f368f285d304dad" } } ], - "personalBio": "Experienced in both frontend and backend development, with a focus on creating elegant and efficient solutions.", + "personalBio": "Adept at optimizing SQL and NoSQL databases for performance and scalability.", "testimonials": [ { - "from": "Daniel Lee", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "666cbc4a40af7b375e3532b6" + "$oid": "66723dae8f368f285d304dae" } }, { - "from": "Isabella Clark", - "relation": "HR Manager at TechFusion", - "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "666cbc4a40af7b375e3532b7" + "$oid": "66723dae8f368f285d304daf" } }, { - "from": "Olivia White", - "relation": "Tech Lead at Cloud Innovations", - "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "666cbc4a40af7b375e3532b8" + "$oid": "66723dae8f368f285d304db0" + } + }, + { + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "66723dae8f368f285d304db1" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "66723dae8f368f285d304db2" } } ], "socialMediaLinks": { - "twitter": "https://x.com/Micky-Dunseath-fake", - "blog": "https://www.Micky-Dunseath-fake-blog.com", - "other": ["https://www.instagram.com/Micky-Dunseath-fake"] + "twitter": "https://x.com/Sephira-Kaming-fake", + "blog": "https://www.Sephira-Kaming-fake-blog.com", + "other": ["https://www.instagram.com/Sephira-Kaming-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Thinkful", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304da5" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304b09" + }, + "firstName": "Fraser", + "lastName": "Londsdale", + "cohort": "NYC 0", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304db3" }, - "availabilityForNetworking": true, - "bootcampExperience": "Lambda School", + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304b0a" + }, + "firstName": "Alyssa", + "lastName": "Bangham", + "cohort": "ECRI 5", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e3532aa" + "$oid": "66723dae8f368f285d304db4" }, + "education": [], + "projects": [], + "testimonials": [], "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ed4" + "$oid": "66723da68f368f285d304b0b" }, - "firstName": "Gabi", - "lastName": "Hardcastle", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "ECRI 16", + "firstName": "Clarette", + "lastName": "Alcock", + "cohort": "NYC 59", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304db5" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304b0c" + }, + "firstName": "Lizbeth", + "lastName": "France", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "LA 21", "graduationYear": 2024, - "email": "ghardcastle1z@weebly.com", - "linkedInProfile": "https://www.linkedin.com/in/Gabi-Hardcastle-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", - "skills": ["Refactoring", "Docker"], - "specializations": ["Collaboration"], + "email": "lfrance1s@yahoo.com", + "linkedInProfile": "https://www.linkedin.com/in/Lizbeth-France-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": [ + "Laravel", + "Data Warehousing", + "Refactoring", + "AWS", + "TDD (Test-Driven Development)", + "CSS", + "SQL", + "ASP.NET", + "Project Management", + "Parallel Computing", + "Unit Testing", + "Quantum Computing", + "JavaScript" + ], + "specializations": ["Problem-Solving"], "careerInformation": { - "currentPosition": { "title": "Technical Program Manager", "company": "Asana" }, + "currentPosition": { "title": "Technical Lead", "company": "VMware" }, "pastPositions": [ { - "title": "Data Scientist", - "company": "Salesforce", + "title": "Software Engineer", + "company": "Snapchat", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2024-07-15T16:13:31.083Z" + "$date": "2026-03-02T10:07:52.075Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532ba" + "$oid": "66723dae8f368f285d304db7" } }, { - "title": "Embedded Systems Engineer", - "company": "Twitter", + "title": "Technical Program Manager", + "company": "Stripe", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-09-08T02:44:17.700Z" + "$date": "2027-11-16T05:16:14.228Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532bb" + "$oid": "66723dae8f368f285d304db8" } }, { - "title": "Web Developer", - "company": "Twitter", + "title": "Software Architect", + "company": "Adobe", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2027-10-10T03:10:25.625Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304db9" + } + }, + { + "title": "Backend Developer", + "company": "Lyft", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-11-04T01:27:27.531Z" + "$date": "2026-03-24T19:24:10.862Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532bc" + "$oid": "66723dae8f368f285d304dba" } } ] }, "education": [ { - "institution": "University College London (UCL)", - "degree": "Doctor of Dental Surgery (DDS)", - "fieldOfStudy": "Urban Planning", + "institution": "ETH Zurich - Swiss Federal Institute of Technology", + "degree": "Bachelor of Technology (BTech)", + "fieldOfStudy": "Sociology", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-10-31T07:34:05.608Z" + "$date": "2024-08-14T15:08:41.383Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532bd" + "$oid": "66723dae8f368f285d304dbb" } }, { - "institution": "University of Oregon", - "degree": "Postdoctoral Research", - "fieldOfStudy": "Statistics", + "institution": "University of Connecticut", + "degree": "High School Diploma", + "fieldOfStudy": "Dentistry", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2024-12-25T23:25:23.761Z" + "$date": "2024-10-22T16:12:35.056Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532be" + "$oid": "66723dae8f368f285d304dbc" } }, { - "institution": "Kyoto University", - "degree": "Professional Degree", - "fieldOfStudy": "Chemistry", + "institution": "University of Texas at Austin", + "degree": "Doctor of Dental Surgery (DDS)", + "fieldOfStudy": "Linguistics", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-09-02T23:56:40.528Z" + "$date": "2025-01-24T08:27:47.356Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532bf" + "$oid": "66723dae8f368f285d304dbd" + } + } + ], + "projects": [ + { + "name": "ARNavigation", + "description": "Augmented reality navigation app for real-time directions and location-based information.", + "link": "https://github.com/username/arnavigation", + "_id": { + "$oid": "66723dae8f368f285d304dbe" } }, { - "institution": "Case Western Reserve University", - "degree": "Doctor of Education (EdD)", - "fieldOfStudy": "Business Administration", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-09-03T21:47:28.188Z" - }, + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", "_id": { - "$oid": "666cbc4a40af7b375e3532c0" + "$oid": "66723dae8f368f285d304dbf" } } ], - "projects": [], - "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", + "personalBio": "Skilled in working with cross-functional teams to deliver innovative software solutions that exceed expectations.", "testimonials": [ { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e3532c1" + "$oid": "66723dae8f368f285d304dc0" } }, { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", "_id": { - "$oid": "666cbc4a40af7b375e3532c2" + "$oid": "66723dae8f368f285d304dc1" } }, { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "666cbc4a40af7b375e3532c3" + "$oid": "66723dae8f368f285d304dc2" } } ], "socialMediaLinks": { - "blog": "https://www.Gabi-Hardcastle-fake-blog.com", - "other": ["https://www.instagram.com/Gabi-Hardcastle-fake"] + "twitter": "https://x.com/Lizbeth-France-fake", + "blog": "https://www.Lizbeth-France-fake-blog.com", + "other": ["https://www.instagram.com/Lizbeth-France-fake"] }, - "availabilityForNetworking": true, - "bootcampExperience": "Kenzie Academy", + "availabilityForNetworking": false, + "bootcampExperience": "DevMountain", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e3532b9" + "$oid": "66723dae8f368f285d304db6" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ed5" + "$oid": "66723da68f368f285d304b0d" }, - "firstName": "Rakel", - "lastName": "Scothron", - "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "cohort": "ECRI 33", + "firstName": "Abramo", + "lastName": "Sparkwell", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "WCRI 72", "graduationYear": 2024, - "email": "rscothron20@yellowbook.com", - "linkedInProfile": "https://www.linkedin.com/in/Rakel-Scothron-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "email": "asparkwell1t@berkeley.edu", + "linkedInProfile": "https://www.linkedin.com/in/Abramo-Sparkwell-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", "skills": [ - "Kubernetes", - "Data Science", - "Pair Programming", - "C++", - "Azure", - "C#", - "Agile Development", - "Graph Theory", - "ETL (Extract, Transform, Load)", - "Critical Thinking", - "Natural Language Processing", - "RESTful APIs", - "Spring Boot", + "Blockchain", + "Mobile Development", + "Node.js", + "Object-Oriented Programming", + "Big Data", + "Scrum", + "Flask", + "TDD (Test-Driven Development)", + "Technical Writing", "Infrastructure as Code", - "Design Patterns", - "Flask" + "Docker", + "Concurrency", + "CI/CD", + "Critical Thinking" ], "specializations": [ - "Integration Testing", - "Object-Oriented Programming", - "Algorithm Design", - "AWS" - ], - "careerInformation": { - "currentPosition": { "title": "Lead Software Engineer", "company": "NVIDIA" }, - "pastPositions": [ - { - "title": "Security Engineer", - "company": "Apple", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-07-02T15:19:20.965Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3532c5" - } - }, - { - "title": "Frontend Developer", - "company": "Epic Games", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-02-13T11:57:22.086Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3532c6" - } - }, - { - "title": "QA Engineer", - "company": "Microsoft", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2028-03-22T23:48:16.752Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3532c7" - } - }, - { - "title": "Cloud Engineer", - "company": "Palantir", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-03-02T07:22:46.378Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3532c8" - } - }, - { - "title": "Machine Learning Engineer", - "company": "Asana", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-09-06T03:36:18.633Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3532c9" - } - } - ] + "ASP.NET", + "Kubernetes", + "Azure", + "Laravel", + "AR/VR (Augmented/Virtual Reality)", + "API Development", + "Communication Skills", + "API Integration", + "Continuous Deployment", + "Object-Oriented Programming", + "Problem-Solving" + ], + "careerInformation": { + "currentPosition": { "title": "Software Developer", "company": "Robinhood" }, + "pastPositions": [] }, "education": [ { - "institution": "McGill University", - "degree": "Master of Arts (MA)", - "fieldOfStudy": "Communication Studies", + "institution": "Tsinghua University", + "degree": "Master of Social Work (MSW)", + "fieldOfStudy": "Environmental Engineering", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-01-02T17:14:59.264Z" + "$date": "2027-01-16T11:47:18.624Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532ca" + "$oid": "66723dae8f368f285d304dc4" } }, { - "institution": "University of Texas at Austin", - "degree": "Bachelor of Technology (BTech)", - "fieldOfStudy": "Theater", + "institution": "Massachusetts Institute of Technology (MIT)", + "degree": "Trade School Certification", + "fieldOfStudy": "Urban Planning", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-06-17T06:22:43.238Z" + "$date": "2024-11-07T10:28:49.955Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532cb" + "$oid": "66723dae8f368f285d304dc5" + } + } + ], + "projects": [ + { + "name": "RecruitmentAI", + "description": "AI-powered recruitment platform for matching candidates with job opportunities.", + "link": "https://github.com/username/recruitmentai", + "_id": { + "$oid": "66723dae8f368f285d304dc6" + } + }, + { + "name": "EduTech", + "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", + "link": "https://github.com/username/edutech", + "_id": { + "$oid": "66723dae8f368f285d304dc7" + } + }, + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "66723dae8f368f285d304dc8" } } ], - "projects": [], "personalBio": "Passionate about improving codebase efficiency through refactoring and performance tuning.", "testimonials": [ { - "from": "Aiden Walker", - "relation": "CTO at Innovate Solutions", - "text": "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", + "from": "Lucas Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", "_id": { - "$oid": "666cbc4a40af7b375e3532cc" + "$oid": "66723dae8f368f285d304dc9" } }, { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "666cbc4a40af7b375e3532cd" + "$oid": "66723dae8f368f285d304dca" } }, { - "from": "David Smith", - "relation": "Colleague at InnovateTech Ltd.", - "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "from": "Olivia White", + "relation": "Tech Lead at Cloud Innovations", + "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "_id": { + "$oid": "66723dae8f368f285d304dcb" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "666cbc4a40af7b375e3532ce" + "$oid": "66723dae8f368f285d304dcc" } } ], - "socialMediaLinks": { "other": ["https://www.instagram.com/Rakel-Scothron-fake"] }, + "socialMediaLinks": { + "twitter": "https://x.com/Abramo-Sparkwell-fake", + "blog": "https://www.Abramo-Sparkwell-fake-blog.com", + "other": [] + }, "availabilityForNetworking": false, - "bootcampExperience": "Makers Academy", + "bootcampExperience": "Codesmith", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e3532c4" + "$oid": "66723dae8f368f285d304dc3" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ed6" + "$oid": "66723da68f368f285d304b0e" }, - "firstName": "Gretel", - "lastName": "Sitford", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "NYC 14", + "firstName": "Darb", + "lastName": "Coen", + "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "cohort": "FTRI 88", "graduationYear": 2024, - "email": "gsitford21@tinyurl.com", - "linkedInProfile": "https://www.linkedin.com/in/Gretel-Sitford-fake", - "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "email": "dcoen1u@prlog.org", + "linkedInProfile": "https://www.linkedin.com/in/Darb-Coen-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", "skills": [ - "Data Visualization", - "Pair Programming", + "Project Management", + "Scrum", + "Leadership", + "Object-Oriented Programming", + "Robotic Process Automation", + "AR/VR (Augmented/Virtual Reality)", + "Concurrency", + "ETL (Extract, Transform, Load)", + "Ruby", + "Cybersecurity", + "Collaboration", + "Communication Skills", + "Code Review", "Algorithm Design", - "TDD (Test-Driven Development)", - "Software Architecture", + "Unit Testing" + ], + "specializations": [ "IoT (Internet of Things)", - "Integration Testing", - "Critical Thinking", + "Pair Programming", + "BDD (Behavior-Driven Development)", + "Functional Programming", + "NoSQL", + "TDD (Test-Driven Development)", "Infrastructure as Code", - "Legacy Code Management", - "Concurrency", - "RESTful APIs" + "HTML", + "Performance Optimization", + "RESTful APIs", + "Event-Driven Architecture", + "Software Architecture" ], - "specializations": ["Problem-Solving"], "careerInformation": { - "currentPosition": { "title": "Technical Program Manager", "company": "Shopify" }, + "currentPosition": { "title": "Android Developer", "company": "Robinhood" }, "pastPositions": [ { - "title": "AI Engineer", - "company": "Datadog", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-05-02T07:57:36.125Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3532d0" - } - }, - { - "title": "Lead Software Engineer", - "company": "GitHub", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-09-05T03:23:53.286Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3532d1" - } - }, - { - "title": "Mobile Developer", - "company": "NVIDIA", + "title": "Test Engineer", + "company": "Workday", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-12-19T11:41:26.411Z" + "$date": "2025-10-16T01:29:03.158Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532d2" + "$oid": "66723dae8f368f285d304dce" } }, { - "title": "Senior Software Engineer", - "company": "Apple", + "title": "iOS Developer", + "company": "Red Hat", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-11-17T02:04:49.487Z" + "$date": "2025-04-28T19:56:49.598Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532d3" + "$oid": "66723dae8f368f285d304dcf" } }, { - "title": "Principal Software Engineer", - "company": "NVIDIA", + "title": "DevOps Engineer", + "company": "Slack", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-04-11T19:19:55.091Z" + "$date": "2026-03-07T20:45:36.700Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532d4" + "$oid": "66723dae8f368f285d304dd0" } } ] }, - "education": [ - { - "institution": "University of California, San Diego (UCSD)", - "degree": "Doctor of Business Administration (DBA)", - "fieldOfStudy": "Biology", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-12-13T16:41:16.536Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3532d5" - } - }, - { - "institution": "University of Toronto", - "degree": "Master of Fine Arts (MFA)", - "fieldOfStudy": "Theater", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-07-21T09:43:39.920Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3532d6" - } - }, - { - "institution": "University of Vermont", - "degree": "Bachelor of Business Administration (BBA)", - "fieldOfStudy": "Biomedical Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-01-07T21:40:28.123Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3532d7" - } - }, - { - "institution": "Rutgers University", - "degree": "High School Diploma", - "fieldOfStudy": "English Literature", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-06-04T07:01:26.695Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3532d8" - } - } - ], + "education": [], "projects": [ { - "name": "FoodDelivery", - "description": "Online food delivery platform connecting restaurants with customers for food ordering.", - "link": "https://github.com/username/fooddelivery", - "_id": { - "$oid": "666cbc4a40af7b375e3532d9" - } - }, - { - "name": "SmartFarm", - "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", - "link": "https://github.com/username/smartfarm", - "_id": { - "$oid": "666cbc4a40af7b375e3532da" - } - }, - { - "name": "EduTech", - "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", - "link": "https://github.com/username/edutech", - "_id": { - "$oid": "666cbc4a40af7b375e3532db" - } - }, - { - "name": "EcoTech", - "description": "Environmental monitoring and conservation app with real-time data visualization.", - "link": "https://github.com/username/ecotech", + "name": "CodeReview", + "description": "Collaborative code review platform with annotations and feedback features.", + "link": "https://github.com/username/codereview", "_id": { - "$oid": "666cbc4a40af7b375e3532dc" + "$oid": "66723dae8f368f285d304dd1" } }, { - "name": "EduTech", - "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", - "link": "https://github.com/username/edutech", + "name": "TourismApp", + "description": "Mobile application for tourists providing travel guides and local recommendations.", + "link": "https://github.com/username/tourismapp", "_id": { - "$oid": "666cbc4a40af7b375e3532dd" + "$oid": "66723dae8f368f285d304dd2" } } ], - "personalBio": "Devoted to fostering a collaborative team environment and mentoring junior developers.", + "personalBio": "Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.", "testimonials": [ { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "from": "Lucas Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", "_id": { - "$oid": "666cbc4a40af7b375e3532de" + "$oid": "66723dae8f368f285d304dd3" } }, { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "from": "Ethan Taylor", + "relation": "Co-founder at StartupX", + "text": "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", "_id": { - "$oid": "666cbc4a40af7b375e3532df" + "$oid": "66723dae8f368f285d304dd4" } }, { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", "_id": { - "$oid": "666cbc4a40af7b375e3532e0" + "$oid": "66723dae8f368f285d304dd5" } } ], "socialMediaLinks": { - "twitter": "https://x.com/Gretel-Sitford-fake", - "blog": "https://www.Gretel-Sitford-fake-blog.com", - "other": ["https://www.instagram.com/Gretel-Sitford-fake"] + "twitter": "https://x.com/Darb-Coen-fake", + "blog": "https://www.Darb-Coen-fake-blog.com", + "other": ["https://www.instagram.com/Darb-Coen-fake"] }, - "availabilityForNetworking": true, - "bootcampExperience": "Makers Academy", + "availabilityForNetworking": false, + "bootcampExperience": "Galvanize", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e3532cf" + "$oid": "66723dae8f368f285d304dcd" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ed7" + "$oid": "66723da68f368f285d304b0f" }, - "firstName": "Rosalinda", - "lastName": "Naisby", - "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "cohort": "LA 54", + "firstName": "Gusty", + "lastName": "Besnardeau", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "CTRI 48", "graduationYear": 2024, - "email": "rnaisby22@nationalgeographic.com", - "linkedInProfile": "https://www.linkedin.com/in/Rosalinda-Naisby-fake", + "email": "gbesnardeau1v@themeforest.net", + "linkedInProfile": "https://www.linkedin.com/in/Gusty-Besnardeau-fake", "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", - "skills": ["Vue.js"], - "specializations": [], + "skills": [ + "Java", + "Communication Skills", + "Project Management", + "Robotic Process Automation", + "Unit Testing", + "Spring Boot" + ], + "specializations": [ + "Blockchain", + "DevOps", + "SQL", + "Google Cloud Platform", + "Big Data", + "Graph Theory", + "Docker", + "Mobile Development", + "GraphQL", + "Spring Boot", + "Concurrency", + "API Development", + "Design Patterns", + "Database Design", + "iOS Development", + "Infrastructure as Code" + ], "careerInformation": { - "currentPosition": { "title": "Machine Learning Engineer", "company": "DocuSign" }, + "currentPosition": { "title": "Test Engineer", "company": "DoorDash" }, "pastPositions": [ { - "title": "Security Engineer", - "company": "Facebook", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-06-20T22:54:51.909Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3532e2" - } - }, - { - "title": "Lead Software Engineer", - "company": "DoorDash", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-07-18T04:18:14.508Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3532e3" - } - }, - { - "title": "Technical Lead", - "company": "Uber", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-01-13T08:51:36.424Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3532e4" - } - }, - { - "title": "Embedded Systems Engineer", - "company": "Workday", + "title": "Senior Software Engineer", + "company": "Slack", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-12-02T23:32:39.899Z" + "$date": "2026-09-26T13:00:21.779Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532e5" + "$oid": "66723dae8f368f285d304dd7" } }, { - "title": "Software Developer", - "company": "Salesforce", + "title": "Cloud Engineer", + "company": "Qualcomm", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-06-29T08:15:53.328Z" + "$date": "2026-11-16T15:25:04.328Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532e6" + "$oid": "66723dae8f368f285d304dd8" } } ] }, "education": [ { - "institution": "University of Sydney", - "degree": "Executive Education", - "fieldOfStudy": "History", + "institution": "University of Toronto", + "degree": "Master of Arts (MA)", + "fieldOfStudy": "Data Science", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-04-02T08:44:29.766Z" + "$date": "2025-04-18T20:32:13.471Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532e7" + "$oid": "66723dae8f368f285d304dd9" } }, { - "institution": "ETH Zurich - Swiss Federal Institute of Technology", - "degree": "Master of Science (MS)", - "fieldOfStudy": "Linguistics", + "institution": "Imperial College London", + "degree": "Bachelor of Engineering (BE)", + "fieldOfStudy": "Law", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2027-03-09T12:40:44.458Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304dda" + } + }, + { + "institution": "Peking University", + "degree": "Master of Technology (MTech)", + "fieldOfStudy": "Nursing", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-04-02T08:56:11.377Z" + "$date": "2025-12-28T11:19:55.539Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532e8" + "$oid": "66723dae8f368f285d304ddb" } } ], "projects": [ { - "name": "HealthLink", - "description": "Telemedicine platform connecting patients with healthcare providers remotely.", - "link": "https://github.com/username/healthlink", + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", "_id": { - "$oid": "666cbc4a40af7b375e3532e9" + "$oid": "66723dae8f368f285d304ddc" } }, { - "name": "GenomeQuest", - "description": "Genomic data analysis tool for researchers and bioinformaticians.", - "link": "https://github.com/username/genomequest", + "name": "SmartCity", + "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", + "link": "https://github.com/username/smartcity", "_id": { - "$oid": "666cbc4a40af7b375e3532ea" + "$oid": "66723dae8f368f285d304ddd" } - }, + } + ], + "personalBio": "Skilled in conducting technical workshops and seminars to share knowledge and mentor aspiring developers.", + "testimonials": [ { - "name": "CryptoTrack", - "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", - "link": "https://github.com/username/cryptotrack", + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "666cbc4a40af7b375e3532eb" + "$oid": "66723dae8f368f285d304dde" } }, { - "name": "RoboTrader", - "description": "Algorithmic trading platform for automated stock market analysis and trading.", - "link": "https://github.com/username/robotrader", + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "666cbc4a40af7b375e3532ec" + "$oid": "66723dae8f368f285d304ddf" } - } - ], - "personalBio": "Experienced in international collaboration and remote work, with a strong appreciation for cultural diversity.", - "testimonials": [ + }, { - "from": "Emily Brown", - "relation": "Client at GlobalSoft Solutions", - "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "from": "Ethan Taylor", + "relation": "Co-founder at StartupX", + "text": "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", "_id": { - "$oid": "666cbc4a40af7b375e3532ed" + "$oid": "66723dae8f368f285d304de0" } }, { - "from": "Isabella Clark", - "relation": "HR Manager at TechFusion", - "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "666cbc4a40af7b375e3532ee" + "$oid": "66723dae8f368f285d304de1" } }, { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", "_id": { - "$oid": "666cbc4a40af7b375e3532ef" + "$oid": "66723dae8f368f285d304de2" } } ], "socialMediaLinks": { - "blog": "https://www.Rosalinda-Naisby-fake-blog.com", - "other": ["https://www.instagram.com/Rosalinda-Naisby-fake"] + "blog": "https://www.Gusty-Besnardeau-fake-blog.com", + "other": ["https://www.instagram.com/Gusty-Besnardeau-fake"] }, "availabilityForNetworking": false, - "bootcampExperience": "Lambda School", + "bootcampExperience": "Nucamp", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e3532e1" + "$oid": "66723dae8f368f285d304dd6" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ed8" + "$oid": "66723da68f368f285d304b10" }, - "firstName": "Thaddus", - "lastName": "Waddell", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "CTRI 80", + "firstName": "Randy", + "lastName": "Verriour", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "LA 74", "graduationYear": 2024, - "email": "twaddell23@nymag.com", - "linkedInProfile": "https://www.linkedin.com/in/Thaddus-Waddell-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": [ - "Agile Development", - "SQL", - "Docker", - "System Design", - "Flask", - "API Development", - "Git" - ], + "email": "rverriour1w@ebay.co.uk", + "linkedInProfile": "https://www.linkedin.com/in/Randy-Verriour-fake", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "skills": ["ETL (Extract, Transform, Load)", "Natural Language Processing"], "specializations": [ + "Microservices", + "Natural Language Processing", + "Critical Thinking", + "Version Control", + "Technical Writing", + "API Integration", + "Performance Optimization", "Database Design", - "C++", - "Containerization", - "Azure", - "Object-Oriented Programming" + "Reactive Programming", + "GraphQL", + "Big Data", + "WebSockets" ], "careerInformation": { - "currentPosition": { "title": "Technical Program Manager", "company": "IBM" }, + "currentPosition": { "title": "QA Engineer", "company": "Netflix" }, "pastPositions": [ { - "title": "Lead Software Engineer", - "company": "Shopify", + "title": "Product Manager", + "company": "Red Hat", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-04-27T09:10:56.399Z" + "$date": "2024-09-01T03:39:29.287Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532f1" + "$oid": "66723dae8f368f285d304de4" } }, { - "title": "Technical Program Manager", - "company": "DocuSign", + "title": "Data Engineer", + "company": "Adobe", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2024-12-24T04:43:47.881Z" + "$date": "2024-09-26T11:23:20.673Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532f2" + "$oid": "66723dae8f368f285d304de5" } }, { - "title": "iOS Developer", - "company": "Atlassian", + "title": "Mobile Developer", + "company": "VMware", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2024-11-09T10:38:00.691Z" + "$date": "2027-07-08T08:47:04.767Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532f3" + "$oid": "66723dae8f368f285d304de6" } }, { - "title": "Web Developer", - "company": "GitHub", + "title": "Backend Developer", + "company": "PayPal", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-04-15T12:20:28.947Z" + "$date": "2024-09-01T13:16:14.657Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532f4" + "$oid": "66723dae8f368f285d304de7" } }, { - "title": "Principal Software Engineer", - "company": "Stripe", + "title": "Site Reliability Engineer", + "company": "Snapchat", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-05-19T23:42:31.175Z" + "$date": "2025-05-20T22:00:37.685Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532f5" + "$oid": "66723dae8f368f285d304de8" } } ] }, "education": [ { - "institution": "University of Melbourne", - "degree": "Bachelor of Fine Arts (BFA)", - "fieldOfStudy": "Philosophy", + "institution": "University of California, Santa Barbara (UCSB)", + "degree": "Doctor of Philosophy (PhD)", + "fieldOfStudy": "Medicine", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-06-22T06:10:34.284Z" + "$date": "2026-05-14T05:34:37.259Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532f6" + "$oid": "66723dae8f368f285d304de9" } }, { - "institution": "Harvard University", - "degree": "Master of Public Health (MPH)", - "fieldOfStudy": "Veterinary Medicine", + "institution": "Stanford University", + "degree": "Diploma Program", + "fieldOfStudy": "Electrical Engineering", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2027-11-10T09:40:37.249Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304dea" + } + }, + { + "institution": "Syracuse University", + "degree": "Master of Fine Arts (MFA)", + "fieldOfStudy": "Data Science", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-05-06T13:11:54.410Z" + "$date": "2024-10-30T20:27:26.905Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3532f7" + "$oid": "66723dae8f368f285d304deb" } } ], "projects": [ { - "name": "MediCare", - "description": "Medical appointment scheduling and patient management system for healthcare providers.", - "link": "https://github.com/username/medicare", + "name": "VoiceAssistant", + "description": "Voice-controlled personal assistant using natural language processing.", + "link": "https://github.com/username/voiceassistant", "_id": { - "$oid": "666cbc4a40af7b375e3532f8" + "$oid": "66723dae8f368f285d304dec" } }, { - "name": "AugmentWorks", - "description": "Augmented reality application for enhancing workplace productivity and training.", - "link": "https://github.com/username/augmentworks", + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", "_id": { - "$oid": "666cbc4a40af7b375e3532f9" + "$oid": "66723dae8f368f285d304ded" } }, { - "name": "RoboTrader", - "description": "Algorithmic trading platform for automated stock market analysis and trading.", - "link": "https://github.com/username/robotrader", + "name": "EduTech", + "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", + "link": "https://github.com/username/edutech", + "_id": { + "$oid": "66723dae8f368f285d304dee" + } + }, + { + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", "_id": { - "$oid": "666cbc4a40af7b375e3532fa" + "$oid": "66723dae8f368f285d304def" } }, { - "name": "CloudStorage", - "description": "Cloud storage service with file synchronization and sharing capabilities.", - "link": "https://github.com/username/cloudstorage", + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", "_id": { - "$oid": "666cbc4a40af7b375e3532fb" + "$oid": "66723dae8f368f285d304df0" } } ], - "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", + "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", "testimonials": [ { - "from": "Alice Johnson", - "relation": "Manager at TechSolutions Inc.", - "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e3532fc" + "$oid": "66723dae8f368f285d304df1" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "666cbc4a40af7b375e3532fd" + "$oid": "66723dae8f368f285d304df2" } }, { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", "_id": { - "$oid": "666cbc4a40af7b375e3532fe" + "$oid": "66723dae8f368f285d304df3" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", "_id": { - "$oid": "666cbc4a40af7b375e3532ff" + "$oid": "66723dae8f368f285d304df4" } } ], - "socialMediaLinks": { "twitter": "https://x.com/Thaddus-Waddell-fake", "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "Nucamp", + "socialMediaLinks": { + "twitter": "https://x.com/Randy-Verriour-fake", + "other": ["https://www.instagram.com/Randy-Verriour-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Makers Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e3532f0" + "$oid": "66723dae8f368f285d304de3" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ed9" + "$oid": "66723da68f368f285d304b11" }, - "firstName": "Nadia", - "lastName": "Zeale", - "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "cohort": "WCRI 3", + "firstName": "Israel", + "lastName": "Canti", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "NYC 55", "graduationYear": 2024, - "email": "nzeale24@google.ru", - "linkedInProfile": "https://www.linkedin.com/in/Nadia-Zeale-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "email": "icanti1x@businesswire.com", + "linkedInProfile": "https://www.linkedin.com/in/Israel-Canti-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", "skills": [ - "ASP.NET", + "C++", "FaaS (Function as a Service)", + "AWS", + "ETL (Extract, Transform, Load)", "Quantum Computing", - "C#", - "PaaS (Platform as a Service)", - "Communication Skills", - "DevOps" + "Event-Driven Architecture", + "Code Review", + "Problem-Solving", + "React", + "Containerization", + "API Development", + "GraphQL", + "Android Development", + "ASP.NET", + "Data Warehousing", + "Flask" ], "specializations": [ - "Google Cloud Platform", - "HTML", - "Blockchain", - "Agile Development", + "Flask", + "Code Review", + "Performance Optimization", + "Software Architecture", + "Git", + "Technical Writing", + "ETL (Extract, Transform, Load)", "Data Warehousing", - "Event-Driven Architecture", - "RESTful APIs", - "Ruby", - "BDD (Behavior-Driven Development)", - "Database Design", - "Cybersecurity", - "ASP.NET" + "Automated Testing", + "Leadership", + "Problem-Solving", + "Containerization" ], "careerInformation": { - "currentPosition": { "title": "Junior Software Engineer", "company": "Oracle" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "Rutgers University", - "degree": "Associate Degree", - "fieldOfStudy": "Anthropology", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "currentPosition": { "title": "Test Engineer", "company": "Microsoft" }, + "pastPositions": [ + { + "title": "Security Engineer", + "company": "Asana", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2024-10-19T16:26:15.010Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304df6" + } }, - "endDate": { - "$date": "2025-06-18T17:54:04.738Z" + { + "title": "Data Engineer", + "company": "Snowflake", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2025-07-13T19:40:02.263Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304df7" + } }, - "_id": { - "$oid": "666cbc4a40af7b375e353301" - } - } - ], - "projects": [], - "personalBio": "Experienced in international collaboration and remote work, with a strong appreciation for cultural diversity.", - "testimonials": [ - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "666cbc4a40af7b375e353302" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "666cbc4a40af7b375e353303" + { + "title": "Frontend Developer", + "company": "Snapchat", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2026-09-21T09:49:30.529Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304df8" + } + }, + { + "title": "Automation Engineer", + "company": "Spotify", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2027-09-13T01:23:13.411Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304df9" + } + }, + { + "title": "Technical Program Manager", + "company": "PayPal", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2027-06-10T10:20:21.994Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304dfa" + } } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Nadia-Zeale-fake", - "blog": "https://www.Nadia-Zeale-fake-blog.com", - "other": ["https://www.instagram.com/Nadia-Zeale-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "App Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e353300" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352eda" - }, - "firstName": "Emmett", - "lastName": "Buckell", - "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "cohort": "ECRI 63", - "graduationYear": 2024, - "email": "ebuckell25@reddit.com", - "linkedInProfile": "https://www.linkedin.com/in/Emmett-Buckell-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": ["C#", "Edge Computing", "Pair Programming", "ASP.NET", "Vue.js"], - "specializations": [], - "careerInformation": { - "currentPosition": { "title": "Lead Software Engineer", "company": "Epic Games" }, - "pastPositions": [] + ] }, "education": [ { - "institution": "University of British Columbia", - "degree": "Doctor of Business Administration (DBA)", - "fieldOfStudy": "Public Health", + "institution": "National University of Singapore (NUS)", + "degree": "Doctor of Education (EdD)", + "fieldOfStudy": "English Literature", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-10-24T16:34:13.637Z" + "$date": "2026-07-02T21:08:16.314Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353305" + "$oid": "66723dae8f368f285d304dfb" } }, { - "institution": "Shanghai Jiao Tong University", - "degree": "Doctor of Dental Medicine (DMD)", - "fieldOfStudy": "Urban Planning", + "institution": "University of Virginia", + "degree": "Diploma Program", + "fieldOfStudy": "Biomedical Engineering", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-03-18T08:17:58.495Z" + "$date": "2025-06-11T02:06:00.283Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353306" + "$oid": "66723dae8f368f285d304dfc" } } ], "projects": [ - { - "name": "VirtualTour", - "description": "Virtual reality tour application for immersive travel experiences.", - "link": "https://github.com/username/virtualtour", - "_id": { - "$oid": "666cbc4a40af7b375e353307" - } - }, - { - "name": "CryptoWallet", - "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", - "link": "https://github.com/username/cryptowallet", - "_id": { - "$oid": "666cbc4a40af7b375e353308" - } - }, { "name": "RecruitmentAI", "description": "AI-powered recruitment platform for matching candidates with job opportunities.", "link": "https://github.com/username/recruitmentai", "_id": { - "$oid": "666cbc4a40af7b375e353309" - } - }, - { - "name": "TravelGuide", - "description": "Interactive travel guide application providing travel tips and destination insights.", - "link": "https://github.com/username/travelguide", - "_id": { - "$oid": "666cbc4a40af7b375e35330a" - } - }, - { - "name": "VirtualMarket", - "description": "Virtual reality shopping experience allowing users to browse and buy products online.", - "link": "https://github.com/username/virtualmarket", - "_id": { - "$oid": "666cbc4a40af7b375e35330b" - } - } - ], - "personalBio": "Focused on delivering user-centric solutions that address real-world needs and challenges.", - "testimonials": [ - { - "from": "Emily Brown", - "relation": "Client at GlobalSoft Solutions", - "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", - "_id": { - "$oid": "666cbc4a40af7b375e35330c" - } - }, - { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", - "_id": { - "$oid": "666cbc4a40af7b375e35330d" + "$oid": "66723dae8f368f285d304dfd" } }, { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "name": "AugmentWorks", + "description": "Augmented reality application for enhancing workplace productivity and training.", + "link": "https://github.com/username/augmentworks", "_id": { - "$oid": "666cbc4a40af7b375e35330e" + "$oid": "66723dae8f368f285d304dfe" } } ], - "socialMediaLinks": { - "blog": "https://www.Emmett-Buckell-fake-blog.com", - "other": ["https://www.instagram.com/Emmett-Buckell-fake"] - }, - "availabilityForNetworking": false, - "bootcampExperience": "Fullstack Academy", + "personalBio": "Innovative thinker with a track record of proposing and implementing creative solutions to technical challenges.", + "testimonials": [], + "socialMediaLinks": { "blog": "https://www.Israel-Canti-fake-blog.com", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "App Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353304" + "$oid": "66723dae8f368f285d304df5" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352edb" + "$oid": "66723da68f368f285d304b12" }, - "firstName": "Lavinia", - "lastName": "Baume", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "ECRI 85", + "firstName": "Micky", + "lastName": "Dunseath", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "FTRI 7", "graduationYear": 2024, - "email": "lbaume26@tinyurl.com", - "linkedInProfile": "https://www.linkedin.com/in/Lavinia-Baume-fake", + "email": "mdunseath1y@miibeian.gov.cn", + "linkedInProfile": "https://www.linkedin.com/in/Micky-Dunseath-fake", "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", - "skills": [ - "Graph Theory", - "Continuous Deployment", - "Natural Language Processing", - "Edge Computing" - ], + "skills": ["C++"], "specializations": [ - "Angular", - "Microservices", - "Performance Optimization", - "Collaboration", - "Data Science", - "Database Design", - "Graph Theory", - "Kubernetes", - "SQL", - "Object-Oriented Programming", - "AR/VR (Augmented/Virtual Reality)", - "Android Development" + "Legacy Code Management", + "Big Data", + "HTML", + "Cybersecurity", + "Parallel Computing" ], "careerInformation": { - "currentPosition": { "title": "Software Developer", "company": "Coinbase" }, + "currentPosition": { "title": "Software Engineer", "company": "Twilio" }, "pastPositions": [ { - "title": "Web Developer", - "company": "PayPal", + "title": "Backend Developer", + "company": "Microsoft", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-01-15T17:57:38.365Z" + "$date": "2024-10-31T10:52:23.166Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353310" + "$oid": "66723dae8f368f285d304e00" } }, { - "title": "Data Scientist", - "company": "Airbnb", + "title": "Mobile Developer", + "company": "Coinbase", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-03-01T18:51:55.948Z" + "$date": "2026-06-01T00:55:49.606Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353311" + "$oid": "66723dae8f368f285d304e01" } }, { - "title": "AI Engineer", - "company": "Google", + "title": "Product Manager", + "company": "Apple", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-07-16T20:58:33.818Z" + "$date": "2028-04-15T09:33:09.137Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353312" + "$oid": "66723dae8f368f285d304e02" } }, { - "title": "Embedded Systems Engineer", + "title": "Web Developer", "company": "ServiceNow", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2026-07-24T03:47:14.862Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304e03" + } + }, + { + "title": "iOS Developer", + "company": "Twilio", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2024-08-08T22:20:09.961Z" + "$date": "2028-03-17T09:38:20.907Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353313" + "$oid": "66723dae8f368f285d304e04" } } ] }, "education": [ { - "institution": "California Institute of Technology (Caltech)", - "degree": "Doctor of Philosophy (PhD)", - "fieldOfStudy": "Physics", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-03-31T15:26:40.297Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353314" - } - }, - { - "institution": "Syracuse University", - "degree": "Doctoral Degree", - "fieldOfStudy": "Interior Design", + "institution": "University of Queensland", + "degree": "Master of Education (MEd)", + "fieldOfStudy": "Marketing", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-09-22T20:33:44.519Z" + "$date": "2025-01-20T21:26:52.904Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353315" - } - } - ], - "projects": [ - { - "name": "SmartWatch", - "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", - "link": "https://github.com/username/smartwatch", - "_id": { - "$oid": "666cbc4a40af7b375e353316" - } - }, - { - "name": "DataCrunch", - "description": "Real-time data analytics platform for extracting insights from big data.", - "link": "https://github.com/username/datacrunch", - "_id": { - "$oid": "666cbc4a40af7b375e353317" - } - }, - { - "name": "VirtualMarket", - "description": "Virtual reality shopping experience allowing users to browse and buy products online.", - "link": "https://github.com/username/virtualmarket", - "_id": { - "$oid": "666cbc4a40af7b375e353318" - } - }, - { - "name": "TourismApp", - "description": "Mobile application for tourists providing travel guides and local recommendations.", - "link": "https://github.com/username/tourismapp", - "_id": { - "$oid": "666cbc4a40af7b375e353319" + "$oid": "66723dae8f368f285d304e05" } } ], - "personalBio": "Driven by a passion for problem-solving and a commitment to continuous professional development.", + "projects": [], + "personalBio": "Experienced in both frontend and backend development, with a focus on creating elegant and efficient solutions.", "testimonials": [ { "from": "Alice Johnson", "relation": "Manager at TechSolutions Inc.", "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", "_id": { - "$oid": "666cbc4a40af7b375e35331a" + "$oid": "66723dae8f368f285d304e06" } }, { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", "_id": { - "$oid": "666cbc4a40af7b375e35331b" + "$oid": "66723dae8f368f285d304e07" } } ], - "socialMediaLinks": { "other": [] }, + "socialMediaLinks": { + "blog": "https://www.Micky-Dunseath-fake-blog.com", + "other": ["https://www.instagram.com/Micky-Dunseath-fake"] + }, "availabilityForNetworking": false, - "bootcampExperience": "Nucamp", + "bootcampExperience": "Kenzie Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e35330f" + "$oid": "66723dae8f368f285d304dff" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352edc" + "$oid": "66723da68f368f285d304b13" }, - "firstName": "Janine", - "lastName": "Kitt", + "firstName": "Gabi", + "lastName": "Hardcastle", + "cohort": "CTRI 62", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304e08" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304b14" + }, + "firstName": "Rakel", + "lastName": "Scothron", "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "cohort": "LA 38", + "cohort": "WCRI 16", "graduationYear": 2024, - "email": "jkitt27@wsj.com", - "linkedInProfile": "https://www.linkedin.com/in/Janine-Kitt-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "email": "rscothron20@yellowbook.com", + "linkedInProfile": "https://www.linkedin.com/in/Rakel-Scothron-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", "skills": [ - "Automated Testing", + "SaaS (Software as a Service)", + "Microservices", + "Pair Programming", + "Big Data", + "Graph Databases", "Refactoring", - "User Interface (UI) Design", - "TDD (Test-Driven Development)", - "BDD (Behavior-Driven Development)", - "Algorithm Design", - "Robotic Process Automation", - "Data Visualization", - "Infrastructure as Code", - "Machine Learning", - "Data Warehousing", - "Design Patterns", - "Graph Theory", - "Docker", - "CSS", - "React" + "Functional Programming", + "C#" ], "specializations": [ - "User Experience (UX) Design", - "Refactoring", - "Collaboration", - "C++", - "Cloud Computing", - "Database Design", - "TDD (Test-Driven Development)" + "Blockchain", + "Time Management", + "Parallel Computing", + "Agile Development", + "Automated Testing", + "Containerization", + "Edge Computing", + "FaaS (Function as a Service)", + "Serverless Architecture", + "Design Patterns", + "Object-Oriented Programming", + "IoT (Internet of Things)", + "WebSockets" ], "careerInformation": { - "currentPosition": { "title": "Frontend Developer", "company": "Epic Games" }, + "currentPosition": { "title": "Embedded Systems Engineer", "company": "Spotify" }, "pastPositions": [ { - "title": "Software Architect", - "company": "Red Hat", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2025-02-17T17:01:51.555Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35331d" - } - }, - { - "title": "Full Stack Developer", - "company": "Amazon", + "title": "Product Manager", + "company": "DocuSign", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2024-07-25T07:30:53.190Z" + "$date": "2028-02-17T12:27:00.589Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35331e" + "$oid": "66723dae8f368f285d304e0a" } }, { - "title": "Engineering Manager", - "company": "Asana", + "title": "QA Engineer", + "company": "Workday", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-02-08T01:50:21.700Z" + "$date": "2028-05-19T11:51:40.728Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35331f" + "$oid": "66723dae8f368f285d304e0b" } }, { - "title": "QA Engineer", - "company": "Adobe", + "title": "Machine Learning Engineer", + "company": "Stripe", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-07-01T04:55:40.494Z" + "$date": "2026-09-30T22:44:32.984Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353320" + "$oid": "66723dae8f368f285d304e0c" } } ] }, "education": [ { - "institution": "University of Melbourne", - "degree": "Master of Business Administration (MBA)", - "fieldOfStudy": "Information Technology", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-09-01T03:09:03.880Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353321" - } - }, - { - "institution": "University of California, Los Angeles (UCLA)", - "degree": "Professional Development", - "fieldOfStudy": "Theater", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-06-23T08:14:57.229Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353322" - } - }, - { - "institution": "Emory University", - "degree": "High School Diploma", - "fieldOfStudy": "English Literature", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-10-04T10:18:05.187Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353323" - } - }, - { - "institution": "University of Colorado Boulder", - "degree": "Postdoctoral Research", - "fieldOfStudy": "Finance", + "institution": "University of Queensland", + "degree": "Bachelor of Engineering (BE)", + "fieldOfStudy": "Interior Design", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-02-20T07:14:21.268Z" + "$date": "2026-01-15T01:11:34.903Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353324" + "$oid": "66723dae8f368f285d304e0d" } } ], "projects": [ { - "name": "SmartCarPark", - "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", - "link": "https://github.com/username/smartcarpark", + "name": "HealthMonitor", + "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", + "link": "https://github.com/username/healthmonitor", "_id": { - "$oid": "666cbc4a40af7b375e353325" + "$oid": "66723dae8f368f285d304e0e" } }, { - "name": "HomeSecurity", - "description": "Home security system with video surveillance, motion detection, and alarm integration.", - "link": "https://github.com/username/homesecurity", + "name": "AIChatbot", + "description": "AI-powered chatbot for customer support and interactive communication.", + "link": "https://github.com/username/aichatbot", + "_id": { + "$oid": "66723dae8f368f285d304e0f" + } + } + ], + "personalBio": "Experienced in international collaboration and remote work, with a strong appreciation for cultural diversity.", + "testimonials": [], + "socialMediaLinks": { "other": ["https://www.instagram.com/Rakel-Scothron-fake"] }, + "availabilityForNetworking": false, + "bootcampExperience": "Flatiron School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304e09" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304b15" + }, + "firstName": "Gretel", + "lastName": "Sitford", + "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "cohort": "NYC 63", + "graduationYear": 2024, + "email": "gsitford21@tinyurl.com", + "linkedInProfile": "https://www.linkedin.com/in/Gretel-Sitford-fake", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "skills": [ + "Reactive Programming", + "Integration Testing", + "BDD (Behavior-Driven Development)", + "Google Cloud Platform", + "Blockchain", + "SQL" + ], + "specializations": [ + "Azure", + "Collaboration", + "Code Review", + "Performance Optimization", + "Ruby", + "Object-Oriented Programming", + "NoSQL", + "Continuous Deployment", + "SaaS (Software as a Service)", + "Vue.js", + "Laravel", + "Leadership", + "Technical Writing", + "DevOps" + ], + "careerInformation": { + "currentPosition": { "title": "Site Reliability Engineer", "company": "Microsoft" }, + "pastPositions": [] + }, + "education": [], + "projects": [ + { + "name": "CodeReview", + "description": "Collaborative code review platform with annotations and feedback features.", + "link": "https://github.com/username/codereview", "_id": { - "$oid": "666cbc4a40af7b375e353326" + "$oid": "66723dae8f368f285d304e11" } }, { - "name": "SecureChat", - "description": "End-to-end encrypted messaging app ensuring user privacy and security.", - "link": "https://github.com/username/securechat", + "name": "CryptoWallet", + "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", + "link": "https://github.com/username/cryptowallet", + "_id": { + "$oid": "66723dae8f368f285d304e12" + } + } + ], + "personalBio": "Driven by a curiosity for innovation and a commitment to delivering high-quality software solutions.", + "testimonials": [ + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e353327" + "$oid": "66723dae8f368f285d304e13" } }, { - "name": "DataCrunch", - "description": "Real-time data analytics platform for extracting insights from big data.", - "link": "https://github.com/username/datacrunch", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "666cbc4a40af7b375e353328" + "$oid": "66723dae8f368f285d304e14" } }, { - "name": "MediCare", - "description": "Medical appointment scheduling and patient management system for healthcare providers.", - "link": "https://github.com/username/medicare", + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "66723dae8f368f285d304e15" + } + }, + { + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", "_id": { - "$oid": "666cbc4a40af7b375e353329" + "$oid": "66723dae8f368f285d304e16" } } ], - "personalBio": "Passionate about contributing to the tech community through open-source projects and knowledge sharing.", - "testimonials": [], "socialMediaLinks": { - "twitter": "https://x.com/Janine-Kitt-fake", - "other": ["https://www.instagram.com/Janine-Kitt-fake"] + "twitter": "https://x.com/Gretel-Sitford-fake", + "blog": "https://www.Gretel-Sitford-fake-blog.com", + "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "Galvanize", + "availabilityForNetworking": true, + "bootcampExperience": "Makers Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e35331c" + "$oid": "66723dae8f368f285d304e10" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352edd" + "$oid": "66723da68f368f285d304b16" }, - "firstName": "Beatrix", - "lastName": "Healey", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "FTRI 55", + "firstName": "Rosalinda", + "lastName": "Naisby", + "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "cohort": "PTRI 50", "graduationYear": 2024, - "email": "bhealey28@amazon.co.jp", - "linkedInProfile": "https://www.linkedin.com/in/Beatrix-Healey-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "email": "rnaisby22@nationalgeographic.com", + "linkedInProfile": "https://www.linkedin.com/in/Rosalinda-Naisby-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", "skills": [ - "Django", - "Machine Learning", - "Data Visualization", + "Technical Writing", "Critical Thinking", - "Legacy Code Management", - "Blockchain", - "Microservices", - "Graph Databases", - "Edge Computing", - "Agile Development", - "Containerization", - "Version Control", - "Functional Programming", - "Reactive Programming" + "Robotic Process Automation", + "HTML", + "Design Patterns", + "Reactive Programming", + "Docker", + "Mobile Development", + "WebSockets", + "Deep Learning", + "Automated Testing", + "PaaS (Platform as a Service)", + "Object-Oriented Programming" ], "specializations": [ "ASP.NET", - "PaaS (Platform as a Service)", - "Automated Testing", - "Serverless Architecture", - "Project Management", - "Java", - "Android Development", - "Cybersecurity", - "Scrum", - "HTML", - "CI/CD", + "RESTful APIs", + "Critical Thinking", + "Parallel Computing", + "Django", + "DevOps", "C++", - "Containerization", - "Google Cloud Platform" + "Software Architecture", + "Concurrency", + "Git", + "Python", + "Technical Writing", + "User Experience (UX) Design", + "Quantum Computing", + "CI/CD", + "Android Development", + "Unit Testing", + "Legacy Code Management", + "Containerization" ], "careerInformation": { - "currentPosition": { "title": "Senior Software Engineer", "company": "GitHub" }, + "currentPosition": { "title": "Product Manager", "company": "HubSpot" }, "pastPositions": [] }, "education": [ { - "institution": "University of Arizona", - "degree": "Executive Education", - "fieldOfStudy": "Mathematics", + "institution": "University of Cambridge", + "degree": "Master of Technology (MTech)", + "fieldOfStudy": "Sociology", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-03-29T07:46:46.081Z" + "$date": "2028-02-14T20:15:12.901Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35332b" + "$oid": "66723dae8f368f285d304e18" + } + } + ], + "projects": [ + { + "name": "CodeBot", + "description": "Automated code generation tool using AI for faster development cycles.", + "link": "https://github.com/username/codebot", + "_id": { + "$oid": "66723dae8f368f285d304e19" } }, { - "institution": "University of Connecticut", - "degree": "Master of Public Health (MPH)", - "fieldOfStudy": "Finance", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2024-09-10T07:44:41.199Z" - }, + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", + "_id": { + "$oid": "66723dae8f368f285d304e1a" + } + }, + { + "name": "HealthLink", + "description": "Telemedicine platform connecting patients with healthcare providers remotely.", + "link": "https://github.com/username/healthlink", + "_id": { + "$oid": "66723dae8f368f285d304e1b" + } + }, + { + "name": "CryptoWallet", + "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", + "link": "https://github.com/username/cryptowallet", + "_id": { + "$oid": "66723dae8f368f285d304e1c" + } + }, + { + "name": "AIChatbot", + "description": "AI-powered chatbot for customer support and interactive communication.", + "link": "https://github.com/username/aichatbot", "_id": { - "$oid": "666cbc4a40af7b375e35332c" + "$oid": "66723dae8f368f285d304e1d" } } ], - "projects": [], - "personalBio": "Passionate about leveraging data-driven insights to optimize software performance and user engagement.", + "personalBio": "Dedicated to upholding best practices in software engineering, including testing, code reviews, and version control.", "testimonials": [ { - "from": "Olivia White", - "relation": "Tech Lead at Cloud Innovations", - "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", "_id": { - "$oid": "666cbc4a40af7b375e35332d" + "$oid": "66723dae8f368f285d304e1e" } }, { - "from": "Daniel Lee", + "from": "Sophia Turner", "relation": "Project Manager at Digital Dynamics", - "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "66723dae8f368f285d304e1f" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e35332e" + "$oid": "66723dae8f368f285d304e20" } } ], - "socialMediaLinks": { "twitter": "https://x.com/Beatrix-Healey-fake", "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "Galvanize", + "socialMediaLinks": { + "twitter": "https://x.com/Rosalinda-Naisby-fake", + "blog": "https://www.Rosalinda-Naisby-fake-blog.com", + "other": ["https://www.instagram.com/Rosalinda-Naisby-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Thinkful", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e35332a" + "$oid": "66723dae8f368f285d304e17" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ede" + "$oid": "66723da68f368f285d304b17" }, - "firstName": "Simone", - "lastName": "Buske", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "FTRI 91", + "firstName": "Thaddus", + "lastName": "Waddell", + "cohort": "CTRI 33", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304e21" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304b18" + }, + "firstName": "Nadia", + "lastName": "Zeale", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "ECRI 48", "graduationYear": 2024, - "email": "sbuske29@soundcloud.com", - "linkedInProfile": "https://www.linkedin.com/in/Simone-Buske-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "email": "nzeale24@google.ru", + "linkedInProfile": "https://www.linkedin.com/in/Nadia-Zeale-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", "skills": [ - "TDD (Test-Driven Development)", - "System Design", - "Concurrency", - "Refactoring", - "Continuous Deployment", - "Pair Programming", - "Parallel Computing", - "Software Architecture", - "API Integration", - "ETL (Extract, Transform, Load)", - "IoT (Internet of Things)", - "Mobile Development", - "HTML", + "Data Warehousing", "Vue.js", - "Deep Learning", - "Unit Testing", - "Performance Optimization" + "Software Architecture", + "Data Visualization", + "Legacy Code Management", + "Version Control", + "Azure", + "Leadership", + "Node.js", + "C#", + "Agile Development", + "Database Design", + "FaaS (Function as a Service)", + "JavaScript", + "Concurrency" ], "specializations": [ - "Blockchain", - "Functional Programming", - "Parallel Computing", - "Communication Skills", + "Reactive Programming", "Git", - "Continuous Deployment", - "WebSockets", - "SaaS (Software as a Service)" + "Graph Databases", + "System Design", + "Edge Computing", + "FaaS (Function as a Service)", + "Scrum" ], "careerInformation": { - "currentPosition": { "title": "Cloud Engineer", "company": "Qualcomm" }, + "currentPosition": { "title": "Junior Software Engineer", "company": "Atlassian" }, "pastPositions": [ { - "title": "Full Stack Developer", - "company": "Epic Games", + "title": "Technical Lead", + "company": "Spotify", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-02-08T08:35:01.824Z" + "$date": "2027-12-29T07:40:07.858Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353330" + "$oid": "66723dae8f368f285d304e23" } }, { - "title": "Mobile Developer", - "company": "Uber", + "title": "Backend Developer", + "company": "Google", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2024-09-24T04:19:29.280Z" + "$date": "2025-02-07T18:10:08.607Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353331" + "$oid": "66723dae8f368f285d304e24" } }, { - "title": "Embedded Systems Engineer", - "company": "Adobe", + "title": "Software Developer", + "company": "Snapchat", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2026-02-22T22:09:51.929Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304e25" + } + }, + { + "title": "QA Engineer", + "company": "Apple", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2026-12-20T12:54:13.705Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304e26" + } + }, + { + "title": "Web Developer", + "company": "Lyft", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-05-30T18:59:51.554Z" + "$date": "2025-03-24T00:34:39.656Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353332" + "$oid": "66723dae8f368f285d304e27" } } ] }, "education": [ { - "institution": "Georgetown University", - "degree": "Doctor of Veterinary Medicine (DVM)", - "fieldOfStudy": "Fine Arts", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2026-04-21T19:29:38.750Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353333" - } - }, - { - "institution": "University of Pennsylvania", - "degree": "Bachelor of Arts (BA)", - "fieldOfStudy": "Biochemistry", + "institution": "University of Delaware", + "degree": "Certificate Program", + "fieldOfStudy": "Political Science", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-07-04T23:54:50.134Z" + "$date": "2027-04-30T01:56:54.384Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353334" + "$oid": "66723dae8f368f285d304e28" } }, { - "institution": "ETH Zurich - Swiss Federal Institute of Technology", - "degree": "Continuing Education", - "fieldOfStudy": "Veterinary Medicine", + "institution": "University of Connecticut", + "degree": "Master of Fine Arts (MFA)", + "fieldOfStudy": "Finance", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2024-08-25T20:30:14.428Z" + "$date": "2026-07-08T20:26:58.173Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353335" - } - } - ], - "projects": [ - { - "name": "HealthLink", - "description": "Telemedicine platform connecting patients with healthcare providers remotely.", - "link": "https://github.com/username/healthlink", - "_id": { - "$oid": "666cbc4a40af7b375e353336" - } - }, - { - "name": "RoboVision", - "description": "AI-powered computer vision system for object detection and recognition.", - "link": "https://github.com/username/robovision", - "_id": { - "$oid": "666cbc4a40af7b375e353337" + "$oid": "66723dae8f368f285d304e29" } } ], - "personalBio": "Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.", + "projects": [], + "personalBio": "Committed to writing clean, maintainable code that meets rigorous performance standards.", "testimonials": [ { "from": "Noah Rodriguez", "relation": "Product Owner at AgileSoft", "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", "_id": { - "$oid": "666cbc4a40af7b375e353338" + "$oid": "66723dae8f368f285d304e2a" } }, { @@ -14346,1185 +9863,1078 @@ "relation": "Lead Developer at CloudTech", "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", "_id": { - "$oid": "666cbc4a40af7b375e353339" + "$oid": "66723dae8f368f285d304e2b" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "66723dae8f368f285d304e2c" + } + }, + { + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "66723dae8f368f285d304e2d" } } ], - "socialMediaLinks": { - "twitter": "https://x.com/Simone-Buske-fake", - "blog": "https://www.Simone-Buske-fake-blog.com", - "other": ["https://www.instagram.com/Simone-Buske-fake"] + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Le Wagon", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304e22" }, - "availabilityForNetworking": true, - "bootcampExperience": "Coding Dojo", + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304b19" + }, + "firstName": "Emmett", + "lastName": "Buckell", + "cohort": "ECRI 15", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e35332f" + "$oid": "66723dae8f368f285d304e2e" }, + "education": [], + "projects": [], + "testimonials": [], "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352edf" + "$oid": "66723da68f368f285d304b1a" }, - "firstName": "Cristine", - "lastName": "Gaddesby", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "CTRI 84", + "firstName": "Lavinia", + "lastName": "Baume", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "ECRI 27", "graduationYear": 2024, - "email": "cgaddesby2a@senate.gov", - "linkedInProfile": "https://www.linkedin.com/in/Cristine-Gaddesby-fake", - "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", - "skills": ["Data Warehousing", "Machine Learning", "Pair Programming"], - "specializations": [ - "SaaS (Software as a Service)", - "Node.js", - "Data Warehousing", - "NoSQL", - "Flask", - "Laravel" + "email": "lbaume26@tinyurl.com", + "linkedInProfile": "https://www.linkedin.com/in/Lavinia-Baume-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": [ + "PaaS (Platform as a Service)", + "ASP.NET", + "Docker", + "API Development", + "CI/CD", + "RESTful APIs" ], + "specializations": ["Data Visualization", "Angular"], "careerInformation": { - "currentPosition": { "title": "Test Engineer", "company": "Zoom" }, - "pastPositions": [] + "currentPosition": { "title": "Web Developer", "company": "EA (Electronic Arts)" }, + "pastPositions": [ + { + "title": "Software Engineer", + "company": "EA (Electronic Arts)", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2025-12-17T02:16:39.789Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304e30" + } + }, + { + "title": "Cloud Engineer", + "company": "NVIDIA", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2026-07-24T16:25:08.598Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304e31" + } + }, + { + "title": "Site Reliability Engineer", + "company": "Square", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2024-11-10T04:01:43.099Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304e32" + } + }, + { + "title": "DevOps Engineer", + "company": "Cisco", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2026-05-13T09:23:30.096Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304e33" + } + } + ] }, "education": [ { "institution": "Case Western Reserve University", - "degree": "Diploma Program", - "fieldOfStudy": "Civil Engineering", + "degree": "Master of Arts (MA)", + "fieldOfStudy": "Journalism", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-03-27T09:57:41.786Z" + "$date": "2025-04-12T12:07:33.532Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35333b" + "$oid": "66723dae8f368f285d304e34" } }, { - "institution": "University of Rochester", - "degree": "Master of Education (MEd)", - "fieldOfStudy": "Journalism", + "institution": "Indiana University Bloomington", + "degree": "Diploma Program", + "fieldOfStudy": "Mechanical Engineering", "startDate": { - "$date": "2024-06-14T21:55:22.547Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-04-15T22:19:31.690Z" + "$date": "2025-07-22T02:38:34.507Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35333c" + "$oid": "66723dae8f368f285d304e35" + } + } + ], + "projects": [ + { + "name": "SmartHomeHub", + "description": "Centralized home automation system integrating IoT devices for smart living.", + "link": "https://github.com/username/smarthomehub", + "_id": { + "$oid": "66723dae8f368f285d304e36" } }, { - "institution": "Peking University", - "degree": "Continuing Education", - "fieldOfStudy": "Information Technology", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2028-03-10T11:50:07.094Z" - }, + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", "_id": { - "$oid": "666cbc4a40af7b375e35333d" + "$oid": "66723dae8f368f285d304e37" + } + }, + { + "name": "RoboTrader", + "description": "Algorithmic trading platform for automated stock market analysis and trading.", + "link": "https://github.com/username/robotrader", + "_id": { + "$oid": "66723dae8f368f285d304e38" } } ], - "projects": [ + "personalBio": "Detail-oriented developer with a strong foundation in algorithms and data structures.", + "testimonials": [ { - "name": "VirtualMarket", - "description": "Virtual reality shopping experience allowing users to browse and buy products online.", - "link": "https://github.com/username/virtualmarket", + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", "_id": { - "$oid": "666cbc4a40af7b375e35333e" + "$oid": "66723dae8f368f285d304e39" } }, { - "name": "CryptoWallet", - "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", - "link": "https://github.com/username/cryptowallet", + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "66723dae8f368f285d304e3a" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "66723dae8f368f285d304e3b" + } + }, + { + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + "_id": { + "$oid": "66723dae8f368f285d304e3c" + } + }, + { + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", "_id": { - "$oid": "666cbc4a40af7b375e35333f" + "$oid": "66723dae8f368f285d304e3d" } } ], - "personalBio": "Experienced in Agile methodologies, with a track record of delivering projects on time and within budget.", - "testimonials": [], - "socialMediaLinks": { - "twitter": "https://x.com/Cristine-Gaddesby-fake", - "other": ["https://www.instagram.com/Cristine-Gaddesby-fake"] - }, + "socialMediaLinks": { "other": ["https://www.instagram.com/Lavinia-Baume-fake"] }, "availabilityForNetworking": true, - "bootcampExperience": "Kenzie Academy", + "bootcampExperience": "CareerFoundry", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e35333a" + "$oid": "66723dae8f368f285d304e2f" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ee0" + "$oid": "66723da68f368f285d304b1b" }, - "firstName": "Marta", - "lastName": "Daveren", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "NYC 12", + "firstName": "Janine", + "lastName": "Kitt", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "CTRI 15", "graduationYear": 2024, - "email": "mdaveren2b@odnoklassniki.ru", - "linkedInProfile": "https://www.linkedin.com/in/Marta-Daveren-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", - "skills": [ - "CSS", - "Node.js", - "Infrastructure as Code", - "AWS", - "RESTful APIs", - "Azure", - "Edge Computing", - "ASP.NET" - ], - "specializations": [ - "React", - "Node.js", - "Project Management", - "PaaS (Platform as a Service)", - "CSS", - "Pair Programming", - "Machine Learning", - "Functional Programming", - "Edge Computing", - "GraphQL", - "Version Control", - "JavaScript", - "BDD (Behavior-Driven Development)" - ], + "email": "jkitt27@wsj.com", + "linkedInProfile": "https://www.linkedin.com/in/Janine-Kitt-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": ["DevOps", "Scrum", "User Interface (UI) Design", "Git"], + "specializations": ["Laravel", "Agile Development"], "careerInformation": { - "currentPosition": { "title": "Site Reliability Engineer", "company": "Twilio" }, + "currentPosition": { "title": "Junior Software Engineer", "company": "Atlassian" }, "pastPositions": [ { - "title": "Lead Software Engineer", - "company": "Dropbox", - "startDate": { - "$date": "2024-06-14T21:55:22.547Z" - }, - "endDate": { - "$date": "2027-10-04T02:27:21.990Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353341" - } - }, - { - "title": "Software Developer", - "company": "NVIDIA", + "title": "DevOps Engineer", + "company": "Adobe", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-10-28T01:24:21.024Z" + "$date": "2024-12-13T11:32:23.164Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353342" + "$oid": "66723dae8f368f285d304e3f" } }, { - "title": "Engineering Manager", - "company": "Qualcomm", + "title": "Junior Software Engineer", + "company": "Airbnb", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-11-14T13:52:26.833Z" + "$date": "2027-02-06T22:38:05.187Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353343" + "$oid": "66723dae8f368f285d304e40" } }, { - "title": "iOS Developer", - "company": "PayPal", + "title": "Embedded Systems Engineer", + "company": "Facebook", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-02-01T07:57:30.860Z" + "$date": "2027-01-20T10:41:41.676Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353344" + "$oid": "66723dae8f368f285d304e41" } } ] }, "education": [ { - "institution": "University of Alberta", - "degree": "Master of Technology (MTech)", - "fieldOfStudy": "Music", + "institution": "Massachusetts Institute of Technology (MIT)", + "degree": "Doctoral Degree", + "fieldOfStudy": "Computer Science", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-12-19T04:20:35.165Z" + "$date": "2026-03-12T21:05:30.881Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353345" + "$oid": "66723dae8f368f285d304e42" } - }, + } + ], + "projects": [ { - "institution": "University of California, Los Angeles (UCLA)", - "degree": "Doctor of Business Administration (DBA)", - "fieldOfStudy": "Education", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2025-01-08T06:18:54.345Z" - }, + "name": "CodeReview", + "description": "Collaborative code review platform with annotations and feedback features.", + "link": "https://github.com/username/codereview", "_id": { - "$oid": "666cbc4a40af7b375e353346" + "$oid": "66723dae8f368f285d304e43" } }, { - "institution": "Carnegie Mellon University", - "degree": "Technical School Certification", - "fieldOfStudy": "Physics", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2026-11-17T19:43:59.730Z" - }, + "name": "AIAssistant", + "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", + "link": "https://github.com/username/aiassistant", "_id": { - "$oid": "666cbc4a40af7b375e353347" + "$oid": "66723dae8f368f285d304e44" } }, { - "institution": "University of Delaware", - "degree": "Master of Public Administration (MPA)", - "fieldOfStudy": "Physics", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2028-05-01T14:44:50.025Z" - }, + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", "_id": { - "$oid": "666cbc4a40af7b375e353348" + "$oid": "66723dae8f368f285d304e45" } } ], - "projects": [ + "personalBio": "Skilled in working with cross-functional teams to deliver innovative software solutions that exceed expectations.", + "testimonials": [ { - "name": "NetPlanner", - "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", - "link": "https://github.com/username/netplanner", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "666cbc4a40af7b375e353349" + "$oid": "66723dae8f368f285d304e46" } }, { - "name": "RecruitmentAI", - "description": "AI-powered recruitment platform for matching candidates with job opportunities.", - "link": "https://github.com/username/recruitmentai", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "66723dae8f368f285d304e47" + } + }, + { + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "_id": { + "$oid": "66723dae8f368f285d304e48" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "66723dae8f368f285d304e49" + } + }, + { + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", "_id": { - "$oid": "666cbc4a40af7b375e35334a" + "$oid": "66723dae8f368f285d304e4a" } } ], - "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", - "testimonials": [], - "socialMediaLinks": { "other": [] }, + "socialMediaLinks": { + "blog": "https://www.Janine-Kitt-fake-blog.com", + "other": ["https://www.instagram.com/Janine-Kitt-fake"] + }, "availabilityForNetworking": false, - "bootcampExperience": "CareerFoundry", + "bootcampExperience": "General Assembly", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353340" + "$oid": "66723dae8f368f285d304e3e" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ee1" + "$oid": "66723da68f368f285d304b1c" }, - "firstName": "Nanon", - "lastName": "Gligoraci", - "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "cohort": "CTRI 90", + "firstName": "Beatrix", + "lastName": "Healey", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "WCRI 75", "graduationYear": 2024, - "email": "ngligoraci2c@addthis.com", - "linkedInProfile": "https://www.linkedin.com/in/Nanon-Gligoraci-fake", - "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "email": "bhealey28@amazon.co.jp", + "linkedInProfile": "https://www.linkedin.com/in/Beatrix-Healey-fake", + "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", "skills": [ - "Deep Learning", - "Integration Testing", - "DevOps", - "Big Data", - "Refactoring", - "Data Visualization", - "Git", - "Cloud Computing" - ], - "specializations": [ - "Docker", - "NoSQL", - "Integration Testing", - "Git", - "Leadership", - "Legacy Code Management", - "Technical Writing", + "Communication Skills", + "Infrastructure as Code", "Flask", - "Robotic Process Automation", - "Graph Theory", - "Collaboration", - "DevOps", - "Kubernetes", + "Docker", + "Performance Optimization", + "Python", + "Agile Development", + "Laravel", + "PaaS (Platform as a Service)", + "Natural Language Processing", + "Software Architecture", + "RESTful APIs", + "API Integration", + "Robotic Process Automation" + ], + "specializations": [ + "Scrum", "System Design", - "API Development", - "Data Warehousing" + "JavaScript", + "Continuous Deployment", + "IoT (Internet of Things)", + "GraphQL", + "Containerization", + "Technical Writing", + "DevOps" ], "careerInformation": { - "currentPosition": { "title": "Embedded Systems Engineer", "company": "Microsoft" }, + "currentPosition": { "title": "Product Manager", "company": "Twilio" }, "pastPositions": [ { - "title": "iOS Developer", - "company": "Airbnb", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2026-11-20T20:15:57.307Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35334c" - } - }, - { - "title": "DevOps Engineer", - "company": "Tesla", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2026-12-25T07:14:44.217Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35334d" - } - }, - { - "title": "Product Manager", - "company": "LinkedIn", + "title": "Android Developer", + "company": "Apple", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-02-15T17:22:23.777Z" + "$date": "2027-12-22T06:37:45.681Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35334e" + "$oid": "66723dae8f368f285d304e4c" } }, { - "title": "Frontend Developer", - "company": "ServiceNow", + "title": "Software Architect", + "company": "DocuSign", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-06-06T12:17:17.858Z" + "$date": "2024-11-27T20:27:35.174Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35334f" + "$oid": "66723dae8f368f285d304e4d" } }, { - "title": "Product Manager", - "company": "Twilio", + "title": "AI Engineer", + "company": "HubSpot", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-10-20T21:40:29.537Z" + "$date": "2026-01-20T13:30:50.183Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353350" + "$oid": "66723dae8f368f285d304e4e" } } ] }, "education": [ { - "institution": "University of Miami", - "degree": "Master of Fine Arts (MFA)", - "fieldOfStudy": "Civil Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2024-12-31T06:06:37.260Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353351" - } - }, - { - "institution": "National University of Singapore (NUS)", - "degree": "Master of Engineering (ME)", - "fieldOfStudy": "Biology", + "institution": "University of Illinois at Urbana-Champaign", + "degree": "Continuing Education", + "fieldOfStudy": "International Relations", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-08-14T04:52:45.694Z" + "$date": "2027-03-02T09:45:38.483Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353352" + "$oid": "66723dae8f368f285d304e4f" } } ], "projects": [ { - "name": "RoboTrader", - "description": "Algorithmic trading platform for automated stock market analysis and trading.", - "link": "https://github.com/username/robotrader", - "_id": { - "$oid": "666cbc4a40af7b375e353353" - } - }, - { - "name": "EduTech", - "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", - "link": "https://github.com/username/edutech", + "name": "SmartHomeHub", + "description": "Centralized home automation system integrating IoT devices for smart living.", + "link": "https://github.com/username/smarthomehub", "_id": { - "$oid": "666cbc4a40af7b375e353354" + "$oid": "66723dae8f368f285d304e50" } }, { - "name": "CloudGuard", - "description": "Advanced cloud security suite ensuring data protection and compliance.", - "link": "https://github.com/username/cloudguard", + "name": "TourismApp", + "description": "Mobile application for tourists providing travel guides and local recommendations.", + "link": "https://github.com/username/tourismapp", "_id": { - "$oid": "666cbc4a40af7b375e353355" + "$oid": "66723dae8f368f285d304e51" } } ], - "personalBio": "Advocate for diversity and inclusion in the tech industry, fostering a welcoming and supportive workplace culture.", - "testimonials": [], - "socialMediaLinks": { - "twitter": "https://x.com/Nanon-Gligoraci-fake", - "blog": "https://www.Nanon-Gligoraci-fake-blog.com", - "other": ["https://www.instagram.com/Nanon-Gligoraci-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Tech Elevator", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "666cbc4a40af7b375e35334b" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352ee2" - }, - "firstName": "Donall", - "lastName": "Frapwell", - "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "cohort": "CTRI 61", - "graduationYear": 2024, - "email": "dfrapwell2d@hostgator.com", - "linkedInProfile": "https://www.linkedin.com/in/Donall-Frapwell-fake", - "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", - "skills": [ - "System Design", - "HTML", - "Legacy Code Management", - "Kubernetes", - "Git", - "Microservices", - "Graph Theory", - "Functional Programming", - "TDD (Test-Driven Development)", - "Reactive Programming", - "Problem-Solving", - "Continuous Deployment", - "SQL", - "Code Review", - "Integration Testing", - "User Interface (UI) Design", - "Infrastructure as Code" - ], - "specializations": [ - "Node.js", - "FaaS (Function as a Service)", - "Django", - "C++", - "Communication Skills", - "Cybersecurity", - "Automated Testing", - "iOS Development", - "Pair Programming", - "BDD (Behavior-Driven Development)", - "Refactoring", - "Java", - "API Integration", - "Quantum Computing" - ], - "careerInformation": { - "currentPosition": { "title": "QA Engineer", "company": "Datadog" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "New York University (NYU)", - "degree": "Technical School Certification", - "fieldOfStudy": "Chemical Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2026-11-01T21:29:28.771Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353357" - } - }, + "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", + "testimonials": [ { - "institution": "Stanford University", - "degree": "Master of Technology (MTech)", - "fieldOfStudy": "Physics", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2024-09-21T23:32:57.603Z" - }, + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "666cbc4a40af7b375e353358" + "$oid": "66723dae8f368f285d304e52" } }, { - "institution": "Columbia University", - "degree": "Doctor of Business Administration (DBA)", - "fieldOfStudy": "Pharmacy", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2026-11-13T12:02:15.793Z" - }, + "from": "Emily Brown", + "relation": "Client at GlobalSoft Solutions", + "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", "_id": { - "$oid": "666cbc4a40af7b375e353359" + "$oid": "66723dae8f368f285d304e53" } }, { - "institution": "University of Virginia", - "degree": "Doctor of Dental Medicine (DMD)", - "fieldOfStudy": "Finance", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2025-12-20T05:25:36.625Z" - }, + "from": "Ethan Taylor", + "relation": "Co-founder at StartupX", + "text": "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", "_id": { - "$oid": "666cbc4a40af7b375e35335a" + "$oid": "66723dae8f368f285d304e54" } } ], - "projects": [], - "personalBio": "Proactive learner constantly exploring emerging technologies and trends in the software industry.", - "testimonials": [], - "socialMediaLinks": { "blog": "https://www.Donall-Frapwell-fake-blog.com", "other": [] }, + "socialMediaLinks": { + "twitter": "https://x.com/Beatrix-Healey-fake", + "blog": "https://www.Beatrix-Healey-fake-blog.com", + "other": ["https://www.instagram.com/Beatrix-Healey-fake"] + }, "availabilityForNetworking": false, - "bootcampExperience": "BrainStation", + "bootcampExperience": "Coding Dojo", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353356" + "$oid": "66723dae8f368f285d304e4b" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ee3" + "$oid": "66723da68f368f285d304b1d" }, - "firstName": "Beverlee", - "lastName": "Bangham", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "NYC 5", + "firstName": "Simone", + "lastName": "Buske", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "NYC 29", "graduationYear": 2024, - "email": "bbangham2e@tamu.edu", - "linkedInProfile": "https://www.linkedin.com/in/Beverlee-Bangham-fake", - "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", - "skills": ["ASP.NET", "Object-Oriented Programming", "User Experience (UX) Design"], + "email": "sbuske29@soundcloud.com", + "linkedInProfile": "https://www.linkedin.com/in/Simone-Buske-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": [ + "Reactive Programming", + "DevOps", + "Event-Driven Architecture", + "Critical Thinking", + "GraphQL", + "RESTful APIs", + "Git", + "Continuous Deployment", + "Machine Learning", + "Agile Development" + ], "specializations": [ - "Vue.js", - "Pair Programming", - "Kubernetes", - "NoSQL", "Google Cloud Platform", + "Quantum Computing", "TDD (Test-Driven Development)", - "Containerization", - "JavaScript", - "Version Control", - "Graph Databases", - "Angular" - ], - "careerInformation": { - "currentPosition": { "title": "Technical Program Manager", "company": "Palantir" }, - "pastPositions": [ - { - "title": "Test Engineer", - "company": "Palantir", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2026-05-10T00:44:31.429Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35335c" - } - }, - { - "title": "Frontend Developer", - "company": "Snowflake", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2024-12-31T21:13:51.662Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35335d" - } - }, + "Technical Writing", + "Data Warehousing", + "Serverless Architecture", + "Java", + "Communication Skills", + "CI/CD", + "Refactoring", + "Cybersecurity" + ], + "careerInformation": { + "currentPosition": { "title": "Web Developer", "company": "Apple" }, + "pastPositions": [ { - "title": "DevOps Engineer", - "company": "Cisco", + "title": "Software Engineer", + "company": "NVIDIA", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-04-10T00:58:00.085Z" + "$date": "2025-03-05T01:18:32.265Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35335e" + "$oid": "66723dae8f368f285d304e56" } }, { - "title": "Lead Software Engineer", - "company": "Spotify", + "title": "Data Scientist", + "company": "Salesforce", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-02-03T05:57:28.475Z" + "$date": "2027-06-07T12:52:46.217Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35335f" + "$oid": "66723dae8f368f285d304e57" } }, { - "title": "Software Engineer", - "company": "Shopify", + "title": "Frontend Developer", + "company": "Lyft", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-05-03T06:16:47.591Z" + "$date": "2028-05-04T22:00:37.028Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353360" + "$oid": "66723dae8f368f285d304e58" } } ] }, "education": [ { - "institution": "University of Queensland", - "degree": "Bachelor of Arts (BA)", - "fieldOfStudy": "Mechanical Engineering", + "institution": "Shanghai Jiao Tong University", + "degree": "Master of Business Administration (MBA)", + "fieldOfStudy": "Psychology", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-12-23T23:01:11.554Z" + "$date": "2024-11-16T00:05:57.947Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353361" + "$oid": "66723dae8f368f285d304e59" } }, { - "institution": "Syracuse University", - "degree": "Associate Degree", - "fieldOfStudy": "History", + "institution": "University of Toronto", + "degree": "Doctor of Dental Medicine (DMD)", + "fieldOfStudy": "Civil Engineering", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2024-11-25T08:11:41.585Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304e5a" + } + }, + { + "institution": "University of Tennessee", + "degree": "Bachelor of Arts (BA)", + "fieldOfStudy": "Film Studies", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-09-02T06:40:47.962Z" + "$date": "2026-02-10T06:53:04.318Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353362" + "$oid": "66723dae8f368f285d304e5b" } } ], - "projects": [], - "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", - "testimonials": [ + "projects": [ { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "name": "AIAssistant", + "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", + "link": "https://github.com/username/aiassistant", "_id": { - "$oid": "666cbc4a40af7b375e353363" + "$oid": "66723dae8f368f285d304e5c" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "name": "SecureChat", + "description": "End-to-end encrypted messaging app ensuring user privacy and security.", + "link": "https://github.com/username/securechat", "_id": { - "$oid": "666cbc4a40af7b375e353364" + "$oid": "66723dae8f368f285d304e5d" } }, { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "name": "TourismApp", + "description": "Mobile application for tourists providing travel guides and local recommendations.", + "link": "https://github.com/username/tourismapp", + "_id": { + "$oid": "66723dae8f368f285d304e5e" + } + }, + { + "name": "AIAssistant", + "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", + "link": "https://github.com/username/aiassistant", "_id": { - "$oid": "666cbc4a40af7b375e353365" + "$oid": "66723dae8f368f285d304e5f" } } ], - "socialMediaLinks": { "other": ["https://www.instagram.com/Beverlee-Bangham-fake"] }, - "availabilityForNetworking": false, - "bootcampExperience": "Kenzie Academy", + "personalBio": "Skilled in UX/UI design principles, with a focus on creating intuitive and visually appealing interfaces.", + "testimonials": [], + "socialMediaLinks": { "blog": "https://www.Simone-Buske-fake-blog.com", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Flatiron School", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e35335b" + "$oid": "66723dae8f368f285d304e55" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ee4" + "$oid": "66723da68f368f285d304b1e" }, - "firstName": "Englebert", - "lastName": "Bancroft", - "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "cohort": "NYC 55", + "firstName": "Cristine", + "lastName": "Gaddesby", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "CTRI 26", "graduationYear": 2024, - "email": "ebancroft2f@ow.ly", - "linkedInProfile": "https://www.linkedin.com/in/Englebert-Bancroft-fake", - "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "email": "cgaddesby2a@senate.gov", + "linkedInProfile": "https://www.linkedin.com/in/Cristine-Gaddesby-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", "skills": [ - "Kubernetes", + "DevOps", + "Database Design", "System Design", - "SQL", - "TDD (Test-Driven Development)", - "Data Science", - "Mobile Development", - "SaaS (Software as a Service)", - "Data Visualization", - "C++", - "AR/VR (Augmented/Virtual Reality)", - "JavaScript", - "WebSockets", - "Quantum Computing", - "Communication Skills" + "Git", + "AWS", + "Concurrency", + "Deep Learning", + "Vue.js", + "Time Management", + "Algorithm Design" ], "specializations": [ - "Data Science", - "Azure", + "System Design", + "Containerization", + "C++", "Project Management", - "Time Management", - "Database Design", "Leadership", - "Laravel", - "Code Review", - "Graph Databases", - "Problem-Solving", - "Unit Testing", + "Parallel Computing", + "Data Visualization", + "Natural Language Processing", + "Kubernetes", + "User Interface (UI) Design", + "Integration Testing", "Spring Boot", - "SaaS (Software as a Service)", - "Google Cloud Platform", - "Android Development" + "FaaS (Function as a Service)", + "Critical Thinking", + "Functional Programming", + "IoT (Internet of Things)" ], "careerInformation": { - "currentPosition": { "title": "Backend Developer", "company": "Coinbase" }, + "currentPosition": { "title": "Android Developer", "company": "Atlassian" }, "pastPositions": [ { - "title": "Full Stack Developer", - "company": "Snapchat", + "title": "Junior Software Engineer", + "company": "Zoom", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-07-09T11:03:20.965Z" + "$date": "2028-03-15T21:51:03.545Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353367" + "$oid": "66723dae8f368f285d304e61" } }, { - "title": "iOS Developer", - "company": "Robinhood", + "title": "Lead Software Engineer", + "company": "PayPal", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2024-11-23T02:42:01.707Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304e62" + } + }, + { + "title": "Data Engineer", + "company": "Stripe", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2025-05-05T13:16:13.643Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304e63" + } + }, + { + "title": "Software Architect", + "company": "Okta", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-04-29T08:32:36.965Z" + "$date": "2026-05-30T19:01:28.874Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353368" + "$oid": "66723dae8f368f285d304e64" } } ] }, "education": [ { - "institution": "University of Florida", - "degree": "Doctoral Degree", - "fieldOfStudy": "Electrical Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2026-01-21T04:02:35.623Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353369" - } - }, - { - "institution": "Seoul National University", - "degree": "Doctor of Medicine (MD)", - "fieldOfStudy": "Urban Planning", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2024-06-16T14:32:46.003Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35336a" - } - }, - { - "institution": "University of Cambridge", - "degree": "Master of Education (MEd)", - "fieldOfStudy": "Electrical Engineering", + "institution": "Purdue University", + "degree": "Master of Social Work (MSW)", + "fieldOfStudy": "Civil Engineering", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-09-30T14:49:45.527Z" + "$date": "2026-09-20T07:33:34.897Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35336b" + "$oid": "66723dae8f368f285d304e65" } }, { - "institution": "University College London (UCL)", - "degree": "Master's Degree", - "fieldOfStudy": "Mathematics", + "institution": "University of Delaware", + "degree": "Juris Doctor (JD)", + "fieldOfStudy": "Theater", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-08-28T16:04:30.448Z" + "$date": "2026-08-24T16:34:45.929Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35336c" + "$oid": "66723dae8f368f285d304e66" } } ], "projects": [ { - "name": "SecureBackup", - "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", - "link": "https://github.com/username/securebackup", + "name": "MediCare", + "description": "Medical appointment scheduling and patient management system for healthcare providers.", + "link": "https://github.com/username/medicare", "_id": { - "$oid": "666cbc4a40af7b375e35336d" + "$oid": "66723dae8f368f285d304e67" } }, { - "name": "DataCrunch", - "description": "Real-time data analytics platform for extracting insights from big data.", - "link": "https://github.com/username/datacrunch", + "name": "SmartCity", + "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", + "link": "https://github.com/username/smartcity", "_id": { - "$oid": "666cbc4a40af7b375e35336e" + "$oid": "66723dae8f368f285d304e68" } }, { - "name": "SmartLearning", - "description": "AI-driven personalized learning platform with adaptive learning algorithms.", - "link": "https://github.com/username/smartlearning", - "_id": { - "$oid": "666cbc4a40af7b375e35336f" - } - } - ], - "personalBio": "Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.", - "testimonials": [ - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "name": "EduTech", + "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", + "link": "https://github.com/username/edutech", "_id": { - "$oid": "666cbc4a40af7b375e353370" + "$oid": "66723dae8f368f285d304e69" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "name": "VirtualTour", + "description": "Virtual reality tour application for immersive travel experiences.", + "link": "https://github.com/username/virtualtour", "_id": { - "$oid": "666cbc4a40af7b375e353371" + "$oid": "66723dae8f368f285d304e6a" } } ], - "socialMediaLinks": { "other": [] }, + "personalBio": "Experienced in international collaboration and remote work, with a strong appreciation for cultural diversity.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Cristine-Gaddesby-fake", + "other": ["https://www.instagram.com/Cristine-Gaddesby-fake"] + }, "availabilityForNetworking": true, - "bootcampExperience": "Springboard", + "bootcampExperience": "Le Wagon", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353366" + "$oid": "66723dae8f368f285d304e60" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ee5" + "$oid": "66723da68f368f285d304b1f" }, - "firstName": "Siegfried", - "lastName": "Castillou", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "WCRI 11", + "firstName": "Marta", + "lastName": "Daveren", + "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "cohort": "ECRI 83", "graduationYear": 2024, - "email": "scastillou2g@reddit.com", - "linkedInProfile": "https://www.linkedin.com/in/Siegfried-Castillou-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": ["Cloud Computing", "Big Data"], - "specializations": [ - "Functional Programming", + "email": "mdaveren2b@odnoklassniki.ru", + "linkedInProfile": "https://www.linkedin.com/in/Marta-Daveren-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": [ + "Python", "DevOps", - "Communication Skills", - "Agile Development", - "Parallel Computing", - "AWS", - "SaaS (Software as a Service)", - "Graph Theory", - "PaaS (Platform as a Service)", - "Flask", - "Containerization", + "ETL (Extract, Transform, Load)", + "Infrastructure as Code", + "Leadership" + ], + "specializations": [ + "Version Control", + "React", + "Machine Learning", + "Blockchain", + "WebSockets", + "Ruby", + "Scrum", + "Time Management", "Leadership", - "CI/CD", - "Laravel", + "Refactoring", + "Performance Optimization", + "Infrastructure as Code", + "Azure", + "API Integration", "CSS", - "BDD (Behavior-Driven Development)", - "Collaboration", - "Concurrency", - "Legacy Code Management" + "Laravel" ], "careerInformation": { - "currentPosition": { "title": "Software Developer", "company": "Workday" }, + "currentPosition": { "title": "Software Developer", "company": "LinkedIn" }, "pastPositions": [ { - "title": "DevOps Engineer", - "company": "Shopify", + "title": "Frontend Developer", + "company": "Tesla", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2024-11-27T16:07:49.562Z" + "$date": "2027-11-30T14:03:04.838Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353373" + "$oid": "66723dae8f368f285d304e6c" } }, { - "title": "Software Architect", - "company": "Asana", + "title": "Lead Software Engineer", + "company": "Square", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2024-11-03T08:50:28.490Z" + "$date": "2025-02-12T13:39:14.787Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353374" + "$oid": "66723dae8f368f285d304e6d" } }, { - "title": "Product Manager", - "company": "Palantir", + "title": "Full Stack Developer", + "company": "Netflix", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2027-01-10T14:58:07.865Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304e6e" + } + }, + { + "title": "DevOps Engineer", + "company": "ServiceNow", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2024-10-26T01:46:46.580Z" + "$date": "2028-02-04T03:02:49.666Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353375" + "$oid": "66723dae8f368f285d304e6f" } }, { "title": "Data Scientist", - "company": "PayPal", + "company": "Activision Blizzard", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-07-30T00:13:21.798Z" + "$date": "2027-05-05T06:46:22.329Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353376" + "$oid": "66723dae8f368f285d304e70" } } ] }, - "education": [ - { - "institution": "University of California, Los Angeles (UCLA)", - "degree": "Bachelor of Science (BS)", - "fieldOfStudy": "Anthropology", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2025-07-22T20:46:02.552Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353377" - } - }, - { - "institution": "University of California, Santa Barbara (UCSB)", - "degree": "Bachelor's Degree", - "fieldOfStudy": "Theater", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2025-10-22T19:16:13.235Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353378" - } - }, + "education": [], + "projects": [ { - "institution": "Brown University", - "degree": "Bachelor of Arts (BA)", - "fieldOfStudy": "Interior Design", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2028-06-03T13:18:54.763Z" - }, + "name": "CodeReview", + "description": "Collaborative code review platform with annotations and feedback features.", + "link": "https://github.com/username/codereview", "_id": { - "$oid": "666cbc4a40af7b375e353379" + "$oid": "66723dae8f368f285d304e71" } }, { - "institution": "Stanford University", - "degree": "Bachelor of Fine Arts (BFA)", - "fieldOfStudy": "Management", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2025-03-30T13:23:28.971Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35337a" - } - } - ], - "projects": [ - { - "name": "SmartCity", - "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", - "link": "https://github.com/username/smartcity", + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", "_id": { - "$oid": "666cbc4a40af7b375e35337b" + "$oid": "66723dae8f368f285d304e72" } }, { - "name": "VirtualAssistant", - "description": "Virtual assistant software for voice command-based tasks and personal assistance.", - "link": "https://github.com/username/virtualassistant", + "name": "TravelGuide", + "description": "Interactive travel guide application providing travel tips and destination insights.", + "link": "https://github.com/username/travelguide", "_id": { - "$oid": "666cbc4a40af7b375e35337c" + "$oid": "66723dae8f368f285d304e73" } } ], - "personalBio": "Passionate about leveraging data-driven insights to optimize software performance and user engagement.", + "personalBio": "Passionate about contributing to the tech community through open-source projects and knowledge sharing.", "testimonials": [ { - "from": "Sophie Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "666cbc4a40af7b375e35337d" - } - }, - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "666cbc4a40af7b375e35337e" - } - }, - { - "from": "Ava Miller", + "from": "Lucas Miller", "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", "_id": { - "$oid": "666cbc4a40af7b375e35337f" + "$oid": "66723dae8f368f285d304e74" } }, { - "from": "Sophia Martinez", - "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "from": "Emily Brown", + "relation": "Client at GlobalSoft Solutions", + "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", "_id": { - "$oid": "666cbc4a40af7b375e353380" + "$oid": "66723dae8f368f285d304e75" } }, { @@ -15532,1308 +10942,1451 @@ "relation": "HR Manager at TechFusion", "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e353381" + "$oid": "66723dae8f368f285d304e76" } } ], - "socialMediaLinks": { - "twitter": "https://x.com/Siegfried-Castillou-fake", - "blog": "https://www.Siegfried-Castillou-fake-blog.com", - "other": ["https://www.instagram.com/Siegfried-Castillou-fake"] - }, - "availabilityForNetworking": false, - "bootcampExperience": "Thinkful", + "socialMediaLinks": { "other": ["https://www.instagram.com/Marta-Daveren-fake"] }, + "availabilityForNetworking": true, + "bootcampExperience": "CareerFoundry", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353372" + "$oid": "66723dae8f368f285d304e6b" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ee6" + "$oid": "66723da68f368f285d304b20" }, - "firstName": "Marvin", - "lastName": "Cranke", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "NYC 48", + "firstName": "Nanon", + "lastName": "Gligoraci", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "NYC 15", "graduationYear": 2024, - "email": "mcranke2h@marketwatch.com", - "linkedInProfile": "https://www.linkedin.com/in/Marvin-Cranke-fake", + "email": "ngligoraci2c@addthis.com", + "linkedInProfile": "https://www.linkedin.com/in/Nanon-Gligoraci-fake", "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", - "skills": [ - "Django", - "Legacy Code Management", - "Cybersecurity", - "Refactoring", - "Azure", - "Continuous Deployment", - "CI/CD" - ], + "skills": ["iOS Development"], "specializations": [ - "Git", - "Serverless Architecture", - "Pair Programming", - "Event-Driven Architecture", - "Continuous Deployment", - "SaaS (Software as a Service)", - "Design Patterns", - "FaaS (Function as a Service)", - "Deep Learning", - "React", - "User Experience (UX) Design", + "DevOps", + "SQL", "Cybersecurity", - "ETL (Extract, Transform, Load)", - "Technical Writing" + "Technical Writing", + "Machine Learning", + "iOS Development", + "Database Design" ], "careerInformation": { - "currentPosition": { "title": "Web Developer", "company": "Twilio" }, + "currentPosition": { "title": "Cloud Engineer", "company": "Oracle" }, "pastPositions": [ { - "title": "iOS Developer", - "company": "Netflix", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2024-09-03T18:27:08.319Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e353383" - } - }, - { - "title": "Software Developer", - "company": "Intel", + "title": "Lead Software Engineer", + "company": "GitHub", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2024-07-31T19:47:55.607Z" + "$date": "2026-01-03T06:52:08.418Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353384" + "$oid": "66723dae8f368f285d304e78" } }, { - "title": "Cloud Engineer", - "company": "Amazon", + "title": "Automation Engineer", + "company": "Netflix", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-06-18T21:51:03.447Z" + "$date": "2027-01-27T23:43:10.071Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353385" + "$oid": "66723dae8f368f285d304e79" } }, { - "title": "iOS Developer", - "company": "Pinterest", + "title": "Engineering Manager", + "company": "Slack", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2024-11-16T00:10:09.896Z" + "$date": "2024-12-22T10:51:34.599Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353386" + "$oid": "66723dae8f368f285d304e7a" } } ] }, "education": [ { - "institution": "Michigan State University", - "degree": "Master of Business Administration (MBA)", - "fieldOfStudy": "Finance", + "institution": "Purdue University", + "degree": "High School Diploma", + "fieldOfStudy": "History", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-08-08T17:49:03.249Z" + "$date": "2028-03-14T10:21:11.856Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353387" + "$oid": "66723dae8f368f285d304e7b" } }, { - "institution": "University of Chicago", - "degree": "Associate Degree", - "fieldOfStudy": "Marketing", + "institution": "Washington University in St. Louis", + "degree": "Doctor of Medicine (MD)", + "fieldOfStudy": "Urban Planning", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-02-24T02:42:40.425Z" + "$date": "2024-11-08T18:00:25.505Z" }, "_id": { - "$oid": "666cbc4a40af7b375e353388" + "$oid": "66723dae8f368f285d304e7c" + } + } + ], + "projects": [ + { + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", + "_id": { + "$oid": "66723dae8f368f285d304e7d" } }, { - "institution": "Shanghai Jiao Tong University", - "degree": "Doctor of Medicine (MD)", - "fieldOfStudy": "Psychology", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2024-10-28T03:04:20.018Z" - }, + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", "_id": { - "$oid": "666cbc4a40af7b375e353389" + "$oid": "66723dae8f368f285d304e7e" } }, { - "institution": "University of Hong Kong (HKU)", - "degree": "Bachelor of Technology (BTech)", - "fieldOfStudy": "Anthropology", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2027-12-09T19:26:48.702Z" - }, + "name": "GenomeQuest", + "description": "Genomic data analysis tool for researchers and bioinformaticians.", + "link": "https://github.com/username/genomequest", + "_id": { + "$oid": "66723dae8f368f285d304e7f" + } + }, + { + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", "_id": { - "$oid": "666cbc4a40af7b375e35338a" + "$oid": "66723dae8f368f285d304e80" } } ], - "projects": [], - "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", + "personalBio": "Adaptable problem solver who thrives in dynamic, fast-paced environments.", "testimonials": [ { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", "_id": { - "$oid": "666cbc4a40af7b375e35338b" + "$oid": "66723dae8f368f285d304e81" } }, { - "from": "Sophia Martinez", - "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", "_id": { - "$oid": "666cbc4a40af7b375e35338c" + "$oid": "66723dae8f368f285d304e82" + } + }, + { + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "_id": { + "$oid": "66723dae8f368f285d304e83" } } ], - "socialMediaLinks": { "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "Ironhack", + "socialMediaLinks": { "twitter": "https://x.com/Nanon-Gligoraci-fake", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Makers Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353382" + "$oid": "66723dae8f368f285d304e77" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ee7" + "$oid": "66723da68f368f285d304b21" }, - "firstName": "Arne", - "lastName": "Rummin", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "LA 59", + "firstName": "Donall", + "lastName": "Frapwell", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "CTRI 2", "graduationYear": 2024, - "email": "arummin2i@is.gd", - "linkedInProfile": "https://www.linkedin.com/in/Arne-Rummin-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "email": "dfrapwell2d@hostgator.com", + "linkedInProfile": "https://www.linkedin.com/in/Donall-Frapwell-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", "skills": [ - "Event-Driven Architecture", + "DevOps", + "Containerization", + "Collaboration", + "Design Patterns", + "Mobile Development", + "BDD (Behavior-Driven Development)", + "Graph Databases", + "User Interface (UI) Design", + "Google Cloud Platform", + "Kubernetes", + "Continuous Deployment", + "Technical Writing", + "Functional Programming", + "Ruby", + "System Design", + "Pair Programming", "HTML", - "Database Design", - "Time Management", - "Infrastructure as Code", - "Integration Testing", - "FaaS (Function as a Service)", - "Version Control", - "Algorithm Design", - "API Development" + "Code Review" ], "specializations": [ - "Java", - "Agile Development", - "Laravel", - "NoSQL", - "Version Control", - "PaaS (Platform as a Service)", - "AR/VR (Augmented/Virtual Reality)", + "Machine Learning", "Natural Language Processing", - "Vue.js", - "Data Visualization", - "iOS Development", - "Algorithm Design", "SaaS (Software as a Service)", - "Data Science" + "Concurrency", + "Leadership", + "User Interface (UI) Design", + "Project Management", + "Integration Testing", + "System Design", + "Critical Thinking", + "CSS", + "ASP.NET", + "Reactive Programming", + "Java", + "C++" ], "careerInformation": { - "currentPosition": { "title": "AI Engineer", "company": "Netflix" }, + "currentPosition": { "title": "Test Engineer", "company": "Apple" }, "pastPositions": [] }, "education": [ { - "institution": "EPFL - ร‰cole Polytechnique Fรฉdรฉrale de Lausanne", - "degree": "Postdoctoral Research", - "fieldOfStudy": "Music", + "institution": "University of California, Santa Barbara (UCSB)", + "degree": "Associate Degree", + "fieldOfStudy": "Urban Planning", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2026-08-20T11:50:40.091Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304e85" + } + }, + { + "institution": "Emory University", + "degree": "Master of Science (MS)", + "fieldOfStudy": "Linguistics", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2027-07-09T02:26:34.518Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304e86" + } + }, + { + "institution": "Massachusetts Institute of Technology (MIT)", + "degree": "Juris Doctor (JD)", + "fieldOfStudy": "Dentistry", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-04-08T01:03:30.802Z" + "$date": "2027-08-18T02:08:54.277Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35338e" + "$oid": "66723dae8f368f285d304e87" } } ], - "projects": [], - "personalBio": "Advocate for diversity and inclusion in the tech industry, fostering a welcoming and supportive workplace culture.", - "testimonials": [ + "projects": [ { - "from": "Lucas Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", + "name": "HealthMonitor", + "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", + "link": "https://github.com/username/healthmonitor", "_id": { - "$oid": "666cbc4a40af7b375e35338f" + "$oid": "66723dae8f368f285d304e88" } }, { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", + "_id": { + "$oid": "66723dae8f368f285d304e89" + } + }, + { + "name": "SecureChat", + "description": "End-to-end encrypted messaging app ensuring user privacy and security.", + "link": "https://github.com/username/securechat", + "_id": { + "$oid": "66723dae8f368f285d304e8a" + } + }, + { + "name": "SmartGrid", + "description": "Smart grid technology for efficient energy distribution and consumption.", + "link": "https://github.com/username/smartgrid", "_id": { - "$oid": "666cbc4a40af7b375e353390" + "$oid": "66723dae8f368f285d304e8b" } } ], - "socialMediaLinks": { - "twitter": "https://x.com/Arne-Rummin-fake", - "blog": "https://www.Arne-Rummin-fake-blog.com", - "other": [] - }, - "availabilityForNetworking": false, - "bootcampExperience": "Nucamp", + "personalBio": "Experienced in building scalable microservices architectures and integrating third-party APIs.", + "testimonials": [], + "socialMediaLinks": { "blog": "https://www.Donall-Frapwell-fake-blog.com", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "The Tech Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e35338d" + "$oid": "66723dae8f368f285d304e84" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ee8" + "$oid": "66723da68f368f285d304b22" }, - "firstName": "Seumas", - "lastName": "Feldberger", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "FTRI 9", + "firstName": "Beverlee", + "lastName": "Bangham", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "CTRI 43", "graduationYear": 2024, - "email": "sfeldberger2j@ning.com", - "linkedInProfile": "https://www.linkedin.com/in/Seumas-Feldberger-fake", - "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "email": "bbangham2e@tamu.edu", + "linkedInProfile": "https://www.linkedin.com/in/Beverlee-Bangham-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", "skills": [ - "Database Design", - "Git", - "Spring Boot", - "React", - "JavaScript", - "API Integration", - "Android Development", - "Continuous Deployment" - ], - "specializations": [ - "React", - "Docker", - "Azure", "Communication Skills", - "Big Data", + "NoSQL", + "iOS Development", + "Integration Testing", + "Machine Learning", + "Scrum", + "Functional Programming", + "AWS", + "Design Patterns", "Algorithm Design" ], + "specializations": [ + "Version Control", + "Parallel Computing", + "Data Science", + "Blockchain", + "Collaboration", + "Continuous Deployment", + "Ruby", + "Edge Computing", + "Critical Thinking", + "Microservices", + "JavaScript", + "Scrum", + "Unit Testing", + "Legacy Code Management", + "Android Development", + "Object-Oriented Programming", + "C#", + "CSS" + ], "careerInformation": { - "currentPosition": { "title": "Web Developer", "company": "IBM" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "University of Delaware", - "degree": "Technical School Certification", - "fieldOfStudy": "Anthropology", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "currentPosition": { "title": "iOS Developer", "company": "Tesla" }, + "pastPositions": [ + { + "title": "Data Scientist", + "company": "Activision Blizzard", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2028-04-03T21:47:37.044Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304e8d" + } }, - "endDate": { - "$date": "2025-12-09T04:03:21.565Z" + { + "title": "Web Developer", + "company": "Workday", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2025-04-19T11:04:54.003Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304e8e" + } + }, + { + "title": "Technical Program Manager", + "company": "Coinbase", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2025-09-06T18:27:38.614Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304e8f" + } + }, + { + "title": "Technical Program Manager", + "company": "Facebook", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2027-04-17T23:45:12.375Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304e90" + } }, - "_id": { - "$oid": "666cbc4a40af7b375e353392" + { + "title": "QA Engineer", + "company": "Asana", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2025-07-06T03:30:30.348Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304e91" + } } - }, + ] + }, + "education": [], + "projects": [ { - "institution": "Massachusetts Institute of Technology (MIT)", - "degree": "Doctoral Degree", - "fieldOfStudy": "Theater", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2028-02-14T22:45:58.384Z" - }, + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", "_id": { - "$oid": "666cbc4a40af7b375e353393" + "$oid": "66723dae8f368f285d304e92" } }, { - "institution": "Brigham Young University", - "degree": "Bachelor of Arts (BA)", - "fieldOfStudy": "Film Studies", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2026-07-01T16:16:09.310Z" - }, + "name": "VirtualTour", + "description": "Virtual reality tour application for immersive travel experiences.", + "link": "https://github.com/username/virtualtour", "_id": { - "$oid": "666cbc4a40af7b375e353394" + "$oid": "66723dae8f368f285d304e93" } } ], - "projects": [ - { - "name": "SmartFarm", - "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", - "link": "https://github.com/username/smartfarm", - "_id": { - "$oid": "666cbc4a40af7b375e353395" - } - }, + "personalBio": "Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.", + "testimonials": [ { - "name": "RecruitmentAI", - "description": "AI-powered recruitment platform for matching candidates with job opportunities.", - "link": "https://github.com/username/recruitmentai", + "from": "Ethan Taylor", + "relation": "Co-founder at StartupX", + "text": "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", "_id": { - "$oid": "666cbc4a40af7b375e353396" + "$oid": "66723dae8f368f285d304e94" } }, { - "name": "HealthLink", - "description": "Telemedicine platform connecting patients with healthcare providers remotely.", - "link": "https://github.com/username/healthlink", - "_id": { - "$oid": "666cbc4a40af7b375e353397" - } - } - ], - "personalBio": "Experienced in Agile methodologies, with a track record of delivering projects on time and within budget.", - "testimonials": [ - { - "from": "Emma Watson", + "from": "Ella Watson", "relation": "Director of Engineering at FutureTech", "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "666cbc4a40af7b375e353398" + "$oid": "66723dae8f368f285d304e95" } }, { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", "_id": { - "$oid": "666cbc4a40af7b375e353399" + "$oid": "66723dae8f368f285d304e96" } }, { - "from": "Isabella Clark", - "relation": "HR Manager at TechFusion", - "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "666cbc4a40af7b375e35339a" + "$oid": "66723dae8f368f285d304e97" } }, { - "from": "Daniel Lee", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e35339b" + "$oid": "66723dae8f368f285d304e98" } } ], - "socialMediaLinks": { "blog": "https://www.Seumas-Feldberger-fake-blog.com", "other": [] }, + "socialMediaLinks": { "other": ["https://www.instagram.com/Beverlee-Bangham-fake"] }, "availabilityForNetworking": false, - "bootcampExperience": "The Tech Academy", + "bootcampExperience": "General Assembly", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e353391" + "$oid": "66723dae8f368f285d304e8c" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ee9" + "$oid": "66723da68f368f285d304b23" }, - "firstName": "Hilda", - "lastName": "Worham", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "ECRI 21", + "firstName": "Englebert", + "lastName": "Bancroft", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "FTRI 71", "graduationYear": 2024, - "email": "hworham2k@mail.ru", - "linkedInProfile": "https://www.linkedin.com/in/Hilda-Worham-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "email": "ebancroft2f@ow.ly", + "linkedInProfile": "https://www.linkedin.com/in/Englebert-Bancroft-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", "skills": [ - "Event-Driven Architecture", - "Functional Programming", - "Graph Theory", - "Containerization", - "BDD (Behavior-Driven Development)", - "Quantum Computing", - "SaaS (Software as a Service)", + "Django", + "Data Visualization", + "React", + "Problem-Solving", + "Data Science", + "Automated Testing", + "RESTful APIs", + "Unit Testing", + "HTML", + "Legacy Code Management", + "Time Management", "Serverless Architecture", - "Version Control", - "Collaboration", - "Parallel Computing", - "DevOps", - "Vue.js", - "CI/CD" + "System Design", + "IoT (Internet of Things)" ], "specializations": [ - "Flask", - "Performance Optimization", - "Software Architecture", - "Google Cloud Platform", - "Database Design", "AWS", - "Android Development", - "Laravel", - "Java", - "User Interface (UI) Design", - "API Integration", - "Refactoring", - "Big Data", - "Git", - "Ruby", + "Version Control", + "AR/VR (Augmented/Virtual Reality)", "Algorithm Design", - "Technical Writing", - "System Design", - "CSS" + "WebSockets", + "ASP.NET" ], "careerInformation": { - "currentPosition": { "title": "Full Stack Developer", "company": "Salesforce" }, + "currentPosition": { "title": "Web Developer", "company": "Salesforce" }, "pastPositions": [ { - "title": "Backend Developer", - "company": "Datadog", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2025-06-24T01:48:34.223Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35339d" - } - }, - { - "title": "Software Developer", + "title": "Android Developer", "company": "Amazon", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2027-02-15T11:30:23.809Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e35339e" - } - }, - { - "title": "Technical Lead", - "company": "Adobe", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-03-01T02:22:10.904Z" + "$date": "2026-07-15T14:08:29.131Z" }, "_id": { - "$oid": "666cbc4a40af7b375e35339f" + "$oid": "66723dae8f368f285d304e9a" } }, { - "title": "Data Engineer", - "company": "Asana", + "title": "DevOps Engineer", + "company": "Activision Blizzard", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-08-23T16:54:39.200Z" + "$date": "2026-05-29T22:55:09.946Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533a0" + "$oid": "66723dae8f368f285d304e9b" } } ] }, "education": [ { - "institution": "University of Massachusetts Amherst", - "degree": "Master of Science (MS)", - "fieldOfStudy": "Business Administration", + "institution": "Johns Hopkins University", + "degree": "Certificate Program", + "fieldOfStudy": "Theater", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-01-30T08:18:20.083Z" + "$date": "2025-04-10T15:11:07.092Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533a1" + "$oid": "66723dae8f368f285d304e9c" + } + } + ], + "projects": [ + { + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", + "_id": { + "$oid": "66723dae8f368f285d304e9d" } }, { - "institution": "University of Arizona", - "degree": "Bachelor's Degree", - "fieldOfStudy": "Urban Planning", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2027-12-13T04:47:33.060Z" - }, + "name": "GenomeQuest", + "description": "Genomic data analysis tool for researchers and bioinformaticians.", + "link": "https://github.com/username/genomequest", "_id": { - "$oid": "666cbc4a40af7b375e3533a2" + "$oid": "66723dae8f368f285d304e9e" } } ], - "projects": [], - "personalBio": "Adept at optimizing SQL and NoSQL databases for performance and scalability.", - "testimonials": [], - "socialMediaLinks": { "other": ["https://www.instagram.com/Hilda-Worham-fake"] }, - "availabilityForNetworking": false, - "bootcampExperience": "General Assembly", + "personalBio": "Passionate about contributing to the tech community through open-source projects and knowledge sharing.", + "testimonials": [ + { + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "_id": { + "$oid": "66723dae8f368f285d304e9f" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "66723dae8f368f285d304ea0" + } + }, + { + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "_id": { + "$oid": "66723dae8f368f285d304ea1" + } + }, + { + "from": "Emily Brown", + "relation": "Client at GlobalSoft Solutions", + "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "_id": { + "$oid": "66723dae8f368f285d304ea2" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Englebert-Bancroft-fake", + "other": ["https://www.instagram.com/Englebert-Bancroft-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Flatiron School", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e35339c" + "$oid": "66723dae8f368f285d304e99" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352eea" + "$oid": "66723da68f368f285d304b24" }, - "firstName": "Winny", - "lastName": "O'Glessane", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "PTRI 50", + "firstName": "Siegfried", + "lastName": "Castillou", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "WCRI 22", "graduationYear": 2024, - "email": "woglessane2l@deviantart.com", - "linkedInProfile": "https://www.linkedin.com/in/Winny-O'Glessane-fake", + "email": "scastillou2g@reddit.com", + "linkedInProfile": "https://www.linkedin.com/in/Siegfried-Castillou-fake", "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", "skills": [ - "Pair Programming", - "Azure", - "Quantum Computing", - "Docker", - "Parallel Computing", - "Graph Databases" + "Concurrency", + "TDD (Test-Driven Development)", + "Django", + "AWS", + "Performance Optimization", + "HTML", + "Cybersecurity", + "Legacy Code Management", + "Natural Language Processing", + "RESTful APIs", + "WebSockets", + "Software Architecture" ], "specializations": [ - "SaaS (Software as a Service)", - "Python", "Reactive Programming", - "JavaScript", - "API Integration", - "C#", - "Collaboration", - "TDD (Test-Driven Development)", - "Android Development", - "PaaS (Platform as a Service)" + "Containerization", + "C++", + "iOS Development", + "Vue.js", + "Kubernetes", + "Design Patterns", + "Graph Databases", + "Data Visualization", + "Laravel" ], "careerInformation": { - "currentPosition": { "title": "QA Engineer", "company": "VMware" }, + "currentPosition": { "title": "Frontend Developer", "company": "Tesla" }, "pastPositions": [ { - "title": "Principal Software Engineer", - "company": "Dropbox", + "title": "Technical Lead", + "company": "Tesla", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-05-05T01:19:33.086Z" + "$date": "2027-07-06T16:21:56.800Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533a4" + "$oid": "66723dae8f368f285d304ea4" } }, { - "title": "Data Scientist", - "company": "Netflix", + "title": "Engineering Manager", + "company": "Facebook", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-02-17T01:06:59.691Z" + "$date": "2024-12-28T17:06:43.005Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533a5" + "$oid": "66723dae8f368f285d304ea5" } }, { - "title": "Lead Software Engineer", - "company": "Intel", + "title": "Web Developer", + "company": "Coinbase", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-04-29T21:57:47.455Z" + "$date": "2026-08-21T01:13:41.829Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533a6" + "$oid": "66723dae8f368f285d304ea6" } }, { - "title": "Machine Learning Engineer", - "company": "Slack", + "title": "Data Scientist", + "company": "Snowflake", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-04-26T21:10:09.677Z" + "$date": "2027-06-05T09:30:14.882Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533a7" + "$oid": "66723dae8f368f285d304ea7" } } ] }, "education": [ { - "institution": "University of New South Wales (UNSW Sydney)", - "degree": "Master of Fine Arts (MFA)", - "fieldOfStudy": "Finance", + "institution": "EPFL - ร‰cole Polytechnique Fรฉdรฉrale de Lausanne", + "degree": "Master of Technology (MTech)", + "fieldOfStudy": "Aerospace Engineering", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-11-18T21:47:26.498Z" + "$date": "2028-03-08T17:33:30.435Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533a8" + "$oid": "66723dae8f368f285d304ea8" } }, { - "institution": "University of Pennsylvania", - "degree": "Doctor of Dental Medicine (DMD)", - "fieldOfStudy": "Architecture", + "institution": "University of Michigan", + "degree": "Master of Social Work (MSW)", + "fieldOfStudy": "Biomedical Engineering", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-11-07T23:49:20.301Z" + "$date": "2026-12-23T09:58:37.600Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533a9" + "$oid": "66723dae8f368f285d304ea9" } } ], - "projects": [ + "projects": [], + "personalBio": "Skilled in conducting technical workshops and seminars to share knowledge and mentor aspiring developers.", + "testimonials": [ { - "name": "SocialConnect", - "description": "Social media integration platform for managing multiple social accounts.", - "link": "https://github.com/username/socialconnect", + "from": "Ethan Taylor", + "relation": "Co-founder at StartupX", + "text": "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", "_id": { - "$oid": "666cbc4a40af7b375e3533aa" + "$oid": "66723dae8f368f285d304eaa" } }, - { - "name": "TourismApp", - "description": "Mobile application for tourists providing travel guides and local recommendations.", - "link": "https://github.com/username/tourismapp", - "_id": { - "$oid": "666cbc4a40af7b375e3533ab" - } - } - ], - "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", - "testimonials": [ { "from": "Sophia Turner", "relation": "Project Manager at Digital Dynamics", "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "666cbc4a40af7b375e3533ac" + "$oid": "66723dae8f368f285d304eab" } }, { - "from": "Isabella Clark", - "relation": "HR Manager at TechFusion", - "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", "_id": { - "$oid": "666cbc4a40af7b375e3533ad" + "$oid": "66723dae8f368f285d304eac" } }, { - "from": "Sophia Martinez", - "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", "_id": { - "$oid": "666cbc4a40af7b375e3533ae" + "$oid": "66723dae8f368f285d304ead" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "666cbc4a40af7b375e3533af" + "$oid": "66723dae8f368f285d304eae" } } ], - "socialMediaLinks": { "blog": "https://www.Winny-O'Glessane-fake-blog.com", "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "Fullstack Academy", + "socialMediaLinks": { + "twitter": "https://x.com/Siegfried-Castillou-fake", + "blog": "https://www.Siegfried-Castillou-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Flatiron School", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e3533a3" + "$oid": "66723dae8f368f285d304ea3" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352eeb" + "$oid": "66723da68f368f285d304b25" }, - "firstName": "Gwenora", - "lastName": "Agge", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "NYC 45", + "firstName": "Marvin", + "lastName": "Cranke", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "FTRI 48", "graduationYear": 2024, - "email": "gagge2m@unesco.org", - "linkedInProfile": "https://www.linkedin.com/in/Gwenora-Agge-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": ["Time Management", "AR/VR (Augmented/Virtual Reality)", "System Design"], - "specializations": [ - "Graph Theory", - "NoSQL", - "Object-Oriented Programming", - "Python", - "Vue.js", - "Problem-Solving", - "Legacy Code Management", - "Reactive Programming", - "Refactoring", - "System Design", - "User Interface (UI) Design", - "TDD (Test-Driven Development)" - ], + "email": "mcranke2h@marketwatch.com", + "linkedInProfile": "https://www.linkedin.com/in/Marvin-Cranke-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "skills": ["ASP.NET", "API Integration", "Critical Thinking", "Code Review", "Laravel"], + "specializations": ["Edge Computing"], "careerInformation": { - "currentPosition": { "title": "Security Engineer", "company": "Airbnb" }, + "currentPosition": { "title": "Software Architect", "company": "Snowflake" }, "pastPositions": [ { - "title": "Cloud Engineer", - "company": "Airbnb", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2028-05-09T17:41:54.917Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3533b1" - } - }, - { - "title": "iOS Developer", - "company": "Netflix", + "title": "QA Engineer", + "company": "Red Hat", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-11-25T20:48:10.736Z" + "$date": "2025-05-17T00:06:32.181Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533b2" + "$oid": "66723dae8f368f285d304eb0" } }, { - "title": "Senior Software Engineer", - "company": "VMware", + "title": "Lead Software Engineer", + "company": "Pinterest", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2024-12-30T18:01:58.522Z" + "$date": "2027-01-21T03:09:47.678Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533b3" + "$oid": "66723dae8f368f285d304eb1" } }, { - "title": "Data Scientist", - "company": "Shopify", + "title": "Product Manager", + "company": "Microsoft", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-09-26T09:55:02.064Z" + "$date": "2025-04-29T02:51:20.226Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533b4" + "$oid": "66723dae8f368f285d304eb2" } } ] }, "education": [ { - "institution": "University of Florida", - "degree": "Master of Public Administration (MPA)", - "fieldOfStudy": "Sociology", + "institution": "University of Nebraska-Lincoln", + "degree": "Master of Science (MS)", + "fieldOfStudy": "Dentistry", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2027-12-20T07:42:58.544Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304eb3" + } + } + ], + "projects": [], + "personalBio": "Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Marvin-Cranke-fake", + "blog": "https://www.Marvin-Cranke-fake-blog.com", + "other": ["https://www.instagram.com/Marvin-Cranke-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Galvanize", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304eaf" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304b26" + }, + "firstName": "Arne", + "lastName": "Rummin", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "NYC 78", + "graduationYear": 2024, + "email": "arummin2i@is.gd", + "linkedInProfile": "https://www.linkedin.com/in/Arne-Rummin-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": [ + "Node.js", + "FaaS (Function as a Service)", + "iOS Development", + "Serverless Architecture", + "Laravel", + "ETL (Extract, Transform, Load)", + "User Experience (UX) Design", + "Communication Skills", + "Cybersecurity", + "System Design", + "Vue.js", + "Object-Oriented Programming", + "Azure", + "Functional Programming", + "Ruby", + "Database Design" + ], + "specializations": ["ETL (Extract, Transform, Load)"], + "careerInformation": { + "currentPosition": { "title": "Machine Learning Engineer", "company": "Netflix" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "University of Rochester", + "degree": "Bachelor of Science (BS)", + "fieldOfStudy": "Physics", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-07-05T08:50:55.070Z" + "$date": "2027-07-06T13:53:25.719Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533b5" + "$oid": "66723dae8f368f285d304eb5" } }, { - "institution": "University of Michigan", + "institution": "University of Missouri", "degree": "Certificate Program", - "fieldOfStudy": "Anthropology", + "fieldOfStudy": "Public Health", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2024-07-11T14:06:51.064Z" + "$date": "2025-05-07T20:36:48.802Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533b6" + "$oid": "66723dae8f368f285d304eb6" } }, { - "institution": "University of Kentucky", - "degree": "Postdoctoral Research", - "fieldOfStudy": "Nursing", + "institution": "New York University (NYU)", + "degree": "Trade School Certification", + "fieldOfStudy": "Finance", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-11-10T03:33:49.240Z" + "$date": "2025-05-14T00:46:15.764Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533b7" + "$oid": "66723dae8f368f285d304eb7" } } ], "projects": [ { - "name": "RoboVision", - "description": "AI-powered computer vision system for object detection and recognition.", - "link": "https://github.com/username/robovision", + "name": "CloudStorage", + "description": "Cloud storage service with file synchronization and sharing capabilities.", + "link": "https://github.com/username/cloudstorage", "_id": { - "$oid": "666cbc4a40af7b375e3533b8" + "$oid": "66723dae8f368f285d304eb8" } }, { - "name": "AIChatbot", - "description": "AI-powered chatbot for customer support and interactive communication.", - "link": "https://github.com/username/aichatbot", + "name": "VirtualTour", + "description": "Virtual reality tour application for immersive travel experiences.", + "link": "https://github.com/username/virtualtour", "_id": { - "$oid": "666cbc4a40af7b375e3533b9" + "$oid": "66723dae8f368f285d304eb9" } }, { - "name": "VirtualMarket", - "description": "Virtual reality shopping experience allowing users to browse and buy products online.", - "link": "https://github.com/username/virtualmarket", - "_id": { - "$oid": "666cbc4a40af7b375e3533ba" - } - } - ], - "personalBio": "Experienced in building scalable microservices architectures and integrating third-party APIs.", - "testimonials": [ - { - "from": "Lucas Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", + "name": "AugmentWorks", + "description": "Augmented reality application for enhancing workplace productivity and training.", + "link": "https://github.com/username/augmentworks", "_id": { - "$oid": "666cbc4a40af7b375e3533bb" + "$oid": "66723dae8f368f285d304eba" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", "_id": { - "$oid": "666cbc4a40af7b375e3533bc" + "$oid": "66723dae8f368f285d304ebb" } }, { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", "_id": { - "$oid": "666cbc4a40af7b375e3533bd" + "$oid": "66723dae8f368f285d304ebc" } - }, + } + ], + "personalBio": "Passionate about building inclusive and accessible software that improves people's lives.", + "testimonials": [ { "from": "Oliver Jackson", "relation": "HR Manager at TechFusion", "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e3533be" + "$oid": "66723dae8f368f285d304ebd" } }, { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "from": "Ethan Taylor", + "relation": "Co-founder at StartupX", + "text": "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", "_id": { - "$oid": "666cbc4a40af7b375e3533bf" + "$oid": "66723dae8f368f285d304ebe" } } ], - "socialMediaLinks": { "other": [] }, + "socialMediaLinks": { + "blog": "https://www.Arne-Rummin-fake-blog.com", + "other": ["https://www.instagram.com/Arne-Rummin-fake"] + }, "availabilityForNetworking": true, - "bootcampExperience": "Ironhack", + "bootcampExperience": "DevMountain", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e3533b0" + "$oid": "66723dae8f368f285d304eb4" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352eec" + "$oid": "66723da68f368f285d304b27" }, - "firstName": "Piggy", - "lastName": "Torrisi", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "CTRI 55", + "firstName": "Seumas", + "lastName": "Feldberger", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "FTRI 21", "graduationYear": 2024, - "email": "ptorrisi2n@goodreads.com", - "linkedInProfile": "https://www.linkedin.com/in/Piggy-Torrisi-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "email": "sfeldberger2j@ning.com", + "linkedInProfile": "https://www.linkedin.com/in/Seumas-Feldberger-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", "skills": [ - "Edge Computing", - "Python", - "Refactoring", - "CSS", - "Spring Boot", - "Flask", - "Cybersecurity", - "Docker", - "Big Data", - "Infrastructure as Code", + "Parallel Computing", "Critical Thinking", - "Communication Skills" - ], - "specializations": [ - "API Integration", - "Django", - "WebSockets", - "Version Control", - "Android Development", - "SaaS (Software as a Service)", - "Vue.js", + "Legacy Code Management", + "User Interface (UI) Design", + "Deep Learning", "Serverless Architecture", - "Database Design", - "Laravel", - "User Experience (UX) Design", - "Continuous Deployment", - "Git" + "RESTful APIs", + "WebSockets", + "Data Science", + "Project Management", + "Google Cloud Platform", + "Agile Development", + "Automated Testing", + "Leadership", + "CI/CD" ], + "specializations": [], "careerInformation": { - "currentPosition": { "title": "Automation Engineer", "company": "Stripe" }, + "currentPosition": { "title": "Security Engineer", "company": "Salesforce" }, "pastPositions": [ { - "title": "Software Architect", - "company": "Robinhood", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2025-11-12T22:14:14.858Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3533c1" - } - }, - { - "title": "Test Engineer", - "company": "Epic Games", + "title": "Data Scientist", + "company": "IBM", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2024-10-29T12:08:26.519Z" + "$date": "2028-01-20T02:40:54.559Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533c2" + "$oid": "66723dae8f368f285d304ec0" } }, { - "title": "Junior Software Engineer", - "company": "Slack", + "title": "DevOps Engineer", + "company": "Twilio", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-03-30T06:10:19.269Z" + "$date": "2025-05-19T06:06:00.359Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533c3" + "$oid": "66723dae8f368f285d304ec1" } } ] }, "education": [ { - "institution": "Ohio State University", - "degree": "Doctoral Degree", - "fieldOfStudy": "Computer Science", + "institution": "Clemson University", + "degree": "Doctor of Dental Surgery (DDS)", + "fieldOfStudy": "Environmental Engineering", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2024-08-05T01:34:38.104Z" + "$date": "2026-05-10T07:00:51.714Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533c4" + "$oid": "66723dae8f368f285d304ec2" + } + } + ], + "projects": [ + { + "name": "EduTech", + "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", + "link": "https://github.com/username/edutech", + "_id": { + "$oid": "66723dae8f368f285d304ec3" } }, { - "institution": "London School of Economics and Political Science (LSE)", - "degree": "Master's Degree", - "fieldOfStudy": "Mechanical Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2026-04-21T07:39:30.032Z" - }, + "name": "SocialConnect", + "description": "Social media integration platform for managing multiple social accounts.", + "link": "https://github.com/username/socialconnect", + "_id": { + "$oid": "66723dae8f368f285d304ec4" + } + }, + { + "name": "NetPlanner", + "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", + "link": "https://github.com/username/netplanner", + "_id": { + "$oid": "66723dae8f368f285d304ec5" + } + }, + { + "name": "SmartInventory", + "description": "Inventory management system with RFID and IoT integration for tracking assets.", + "link": "https://github.com/username/smartinventory", "_id": { - "$oid": "666cbc4a40af7b375e3533c5" + "$oid": "66723dae8f368f285d304ec6" + } + }, + { + "name": "TravelGuide", + "description": "Interactive travel guide application providing travel tips and destination insights.", + "link": "https://github.com/username/travelguide", + "_id": { + "$oid": "66723dae8f368f285d304ec7" } } ], - "projects": [ + "personalBio": "Advocate for diversity and inclusion in the tech industry, fostering a welcoming and supportive workplace culture.", + "testimonials": [ { - "name": "GenomeQuest", - "description": "Genomic data analysis tool for researchers and bioinformaticians.", - "link": "https://github.com/username/genomequest", + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "666cbc4a40af7b375e3533c6" + "$oid": "66723dae8f368f285d304ec8" } }, { - "name": "SmartCarPark", - "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", - "link": "https://github.com/username/smartcarpark", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "666cbc4a40af7b375e3533c7" + "$oid": "66723dae8f368f285d304ec9" } }, { - "name": "VirtualTour", - "description": "Virtual reality tour application for immersive travel experiences.", - "link": "https://github.com/username/virtualtour", + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "_id": { + "$oid": "66723dae8f368f285d304eca" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "666cbc4a40af7b375e3533c8" + "$oid": "66723dae8f368f285d304ecb" } } ], - "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", - "testimonials": [], "socialMediaLinks": { - "twitter": "https://x.com/Piggy-Torrisi-fake", - "other": ["https://www.instagram.com/Piggy-Torrisi-fake"] + "twitter": "https://x.com/Seumas-Feldberger-fake", + "blog": "https://www.Seumas-Feldberger-fake-blog.com", + "other": ["https://www.instagram.com/Seumas-Feldberger-fake"] }, "availabilityForNetworking": false, - "bootcampExperience": "The Tech Academy", + "bootcampExperience": "Hack Reactor", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e3533c0" + "$oid": "66723dae8f368f285d304ebf" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352eed" + "$oid": "66723da68f368f285d304b28" }, - "firstName": "Niki", - "lastName": "Glaysher", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "LA 84", + "firstName": "Hilda", + "lastName": "Worham", + "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "cohort": "ECRI 8", "graduationYear": 2024, - "email": "nglaysher2o@kickstarter.com", - "linkedInProfile": "https://www.linkedin.com/in/Niki-Glaysher-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": [ - "Algorithm Design", - "Refactoring", - "SaaS (Software as a Service)", - "WebSockets", - "Agile Development", - "iOS Development", - "Automated Testing", - "AWS", - "Spring Boot" - ], - "specializations": [ - "Edge Computing", - "Data Visualization", - "Object-Oriented Programming", - "IoT (Internet of Things)", - "Leadership", - "Laravel", - "Graph Theory", - "Blockchain", - "User Experience (UX) Design", - "CI/CD", - "Collaboration", - "Infrastructure as Code" - ], + "email": "hworham2k@mail.ru", + "linkedInProfile": "https://www.linkedin.com/in/Hilda-Worham-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "skills": ["Project Management"], + "specializations": ["HTML"], "careerInformation": { - "currentPosition": { "title": "Junior Software Engineer", "company": "Intel" }, - "pastPositions": [] + "currentPosition": { "title": "Engineering Manager", "company": "Qualcomm" }, + "pastPositions": [ + { + "title": "Full Stack Developer", + "company": "Activision Blizzard", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2025-05-11T23:38:43.725Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304ecd" + } + }, + { + "title": "Android Developer", + "company": "Amazon", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2027-03-31T08:39:25.811Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304ece" + } + }, + { + "title": "Senior Software Engineer", + "company": "DocuSign", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2027-11-02T17:04:18.739Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304ecf" + } + }, + { + "title": "Data Engineer", + "company": "Okta", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2028-03-11T18:39:57.512Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304ed0" + } + }, + { + "title": "Principal Software Engineer", + "company": "Activision Blizzard", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2026-06-15T22:38:54.564Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304ed1" + } + } + ] }, "education": [ { - "institution": "University of Oregon", - "degree": "Master of Public Health (MPH)", - "fieldOfStudy": "Political Science", + "institution": "University College London (UCL)", + "degree": "Professional Degree", + "fieldOfStudy": "Theater", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-04-29T06:13:49.561Z" + "$date": "2027-03-22T05:42:46.822Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533ca" + "$oid": "66723dae8f368f285d304ed2" } }, { - "institution": "University of Chicago", - "degree": "Doctoral Degree", - "fieldOfStudy": "History", + "institution": "University of California, San Diego (UCSD)", + "degree": "Master of Fine Arts (MFA)", + "fieldOfStudy": "Music", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-11-30T18:42:38.526Z" + "$date": "2024-08-09T03:23:40.857Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533cb" + "$oid": "66723dae8f368f285d304ed3" } - }, + } + ], + "projects": [ { - "institution": "University of South Carolina", - "degree": "Executive Education", - "fieldOfStudy": "Medicine", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2027-01-25T17:04:17.366Z" - }, + "name": "SocialConnect", + "description": "Social media integration platform for managing multiple social accounts.", + "link": "https://github.com/username/socialconnect", "_id": { - "$oid": "666cbc4a40af7b375e3533cc" + "$oid": "66723dae8f368f285d304ed4" } }, { - "institution": "University of Tokyo", - "degree": "Doctor of Business Administration (DBA)", - "fieldOfStudy": "Biomedical Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2026-09-17T01:40:29.587Z" - }, + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", "_id": { - "$oid": "666cbc4a40af7b375e3533cd" + "$oid": "66723dae8f368f285d304ed5" } } ], - "projects": [ + "personalBio": "Passionate about leveraging data-driven insights to optimize software performance and user engagement.", + "testimonials": [ { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", "_id": { - "$oid": "666cbc4a40af7b375e3533ce" + "$oid": "66723dae8f368f285d304ed6" } }, { - "name": "FoodDelivery", - "description": "Online food delivery platform connecting restaurants with customers for food ordering.", - "link": "https://github.com/username/fooddelivery", + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", "_id": { - "$oid": "666cbc4a40af7b375e3533cf" + "$oid": "66723dae8f368f285d304ed7" } }, { - "name": "SmartCarPark", - "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", - "link": "https://github.com/username/smartcarpark", - "_id": { - "$oid": "666cbc4a40af7b375e3533d0" - } - } - ], - "personalBio": "Focused on delivering user-centric solutions that address real-world needs and challenges.", - "testimonials": [ - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e3533d1" + "$oid": "66723dae8f368f285d304ed8" } }, { - "from": "Sophia Martinez", - "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "666cbc4a40af7b375e3533d2" + "$oid": "66723dae8f368f285d304ed9" } }, { @@ -16841,467 +12394,521 @@ "relation": "Lead Developer at CloudTech", "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", "_id": { - "$oid": "666cbc4a40af7b375e3533d3" + "$oid": "66723dae8f368f285d304eda" } } ], "socialMediaLinks": { - "twitter": "https://x.com/Niki-Glaysher-fake", - "blog": "https://www.Niki-Glaysher-fake-blog.com", - "other": ["https://www.instagram.com/Niki-Glaysher-fake"] + "twitter": "https://x.com/Hilda-Worham-fake", + "other": ["https://www.instagram.com/Hilda-Worham-fake"] }, - "availabilityForNetworking": false, - "bootcampExperience": "Kenzie Academy", + "availabilityForNetworking": true, + "bootcampExperience": "Hack Reactor", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e3533c9" + "$oid": "66723dae8f368f285d304ecc" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352eee" + "$oid": "66723da68f368f285d304b29" }, - "firstName": "Pail", - "lastName": "Vasechkin", - "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "cohort": "NYC 37", + "firstName": "Winny", + "lastName": "O'Glessane", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "CTRI 19", "graduationYear": 2024, - "email": "pvasechkin2p@vk.com", - "linkedInProfile": "https://www.linkedin.com/in/Pail-Vasechkin-fake", + "email": "woglessane2l@deviantart.com", + "linkedInProfile": "https://www.linkedin.com/in/Winny-O'Glessane-fake", "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", "skills": [ - "Parallel Computing", - "Flask", - "Project Management", - "WebSockets", - "Performance Optimization", - "AR/VR (Augmented/Virtual Reality)", - "Serverless Architecture", - "User Experience (UX) Design", - "SQL" + "API Integration", + "Concurrency", + "Google Cloud Platform", + "Ruby", + "Software Architecture", + "Integration Testing", + "Edge Computing", + "FaaS (Function as a Service)" ], "specializations": [ - "Python", - "Functional Programming", - "Azure", - "Microservices", - "Git", - "User Interface (UI) Design", - "Infrastructure as Code", "Natural Language Processing", - "Data Warehousing", - "ETL (Extract, Transform, Load)", - "JavaScript", - "ASP.NET", - "Laravel", - "Refactoring", - "Graph Theory" + "Technical Writing", + "Reactive Programming", + "Event-Driven Architecture", + "C#", + "Database Design", + "Spring Boot", + "Microservices", + "ASP.NET" ], "careerInformation": { - "currentPosition": { "title": "Backend Developer", "company": "Airbnb" }, + "currentPosition": { "title": "Full Stack Developer", "company": "DoorDash" }, "pastPositions": [ { - "title": "Automation Engineer", - "company": "NVIDIA", + "title": "Engineering Manager", + "company": "Cisco", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2024-11-03T23:20:18.355Z" + "$date": "2026-03-21T06:14:36.184Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533d5" + "$oid": "66723dae8f368f285d304edc" } }, { - "title": "Software Developer", - "company": "Netflix", + "title": "Junior Software Engineer", + "company": "Zoom", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2026-03-13T14:17:01.438Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304edd" + } + }, + { + "title": "Principal Software Engineer", + "company": "HubSpot", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-03-17T00:17:19.698Z" + "$date": "2024-10-19T19:39:56.097Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533d6" + "$oid": "66723dae8f368f285d304ede" } } ] }, "education": [ { - "institution": "University of California, Santa Barbara (UCSB)", - "degree": "Bachelor of Fine Arts (BFA)", - "fieldOfStudy": "Anthropology", + "institution": "Shanghai Jiao Tong University", + "degree": "Master of Technology (MTech)", + "fieldOfStudy": "Economics", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-06-01T19:25:23.555Z" + "$date": "2026-05-17T06:49:58.013Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533d7" + "$oid": "66723dae8f368f285d304edf" } }, { - "institution": "University of Nebraska-Lincoln", - "degree": "Continuing Education", - "fieldOfStudy": "Philosophy", + "institution": "University of Oklahoma", + "degree": "Associate Degree", + "fieldOfStudy": "Biochemistry", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2028-04-27T08:45:41.741Z" + "$date": "2027-12-05T02:47:58.956Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533d8" + "$oid": "66723dae8f368f285d304ee0" } } ], "projects": [], - "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", - "testimonials": [ - { - "from": "Emma Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "666cbc4a40af7b375e3533d9" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "666cbc4a40af7b375e3533da" - } - } - ], - "socialMediaLinks": { "blog": "https://www.Pail-Vasechkin-fake-blog.com", "other": [] }, + "personalBio": "Proactive learner constantly exploring emerging technologies and trends in the software industry.", + "testimonials": [], + "socialMediaLinks": { + "blog": "https://www.Winny-O'Glessane-fake-blog.com", + "other": ["https://www.instagram.com/Winny-O'Glessane-fake"] + }, "availabilityForNetworking": true, - "bootcampExperience": "BrainStation", + "bootcampExperience": "Ironhack", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e3533d4" + "$oid": "66723dae8f368f285d304edb" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352eef" + "$oid": "66723da68f368f285d304b2a" }, - "firstName": "Gav", - "lastName": "Renneke", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "NYC 74", + "firstName": "Gwenora", + "lastName": "Agge", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "WCRI 1", "graduationYear": 2024, - "email": "grenneke2q@hp.com", - "linkedInProfile": "https://www.linkedin.com/in/Gav-Renneke-fake", - "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "email": "gagge2m@unesco.org", + "linkedInProfile": "https://www.linkedin.com/in/Gwenora-Agge-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", "skills": [ - "Refactoring", - "Cloud Computing", + "Blockchain", + "TDD (Test-Driven Development)", + "Data Science", + "Data Warehousing", "Cybersecurity", - "Laravel", - "System Design", - "Kubernetes", - "Unit Testing" + "Reactive Programming", + "Python", + "Infrastructure as Code", + "Time Management", + "Serverless Architecture", + "Cloud Computing", + "Google Cloud Platform", + "Docker", + "AR/VR (Augmented/Virtual Reality)" ], - "specializations": ["AWS"], + "specializations": ["Angular", "CSS", "API Integration", "Project Management"], "careerInformation": { - "currentPosition": { "title": "AI Engineer", "company": "DocuSign" }, - "pastPositions": [] + "currentPosition": { "title": "Principal Software Engineer", "company": "Robinhood" }, + "pastPositions": [ + { + "title": "Full Stack Developer", + "company": "Cisco", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2025-03-25T12:07:04.766Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304ee2" + } + }, + { + "title": "Backend Developer", + "company": "Netflix", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2025-09-23T17:47:45.917Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304ee3" + } + }, + { + "title": "Automation Engineer", + "company": "Square", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2026-10-16T03:11:16.124Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304ee4" + } + }, + { + "title": "Frontend Developer", + "company": "Pinterest", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2024-08-04T18:46:39.052Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304ee5" + } + }, + { + "title": "Senior Software Engineer", + "company": "PayPal", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2025-01-06T03:08:07.281Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304ee6" + } + } + ] }, "education": [ { - "institution": "Boston University", - "degree": "Executive Education", - "fieldOfStudy": "Dentistry", + "institution": "University of South Carolina", + "degree": "Master of Education (MEd)", + "fieldOfStudy": "Civil Engineering", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2027-05-21T23:53:49.056Z" + "$date": "2027-10-08T20:59:26.919Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533dc" + "$oid": "66723dae8f368f285d304ee7" } }, { - "institution": "McGill University", - "degree": "Associate Degree", - "fieldOfStudy": "Accounting", + "institution": "University of California, Los Angeles (UCLA)", + "degree": "Bachelor of Fine Arts (BFA)", + "fieldOfStudy": "History", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-12-27T02:50:59.473Z" + "$date": "2025-02-27T11:28:03.220Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533dd" + "$oid": "66723dae8f368f285d304ee8" } }, { - "institution": "Imperial College London", - "degree": "Doctor of Business Administration (DBA)", - "fieldOfStudy": "English Literature", + "institution": "Indiana University Bloomington", + "degree": "Technical School Certification", + "fieldOfStudy": "Film Studies", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2026-12-18T13:11:47.383Z" + "$date": "2028-03-26T02:44:49.301Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533de" + "$oid": "66723dae8f368f285d304ee9" } } ], "projects": [ { - "name": "SecureBackup", - "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", - "link": "https://github.com/username/securebackup", + "name": "CodeReview", + "description": "Collaborative code review platform with annotations and feedback features.", + "link": "https://github.com/username/codereview", "_id": { - "$oid": "666cbc4a40af7b375e3533df" + "$oid": "66723dae8f368f285d304eea" } }, { - "name": "FoodDelivery", - "description": "Online food delivery platform connecting restaurants with customers for food ordering.", - "link": "https://github.com/username/fooddelivery", + "name": "SmartLearning", + "description": "AI-driven personalized learning platform with adaptive learning algorithms.", + "link": "https://github.com/username/smartlearning", "_id": { - "$oid": "666cbc4a40af7b375e3533e0" + "$oid": "66723dae8f368f285d304eeb" } }, { - "name": "CodeBot", - "description": "Automated code generation tool using AI for faster development cycles.", - "link": "https://github.com/username/codebot", + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", "_id": { - "$oid": "666cbc4a40af7b375e3533e1" + "$oid": "66723dae8f368f285d304eec" } } ], - "personalBio": "Focused on delivering user-centric solutions that address real-world needs and challenges.", + "personalBio": "Proven ability to lead technical projects from inception to successful deployment and maintenance.", "testimonials": [ { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "666cbc4a40af7b375e3533e2" - } - }, - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "from": "Emily Brown", + "relation": "Client at GlobalSoft Solutions", + "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", "_id": { - "$oid": "666cbc4a40af7b375e3533e3" + "$oid": "66723dae8f368f285d304eed" } }, { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e3533e4" + "$oid": "66723dae8f368f285d304eee" } }, { - "from": "David Smith", - "relation": "Colleague at InnovateTech Ltd.", - "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", "_id": { - "$oid": "666cbc4a40af7b375e3533e5" + "$oid": "66723dae8f368f285d304eef" } } ], "socialMediaLinks": { - "blog": "https://www.Gav-Renneke-fake-blog.com", - "other": ["https://www.instagram.com/Gav-Renneke-fake"] + "blog": "https://www.Gwenora-Agge-fake-blog.com", + "other": ["https://www.instagram.com/Gwenora-Agge-fake"] }, - "availabilityForNetworking": true, - "bootcampExperience": "Flatiron School", + "availabilityForNetworking": false, + "bootcampExperience": "Le Wagon", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e3533db" + "$oid": "66723dae8f368f285d304ee1" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ef0" + "$oid": "66723da68f368f285d304b2b" }, - "firstName": "Perle", - "lastName": "Rizziello", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "FTRI 76", + "firstName": "Piggy", + "lastName": "Torrisi", + "cohort": "LA 35", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "66723dae8f368f285d304ef0" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304b2c" + }, + "firstName": "Niki", + "lastName": "Glaysher", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "WCRI 46", "graduationYear": 2024, - "email": "prizziello2r@mashable.com", - "linkedInProfile": "https://www.linkedin.com/in/Perle-Rizziello-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "email": "nglaysher2o@kickstarter.com", + "linkedInProfile": "https://www.linkedin.com/in/Niki-Glaysher-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", "skills": [ - "PaaS (Platform as a Service)", - "Refactoring", - "Time Management", + "Unit Testing", + "Flask", + "Graph Theory", + "GraphQL", + "Collaboration", + "Blockchain", + "Code Review", + "Data Visualization", "User Interface (UI) Design", - "Algorithm Design", - "Integration Testing", - "Big Data" + "Git", + "Kubernetes", + "NoSQL", + "Azure", + "Time Management", + "Event-Driven Architecture", + "Legacy Code Management", + "Technical Writing" ], "specializations": [ - "Google Cloud Platform", - "Parallel Computing", - "Quantum Computing", - "SaaS (Software as a Service)", + "Agile Development", + "Data Warehousing", + "API Integration", + "GraphQL", + "Communication Skills", "API Development", + "Machine Learning", + "Data Visualization", + "Refactoring", "BDD (Behavior-Driven Development)", - "TDD (Test-Driven Development)", - "Scrum", - "Git", - "Java", - "Python", - "Pair Programming", - "Unit Testing", - "Graph Databases", - "Kubernetes", - "Edge Computing" + "Database Design" ], "careerInformation": { - "currentPosition": { "title": "Junior Software Engineer", "company": "DoorDash" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "University of Florida", - "degree": "Bachelor of Science (BS)", - "fieldOfStudy": "Theater", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2025-05-27T15:02:39.340Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3533e7" - } - }, - { - "institution": "University of Houston", - "degree": "Master of Science (MS)", - "fieldOfStudy": "Biomedical Engineering", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2026-11-22T08:09:32.126Z" - }, - "_id": { - "$oid": "666cbc4a40af7b375e3533e8" - } - }, - { - "institution": "University of Southern California", - "degree": "Doctoral Degree", - "fieldOfStudy": "Biology", - "startDate": { - "$date": "2024-06-14T21:55:22.548Z" - }, - "endDate": { - "$date": "2027-11-30T21:12:51.958Z" + "currentPosition": { "title": "AI Engineer", "company": "Palantir" }, + "pastPositions": [ + { + "title": "Site Reliability Engineer", + "company": "Snowflake", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2026-06-20T19:31:11.115Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304ef2" + } }, - "_id": { - "$oid": "666cbc4a40af7b375e3533e9" + { + "title": "Android Developer", + "company": "Adobe", + "startDate": { + "$date": "2024-06-19T02:08:46.633Z" + }, + "endDate": { + "$date": "2026-04-23T22:21:03.519Z" + }, + "_id": { + "$oid": "66723dae8f368f285d304ef3" + } } - }, + ] + }, + "education": [ { - "institution": "University of Wisconsin-Madison", - "degree": "Master of Science (MS)", + "institution": "University of Minnesota", + "degree": "Doctor of Dental Surgery (DDS)", "fieldOfStudy": "Environmental Engineering", "startDate": { - "$date": "2024-06-14T21:55:22.548Z" + "$date": "2024-06-19T02:08:46.633Z" }, "endDate": { - "$date": "2025-10-14T23:04:28.260Z" + "$date": "2025-03-22T20:03:37.805Z" }, "_id": { - "$oid": "666cbc4a40af7b375e3533ea" + "$oid": "66723dae8f368f285d304ef4" } } ], "projects": [ { - "name": "SmartHomeHub", - "description": "Centralized home automation system integrating IoT devices for smart living.", - "link": "https://github.com/username/smarthomehub", - "_id": { - "$oid": "666cbc4a40af7b375e3533eb" - } - }, - { - "name": "SmartCarPark", - "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", - "link": "https://github.com/username/smartcarpark", - "_id": { - "$oid": "666cbc4a40af7b375e3533ec" - } - }, - { - "name": "SocialConnect", - "description": "Social media integration platform for managing multiple social accounts.", - "link": "https://github.com/username/socialconnect", + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", "_id": { - "$oid": "666cbc4a40af7b375e3533ed" + "$oid": "66723dae8f368f285d304ef5" } }, { - "name": "EventPlanner", - "description": "Event management and planning software for organizing and coordinating events.", - "link": "https://github.com/username/eventplanner", + "name": "CryptoTrack", + "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", + "link": "https://github.com/username/cryptotrack", "_id": { - "$oid": "666cbc4a40af7b375e3533ee" + "$oid": "66723dae8f368f285d304ef6" } } ], - "personalBio": "Skilled in conducting technical workshops and seminars to share knowledge and mentor aspiring developers.", + "personalBio": "Focused on delivering user-centric solutions that address real-world needs and challenges.", "testimonials": [ { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "666cbc4a40af7b375e3533ef" + "$oid": "66723dae8f368f285d304ef7" } }, { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "666cbc4a40af7b375e3533f0" + "$oid": "66723dae8f368f285d304ef8" } }, { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "666cbc4a40af7b375e3533f1" + "$oid": "66723dae8f368f285d304ef9" } }, { @@ -17309,31 +12916,23 @@ "relation": "Product Owner at AgileSoft", "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "666cbc4a40af7b375e3533f2" - } - }, - { - "from": "Liam Harris", - "relation": "Lead Developer at CloudTech", - "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "666cbc4a40af7b375e3533f3" + "$oid": "66723dae8f368f285d304efa" } } ], "socialMediaLinks": { - "twitter": "https://x.com/Perle-Rizziello-fake", - "blog": "https://www.Perle-Rizziello-fake-blog.com", - "other": ["https://www.instagram.com/Perle-Rizziello-fake"] + "twitter": "https://x.com/Niki-Glaysher-fake", + "blog": "https://www.Niki-Glaysher-fake-blog.com", + "other": ["https://www.instagram.com/Niki-Glaysher-fake"] }, "availabilityForNetworking": false, - "bootcampExperience": "CareerFoundry", + "bootcampExperience": "Kenzie Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "666cbc4a40af7b375e3533e6" + "$oid": "66723dae8f368f285d304ef1" }, "blogOrWriting": [], "__v": 0 diff --git a/scripts/db/mongo-dev-init/MOCK_THREADS.json b/scripts/db/mongo-dev-init/MOCK_THREADS.json index 0b807740..69fa1303 100644 --- a/scripts/db/mongo-dev-init/MOCK_THREADS.json +++ b/scripts/db/mongo-dev-init/MOCK_THREADS.json @@ -1,621 +1,321 @@ [ { "user": { - "$oid": "666cbc4240af7b375e352e9d" + "$oid": "66723da68f368f285d304acd" }, "forum": { - "$oid": "666cbc4a40af7b375e352f57" + "$oid": "66723dae8f368f285d304b94" }, - "title": "Career Advice: Frontend vs Backend?", - "content": "Considering specializing in either frontend or backend development. What are the pros and cons of each? Which path offers better career opportunities?", + "title": "Tips for Effective Debugging", + "content": "Share your best practices and tools for debugging complex issues in software development. How do you approach troubleshooting and resolving bugs?", "createdAt": { - "$date": "2024-06-14T21:55:23.577Z" + "$date": "2024-06-19T02:08:48.122Z" }, "updatedAt": { - "$date": "2026-07-03T15:45:40.730Z" + "$date": "2024-06-19T02:08:48.122Z" }, "_id": { - "$oid": "666cbc4b40af7b375e353459" + "$oid": "66723db08f368f285d304f5f" }, "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ed0" + "$oid": "66723da68f368f285d304acb" }, "forum": { - "$oid": "666cbc4a40af7b375e352f59" + "$oid": "66723dae8f368f285d304b92" }, - "title": "Machine Learning for Beginners", - "content": "New to machine learning? Let's explore foundational concepts, resources, and hands-on tutorials to get started with machine learning projects.", + "title": "Blockchain Development Platforms: Ethereum vs Hyperledger", + "content": "Comparing Ethereum and Hyperledger as blockchain development platforms. Which platform is suitable for different use cases?", "createdAt": { - "$date": "2024-06-14T21:55:23.577Z" + "$date": "2024-06-19T02:08:48.122Z" }, "updatedAt": { - "$date": "2026-02-13T18:40:16.572Z" + "$date": "2027-08-06T01:54:43.134Z" }, "_id": { - "$oid": "666cbc4b40af7b375e35345a" + "$oid": "66723db08f368f285d304f60" }, "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352eb5" + "$oid": "66723da68f368f285d304acb" }, "forum": { - "$oid": "666cbc4a40af7b375e352f5f" + "$oid": "66723dae8f368f285d304b93" }, - "title": "Remote Work: Challenges and Solutions", - "content": "Discussing the challenges faced while working remotely and sharing strategies to stay productive, maintain communication, and foster team collaboration.", + "title": "Software Development Methodologies: Agile vs Waterfall", + "content": "Comparing Agile and Waterfall methodologies for software development. Which approach suits your project and team dynamics?", "createdAt": { - "$date": "2024-06-14T21:55:23.577Z" + "$date": "2024-06-19T02:08:48.122Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.577Z" + "$date": "2024-10-05T05:55:28.594Z" }, "_id": { - "$oid": "666cbc4b40af7b375e35345b" + "$oid": "66723db08f368f285d304f61" }, "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352eba" + "$oid": "66723da68f368f285d304acd" }, "forum": { - "$oid": "666cbc4a40af7b375e352f5b" + "$oid": "66723dae8f368f285d304b95" }, - "title": "AI in Healthcare: Applications and Innovations", - "content": "Exploring AI applications and innovations in the healthcare industry. How is AI transforming patient care and medical research?", + "title": "How to Improve Code Review Process?", + "content": "Seeking advice on optimizing our team's code review process. What tools and practices do you use to ensure effective code reviews and maintain code quality?", "createdAt": { - "$date": "2024-06-14T21:55:23.577Z" + "$date": "2024-06-19T02:08:48.122Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.577Z" + "$date": "2024-06-19T02:08:48.122Z" }, "_id": { - "$oid": "666cbc4b40af7b375e35345c" + "$oid": "66723db08f368f285d304f62" }, "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ecd" + "$oid": "66723da68f368f285d304acd" }, "forum": { - "$oid": "666cbc4a40af7b375e352f56" + "$oid": "66723dae8f368f285d304b92" }, - "title": "Mobile App Development Trends for 2024", - "content": "Predicting and discussing emerging trends and technologies in mobile app development for the upcoming year. What trends are shaping the mobile app landscape?", - "createdAt": { - "$date": "2024-06-14T21:55:23.577Z" - }, - "updatedAt": { - "$date": "2027-08-22T11:25:13.498Z" - }, - "_id": { - "$oid": "666cbc4b40af7b375e35345d" - }, - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352ee7" - }, - "forum": { - "$oid": "666cbc4a40af7b375e352f5b" - }, - "title": "Full Stack Development: Best Practices", - "content": "Best practices, tools, and frameworks for mastering full-stack development. How do you balance frontend and backend development responsibilities?", + "title": "Open Source Projects: Contributions and Impact", + "content": "Discussing the impact of open-source projects on the tech industry and society. How can open-source initiatives drive innovation and collaboration?", "createdAt": { - "$date": "2024-06-14T21:55:23.578Z" + "$date": "2024-06-19T02:08:48.122Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.578Z" + "$date": "2024-07-10T05:52:14.542Z" }, "_id": { - "$oid": "666cbc4b40af7b375e35345e" + "$oid": "66723db08f368f285d304f63" }, "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ead" + "$oid": "66723da68f368f285d304ae8" }, "forum": { - "$oid": "666cbc4a40af7b375e352f5a" + "$oid": "66723dae8f368f285d304b95" }, - "title": "JavaScript Frameworks Comparison", - "content": "Comparing popular JavaScript frameworks like React, Angular, and Vue.js. Share your experiences, strengths, and weaknesses of each framework.", + "title": "AR/VR Development: Tools and Platforms", + "content": "Discussing tools, platforms, and development techniques for creating augmented reality (AR) and virtual reality (VR) applications.", "createdAt": { - "$date": "2024-06-14T21:55:23.578Z" + "$date": "2024-06-19T02:08:48.123Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.578Z" + "$date": "2024-06-19T02:08:48.123Z" }, "_id": { - "$oid": "666cbc4b40af7b375e35345f" + "$oid": "66723db08f368f285d304f64" }, "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ed3" + "$oid": "66723da68f368f285d304af5" }, "forum": { - "$oid": "666cbc4a40af7b375e352f5f" + "$oid": "66723dae8f368f285d304b95" }, - "title": "AI in Healthcare: Applications and Innovations", - "content": "Exploring AI applications and innovations in the healthcare industry. How is AI transforming patient care and medical research?", + "title": "Software Testing: Strategies and Automation", + "content": "Strategies, tools, and best practices for software testing and test automation. How do you ensure comprehensive test coverage and quality?", "createdAt": { - "$date": "2024-06-14T21:55:23.578Z" + "$date": "2024-06-19T02:08:48.123Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.578Z" + "$date": "2024-06-19T02:08:48.123Z" }, "_id": { - "$oid": "666cbc4b40af7b375e353460" + "$oid": "66723db08f368f285d304f65" }, "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ea6" + "$oid": "66723da68f368f285d304b2b" }, "forum": { - "$oid": "666cbc4a40af7b375e352f5a" + "$oid": "66723dae8f368f285d304b96" }, - "title": "Open Source Contributions: Getting Started", - "content": "Tips and advice for beginners on how to get started with contributing to open-source projects. What are the benefits of open-source contributions?", + "title": "How to Improve Code Review Process?", + "content": "Seeking advice on optimizing our team's code review process. What tools and practices do you use to ensure effective code reviews and maintain code quality?", "createdAt": { - "$date": "2024-06-14T21:55:23.578Z" + "$date": "2024-06-19T02:08:48.122Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.578Z" + "$date": "2028-01-01T09:49:13.737Z" }, "_id": { - "$oid": "666cbc4b40af7b375e353461" + "$oid": "66723db08f368f285d304f66" }, "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ed2" + "$oid": "66723da68f368f285d304b04" }, "forum": { - "$oid": "666cbc4a40af7b375e352f57" + "$oid": "66723dae8f368f285d304b95" }, - "title": "Version Control: Git Tips and Tricks", - "content": "Share your favorite Git commands, workflows, and best practices for version control. How do you handle branching, merging, and code collaboration?", + "title": "API Design: Best Practices and Guidelines", + "content": "Exploring best practices, design patterns, and guidelines for designing robust and developer-friendly APIs. What makes a good API?", "createdAt": { - "$date": "2024-06-14T21:55:23.578Z" + "$date": "2024-06-19T02:08:48.122Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.578Z" + "$date": "2026-08-10T21:00:20.579Z" }, "_id": { - "$oid": "666cbc4b40af7b375e353462" + "$oid": "66723db08f368f285d304f67" }, "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352eda" + "$oid": "66723da68f368f285d304b13" }, "forum": { - "$oid": "666cbc4a40af7b375e352f5b" + "$oid": "66723dae8f368f285d304b93" }, - "title": "Tips for Building Scalable Microservices", - "content": "Discussing architectural patterns, communication protocols, and deployment strategies for building scalable microservices architectures.", + "title": "Big Data Analytics: Tools and Techniques", + "content": "Exploring tools, frameworks, and techniques for analyzing and deriving insights from large datasets. How do you handle big data challenges?", "createdAt": { - "$date": "2024-06-14T21:55:23.577Z" + "$date": "2024-06-19T02:08:48.122Z" }, "updatedAt": { - "$date": "2025-07-08T19:39:08.384Z" + "$date": "2028-03-14T02:24:27.056Z" }, "_id": { - "$oid": "666cbc4b40af7b375e353463" + "$oid": "66723db08f368f285d304f68" }, "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352eda" + "$oid": "66723da68f368f285d304b09" }, "forum": { - "$oid": "666cbc4a40af7b375e352f5d" + "$oid": "66723dae8f368f285d304b94" }, - "title": "Data Privacy Regulations: Compliance Challenges", - "content": "Navigating data privacy regulations and compliance challenges in software development. How do you ensure GDPR and CCPA compliance?", + "title": "Mobile App Development Trends for 2024", + "content": "Predicting and discussing emerging trends and technologies in mobile app development for the upcoming year. What trends are shaping the mobile app landscape?", "createdAt": { - "$date": "2024-06-14T21:55:23.578Z" + "$date": "2024-06-19T02:08:48.122Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.578Z" + "$date": "2028-01-28T07:59:01.210Z" }, "_id": { - "$oid": "666cbc4b40af7b375e353464" + "$oid": "66723db08f368f285d304f69" }, "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352edb" + "$oid": "66723da68f368f285d304aef" }, "forum": { - "$oid": "666cbc4a40af7b375e352f5a" + "$oid": "66723dae8f368f285d304b95" }, - "title": "Continuous Integration and Deployment (CI/CD)", - "content": "Exploring CI/CD pipelines, best practices, and tools for automating software delivery processes. Share your experiences and tips for implementing CI/CD.", + "title": "AR/VR Development: Tools and Platforms", + "content": "Discussing tools, platforms, and development techniques for creating augmented reality (AR) and virtual reality (VR) applications.", "createdAt": { - "$date": "2024-06-14T21:55:23.577Z" + "$date": "2024-06-19T02:08:48.122Z" }, "updatedAt": { - "$date": "2024-06-21T16:09:36.115Z" + "$date": "2024-07-08T23:23:15.564Z" }, "_id": { - "$oid": "666cbc4b40af7b375e353465" + "$oid": "66723db08f368f285d304f6a" }, "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352ebf" + "$oid": "66723da68f368f285d304ae2" }, "forum": { - "$oid": "666cbc4a40af7b375e352f5c" + "$oid": "66723dae8f368f285d304b93" }, - "title": "Game Development: Engines, Tools, and Challenges", - "content": "Discussing game development engines, tools, and challenges. Share your experiences in creating interactive and immersive gaming experiences.", + "title": "Open Source Contributions: Getting Started", + "content": "Tips and advice for beginners on how to get started with contributing to open-source projects. What are the benefits of open-source contributions?", "createdAt": { - "$date": "2024-06-14T21:55:23.577Z" + "$date": "2024-06-19T02:08:48.122Z" }, "updatedAt": { - "$date": "2027-06-03T15:47:41.915Z" + "$date": "2026-01-10T02:11:44.673Z" }, "_id": { - "$oid": "666cbc4b40af7b375e353466" + "$oid": "66723db08f368f285d304f6b" }, "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352eef" + "$oid": "66723da68f368f285d304b21" }, "forum": { - "$oid": "666cbc4a40af7b375e352f5a" + "$oid": "66723dae8f368f285d304b93" }, - "title": "Introduction to Docker Containers", - "content": "New to Docker and containers? Let's discuss the basics, benefits, and practical applications of Docker in software development and deployment.", + "title": "Tech Startups: Lessons Learned and Tips", + "content": "Sharing lessons learned, success stories, and practical tips for launching and scaling tech startups. What challenges did you face?", "createdAt": { - "$date": "2024-06-14T21:55:23.578Z" + "$date": "2024-06-19T02:08:48.122Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.578Z" + "$date": "2026-07-11T23:25:49.039Z" }, "_id": { - "$oid": "666cbc4b40af7b375e353467" + "$oid": "66723db08f368f285d304f6c" }, "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352e8e" + "$oid": "66723da68f368f285d304ad5" }, "forum": { - "$oid": "666cbc4a40af7b375e352f5d" + "$oid": "66723dae8f368f285d304b96" }, "title": "Data Privacy Regulations: Compliance Challenges", "content": "Navigating data privacy regulations and compliance challenges in software development. How do you ensure GDPR and CCPA compliance?", "createdAt": { - "$date": "2024-06-14T21:55:23.577Z" - }, - "updatedAt": { - "$date": "2025-08-27T13:34:39.325Z" - }, - "_id": { - "$oid": "666cbc4b40af7b375e353468" - }, - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352eaa" - }, - "forum": { - "$oid": "666cbc4a40af7b375e352f5c" - }, - "title": "Tech Diversity and Inclusion: Initiatives and Impact", - "content": "Discussing initiatives and strategies for promoting diversity and inclusion in the tech industry. How can we create more inclusive workplaces?", - "createdAt": { - "$date": "2024-06-14T21:55:23.578Z" - }, - "updatedAt": { - "$date": "2024-06-14T21:55:23.578Z" - }, - "_id": { - "$oid": "666cbc4b40af7b375e353469" - }, - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352e99" - }, - "forum": { - "$oid": "666cbc4a40af7b375e352f5b" - }, - "title": "Cloud Native Applications: Architecture and Benefits", - "content": "Exploring the architecture and benefits of cloud-native applications. How do you design and deploy applications for cloud environments?", - "createdAt": { - "$date": "2024-06-14T21:55:23.577Z" - }, - "updatedAt": { - "$date": "2025-12-16T17:31:16.959Z" - }, - "_id": { - "$oid": "666cbc4b40af7b375e35346a" - }, - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352eca" - }, - "forum": { - "$oid": "666cbc4a40af7b375e352f59" - }, - "title": "Cloud Native Applications: Architecture and Benefits", - "content": "Exploring the architecture and benefits of cloud-native applications. How do you design and deploy applications for cloud environments?", - "createdAt": { - "$date": "2024-06-14T21:55:23.577Z" - }, - "updatedAt": { - "$date": "2026-07-23T06:34:10.278Z" - }, - "_id": { - "$oid": "666cbc4b40af7b375e35346b" - }, - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352ece" - }, - "forum": { - "$oid": "666cbc4a40af7b375e352f5e" - }, - "title": "Introduction to Docker Containers", - "content": "New to Docker and containers? Let's discuss the basics, benefits, and practical applications of Docker in software development and deployment.", - "createdAt": { - "$date": "2024-06-14T21:55:23.579Z" - }, - "updatedAt": { - "$date": "2024-06-14T21:55:23.579Z" - }, - "_id": { - "$oid": "666cbc4b40af7b375e35346c" - }, - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352ed4" - }, - "forum": { - "$oid": "666cbc4a40af7b375e352f57" - }, - "title": "Agile Development: Scrum vs Kanban", - "content": "Comparing Scrum and Kanban methodologies for Agile software development. Which approach works better for your team and why?", - "createdAt": { - "$date": "2024-06-14T21:55:23.577Z" - }, - "updatedAt": { - "$date": "2024-06-26T03:11:31.562Z" - }, - "_id": { - "$oid": "666cbc4b40af7b375e35346d" - }, - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352ee7" - }, - "forum": { - "$oid": "666cbc4a40af7b375e352f56" - }, - "title": "Cybersecurity Threats: Prevention and Response", - "content": "Discussing common cybersecurity threats and strategies for prevention and incident response. How do you secure your applications and data?", - "createdAt": { - "$date": "2024-06-14T21:55:23.579Z" - }, - "updatedAt": { - "$date": "2024-06-14T21:55:23.579Z" - }, - "_id": { - "$oid": "666cbc4b40af7b375e35346e" - }, - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352eda" - }, - "forum": { - "$oid": "666cbc4a40af7b375e352f5b" - }, - "title": "AI Ethics: Bias, Accountability, and Transparency", - "content": "Exploring ethical considerations in AI development, including bias mitigation, accountability frameworks, and transparency practices.", - "createdAt": { - "$date": "2024-06-14T21:55:23.577Z" - }, - "updatedAt": { - "$date": "2027-09-21T06:46:05.141Z" - }, - "_id": { - "$oid": "666cbc4b40af7b375e35346f" - }, - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352edf" - }, - "forum": { - "$oid": "666cbc4a40af7b375e352f5a" - }, - "title": "UX/UI Design Principles for Developers", - "content": "Exploring UX/UI design principles and best practices for developers. How can developers contribute to creating user-friendly and visually appealing interfaces?", - "createdAt": { - "$date": "2024-06-14T21:55:23.579Z" - }, - "updatedAt": { - "$date": "2024-06-14T21:55:23.579Z" - }, - "_id": { - "$oid": "666cbc4b40af7b375e353470" - }, - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352eb1" - }, - "forum": { - "$oid": "666cbc4a40af7b375e352f56" - }, - "title": "Python vs Java: Which is Better for Backend Development?", - "content": "Debating the pros and cons of Python and Java for backend development. Share your experiences and preferences in choosing a backend programming language.", - "createdAt": { - "$date": "2024-06-14T21:55:23.579Z" - }, - "updatedAt": { - "$date": "2024-06-14T21:55:23.579Z" - }, - "_id": { - "$oid": "666cbc4b40af7b375e353471" - }, - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352ea7" - }, - "forum": { - "$oid": "666cbc4a40af7b375e352f5e" - }, - "title": "Frontend Performance Optimization Techniques", - "content": "Exploring strategies and tools to optimize frontend performance. Share tips on reducing page load times, improving rendering efficiency, and optimizing assets.", - "createdAt": { - "$date": "2024-06-14T21:55:23.579Z" - }, - "updatedAt": { - "$date": "2024-06-14T21:55:23.579Z" - }, - "_id": { - "$oid": "666cbc4b40af7b375e353472" - }, - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352ed8" - }, - "forum": { - "$oid": "666cbc4a40af7b375e352f5b" - }, - "title": "Remote Work: Challenges and Solutions", - "content": "Discussing the challenges faced while working remotely and sharing strategies to stay productive, maintain communication, and foster team collaboration.", - "createdAt": { - "$date": "2024-06-14T21:55:23.579Z" - }, - "updatedAt": { - "$date": "2024-06-14T21:55:23.579Z" - }, - "_id": { - "$oid": "666cbc4b40af7b375e353473" - }, - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352eed" - }, - "forum": { - "$oid": "666cbc4a40af7b375e352f5d" - }, - "title": "Continuous Integration and Deployment (CI/CD)", - "content": "Exploring CI/CD pipelines, best practices, and tools for automating software delivery processes. Share your experiences and tips for implementing CI/CD.", - "createdAt": { - "$date": "2024-06-14T21:55:23.577Z" - }, - "updatedAt": { - "$date": "2026-01-25T14:37:46.226Z" - }, - "_id": { - "$oid": "666cbc4b40af7b375e353474" - }, - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352ead" - }, - "forum": { - "$oid": "666cbc4a40af7b375e352f5b" - }, - "title": "Interview Preparation Tips", - "content": "Preparing for software engineering interviews? Discussing strategies, common interview questions, and resources to ace technical interviews.", - "createdAt": { - "$date": "2024-06-14T21:55:23.579Z" - }, - "updatedAt": { - "$date": "2024-06-14T21:55:23.579Z" - }, - "_id": { - "$oid": "666cbc4b40af7b375e353475" - }, - "__v": 0 - }, - { - "user": { - "$oid": "666cbc4240af7b375e352eb0" - }, - "forum": { - "$oid": "666cbc4a40af7b375e352f5d" - }, - "title": "Version Control: Git Tips and Tricks", - "content": "Share your favorite Git commands, workflows, and best practices for version control. How do you handle branching, merging, and code collaboration?", - "createdAt": { - "$date": "2024-06-14T21:55:23.579Z" + "$date": "2024-06-19T02:08:48.123Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.579Z" + "$date": "2024-06-19T02:08:48.123Z" }, "_id": { - "$oid": "666cbc4b40af7b375e353476" + "$oid": "66723db08f368f285d304f6d" }, "__v": 0 }, { "user": { - "$oid": "666cbc4240af7b375e352e9d" + "$oid": "66723da68f368f285d304acd" }, "forum": { - "$oid": "666cbc4a40af7b375e352f59" + "$oid": "66723dae8f368f285d304b93" }, - "title": "Continuous Integration and Deployment (CI/CD)", - "content": "Exploring CI/CD pipelines, best practices, and tools for automating software delivery processes. Share your experiences and tips for implementing CI/CD.", + "title": "Backend Architecture Best Practices", + "content": "Discussing best practices for designing scalable and resilient backend architectures. How do you ensure high availability and fault tolerance?", "createdAt": { - "$date": "2024-06-14T21:55:23.579Z" + "$date": "2024-06-19T02:08:48.123Z" }, "updatedAt": { - "$date": "2024-06-14T21:55:23.579Z" + "$date": "2024-06-19T02:08:48.123Z" }, "_id": { - "$oid": "666cbc4b40af7b375e353477" + "$oid": "66723db08f368f285d304f6e" }, "__v": 0 } diff --git a/scripts/db/mongo-dev-init/MOCK_USERS.json b/scripts/db/mongo-dev-init/MOCK_USERS.json index ccc1c03f..3a7d9042 100644 --- a/scripts/db/mongo-dev-init/MOCK_USERS.json +++ b/scripts/db/mongo-dev-init/MOCK_USERS.json @@ -4,15 +4,83 @@ "lastName": "McTesterson", "email": "tester@codehammers.com", "profilePic": "https://www.codesmith.io/hubfs/Screen%20Shot%202024-06-10%20at%2010.46.24%20AM.png", - "password": "$2a$10$LGAtDH0sMsL39sZxWRN8r.X.//5/XBIirtADsSg9VLUciCxXhmtF.", + "password": "$2a$10$4nNlasDpS.OOjuQmjsvZc.oERB0Zn67que5rFmoimUztCuolpC8vK", "_id": { - "$oid": "666cbc4240af7b375e352e8c" + "$oid": "66723da68f368f285d304ac9" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.814Z" + "$date": "2024-06-19T02:08:38.547Z" }, "date": { - "$date": "2024-06-14T21:55:14.814Z" + "$date": "2024-06-19T02:08:38.547Z" + }, + "__v": 0 + }, + { + "firstName": "Jane", + "lastName": "Doe", + "email": "jane@codehammers.com", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$iz0QHjofc4RaXT5.NVPuvOvDfLFvQLoArMlo2Zceev8vguAUNQYfK", + "_id": { + "$oid": "66723da68f368f285d304aca" + }, + "lastVisit": { + "$date": "2024-06-19T02:08:38.547Z" + }, + "date": { + "$date": "2024-06-19T02:08:38.547Z" + }, + "__v": 0 + }, + { + "firstName": "John", + "lastName": "Dough", + "email": "john@codehammers.com", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$LsAaR7Pucw15tiDu5LkBJeYk6zIdcs.njyfuHaSKOs4xcDRkEBJJG", + "_id": { + "$oid": "66723da68f368f285d304acb" + }, + "lastVisit": { + "$date": "2024-06-19T02:08:38.547Z" + }, + "date": { + "$date": "2024-06-19T02:08:38.547Z" + }, + "__v": 0 + }, + { + "firstName": "Jaime", + "lastName": "Doh", + "email": "jaime@codehammers.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$HS9X5Q7FC2qOFMdeReqBuOysJ9T.BvMgYgFE2MNi87fCvLOEmsZP6", + "_id": { + "$oid": "66723da68f368f285d304acc" + }, + "lastVisit": { + "$date": "2024-06-19T02:08:38.547Z" + }, + "date": { + "$date": "2024-06-19T02:08:38.547Z" + }, + "__v": 0 + }, + { + "firstName": "Homer", + "lastName": "Simpson", + "email": "homer@donuts.com", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$q6827CzMYPN1A5neqtw9J.ALDZc3.kSPeo0gyyQMoKo5ZtQrU19mW", + "_id": { + "$oid": "66723da68f368f285d304acd" + }, + "lastVisit": { + "$date": "2024-06-19T02:08:38.547Z" + }, + "date": { + "$date": "2024-06-19T02:08:38.547Z" }, "__v": 0 }, @@ -20,16 +88,16 @@ "firstName": "Corine", "lastName": "Tugwell", "email": "ctugwell0@ovh.net", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$1J5Auw7T9lvyQPYVioyg.evlUYCl4WcFjtWnV0edl/Y1S0wcOBqse", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$DfbU8exBcJm7RHSESXKzPuDvmaKENYMSqaSasFZRnQHwZYpxqqfCa", "_id": { - "$oid": "666cbc4240af7b375e352e8d" + "$oid": "66723da68f368f285d304ace" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.814Z" + "$date": "2024-06-19T02:08:38.547Z" }, "date": { - "$date": "2024-06-14T21:55:14.814Z" + "$date": "2024-06-19T02:08:38.547Z" }, "__v": 0 }, @@ -37,16 +105,16 @@ "firstName": "Brody", "lastName": "Cumpton", "email": "bcumpton1@bluehost.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$6o4ORZkWxhHsTYKE9YrC.O98g.3mUig1vXiAuaNCgG26/uxDOzUnm", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$pG04PinN11RRJRzVZGZS1.xFkZKw5SzsEiwUMot4Xa6KU728G0ndC", "_id": { - "$oid": "666cbc4240af7b375e352e8e" + "$oid": "66723da68f368f285d304acf" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.814Z" + "$date": "2024-06-19T02:08:38.548Z" }, "date": { - "$date": "2024-06-14T21:55:14.814Z" + "$date": "2024-06-19T02:08:38.548Z" }, "__v": 0 }, @@ -54,16 +122,16 @@ "firstName": "Moselle", "lastName": "Duro", "email": "mduro2@technorati.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$PcaTMXZIGrv/xGSXKpqm4.NS.fWX3T1Xoqd2cIdD19AaHdC/y93s6", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$1lt3VNVar1ZlTgO6WDNJQOYsGC/7l2BJK1EPkYTglCntv7fQBxjPG", "_id": { - "$oid": "666cbc4240af7b375e352e8f" + "$oid": "66723da68f368f285d304ad0" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.814Z" + "$date": "2024-06-19T02:08:38.548Z" }, "date": { - "$date": "2024-06-14T21:55:14.814Z" + "$date": "2024-06-19T02:08:38.548Z" }, "__v": 0 }, @@ -71,16 +139,16 @@ "firstName": "Winifred", "lastName": "Carnelley", "email": "wcarnelley3@ucsd.edu", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$YQ.UDzA3hqof3EsgQSxjCuw81TMI9NIDNgqSheSfoWR16bLLx2wKu", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$MtHPd8jmKCOh3et/IqjmpeTxBt2nk1oII1axnxPj/3bnB4tGA3RN6", "_id": { - "$oid": "666cbc4240af7b375e352e90" + "$oid": "66723da68f368f285d304ad1" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.814Z" + "$date": "2024-06-19T02:08:38.548Z" }, "date": { - "$date": "2024-06-14T21:55:14.814Z" + "$date": "2024-06-19T02:08:38.548Z" }, "__v": 0 }, @@ -89,15 +157,15 @@ "lastName": "Truin", "email": "mtruin4@stumbleupon.com", "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$SZjCBgeo9g5WAKS/D7Tsputa7zptVXEPeCEWJzlIt/1UfNd7kuf2q", + "password": "$2a$10$Y2MqY7.kyXaanlUTcRuTC.JxbwFMYS7VfPwwNgPgiRX5/FoK0w1tG", "_id": { - "$oid": "666cbc4240af7b375e352e91" + "$oid": "66723da68f368f285d304ad2" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.814Z" + "$date": "2024-06-19T02:08:38.548Z" }, "date": { - "$date": "2024-06-14T21:55:14.814Z" + "$date": "2024-06-19T02:08:38.548Z" }, "__v": 0 }, @@ -105,16 +173,16 @@ "firstName": "Cally", "lastName": "Gisbey", "email": "cgisbey5@squarespace.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$zM5jjWMbyv7ac1vvnZ36Au83Mb.id4PEa6ZDGCvjChCpa2pYMTBKW", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$Qsrf1su8ae1iesBZbyI4kufkT9bh5MXOciQpIL8.SNy7mlZTl0ixG", "_id": { - "$oid": "666cbc4240af7b375e352e92" + "$oid": "66723da68f368f285d304ad3" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.815Z" + "$date": "2024-06-19T02:08:38.548Z" }, "date": { - "$date": "2024-06-14T21:55:14.815Z" + "$date": "2024-06-19T02:08:38.548Z" }, "__v": 0 }, @@ -122,33 +190,16 @@ "firstName": "Arlina", "lastName": "Moodie", "email": "amoodie6@twitpic.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$3TJx8Vf8MuIHeTdQS5nEyOKzZWRdhUe9wprygpoEJo4VfhE1aTS.i", - "_id": { - "$oid": "666cbc4240af7b375e352e93" - }, - "lastVisit": { - "$date": "2024-06-14T21:55:14.816Z" - }, - "date": { - "$date": "2024-06-14T21:55:14.816Z" - }, - "__v": 0 - }, - { - "firstName": "Phineas", - "lastName": "Coon", - "email": "pcoon7@hc360.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$3/zlx.qOE35vaw1GTHdgeuLgOrra/w5N46zUX.LCs.PylZt0j7hAC", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$ZD7Zc0s4PRmQNn./X1rmsO8kWhMfSKllUmjsbX5eSnKJjWVuMTIku", "_id": { - "$oid": "666cbc4240af7b375e352e94" + "$oid": "66723da68f368f285d304ad4" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.816Z" + "$date": "2024-06-19T02:08:38.548Z" }, "date": { - "$date": "2024-06-14T21:55:14.816Z" + "$date": "2024-06-19T02:08:38.548Z" }, "__v": 0 }, @@ -156,16 +207,16 @@ "firstName": "Shurlock", "lastName": "Tytcomb", "email": "stytcomb8@google.it", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$A9z2WZIaKLKq2DV5AigwBO9ArA2dg27a2AmqIkx/g960OQbNgfTXC", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$MNWFMiJ2.3YHYzAk90uf.eiNPvFDgeOVX7sfT3E8tIv2l1wNSwRvK", "_id": { - "$oid": "666cbc4240af7b375e352e95" + "$oid": "66723da68f368f285d304ad5" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.816Z" + "$date": "2024-06-19T02:08:38.548Z" }, "date": { - "$date": "2024-06-14T21:55:14.816Z" + "$date": "2024-06-19T02:08:38.548Z" }, "__v": 0 }, @@ -173,16 +224,16 @@ "firstName": "Ermina", "lastName": "Guyton", "email": "eguyton9@blog.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$fB2fhuWHB9dtOQg/qtRbEuvYHAFOuNisLY.59BANQrzQjttu/pPsa", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$bcz5rW0VlqFn4tElK1.oUeSaPAlDezYkMBblrc7/KUTsh.WDAZGd.", "_id": { - "$oid": "666cbc4240af7b375e352e96" + "$oid": "66723da68f368f285d304ad6" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.816Z" + "$date": "2024-06-19T02:08:38.548Z" }, "date": { - "$date": "2024-06-14T21:55:14.816Z" + "$date": "2024-06-19T02:08:38.548Z" }, "__v": 0 }, @@ -190,16 +241,16 @@ "firstName": "Shelton", "lastName": "Halwood", "email": "shalwooda@sciencedirect.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$DdlT.vrb1jYq4ZXXz89bKOF0FxaW10frAPisliDlEORGArhlHkcaW", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$3QvVkpEAA5w6Tg.u6nASKee9rDuF4ZttyGQGot4Apcl39Irt4LXCS", "_id": { - "$oid": "666cbc4240af7b375e352e97" + "$oid": "66723da68f368f285d304ad7" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.816Z" + "$date": "2024-06-19T02:08:38.548Z" }, "date": { - "$date": "2024-06-14T21:55:14.816Z" + "$date": "2024-06-19T02:08:38.548Z" }, "__v": 0 }, @@ -207,16 +258,16 @@ "firstName": "Nigel", "lastName": "Clemenzo", "email": "nclemenzob@fotki.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$lSwh8PUA9o8rIMvz.15dmuXkXy9yxsYRqajLuhg7EOrdWspj8P.pi", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$Er.qW3bucAa51lUS0cHnZOqQ96nqz6tRyKA39.AaDxplQpDHysJCy", "_id": { - "$oid": "666cbc4240af7b375e352e98" + "$oid": "66723da68f368f285d304ad8" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.816Z" + "$date": "2024-06-19T02:08:38.548Z" }, "date": { - "$date": "2024-06-14T21:55:14.816Z" + "$date": "2024-06-19T02:08:38.548Z" }, "__v": 0 }, @@ -224,16 +275,16 @@ "firstName": "Colver", "lastName": "Oswell", "email": "coswellc@wsj.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$rDAz.hU0uOPegHXoKIZ/Cufpq5bDNWBffvCuvwe7Sb8KA/phAe5Be", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$OgQLHcfNLT.atUxtwljjCOyhqwD77ugoQ.XKoMqszDuyNcXe5qRgq", "_id": { - "$oid": "666cbc4240af7b375e352e99" + "$oid": "66723da68f368f285d304ad9" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.816Z" + "$date": "2024-06-19T02:08:38.548Z" }, "date": { - "$date": "2024-06-14T21:55:14.816Z" + "$date": "2024-06-19T02:08:38.548Z" }, "__v": 0 }, @@ -241,16 +292,16 @@ "firstName": "Saundra", "lastName": "Normabell", "email": "snormabelld@businessinsider.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$WEvrWZBqVUHB87vE3LLwiuwBHzSTcvPXdvo3o3yHsdG.OZqcc6X66", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$37E/UShb1BFgeFF/cyoj6ujh3FKrjIhxSyeIGB9qknzs9wT4GxLce", "_id": { - "$oid": "666cbc4240af7b375e352e9a" + "$oid": "66723da68f368f285d304ada" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.816Z" + "$date": "2024-06-19T02:08:38.548Z" }, "date": { - "$date": "2024-06-14T21:55:14.816Z" + "$date": "2024-06-19T02:08:38.548Z" }, "__v": 0 }, @@ -258,16 +309,16 @@ "firstName": "Grant", "lastName": "Chasney", "email": "gchasneye@mediafire.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$ozCQWU8xzusdEyhhLUU4S.43OQD8IDNdM/sanwGsmmfO0GkHLVUoe", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$IPScRe7qPTk5oVXiOycspucTcCWpy0va/iSOncyylhLQk5L/4B1j.", "_id": { - "$oid": "666cbc4240af7b375e352e9b" + "$oid": "66723da68f368f285d304adb" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.816Z" + "$date": "2024-06-19T02:08:38.548Z" }, "date": { - "$date": "2024-06-14T21:55:14.816Z" + "$date": "2024-06-19T02:08:38.548Z" }, "__v": 0 }, @@ -275,16 +326,16 @@ "firstName": "Franni", "lastName": "Chance", "email": "fchancef@ted.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$8phywKQRtCOHk51bJEXauOv4r/vE1Cv5HQCqwRlZD2pM4PCQMvxZ6", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$iZlarUiQrzxZaOvqOeU.SuIkqSRsM/tGvKBpPsazmf.vcBTVPCRF.", "_id": { - "$oid": "666cbc4240af7b375e352e9c" + "$oid": "66723da68f368f285d304adc" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.817Z" + "$date": "2024-06-19T02:08:38.548Z" }, "date": { - "$date": "2024-06-14T21:55:14.817Z" + "$date": "2024-06-19T02:08:38.548Z" }, "__v": 0 }, @@ -292,16 +343,16 @@ "firstName": "Clarance", "lastName": "Meecher", "email": "cmeecherg@addthis.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$FsbP6Ou/xBF5ceaEiWRBI.QVCfo7hV81cxuHETIkCtIhaPrCJH47G", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$qexLI5wTXw1HIBJ0.TYbBOTKhq4GQQD0psaAn9kysPlFu9uLFwFmG", "_id": { - "$oid": "666cbc4240af7b375e352e9d" + "$oid": "66723da68f368f285d304add" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.817Z" + "$date": "2024-06-19T02:08:38.548Z" }, "date": { - "$date": "2024-06-14T21:55:14.817Z" + "$date": "2024-06-19T02:08:38.548Z" }, "__v": 0 }, @@ -309,16 +360,16 @@ "firstName": "Katharine", "lastName": "Lancett", "email": "klancetth@sfgate.com", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$HetLY25wIW3Ug0hU/GUukOzoxILSvZv3QPzNiiMjL172FHLin9iqy", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$1NOV75rYeIdK2Ll5HFSl/egyxHMUWI0EEFWVG0eDlFrCo0950948e", "_id": { - "$oid": "666cbc4240af7b375e352e9e" + "$oid": "66723da68f368f285d304ade" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.817Z" + "$date": "2024-06-19T02:08:38.549Z" }, "date": { - "$date": "2024-06-14T21:55:14.817Z" + "$date": "2024-06-19T02:08:38.549Z" }, "__v": 0 }, @@ -326,16 +377,16 @@ "firstName": "Margaret", "lastName": "Dubber", "email": "mdubberi@dropbox.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$xmUK5vQJkDoSWj59XDHB8e3yXiBZYZ4PGwV6ZfWsWWy.7nLuJL9iC", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$cvSwbRvPXk/NcSbqkoGzIOiQAh8kr7zlY92QdNk5cuQfzgd3wE9Oi", "_id": { - "$oid": "666cbc4240af7b375e352e9f" + "$oid": "66723da68f368f285d304adf" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.817Z" + "$date": "2024-06-19T02:08:38.549Z" }, "date": { - "$date": "2024-06-14T21:55:14.817Z" + "$date": "2024-06-19T02:08:38.549Z" }, "__v": 0 }, @@ -343,16 +394,16 @@ "firstName": "Addy", "lastName": "Fass", "email": "afassj@vistaprint.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$IcZvqC.d4vyEKh6pvXP9ZugWzdT4Mv.50YDgpS9Seh0RanShwYm7m", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$xqUI2OzQApuklpM8ZbqVSe7EcROwEQF5fSVjwbarcCeZKm3Fd6Ed6", "_id": { - "$oid": "666cbc4240af7b375e352ea0" + "$oid": "66723da68f368f285d304ae0" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.817Z" + "$date": "2024-06-19T02:08:38.549Z" }, "date": { - "$date": "2024-06-14T21:55:14.817Z" + "$date": "2024-06-19T02:08:38.549Z" }, "__v": 0 }, @@ -361,15 +412,15 @@ "lastName": "Puckinghorne", "email": "spuckinghornek@topsy.com", "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$fVUXGZJ2k6nO4gKYVKdutOPnogQZX8O5UQVZ2AeGBYVxKxIg9OS72", + "password": "$2a$10$25VrUZ7RvUV21MLputuMJuV0DOZvGBheSDe35M6jqeiBTanX6Wzai", "_id": { - "$oid": "666cbc4240af7b375e352ea1" + "$oid": "66723da68f368f285d304ae1" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.817Z" + "$date": "2024-06-19T02:08:38.549Z" }, "date": { - "$date": "2024-06-14T21:55:14.817Z" + "$date": "2024-06-19T02:08:38.549Z" }, "__v": 0 }, @@ -377,16 +428,16 @@ "firstName": "Xena", "lastName": "Tomczynski", "email": "xtomczynskil@ted.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$5wT1KtnpMo/cjCs6jT/8SO3MrCTGHgqyiyxFFZtlJCfe9hK.Uk2a.", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$rd.p9NsE83xR5p1rI9Stvu/UeZp6Aj5CE6bnpYA7dZ8oNxbm1pbFa", "_id": { - "$oid": "666cbc4240af7b375e352ea2" + "$oid": "66723da68f368f285d304ae2" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.817Z" + "$date": "2024-06-19T02:08:38.549Z" }, "date": { - "$date": "2024-06-14T21:55:14.817Z" + "$date": "2024-06-19T02:08:38.549Z" }, "__v": 0 }, @@ -394,16 +445,16 @@ "firstName": "Harmonie", "lastName": "Karpinski", "email": "hkarpinskim@g.co", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$b/ZDg7VnrfFk25lSbVg7Keic/IT8KoVxuYoc4e9D6B7OrJOYExnUa", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$VDYjLcTNDotJitplB5.k3ewhW5VqCj.FHHf14A.Bv3QJVd/pPJslu", "_id": { - "$oid": "666cbc4240af7b375e352ea3" + "$oid": "66723da68f368f285d304ae3" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.817Z" + "$date": "2024-06-19T02:08:38.549Z" }, "date": { - "$date": "2024-06-14T21:55:14.817Z" + "$date": "2024-06-19T02:08:38.549Z" }, "__v": 0 }, @@ -411,16 +462,16 @@ "firstName": "Marielle", "lastName": "Crocket", "email": "mcrocketn@craigslist.org", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$FhLTlKA/gn5bq3ZnDk0NweCicgxQwdOQTgsUG8CisnvlwEkan1xK2", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$szoDjGAzB3I0VcMZpZrL1OtKcR4vKD42JobyfkDBO46tdnzps43s2", "_id": { - "$oid": "666cbc4240af7b375e352ea4" + "$oid": "66723da68f368f285d304ae4" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.817Z" + "$date": "2024-06-19T02:08:38.549Z" }, "date": { - "$date": "2024-06-14T21:55:14.817Z" + "$date": "2024-06-19T02:08:38.549Z" }, "__v": 0 }, @@ -428,16 +479,16 @@ "firstName": "Ulrick", "lastName": "Blasing", "email": "ublasingo@yahoo.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$CSfZA37qSE5kxqT6nNz9iehYBCwQ/c5Bv1Foaz0.oHz88pDCaZJxu", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$O6RBdgXvl29lgD0rYjRxxuin75uwR2iVQoia6DEWAz6czKTb7Onqq", "_id": { - "$oid": "666cbc4240af7b375e352ea5" + "$oid": "66723da68f368f285d304ae5" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.817Z" + "$date": "2024-06-19T02:08:38.549Z" }, "date": { - "$date": "2024-06-14T21:55:14.817Z" + "$date": "2024-06-19T02:08:38.549Z" }, "__v": 0 }, @@ -445,16 +496,16 @@ "firstName": "Cheri", "lastName": "Danielsson", "email": "cdanielssonp@example.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$48DeViF74D44GIXuv9pGROtbKzQMbkF/YNjDpyJp47MnOszWMejl2", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$1swC9sdzhCcY7Qsbc6tr3erVcSozlOxuf3esahaTlaB2.6.JqOkaC", "_id": { - "$oid": "666cbc4240af7b375e352ea6" + "$oid": "66723da68f368f285d304ae6" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.817Z" + "$date": "2024-06-19T02:08:38.550Z" }, "date": { - "$date": "2024-06-14T21:55:14.817Z" + "$date": "2024-06-19T02:08:38.550Z" }, "__v": 0 }, @@ -462,16 +513,16 @@ "firstName": "Durand", "lastName": "Joron", "email": "djoronq@google.cn", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$Mzy/j1JW4GxRuh4t12Qqu.pYW13xosgbFyqMGcUdD4ivtl8i9/83C", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$Ou.5wePG.7qP9EHjNjmu.e.mhkWU3an2eoa5vN4Lk23m2wn5tk5G.", "_id": { - "$oid": "666cbc4240af7b375e352ea7" + "$oid": "66723da68f368f285d304ae7" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.818Z" + "$date": "2024-06-19T02:08:38.550Z" }, "date": { - "$date": "2024-06-14T21:55:14.818Z" + "$date": "2024-06-19T02:08:38.550Z" }, "__v": 0 }, @@ -479,16 +530,16 @@ "firstName": "Kristien", "lastName": "Burgett", "email": "kburgettr@kickstarter.com", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$d8KAoay31bxxItexKfiw3eqSxx3GmM0btDH9IbElEHtik/wYSH7fW", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$I/wMtszmY0sJD/jNVnhtC.altvjPivUT5ogqPWHAxUB8zi2VJ2oLO", "_id": { - "$oid": "666cbc4240af7b375e352ea8" + "$oid": "66723da68f368f285d304ae8" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.818Z" + "$date": "2024-06-19T02:08:38.550Z" }, "date": { - "$date": "2024-06-14T21:55:14.818Z" + "$date": "2024-06-19T02:08:38.550Z" }, "__v": 0 }, @@ -496,16 +547,16 @@ "firstName": "Kaia", "lastName": "Fassmann", "email": "kfassmanns@ted.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$G0s53o4j4Tl9ssfj/msbnus63YrSw0/RMNbxGA.jdL6cbgWZAkSpa", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$pLWSWJ7emwwD1B1To1uLaOmyRF9P7tDCUtrrB.Vz.36DThmD1xNwe", "_id": { - "$oid": "666cbc4240af7b375e352ea9" + "$oid": "66723da68f368f285d304ae9" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.818Z" + "$date": "2024-06-19T02:08:38.550Z" }, "date": { - "$date": "2024-06-14T21:55:14.818Z" + "$date": "2024-06-19T02:08:38.550Z" }, "__v": 0 }, @@ -513,16 +564,16 @@ "firstName": "Lockwood", "lastName": "Moxham", "email": "lmoxhamt@wikia.com", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$yfL/9JMjRTVDXODTFBlp/.vVYj.hzAZFbg1lfdzylZ/thruZnqwsO", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$L800ns2A9G0yORqTPqcVG.Si8hhRddmmn/EMcVVwtLU9VEH2tL6rK", "_id": { - "$oid": "666cbc4240af7b375e352eaa" + "$oid": "66723da68f368f285d304aea" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.818Z" + "$date": "2024-06-19T02:08:38.550Z" }, "date": { - "$date": "2024-06-14T21:55:14.818Z" + "$date": "2024-06-19T02:08:38.550Z" }, "__v": 0 }, @@ -531,15 +582,15 @@ "lastName": "Sugden", "email": "tsugdenu@npr.org", "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$.bJNvfcffd.mo1RgF28DcOqMehZg4QAYL5eqS.772TU0ZOnGqWRu2", + "password": "$2a$10$ZJTC1RBKBeEYOibhVaGwtug46CMhoe.S0sBqiXhnmFMJhPSK9U.FS", "_id": { - "$oid": "666cbc4240af7b375e352eab" + "$oid": "66723da68f368f285d304aeb" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.818Z" + "$date": "2024-06-19T02:08:38.550Z" }, "date": { - "$date": "2024-06-14T21:55:14.818Z" + "$date": "2024-06-19T02:08:38.550Z" }, "__v": 0 }, @@ -547,16 +598,16 @@ "firstName": "Rea", "lastName": "Jeremiah", "email": "rjeremiahv@wikispaces.com", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$CWPRLDiGz4wJO/DZ6i4eEeVU1QCtejA0x.jMWVZEE4XzWr6IDd.by", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$q4iYpCBGSKt7shUf7PXj0u8buO6.xLqaG/iicOXUqeKvtcwOnHwdG", "_id": { - "$oid": "666cbc4240af7b375e352eac" + "$oid": "66723da68f368f285d304aec" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.818Z" + "$date": "2024-06-19T02:08:38.550Z" }, "date": { - "$date": "2024-06-14T21:55:14.818Z" + "$date": "2024-06-19T02:08:38.550Z" }, "__v": 0 }, @@ -564,16 +615,16 @@ "firstName": "Cassie", "lastName": "Meadows", "email": "cmeadowsw@smugmug.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$/p/C1VSWuIxFTt.G4TMOQukAiODsxTX.6dcHd/3Bsrm78MQXX8Z3S", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$Aq2.S4y1w4ziMyA5cts1wu3n26guigf9CuiaPDNsGr7gObJGz7/Wq", "_id": { - "$oid": "666cbc4240af7b375e352ead" + "$oid": "66723da68f368f285d304aed" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.818Z" + "$date": "2024-06-19T02:08:38.550Z" }, "date": { - "$date": "2024-06-14T21:55:14.818Z" + "$date": "2024-06-19T02:08:38.550Z" }, "__v": 0 }, @@ -582,15 +633,15 @@ "lastName": "Bastide", "email": "kbastidex@latimes.com", "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$laT3bZymMypGb8HVox93mOjj9/FVYtFdVdX1HtzBnrMrKGt4i5w7i", + "password": "$2a$10$DrV6O71n1sKT3DDWH7OfIeHqzNgLG3lNjo6iE9lpLNwn0lSkTC0Za", "_id": { - "$oid": "666cbc4240af7b375e352eae" + "$oid": "66723da68f368f285d304aee" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.818Z" + "$date": "2024-06-19T02:08:38.551Z" }, "date": { - "$date": "2024-06-14T21:55:14.818Z" + "$date": "2024-06-19T02:08:38.551Z" }, "__v": 0 }, @@ -598,16 +649,16 @@ "firstName": "Thurston", "lastName": "Speechly", "email": "tspeechlyy@plala.or.jp", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$YBz/CMTpSX6sdHNmO5LWkuubDmBskhpvXOGHLrk1Y.DD8woJSKYTS", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$O2NpWEyAOyMXqt1D.uSLS.MUzkUpCupBYmo4wm9oe.ekgMg5GdLIa", "_id": { - "$oid": "666cbc4240af7b375e352eaf" + "$oid": "66723da68f368f285d304aef" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.818Z" + "$date": "2024-06-19T02:08:38.551Z" }, "date": { - "$date": "2024-06-14T21:55:14.818Z" + "$date": "2024-06-19T02:08:38.551Z" }, "__v": 0 }, @@ -615,16 +666,16 @@ "firstName": "Silas", "lastName": "Reyes", "email": "sreyesz@google.co.jp", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$r/9sfarx3gl.wO/lhoVXV.EK3fOVbnZWULpHVrZM9GcTNUCjIKglG", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$HS.i2mZhp36AwhcXEJEQo.Eyw8QnFM7GJWyxoz1vQP7m0srP64u/u", "_id": { - "$oid": "666cbc4240af7b375e352eb0" + "$oid": "66723da68f368f285d304af0" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.818Z" + "$date": "2024-06-19T02:08:38.551Z" }, "date": { - "$date": "2024-06-14T21:55:14.818Z" + "$date": "2024-06-19T02:08:38.551Z" }, "__v": 0 }, @@ -632,16 +683,16 @@ "firstName": "Marley", "lastName": "Boshard", "email": "mboshard10@tiny.cc", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$A4S1fles.WiqBxpr3aC1iuzI2rZbVIUPQj6fBK9ic9n0vdbgMuShG", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$.DBeQx0oFcWDrGTb1YIv5OOT3cjfxtBnFTvuI4BXzdbu7cdlh4nqi", "_id": { - "$oid": "666cbc4240af7b375e352eb1" + "$oid": "66723da68f368f285d304af1" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.818Z" + "$date": "2024-06-19T02:08:38.551Z" }, "date": { - "$date": "2024-06-14T21:55:14.818Z" + "$date": "2024-06-19T02:08:38.551Z" }, "__v": 0 }, @@ -649,33 +700,16 @@ "firstName": "Eb", "lastName": "Dargie", "email": "edargie11@artisteer.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$bHC8dHQhkhl981oqptd.MujxW/WKQ3QDm90TlsHKsyGCpOa5SK32C", - "_id": { - "$oid": "666cbc4240af7b375e352eb2" - }, - "lastVisit": { - "$date": "2024-06-14T21:55:14.819Z" - }, - "date": { - "$date": "2024-06-14T21:55:14.819Z" - }, - "__v": 0 - }, - { - "firstName": "Porter", - "lastName": "Paladini", - "email": "ppaladini12@deliciousdays.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$s5eA0BRqOKRmgt9BH5qWOunu72KGHYZg2ksl0zpizrv3SMubPttsy", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$gPZGdcyOxB5oFXpC/omEEeuCM3JsUfhFJVdn6EpDXhvbZDBfQfZym", "_id": { - "$oid": "666cbc4240af7b375e352eb3" + "$oid": "66723da68f368f285d304af2" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.819Z" + "$date": "2024-06-19T02:08:38.551Z" }, "date": { - "$date": "2024-06-14T21:55:14.819Z" + "$date": "2024-06-19T02:08:38.551Z" }, "__v": 0 }, @@ -683,16 +717,16 @@ "firstName": "Dian", "lastName": "Dackombe", "email": "ddackombe13@ihg.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$sl4GZZ1Jnapjx5qEvFxlAubQvzxXwjXpTeTJ51F25ERUdmX5Avln2", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$5WAnVttnwZ2YzGN46yHxNeHbKZGw.v7dQPNq70YL8zGA9WFY0u7bq", "_id": { - "$oid": "666cbc4240af7b375e352eb4" + "$oid": "66723da68f368f285d304af3" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.819Z" + "$date": "2024-06-19T02:08:38.551Z" }, "date": { - "$date": "2024-06-14T21:55:14.819Z" + "$date": "2024-06-19T02:08:38.551Z" }, "__v": 0 }, @@ -701,15 +735,15 @@ "lastName": "Scrafton", "email": "fscrafton14@posterous.com", "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$N9SKyfuQe9N2psum1w0ipOAwdMKHbItVjpXNpnP522mNU9MkwBd.2", + "password": "$2a$10$6e1MZoxtgtb6a/bxxSF2seSOqaQtKNPE.L3Y60dHlBXvrRn5Rugue", "_id": { - "$oid": "666cbc4240af7b375e352eb5" + "$oid": "66723da68f368f285d304af4" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.819Z" + "$date": "2024-06-19T02:08:38.551Z" }, "date": { - "$date": "2024-06-14T21:55:14.819Z" + "$date": "2024-06-19T02:08:38.551Z" }, "__v": 0 }, @@ -717,16 +751,16 @@ "firstName": "Tabbitha", "lastName": "Jolliffe", "email": "tjolliffe15@bbb.org", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$GJ80ozXtDO4ZRMCXbvS7xepODBqeHUmkDqrXjjXS22d7y21QRbAo.", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$dDWBGqW3SkiTobdhxI88d.E0zMjREaflTFDUB4Mz1ppTq/lQzYsqW", "_id": { - "$oid": "666cbc4240af7b375e352eb6" + "$oid": "66723da68f368f285d304af5" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.819Z" + "$date": "2024-06-19T02:08:38.551Z" }, "date": { - "$date": "2024-06-14T21:55:14.819Z" + "$date": "2024-06-19T02:08:38.551Z" }, "__v": 0 }, @@ -735,15 +769,15 @@ "lastName": "Ganley", "email": "jganley16@geocities.jp", "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$IBd.7zdM4qin53dYNLofAO.O.DoEizmSldWjS1bz3Cd59MVX7TMOO", + "password": "$2a$10$K47WeY.F8cn2ouzh.IWRreOmxr93u..YfOj0fBkGN/ieitwpYYbfW", "_id": { - "$oid": "666cbc4240af7b375e352eb7" + "$oid": "66723da68f368f285d304af6" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.819Z" + "$date": "2024-06-19T02:08:38.551Z" }, "date": { - "$date": "2024-06-14T21:55:14.819Z" + "$date": "2024-06-19T02:08:38.551Z" }, "__v": 0 }, @@ -751,16 +785,16 @@ "firstName": "Annora", "lastName": "Brigge", "email": "abrigge17@joomla.org", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$68aVxI5.V.s5uRHJBb9xMe7x2cGFav39MJqLgJAj4dB8afIUlKZE6", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$VniUHaN.H71tmAznnHK1yOK/6RDaSScCE.OYTSA6moGm0SGQaeSyK", "_id": { - "$oid": "666cbc4240af7b375e352eb8" + "$oid": "66723da68f368f285d304af7" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.819Z" + "$date": "2024-06-19T02:08:38.551Z" }, "date": { - "$date": "2024-06-14T21:55:14.819Z" + "$date": "2024-06-19T02:08:38.551Z" }, "__v": 0 }, @@ -768,16 +802,16 @@ "firstName": "Bethanne", "lastName": "Osband", "email": "bosband18@blinklist.com", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$8N11/yoCP9kXJ.RQ6Pk08erfs4zBrPVq81W72ZTmAhdEuEquvUkfO", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$MTdJQu1YJ884LrW23dNDM.nsdPwRJDnNQdlvVHXPCH90OjM6RB/.W", "_id": { - "$oid": "666cbc4240af7b375e352eb9" + "$oid": "66723da68f368f285d304af8" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.819Z" + "$date": "2024-06-19T02:08:38.551Z" }, "date": { - "$date": "2024-06-14T21:55:14.819Z" + "$date": "2024-06-19T02:08:38.551Z" }, "__v": 0 }, @@ -785,16 +819,16 @@ "firstName": "Hedda", "lastName": "Tallquist", "email": "htallquist19@cisco.com", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$.7.cCEeH4A9eGNZfuGuKlePRXiQSd7V5vsVqdewylsWzM2FdHYAWO", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$Agi4IIjyyPYdRMZ2BmitAu6Gt/LRvu1g0TedS8WZCUpulRVmNWxIS", "_id": { - "$oid": "666cbc4240af7b375e352eba" + "$oid": "66723da68f368f285d304af9" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.819Z" + "$date": "2024-06-19T02:08:38.552Z" }, "date": { - "$date": "2024-06-14T21:55:14.819Z" + "$date": "2024-06-19T02:08:38.552Z" }, "__v": 0 }, @@ -802,16 +836,16 @@ "firstName": "Lynelle", "lastName": "Grosvener", "email": "lgrosvener1a@google.cn", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$CFIlmDkzwrui/0Fq4JpqvuxtBR7XW5ifu1Ngd39PiyVa2Dq0wRvCy", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$oiCS8rXb8EQnMb4Q4d4pjeP5enSHHKxmV7lqaKnv2DoQ2s3NMPiAu", "_id": { - "$oid": "666cbc4240af7b375e352ebb" + "$oid": "66723da68f368f285d304afa" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.819Z" + "$date": "2024-06-19T02:08:38.552Z" }, "date": { - "$date": "2024-06-14T21:55:14.819Z" + "$date": "2024-06-19T02:08:38.552Z" }, "__v": 0 }, @@ -819,16 +853,16 @@ "firstName": "Lenee", "lastName": "Pethybridge", "email": "lpethybridge1b@chron.com", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$0QUGQWlGq43MmEnoD.Fy9ObWvILMZ9BnBAEeMTjiFcdhbzulz9mjO", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$Vo.JXgiGDLAlFdkl6VW.AugjAjauLpsobZTXaGP75Cie5CflNGBLe", "_id": { - "$oid": "666cbc4240af7b375e352ebc" + "$oid": "66723da68f368f285d304afb" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.819Z" + "$date": "2024-06-19T02:08:38.552Z" }, "date": { - "$date": "2024-06-14T21:55:14.819Z" + "$date": "2024-06-19T02:08:38.552Z" }, "__v": 0 }, @@ -836,16 +870,16 @@ "firstName": "Ninnette", "lastName": "Maden", "email": "nmaden1c@sciencedirect.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$a/7KLuiSYX4K/d56mhQzlewAZqc2PEg2Kw9dFL2xD/wJeRq2sOJtW", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$w3vbZZ6zZmKHrEMGe4z7MeLU0NVL3fpiLae51NL18cSpiVeiMFEui", "_id": { - "$oid": "666cbc4240af7b375e352ebd" + "$oid": "66723da68f368f285d304afc" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.820Z" + "$date": "2024-06-19T02:08:38.552Z" }, "date": { - "$date": "2024-06-14T21:55:14.820Z" + "$date": "2024-06-19T02:08:38.552Z" }, "__v": 0 }, @@ -854,15 +888,15 @@ "lastName": "Catenot", "email": "jcatenot1d@oakley.com", "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$j4PDaLe8LfvcnZWZvBvI8uwqAyJ2g0PjuKVIWRwYBRXdusHk/CVDe", + "password": "$2a$10$zzF6skhCWFitnOM5CwDeQu7fOfT/eE3QfvwuQkA5lEqajZfT.VlZC", "_id": { - "$oid": "666cbc4240af7b375e352ebe" + "$oid": "66723da68f368f285d304afd" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.820Z" + "$date": "2024-06-19T02:08:38.552Z" }, "date": { - "$date": "2024-06-14T21:55:14.820Z" + "$date": "2024-06-19T02:08:38.552Z" }, "__v": 0 }, @@ -870,16 +904,16 @@ "firstName": "Marabel", "lastName": "Puleston", "email": "mpuleston1e@utexas.edu", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$c6S5H.CapsZ12fQOdZunQOygCGKCtox8whfTmSXkU/p43vZkqG/y.", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$UveL.ybwHE3SUQo2ACqdPeqyutcjvbTIBAH1ZQ/siyxOHIZm0ylEy", "_id": { - "$oid": "666cbc4240af7b375e352ebf" + "$oid": "66723da68f368f285d304afe" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.820Z" + "$date": "2024-06-19T02:08:38.552Z" }, "date": { - "$date": "2024-06-14T21:55:14.820Z" + "$date": "2024-06-19T02:08:38.552Z" }, "__v": 0 }, @@ -887,16 +921,16 @@ "firstName": "Bryn", "lastName": "Arias", "email": "barias1f@flavors.me", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$bhNymgCNR.mZN/tk5adUUOPORCjMX7oxb1LEYGHvvERHm9qtAeI4W", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$VMgAXqWSw0wO4vFqaPZ0Yuhvka2ikaa2ABdpLX9LGxbjhnuzBTIJG", "_id": { - "$oid": "666cbc4240af7b375e352ec0" + "$oid": "66723da68f368f285d304aff" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.820Z" + "$date": "2024-06-19T02:08:38.552Z" }, "date": { - "$date": "2024-06-14T21:55:14.820Z" + "$date": "2024-06-19T02:08:38.552Z" }, "__v": 0 }, @@ -904,16 +938,16 @@ "firstName": "Arni", "lastName": "Jertz", "email": "ajertz1g@tuttocitta.it", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$.dTBEny4e30LRPW7j9Yon.ErDyHn9I.wtD7KL5aQhVzZUsW6j1ZuO", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$QYbOxRESSxpJn4dO4sNeLuQshN1.EC4CMDGDMKyUI4G2X.nQWcP0K", "_id": { - "$oid": "666cbc4240af7b375e352ec1" + "$oid": "66723da68f368f285d304b00" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.820Z" + "$date": "2024-06-19T02:08:38.552Z" }, "date": { - "$date": "2024-06-14T21:55:14.820Z" + "$date": "2024-06-19T02:08:38.552Z" }, "__v": 0 }, @@ -921,16 +955,16 @@ "firstName": "Maegan", "lastName": "Mulhall", "email": "mmulhall1h@wikipedia.org", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$puP8HOnkmKYihBaoEGd/ver1mnQtXjiROSUIJmCx57kgJG6i3YkVe", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$9MMQd8asH32HVeAE9l8qnOZN6FPwqp5rVDeBRJcAY9VnUU7j0nmyy", "_id": { - "$oid": "666cbc4240af7b375e352ec2" + "$oid": "66723da68f368f285d304b01" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.820Z" + "$date": "2024-06-19T02:08:38.552Z" }, "date": { - "$date": "2024-06-14T21:55:14.820Z" + "$date": "2024-06-19T02:08:38.552Z" }, "__v": 0 }, @@ -938,16 +972,16 @@ "firstName": "Nicolai", "lastName": "Brugsma", "email": "nbrugsma1i@4shared.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$24cDVgCS2at6U.aIF8Rlr.wa6UqCtCQ/YRPONOoAw2Yyn1Pwx.NIy", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$xFzv03nwmQoKm63Or.udYulQfI33ZyLqWTke5vfM75P.LIowqb0Ti", "_id": { - "$oid": "666cbc4240af7b375e352ec3" + "$oid": "66723da68f368f285d304b02" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.820Z" + "$date": "2024-06-19T02:08:38.552Z" }, "date": { - "$date": "2024-06-14T21:55:14.820Z" + "$date": "2024-06-19T02:08:38.552Z" }, "__v": 0 }, @@ -955,16 +989,16 @@ "firstName": "Bryan", "lastName": "Heffy", "email": "bheffy1j@cbsnews.com", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$12.kCM/9jHj4HF3yaJHrCuCOdrHeqbGLRra.Fso/Q8agNRzP3aZTe", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$hHsqzWUq6mby1jhthugSLuPTi84WroOHbmzSDUZaVRFHvHPz0T6zm", "_id": { - "$oid": "666cbc4240af7b375e352ec4" + "$oid": "66723da68f368f285d304b03" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.820Z" + "$date": "2024-06-19T02:08:38.552Z" }, "date": { - "$date": "2024-06-14T21:55:14.820Z" + "$date": "2024-06-19T02:08:38.552Z" }, "__v": 0 }, @@ -972,16 +1006,16 @@ "firstName": "Donavon", "lastName": "Osichev", "email": "dosichev1k@pinterest.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$.zUOKkX/lppHOUafMRFbhO8eG2dRNoztjiUK4zQt08E1oacDmfey2", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$N5.Je/j0pTww.DEJkQZLZOKm02Ia/26YsjTvSuyCm3YE9Z5gYYPeS", "_id": { - "$oid": "666cbc4240af7b375e352ec5" + "$oid": "66723da68f368f285d304b04" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.820Z" + "$date": "2024-06-19T02:08:38.553Z" }, "date": { - "$date": "2024-06-14T21:55:14.820Z" + "$date": "2024-06-19T02:08:38.553Z" }, "__v": 0 }, @@ -989,16 +1023,16 @@ "firstName": "Kennan", "lastName": "Dugget", "email": "kdugget1l@opensource.org", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$r5Uy9vOXDYKbOIOTHtQSOOZAkTTgwXIjfasm.CUxBgaBaAFISUBs.", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$OSKog2lwroDbovPvKR9vZ.tInkWEmOf2ofKmV8TpORQXCnMlt9Ghu", "_id": { - "$oid": "666cbc4240af7b375e352ec6" + "$oid": "66723da68f368f285d304b05" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.820Z" + "$date": "2024-06-19T02:08:38.553Z" }, "date": { - "$date": "2024-06-14T21:55:14.820Z" + "$date": "2024-06-19T02:08:38.553Z" }, "__v": 0 }, @@ -1006,16 +1040,16 @@ "firstName": "Paton", "lastName": "Climance", "email": "pclimance1m@webnode.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$GD4v9PWqcEkvKzFSdYQUge.SpwxFh22PoOn4BzJ43o0OI5YgOS1e2", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$fxyiCXvcraeMcTNl2lYg0e1AKIBYM90nzaNljT9g4vJV3c2JhPA.2", "_id": { - "$oid": "666cbc4240af7b375e352ec7" + "$oid": "66723da68f368f285d304b06" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.820Z" + "$date": "2024-06-19T02:08:38.553Z" }, "date": { - "$date": "2024-06-14T21:55:14.821Z" + "$date": "2024-06-19T02:08:38.553Z" }, "__v": 0 }, @@ -1023,16 +1057,16 @@ "firstName": "Caitrin", "lastName": "McAllister", "email": "cmcallister1n@ft.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$mxRynmdJerc5Rdh.gw8u1OR8I5ARp8Qwx2cxIw1OaQhsalkLhHKw6", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$mQOhDbf1miTTjhwN54Txn./CJpevXVRxTU2QLemQ8M.F2Py6aBx2K", "_id": { - "$oid": "666cbc4240af7b375e352ec8" + "$oid": "66723da68f368f285d304b07" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.821Z" + "$date": "2024-06-19T02:08:38.553Z" }, "date": { - "$date": "2024-06-14T21:55:14.821Z" + "$date": "2024-06-19T02:08:38.553Z" }, "__v": 0 }, @@ -1040,16 +1074,16 @@ "firstName": "Sephira", "lastName": "Kaming", "email": "skaming1o@about.me", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$yVxwVZ2Zz3q0MGzw3b2AaOU8N8no5Fr8l8pG8JnFe9UUlGMFWYYhm", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$6GuOj05Gs/mbnWuy7YIVqOJvpfxk/qcSeBPl47L6JtV.GIj168A3e", "_id": { - "$oid": "666cbc4240af7b375e352ec9" + "$oid": "66723da68f368f285d304b08" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.821Z" + "$date": "2024-06-19T02:08:38.553Z" }, "date": { - "$date": "2024-06-14T21:55:14.821Z" + "$date": "2024-06-19T02:08:38.553Z" }, "__v": 0 }, @@ -1057,16 +1091,16 @@ "firstName": "Fraser", "lastName": "Londsdale", "email": "flondsdale1p@freewebs.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$7cQl0FLID/Bbc.LU8DRKG.loMRTr2wUtNzX9pAhwfHazdXqoMd6VO", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$ia8ShPVn/9JiOy3NhlRABuinY6U5jMWgHIaE5LuqmTknuPrLtXemu", "_id": { - "$oid": "666cbc4240af7b375e352eca" + "$oid": "66723da68f368f285d304b09" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.821Z" + "$date": "2024-06-19T02:08:38.553Z" }, "date": { - "$date": "2024-06-14T21:55:14.821Z" + "$date": "2024-06-19T02:08:38.553Z" }, "__v": 0 }, @@ -1074,16 +1108,16 @@ "firstName": "Alyssa", "lastName": "Bangham", "email": "abangham1q@usgs.gov", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$.2cgQkHqgunqII0AIs/X5u2udyiSqIwqYEVN6tExoGvi9UfZBXADi", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$t071LdpdR71vZ8GnBEf.suevlPpW/xAKW28AsHxkmyz/tROkoHduy", "_id": { - "$oid": "666cbc4240af7b375e352ecb" + "$oid": "66723da68f368f285d304b0a" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.821Z" + "$date": "2024-06-19T02:08:38.553Z" }, "date": { - "$date": "2024-06-14T21:55:14.821Z" + "$date": "2024-06-19T02:08:38.553Z" }, "__v": 0 }, @@ -1091,16 +1125,16 @@ "firstName": "Clarette", "lastName": "Alcock", "email": "calcock1r@amazonaws.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$WL9bAT6uJaBY/ERrMTnFt.1rOKeidfz6P4Gwt1FU4NBGdnDOvBrEW", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$.I1VeHGqrqKs4jXb0nbC0.qsMR11YIM1iEzMf/T3PQLprPFsUaf4O", "_id": { - "$oid": "666cbc4240af7b375e352ecc" + "$oid": "66723da68f368f285d304b0b" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.821Z" + "$date": "2024-06-19T02:08:38.554Z" }, "date": { - "$date": "2024-06-14T21:55:14.821Z" + "$date": "2024-06-19T02:08:38.554Z" }, "__v": 0 }, @@ -1108,16 +1142,16 @@ "firstName": "Lizbeth", "lastName": "France", "email": "lfrance1s@yahoo.com", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$qkm5apDhFLouajkMGXv2COcBYnycPEmRyMUqB7xj8cy3YK1j4rJgO", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$1ANElxK9XfTFTTDKTNCptuwDkrxEDR.Bi5iJzyLoenVpSocY7e3ha", "_id": { - "$oid": "666cbc4240af7b375e352ecd" + "$oid": "66723da68f368f285d304b0c" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.821Z" + "$date": "2024-06-19T02:08:38.554Z" }, "date": { - "$date": "2024-06-14T21:55:14.821Z" + "$date": "2024-06-19T02:08:38.554Z" }, "__v": 0 }, @@ -1125,16 +1159,16 @@ "firstName": "Abramo", "lastName": "Sparkwell", "email": "asparkwell1t@berkeley.edu", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$nC1PIt09lQqqrUjWSUd53u3jTMHf0dmTmvHlwFW3wRsMrY1YDx1Ku", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$NqlrzP2iKAKvkzySAleAhe/AdNXpsgfCdp2TR6y8DfXwuqub/AeYq", "_id": { - "$oid": "666cbc4240af7b375e352ece" + "$oid": "66723da68f368f285d304b0d" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.821Z" + "$date": "2024-06-19T02:08:38.554Z" }, "date": { - "$date": "2024-06-14T21:55:14.821Z" + "$date": "2024-06-19T02:08:38.554Z" }, "__v": 0 }, @@ -1142,16 +1176,16 @@ "firstName": "Darb", "lastName": "Coen", "email": "dcoen1u@prlog.org", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$TH0goGqeBmNsBHvBZqYsN.281d/3m2ekSMBMZ4svRxg/njEckx92u", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$NTPQ7izZe5EITdCeiIE.D.7OCy2tj6Cl3EDhEUkGyVcI0Em666.LS", "_id": { - "$oid": "666cbc4240af7b375e352ecf" + "$oid": "66723da68f368f285d304b0e" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.821Z" + "$date": "2024-06-19T02:08:38.554Z" }, "date": { - "$date": "2024-06-14T21:55:14.821Z" + "$date": "2024-06-19T02:08:38.554Z" }, "__v": 0 }, @@ -1159,16 +1193,16 @@ "firstName": "Gusty", "lastName": "Besnardeau", "email": "gbesnardeau1v@themeforest.net", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$7McgyHbA2hUMDD4fRfOxWeobmAWDzxk8eXblbpwBeeiGF7bcSTfT6", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$hJBPCRFfsUSc5mp6bb6rsezzRucr3rfY5WBoIox0FyUfPptkX/Qm2", "_id": { - "$oid": "666cbc4240af7b375e352ed0" + "$oid": "66723da68f368f285d304b0f" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.821Z" + "$date": "2024-06-19T02:08:38.554Z" }, "date": { - "$date": "2024-06-14T21:55:14.821Z" + "$date": "2024-06-19T02:08:38.554Z" }, "__v": 0 }, @@ -1176,16 +1210,16 @@ "firstName": "Randy", "lastName": "Verriour", "email": "rverriour1w@ebay.co.uk", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$0j14W2NxtEPPLX7qQ6vmP.1PmGI60VZDcgyL.Zi.Uq3cEa892Mnc2", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$..cSH2YjBKProi1oCz7fVuLJcXRMBmpeNRc4mfjfcZIsVFfEcAGOC", "_id": { - "$oid": "666cbc4240af7b375e352ed1" + "$oid": "66723da68f368f285d304b10" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.821Z" + "$date": "2024-06-19T02:08:38.554Z" }, "date": { - "$date": "2024-06-14T21:55:14.821Z" + "$date": "2024-06-19T02:08:38.554Z" }, "__v": 0 }, @@ -1193,16 +1227,16 @@ "firstName": "Israel", "lastName": "Canti", "email": "icanti1x@businesswire.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$iq0FCr8PxS47clooK8e31.wH8drhHnjBOEenE2zvdx8nk/fweC6TW", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$LYS2QhWZigDB.7.d3CKZFOjJr4Ss6aCde9AuEeDH2A/n.woiFGfAi", "_id": { - "$oid": "666cbc4240af7b375e352ed2" + "$oid": "66723da68f368f285d304b11" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.822Z" + "$date": "2024-06-19T02:08:38.554Z" }, "date": { - "$date": "2024-06-14T21:55:14.822Z" + "$date": "2024-06-19T02:08:38.554Z" }, "__v": 0 }, @@ -1210,16 +1244,16 @@ "firstName": "Micky", "lastName": "Dunseath", "email": "mdunseath1y@miibeian.gov.cn", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$gSHOOzAR5DgTHHaBfN0v6eWxIaQwQF/HyV8wIizsqaSf6SgzzFEyK", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$/nYb3tu0l4bCW4BaZUwmSObgvhfP27i.RydOP4wilS7k3GDb5cCqW", "_id": { - "$oid": "666cbc4240af7b375e352ed3" + "$oid": "66723da68f368f285d304b12" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.822Z" + "$date": "2024-06-19T02:08:38.554Z" }, "date": { - "$date": "2024-06-14T21:55:14.822Z" + "$date": "2024-06-19T02:08:38.554Z" }, "__v": 0 }, @@ -1227,16 +1261,16 @@ "firstName": "Gabi", "lastName": "Hardcastle", "email": "ghardcastle1z@weebly.com", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$6Lh8dpTzv9fbgdLvMNnjC.lGoRfGmZZzzF/uY/Bj.vAIrZfTpUWQ.", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$PM4RtcUtEAF8IPW4WdKgXu3RJfPExcHmfhCTUtbph7Pv6XvoMO7wC", "_id": { - "$oid": "666cbc4240af7b375e352ed4" + "$oid": "66723da68f368f285d304b13" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.822Z" + "$date": "2024-06-19T02:08:38.555Z" }, "date": { - "$date": "2024-06-14T21:55:14.822Z" + "$date": "2024-06-19T02:08:38.555Z" }, "__v": 0 }, @@ -1245,15 +1279,15 @@ "lastName": "Scothron", "email": "rscothron20@yellowbook.com", "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$rr0llebqvkz2hokjZo40muNXWH9ECQvWE7zFAgUfCsEirlW1zgKcC", + "password": "$2a$10$4svz5xlWUN29HfirroghBuJXo3nXIjEh3wneWbG2vnM9/dy/Xqhuu", "_id": { - "$oid": "666cbc4240af7b375e352ed5" + "$oid": "66723da68f368f285d304b14" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.822Z" + "$date": "2024-06-19T02:08:38.555Z" }, "date": { - "$date": "2024-06-14T21:55:14.822Z" + "$date": "2024-06-19T02:08:38.555Z" }, "__v": 0 }, @@ -1261,16 +1295,16 @@ "firstName": "Gretel", "lastName": "Sitford", "email": "gsitford21@tinyurl.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$scnuVEQDYSCpE6OKkmR0b.bm44p7XDYAQCTrYjYCo8tbFsI2cFSwK", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$EkM.t.MoQCHAxWuFwkaBVuWx7rK2mH8vYBY2AE7cl/KN4IqHozm1q", "_id": { - "$oid": "666cbc4240af7b375e352ed6" + "$oid": "66723da68f368f285d304b15" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.822Z" + "$date": "2024-06-19T02:08:38.555Z" }, "date": { - "$date": "2024-06-14T21:55:14.822Z" + "$date": "2024-06-19T02:08:38.555Z" }, "__v": 0 }, @@ -1278,16 +1312,16 @@ "firstName": "Rosalinda", "lastName": "Naisby", "email": "rnaisby22@nationalgeographic.com", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$gzRvS1eCyZytHHBDShNhsuhP1TZDos7wt3jygmjDqW2jD/Rmt7cZ.", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$O4Zih8s1OQhajdXjxbNjJeiaFVNdoXVV6Q2ySD7.iAXHU1tJbgVHG", "_id": { - "$oid": "666cbc4240af7b375e352ed7" + "$oid": "66723da68f368f285d304b16" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.822Z" + "$date": "2024-06-19T02:08:38.555Z" }, "date": { - "$date": "2024-06-14T21:55:14.822Z" + "$date": "2024-06-19T02:08:38.555Z" }, "__v": 0 }, @@ -1295,16 +1329,16 @@ "firstName": "Thaddus", "lastName": "Waddell", "email": "twaddell23@nymag.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$30lwXqwrHGuv5iC2LrwdWepz4cAgcXcmKzyzOZE5ytprDPmyktlFu", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$Ebg2P.i5K0BL1Uh/3rGXdOeQgpWI3BDkZO2Xp2mYzqKtvoZz0l0yC", "_id": { - "$oid": "666cbc4240af7b375e352ed8" + "$oid": "66723da68f368f285d304b17" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.822Z" + "$date": "2024-06-19T02:08:38.555Z" }, "date": { - "$date": "2024-06-14T21:55:14.822Z" + "$date": "2024-06-19T02:08:38.555Z" }, "__v": 0 }, @@ -1312,16 +1346,16 @@ "firstName": "Nadia", "lastName": "Zeale", "email": "nzeale24@google.ru", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$e6BvX/vvJss9sI5NbaInX.jf58zpty1YHfq4vSRFJKtDvlxVRgoku", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$GsdW34jd8Idz9T9CiCLeIeHFLw/06FiMuRzrNDzA1HBoQTjp31q8O", "_id": { - "$oid": "666cbc4240af7b375e352ed9" + "$oid": "66723da68f368f285d304b18" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.822Z" + "$date": "2024-06-19T02:08:38.555Z" }, "date": { - "$date": "2024-06-14T21:55:14.822Z" + "$date": "2024-06-19T02:08:38.555Z" }, "__v": 0 }, @@ -1329,16 +1363,16 @@ "firstName": "Emmett", "lastName": "Buckell", "email": "ebuckell25@reddit.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$pWhNMgSR.r1moXrV7quvHO3hP3yyFBPtylGymhoBCl6YWwckGOvG6", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$xAV7kggqSrKPontsyelk3uANfUH3n7ZinHZYLjpTvC5jc.a099m86", "_id": { - "$oid": "666cbc4240af7b375e352eda" + "$oid": "66723da68f368f285d304b19" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.822Z" + "$date": "2024-06-19T02:08:38.555Z" }, "date": { - "$date": "2024-06-14T21:55:14.822Z" + "$date": "2024-06-19T02:08:38.555Z" }, "__v": 0 }, @@ -1346,16 +1380,16 @@ "firstName": "Lavinia", "lastName": "Baume", "email": "lbaume26@tinyurl.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$ONelMU1tu3b3Rh4p.aBc5.F2NuVMjJ3EMItHpLGKXt8fYrK7ZPpEW", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$afh4bLBWo7xXf.X0OPyxEesL15fNEaQesO09y0hslXiuHgtmoM/sy", "_id": { - "$oid": "666cbc4240af7b375e352edb" + "$oid": "66723da68f368f285d304b1a" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.822Z" + "$date": "2024-06-19T02:08:38.555Z" }, "date": { - "$date": "2024-06-14T21:55:14.822Z" + "$date": "2024-06-19T02:08:38.555Z" }, "__v": 0 }, @@ -1363,16 +1397,16 @@ "firstName": "Janine", "lastName": "Kitt", "email": "jkitt27@wsj.com", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$MGIKUOh.Ntg3BaFhkLVqIOn/EcRnvqDLl1ZMm65wBUEneBezqIKzK", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$u23O9z/SdEbNirUiExvfwerA3O67vuvAQL.1nFCMvF5C2TLslFt1O", "_id": { - "$oid": "666cbc4240af7b375e352edc" + "$oid": "66723da68f368f285d304b1b" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.823Z" + "$date": "2024-06-19T02:08:38.555Z" }, "date": { - "$date": "2024-06-14T21:55:14.823Z" + "$date": "2024-06-19T02:08:38.555Z" }, "__v": 0 }, @@ -1380,16 +1414,16 @@ "firstName": "Beatrix", "lastName": "Healey", "email": "bhealey28@amazon.co.jp", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$bVCxp5TS6pfLzICepBufvO8x8tFiWuFEieTNcBOvZgJUvJZnDLzpW", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$irPoEf/87JssE0GloTQiV.6SZbEMv0XFnLOkHcwqOs3Js2rgyHVke", "_id": { - "$oid": "666cbc4240af7b375e352edd" + "$oid": "66723da68f368f285d304b1c" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.823Z" + "$date": "2024-06-19T02:08:38.555Z" }, "date": { - "$date": "2024-06-14T21:55:14.823Z" + "$date": "2024-06-19T02:08:38.555Z" }, "__v": 0 }, @@ -1398,15 +1432,15 @@ "lastName": "Buske", "email": "sbuske29@soundcloud.com", "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$fQHrC9UNiP5iO/z3DITTieme3jVaDum.Fuj2.fXFFx5zBHXaayeJa", + "password": "$2a$10$1XuzN4hPtQm9kD.PcPK.6.ctu7fg2sWEB0TNBkgo01zUEoFyslBNu", "_id": { - "$oid": "666cbc4240af7b375e352ede" + "$oid": "66723da68f368f285d304b1d" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.823Z" + "$date": "2024-06-19T02:08:38.556Z" }, "date": { - "$date": "2024-06-14T21:55:14.823Z" + "$date": "2024-06-19T02:08:38.556Z" }, "__v": 0 }, @@ -1414,16 +1448,16 @@ "firstName": "Cristine", "lastName": "Gaddesby", "email": "cgaddesby2a@senate.gov", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$.7D/TqiQfiDSnwR.zSlqrOX6Zx6/cLKdCasMYOrIglTD232frwmZK", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$uZC6FDy/PqHxlAZHBZlfDuOz73l/XuyK23/6F1JAUAJAyQRHh.zC6", "_id": { - "$oid": "666cbc4240af7b375e352edf" + "$oid": "66723da68f368f285d304b1e" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.823Z" + "$date": "2024-06-19T02:08:38.556Z" }, "date": { - "$date": "2024-06-14T21:55:14.823Z" + "$date": "2024-06-19T02:08:38.556Z" }, "__v": 0 }, @@ -1431,16 +1465,16 @@ "firstName": "Marta", "lastName": "Daveren", "email": "mdaveren2b@odnoklassniki.ru", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$ne68msnmfOGO75s5LhAafOkIruU1BVh3EouJcTm14z2pFjVoW5Cw.", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$wd/NufKk8QGa4/KEEO8shO77/8nJGnkRyL/YibxVdf7mkP5d92/w.", "_id": { - "$oid": "666cbc4240af7b375e352ee0" + "$oid": "66723da68f368f285d304b1f" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.823Z" + "$date": "2024-06-19T02:08:38.556Z" }, "date": { - "$date": "2024-06-14T21:55:14.823Z" + "$date": "2024-06-19T02:08:38.556Z" }, "__v": 0 }, @@ -1448,16 +1482,16 @@ "firstName": "Nanon", "lastName": "Gligoraci", "email": "ngligoraci2c@addthis.com", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$PQ4GcCF1Uc/D6h7cIHDthez13h6Or1SgDe6dIG4bcnSRffLPDrTmC", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$ocoKJ1CbTyNvFQ5S7VJIQuqunwhObJz/LagCKvSRRcH2jEtJ6md46", "_id": { - "$oid": "666cbc4240af7b375e352ee1" + "$oid": "66723da68f368f285d304b20" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.823Z" + "$date": "2024-06-19T02:08:38.556Z" }, "date": { - "$date": "2024-06-14T21:55:14.823Z" + "$date": "2024-06-19T02:08:38.556Z" }, "__v": 0 }, @@ -1465,16 +1499,16 @@ "firstName": "Donall", "lastName": "Frapwell", "email": "dfrapwell2d@hostgator.com", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$2VoXkHsmhwgflG2KdonlBucy3A.lPyu2c92zobe184qt1twiqf5jS", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$LdesH1ifY7N0saXbeQOm7OfEfMp0KaQVZWpmbAKBpzJGm48qzGyhy", "_id": { - "$oid": "666cbc4240af7b375e352ee2" + "$oid": "66723da68f368f285d304b21" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.823Z" + "$date": "2024-06-19T02:08:38.556Z" }, "date": { - "$date": "2024-06-14T21:55:14.823Z" + "$date": "2024-06-19T02:08:38.556Z" }, "__v": 0 }, @@ -1482,16 +1516,16 @@ "firstName": "Beverlee", "lastName": "Bangham", "email": "bbangham2e@tamu.edu", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$bIzi4GPg6FdQxDEo7vVMSuo7isWD0qWCKU57SiscDQfzCDIcKumjG", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$iUDpnMVatWQdbRgQJr70OufYqW2XbOYwC2WPstQp8ajFL5uLt7LN2", "_id": { - "$oid": "666cbc4240af7b375e352ee3" + "$oid": "66723da68f368f285d304b22" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.823Z" + "$date": "2024-06-19T02:08:38.556Z" }, "date": { - "$date": "2024-06-14T21:55:14.823Z" + "$date": "2024-06-19T02:08:38.556Z" }, "__v": 0 }, @@ -1499,16 +1533,16 @@ "firstName": "Englebert", "lastName": "Bancroft", "email": "ebancroft2f@ow.ly", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$oVzwrOIML7f.oUK94xD0FumYjJyBYOsT57/l7TWSg5dDZKBbdm6oC", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$0ZXUgbf/j8O5trykpqSAY.dCVBmnPTmIquh1kT7ZWfQ9k.KiR70ry", "_id": { - "$oid": "666cbc4240af7b375e352ee4" + "$oid": "66723da68f368f285d304b23" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.823Z" + "$date": "2024-06-19T02:08:38.556Z" }, "date": { - "$date": "2024-06-14T21:55:14.823Z" + "$date": "2024-06-19T02:08:38.556Z" }, "__v": 0 }, @@ -1517,15 +1551,15 @@ "lastName": "Castillou", "email": "scastillou2g@reddit.com", "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$s.TS3/Q.Hglq1nfCAwOnZ.2U/t1Rum8V7wts/9ouOMmy8ZXf9ai1m", + "password": "$2a$10$dLDTVuCo5a.0fNMO3SrgIuH/53cgMgdSwa85sV7GXBgCIuxp/v/wS", "_id": { - "$oid": "666cbc4240af7b375e352ee5" + "$oid": "66723da68f368f285d304b24" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.823Z" + "$date": "2024-06-19T02:08:38.556Z" }, "date": { - "$date": "2024-06-14T21:55:14.823Z" + "$date": "2024-06-19T02:08:38.556Z" }, "__v": 0 }, @@ -1533,16 +1567,16 @@ "firstName": "Marvin", "lastName": "Cranke", "email": "mcranke2h@marketwatch.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$Z2vu2srMWwEba9q/3vIGKOVOZelbL1nz4e/VF/qgFlSnhKWOTPC9i", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$6.FejnIQxqjUXD3ISnmVKOP5ImwsKlH9lRLUAbxRayJjt3g5Gj6Be", "_id": { - "$oid": "666cbc4240af7b375e352ee6" + "$oid": "66723da68f368f285d304b25" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.823Z" + "$date": "2024-06-19T02:08:38.556Z" }, "date": { - "$date": "2024-06-14T21:55:14.823Z" + "$date": "2024-06-19T02:08:38.556Z" }, "__v": 0 }, @@ -1550,16 +1584,16 @@ "firstName": "Arne", "lastName": "Rummin", "email": "arummin2i@is.gd", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$nllj2WDJlrXyLmY1e1QN3uRd7s8W3RLkdpO/hLez/PhyaBi6SWRc.", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$kPEVnpwRl9yZ2e8ZcG.nfefo0/OCZ7aqi4Ds.ePzTenAfsWYCGNcK", "_id": { - "$oid": "666cbc4240af7b375e352ee7" + "$oid": "66723da68f368f285d304b26" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.824Z" + "$date": "2024-06-19T02:08:38.556Z" }, "date": { - "$date": "2024-06-14T21:55:14.824Z" + "$date": "2024-06-19T02:08:38.556Z" }, "__v": 0 }, @@ -1567,16 +1601,16 @@ "firstName": "Seumas", "lastName": "Feldberger", "email": "sfeldberger2j@ning.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$..1azN9uGWaDjwsSaFkc8u.tuw2gAwLNaNKtIjxbRdN6yQvnVIZhu", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$ybD8snthNqfwt0Pi1VdGieDdPrBB.nIq3dzgauISGvVaZ2X0Sovaa", "_id": { - "$oid": "666cbc4240af7b375e352ee8" + "$oid": "66723da68f368f285d304b27" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.824Z" + "$date": "2024-06-19T02:08:38.556Z" }, "date": { - "$date": "2024-06-14T21:55:14.824Z" + "$date": "2024-06-19T02:08:38.556Z" }, "__v": 0 }, @@ -1584,16 +1618,16 @@ "firstName": "Hilda", "lastName": "Worham", "email": "hworham2k@mail.ru", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$RqhbmZULHh/6cJB2byfoDe2XByGw9.wjSqA1arUFmN5qTLHVhWWVO", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$NLD.r.hzHssSuATg1EbeKOD5HWG7b8m1rWm94yG/RXDgVwxIZlxVe", "_id": { - "$oid": "666cbc4240af7b375e352ee9" + "$oid": "66723da68f368f285d304b28" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.824Z" + "$date": "2024-06-19T02:08:38.556Z" }, "date": { - "$date": "2024-06-14T21:55:14.824Z" + "$date": "2024-06-19T02:08:38.556Z" }, "__v": 0 }, @@ -1601,16 +1635,16 @@ "firstName": "Winny", "lastName": "O'Glessane", "email": "woglessane2l@deviantart.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$zEEXcG/ZzAipYA7UUz6LPu60MkmLDYTwOT4Je1BEAEsQy/91mAXJC", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$6v6Q8FvJDYCrDLOtHohcOexEMNven.EdtMdLhWFgXFNjyc7zHIGd.", "_id": { - "$oid": "666cbc4240af7b375e352eea" + "$oid": "66723da68f368f285d304b29" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.824Z" + "$date": "2024-06-19T02:08:38.556Z" }, "date": { - "$date": "2024-06-14T21:55:14.824Z" + "$date": "2024-06-19T02:08:38.556Z" }, "__v": 0 }, @@ -1618,16 +1652,16 @@ "firstName": "Gwenora", "lastName": "Agge", "email": "gagge2m@unesco.org", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$UqIbAE57AdPG6C9SX9mQ6uDkbECkdp/bH7JS5duKWS95OP8MQNOYK", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$aHXbV6y1zl6Wicf5U9Ng0upuUneendv83gjaIMHQUPu0dZSA4i.j.", "_id": { - "$oid": "666cbc4240af7b375e352eeb" + "$oid": "66723da68f368f285d304b2a" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.824Z" + "$date": "2024-06-19T02:08:38.557Z" }, "date": { - "$date": "2024-06-14T21:55:14.824Z" + "$date": "2024-06-19T02:08:38.557Z" }, "__v": 0 }, @@ -1635,16 +1669,16 @@ "firstName": "Piggy", "lastName": "Torrisi", "email": "ptorrisi2n@goodreads.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$4dEAek7ltfA9TV8VSsrP.OXSaAfm8f8cEN5FIyRb11Aqv9JKgVj.u", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$fnR8diwGLrSu.rdd0jMOxe8IFKGGRKRAc0PTLftgsLSiek71DSdDe", "_id": { - "$oid": "666cbc4240af7b375e352eec" + "$oid": "66723da68f368f285d304b2b" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.824Z" + "$date": "2024-06-19T02:08:38.557Z" }, "date": { - "$date": "2024-06-14T21:55:14.824Z" + "$date": "2024-06-19T02:08:38.557Z" }, "__v": 0 }, @@ -1652,67 +1686,16 @@ "firstName": "Niki", "lastName": "Glaysher", "email": "nglaysher2o@kickstarter.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$Z7jMPKBjU5eZf7OLm3AnW.aa7DrAhywM9EZu4WVMC7VWo7ZgIMxpK", - "_id": { - "$oid": "666cbc4240af7b375e352eed" - }, - "lastVisit": { - "$date": "2024-06-14T21:55:14.824Z" - }, - "date": { - "$date": "2024-06-14T21:55:14.824Z" - }, - "__v": 0 - }, - { - "firstName": "Pail", - "lastName": "Vasechkin", - "email": "pvasechkin2p@vk.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$6njt4MgwlR5b29CwsvnNLe0yzU5KkBEhH7t9L5CYDfvpHRXuPLQ16", - "_id": { - "$oid": "666cbc4240af7b375e352eee" - }, - "lastVisit": { - "$date": "2024-06-14T21:55:14.824Z" - }, - "date": { - "$date": "2024-06-14T21:55:14.824Z" - }, - "__v": 0 - }, - { - "firstName": "Gav", - "lastName": "Renneke", - "email": "grenneke2q@hp.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$0TpHZ7.IRe3WmTVlSYRhdewfbKz3OihUd5KIBvaK1ReGNVGyA.huu", - "_id": { - "$oid": "666cbc4240af7b375e352eef" - }, - "lastVisit": { - "$date": "2024-06-14T21:55:14.824Z" - }, - "date": { - "$date": "2024-06-14T21:55:14.824Z" - }, - "__v": 0 - }, - { - "firstName": "Perle", - "lastName": "Rizziello", - "email": "prizziello2r@mashable.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$fpnLDlwbKIaZ3yJZe6qB5OU/62Mxc4QGfLl48VVAHDwDsgY8MCukq", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$EIoh4HqmbP8SKcoB4MmDLuzngiXr/EtAekemGBeFjaBDBPFlCyQ42", "_id": { - "$oid": "666cbc4240af7b375e352ef0" + "$oid": "66723da68f368f285d304b2c" }, "lastVisit": { - "$date": "2024-06-14T21:55:14.824Z" + "$date": "2024-06-19T02:08:38.557Z" }, "date": { - "$date": "2024-06-14T21:55:14.824Z" + "$date": "2024-06-19T02:08:38.557Z" }, "__v": 0 } From 32711668cc4bc7d42fb2a698b9f257d03766124d Mon Sep 17 00:00:00 2001 From: Sean Date: Thu, 20 Jun 2024 19:37:04 -0400 Subject: [PATCH 11/25] CHE-193 Adjusted core user ID's --- scripts/db/mongo-dev-init/MOCK_USERS.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/db/mongo-dev-init/MOCK_USERS.json b/scripts/db/mongo-dev-init/MOCK_USERS.json index 3a7d9042..cf146114 100644 --- a/scripts/db/mongo-dev-init/MOCK_USERS.json +++ b/scripts/db/mongo-dev-init/MOCK_USERS.json @@ -23,7 +23,7 @@ "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", "password": "$2a$10$iz0QHjofc4RaXT5.NVPuvOvDfLFvQLoArMlo2Zceev8vguAUNQYfK", "_id": { - "$oid": "66723da68f368f285d304aca" + "$oid": "6644c768515c654def9b2b09" }, "lastVisit": { "$date": "2024-06-19T02:08:38.547Z" @@ -40,7 +40,7 @@ "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", "password": "$2a$10$LsAaR7Pucw15tiDu5LkBJeYk6zIdcs.njyfuHaSKOs4xcDRkEBJJG", "_id": { - "$oid": "66723da68f368f285d304acb" + "$oid": "6644c602515c654def9b2ae7" }, "lastVisit": { "$date": "2024-06-19T02:08:38.547Z" @@ -57,7 +57,7 @@ "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", "password": "$2a$10$HS9X5Q7FC2qOFMdeReqBuOysJ9T.BvMgYgFE2MNi87fCvLOEmsZP6", "_id": { - "$oid": "66723da68f368f285d304acc" + "$oid": "6644c7f7515c654def9b2b18" }, "lastVisit": { "$date": "2024-06-19T02:08:38.547Z" From 7516493bcbed13e13652b23da0f4b4b8bc9029d6 Mon Sep 17 00:00:00 2001 From: Sean Date: Thu, 20 Jun 2024 19:52:03 -0400 Subject: [PATCH 12/25] CHE-193 Aligning ID's between PostgreSQL and MongoDB seeders --- scripts/db/mongo-dev-init/MOCK_USERS.json | 6 +++--- scripts/sql_db_init.sql | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/db/mongo-dev-init/MOCK_USERS.json b/scripts/db/mongo-dev-init/MOCK_USERS.json index cf146114..3a7d9042 100644 --- a/scripts/db/mongo-dev-init/MOCK_USERS.json +++ b/scripts/db/mongo-dev-init/MOCK_USERS.json @@ -23,7 +23,7 @@ "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", "password": "$2a$10$iz0QHjofc4RaXT5.NVPuvOvDfLFvQLoArMlo2Zceev8vguAUNQYfK", "_id": { - "$oid": "6644c768515c654def9b2b09" + "$oid": "66723da68f368f285d304aca" }, "lastVisit": { "$date": "2024-06-19T02:08:38.547Z" @@ -40,7 +40,7 @@ "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", "password": "$2a$10$LsAaR7Pucw15tiDu5LkBJeYk6zIdcs.njyfuHaSKOs4xcDRkEBJJG", "_id": { - "$oid": "6644c602515c654def9b2ae7" + "$oid": "66723da68f368f285d304acb" }, "lastVisit": { "$date": "2024-06-19T02:08:38.547Z" @@ -57,7 +57,7 @@ "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", "password": "$2a$10$HS9X5Q7FC2qOFMdeReqBuOysJ9T.BvMgYgFE2MNi87fCvLOEmsZP6", "_id": { - "$oid": "6644c7f7515c654def9b2b18" + "$oid": "66723da68f368f285d304acc" }, "lastVisit": { "$date": "2024-06-19T02:08:38.547Z" diff --git a/scripts/sql_db_init.sql b/scripts/sql_db_init.sql index 718e3f2f..cc2e1571 100644 --- a/scripts/sql_db_init.sql +++ b/scripts/sql_db_init.sql @@ -83,6 +83,6 @@ INSERT INTO jobs (title, company, location, description, url) VALUES INSERT INTO applications (job_id, status_id, user_id, quick_apply, date_applied, general_notes, last_updated, notification_period, notifications_paused) VALUES - (1, 1, '6644c602515c654def9b2ae7', true, NOW(), 'Quick applied for Software Engineer at Dogs R Us.', NOW(), 3, false), - (2, 1, '6644c768515c654def9b2b09', true, NOW(), 'Full CS style application.', NOW(), 3, false), - (3, 2, '6644c7f7515c654def9b2b18', true, NOW(), 'Phone screen scheduled!', NOW(), 3, false); \ No newline at end of file + (1, 1, '66723da68f368f285d304acb', true, NOW(), 'Quick applied for Software Engineer at Dogs R Us.', NOW(), 3, false), + (2, 1, '66723da68f368f285d304aca', true, NOW(), 'Full CS style application.', NOW(), 3, false), + (3, 2, '66723da68f368f285d304acc', true, NOW(), 'Phone screen scheduled!', NOW(), 3, false); \ No newline at end of file From 79ee0f74a285ec17daee5f6a062a5ef18bf1c45a Mon Sep 17 00:00:00 2001 From: seantokuzo Date: Thu, 20 Jun 2024 17:18:40 -0700 Subject: [PATCH 13/25] update mock data with predefined (and pg friendly) test user ids --- scripts/db/mongo-dev-init/MOCK_ALUMNI.json | 12628 ++++++------- scripts/db/mongo-dev-init/MOCK_FORUMS.json | 30 +- .../MOCK_GRADUATE_INVITATIONS.json | 800 +- scripts/db/mongo-dev-init/MOCK_POSTS.json | 620 +- scripts/db/mongo-dev-init/MOCK_PROFILES.json | 15066 ++++++++-------- scripts/db/mongo-dev-init/MOCK_THREADS.json | 212 +- scripts/db/mongo-dev-init/MOCK_USERS.json | 978 +- 7 files changed, 14849 insertions(+), 15485 deletions(-) diff --git a/scripts/db/mongo-dev-init/MOCK_ALUMNI.json b/scripts/db/mongo-dev-init/MOCK_ALUMNI.json index f9989d3b..8c71aae4 100644 --- a/scripts/db/mongo-dev-init/MOCK_ALUMNI.json +++ b/scripts/db/mongo-dev-init/MOCK_ALUMNI.json @@ -8,15 +8,15 @@ "cohort": "45", "jobTitle": "Full-Stack Application Developer", "industry": "Retail", - "cities": ["Laredo", "Philadelphia", "Fresno"], + "cities": ["Glendale", "Wichita"], "_id": { - "$oid": "66723d958f368f285d303d67" + "$oid": "6674c30595590f9fd945902e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.812Z" + "$date": "2024-06-21T00:02:14.055Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.812Z" + "$date": "2024-06-21T00:02:14.055Z" }, "__v": 0 }, @@ -29,15 +29,15 @@ "cohort": "10", "jobTitle": "Software Engineer intern", "industry": "Security/Data Privacy", - "cities": ["Baltimore", "Mumbai", "Chicago"], + "cities": ["Aurora", "St. Louis"], "_id": { - "$oid": "66723d958f368f285d303d68" + "$oid": "6674c30595590f9fd945902f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -50,15 +50,15 @@ "cohort": "15", "jobTitle": "VP, Projects (working under CTO); and General Counsel", "industry": "E-Commerce", - "cities": [], + "cities": ["Stockton", "Irvine"], "_id": { - "$oid": "66723d958f368f285d303d69" + "$oid": "6674c30595590f9fd9459030" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -71,15 +71,15 @@ "cohort": "43", "jobTitle": "Software Engineer", "industry": "Health Tech", - "cities": [], + "cities": ["San Antonio", "Cincinnati", "Saint Paul"], "_id": { - "$oid": "66723d958f368f285d303d6a" + "$oid": "6674c30595590f9fd9459031" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -92,15 +92,15 @@ "cohort": "48", "jobTitle": "Software Engineer", "industry": "Biotech", - "cities": ["Boston", "Lubbock"], + "cities": ["Wichita", "Nashville", "Tucson"], "_id": { - "$oid": "66723d958f368f285d303d6b" + "$oid": "6674c30595590f9fd9459032" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -113,15 +113,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Albuquerque"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303d6c" + "$oid": "6674c30595590f9fd9459033" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -134,15 +134,15 @@ "cohort": "50", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": [], + "cities": ["Houston", "Seattle", "Cleveland"], "_id": { - "$oid": "66723d958f368f285d303d6d" + "$oid": "6674c30595590f9fd9459034" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -155,15 +155,15 @@ "cohort": "5", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Oakland"], + "cities": ["Plano", "Toronto", "Kansas City"], "_id": { - "$oid": "66723d958f368f285d303d6e" + "$oid": "6674c30595590f9fd9459035" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -176,15 +176,15 @@ "cohort": "4", "jobTitle": "Backend Engineer", "industry": "Healthtech/Healthcare", - "cities": ["Sacramento", "San Diego", "Chandler"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303d6f" + "$oid": "6674c30595590f9fd9459036" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -197,15 +197,15 @@ "cohort": "25", "jobTitle": "Full Stack Engineer", "industry": "Software Development", - "cities": [], + "cities": ["Houston"], "_id": { - "$oid": "66723d958f368f285d303d70" + "$oid": "6674c30595590f9fd9459037" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -218,15 +218,15 @@ "cohort": "11", "jobTitle": "Full Stack Software Engineer, Senior Analyst", "industry": "Consulting", - "cities": ["Atlanta", "Arlington"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303d71" + "$oid": "6674c30595590f9fd9459038" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -239,15 +239,15 @@ "cohort": "23", "jobTitle": "Node Microservices Engineer", "industry": "", - "cities": ["Winston-Salem", "Tampa"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303d72" + "$oid": "6674c30595590f9fd9459039" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -260,15 +260,15 @@ "cohort": "28", "jobTitle": "Software Artisan", "industry": "Technology", - "cities": ["Memphis"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303d73" + "$oid": "6674c30595590f9fd945903a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -281,15 +281,15 @@ "cohort": "35", "jobTitle": "Full Stack Engineer", "industry": "Artificial Intelligence", - "cities": ["Raleigh"], + "cities": ["Charlotte", "San Diego"], "_id": { - "$oid": "66723d958f368f285d303d74" + "$oid": "6674c30595590f9fd945903b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -302,15 +302,15 @@ "cohort": "26", "jobTitle": "Software Engineer II - Backend", "industry": "Finance", - "cities": [], + "cities": ["Lexington", "Mexico City"], "_id": { - "$oid": "66723d958f368f285d303d75" + "$oid": "6674c30595590f9fd945903c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -323,15 +323,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "\"Data Protection/ Cyber Security\"", - "cities": ["Omaha", "El Paso"], + "cities": ["Durham", "Orlando"], "_id": { - "$oid": "66723d958f368f285d303d76" + "$oid": "6674c30595590f9fd945903d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -344,15 +344,15 @@ "cohort": "15", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": [], + "cities": ["Washington", "Colorado Springs"], "_id": { - "$oid": "66723d958f368f285d303d77" + "$oid": "6674c30595590f9fd945903e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -365,15 +365,15 @@ "cohort": "6", "jobTitle": "Software Engineer", "industry": "Security", - "cities": ["Fort Wayne", "Glendale"], + "cities": ["Buffalo", "Jersey City"], "_id": { - "$oid": "66723d958f368f285d303d78" + "$oid": "6674c30595590f9fd945903f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -386,15 +386,15 @@ "cohort": "25", "jobTitle": "Senior Software Engineer", "industry": "Industrial Lighting/IoT", - "cities": ["Greensboro", "Fresno", "Tulsa"], + "cities": ["Colorado Springs", "Pittsburgh"], "_id": { - "$oid": "66723d958f368f285d303d79" + "$oid": "6674c30595590f9fd9459040" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -407,15 +407,15 @@ "cohort": "7", "jobTitle": "Software Engineer III", "industry": "Biotech", - "cities": ["Detroit", "Wichita"], + "cities": ["Houston"], "_id": { - "$oid": "66723d958f368f285d303d7a" + "$oid": "6674c30595590f9fd9459041" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -428,15 +428,15 @@ "cohort": "7", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Chicago", "Baltimore"], + "cities": ["San Jose", "Henderson", "Chandler"], "_id": { - "$oid": "66723d958f368f285d303d7b" + "$oid": "6674c30595590f9fd9459042" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -449,15 +449,15 @@ "cohort": "26", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Louisville", "Fort Wayne", "Buffalo"], "_id": { - "$oid": "66723d958f368f285d303d7c" + "$oid": "6674c30595590f9fd9459043" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -470,15 +470,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "Education", - "cities": [], + "cities": ["Colorado Springs"], "_id": { - "$oid": "66723d958f368f285d303d7d" + "$oid": "6674c30595590f9fd9459044" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -491,15 +491,15 @@ "cohort": "45", "jobTitle": "Web Services Engineer", "industry": "Education", - "cities": [], + "cities": ["Berlin", "Seattle", "Henderson"], "_id": { - "$oid": "66723d958f368f285d303d7e" + "$oid": "6674c30595590f9fd9459045" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -512,15 +512,15 @@ "cohort": "7", "jobTitle": "Web Developer", "industry": "Gaming/eSports", - "cities": ["Kansas City", "Lubbock"], + "cities": ["Denver", "Greensboro", "Philadelphia"], "_id": { - "$oid": "66723d958f368f285d303d7f" + "$oid": "6674c30595590f9fd9459046" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -533,15 +533,15 @@ "cohort": "50", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": [], + "cities": ["Beijing", "Oklahoma City", "New Orleans"], "_id": { - "$oid": "66723d958f368f285d303d80" + "$oid": "6674c30595590f9fd9459047" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -556,13 +556,13 @@ "industry": "Digital Asset Management", "cities": [], "_id": { - "$oid": "66723d958f368f285d303d81" + "$oid": "6674c30595590f9fd9459048" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -575,15 +575,15 @@ "cohort": "34", "jobTitle": "Full-stack Engineer", "industry": "SaaS", - "cities": ["Tokyo", "Houston"], + "cities": ["Lubbock", "Irving", "Winston-Salem"], "_id": { - "$oid": "66723d958f368f285d303d82" + "$oid": "6674c30595590f9fd9459049" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -596,15 +596,15 @@ "cohort": "10", "jobTitle": "DB architect", "industry": "Appliances", - "cities": ["Oklahoma City", "Scottsdale", "Aurora"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303d83" + "$oid": "6674c30595590f9fd945904a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -617,15 +617,15 @@ "cohort": "40", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": [], + "cities": ["San Diego", "Toledo"], "_id": { - "$oid": "66723d958f368f285d303d84" + "$oid": "6674c30595590f9fd945904b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -638,15 +638,15 @@ "cohort": "7", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Anaheim", "Toledo", "Wichita"], + "cities": ["Scottsdale", "Seattle"], "_id": { - "$oid": "66723d958f368f285d303d85" + "$oid": "6674c30595590f9fd945904c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -659,15 +659,15 @@ "cohort": "8", "jobTitle": "Senior Software Engineer", "industry": "Healthcare", - "cities": ["Anchorage", "Gilbert"], + "cities": ["Toledo", "Santa Ana", "Chesapeake"], "_id": { - "$oid": "66723d958f368f285d303d86" + "$oid": "6674c30595590f9fd945904d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -680,15 +680,15 @@ "cohort": "29", "jobTitle": "Frontend Software Engineer", "industry": "Government services", - "cities": ["Henderson", "Jacksonville"], + "cities": ["New Orleans", "Boston"], "_id": { - "$oid": "66723d958f368f285d303d87" + "$oid": "6674c30595590f9fd945904e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -701,15 +701,15 @@ "cohort": "8", "jobTitle": "Solutions Engineer", "industry": "Software / Tech", - "cities": ["Milwaukee", "Tucson", "Raleigh"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303d88" + "$oid": "6674c30595590f9fd945904f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -724,13 +724,13 @@ "industry": "Biotech", "cities": [], "_id": { - "$oid": "66723d958f368f285d303d89" + "$oid": "6674c30595590f9fd9459050" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -743,15 +743,15 @@ "cohort": "7", "jobTitle": "Lead Developer", "industry": "Software Solutions/Developer Tools", - "cities": ["Arlington", "Mexico City", "Kansas City"], + "cities": ["Lexington", "Seattle"], "_id": { - "$oid": "66723d958f368f285d303d8a" + "$oid": "6674c30595590f9fd9459051" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -766,13 +766,13 @@ "industry": "", "cities": [], "_id": { - "$oid": "66723d958f368f285d303d8b" + "$oid": "6674c30595590f9fd9459052" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -785,15 +785,15 @@ "cohort": "12", "jobTitle": "Software Engineer II", "industry": "Fintech", - "cities": ["Aurora", "Tulsa"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303d8c" + "$oid": "6674c30595590f9fd9459053" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -806,15 +806,15 @@ "cohort": "6", "jobTitle": "Senior Solutions Engineer", "industry": "Retail", - "cities": ["St. Petersburg", "Albuquerque", "Oakland"], + "cities": ["Portland"], "_id": { - "$oid": "66723d958f368f285d303d8d" + "$oid": "6674c30595590f9fd9459054" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -827,15 +827,15 @@ "cohort": "27", "jobTitle": "Sr. Software Engineer", "industry": "Fintech", - "cities": ["Dallas"], + "cities": ["San Diego", "Madison"], "_id": { - "$oid": "66723d958f368f285d303d8e" + "$oid": "6674c30595590f9fd9459055" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -848,15 +848,15 @@ "cohort": "25", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Greensboro", "Jersey City"], "_id": { - "$oid": "66723d958f368f285d303d8f" + "$oid": "6674c30595590f9fd9459056" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -869,15 +869,15 @@ "cohort": "28", "jobTitle": "Frontend Software Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Austin"], "_id": { - "$oid": "66723d958f368f285d303d90" + "$oid": "6674c30595590f9fd9459057" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -890,15 +890,15 @@ "cohort": "27", "jobTitle": "Principal Software Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Chandler"], "_id": { - "$oid": "66723d958f368f285d303d91" + "$oid": "6674c30595590f9fd9459058" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.056Z" }, "__v": 0 }, @@ -911,15 +911,15 @@ "cohort": "28", "jobTitle": "Principal Software Engineer", "industry": "Fintech", - "cities": ["Mexico City", "Winston-Salem", "San Antonio"], + "cities": ["Fort Worth", "El Paso", "Phoenix"], "_id": { - "$oid": "66723d958f368f285d303d92" + "$oid": "6674c30595590f9fd9459059" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -932,15 +932,15 @@ "cohort": "10", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Laredo", "North Las Vegas", "Berlin"], + "cities": ["Irving", "San Francisco"], "_id": { - "$oid": "66723d958f368f285d303d93" + "$oid": "6674c30595590f9fd945905a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -955,13 +955,13 @@ "industry": "Fintech", "cities": [], "_id": { - "$oid": "66723d958f368f285d303d94" + "$oid": "6674c30595590f9fd945905b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.813Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -974,15 +974,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "E-Commerce/Fashion/Wellness/Mindfulness", - "cities": ["Lexington", "Bakersfield", "Laredo"], + "cities": ["Bakersfield"], "_id": { - "$oid": "66723d958f368f285d303d95" + "$oid": "6674c30595590f9fd945905c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -997,13 +997,13 @@ "industry": "FinTech", "cities": [], "_id": { - "$oid": "66723d958f368f285d303d96" + "$oid": "6674c30595590f9fd945905d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1016,15 +1016,15 @@ "cohort": "47", "jobTitle": "Senior Consultant", "industry": "Consultancy - Fintech, Manufacturing, Healthcare", - "cities": ["Long Beach", "Stockton"], + "cities": ["Lubbock", "San Antonio"], "_id": { - "$oid": "66723d958f368f285d303d97" + "$oid": "6674c30595590f9fd945905e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1037,15 +1037,15 @@ "cohort": "32", "jobTitle": "Senior Software Engineer", "industry": "Data Analytics", - "cities": ["Glendale", "Pittsburgh"], + "cities": ["Miami"], "_id": { - "$oid": "66723d958f368f285d303d98" + "$oid": "6674c30595590f9fd945905f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1058,15 +1058,15 @@ "cohort": "15", "jobTitle": "DevOps Engineering Manager", "industry": "Communication and Media", - "cities": ["San Antonio", "Portland", "Toledo"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303d99" + "$oid": "6674c30595590f9fd9459060" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1081,13 +1081,13 @@ "industry": "Software / Tech", "cities": [], "_id": { - "$oid": "66723d958f368f285d303d9a" + "$oid": "6674c30595590f9fd9459061" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1100,15 +1100,15 @@ "cohort": "29", "jobTitle": "SDEII", "industry": "Ecommerce", - "cities": ["Garland", "Omaha"], + "cities": ["Garland", "Phoenix"], "_id": { - "$oid": "66723d958f368f285d303d9b" + "$oid": "6674c30595590f9fd9459062" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1121,15 +1121,15 @@ "cohort": "32", "jobTitle": "SDE II (Full Stack)", "industry": "Software / Tech", - "cities": [], + "cities": ["Berlin", "Paris", "Houston"], "_id": { - "$oid": "66723d958f368f285d303d9c" + "$oid": "6674c30595590f9fd9459063" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1144,13 +1144,13 @@ "industry": "Software / Tech", "cities": [], "_id": { - "$oid": "66723d958f368f285d303d9d" + "$oid": "6674c30595590f9fd9459064" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1165,13 +1165,13 @@ "industry": "", "cities": [], "_id": { - "$oid": "66723d958f368f285d303d9e" + "$oid": "6674c30595590f9fd9459065" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1184,15 +1184,15 @@ "cohort": "26", "jobTitle": "Front-End Engineer", "industry": "AWS / internet infrastructure", - "cities": ["Dallas"], + "cities": ["Jacksonville", "Miami"], "_id": { - "$oid": "66723d958f368f285d303d9f" + "$oid": "6674c30595590f9fd9459066" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1205,15 +1205,15 @@ "cohort": "27", "jobTitle": "Software Development Engineer II", "industry": "Ecommerce", - "cities": ["Sydney", "Austin", "Reno"], + "cities": ["Scottsdale", "Chandler"], "_id": { - "$oid": "66723d958f368f285d303da0" + "$oid": "6674c30595590f9fd9459067" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1226,15 +1226,15 @@ "cohort": "19", "jobTitle": "Software Development Engineer", "industry": "Software / Tech", - "cities": ["Oakland", "New Orleans"], + "cities": ["Jersey City", "Minneapolis", "Irving"], "_id": { - "$oid": "66723d958f368f285d303da1" + "$oid": "6674c30595590f9fd9459068" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1249,13 +1249,13 @@ "industry": "Technology", "cities": [], "_id": { - "$oid": "66723d958f368f285d303da2" + "$oid": "6674c30595590f9fd9459069" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1268,15 +1268,15 @@ "cohort": "30", "jobTitle": "Software Develpment Engineer", "industry": "Cloud", - "cities": [], + "cities": ["Anaheim", "Fresno"], "_id": { - "$oid": "66723d958f368f285d303da3" + "$oid": "6674c30595590f9fd945906a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1289,15 +1289,15 @@ "cohort": "2", "jobTitle": "Front-End Engineer", "industry": "e-commerce, cloud computing, digital streaming, and artificial intelligence.", - "cities": ["Plano", "Henderson"], + "cities": ["Pittsburgh", "Irvine"], "_id": { - "$oid": "66723d958f368f285d303da4" + "$oid": "6674c30595590f9fd945906b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1310,15 +1310,15 @@ "cohort": "5", "jobTitle": "Software Development Engineer 1", "industry": "Software / Tech", - "cities": ["Boston", "Baltimore"], + "cities": ["Reno"], "_id": { - "$oid": "66723d958f368f285d303da5" + "$oid": "6674c30595590f9fd945906c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1331,15 +1331,15 @@ "cohort": "14", "jobTitle": "Frontend Engineer II", "industry": "Retail", - "cities": [], + "cities": ["Riverside", "Tokyo", "Corpus Christi"], "_id": { - "$oid": "66723d958f368f285d303da6" + "$oid": "6674c30595590f9fd945906d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1352,15 +1352,15 @@ "cohort": "20", "jobTitle": "Software Development Engineer II", "industry": "Tech", - "cities": ["Detroit", "Santa Ana"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303da7" + "$oid": "6674c30595590f9fd945906e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1375,13 +1375,13 @@ "industry": "Software / Tech", "cities": [], "_id": { - "$oid": "66723d958f368f285d303da8" + "$oid": "6674c30595590f9fd945906f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1394,15 +1394,15 @@ "cohort": "39", "jobTitle": "Software Development Engineer 1", "industry": "Retail", - "cities": [], + "cities": ["Tulsa"], "_id": { - "$oid": "66723d958f368f285d303da9" + "$oid": "6674c30595590f9fd9459070" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1415,15 +1415,15 @@ "cohort": "6", "jobTitle": "Software Development Engineer, People Engine", "industry": "Software / Tech", - "cities": ["Kansas City", "Miami"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303daa" + "$oid": "6674c30595590f9fd9459071" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1436,15 +1436,15 @@ "cohort": "46", "jobTitle": "Front End Engineer", "industry": "Cloud Services", - "cities": [], + "cities": ["Chicago", "Chula Vista", "Oklahoma City"], "_id": { - "$oid": "66723d958f368f285d303dab" + "$oid": "6674c30595590f9fd9459072" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1457,15 +1457,15 @@ "cohort": "31", "jobTitle": "Software Development Engineer I", "industry": "Advertising", - "cities": ["Norfolk"], + "cities": ["Detroit", "Sacramento"], "_id": { - "$oid": "66723d958f368f285d303dac" + "$oid": "6674c30595590f9fd9459073" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1478,15 +1478,15 @@ "cohort": "29", "jobTitle": "Software Development Engineer", "industry": "Cloud", - "cities": ["Colorado Springs", "Baltimore", "Omaha"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303dad" + "$oid": "6674c30595590f9fd9459074" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1499,15 +1499,15 @@ "cohort": "32", "jobTitle": "SDE1", "industry": "Advertising", - "cities": ["Baltimore", "San Francisco"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303dae" + "$oid": "6674c30595590f9fd9459075" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1520,15 +1520,15 @@ "cohort": "26", "jobTitle": "Software Development Engineer", "industry": "Cloud Services", - "cities": [], + "cities": ["Bakersfield", "Denver", "Lubbock"], "_id": { - "$oid": "66723d958f368f285d303daf" + "$oid": "6674c30595590f9fd9459076" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1541,15 +1541,15 @@ "cohort": "44", "jobTitle": "Software Development Engineer I", "industry": "Big Tech", - "cities": ["San Jose", "Los Angeles"], + "cities": ["Durham"], "_id": { - "$oid": "66723d958f368f285d303db0" + "$oid": "6674c30595590f9fd9459077" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1562,15 +1562,15 @@ "cohort": "5", "jobTitle": "Cloud Application Architect", "industry": "Cloud Services", - "cities": [], + "cities": ["Dallas"], "_id": { - "$oid": "66723d958f368f285d303db1" + "$oid": "6674c30595590f9fd9459078" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1583,15 +1583,15 @@ "cohort": "20", "jobTitle": "Software Development Engineer II", "industry": "Software", - "cities": [], + "cities": ["Jacksonville", "Irving", "San Diego"], "_id": { - "$oid": "66723d958f368f285d303db2" + "$oid": "6674c30595590f9fd9459079" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1604,15 +1604,15 @@ "cohort": "45", "jobTitle": "Software Development Engineer", "industry": "Web Services / Cloud Computing", - "cities": [], + "cities": ["San Diego", "Norfolk", "Dallas"], "_id": { - "$oid": "66723d958f368f285d303db3" + "$oid": "6674c30595590f9fd945907a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1625,15 +1625,15 @@ "cohort": "33", "jobTitle": "Software Development Engineer I (L4)", "industry": "Cloud Computing", - "cities": ["Henderson", "Mexico City"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303db4" + "$oid": "6674c30595590f9fd945907b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1646,15 +1646,15 @@ "cohort": "17", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Anaheim"], + "cities": ["New Orleans", "St. Petersburg", "Scottsdale"], "_id": { - "$oid": "66723d958f368f285d303db5" + "$oid": "6674c30595590f9fd945907c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1667,15 +1667,15 @@ "cohort": "2", "jobTitle": "Software Development Engineer 1", "industry": "cloud computing", - "cities": ["Henderson", "Riverside"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303db6" + "$oid": "6674c30595590f9fd945907d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1688,15 +1688,15 @@ "cohort": "5", "jobTitle": "Director, Front-End Development", "industry": "Entertainment", - "cities": ["Lubbock"], + "cities": ["Glendale", "Corpus Christi", "Milwaukee"], "_id": { - "$oid": "66723d958f368f285d303db7" + "$oid": "6674c30595590f9fd945907e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1709,15 +1709,15 @@ "cohort": "6", "jobTitle": "Associate React Developer", "industry": "Other", - "cities": [], + "cities": ["Toronto"], "_id": { - "$oid": "66723d958f368f285d303db8" + "$oid": "6674c30595590f9fd945907f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1730,15 +1730,15 @@ "cohort": "48", "jobTitle": "Junior Software Engineer", "industry": "Retail", - "cities": ["Mumbai", "Arlington"], + "cities": ["Fort Wayne"], "_id": { - "$oid": "66723d958f368f285d303db9" + "$oid": "6674c30595590f9fd9459080" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1751,15 +1751,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Scottsdale"], + "cities": ["Tampa"], "_id": { - "$oid": "66723d958f368f285d303dba" + "$oid": "6674c30595590f9fd9459081" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1774,13 +1774,13 @@ "industry": "Banking", "cities": [], "_id": { - "$oid": "66723d958f368f285d303dbb" + "$oid": "6674c30595590f9fd9459082" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1793,15 +1793,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Fort Worth", "Sacramento", "Chesapeake"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303dbc" + "$oid": "6674c30595590f9fd9459083" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1814,15 +1814,15 @@ "cohort": "5", "jobTitle": "Engineer I", "industry": "", - "cities": ["Durham"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303dbd" + "$oid": "6674c30595590f9fd9459084" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1835,15 +1835,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Oakland", "Miami", "Indianapolis"], + "cities": ["Fresno", "Norfolk", "Henderson"], "_id": { - "$oid": "66723d958f368f285d303dbe" + "$oid": "6674c30595590f9fd9459085" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1856,15 +1856,15 @@ "cohort": "47", "jobTitle": "Systems Engineer I", "industry": "Real Estate", - "cities": [], + "cities": ["Santa Ana", "London", "Long Beach"], "_id": { - "$oid": "66723d958f368f285d303dbf" + "$oid": "6674c30595590f9fd9459086" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1877,15 +1877,15 @@ "cohort": "46", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["Plano", "San Antonio", "Omaha"], + "cities": ["Greensboro"], "_id": { - "$oid": "66723d958f368f285d303dc0" + "$oid": "6674c30595590f9fd9459087" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1898,15 +1898,15 @@ "cohort": "5", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Chandler", "Raleigh", "Tucson"], + "cities": ["Cincinnati"], "_id": { - "$oid": "66723d958f368f285d303dc1" + "$oid": "6674c30595590f9fd9459088" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1919,15 +1919,15 @@ "cohort": "7", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": [], + "cities": ["Washington", "Phoenix"], "_id": { - "$oid": "66723d958f368f285d303dc2" + "$oid": "6674c30595590f9fd9459089" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1940,15 +1940,15 @@ "cohort": "46", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Buffalo", "Stockton", "Toronto"], + "cities": ["Portland", "Houston"], "_id": { - "$oid": "66723d958f368f285d303dc3" + "$oid": "6674c30595590f9fd945908a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1961,15 +1961,15 @@ "cohort": "18", "jobTitle": "Lead Developer", "industry": "Digital Marketing", - "cities": [], + "cities": ["Saint Paul", "Henderson"], "_id": { - "$oid": "66723d958f368f285d303dc4" + "$oid": "6674c30595590f9fd945908b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -1982,15 +1982,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Education", - "cities": ["Raleigh", "Minneapolis", "Oklahoma City"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303dc5" + "$oid": "6674c30595590f9fd945908c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2003,15 +2003,15 @@ "cohort": "27", "jobTitle": "Software Engineer", "industry": "Edtech", - "cities": [], + "cities": ["Jacksonville", "Tampa"], "_id": { - "$oid": "66723d958f368f285d303dc6" + "$oid": "6674c30595590f9fd945908d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2024,15 +2024,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "Computer Software", - "cities": [], + "cities": ["Charlotte", "Anchorage", "Pittsburgh"], "_id": { - "$oid": "66723d958f368f285d303dc7" + "$oid": "6674c30595590f9fd945908e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2045,15 +2045,15 @@ "cohort": "43", "jobTitle": "Full Stack Software Engineer", "industry": "Genealogy", - "cities": ["San Antonio"], + "cities": ["Chandler", "Plano"], "_id": { - "$oid": "66723d958f368f285d303dc8" + "$oid": "6674c30595590f9fd945908f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2066,15 +2066,15 @@ "cohort": "12", "jobTitle": "Senior Software Engineer", "industry": "Geneology", - "cities": [], + "cities": ["Orlando"], "_id": { - "$oid": "66723d958f368f285d303dc9" + "$oid": "6674c30595590f9fd9459090" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2087,15 +2087,15 @@ "cohort": "56", "jobTitle": "Software Engineer", "industry": "Security", - "cities": ["Mumbai", "Scottsdale", "Henderson"], + "cities": ["Anaheim", "Wichita", "Tulsa"], "_id": { - "$oid": "66723d958f368f285d303dca" + "$oid": "6674c30595590f9fd9459091" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2108,15 +2108,15 @@ "cohort": "3", "jobTitle": "Senior Front-end React Developer", "industry": "Beverages", - "cities": [], + "cities": ["Buffalo", "Greensboro", "Portland"], "_id": { - "$oid": "66723d958f368f285d303dcb" + "$oid": "6674c30595590f9fd9459092" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2131,13 +2131,13 @@ "industry": "Advertisement and Media", "cities": [], "_id": { - "$oid": "66723d958f368f285d303dcc" + "$oid": "6674c30595590f9fd9459093" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2152,13 +2152,13 @@ "industry": "Marketing", "cities": [], "_id": { - "$oid": "66723d958f368f285d303dcd" + "$oid": "6674c30595590f9fd9459094" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2171,15 +2171,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": [], + "cities": ["St. Petersburg"], "_id": { - "$oid": "66723d958f368f285d303dce" + "$oid": "6674c30595590f9fd9459095" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2192,15 +2192,15 @@ "cohort": "41", "jobTitle": "Software Engineer", "industry": "Bank", - "cities": [], + "cities": ["Cincinnati"], "_id": { - "$oid": "66723d958f368f285d303dcf" + "$oid": "6674c30595590f9fd9459096" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2213,15 +2213,15 @@ "cohort": "26", "jobTitle": "Software Engineer", "industry": "Technology", - "cities": ["Atlanta"], + "cities": ["Tucson", "Mumbai"], "_id": { - "$oid": "66723d958f368f285d303dd0" + "$oid": "6674c30595590f9fd9459097" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2234,15 +2234,15 @@ "cohort": "24", "jobTitle": "Software Engineer II", "industry": "Aviation & Aerospace", - "cities": ["Mumbai"], + "cities": ["Paris", "Miami", "Albuquerque"], "_id": { - "$oid": "66723d958f368f285d303dd1" + "$oid": "6674c30595590f9fd9459098" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2255,15 +2255,15 @@ "cohort": "37", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["Orlando"], + "cities": ["Houston", "Portland", "Mesa"], "_id": { - "$oid": "66723d958f368f285d303dd2" + "$oid": "6674c30595590f9fd9459099" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2276,15 +2276,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["Portland", "Anchorage"], + "cities": ["Fort Worth", "St. Petersburg", "Mesa"], "_id": { - "$oid": "66723d958f368f285d303dd3" + "$oid": "6674c30595590f9fd945909a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2297,15 +2297,15 @@ "cohort": "26", "jobTitle": "Software Engineer", "industry": "Tech", - "cities": ["San Francisco", "Lubbock", "Chula Vista"], + "cities": ["Santa Ana", "London"], "_id": { - "$oid": "66723d958f368f285d303dd4" + "$oid": "6674c30595590f9fd945909b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2318,15 +2318,15 @@ "cohort": "42", "jobTitle": "Frontend Engineer", "industry": "Technology", - "cities": ["Winston-Salem", "Tulsa", "Los Angeles"], + "cities": ["Denver", "Fort Wayne"], "_id": { - "$oid": "66723d958f368f285d303dd5" + "$oid": "6674c30595590f9fd945909c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2339,15 +2339,15 @@ "cohort": "13", "jobTitle": "software engineer", "industry": "Software / Tech", - "cities": ["Baltimore", "Chandler"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303dd6" + "$oid": "6674c30595590f9fd945909d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2360,15 +2360,15 @@ "cohort": "15", "jobTitle": "Front End Engineer", "industry": "Security", - "cities": ["Corpus Christi", "Phoenix"], + "cities": ["Chandler", "Portland", "San Jose"], "_id": { - "$oid": "66723d958f368f285d303dd7" + "$oid": "6674c30595590f9fd945909e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2381,15 +2381,15 @@ "cohort": "1", "jobTitle": "Intermediate Web Applications Developer", "industry": "Retail", - "cities": [], + "cities": ["Fort Wayne", "Saint Paul"], "_id": { - "$oid": "66723d958f368f285d303dd8" + "$oid": "6674c30595590f9fd945909f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2402,15 +2402,15 @@ "cohort": "27", "jobTitle": "Software Engineer 1", "industry": "Energy Tech", - "cities": ["Sacramento", "Pittsburgh"], + "cities": ["Sydney", "Omaha"], "_id": { - "$oid": "66723d958f368f285d303dd9" + "$oid": "6674c30595590f9fd94590a0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2423,15 +2423,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "Renewable Energy", - "cities": ["Fort Worth", "Atlanta"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303dda" + "$oid": "6674c30595590f9fd94590a1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2444,15 +2444,15 @@ "cohort": "19", "jobTitle": "Software Engineer", "industry": "Energy - Renewable Energy", - "cities": [], + "cities": ["Fresno", "Baltimore", "Louisville"], "_id": { - "$oid": "66723d958f368f285d303ddb" + "$oid": "6674c30595590f9fd94590a2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2465,15 +2465,15 @@ "cohort": "22", "jobTitle": "Full Stack Engineer", "industry": "Renewable Energy", - "cities": ["Colorado Springs", "Toledo"], + "cities": ["Indianapolis", "Detroit"], "_id": { - "$oid": "66723d958f368f285d303ddc" + "$oid": "6674c30595590f9fd94590a3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2486,15 +2486,15 @@ "cohort": "31", "jobTitle": "Full-Stack Software Engineer I", "industry": "Software / Tech", - "cities": ["Scottsdale", "Denver"], + "cities": ["London", "Fort Wayne", "Buffalo"], "_id": { - "$oid": "66723d958f368f285d303ddd" + "$oid": "6674c30595590f9fd94590a4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2507,15 +2507,15 @@ "cohort": "48", "jobTitle": "Software Engineer", "industry": "Cloud Services", - "cities": ["Lincoln", "Irvine"], + "cities": ["San Antonio", "Denver", "Anchorage"], "_id": { - "$oid": "66723d958f368f285d303dde" + "$oid": "6674c30595590f9fd94590a5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2528,15 +2528,15 @@ "cohort": "43", "jobTitle": "Software Engineer", "industry": "Cloud Video", - "cities": ["Chandler", "Tampa"], + "cities": ["Seattle", "Sydney", "San Antonio"], "_id": { - "$oid": "66723d958f368f285d303ddf" + "$oid": "6674c30595590f9fd94590a6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2549,15 +2549,15 @@ "cohort": "55", "jobTitle": "Software Engineer", "industry": "Retail", - "cities": ["Detroit", "Virginia Beach", "Wichita"], + "cities": ["London", "Greensboro"], "_id": { - "$oid": "66723d958f368f285d303de0" + "$oid": "6674c30595590f9fd94590a7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2570,15 +2570,15 @@ "cohort": "21", "jobTitle": "Senior Engineer 1 (Fullstack)", "industry": "Art", - "cities": [], + "cities": ["Chesapeake", "Lincoln"], "_id": { - "$oid": "66723d958f368f285d303de1" + "$oid": "6674c30595590f9fd94590a8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2591,15 +2591,15 @@ "cohort": "4", "jobTitle": "Fullstack Engineer", "industry": "Other", - "cities": ["Omaha", "Toronto"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303de2" + "$oid": "6674c30595590f9fd94590a9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2612,15 +2612,15 @@ "cohort": "52", "jobTitle": "Front End Developer", "industry": "Fintech", - "cities": ["Cincinnati", "Miami"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303de3" + "$oid": "6674c30595590f9fd94590aa" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2633,15 +2633,15 @@ "cohort": "22", "jobTitle": "Full Stack Engineer", "industry": "Healthcare", - "cities": ["Fort Wayne", "Cincinnati", "San Antonio"], + "cities": ["Honolulu"], "_id": { - "$oid": "66723d958f368f285d303de4" + "$oid": "6674c30595590f9fd94590ab" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2654,15 +2654,15 @@ "cohort": "51", "jobTitle": "Frontend Software Engineer", "industry": "Software / Tech", - "cities": ["Berlin", "Irvine"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303de5" + "$oid": "6674c30595590f9fd94590ac" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2675,15 +2675,15 @@ "cohort": "4", "jobTitle": "Software Engineer, Backend", "industry": "Green Fintech", - "cities": [], + "cities": ["Atlanta", "Beijing"], "_id": { - "$oid": "66723d958f368f285d303de6" + "$oid": "6674c30595590f9fd94590ad" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2696,15 +2696,15 @@ "cohort": "27", "jobTitle": "Senior Software Engineer", "industry": "Space-tech", - "cities": ["Fort Worth"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303de7" + "$oid": "6674c30595590f9fd94590ae" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2717,15 +2717,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Tech Insurance", - "cities": ["Oklahoma City", "Raleigh", "Fort Wayne"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303de8" + "$oid": "6674c30595590f9fd94590af" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2738,15 +2738,15 @@ "cohort": "23", "jobTitle": "Software Engineer 3", "industry": "Tech Insurance", - "cities": [], + "cities": ["Lexington", "Oakland"], "_id": { - "$oid": "66723d958f368f285d303de9" + "$oid": "6674c30595590f9fd94590b0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2759,15 +2759,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Beijing"], + "cities": ["Scottsdale", "North Las Vegas"], "_id": { - "$oid": "66723d958f368f285d303dea" + "$oid": "6674c30595590f9fd94590b1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2780,15 +2780,15 @@ "cohort": "38", "jobTitle": "Backend Software Engineer", "industry": "Entertainment", - "cities": ["Lexington"], + "cities": ["Baltimore"], "_id": { - "$oid": "66723d958f368f285d303deb" + "$oid": "6674c30595590f9fd94590b2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2801,15 +2801,15 @@ "cohort": "33", "jobTitle": "Database Developer", "industry": "Telecommunications", - "cities": ["London"], + "cities": ["Minneapolis", "Bakersfield", "Los Angeles"], "_id": { - "$oid": "66723d958f368f285d303dec" + "$oid": "6674c30595590f9fd94590b3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2822,15 +2822,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Santa Ana", "Garland"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ded" + "$oid": "6674c30595590f9fd94590b4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2843,15 +2843,15 @@ "cohort": "38", "jobTitle": "Analytics Engineer", "industry": "Healthcare", - "cities": [], + "cities": ["Baltimore", "Jacksonville"], "_id": { - "$oid": "66723d958f368f285d303dee" + "$oid": "6674c30595590f9fd94590b5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2864,15 +2864,15 @@ "cohort": "40", "jobTitle": "Software Engineer P3", "industry": "Project management?", - "cities": ["Greensboro"], + "cities": ["Tulsa", "Arlington"], "_id": { - "$oid": "66723d958f368f285d303def" + "$oid": "6674c30595590f9fd94590b6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2885,15 +2885,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "Tech", - "cities": [], + "cities": ["Bakersfield", "Pittsburgh"], "_id": { - "$oid": "66723d958f368f285d303df0" + "$oid": "6674c30595590f9fd94590b7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2906,15 +2906,15 @@ "cohort": "20", "jobTitle": "Software Engineer", "industry": "Computer Software", - "cities": ["Buffalo", "Miami"], + "cities": ["Beijing", "Memphis"], "_id": { - "$oid": "66723d958f368f285d303df1" + "$oid": "6674c30595590f9fd94590b8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2927,15 +2927,15 @@ "cohort": "34", "jobTitle": "Full Stack Developer", "industry": "Entertainment", - "cities": ["Phoenix", "Mumbai", "Columbus"], + "cities": ["Tokyo", "Laredo"], "_id": { - "$oid": "66723d958f368f285d303df2" + "$oid": "6674c30595590f9fd94590b9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.057Z" }, "__v": 0 }, @@ -2948,15 +2948,15 @@ "cohort": "27", "jobTitle": "Software Engineer, Frontend - L4", "industry": "E-commerce", - "cities": ["Cincinnati", "Washington", "El Paso"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303df3" + "$oid": "6674c30595590f9fd94590ba" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -2969,15 +2969,15 @@ "cohort": "7", "jobTitle": "Senior Product Manager", "industry": "Marketing/Advertising", - "cities": ["St. Petersburg"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303df4" + "$oid": "6674c30595590f9fd94590bb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -2990,15 +2990,15 @@ "cohort": "38", "jobTitle": "Associate Software Engineer", "industry": "Entertainment", - "cities": ["Raleigh"], + "cities": ["Seattle"], "_id": { - "$oid": "66723d958f368f285d303df5" + "$oid": "6674c30595590f9fd94590bc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3011,15 +3011,15 @@ "cohort": "42", "jobTitle": "Software Engineer", "industry": "FinTech", - "cities": [], + "cities": ["Oakland", "Jersey City"], "_id": { - "$oid": "66723d958f368f285d303df6" + "$oid": "6674c30595590f9fd94590bd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3032,15 +3032,15 @@ "cohort": "6", "jobTitle": "Software Engineer", "industry": "Software/Tech", - "cities": ["Baltimore", "Toronto"], + "cities": ["Louisville", "Toledo"], "_id": { - "$oid": "66723d958f368f285d303df7" + "$oid": "6674c30595590f9fd94590be" }, "createdAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.814Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3053,15 +3053,15 @@ "cohort": "14", "jobTitle": "Senior Software Engineer", "industry": "FinTech", - "cities": ["Milwaukee"], + "cities": ["Lincoln"], "_id": { - "$oid": "66723d958f368f285d303df8" + "$oid": "6674c30595590f9fd94590bf" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3074,15 +3074,15 @@ "cohort": "11", "jobTitle": "Software Engineer", "industry": "Artificial Intelligence", - "cities": [], + "cities": ["Sydney", "Reno"], "_id": { - "$oid": "66723d958f368f285d303df9" + "$oid": "6674c30595590f9fd94590c0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3095,15 +3095,15 @@ "cohort": "15", "jobTitle": "Software Engineer", "industry": "Loans", - "cities": ["Wichita"], + "cities": ["Long Beach", "Saint Paul", "Fort Wayne"], "_id": { - "$oid": "66723d958f368f285d303dfa" + "$oid": "6674c30595590f9fd94590c1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3116,15 +3116,15 @@ "cohort": "34", "jobTitle": "Front End Lead Developer", "industry": "Cybersecurity", - "cities": ["Durham", "Boston", "Phoenix"], + "cities": ["Saint Paul", "Tulsa", "Riverside"], "_id": { - "$oid": "66723d958f368f285d303dfb" + "$oid": "6674c30595590f9fd94590c2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3137,15 +3137,15 @@ "cohort": "37", "jobTitle": "Full Stack Software Engineer", "industry": "Fintech", - "cities": ["Washington"], + "cities": ["Louisville", "Lexington"], "_id": { - "$oid": "66723d958f368f285d303dfc" + "$oid": "6674c30595590f9fd94590c3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3160,13 +3160,13 @@ "industry": "Software / Tech", "cities": [], "_id": { - "$oid": "66723d958f368f285d303dfd" + "$oid": "6674c30595590f9fd94590c4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3179,15 +3179,15 @@ "cohort": "35", "jobTitle": "Full Stack Software Engineer", "industry": "Business Tech/Enterprise Tech", - "cities": [], + "cities": ["Columbus", "Saint Paul", "Irving"], "_id": { - "$oid": "66723d958f368f285d303dfe" + "$oid": "6674c30595590f9fd94590c5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3200,15 +3200,15 @@ "cohort": "41", "jobTitle": "Software Engineer II", "industry": "Construction Tech", - "cities": ["Tampa"], + "cities": ["Berlin", "Denver", "Long Beach"], "_id": { - "$oid": "66723d958f368f285d303dff" + "$oid": "6674c30595590f9fd94590c6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3221,15 +3221,15 @@ "cohort": "3", "jobTitle": "Software Development Engineer", "industry": "Tech", - "cities": ["Buffalo", "Milwaukee", "Sydney"], + "cities": ["New York", "Lubbock", "Chesapeake"], "_id": { - "$oid": "66723d958f368f285d303e00" + "$oid": "6674c30595590f9fd94590c7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3242,15 +3242,15 @@ "cohort": "49", "jobTitle": "SDE1", "industry": "Cloud Services", - "cities": ["Raleigh"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e01" + "$oid": "6674c30595590f9fd94590c8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3263,15 +3263,15 @@ "cohort": "20", "jobTitle": "Software Development Engineer II", "industry": "Tech", - "cities": ["London"], + "cities": ["Madison"], "_id": { - "$oid": "66723d958f368f285d303e02" + "$oid": "6674c30595590f9fd94590c9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3284,15 +3284,15 @@ "cohort": "20", "jobTitle": "Software Development Engineer", "industry": "Tech", - "cities": ["San Jose", "Fort Worth", "Columbus"], + "cities": ["Honolulu", "Beijing"], "_id": { - "$oid": "66723d958f368f285d303e03" + "$oid": "6674c30595590f9fd94590ca" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3305,15 +3305,15 @@ "cohort": "10", "jobTitle": "Software Developer", "industry": "IT Services", - "cities": [], + "cities": ["Louisville", "Cincinnati", "Minneapolis"], "_id": { - "$oid": "66723d958f368f285d303e04" + "$oid": "6674c30595590f9fd94590cb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3326,15 +3326,15 @@ "cohort": "17", "jobTitle": "Software Engineer", "industry": "Healthtech/Healthcare", - "cities": ["Omaha"], + "cities": ["Raleigh", "Lexington", "Tampa"], "_id": { - "$oid": "66723d958f368f285d303e05" + "$oid": "6674c30595590f9fd94590cc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3347,15 +3347,15 @@ "cohort": "20", "jobTitle": "Software Engineer", "industry": "Public Safety", - "cities": ["Toledo"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e06" + "$oid": "6674c30595590f9fd94590cd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3368,15 +3368,15 @@ "cohort": "25", "jobTitle": "Nodejs / microservices software engineer", "industry": "E-commerce", - "cities": ["Irving", "Tampa"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e07" + "$oid": "6674c30595590f9fd94590ce" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3389,15 +3389,15 @@ "cohort": "31", "jobTitle": "Frontend Developer", "industry": "Entertainment? Wed-tech? lol idk it's pretty niche", - "cities": ["San Francisco"], + "cities": ["Anaheim"], "_id": { - "$oid": "66723d958f368f285d303e08" + "$oid": "6674c30595590f9fd94590cf" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3410,15 +3410,15 @@ "cohort": "25", "jobTitle": "Full Stack Engineer", "industry": "Entertainment", - "cities": ["Portland", "Berlin", "Raleigh"], + "cities": ["Las Vegas", "Minneapolis"], "_id": { - "$oid": "66723d958f368f285d303e09" + "$oid": "6674c30595590f9fd94590d0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3431,15 +3431,15 @@ "cohort": "26", "jobTitle": "AVP, Software Engineer", "industry": "Fintech", - "cities": ["Sacramento", "St. Louis"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e0a" + "$oid": "6674c30595590f9fd94590d1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3452,15 +3452,15 @@ "cohort": "12", "jobTitle": "Senior Backend Engineer", "industry": "Media", - "cities": [], + "cities": ["Lubbock", "Charlotte"], "_id": { - "$oid": "66723d958f368f285d303e0b" + "$oid": "6674c30595590f9fd94590d2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3473,15 +3473,15 @@ "cohort": "25", "jobTitle": "Node / React Developer", "industry": "Agricultural Science", - "cities": [], + "cities": ["Philadelphia", "Lincoln"], "_id": { - "$oid": "66723d958f368f285d303e0c" + "$oid": "6674c30595590f9fd94590d3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3494,15 +3494,15 @@ "cohort": "19", "jobTitle": "Full Stack Engineer", "industry": "Agriculture", - "cities": ["San Antonio", "Wichita"], + "cities": ["El Paso", "Seattle"], "_id": { - "$oid": "66723d958f368f285d303e0d" + "$oid": "6674c30595590f9fd94590d4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3515,15 +3515,15 @@ "cohort": "17", "jobTitle": "Software Engineer", "industry": "Healthtech/Healthcare", - "cities": ["Detroit", "Winston-Salem", "Cleveland"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e0e" + "$oid": "6674c30595590f9fd94590d5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3536,15 +3536,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Telecommunications", - "cities": ["St. Petersburg"], + "cities": ["Scottsdale", "Gilbert", "Chesapeake"], "_id": { - "$oid": "66723d958f368f285d303e0f" + "$oid": "6674c30595590f9fd94590d6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3557,15 +3557,15 @@ "cohort": "7", "jobTitle": "Full Stack Developer", "industry": "Telecommunications", - "cities": ["St. Petersburg", "Bakersfield", "Lincoln"], + "cities": ["Raleigh"], "_id": { - "$oid": "66723d958f368f285d303e10" + "$oid": "6674c30595590f9fd94590d7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3578,15 +3578,15 @@ "cohort": "25", "jobTitle": "Full stack software engineer", "industry": "Compliance", - "cities": ["Austin", "Durham"], + "cities": ["Detroit", "Fresno", "Newark"], "_id": { - "$oid": "66723d958f368f285d303e11" + "$oid": "6674c30595590f9fd94590d8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3601,13 +3601,13 @@ "industry": "Healthcare", "cities": [], "_id": { - "$oid": "66723d958f368f285d303e12" + "$oid": "6674c30595590f9fd94590d9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3620,15 +3620,15 @@ "cohort": "39", "jobTitle": "Senior Software Engineer", "industry": "Hospitality", - "cities": [], + "cities": ["Washington"], "_id": { - "$oid": "66723d958f368f285d303e13" + "$oid": "6674c30595590f9fd94590da" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3641,15 +3641,15 @@ "cohort": "39", "jobTitle": "Software Engineer", "industry": "Software", - "cities": ["Pittsburgh", "Riverside", "Long Beach"], + "cities": ["Houston"], "_id": { - "$oid": "66723d958f368f285d303e14" + "$oid": "6674c30595590f9fd94590db" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3662,15 +3662,15 @@ "cohort": "43", "jobTitle": "Product Support Engineer", "industry": "Not sure", - "cities": ["San Antonio", "Orlando", "Omaha"], + "cities": ["Sรฃo Paulo", "Gilbert"], "_id": { - "$oid": "66723d958f368f285d303e15" + "$oid": "6674c30595590f9fd94590dc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3683,15 +3683,15 @@ "cohort": "39", "jobTitle": "Associate Software Engineer", "industry": "Commercial Real Estate", - "cities": ["Corpus Christi", "Colorado Springs", "Cincinnati"], + "cities": ["San Diego", "Washington", "Las Vegas"], "_id": { - "$oid": "66723d958f368f285d303e16" + "$oid": "6674c30595590f9fd94590dd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3706,13 +3706,13 @@ "industry": "Data analytics", "cities": [], "_id": { - "$oid": "66723d958f368f285d303e17" + "$oid": "6674c30595590f9fd94590de" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3725,15 +3725,15 @@ "cohort": "21", "jobTitle": "Sr. Software Engineer", "industry": "", - "cities": ["Glendale", "Sydney"], + "cities": ["Houston"], "_id": { - "$oid": "66723d958f368f285d303e18" + "$oid": "6674c30595590f9fd94590df" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3746,15 +3746,15 @@ "cohort": "5", "jobTitle": "Full-Stack Developer", "industry": "Auction Services", - "cities": ["Portland"], + "cities": ["Riverside", "New York", "Saint Paul"], "_id": { - "$oid": "66723d958f368f285d303e19" + "$oid": "6674c30595590f9fd94590e0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3767,15 +3767,15 @@ "cohort": "1", "jobTitle": "Software Engineer 1", "industry": "Data quality", - "cities": [], + "cities": ["San Antonio", "Laredo", "Chesapeake"], "_id": { - "$oid": "66723d958f368f285d303e1a" + "$oid": "6674c30595590f9fd94590e1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3788,15 +3788,15 @@ "cohort": "25", "jobTitle": "Senior Full Stack Software Engineer", "industry": "Cyber Security", - "cities": ["Buffalo", "Fresno"], + "cities": ["Irvine", "Tulsa", "Norfolk"], "_id": { - "$oid": "66723d958f368f285d303e1b" + "$oid": "6674c30595590f9fd94590e2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3809,15 +3809,15 @@ "cohort": "3", "jobTitle": "Software engineer 2 - Frontend", "industry": "Fintech", - "cities": ["Memphis", "Anaheim"], + "cities": ["Dallas"], "_id": { - "$oid": "66723d958f368f285d303e1c" + "$oid": "6674c30595590f9fd94590e3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3830,15 +3830,15 @@ "cohort": "21", "jobTitle": "Software Engineer", "industry": "Biotech", - "cities": [], + "cities": ["New Orleans", "Columbus"], "_id": { - "$oid": "66723d958f368f285d303e1d" + "$oid": "6674c30595590f9fd94590e4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3851,15 +3851,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Fort Worth", "Newark", "Irving"], + "cities": ["Greensboro", "Bakersfield", "Buffalo"], "_id": { - "$oid": "66723d958f368f285d303e1e" + "$oid": "6674c30595590f9fd94590e5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3872,15 +3872,15 @@ "cohort": "41", "jobTitle": "Junior Developer and Consultant", "industry": "Computer Software", - "cities": ["Los Angeles", "Minneapolis", "Paris"], + "cities": ["Columbus"], "_id": { - "$oid": "66723d958f368f285d303e1f" + "$oid": "6674c30595590f9fd94590e6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3893,15 +3893,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Louisville"], + "cities": ["Anaheim"], "_id": { - "$oid": "66723d958f368f285d303e20" + "$oid": "6674c30595590f9fd94590e7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3914,15 +3914,15 @@ "cohort": "37", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Cleveland"], + "cities": ["Chandler", "Irving"], "_id": { - "$oid": "66723d958f368f285d303e21" + "$oid": "6674c30595590f9fd94590e8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3935,15 +3935,15 @@ "cohort": "22", "jobTitle": "DevOps Engineer", "industry": "", - "cities": ["Pittsburgh", "Toronto", "Buffalo"], + "cities": ["Norfolk"], "_id": { - "$oid": "66723d958f368f285d303e22" + "$oid": "6674c30595590f9fd94590e9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3958,13 +3958,13 @@ "industry": "Other", "cities": [], "_id": { - "$oid": "66723d958f368f285d303e23" + "$oid": "6674c30595590f9fd94590ea" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3977,15 +3977,15 @@ "cohort": "7", "jobTitle": "Support Software Engineer", "industry": "Software Solutions/Developer Tools", - "cities": [], + "cities": ["Irvine", "Henderson"], "_id": { - "$oid": "66723d958f368f285d303e24" + "$oid": "6674c30595590f9fd94590eb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -3998,15 +3998,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Sydney", "Berlin"], "_id": { - "$oid": "66723d958f368f285d303e25" + "$oid": "6674c30595590f9fd94590ec" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4019,15 +4019,15 @@ "cohort": "Beta", "jobTitle": "Sr. Product Manager", "industry": "Health Care Tech", - "cities": ["Orlando"], + "cities": ["Toledo", "Saint Paul"], "_id": { - "$oid": "66723d958f368f285d303e26" + "$oid": "6674c30595590f9fd94590ed" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4040,15 +4040,15 @@ "cohort": "24", "jobTitle": "Software Development Engineer", "industry": "Insurance", - "cities": ["London", "Omaha", "Long Beach"], + "cities": ["Mumbai", "Milwaukee", "Oakland"], "_id": { - "$oid": "66723d958f368f285d303e27" + "$oid": "6674c30595590f9fd94590ee" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4061,15 +4061,15 @@ "cohort": "13", "jobTitle": "Frontend Engineer", "industry": "Fintech", - "cities": ["Philadelphia", "Minneapolis"], + "cities": ["New York", "Virginia Beach", "Reno"], "_id": { - "$oid": "66723d958f368f285d303e28" + "$oid": "6674c30595590f9fd94590ef" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4082,15 +4082,15 @@ "cohort": "24", "jobTitle": "Senior Backend Engineer", "industry": "Technology", - "cities": ["Lincoln"], + "cities": ["Austin", "Scottsdale", "Anchorage"], "_id": { - "$oid": "66723d958f368f285d303e29" + "$oid": "6674c30595590f9fd94590f0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4103,15 +4103,15 @@ "cohort": "49", "jobTitle": "Jr Software Developer", "industry": "Other", - "cities": ["Riverside", "Anaheim"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e2a" + "$oid": "6674c30595590f9fd94590f1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4124,15 +4124,15 @@ "cohort": "28", "jobTitle": "Senior Fullstack Engineer", "industry": "Financial,Software,Media,Data", - "cities": ["Oklahoma City", "Wichita", "Phoenix"], + "cities": ["Norfolk", "Memphis"], "_id": { - "$oid": "66723d958f368f285d303e2b" + "$oid": "6674c30595590f9fd94590f2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4147,13 +4147,13 @@ "industry": "Fintech", "cities": [], "_id": { - "$oid": "66723d958f368f285d303e2c" + "$oid": "6674c30595590f9fd94590f3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4166,15 +4166,15 @@ "cohort": "21", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Beijing", "Chicago"], + "cities": ["El Paso", "Tampa"], "_id": { - "$oid": "66723d958f368f285d303e2d" + "$oid": "6674c30595590f9fd94590f4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4187,15 +4187,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "Fin-Tech", - "cities": [], + "cities": ["Stockton", "Oakland", "Atlanta"], "_id": { - "$oid": "66723d958f368f285d303e2e" + "$oid": "6674c30595590f9fd94590f5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4208,15 +4208,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["St. Petersburg", "Oklahoma City"], + "cities": ["Houston", "Riverside", "Norfolk"], "_id": { - "$oid": "66723d958f368f285d303e2f" + "$oid": "6674c30595590f9fd94590f6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4229,15 +4229,15 @@ "cohort": "31", "jobTitle": "Web Application Architect I", "industry": "Other", - "cities": ["Jersey City"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e30" + "$oid": "6674c30595590f9fd94590f7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4250,15 +4250,15 @@ "cohort": "11", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Pittsburgh", "Tampa", "Nashville"], + "cities": ["Sรฃo Paulo", "Greensboro"], "_id": { - "$oid": "66723d958f368f285d303e31" + "$oid": "6674c30595590f9fd94590f8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4271,15 +4271,15 @@ "cohort": "44", "jobTitle": "Senior Software Engineer (Consultant)", "industry": "Fintech", - "cities": ["Reno"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e32" + "$oid": "6674c30595590f9fd94590f9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4292,15 +4292,15 @@ "cohort": "27", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Philadelphia", "Lexington", "Atlanta"], + "cities": ["Norfolk", "Raleigh"], "_id": { - "$oid": "66723d958f368f285d303e33" + "$oid": "6674c30595590f9fd94590fa" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4313,15 +4313,15 @@ "cohort": "33", "jobTitle": "Senior React Node Software Engineer", "industry": "Healthcare", - "cities": ["Kansas City", "San Antonio"], + "cities": ["Philadelphia"], "_id": { - "$oid": "66723d958f368f285d303e34" + "$oid": "6674c30595590f9fd94590fb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4334,15 +4334,15 @@ "cohort": "47", "jobTitle": "Software Engineer I", "industry": "Aerospace", - "cities": [], + "cities": ["Washington", "Cleveland"], "_id": { - "$oid": "66723d958f368f285d303e35" + "$oid": "6674c30595590f9fd94590fc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4355,15 +4355,15 @@ "cohort": "49", "jobTitle": "Full-Stack Software Engineer", "industry": "Healthcare", - "cities": ["Atlanta", "Aurora"], + "cities": ["Memphis"], "_id": { - "$oid": "66723d958f368f285d303e36" + "$oid": "6674c30595590f9fd94590fd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4376,15 +4376,15 @@ "cohort": "23", "jobTitle": "Senior Software Engineer", "industry": "Healthcare", - "cities": ["Newark", "Columbus"], + "cities": ["Berlin"], "_id": { - "$oid": "66723d958f368f285d303e37" + "$oid": "6674c30595590f9fd94590fe" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4397,15 +4397,15 @@ "cohort": "4", "jobTitle": "Software Engineer (Managed Security Services)", "industry": "", - "cities": ["Raleigh", "Plano", "North Las Vegas"], + "cities": ["Henderson", "Denver"], "_id": { - "$oid": "66723d958f368f285d303e38" + "$oid": "6674c30595590f9fd94590ff" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4418,15 +4418,15 @@ "cohort": "12", "jobTitle": "Senior Full Stack Developer", "industry": "Fintech", - "cities": ["Tampa", "Cleveland", "Arlington"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e39" + "$oid": "6674c30595590f9fd9459100" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4439,15 +4439,15 @@ "cohort": "16", "jobTitle": "Support Engineer", "industry": "Ecommerce", - "cities": ["Anchorage", "Lexington"], + "cities": ["Toronto", "Omaha"], "_id": { - "$oid": "66723d958f368f285d303e3a" + "$oid": "6674c30595590f9fd9459101" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4462,13 +4462,13 @@ "industry": "Other", "cities": [], "_id": { - "$oid": "66723d958f368f285d303e3b" + "$oid": "6674c30595590f9fd9459102" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4481,15 +4481,15 @@ "cohort": "13", "jobTitle": "Sr. Consultant", "industry": "Consulting", - "cities": ["Austin", "El Paso"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e3c" + "$oid": "6674c30595590f9fd9459103" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4504,13 +4504,13 @@ "industry": "Business Management Tool", "cities": [], "_id": { - "$oid": "66723d958f368f285d303e3d" + "$oid": "6674c30595590f9fd9459104" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4523,15 +4523,15 @@ "cohort": "27", "jobTitle": "Backend Engineer I", "industry": "e-commerce", - "cities": ["Plano"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e3e" + "$oid": "6674c30595590f9fd9459105" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4544,15 +4544,15 @@ "cohort": "24", "jobTitle": "Software Engineer", "industry": "Consulting", - "cities": ["Berlin", "Paris"], + "cities": ["Laredo"], "_id": { - "$oid": "66723d958f368f285d303e3f" + "$oid": "6674c30595590f9fd9459106" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4565,15 +4565,15 @@ "cohort": "38", "jobTitle": "Web Developer", "industry": "Business Tech/Enterprise Tech", - "cities": ["Cincinnati", "Louisville", "Saint Paul"], + "cities": ["Fresno"], "_id": { - "$oid": "66723d958f368f285d303e40" + "$oid": "6674c30595590f9fd9459107" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4588,13 +4588,13 @@ "industry": "E-Commerce", "cities": [], "_id": { - "$oid": "66723d958f368f285d303e41" + "$oid": "6674c30595590f9fd9459108" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4607,15 +4607,15 @@ "cohort": "52", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Albuquerque"], + "cities": ["Tampa"], "_id": { - "$oid": "66723d958f368f285d303e42" + "$oid": "6674c30595590f9fd9459109" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4628,15 +4628,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Technology", - "cities": ["Glendale"], + "cities": ["Durham", "Winston-Salem"], "_id": { - "$oid": "66723d958f368f285d303e43" + "$oid": "6674c30595590f9fd945910a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4649,15 +4649,15 @@ "cohort": "23", "jobTitle": "Software Engineer 1", "industry": "Fintech", - "cities": [], + "cities": ["Philadelphia", "Omaha", "North Las Vegas"], "_id": { - "$oid": "66723d958f368f285d303e44" + "$oid": "6674c30595590f9fd945910b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4672,13 +4672,13 @@ "industry": "Gaming & Entertainment", "cities": [], "_id": { - "$oid": "66723d958f368f285d303e45" + "$oid": "6674c30595590f9fd945910c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.058Z" }, "__v": 0 }, @@ -4691,15 +4691,15 @@ "cohort": "25", "jobTitle": "Senior Software Engineer", "industry": "Cybersecurity", - "cities": ["Madison", "Buffalo"], + "cities": ["Garland"], "_id": { - "$oid": "66723d958f368f285d303e46" + "$oid": "6674c30595590f9fd945910d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -4712,15 +4712,15 @@ "cohort": "56", "jobTitle": "Software Engineer", "industry": "IT Services", - "cities": [], + "cities": ["Baltimore"], "_id": { - "$oid": "66723d958f368f285d303e47" + "$oid": "6674c30595590f9fd945910e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -4733,15 +4733,15 @@ "cohort": "43", "jobTitle": "Software Engineer", "industry": "Software Consulting", - "cities": ["Albuquerque", "Minneapolis", "Mumbai"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e48" + "$oid": "6674c30595590f9fd945910f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -4754,15 +4754,15 @@ "cohort": "48", "jobTitle": "Backend Node Engineer with Brooksource, Full stack Engineer with Northwestern Mutual", "industry": "Fintech", - "cities": ["Berlin", "Mesa"], + "cities": ["Raleigh", "San Francisco"], "_id": { - "$oid": "66723d958f368f285d303e49" + "$oid": "6674c30595590f9fd9459110" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -4775,15 +4775,15 @@ "cohort": "37", "jobTitle": "Senior Software Engineer", "industry": "Commercial Real Estate", - "cities": ["Phoenix", "Miami"], + "cities": ["Tulsa"], "_id": { - "$oid": "66723d958f368f285d303e4a" + "$oid": "6674c30595590f9fd9459111" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -4796,15 +4796,15 @@ "cohort": "43", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Fort Wayne", "Jersey City", "Henderson"], + "cities": ["Chicago", "Chesapeake", "Cincinnati"], "_id": { - "$oid": "66723d958f368f285d303e4b" + "$oid": "6674c30595590f9fd9459112" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -4817,15 +4817,15 @@ "cohort": "42", "jobTitle": "Software Engineer", "industry": "Finance (Credit union service organization)", - "cities": ["Houston", "Dallas", "Atlanta"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e4c" + "$oid": "6674c30595590f9fd9459113" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -4838,15 +4838,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Restaurant, Food, and Beverage", - "cities": ["Aurora", "Kansas City"], + "cities": ["Jersey City", "Minneapolis", "Pittsburgh"], "_id": { - "$oid": "66723d958f368f285d303e4d" + "$oid": "6674c30595590f9fd9459114" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -4859,15 +4859,15 @@ "cohort": "25", "jobTitle": "Web/API QA Automation Engineer", "industry": "Healthtech", - "cities": [], + "cities": ["Saint Paul", "Plano", "Raleigh"], "_id": { - "$oid": "66723d958f368f285d303e4e" + "$oid": "6674c30595590f9fd9459115" }, "createdAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.815Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -4880,15 +4880,15 @@ "cohort": "46", "jobTitle": "Software Engineer II - Cloud Backend", "industry": "Medical Equipment Manufacturing", - "cities": [], + "cities": ["Albuquerque"], "_id": { - "$oid": "66723d958f368f285d303e4f" + "$oid": "6674c30595590f9fd9459116" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -4901,15 +4901,15 @@ "cohort": "23", "jobTitle": "Forward Deployed Engineer", "industry": "Artificial intelligence", - "cities": ["Arlington", "San Francisco", "Mesa"], + "cities": ["Honolulu", "Toronto"], "_id": { - "$oid": "66723d958f368f285d303e50" + "$oid": "6674c30595590f9fd9459117" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -4922,15 +4922,15 @@ "cohort": "33", "jobTitle": "Forward Deployed Engineer", "industry": "Artificial Intelligence", - "cities": ["Glendale"], + "cities": ["Mexico City"], "_id": { - "$oid": "66723d958f368f285d303e51" + "$oid": "6674c30595590f9fd9459118" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -4943,15 +4943,15 @@ "cohort": "42", "jobTitle": "Front End Engineer", "industry": "TV Advertising", - "cities": ["Indianapolis"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e52" + "$oid": "6674c30595590f9fd9459119" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -4964,15 +4964,15 @@ "cohort": "33", "jobTitle": "Software Eng II", "industry": "Software / Tech", - "cities": ["Atlanta", "Orlando"], + "cities": ["Bakersfield"], "_id": { - "$oid": "66723d958f368f285d303e53" + "$oid": "6674c30595590f9fd945911a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -4985,15 +4985,15 @@ "cohort": "23", "jobTitle": "Front End Developer (internally Associate)", "industry": "Fintech", - "cities": ["Raleigh", "Phoenix"], + "cities": ["Baltimore", "Scottsdale"], "_id": { - "$oid": "66723d958f368f285d303e54" + "$oid": "6674c30595590f9fd945911b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5006,15 +5006,15 @@ "cohort": "3", "jobTitle": "Manager, Advanced Measurement & Analytics", "industry": "Data/Analytics/Cloud", - "cities": ["Lexington"], + "cities": ["Tulsa"], "_id": { - "$oid": "66723d958f368f285d303e55" + "$oid": "6674c30595590f9fd945911c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5027,15 +5027,15 @@ "cohort": "12", "jobTitle": "Front End Engineer", "industry": "Home Security", - "cities": ["Milwaukee", "Berlin", "Albuquerque"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e56" + "$oid": "6674c30595590f9fd945911d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5048,15 +5048,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Plano"], + "cities": ["Detroit"], "_id": { - "$oid": "66723d958f368f285d303e57" + "$oid": "6674c30595590f9fd945911e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5069,15 +5069,15 @@ "cohort": "41", "jobTitle": "Senior Associate Software Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Fort Wayne", "Virginia Beach"], "_id": { - "$oid": "66723d958f368f285d303e58" + "$oid": "6674c30595590f9fd945911f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5090,15 +5090,15 @@ "cohort": "5", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Gilbert", "Lincoln"], "_id": { - "$oid": "66723d958f368f285d303e59" + "$oid": "6674c30595590f9fd9459120" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5113,13 +5113,13 @@ "industry": "Fintech", "cities": [], "_id": { - "$oid": "66723d958f368f285d303e5a" + "$oid": "6674c30595590f9fd9459121" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5132,15 +5132,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Toronto"], "_id": { - "$oid": "66723d958f368f285d303e5b" + "$oid": "6674c30595590f9fd9459122" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5153,15 +5153,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["San Jose"], + "cities": ["St. Petersburg", "Albuquerque"], "_id": { - "$oid": "66723d958f368f285d303e5c" + "$oid": "6674c30595590f9fd9459123" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5174,15 +5174,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "Banking", - "cities": [], + "cities": ["Houston"], "_id": { - "$oid": "66723d958f368f285d303e5d" + "$oid": "6674c30595590f9fd9459124" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5195,15 +5195,15 @@ "cohort": "43", "jobTitle": "Software Engineer, Frontend", "industry": "Banking/Fintech", - "cities": [], + "cities": ["Milwaukee"], "_id": { - "$oid": "66723d958f368f285d303e5e" + "$oid": "6674c30595590f9fd9459125" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5216,15 +5216,15 @@ "cohort": "12", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Albuquerque", "Jersey City"], + "cities": ["Tucson", "Omaha", "Cincinnati"], "_id": { - "$oid": "66723d958f368f285d303e5f" + "$oid": "6674c30595590f9fd9459126" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5237,15 +5237,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "IT", - "cities": ["Chula Vista", "Chandler", "St. Petersburg"], + "cities": ["Seattle", "Glendale"], "_id": { - "$oid": "66723d958f368f285d303e60" + "$oid": "6674c30595590f9fd9459127" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5258,15 +5258,15 @@ "cohort": "1", "jobTitle": "Senior Software Engineer", "industry": "Finance", - "cities": ["Paris"], + "cities": ["Kansas City"], "_id": { - "$oid": "66723d958f368f285d303e61" + "$oid": "6674c30595590f9fd9459128" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5281,13 +5281,13 @@ "industry": "Fintech", "cities": [], "_id": { - "$oid": "66723d958f368f285d303e62" + "$oid": "6674c30595590f9fd9459129" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5300,15 +5300,15 @@ "cohort": "6", "jobTitle": "Senior Software Engineer (Full Stack)", "industry": "Fintech", - "cities": ["Jersey City", "Austin", "Long Beach"], + "cities": ["Tulsa", "Mesa"], "_id": { - "$oid": "66723d958f368f285d303e63" + "$oid": "6674c30595590f9fd945912a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5321,15 +5321,15 @@ "cohort": "49", "jobTitle": "Senior Software Engineer, Front End", "industry": "Fintech", - "cities": ["New Orleans"], + "cities": ["Washington", "Miami"], "_id": { - "$oid": "66723d958f368f285d303e64" + "$oid": "6674c30595590f9fd945912b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5342,15 +5342,15 @@ "cohort": "28", "jobTitle": "Full Stack Software Engineer", "industry": "Fintech", - "cities": ["Portland", "Louisville"], + "cities": ["Minneapolis"], "_id": { - "$oid": "66723d958f368f285d303e65" + "$oid": "6674c30595590f9fd945912c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5363,15 +5363,15 @@ "cohort": "26", "jobTitle": "Fullstack Software Engineer", "industry": "Finance", - "cities": [], + "cities": ["Charlotte", "Irving"], "_id": { - "$oid": "66723d958f368f285d303e66" + "$oid": "6674c30595590f9fd945912d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5384,15 +5384,15 @@ "cohort": "49", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Durham", "Mesa", "Fort Worth"], + "cities": ["San Francisco"], "_id": { - "$oid": "66723d958f368f285d303e67" + "$oid": "6674c30595590f9fd945912e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5405,15 +5405,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["St. Petersburg"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e68" + "$oid": "6674c30595590f9fd945912f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5426,15 +5426,15 @@ "cohort": "10", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Sรฃo Paulo", "San Antonio"], + "cities": ["Tucson", "Milwaukee", "Chula Vista"], "_id": { - "$oid": "66723d958f368f285d303e69" + "$oid": "6674c30595590f9fd9459130" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5447,15 +5447,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "Banking", - "cities": ["Austin", "Irving"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e6a" + "$oid": "6674c30595590f9fd9459131" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5468,15 +5468,15 @@ "cohort": "7", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["New Orleans"], + "cities": ["St. Louis", "Laredo"], "_id": { - "$oid": "66723d958f368f285d303e6b" + "$oid": "6674c30595590f9fd9459132" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5489,15 +5489,15 @@ "cohort": "30", "jobTitle": "Software Engineer - backend", "industry": "Fintech", - "cities": ["New York"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e6c" + "$oid": "6674c30595590f9fd9459133" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5510,15 +5510,15 @@ "cohort": "7", "jobTitle": "Senior Associate Software Engineer", "industry": "Fintech", - "cities": ["Tucson"], + "cities": ["Oakland", "Jacksonville"], "_id": { - "$oid": "66723d958f368f285d303e6d" + "$oid": "6674c30595590f9fd9459134" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5531,15 +5531,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["New York", "Cincinnati", "Anaheim"], + "cities": ["Tampa", "Columbus"], "_id": { - "$oid": "66723d958f368f285d303e6e" + "$oid": "6674c30595590f9fd9459135" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5552,15 +5552,15 @@ "cohort": "42", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Los Angeles", "Philadelphia"], + "cities": ["Wichita", "Seattle", "Lubbock"], "_id": { - "$oid": "66723d958f368f285d303e6f" + "$oid": "6674c30595590f9fd9459136" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5573,15 +5573,15 @@ "cohort": "24", "jobTitle": "Fullstack Engineer", "industry": "Banking", - "cities": [], + "cities": ["Tampa"], "_id": { - "$oid": "66723d958f368f285d303e70" + "$oid": "6674c30595590f9fd9459137" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5594,15 +5594,15 @@ "cohort": "49", "jobTitle": "Senior Associate Software Engineer", "industry": "Software / Tech", - "cities": ["Garland"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e71" + "$oid": "6674c30595590f9fd9459138" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5615,15 +5615,15 @@ "cohort": "45", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Chicago", "San Jose", "Virginia Beach"], "_id": { - "$oid": "66723d958f368f285d303e72" + "$oid": "6674c30595590f9fd9459139" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5638,13 +5638,13 @@ "industry": "Fintech", "cities": [], "_id": { - "$oid": "66723d958f368f285d303e73" + "$oid": "6674c30595590f9fd945913a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5657,15 +5657,15 @@ "cohort": "28", "jobTitle": "Senior Front End Engineer", "industry": "Fintech", - "cities": ["Albuquerque"], + "cities": ["Lubbock"], "_id": { - "$oid": "66723d958f368f285d303e74" + "$oid": "6674c30595590f9fd945913b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5678,15 +5678,15 @@ "cohort": "45", "jobTitle": "Software Engineer, Full Stack", "industry": "Fin tech", - "cities": [], + "cities": ["San Antonio", "Mexico City", "Washington"], "_id": { - "$oid": "66723d958f368f285d303e75" + "$oid": "6674c30595590f9fd945913c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5701,13 +5701,13 @@ "industry": "Banking/ Fintech", "cities": [], "_id": { - "$oid": "66723d958f368f285d303e76" + "$oid": "6674c30595590f9fd945913d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5720,15 +5720,15 @@ "cohort": "43", "jobTitle": "Backend Engineer, Senior Associate", "industry": "Finance/Banking", - "cities": ["London", "Chesapeake", "Aurora"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e77" + "$oid": "6674c30595590f9fd945913e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5741,15 +5741,15 @@ "cohort": "9", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Buffalo", "Glendale"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e78" + "$oid": "6674c30595590f9fd945913f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5762,15 +5762,15 @@ "cohort": "1", "jobTitle": "Senior Associate Software Engineer", "industry": "Fintech", - "cities": ["Boston", "Laredo", "Fort Wayne"], + "cities": ["Arlington"], "_id": { - "$oid": "66723d958f368f285d303e79" + "$oid": "6674c30595590f9fd9459140" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5783,15 +5783,15 @@ "cohort": "7", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Gilbert", "Chandler"], + "cities": ["Long Beach"], "_id": { - "$oid": "66723d958f368f285d303e7a" + "$oid": "6674c30595590f9fd9459141" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5804,15 +5804,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "Banking", - "cities": ["Houston"], + "cities": ["North Las Vegas", "Santa Ana"], "_id": { - "$oid": "66723d958f368f285d303e7b" + "$oid": "6674c30595590f9fd9459142" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5825,15 +5825,15 @@ "cohort": "27", "jobTitle": "Software Engineer", "industry": "Other", - "cities": [], + "cities": ["Glendale", "Louisville"], "_id": { - "$oid": "66723d958f368f285d303e7c" + "$oid": "6674c30595590f9fd9459143" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5848,13 +5848,13 @@ "industry": "Fintech", "cities": [], "_id": { - "$oid": "66723d958f368f285d303e7d" + "$oid": "6674c30595590f9fd9459144" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5867,15 +5867,15 @@ "cohort": "44", "jobTitle": "Fullstack Software Engineer", "industry": "Fintech", - "cities": ["Virginia Beach", "San Antonio"], + "cities": ["Boston", "Bakersfield", "Dallas"], "_id": { - "$oid": "66723d958f368f285d303e7e" + "$oid": "6674c30595590f9fd9459145" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5888,15 +5888,15 @@ "cohort": "3", "jobTitle": "Senior Associate Software Engineer - Backend", "industry": "Fintech", - "cities": ["Stockton", "Oklahoma City", "Oakland"], + "cities": ["Long Beach", "Chandler"], "_id": { - "$oid": "66723d958f368f285d303e7f" + "$oid": "6674c30595590f9fd9459146" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5909,15 +5909,15 @@ "cohort": "27", "jobTitle": "Senior Associate Software Engineer", "industry": "Finance", - "cities": ["Madison", "Tulsa"], + "cities": ["Lexington"], "_id": { - "$oid": "66723d958f368f285d303e80" + "$oid": "6674c30595590f9fd9459147" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5930,15 +5930,15 @@ "cohort": "28", "jobTitle": "Sr. Associate Software Engineer (Full-Stack)", "industry": "Business", - "cities": [], + "cities": ["Arlington", "Cincinnati", "Laredo"], "_id": { - "$oid": "66723d958f368f285d303e81" + "$oid": "6674c30595590f9fd9459148" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5953,13 +5953,13 @@ "industry": "Fintech", "cities": [], "_id": { - "$oid": "66723d958f368f285d303e82" + "$oid": "6674c30595590f9fd9459149" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5972,15 +5972,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Jersey City", "Tulsa", "Fresno"], + "cities": ["Paris"], "_id": { - "$oid": "66723d958f368f285d303e83" + "$oid": "6674c30595590f9fd945914a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -5993,15 +5993,15 @@ "cohort": "43", "jobTitle": "Front End Software Engineer", "industry": "Financial Services", - "cities": ["New Orleans"], + "cities": ["Irvine", "Washington"], "_id": { - "$oid": "66723d958f368f285d303e84" + "$oid": "6674c30595590f9fd945914b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6014,15 +6014,15 @@ "cohort": "27", "jobTitle": "Software Engineer, Full Stack", "industry": "Banking/Fintech", - "cities": ["North Las Vegas", "Chicago", "San Diego"], + "cities": ["Charlotte", "Buffalo", "Houston"], "_id": { - "$oid": "66723d958f368f285d303e85" + "$oid": "6674c30595590f9fd945914c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6035,15 +6035,15 @@ "cohort": "28", "jobTitle": "Sr Software Engineer Back-end", "industry": "Fintech", - "cities": [], + "cities": ["Pittsburgh"], "_id": { - "$oid": "66723d958f368f285d303e86" + "$oid": "6674c30595590f9fd945914d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6056,15 +6056,15 @@ "cohort": "3", "jobTitle": "Senior Software Engineer", "industry": "Finance/Fintech", - "cities": ["Portland", "Las Vegas", "Sacramento"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e87" + "$oid": "6674c30595590f9fd945914e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6077,15 +6077,15 @@ "cohort": "23", "jobTitle": "Senior Associate Fullstack Engineer", "industry": "Fintech", - "cities": ["Fresno", "Reno"], + "cities": ["Berlin", "Orlando", "London"], "_id": { - "$oid": "66723d958f368f285d303e88" + "$oid": "6674c30595590f9fd945914f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6098,15 +6098,15 @@ "cohort": "47", "jobTitle": "Software Engineer, Fullstack", "industry": "Finance", - "cities": ["Washington", "San Jose", "Mesa"], + "cities": ["Riverside", "Colorado Springs", "Los Angeles"], "_id": { - "$oid": "66723d958f368f285d303e89" + "$oid": "6674c30595590f9fd9459150" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6119,15 +6119,15 @@ "cohort": "6", "jobTitle": "Backend Software Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Greensboro", "Omaha"], "_id": { - "$oid": "66723d958f368f285d303e8a" + "$oid": "6674c30595590f9fd9459151" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6140,15 +6140,15 @@ "cohort": "13", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Long Beach", "Columbus"], "_id": { - "$oid": "66723d958f368f285d303e8b" + "$oid": "6674c30595590f9fd9459152" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6161,15 +6161,15 @@ "cohort": "43", "jobTitle": "Software Engineer, Full Stack", "industry": "Banking", - "cities": ["San Diego", "Fort Wayne", "Oklahoma City"], + "cities": ["Madison", "Virginia Beach", "Houston"], "_id": { - "$oid": "66723d958f368f285d303e8c" + "$oid": "6674c30595590f9fd9459153" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6182,15 +6182,15 @@ "cohort": "47", "jobTitle": "Software Engineer, Full Stack", "industry": "Finance/Banking", - "cities": ["Long Beach", "Gilbert", "St. Petersburg"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e8d" + "$oid": "6674c30595590f9fd9459154" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6203,15 +6203,15 @@ "cohort": "44", "jobTitle": "Solutions Engineer", "industry": "Healthcare fintech", - "cities": ["Reno"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e8e" + "$oid": "6674c30595590f9fd9459155" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6224,15 +6224,15 @@ "cohort": "25", "jobTitle": "Senior Software Engineer", "industry": "Financial Services", - "cities": [], + "cities": ["Tokyo", "Gilbert"], "_id": { - "$oid": "66723d958f368f285d303e8f" + "$oid": "6674c30595590f9fd9459156" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6245,15 +6245,15 @@ "cohort": "26", "jobTitle": "Software Engineer, Full Stack", "industry": "Fintech/ Banking", - "cities": ["Reno"], + "cities": ["Paris", "Washington", "Virginia Beach"], "_id": { - "$oid": "66723d958f368f285d303e90" + "$oid": "6674c30595590f9fd9459157" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6266,15 +6266,15 @@ "cohort": "11", "jobTitle": "Senior Software Engineer", "industry": "Other", - "cities": ["Omaha", "Oakland"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303e91" + "$oid": "6674c30595590f9fd9459158" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6287,15 +6287,15 @@ "cohort": "55", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Oklahoma City", "Toronto"], + "cities": ["Louisville"], "_id": { - "$oid": "66723d958f368f285d303e92" + "$oid": "6674c30595590f9fd9459159" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6308,15 +6308,15 @@ "cohort": "37", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Beijing", "Chula Vista", "Long Beach"], + "cities": ["Newark"], "_id": { - "$oid": "66723d958f368f285d303e93" + "$oid": "6674c30595590f9fd945915a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6329,15 +6329,15 @@ "cohort": "49", "jobTitle": "Senior Full Stack Engineer", "industry": "Fintech", - "cities": ["Colorado Springs", "Houston", "Stockton"], + "cities": ["Albuquerque", "Chandler"], "_id": { - "$oid": "66723d958f368f285d303e94" + "$oid": "6674c30595590f9fd945915b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6352,13 +6352,13 @@ "industry": "Fintech", "cities": [], "_id": { - "$oid": "66723d958f368f285d303e95" + "$oid": "6674c30595590f9fd945915c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6371,15 +6371,15 @@ "cohort": "13", "jobTitle": "Front End Engineer", "industry": "Finance", - "cities": ["Aurora"], + "cities": ["Memphis"], "_id": { - "$oid": "66723d958f368f285d303e96" + "$oid": "6674c30595590f9fd945915d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6392,15 +6392,15 @@ "cohort": "2", "jobTitle": "Senior Fullstack Software Engineer", "industry": "Healthcare Tech", - "cities": ["Boston", "San Francisco"], + "cities": ["Stockton"], "_id": { - "$oid": "66723d958f368f285d303e97" + "$oid": "6674c30595590f9fd945915e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6413,15 +6413,15 @@ "cohort": "1", "jobTitle": "Senior Fullstack Developer", "industry": "Health Care", - "cities": ["Newark"], + "cities": ["Sacramento"], "_id": { - "$oid": "66723d958f368f285d303e98" + "$oid": "6674c30595590f9fd945915f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6436,13 +6436,13 @@ "industry": "Healthcare", "cities": [], "_id": { - "$oid": "66723d958f368f285d303e99" + "$oid": "6674c30595590f9fd9459160" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6455,15 +6455,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "Research", - "cities": ["Santa Ana"], + "cities": ["Baltimore", "Jersey City", "Orlando"], "_id": { - "$oid": "66723d958f368f285d303e9a" + "$oid": "6674c30595590f9fd9459161" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6476,15 +6476,15 @@ "cohort": "30", "jobTitle": "Senior Software Engineer", "industry": "Wellness", - "cities": ["Saint Paul", "St. Petersburg", "Winston-Salem"], + "cities": ["Miami", "Sacramento", "Winston-Salem"], "_id": { - "$oid": "66723d958f368f285d303e9b" + "$oid": "6674c30595590f9fd9459162" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6497,15 +6497,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Health tech", - "cities": [], + "cities": ["Philadelphia", "Long Beach"], "_id": { - "$oid": "66723d958f368f285d303e9c" + "$oid": "6674c30595590f9fd9459163" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6518,15 +6518,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Retail", - "cities": ["Lubbock"], + "cities": ["Fort Wayne", "Lincoln", "Honolulu"], "_id": { - "$oid": "66723d958f368f285d303e9d" + "$oid": "6674c30595590f9fd9459164" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6541,13 +6541,13 @@ "industry": "Insurance", "cities": [], "_id": { - "$oid": "66723d958f368f285d303e9e" + "$oid": "6674c30595590f9fd9459165" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6560,15 +6560,15 @@ "cohort": "34", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": [], + "cities": ["Omaha", "Bakersfield", "Austin"], "_id": { - "$oid": "66723d958f368f285d303e9f" + "$oid": "6674c30595590f9fd9459166" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6581,15 +6581,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "Entertainment", - "cities": [], + "cities": ["Fort Wayne", "Atlanta"], "_id": { - "$oid": "66723d958f368f285d303ea0" + "$oid": "6674c30595590f9fd9459167" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6602,15 +6602,15 @@ "cohort": "28", "jobTitle": "software engineer", "industry": "fintech/entertainment", - "cities": [], + "cities": ["Plano", "Corpus Christi"], "_id": { - "$oid": "66723d958f368f285d303ea1" + "$oid": "6674c30595590f9fd9459168" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6623,15 +6623,15 @@ "cohort": "46", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Henderson", "New Orleans"], + "cities": ["Kansas City"], "_id": { - "$oid": "66723d958f368f285d303ea2" + "$oid": "6674c30595590f9fd9459169" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6644,15 +6644,15 @@ "cohort": "7", "jobTitle": "Software Engineer II", "industry": "Advertising", - "cities": ["Gilbert"], + "cities": ["Milwaukee", "Mexico City", "Indianapolis"], "_id": { - "$oid": "66723d958f368f285d303ea3" + "$oid": "6674c30595590f9fd945916a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6665,15 +6665,15 @@ "cohort": "37", "jobTitle": "Software Engineer", "industry": "Consumer products", - "cities": ["Seattle", "Albuquerque"], + "cities": ["Chandler"], "_id": { - "$oid": "66723d958f368f285d303ea4" + "$oid": "6674c30595590f9fd945916b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6686,15 +6686,15 @@ "cohort": "27", "jobTitle": "Software Engineer III - Frontend", "industry": "business analytics platform", - "cities": ["Durham", "Colorado Springs", "Jacksonville"], + "cities": ["Greensboro", "Madison"], "_id": { - "$oid": "66723d958f368f285d303ea5" + "$oid": "6674c30595590f9fd945916c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6707,15 +6707,15 @@ "cohort": "16", "jobTitle": "Frontend Software Engineer", "industry": "Health", - "cities": ["Sรฃo Paulo", "Buffalo"], + "cities": ["Austin", "Oakland", "Durham"], "_id": { - "$oid": "66723d958f368f285d303ea6" + "$oid": "6674c30595590f9fd945916d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6728,15 +6728,15 @@ "cohort": "12", "jobTitle": "Front End Engineer", "industry": "Health", - "cities": [], + "cities": ["Pittsburgh", "Santa Ana", "Saint Paul"], "_id": { - "$oid": "66723d958f368f285d303ea7" + "$oid": "6674c30595590f9fd945916e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6749,15 +6749,15 @@ "cohort": "49", "jobTitle": "Software Engineer/Programming Analyst", "industry": "Healthcare", - "cities": ["Toronto"], + "cities": ["Long Beach"], "_id": { - "$oid": "66723d958f368f285d303ea8" + "$oid": "6674c30595590f9fd945916f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.059Z" }, "__v": 0 }, @@ -6770,15 +6770,15 @@ "cohort": "35", "jobTitle": "Software Engineer", "industry": "Aerospace", - "cities": ["Laredo"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ea9" + "$oid": "6674c30595590f9fd9459170" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -6791,15 +6791,15 @@ "cohort": "41", "jobTitle": "Full Stack Developer", "industry": "Healthtech/Healthcare", - "cities": ["Kansas City"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303eaa" + "$oid": "6674c30595590f9fd9459171" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -6812,15 +6812,15 @@ "cohort": "51", "jobTitle": "Software Development Engineer", "industry": "Telecommunications", - "cities": ["Garland", "Beijing"], + "cities": ["Oakland", "Colorado Springs"], "_id": { - "$oid": "66723d958f368f285d303eab" + "$oid": "6674c30595590f9fd9459172" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -6833,15 +6833,15 @@ "cohort": "6", "jobTitle": "Full Stack Engineer II", "industry": "Medicine", - "cities": ["Colorado Springs"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303eac" + "$oid": "6674c30595590f9fd9459173" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -6854,15 +6854,15 @@ "cohort": "39", "jobTitle": "Software Engineer", "industry": "Logistic", - "cities": ["Memphis"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ead" + "$oid": "6674c30595590f9fd9459174" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -6875,15 +6875,15 @@ "cohort": "17", "jobTitle": "Technical Writer", "industry": "Fintech", - "cities": ["Mexico City", "Seattle", "Sacramento"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303eae" + "$oid": "6674c30595590f9fd9459175" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -6896,15 +6896,15 @@ "cohort": "56", "jobTitle": "Web Developer", "industry": "Marketing/Advertising", - "cities": ["Corpus Christi", "Chula Vista", "Fresno"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303eaf" + "$oid": "6674c30595590f9fd9459176" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -6917,15 +6917,15 @@ "cohort": "52", "jobTitle": "Software Engineer", "industry": "Blockchain/Web3", - "cities": ["Milwaukee", "Kansas City", "Los Angeles"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303eb0" + "$oid": "6674c30595590f9fd9459177" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -6938,15 +6938,15 @@ "cohort": "29", "jobTitle": "Senior Software Engineer", "industry": "Healthcare", - "cities": ["Reno", "San Jose"], + "cities": ["Albuquerque", "Chesapeake"], "_id": { - "$oid": "66723d958f368f285d303eb1" + "$oid": "6674c30595590f9fd9459178" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -6961,13 +6961,13 @@ "industry": "Healthcare", "cities": [], "_id": { - "$oid": "66723d958f368f285d303eb2" + "$oid": "6674c30595590f9fd9459179" }, "createdAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.816Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -6980,15 +6980,15 @@ "cohort": "27", "jobTitle": "Software Engineer.", "industry": "Healthcare.", - "cities": [], + "cities": ["Jacksonville"], "_id": { - "$oid": "66723d958f368f285d303eb3" + "$oid": "6674c30595590f9fd945917a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7001,15 +7001,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Virginia Beach", "Tokyo"], + "cities": ["Anaheim"], "_id": { - "$oid": "66723d958f368f285d303eb4" + "$oid": "6674c30595590f9fd945917b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7022,15 +7022,15 @@ "cohort": "26", "jobTitle": "Senior Software Engineer", "industry": "Subscription Tech", - "cities": ["Tokyo", "Honolulu"], + "cities": ["Norfolk"], "_id": { - "$oid": "66723d958f368f285d303eb5" + "$oid": "6674c30595590f9fd945917c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7043,15 +7043,15 @@ "cohort": "24", "jobTitle": "Founding engineer", "industry": "Software as a service", - "cities": ["Sรฃo Paulo", "San Jose", "Albuquerque"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303eb6" + "$oid": "6674c30595590f9fd945917d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7064,15 +7064,15 @@ "cohort": "13", "jobTitle": "Full Stack Developer", "industry": "Software / Tech", - "cities": [], + "cities": ["Scottsdale", "Mexico City"], "_id": { - "$oid": "66723d958f368f285d303eb7" + "$oid": "6674c30595590f9fd945917e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7085,15 +7085,15 @@ "cohort": "13", "jobTitle": "Enterprise Engineer", "industry": "Fintech", - "cities": ["Indianapolis", "Los Angeles", "Louisville"], + "cities": ["Santa Ana"], "_id": { - "$oid": "66723d958f368f285d303eb8" + "$oid": "6674c30595590f9fd945917f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7106,15 +7106,15 @@ "cohort": "37", "jobTitle": "Senior Application Developer", "industry": "Retail", - "cities": ["Riverside", "Reno"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303eb9" + "$oid": "6674c30595590f9fd9459180" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7127,15 +7127,15 @@ "cohort": "13", "jobTitle": "Sr Software Engineer", "industry": "Media / News", - "cities": [], + "cities": ["Dallas", "Paris"], "_id": { - "$oid": "66723d958f368f285d303eba" + "$oid": "6674c30595590f9fd9459181" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7150,13 +7150,13 @@ "industry": "EdTech", "cities": [], "_id": { - "$oid": "66723d958f368f285d303ebb" + "$oid": "6674c30595590f9fd9459182" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7169,15 +7169,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Tech Consulting, Client is in HealthTech", - "cities": ["Orlando", "Milwaukee"], + "cities": ["Oakland", "Toronto", "Jacksonville"], "_id": { - "$oid": "66723d958f368f285d303ebc" + "$oid": "6674c30595590f9fd9459183" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7190,15 +7190,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "E-commerce", - "cities": ["Chula Vista"], + "cities": ["Tampa"], "_id": { - "$oid": "66723d958f368f285d303ebd" + "$oid": "6674c30595590f9fd9459184" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7213,13 +7213,13 @@ "industry": "Other", "cities": [], "_id": { - "$oid": "66723d958f368f285d303ebe" + "$oid": "6674c30595590f9fd9459185" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7232,15 +7232,15 @@ "cohort": "46", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Lincoln"], "_id": { - "$oid": "66723d958f368f285d303ebf" + "$oid": "6674c30595590f9fd9459186" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7253,15 +7253,15 @@ "cohort": "50", "jobTitle": "Lead Engineer", "industry": "Healthcare", - "cities": ["Detroit"], + "cities": ["Las Vegas", "Atlanta"], "_id": { - "$oid": "66723d958f368f285d303ec0" + "$oid": "6674c30595590f9fd9459187" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7274,15 +7274,15 @@ "cohort": "16", "jobTitle": "Backend Engineer", "industry": "Health & Wellness", - "cities": ["Arlington"], + "cities": ["Jersey City", "Toledo"], "_id": { - "$oid": "66723d958f368f285d303ec1" + "$oid": "6674c30595590f9fd9459188" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7295,15 +7295,15 @@ "cohort": "16", "jobTitle": "Web Developer", "industry": "Meditation/self-care", - "cities": ["Los Angeles", "New Orleans", "Oklahoma City"], + "cities": ["Lubbock", "Oklahoma City"], "_id": { - "$oid": "66723d958f368f285d303ec2" + "$oid": "6674c30595590f9fd9459189" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7316,15 +7316,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Bio-Tech", - "cities": ["Paris", "Louisville"], + "cities": ["Portland"], "_id": { - "$oid": "66723d958f368f285d303ec3" + "$oid": "6674c30595590f9fd945918a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7339,13 +7339,13 @@ "industry": "Insurance", "cities": [], "_id": { - "$oid": "66723d958f368f285d303ec4" + "$oid": "6674c30595590f9fd945918b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7358,15 +7358,15 @@ "cohort": "42", "jobTitle": "Full Stack Engineer", "industry": "Health Care", - "cities": ["St. Louis", "Irvine", "Minneapolis"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ec5" + "$oid": "6674c30595590f9fd945918c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7379,15 +7379,15 @@ "cohort": "7", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Albuquerque", "Lexington", "Raleigh"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ec6" + "$oid": "6674c30595590f9fd945918d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7400,15 +7400,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "Software", - "cities": ["Pittsburgh", "North Las Vegas", "Boston"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ec7" + "$oid": "6674c30595590f9fd945918e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7421,15 +7421,15 @@ "cohort": "43", "jobTitle": "Software Development Engineer", "industry": "Tech", - "cities": ["Oklahoma City"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ec8" + "$oid": "6674c30595590f9fd945918f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7442,15 +7442,15 @@ "cohort": "35", "jobTitle": "Software Engineer", "industry": "Computer Software/Tech", - "cities": ["Glendale", "Chesapeake", "Toronto"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ec9" + "$oid": "6674c30595590f9fd9459190" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7463,15 +7463,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Dev Ops", - "cities": ["Stockton", "Milwaukee", "Oakland"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303eca" + "$oid": "6674c30595590f9fd9459191" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7484,15 +7484,15 @@ "cohort": "26", "jobTitle": "Software Engineering", "industry": "Software / Tech", - "cities": ["Washington", "Boston"], + "cities": ["Nashville", "Tokyo", "Garland"], "_id": { - "$oid": "66723d958f368f285d303ecb" + "$oid": "6674c30595590f9fd9459192" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7505,15 +7505,15 @@ "cohort": "18", "jobTitle": "Senior Software Engineer", "industry": "Computer Engineering", - "cities": [], + "cities": ["Scottsdale", "Saint Paul"], "_id": { - "$oid": "66723d958f368f285d303ecc" + "$oid": "6674c30595590f9fd9459193" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7526,15 +7526,15 @@ "cohort": "37", "jobTitle": "Sr. Programmer Analyst", "industry": "Fintech", - "cities": ["Irvine", "Sรฃo Paulo", "Minneapolis"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ecd" + "$oid": "6674c30595590f9fd9459194" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7547,15 +7547,15 @@ "cohort": "4", "jobTitle": "Digital Software Engineer / Senior Analyst - C12, Assistant Vice President of Matrix Reportingโ€‹", "industry": "Fintech", - "cities": [], + "cities": ["Cleveland", "Chesapeake"], "_id": { - "$oid": "66723d958f368f285d303ece" + "$oid": "6674c30595590f9fd9459195" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7568,15 +7568,15 @@ "cohort": "18", "jobTitle": "Senior Software Engineer", "industry": "Healthcare", - "cities": [], + "cities": ["Phoenix"], "_id": { - "$oid": "66723d958f368f285d303ecf" + "$oid": "6674c30595590f9fd9459196" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7589,15 +7589,15 @@ "cohort": "4", "jobTitle": "Data Engineering Fellow", "industry": "Government", - "cities": ["Boston"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ed0" + "$oid": "6674c30595590f9fd9459197" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7610,15 +7610,15 @@ "cohort": "14", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["St. Louis"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ed1" + "$oid": "6674c30595590f9fd9459198" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7631,15 +7631,15 @@ "cohort": "41", "jobTitle": "Software Engineer", "industry": "Software", - "cities": ["Portland"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ed2" + "$oid": "6674c30595590f9fd9459199" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7652,15 +7652,15 @@ "cohort": "21", "jobTitle": "Software Engineer", "industry": "Biometrics / Security services", - "cities": ["Newark", "Cleveland"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ed3" + "$oid": "6674c30595590f9fd945919a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7673,15 +7673,15 @@ "cohort": "37", "jobTitle": "Associate Software Engineer", "industry": "Fintech, Real Estate", - "cities": ["Mexico City", "Detroit", "Sรฃo Paulo"], + "cities": ["Jacksonville"], "_id": { - "$oid": "66723d958f368f285d303ed4" + "$oid": "6674c30595590f9fd945919b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7694,15 +7694,15 @@ "cohort": "8", "jobTitle": "Jr. Software Developer", "industry": "Software / Tech", - "cities": ["Sydney"], + "cities": ["Boston", "Durham"], "_id": { - "$oid": "66723d958f368f285d303ed5" + "$oid": "6674c30595590f9fd945919c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7715,15 +7715,15 @@ "cohort": "48", "jobTitle": "Software Engineer", "industry": "Travel Technology", - "cities": ["El Paso", "Norfolk", "Kansas City"], + "cities": ["Durham"], "_id": { - "$oid": "66723d958f368f285d303ed6" + "$oid": "6674c30595590f9fd945919d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7736,15 +7736,15 @@ "cohort": "31", "jobTitle": "Web Software Engineer", "industry": "Software / Tech", - "cities": [], + "cities": ["Toronto"], "_id": { - "$oid": "66723d958f368f285d303ed7" + "$oid": "6674c30595590f9fd945919e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7757,15 +7757,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "Insurance/Travel", - "cities": ["Glendale", "Saint Paul"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ed8" + "$oid": "6674c30595590f9fd945919f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7778,15 +7778,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Norfolk", "Tampa", "Irvine"], + "cities": ["Lincoln", "Mesa"], "_id": { - "$oid": "66723d958f368f285d303ed9" + "$oid": "6674c30595590f9fd94591a0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7799,15 +7799,15 @@ "cohort": "35", "jobTitle": "Full Stack Software Engineer", "industry": "Software / Tech", - "cities": ["Colorado Springs", "Charlotte"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303eda" + "$oid": "6674c30595590f9fd94591a1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7820,15 +7820,15 @@ "cohort": "41", "jobTitle": "Backend Engineer", "industry": "Business Tech/Enterprise Tech", - "cities": ["North Las Vegas", "Atlanta"], + "cities": ["Irving", "Madison", "Lincoln"], "_id": { - "$oid": "66723d958f368f285d303edb" + "$oid": "6674c30595590f9fd94591a2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7841,15 +7841,15 @@ "cohort": "33", "jobTitle": "Data Engineer", "industry": "Security", - "cities": ["Chandler", "Jacksonville", "Sacramento"], + "cities": ["Tampa", "Durham"], "_id": { - "$oid": "66723d958f368f285d303edc" + "$oid": "6674c30595590f9fd94591a3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7862,15 +7862,15 @@ "cohort": "16", "jobTitle": "Frontend Engineer", "industry": "Leisure, Travel & Tourism", - "cities": [], + "cities": ["Tampa", "Cleveland"], "_id": { - "$oid": "66723d958f368f285d303edd" + "$oid": "6674c30595590f9fd94591a4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7883,15 +7883,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "", - "cities": [], + "cities": ["Atlanta", "Corpus Christi"], "_id": { - "$oid": "66723d958f368f285d303ede" + "$oid": "6674c30595590f9fd94591a5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7904,15 +7904,15 @@ "cohort": "33", "jobTitle": "Software Engineer", "industry": "Software Solutions/Developer Tools", - "cities": ["Chandler", "Tampa"], + "cities": ["Aurora"], "_id": { - "$oid": "66723d958f368f285d303edf" + "$oid": "6674c30595590f9fd94591a6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7925,15 +7925,15 @@ "cohort": "44", "jobTitle": "Instruction Training Manager", "industry": "Software/Tech", - "cities": ["Memphis", "Norfolk"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ee0" + "$oid": "6674c30595590f9fd94591a7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7946,15 +7946,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Computer Software", - "cities": ["Louisville"], + "cities": ["Madison"], "_id": { - "$oid": "66723d958f368f285d303ee1" + "$oid": "6674c30595590f9fd94591a8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7967,15 +7967,15 @@ "cohort": "39", "jobTitle": "Senior Developer", "industry": "Technology", - "cities": ["Memphis", "Anaheim", "Mesa"], + "cities": ["Tulsa", "Milwaukee", "Cleveland"], "_id": { - "$oid": "66723d958f368f285d303ee2" + "$oid": "6674c30595590f9fd94591a9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -7988,15 +7988,15 @@ "cohort": "38", "jobTitle": "Senior Full Stack Engineer", "industry": "Artificial Intelligence", - "cities": ["Colorado Springs", "Anchorage", "Boston"], + "cities": ["Berlin", "San Francisco"], "_id": { - "$oid": "66723d958f368f285d303ee3" + "$oid": "6674c30595590f9fd94591aa" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8009,15 +8009,15 @@ "cohort": "19", "jobTitle": "Software Engineer", "industry": "", - "cities": [], + "cities": ["Newark", "Chandler"], "_id": { - "$oid": "66723d958f368f285d303ee4" + "$oid": "6674c30595590f9fd94591ab" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8030,15 +8030,15 @@ "cohort": "42", "jobTitle": "Senior Frontend Engineer", "industry": "Health Tech (Healthplan Administration for 1000 plus employee companies)", - "cities": ["Scottsdale", "Durham", "Albuquerque"], + "cities": ["Oklahoma City"], "_id": { - "$oid": "66723d958f368f285d303ee5" + "$oid": "6674c30595590f9fd94591ac" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8051,15 +8051,15 @@ "cohort": "55", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["Charlotte"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ee6" + "$oid": "6674c30595590f9fd94591ad" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8072,15 +8072,15 @@ "cohort": "48", "jobTitle": "Software Engineer", "industry": "Media", - "cities": ["Madison", "Berlin"], + "cities": ["Beijing", "Miami", "Henderson"], "_id": { - "$oid": "66723d958f368f285d303ee7" + "$oid": "6674c30595590f9fd94591ae" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8093,15 +8093,15 @@ "cohort": "20", "jobTitle": "Software Engineer", "industry": "TeleCom", - "cities": ["Columbus", "Riverside"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ee8" + "$oid": "6674c30595590f9fd94591af" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8114,15 +8114,15 @@ "cohort": "7", "jobTitle": "Software Developer", "industry": "", - "cities": ["Toronto", "Scottsdale"], + "cities": ["Fort Worth"], "_id": { - "$oid": "66723d958f368f285d303ee9" + "$oid": "6674c30595590f9fd94591b0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8135,15 +8135,15 @@ "cohort": "7", "jobTitle": "Node.js Engineer", "industry": "Commercial Services", - "cities": ["Scottsdale", "Baltimore", "Buffalo"], + "cities": ["Sรฃo Paulo", "Corpus Christi", "Long Beach"], "_id": { - "$oid": "66723d958f368f285d303eea" + "$oid": "6674c30595590f9fd94591b1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8156,15 +8156,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Finance", - "cities": ["Durham", "St. Petersburg", "Las Vegas"], + "cities": ["Chandler"], "_id": { - "$oid": "66723d958f368f285d303eeb" + "$oid": "6674c30595590f9fd94591b2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8177,15 +8177,15 @@ "cohort": "15", "jobTitle": "Full Stack Developer", "industry": "Consulting", - "cities": ["Albuquerque", "Laredo", "Lexington"], + "cities": ["Austin", "St. Louis"], "_id": { - "$oid": "66723d958f368f285d303eec" + "$oid": "6674c30595590f9fd94591b3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8198,15 +8198,15 @@ "cohort": "38", "jobTitle": "Software Engineer II", "industry": "Real Estate", - "cities": [], + "cities": ["Los Angeles", "Corpus Christi", "London"], "_id": { - "$oid": "66723d958f368f285d303eed" + "$oid": "6674c30595590f9fd94591b4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8219,15 +8219,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": [], + "cities": ["Cincinnati", "Houston"], "_id": { - "$oid": "66723d958f368f285d303eee" + "$oid": "6674c30595590f9fd94591b5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8240,15 +8240,15 @@ "cohort": "12", "jobTitle": "Creative Developer", "industry": "Real Estate", - "cities": ["Austin", "Charlotte"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303eef" + "$oid": "6674c30595590f9fd94591b6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8261,15 +8261,15 @@ "cohort": "34", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Kansas City"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ef0" + "$oid": "6674c30595590f9fd94591b7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8282,15 +8282,15 @@ "cohort": "16", "jobTitle": "Senior Software Engineer", "industry": "Food/Beverage/Restaurant", - "cities": ["Jersey City", "Louisville"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ef1" + "$oid": "6674c30595590f9fd94591b8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8303,15 +8303,15 @@ "cohort": "26", "jobTitle": "Software Development Engineer", "industry": "Health Tech", - "cities": [], + "cities": ["St. Louis"], "_id": { - "$oid": "66723d958f368f285d303ef2" + "$oid": "6674c30595590f9fd94591b9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8324,15 +8324,15 @@ "cohort": "15", "jobTitle": "Back End Software Engineer", "industry": "Defense", - "cities": [], + "cities": ["Las Vegas"], "_id": { - "$oid": "66723d958f368f285d303ef3" + "$oid": "6674c30595590f9fd94591ba" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8347,13 +8347,13 @@ "industry": "Fintech", "cities": [], "_id": { - "$oid": "66723d958f368f285d303ef4" + "$oid": "6674c30595590f9fd94591bb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8366,15 +8366,15 @@ "cohort": "14", "jobTitle": "Senior Web Developer", "industry": "Software", - "cities": ["Mumbai", "Toronto"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ef5" + "$oid": "6674c30595590f9fd94591bc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8387,15 +8387,15 @@ "cohort": "41", "jobTitle": "Software Engineer", "industry": "Entertainment technology", - "cities": ["Plano"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ef6" + "$oid": "6674c30595590f9fd94591bd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8408,15 +8408,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "Agriculture Science", - "cities": ["Oakland", "San Francisco"], + "cities": ["Chula Vista", "Portland", "Irving"], "_id": { - "$oid": "66723d958f368f285d303ef7" + "$oid": "6674c30595590f9fd94591be" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8431,13 +8431,13 @@ "industry": "Commercial Real Estate", "cities": [], "_id": { - "$oid": "66723d958f368f285d303ef8" + "$oid": "6674c30595590f9fd94591bf" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8450,15 +8450,15 @@ "cohort": "29", "jobTitle": "Associate Software Engineer", "industry": "Real Estate", - "cities": ["Omaha", "El Paso"], + "cities": ["Seattle"], "_id": { - "$oid": "66723d958f368f285d303ef9" + "$oid": "6674c30595590f9fd94591c0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8471,15 +8471,15 @@ "cohort": "32", "jobTitle": "Software Engineer II", "industry": "Real Estate", - "cities": ["San Jose", "Memphis", "Mumbai"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303efa" + "$oid": "6674c30595590f9fd94591c1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8492,15 +8492,15 @@ "cohort": "2", "jobTitle": "Software Engineer II", "industry": "Real Estate", - "cities": ["Miami", "Charlotte"], + "cities": ["Miami", "Glendale", "Chula Vista"], "_id": { - "$oid": "66723d958f368f285d303efb" + "$oid": "6674c30595590f9fd94591c2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8513,15 +8513,15 @@ "cohort": "30", "jobTitle": "Frontend Engineer", "industry": "Commercial Real Estate", - "cities": ["San Francisco", "Virginia Beach", "Sรฃo Paulo"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303efc" + "$oid": "6674c30595590f9fd94591c3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8534,15 +8534,15 @@ "cohort": "26", "jobTitle": "Senior Software Engineer/Web App Architect", "industry": "Software / Tech", - "cities": ["Reno", "Lincoln"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303efd" + "$oid": "6674c30595590f9fd94591c4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8555,15 +8555,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["Houston"], + "cities": ["Fresno", "Dallas"], "_id": { - "$oid": "66723d958f368f285d303efe" + "$oid": "6674c30595590f9fd94591c5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8576,15 +8576,15 @@ "cohort": "9", "jobTitle": "Software Engineer II", "industry": "Automotive", - "cities": ["Chesapeake"], + "cities": ["Milwaukee", "Mumbai", "Oakland"], "_id": { - "$oid": "66723d958f368f285d303eff" + "$oid": "6674c30595590f9fd94591c6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8597,15 +8597,15 @@ "cohort": "9", "jobTitle": "Software Engineer II", "industry": "Automotive", - "cities": ["Mesa", "Sรฃo Paulo"], + "cities": ["Mesa"], "_id": { - "$oid": "66723d958f368f285d303f00" + "$oid": "6674c30595590f9fd94591c7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8618,15 +8618,15 @@ "cohort": "1", "jobTitle": "Technology Solutions Consultant", "industry": "Consulting", - "cities": ["Louisville", "Madison", "Omaha"], + "cities": ["Buffalo", "Stockton", "Greensboro"], "_id": { - "$oid": "66723d958f368f285d303f01" + "$oid": "6674c30595590f9fd94591c8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8641,13 +8641,13 @@ "industry": "VC", "cities": [], "_id": { - "$oid": "66723d958f368f285d303f02" + "$oid": "6674c30595590f9fd94591c9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8660,15 +8660,15 @@ "cohort": "45", "jobTitle": "Fullstack Software Engineer", "industry": "Healthcare", - "cities": ["Charlotte", "Memphis", "St. Petersburg"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f03" + "$oid": "6674c30595590f9fd94591ca" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8681,15 +8681,15 @@ "cohort": "21", "jobTitle": "Software Engineer", "industry": "Mental Health Services", - "cities": ["Memphis", "Oakland", "Madison"], + "cities": ["Sacramento"], "_id": { - "$oid": "66723d958f368f285d303f04" + "$oid": "6674c30595590f9fd94591cb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8702,15 +8702,15 @@ "cohort": "31", "jobTitle": "Senior React Developer", "industry": "Consumer Goods: Fashion", - "cities": [], + "cities": ["Tulsa", "Henderson"], "_id": { - "$oid": "66723d958f368f285d303f05" + "$oid": "6674c30595590f9fd94591cc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8723,15 +8723,15 @@ "cohort": "27", "jobTitle": "Software engineer", "industry": "SaaS", - "cities": ["Oakland", "Wichita", "Plano"], + "cities": ["Seattle", "Tulsa", "St. Louis"], "_id": { - "$oid": "66723d958f368f285d303f06" + "$oid": "6674c30595590f9fd94591cd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8744,15 +8744,15 @@ "cohort": "20", "jobTitle": "Software Engineer", "industry": "Data Analytics", - "cities": [], + "cities": ["Jersey City", "Lexington", "Atlanta"], "_id": { - "$oid": "66723d958f368f285d303f07" + "$oid": "6674c30595590f9fd94591ce" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8765,15 +8765,15 @@ "cohort": "20", "jobTitle": "Senior Software Engineer", "industry": "Health", - "cities": ["Chesapeake", "San Jose", "Irvine"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f08" + "$oid": "6674c30595590f9fd94591cf" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8786,15 +8786,15 @@ "cohort": "20", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["San Diego", "Las Vegas", "Albuquerque"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f09" + "$oid": "6674c30595590f9fd94591d0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8807,15 +8807,15 @@ "cohort": "26", "jobTitle": "Software Developer", "industry": "Cybersecurity", - "cities": ["Garland", "Bakersfield", "San Diego"], + "cities": ["Orlando", "Lubbock"], "_id": { - "$oid": "66723d958f368f285d303f0a" + "$oid": "6674c30595590f9fd94591d1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8828,15 +8828,15 @@ "cohort": "9", "jobTitle": "Software Engineer III", "industry": "Other", - "cities": ["Charlotte", "Glendale", "Henderson"], + "cities": ["Toronto", "Norfolk"], "_id": { - "$oid": "66723d958f368f285d303f0b" + "$oid": "6674c30595590f9fd94591d2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.060Z" }, "__v": 0 }, @@ -8849,15 +8849,15 @@ "cohort": "39", "jobTitle": "Software engineer", "industry": "Cryptography", - "cities": ["Fresno", "Gilbert"], + "cities": ["Atlanta", "Beijing"], "_id": { - "$oid": "66723d958f368f285d303f0c" + "$oid": "6674c30595590f9fd94591d3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -8870,15 +8870,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Consulting", - "cities": ["Portland", "St. Petersburg", "Sydney"], + "cities": ["El Paso", "Memphis", "Fort Worth"], "_id": { - "$oid": "66723d958f368f285d303f0d" + "$oid": "6674c30595590f9fd94591d4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -8891,15 +8891,15 @@ "cohort": "5", "jobTitle": "Full Stack Software Engineer", "industry": "Entertainment", - "cities": ["New York"], + "cities": ["Cleveland", "Toledo", "Chesapeake"], "_id": { - "$oid": "66723d958f368f285d303f0e" + "$oid": "6674c30595590f9fd94591d5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -8912,15 +8912,15 @@ "cohort": "55", "jobTitle": "Fullstack Engineer", "industry": "Software / Tech", - "cities": ["Fort Worth", "Phoenix"], + "cities": ["Saint Paul"], "_id": { - "$oid": "66723d958f368f285d303f0f" + "$oid": "6674c30595590f9fd94591d6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -8935,13 +8935,13 @@ "industry": "Biotech", "cities": [], "_id": { - "$oid": "66723d958f368f285d303f10" + "$oid": "6674c30595590f9fd94591d7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -8954,15 +8954,15 @@ "cohort": "48", "jobTitle": "Senior Software Engineer", "industry": "Healthcare, AI", - "cities": [], + "cities": ["St. Petersburg", "Miami"], "_id": { - "$oid": "66723d958f368f285d303f11" + "$oid": "6674c30595590f9fd94591d8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -8975,15 +8975,15 @@ "cohort": "25", "jobTitle": "Full Stack Developer", "industry": "", - "cities": [], + "cities": ["Chesapeake", "Arlington", "San Francisco"], "_id": { - "$oid": "66723d958f368f285d303f12" + "$oid": "6674c30595590f9fd94591d9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -8996,15 +8996,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["London", "Henderson", "Glendale"], + "cities": ["Greensboro", "Garland"], "_id": { - "$oid": "66723d958f368f285d303f13" + "$oid": "6674c30595590f9fd94591da" }, "createdAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.817Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9017,15 +9017,15 @@ "cohort": "40", "jobTitle": "Software Engineer", "industry": "Health/Insurance", - "cities": ["Aurora", "Greensboro"], + "cities": ["Anchorage", "Jersey City"], "_id": { - "$oid": "66723d958f368f285d303f14" + "$oid": "6674c30595590f9fd94591db" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9038,15 +9038,15 @@ "cohort": "16", "jobTitle": "Software Engineer", "industry": "Pharmacy", - "cities": ["Virginia Beach"], + "cities": ["Buffalo", "Jersey City", "Beijing"], "_id": { - "$oid": "66723d958f368f285d303f15" + "$oid": "6674c30595590f9fd94591dc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9059,15 +9059,15 @@ "cohort": "16", "jobTitle": "Fullstack Node.js Developer (Software Engineer)", "industry": "Health", - "cities": ["Honolulu"], + "cities": ["Fort Worth", "North Las Vegas"], "_id": { - "$oid": "66723d958f368f285d303f16" + "$oid": "6674c30595590f9fd94591dd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9080,15 +9080,15 @@ "cohort": "5", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": [], + "cities": ["Riverside"], "_id": { - "$oid": "66723d958f368f285d303f17" + "$oid": "6674c30595590f9fd94591de" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9101,15 +9101,15 @@ "cohort": "40", "jobTitle": "Full Stack Node Developer", "industry": "Health", - "cities": ["Lubbock", "Corpus Christi", "Beijing"], + "cities": ["Detroit", "Cleveland"], "_id": { - "$oid": "66723d958f368f285d303f18" + "$oid": "6674c30595590f9fd94591df" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9122,15 +9122,15 @@ "cohort": "3", "jobTitle": "Data Engineer - Web UI Engineer", "industry": "health", - "cities": ["Houston", "Fort Wayne", "Arlington"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f19" + "$oid": "6674c30595590f9fd94591e0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9143,15 +9143,15 @@ "cohort": "36", "jobTitle": "Lead Full Stack Engineer", "industry": "Software / Tech", - "cities": ["Columbus", "Seattle", "Norfolk"], + "cities": ["Charlotte", "Raleigh", "Baltimore"], "_id": { - "$oid": "66723d958f368f285d303f1a" + "$oid": "6674c30595590f9fd94591e1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9164,15 +9164,15 @@ "cohort": "36", "jobTitle": "Full Stack Engineer", "industry": "Other", - "cities": ["Newark", "Cleveland"], + "cities": ["Memphis", "Oakland"], "_id": { - "$oid": "66723d958f368f285d303f1b" + "$oid": "6674c30595590f9fd94591e2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9187,13 +9187,13 @@ "industry": "Computer Software", "cities": [], "_id": { - "$oid": "66723d958f368f285d303f1c" + "$oid": "6674c30595590f9fd94591e3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9206,15 +9206,15 @@ "cohort": "50", "jobTitle": "Software Engineer", "industry": "Security", - "cities": [], + "cities": ["Oklahoma City", "Toronto"], "_id": { - "$oid": "66723d958f368f285d303f1d" + "$oid": "6674c30595590f9fd94591e4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9227,15 +9227,15 @@ "cohort": "47", "jobTitle": "Software Engineer", "industry": "Other", - "cities": [], + "cities": ["Reno", "Nashville", "London"], "_id": { - "$oid": "66723d958f368f285d303f1e" + "$oid": "6674c30595590f9fd94591e5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9248,15 +9248,15 @@ "cohort": "16", "jobTitle": "Full Stack Engineer", "industry": "Tech consultant", - "cities": ["Plano", "Fort Wayne"], + "cities": ["Phoenix", "Madison"], "_id": { - "$oid": "66723d958f368f285d303f1f" + "$oid": "6674c30595590f9fd94591e6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9269,15 +9269,15 @@ "cohort": "18", "jobTitle": "Data Engineer", "industry": "Data solutions", - "cities": ["St. Louis", "Kansas City", "Winston-Salem"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f20" + "$oid": "6674c30595590f9fd94591e7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9292,13 +9292,13 @@ "industry": "Sales", "cities": [], "_id": { - "$oid": "66723d958f368f285d303f21" + "$oid": "6674c30595590f9fd94591e8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9311,15 +9311,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Fashion/E-Commerce", - "cities": [], + "cities": ["Mesa"], "_id": { - "$oid": "66723d958f368f285d303f22" + "$oid": "6674c30595590f9fd94591e9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9332,15 +9332,15 @@ "cohort": "35", "jobTitle": "Frontend Developer", "industry": "Software / Tech", - "cities": ["Tampa", "Lubbock"], + "cities": ["Washington", "Tucson"], "_id": { - "$oid": "66723d958f368f285d303f23" + "$oid": "6674c30595590f9fd94591ea" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9353,15 +9353,15 @@ "cohort": "31", "jobTitle": "Backend Software Engineer", "industry": "Media", - "cities": ["Jersey City"], + "cities": ["Virginia Beach", "Oakland", "New York"], "_id": { - "$oid": "66723d958f368f285d303f24" + "$oid": "6674c30595590f9fd94591eb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9374,15 +9374,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["Phoenix"], + "cities": ["Tulsa"], "_id": { - "$oid": "66723d958f368f285d303f25" + "$oid": "6674c30595590f9fd94591ec" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9395,15 +9395,15 @@ "cohort": "2", "jobTitle": "Full Stack Web3 Engineer", "industry": "Crypto", - "cities": ["Sacramento"], + "cities": ["Cincinnati"], "_id": { - "$oid": "66723d958f368f285d303f26" + "$oid": "6674c30595590f9fd94591ed" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9416,15 +9416,15 @@ "cohort": "3", "jobTitle": "Consultant - front end developer", "industry": "Consulting", - "cities": ["Lubbock", "Sacramento"], + "cities": ["Fresno", "New York"], "_id": { - "$oid": "66723d958f368f285d303f27" + "$oid": "6674c30595590f9fd94591ee" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9437,15 +9437,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Airline", - "cities": ["Henderson"], + "cities": ["Austin", "Indianapolis"], "_id": { - "$oid": "66723d958f368f285d303f28" + "$oid": "6674c30595590f9fd94591ef" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9458,15 +9458,15 @@ "cohort": "52", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Cleveland", "Aurora"], + "cities": ["Tucson"], "_id": { - "$oid": "66723d958f368f285d303f29" + "$oid": "6674c30595590f9fd94591f0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9479,15 +9479,15 @@ "cohort": "37", "jobTitle": "Software Engineer", "industry": "Software & Tech services", - "cities": ["Louisville"], + "cities": ["San Antonio", "Sydney"], "_id": { - "$oid": "66723d958f368f285d303f2a" + "$oid": "6674c30595590f9fd94591f1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9500,15 +9500,15 @@ "cohort": "14", "jobTitle": "Senior Software Engineer", "industry": "Manufacturing and Distribution", - "cities": [], + "cities": ["Henderson", "New York", "Memphis"], "_id": { - "$oid": "66723d958f368f285d303f2b" + "$oid": "6674c30595590f9fd94591f2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9521,15 +9521,15 @@ "cohort": "9", "jobTitle": "Forward deployed software engineer", "industry": "Healthcare", - "cities": ["Toledo", "Minneapolis"], + "cities": ["Lincoln"], "_id": { - "$oid": "66723d958f368f285d303f2c" + "$oid": "6674c30595590f9fd94591f3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9542,15 +9542,15 @@ "cohort": "23", "jobTitle": "Full Stack Software Engineer", "industry": "International Banking", - "cities": ["Tulsa", "Corpus Christi", "Irvine"], + "cities": ["Fort Worth"], "_id": { - "$oid": "66723d958f368f285d303f2d" + "$oid": "6674c30595590f9fd94591f4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9563,15 +9563,15 @@ "cohort": "41", "jobTitle": "Senior Full Stack Software Engineer", "industry": "Data/Analytics/Cloud", - "cities": ["Tokyo", "Chula Vista", "Santa Ana"], + "cities": ["Mumbai"], "_id": { - "$oid": "66723d958f368f285d303f2e" + "$oid": "6674c30595590f9fd94591f5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9584,15 +9584,15 @@ "cohort": "6", "jobTitle": "Software Engineer", "industry": "", - "cities": [], + "cities": ["Riverside", "Washington", "Anchorage"], "_id": { - "$oid": "66723d958f368f285d303f2f" + "$oid": "6674c30595590f9fd94591f6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9605,15 +9605,15 @@ "cohort": "42", "jobTitle": "Software Engineer", "industry": "Pet healthcare", - "cities": ["Durham"], + "cities": ["Detroit", "Las Vegas"], "_id": { - "$oid": "66723d958f368f285d303f30" + "$oid": "6674c30595590f9fd94591f7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9626,15 +9626,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Healthtech", - "cities": ["Chicago"], + "cities": ["Irvine"], "_id": { - "$oid": "66723d958f368f285d303f31" + "$oid": "6674c30595590f9fd94591f8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9647,15 +9647,15 @@ "cohort": "20", "jobTitle": "Full stack software engineer", "industry": "", - "cities": ["Anchorage"], + "cities": ["Oklahoma City", "Long Beach", "Winston-Salem"], "_id": { - "$oid": "66723d958f368f285d303f32" + "$oid": "6674c30595590f9fd94591f9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9668,15 +9668,15 @@ "cohort": "36", "jobTitle": "Fullstack Engineer", "industry": "Entertainment/Consulting", - "cities": ["Laredo"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f33" + "$oid": "6674c30595590f9fd94591fa" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9689,15 +9689,15 @@ "cohort": "22", "jobTitle": "Developer", "industry": "", - "cities": ["San Jose", "Garland", "Virginia Beach"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f34" + "$oid": "6674c30595590f9fd94591fb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9710,15 +9710,15 @@ "cohort": "4", "jobTitle": "Full Stack Software Engineer", "industry": "Healthtech/Healthcare", - "cities": [], + "cities": ["Washington", "Toledo"], "_id": { - "$oid": "66723d958f368f285d303f35" + "$oid": "6674c30595590f9fd94591fc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9731,15 +9731,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Retail", - "cities": ["Mexico City"], + "cities": ["New York"], "_id": { - "$oid": "66723d958f368f285d303f36" + "$oid": "6674c30595590f9fd94591fd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9752,15 +9752,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "digital certificates / security", - "cities": ["Albuquerque"], + "cities": ["Mumbai", "St. Louis"], "_id": { - "$oid": "66723d958f368f285d303f37" + "$oid": "6674c30595590f9fd94591fe" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9773,15 +9773,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Electronic Manufacturing", - "cities": ["Sรฃo Paulo", "Irving", "Cleveland"], + "cities": ["Fort Worth", "Fresno"], "_id": { - "$oid": "66723d958f368f285d303f38" + "$oid": "6674c30595590f9fd94591ff" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9794,15 +9794,15 @@ "cohort": "22", "jobTitle": "Developer", "industry": "SEO", - "cities": ["St. Louis", "Cincinnati", "Glendale"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f39" + "$oid": "6674c30595590f9fd9459200" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9815,15 +9815,15 @@ "cohort": "17", "jobTitle": "Technical Editor", "industry": "Cloud service", - "cities": [], + "cities": ["San Antonio"], "_id": { - "$oid": "66723d958f368f285d303f3a" + "$oid": "6674c30595590f9fd9459201" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9836,15 +9836,15 @@ "cohort": "29", "jobTitle": "Senior Software Engineer", "industry": "Tech", - "cities": ["Portland"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f3b" + "$oid": "6674c30595590f9fd9459202" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9857,15 +9857,15 @@ "cohort": "9", "jobTitle": "Software Engineer I, UI,", "industry": "Blockchain", - "cities": [], + "cities": ["Gilbert"], "_id": { - "$oid": "66723d958f368f285d303f3c" + "$oid": "6674c30595590f9fd9459203" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9878,15 +9878,15 @@ "cohort": "2", "jobTitle": "Software Engineer I", "industry": "Music", - "cities": [], + "cities": ["Cincinnati", "Irvine"], "_id": { - "$oid": "66723d958f368f285d303f3d" + "$oid": "6674c30595590f9fd9459204" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9899,15 +9899,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Saint Paul"], + "cities": ["Phoenix", "Kansas City", "Cincinnati"], "_id": { - "$oid": "66723d958f368f285d303f3e" + "$oid": "6674c30595590f9fd9459205" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9920,15 +9920,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Entertainment", - "cities": ["Saint Paul"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f3f" + "$oid": "6674c30595590f9fd9459206" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9941,15 +9941,15 @@ "cohort": "25", "jobTitle": "Sr Frontend and Fullstack Engineer", "industry": "Entertainment", - "cities": ["Aurora", "Wichita"], + "cities": ["Fort Worth", "Toronto", "Anchorage"], "_id": { - "$oid": "66723d958f368f285d303f40" + "$oid": "6674c30595590f9fd9459207" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9962,15 +9962,15 @@ "cohort": "38", "jobTitle": "Associate Software Engineer", "industry": "Entertainment", - "cities": ["Anchorage"], + "cities": ["Chicago", "Honolulu"], "_id": { - "$oid": "66723d958f368f285d303f41" + "$oid": "6674c30595590f9fd9459208" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -9983,15 +9983,15 @@ "cohort": "12", "jobTitle": "Lead Software Engineer", "industry": "Entertainment", - "cities": ["Sacramento", "Cleveland", "Wichita"], + "cities": ["Colorado Springs"], "_id": { - "$oid": "66723d958f368f285d303f42" + "$oid": "6674c30595590f9fd9459209" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10004,15 +10004,15 @@ "cohort": "24", "jobTitle": "Associate Software Engineer", "industry": "Entertainment", - "cities": ["Baltimore", "Portland"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f43" + "$oid": "6674c30595590f9fd945920a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10025,15 +10025,15 @@ "cohort": "25", "jobTitle": "Senior Software Engineer", "industry": "Software / Tech", - "cities": ["Santa Ana", "Toledo", "Laredo"], + "cities": ["Santa Ana", "Chicago", "Toledo"], "_id": { - "$oid": "66723d958f368f285d303f44" + "$oid": "6674c30595590f9fd945920b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10046,15 +10046,15 @@ "cohort": "21", "jobTitle": "CEO, Prediqt", "industry": "Medical", - "cities": ["Norfolk", "Philadelphia", "San Diego"], + "cities": ["Reno", "Long Beach", "Henderson"], "_id": { - "$oid": "66723d958f368f285d303f45" + "$oid": "6674c30595590f9fd945920c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10067,15 +10067,15 @@ "cohort": "48", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["San Francisco"], + "cities": ["Baltimore", "San Francisco", "Aurora"], "_id": { - "$oid": "66723d958f368f285d303f46" + "$oid": "6674c30595590f9fd945920d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10088,15 +10088,15 @@ "cohort": "3", "jobTitle": "Senior Robotics Engineer", "industry": "Crypto Fintech", - "cities": ["Milwaukee", "Virginia Beach"], + "cities": ["Dallas"], "_id": { - "$oid": "66723d958f368f285d303f47" + "$oid": "6674c30595590f9fd945920e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10109,15 +10109,15 @@ "cohort": "38", "jobTitle": "Software Engineer(Contract)", "industry": "Products", - "cities": ["Chesapeake", "Gilbert"], + "cities": ["Toledo"], "_id": { - "$oid": "66723d958f368f285d303f48" + "$oid": "6674c30595590f9fd945920f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10130,15 +10130,15 @@ "cohort": "22", "jobTitle": "Software Engineer, Backend", "industry": "", - "cities": ["Durham", "Lexington", "San Jose"], + "cities": ["Indianapolis"], "_id": { - "$oid": "66723d958f368f285d303f49" + "$oid": "6674c30595590f9fd9459210" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10151,15 +10151,15 @@ "cohort": "30", "jobTitle": "Back end engineer", "industry": "apartment hotels", - "cities": ["Lexington", "St. Petersburg", "Mexico City"], + "cities": ["Saint Paul", "Boston"], "_id": { - "$oid": "66723d958f368f285d303f4a" + "$oid": "6674c30595590f9fd9459211" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10172,15 +10172,15 @@ "cohort": "51", "jobTitle": "Senior Fullstack Engineer", "industry": "Real Estate", - "cities": ["Nashville", "Lincoln", "Scottsdale"], + "cities": ["Milwaukee", "Irvine", "North Las Vegas"], "_id": { - "$oid": "66723d958f368f285d303f4b" + "$oid": "6674c30595590f9fd9459212" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10193,15 +10193,15 @@ "cohort": "11", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["Tulsa"], + "cities": ["Toronto", "Dallas"], "_id": { - "$oid": "66723d958f368f285d303f4c" + "$oid": "6674c30595590f9fd9459213" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10214,15 +10214,15 @@ "cohort": "27", "jobTitle": "Senior Software Engineer", "industry": "Fintech - Real Estate", - "cities": ["Memphis", "El Paso"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f4d" + "$oid": "6674c30595590f9fd9459214" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10235,15 +10235,15 @@ "cohort": "34", "jobTitle": "Full Stack Engineer", "industry": "Retail", - "cities": [], + "cities": ["Greensboro"], "_id": { - "$oid": "66723d958f368f285d303f4e" + "$oid": "6674c30595590f9fd9459215" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10256,15 +10256,15 @@ "cohort": "45", "jobTitle": "Software Engineer", "industry": "Fantasy Sports", - "cities": [], + "cities": ["Dallas", "Irvine"], "_id": { - "$oid": "66723d958f368f285d303f4f" + "$oid": "6674c30595590f9fd9459216" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10277,15 +10277,15 @@ "cohort": "23", "jobTitle": "Software Developer II", "industry": "", - "cities": ["Louisville", "Mexico City", "Miami"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f50" + "$oid": "6674c30595590f9fd9459217" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10298,15 +10298,15 @@ "cohort": "23", "jobTitle": "Software Engineer II", "industry": "", - "cities": ["Irving", "Memphis"], + "cities": ["New York", "Garland"], "_id": { - "$oid": "66723d958f368f285d303f51" + "$oid": "6674c30595590f9fd9459218" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10319,15 +10319,15 @@ "cohort": "8", "jobTitle": "Software Development Engineer - Frontend", "industry": "Software / Tech", - "cities": [], + "cities": ["Plano", "Phoenix", "Washington"], "_id": { - "$oid": "66723d958f368f285d303f52" + "$oid": "6674c30595590f9fd9459219" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10340,15 +10340,15 @@ "cohort": "31", "jobTitle": "Software Engineer", "industry": "Supply Chain & Logistics", - "cities": ["Irving"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f53" + "$oid": "6674c30595590f9fd945921a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10361,15 +10361,15 @@ "cohort": "21", "jobTitle": "Jr. Software Engineer", "industry": "Food & Beverages", - "cities": ["Berlin"], + "cities": ["Scottsdale"], "_id": { - "$oid": "66723d958f368f285d303f54" + "$oid": "6674c30595590f9fd945921b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10382,15 +10382,15 @@ "cohort": "37", "jobTitle": "Software Engineer, Product", "industry": "Techonology Services", - "cities": ["El Paso", "Aurora"], + "cities": ["Detroit"], "_id": { - "$oid": "66723d958f368f285d303f55" + "$oid": "6674c30595590f9fd945921c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10403,15 +10403,15 @@ "cohort": "24", "jobTitle": "Software Engineer", "industry": "Cloudtech", - "cities": ["Fort Wayne"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f56" + "$oid": "6674c30595590f9fd945921d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10426,13 +10426,13 @@ "industry": "Cloud Storage", "cities": [], "_id": { - "$oid": "66723d958f368f285d303f57" + "$oid": "6674c30595590f9fd945921e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10447,13 +10447,13 @@ "industry": "Sustainable E-Commerce", "cities": [], "_id": { - "$oid": "66723d958f368f285d303f58" + "$oid": "6674c30595590f9fd945921f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10466,15 +10466,15 @@ "cohort": "21", "jobTitle": "Software Engineer", "industry": "Adtech", - "cities": ["Colorado Springs", "Honolulu", "Plano"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f59" + "$oid": "6674c30595590f9fd9459220" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10487,15 +10487,15 @@ "cohort": "4", "jobTitle": "Senior Software Engineer", "industry": "Fintech, Data Analytics", - "cities": [], + "cities": ["Seattle", "Oklahoma City", "Riverside"], "_id": { - "$oid": "66723d958f368f285d303f5a" + "$oid": "6674c30595590f9fd9459221" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10508,15 +10508,15 @@ "cohort": "17", "jobTitle": "Software Engineer", "industry": "", - "cities": [], + "cities": ["Atlanta", "Austin"], "_id": { - "$oid": "66723d958f368f285d303f5b" + "$oid": "6674c30595590f9fd9459222" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10531,13 +10531,13 @@ "industry": "Fintech", "cities": [], "_id": { - "$oid": "66723d958f368f285d303f5c" + "$oid": "6674c30595590f9fd9459223" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10550,15 +10550,15 @@ "cohort": "36", "jobTitle": "Software engineer", "industry": "Software / Tech", - "cities": ["Chula Vista"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f5d" + "$oid": "6674c30595590f9fd9459224" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10571,15 +10571,15 @@ "cohort": "45", "jobTitle": "Full Stack Software Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Long Beach", "Honolulu", "Indianapolis"], "_id": { - "$oid": "66723d958f368f285d303f5e" + "$oid": "6674c30595590f9fd9459225" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10592,15 +10592,15 @@ "cohort": "33", "jobTitle": "Software Engineer", "industry": "ECcmmerce", - "cities": [], + "cities": ["Las Vegas", "Memphis", "San Diego"], "_id": { - "$oid": "66723d958f368f285d303f5f" + "$oid": "6674c30595590f9fd9459226" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10613,15 +10613,15 @@ "cohort": "48", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Anaheim", "Lubbock", "Phoenix"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f60" + "$oid": "6674c30595590f9fd9459227" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10634,15 +10634,15 @@ "cohort": "17", "jobTitle": "Software Engineer", "industry": "Consulting", - "cities": [], + "cities": ["Santa Ana", "Memphis", "Tulsa"], "_id": { - "$oid": "66723d958f368f285d303f61" + "$oid": "6674c30595590f9fd9459228" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10655,15 +10655,15 @@ "cohort": "10", "jobTitle": "Software developer", "industry": "Media Consulting", - "cities": ["Orlando", "Chula Vista", "Mumbai"], + "cities": ["Gilbert"], "_id": { - "$oid": "66723d958f368f285d303f62" + "$oid": "6674c30595590f9fd9459229" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10678,13 +10678,13 @@ "industry": "Customer Service", "cities": [], "_id": { - "$oid": "66723d958f368f285d303f63" + "$oid": "6674c30595590f9fd945922a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10697,15 +10697,15 @@ "cohort": "50", "jobTitle": "NodeJS Developer", "industry": "Software / Tech", - "cities": ["Plano", "Cincinnati"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f64" + "$oid": "6674c30595590f9fd945922b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10720,13 +10720,13 @@ "industry": "Education/Edtech", "cities": [], "_id": { - "$oid": "66723d958f368f285d303f65" + "$oid": "6674c30595590f9fd945922c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10741,13 +10741,13 @@ "industry": "Tech (Builds solutions for companies - Typically Web Dev)", "cities": [], "_id": { - "$oid": "66723d958f368f285d303f66" + "$oid": "6674c30595590f9fd945922d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10760,15 +10760,15 @@ "cohort": "14", "jobTitle": "Data Engineer", "industry": "Artificial Intelligence", - "cities": [], + "cities": ["Lexington"], "_id": { - "$oid": "66723d958f368f285d303f67" + "$oid": "6674c30595590f9fd945922e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10781,15 +10781,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "Consulting", - "cities": ["Columbus"], + "cities": ["Dallas"], "_id": { - "$oid": "66723d958f368f285d303f68" + "$oid": "6674c30595590f9fd945922f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10802,15 +10802,15 @@ "cohort": "21", "jobTitle": "Software Engineer", "industry": "NA", - "cities": [], + "cities": ["Riverside", "Seattle"], "_id": { - "$oid": "66723d958f368f285d303f69" + "$oid": "6674c30595590f9fd9459230" }, "createdAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.818Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10823,15 +10823,15 @@ "cohort": "17", "jobTitle": "Web / Mobile Developer", "industry": "Design", - "cities": ["Santa Ana", "Detroit"], + "cities": ["Lexington", "St. Petersburg", "Paris"], "_id": { - "$oid": "66723d958f368f285d303f6a" + "$oid": "6674c30595590f9fd9459231" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10844,15 +10844,15 @@ "cohort": "5", "jobTitle": "Software Engineer", "industry": "Finance", - "cities": ["Nashville", "Raleigh", "Lexington"], + "cities": ["Paris", "Orlando", "Fort Worth"], "_id": { - "$oid": "66723d958f368f285d303f6b" + "$oid": "6674c30595590f9fd9459232" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.061Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.061Z" }, "__v": 0 }, @@ -10865,15 +10865,15 @@ "cohort": "28", "jobTitle": "Software Engineer I", "industry": "Computer Software", - "cities": ["Fort Worth", "Memphis"], + "cities": ["Norfolk"], "_id": { - "$oid": "66723d958f368f285d303f6c" + "$oid": "6674c30595590f9fd9459233" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -10886,15 +10886,15 @@ "cohort": "45", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Jersey City", "Stockton", "London"], + "cities": ["Paris"], "_id": { - "$oid": "66723d958f368f285d303f6d" + "$oid": "6674c30595590f9fd9459234" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -10907,15 +10907,15 @@ "cohort": "Beta", "jobTitle": "Frontend Engineer", "industry": "eCommerce", - "cities": ["San Antonio", "Pittsburgh", "Sacramento"], + "cities": ["San Jose", "Oklahoma City"], "_id": { - "$oid": "66723d958f368f285d303f6e" + "$oid": "6674c30595590f9fd9459235" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -10928,15 +10928,15 @@ "cohort": "1", "jobTitle": "Full-Stack Software Developer", "industry": "Real Estate", - "cities": ["Anchorage", "Tokyo", "Saint Paul"], + "cities": ["Fresno", "Winston-Salem", "New York"], "_id": { - "$oid": "66723d958f368f285d303f6f" + "$oid": "6674c30595590f9fd9459236" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -10949,15 +10949,15 @@ "cohort": "34", "jobTitle": "Front End Software Engineer", "industry": "Security", - "cities": ["Dallas"], + "cities": ["San Jose", "Raleigh", "Jacksonville"], "_id": { - "$oid": "66723d958f368f285d303f70" + "$oid": "6674c30595590f9fd9459237" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -10970,15 +10970,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "Workplace tech", - "cities": ["Los Angeles", "Fort Wayne"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f71" + "$oid": "6674c30595590f9fd9459238" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -10991,15 +10991,15 @@ "cohort": "29", "jobTitle": "Backend/API Engineer", "industry": "Fintech", - "cities": ["Beijing", "Orlando"], + "cities": ["Berlin", "Columbus"], "_id": { - "$oid": "66723d958f368f285d303f72" + "$oid": "6674c30595590f9fd9459239" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11012,15 +11012,15 @@ "cohort": "8", "jobTitle": "Backend Engineer", "industry": "Other", - "cities": ["Lexington", "Chandler"], + "cities": ["Long Beach", "Chula Vista"], "_id": { - "$oid": "66723d958f368f285d303f73" + "$oid": "6674c30595590f9fd945923a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11033,15 +11033,15 @@ "cohort": "29", "jobTitle": "Game Systems Programmer", "industry": "Video Games", - "cities": ["Lexington"], + "cities": ["Kansas City"], "_id": { - "$oid": "66723d958f368f285d303f74" + "$oid": "6674c30595590f9fd945923b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11056,13 +11056,13 @@ "industry": "Gaming", "cities": [], "_id": { - "$oid": "66723d958f368f285d303f75" + "$oid": "6674c30595590f9fd945923c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11075,15 +11075,15 @@ "cohort": "43", "jobTitle": "Senior Technical Consultant", "industry": "Software Consulting Firm", - "cities": ["Indianapolis"], + "cities": ["San Antonio", "Nashville"], "_id": { - "$oid": "66723d958f368f285d303f76" + "$oid": "6674c30595590f9fd945923d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11096,15 +11096,15 @@ "cohort": "7", "jobTitle": "Firmware Developer", "industry": "Other", - "cities": [], + "cities": ["Detroit"], "_id": { - "$oid": "66723d958f368f285d303f77" + "$oid": "6674c30595590f9fd945923e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11117,15 +11117,15 @@ "cohort": "2", "jobTitle": "Senior Software Engineer", "industry": "", - "cities": ["Las Vegas"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f78" + "$oid": "6674c30595590f9fd945923f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11138,15 +11138,15 @@ "cohort": "29", "jobTitle": "Software Development Engineer", "industry": "GIS", - "cities": ["San Jose", "Detroit", "Seattle"], + "cities": ["Tokyo", "Washington", "Chandler"], "_id": { - "$oid": "66723d958f368f285d303f79" + "$oid": "6674c30595590f9fd9459240" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11159,15 +11159,15 @@ "cohort": "33", "jobTitle": "Software Development Engineer", "industry": "Geographic Information System", - "cities": ["San Francisco", "Cincinnati"], + "cities": ["Seattle", "Jacksonville", "Wichita"], "_id": { - "$oid": "66723d958f368f285d303f7a" + "$oid": "6674c30595590f9fd9459241" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11180,15 +11180,15 @@ "cohort": "41", "jobTitle": "Software Engineering Intern (end date 10/29/21)", "industry": "Geospatial Engineering (GIS)", - "cities": ["Miami"], + "cities": ["Los Angeles", "Oakland"], "_id": { - "$oid": "66723d958f368f285d303f7b" + "$oid": "6674c30595590f9fd9459242" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11201,15 +11201,15 @@ "cohort": "1", "jobTitle": "Frontend Engineer", "industry": "Fintech", - "cities": ["Indianapolis", "Berlin"], + "cities": ["San Jose", "Washington", "Tucson"], "_id": { - "$oid": "66723d958f368f285d303f7c" + "$oid": "6674c30595590f9fd9459243" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11222,15 +11222,15 @@ "cohort": "35", "jobTitle": "Software Engineer, Test", "industry": "Insurance", - "cities": ["Arlington", "Minneapolis", "Glendale"], + "cities": ["Fort Worth", "Indianapolis", "Anchorage"], "_id": { - "$oid": "66723d958f368f285d303f7d" + "$oid": "6674c30595590f9fd9459244" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11243,15 +11243,15 @@ "cohort": "31", "jobTitle": "software engineer", "industry": "Retail", - "cities": ["Sรฃo Paulo"], + "cities": ["Garland", "Long Beach"], "_id": { - "$oid": "66723d958f368f285d303f7e" + "$oid": "6674c30595590f9fd9459245" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11264,15 +11264,15 @@ "cohort": "23", "jobTitle": "Software Engineer I", "industry": "Fintech", - "cities": ["Newark", "Madison"], + "cities": ["Sรฃo Paulo", "Reno"], "_id": { - "$oid": "66723d958f368f285d303f7f" + "$oid": "6674c30595590f9fd9459246" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11285,15 +11285,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Anaheim", "Bakersfield", "Toronto"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f80" + "$oid": "6674c30595590f9fd9459247" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11306,15 +11306,15 @@ "cohort": "2", "jobTitle": "Software Engineer II", "industry": "Entertainment", - "cities": ["Arlington"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f81" + "$oid": "6674c30595590f9fd9459248" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11327,15 +11327,15 @@ "cohort": "23", "jobTitle": "Founder", "industry": "", - "cities": ["San Jose"], + "cities": ["Indianapolis", "Miami"], "_id": { - "$oid": "66723d958f368f285d303f82" + "$oid": "6674c30595590f9fd9459249" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11348,15 +11348,15 @@ "cohort": "20", "jobTitle": "Full-Stack Engineer (Sr)", "industry": "UX Design", - "cities": [], + "cities": ["Arlington", "Mumbai", "Cleveland"], "_id": { - "$oid": "66723d958f368f285d303f83" + "$oid": "6674c30595590f9fd945924a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11371,13 +11371,13 @@ "industry": "Other", "cities": [], "_id": { - "$oid": "66723d958f368f285d303f84" + "$oid": "6674c30595590f9fd945924b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11390,15 +11390,15 @@ "cohort": "30", "jobTitle": "Frontend Engineer", "industry": "Ed Tech", - "cities": ["Fort Worth"], + "cities": ["Stockton"], "_id": { - "$oid": "66723d958f368f285d303f85" + "$oid": "6674c30595590f9fd945924c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11411,15 +11411,15 @@ "cohort": "53", "jobTitle": "Software Engineer - UI", "industry": "Security", - "cities": ["Plano", "Madison"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f86" + "$oid": "6674c30595590f9fd945924d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11432,15 +11432,15 @@ "cohort": "Beta", "jobTitle": "Sr. Software Engineer", "industry": "blockchain/cryptocurrency", - "cities": ["London"], + "cities": ["St. Petersburg"], "_id": { - "$oid": "66723d958f368f285d303f87" + "$oid": "6674c30595590f9fd945924e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11455,13 +11455,13 @@ "industry": "Travel", "cities": [], "_id": { - "$oid": "66723d958f368f285d303f88" + "$oid": "6674c30595590f9fd945924f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11474,15 +11474,15 @@ "cohort": "14", "jobTitle": "Backend Software Engineer", "industry": "Insurance", - "cities": [], + "cities": ["El Paso", "Wichita", "Denver"], "_id": { - "$oid": "66723d958f368f285d303f89" + "$oid": "6674c30595590f9fd9459250" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11495,15 +11495,15 @@ "cohort": "56", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Anchorage", "Oklahoma City", "Bakersfield"], + "cities": ["Tampa", "Garland", "Columbus"], "_id": { - "$oid": "66723d958f368f285d303f8a" + "$oid": "6674c30595590f9fd9459251" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11516,15 +11516,15 @@ "cohort": "14", "jobTitle": "Rotational Engineer", "industry": "Tech", - "cities": ["Phoenix"], + "cities": ["Dallas", "Norfolk", "Paris"], "_id": { - "$oid": "66723d958f368f285d303f8b" + "$oid": "6674c30595590f9fd9459252" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11537,15 +11537,15 @@ "cohort": "42", "jobTitle": "Full-Stack Engineer", "industry": "Social Media/Networking", - "cities": ["Fresno", "Tokyo"], + "cities": ["Kansas City"], "_id": { - "$oid": "66723d958f368f285d303f8c" + "$oid": "6674c30595590f9fd9459253" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11558,15 +11558,15 @@ "cohort": "42", "jobTitle": "Software Engineer", "industry": "Social Media", - "cities": ["Jacksonville", "Tampa"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f8d" + "$oid": "6674c30595590f9fd9459254" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11579,15 +11579,15 @@ "cohort": "14", "jobTitle": "Fullstack Developer - Contract", "industry": "Internet", - "cities": [], + "cities": ["Mesa"], "_id": { - "$oid": "66723d958f368f285d303f8e" + "$oid": "6674c30595590f9fd9459255" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11600,15 +11600,15 @@ "cohort": "44", "jobTitle": "Full Stack Software Engineer", "industry": "Social Media", - "cities": ["Durham", "San Antonio"], + "cities": ["Raleigh", "Oakland", "Dallas"], "_id": { - "$oid": "66723d958f368f285d303f8f" + "$oid": "6674c30595590f9fd9459256" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11621,15 +11621,15 @@ "cohort": "44", "jobTitle": "Full Stack Software Engineer", "industry": "Tech", - "cities": ["St. Petersburg", "Nashville", "Virginia Beach"], + "cities": ["London", "Oakland"], "_id": { - "$oid": "66723d958f368f285d303f90" + "$oid": "6674c30595590f9fd9459257" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11642,15 +11642,15 @@ "cohort": "21", "jobTitle": "Software Engineer", "industry": "Social Media", - "cities": ["Indianapolis", "Albuquerque", "Seattle"], + "cities": ["Fort Worth"], "_id": { - "$oid": "66723d958f368f285d303f91" + "$oid": "6674c30595590f9fd9459258" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11663,15 +11663,15 @@ "cohort": "2", "jobTitle": "Full Stack Software Engineer", "industry": "Social Media", - "cities": ["Chicago", "Austin", "Indianapolis"], + "cities": ["Washington"], "_id": { - "$oid": "66723d958f368f285d303f92" + "$oid": "6674c30595590f9fd9459259" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11684,15 +11684,15 @@ "cohort": "42", "jobTitle": "Full-Stack Engineer", "industry": "Social Media", - "cities": ["Laredo", "Chula Vista", "Toronto"], + "cities": ["Omaha"], "_id": { - "$oid": "66723d958f368f285d303f93" + "$oid": "6674c30595590f9fd945925a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11705,15 +11705,15 @@ "cohort": "42", "jobTitle": "Software Engineer", "industry": "Social Media", - "cities": ["Mexico City", "Scottsdale", "New Orleans"], + "cities": ["Mesa", "Anchorage", "Durham"], "_id": { - "$oid": "66723d958f368f285d303f94" + "$oid": "6674c30595590f9fd945925b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11728,13 +11728,13 @@ "industry": "Social media", "cities": [], "_id": { - "$oid": "66723d958f368f285d303f95" + "$oid": "6674c30595590f9fd945925c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11747,15 +11747,15 @@ "cohort": "32", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Orlando"], + "cities": ["San Jose", "Mumbai"], "_id": { - "$oid": "66723d958f368f285d303f96" + "$oid": "6674c30595590f9fd945925d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11768,15 +11768,15 @@ "cohort": "32", "jobTitle": "Software Engineer II", "industry": "Entertainment", - "cities": ["Fresno", "Irvine"], + "cities": ["Fort Worth"], "_id": { - "$oid": "66723d958f368f285d303f97" + "$oid": "6674c30595590f9fd945925e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11789,15 +11789,15 @@ "cohort": "24", "jobTitle": "Software Engineer I", "industry": "", - "cities": ["Albuquerque"], + "cities": ["Minneapolis"], "_id": { - "$oid": "66723d958f368f285d303f98" + "$oid": "6674c30595590f9fd945925f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11810,15 +11810,15 @@ "cohort": "27", "jobTitle": "Front end software engineer", "industry": "Entertainment?", - "cities": [], + "cities": ["Greensboro"], "_id": { - "$oid": "66723d958f368f285d303f99" + "$oid": "6674c30595590f9fd9459260" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11831,15 +11831,15 @@ "cohort": "7", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Dallas"], + "cities": ["Durham"], "_id": { - "$oid": "66723d958f368f285d303f9a" + "$oid": "6674c30595590f9fd9459261" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11852,15 +11852,15 @@ "cohort": "38", "jobTitle": "Senior Software Engineer", "industry": "Entertainment", - "cities": ["Philadelphia"], + "cities": ["Detroit"], "_id": { - "$oid": "66723d958f368f285d303f9b" + "$oid": "6674c30595590f9fd9459262" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11873,15 +11873,15 @@ "cohort": "26", "jobTitle": "Software Engineer", "industry": "Entertainment", - "cities": [], + "cities": ["North Las Vegas", "Honolulu"], "_id": { - "$oid": "66723d958f368f285d303f9c" + "$oid": "6674c30595590f9fd9459263" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11894,15 +11894,15 @@ "cohort": "11", "jobTitle": "Cloud Engineer", "industry": "Cloud Services", - "cities": ["Chandler", "Plano", "Lincoln"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f9d" + "$oid": "6674c30595590f9fd9459264" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11915,15 +11915,15 @@ "cohort": "4", "jobTitle": "Founding Full-Stack Software Engineer", "industry": "Entertainment", - "cities": ["Sรฃo Paulo"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f9e" + "$oid": "6674c30595590f9fd9459265" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11936,15 +11936,15 @@ "cohort": "36", "jobTitle": "Full Stack Developer", "industry": "Restaurant, Food, and Beverage", - "cities": ["Oakland"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303f9f" + "$oid": "6674c30595590f9fd9459266" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11957,15 +11957,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "E-commerce", - "cities": ["Anchorage"], + "cities": ["Norfolk", "Memphis"], "_id": { - "$oid": "66723d958f368f285d303fa0" + "$oid": "6674c30595590f9fd9459267" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11978,15 +11978,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Fashion", - "cities": [], + "cities": ["Oklahoma City", "Dallas"], "_id": { - "$oid": "66723d958f368f285d303fa1" + "$oid": "6674c30595590f9fd9459268" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -11999,15 +11999,15 @@ "cohort": "14", "jobTitle": "Software Development Engineer", "industry": "Software / Tech", - "cities": ["Chandler", "Santa Ana"], + "cities": ["Lincoln", "Saint Paul", "Tokyo"], "_id": { - "$oid": "66723d958f368f285d303fa2" + "$oid": "6674c30595590f9fd9459269" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -12020,15 +12020,15 @@ "cohort": "23", "jobTitle": "Software Engineer II", "industry": "Government Consulting", - "cities": ["Oakland", "Anchorage", "Oklahoma City"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303fa3" + "$oid": "6674c30595590f9fd945926a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -12043,13 +12043,13 @@ "industry": "Furniture Subscription", "cities": [], "_id": { - "$oid": "66723d958f368f285d303fa4" + "$oid": "6674c30595590f9fd945926b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -12062,15 +12062,15 @@ "cohort": "34", "jobTitle": "Jr Software Engineer, Cloud", "industry": "Cloud Services", - "cities": [], + "cities": ["Aurora"], "_id": { - "$oid": "66723d958f368f285d303fa5" + "$oid": "6674c30595590f9fd945926c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -12083,15 +12083,15 @@ "cohort": "26", "jobTitle": "Software Engineer 4", "industry": "Government/Banking", - "cities": [], + "cities": ["Tucson"], "_id": { - "$oid": "66723d958f368f285d303fa6" + "$oid": "6674c30595590f9fd945926d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -12104,15 +12104,15 @@ "cohort": "19", "jobTitle": "Frontend Developer", "industry": "Finance", - "cities": [], + "cities": ["Reno", "Pittsburgh"], "_id": { - "$oid": "66723d958f368f285d303fa7" + "$oid": "6674c30595590f9fd945926e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -12125,15 +12125,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Los Angeles"], + "cities": ["Tucson", "Lubbock", "Toledo"], "_id": { - "$oid": "66723d958f368f285d303fa8" + "$oid": "6674c30595590f9fd945926f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -12146,15 +12146,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "E-commerce", - "cities": ["San Jose", "Orlando"], + "cities": ["El Paso"], "_id": { - "$oid": "66723d958f368f285d303fa9" + "$oid": "6674c30595590f9fd9459270" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -12167,15 +12167,15 @@ "cohort": "35", "jobTitle": "Software Engineer", "industry": "Manufacturing", - "cities": ["Tucson", "Portland"], + "cities": ["Corpus Christi"], "_id": { - "$oid": "66723d958f368f285d303faa" + "$oid": "6674c30595590f9fd9459271" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -12188,15 +12188,15 @@ "cohort": "10", "jobTitle": "Full Stack Engineer", "industry": "Fintech", - "cities": ["Mesa", "Durham"], + "cities": ["Mexico City", "Fresno", "Paris"], "_id": { - "$oid": "66723d958f368f285d303fab" + "$oid": "6674c30595590f9fd9459272" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -12209,15 +12209,15 @@ "cohort": "10", "jobTitle": "Senior Mobile Developer", "industry": "Fintech", - "cities": ["Lubbock"], + "cities": ["Fort Worth", "Minneapolis", "Beijing"], "_id": { - "$oid": "66723d958f368f285d303fac" + "$oid": "6674c30595590f9fd9459273" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -12232,13 +12232,13 @@ "industry": "SaaS", "cities": [], "_id": { - "$oid": "66723d958f368f285d303fad" + "$oid": "6674c30595590f9fd9459274" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -12251,15 +12251,15 @@ "cohort": "21", "jobTitle": "Mid software engineer", "industry": "genealogy", - "cities": ["Berlin", "Anchorage"], + "cities": ["Sรฃo Paulo"], "_id": { - "$oid": "66723d958f368f285d303fae" + "$oid": "6674c30595590f9fd9459275" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -12272,15 +12272,15 @@ "cohort": "Beta", "jobTitle": "Senior Software Architect", "industry": "Fintech", - "cities": ["Long Beach", "Santa Ana"], + "cities": ["Laredo", "Los Angeles", "Austin"], "_id": { - "$oid": "66723d958f368f285d303faf" + "$oid": "6674c30595590f9fd9459276" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.062Z" }, "__v": 0 }, @@ -12293,15 +12293,15 @@ "cohort": "49", "jobTitle": "Data engineer", "industry": "Fintech", - "cities": ["Chula Vista", "Aurora", "Jacksonville"], + "cities": ["Honolulu"], "_id": { - "$oid": "66723d958f368f285d303fb0" + "$oid": "6674c30595590f9fd9459277" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12314,15 +12314,15 @@ "cohort": "14", "jobTitle": "Front End Software Engineer", "industry": "Insurance", - "cities": ["Toledo", "Winston-Salem", "Honolulu"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303fb1" + "$oid": "6674c30595590f9fd9459278" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12335,15 +12335,15 @@ "cohort": "37", "jobTitle": "Frontend Software Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Reno"], "_id": { - "$oid": "66723d958f368f285d303fb2" + "$oid": "6674c30595590f9fd9459279" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12356,15 +12356,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Banking", - "cities": ["Toledo"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303fb3" + "$oid": "6674c30595590f9fd945927a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12377,15 +12377,15 @@ "cohort": "41", "jobTitle": "Frontend Engineer", "industry": "Manufacturing", - "cities": ["Beijing", "Atlanta", "Aurora"], + "cities": ["Tokyo", "Fort Wayne", "Reno"], "_id": { - "$oid": "66723d958f368f285d303fb4" + "$oid": "6674c30595590f9fd945927b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12398,15 +12398,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Las Vegas"], + "cities": ["Los Angeles"], "_id": { - "$oid": "66723d958f368f285d303fb5" + "$oid": "6674c30595590f9fd945927c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12419,15 +12419,15 @@ "cohort": "2", "jobTitle": "Software Development Engineer IV", "industry": "Fintech", - "cities": ["Irvine", "San Antonio", "St. Petersburg"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303fb6" + "$oid": "6674c30595590f9fd945927d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12440,15 +12440,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "Entertainment", - "cities": ["Fort Worth", "Nashville"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303fb7" + "$oid": "6674c30595590f9fd945927e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12461,15 +12461,15 @@ "cohort": "21", "jobTitle": "Lead Software Engineer", "industry": "Meteorology/Environmental Science", - "cities": ["Lubbock"], + "cities": ["Anchorage"], "_id": { - "$oid": "66723d958f368f285d303fb8" + "$oid": "6674c30595590f9fd945927f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12482,15 +12482,15 @@ "cohort": "1", "jobTitle": "Security", "industry": "Software / Tech", - "cities": ["Kansas City"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303fb9" + "$oid": "6674c30595590f9fd9459280" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12503,15 +12503,15 @@ "cohort": "3", "jobTitle": "Full Stack Software Developer", "industry": "Consulting, the project I am working on is in the Education industry", - "cities": ["Garland", "Madison"], + "cities": ["Memphis", "Sydney", "Norfolk"], "_id": { - "$oid": "66723d958f368f285d303fba" + "$oid": "6674c30595590f9fd9459281" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12524,15 +12524,15 @@ "cohort": "24", "jobTitle": "Senior Software Engineer", "industry": "Aviation", - "cities": [], + "cities": ["Stockton", "Detroit", "Indianapolis"], "_id": { - "$oid": "66723d958f368f285d303fbb" + "$oid": "6674c30595590f9fd9459282" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12545,15 +12545,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Public Safety", - "cities": ["Tulsa"], + "cities": ["Arlington", "Minneapolis"], "_id": { - "$oid": "66723d958f368f285d303fbc" + "$oid": "6674c30595590f9fd9459283" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12566,15 +12566,15 @@ "cohort": "40", "jobTitle": "Software Engineer II", "industry": "Other", - "cities": [], + "cities": ["Indianapolis"], "_id": { - "$oid": "66723d958f368f285d303fbd" + "$oid": "6674c30595590f9fd9459284" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12587,15 +12587,15 @@ "cohort": "32", "jobTitle": "Software Engineer I", "industry": "Fintech", - "cities": [], + "cities": ["Chicago", "St. Louis"], "_id": { - "$oid": "66723d958f368f285d303fbe" + "$oid": "6674c30595590f9fd9459285" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12608,15 +12608,15 @@ "cohort": "16", "jobTitle": "Software Engineer I", "industry": "Other", - "cities": ["Chandler", "Milwaukee", "Nashville"], + "cities": ["Lincoln"], "_id": { - "$oid": "66723d958f368f285d303fbf" + "$oid": "6674c30595590f9fd9459286" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12629,15 +12629,15 @@ "cohort": "32", "jobTitle": "Senior Full Stack Software Engineer", "industry": "Healthcare", - "cities": [], + "cities": ["London"], "_id": { - "$oid": "66723d958f368f285d303fc0" + "$oid": "6674c30595590f9fd9459287" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12650,15 +12650,15 @@ "cohort": "49", "jobTitle": "Software Engineer", "industry": "Retail", - "cities": ["Chula Vista"], + "cities": ["Las Vegas", "Reno"], "_id": { - "$oid": "66723d958f368f285d303fc1" + "$oid": "6674c30595590f9fd9459288" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12671,15 +12671,15 @@ "cohort": "12", "jobTitle": "Frontend software engineer", "industry": "Food tech", - "cities": ["Oklahoma City", "Fresno", "Toledo"], + "cities": ["Minneapolis", "Indianapolis"], "_id": { - "$oid": "66723d958f368f285d303fc2" + "$oid": "6674c30595590f9fd9459289" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12692,15 +12692,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "Human Resources", - "cities": ["Durham"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303fc3" + "$oid": "6674c30595590f9fd945928a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12713,15 +12713,15 @@ "cohort": "39", "jobTitle": "Software Engineer", "industry": "Education", - "cities": [], + "cities": ["Chicago"], "_id": { - "$oid": "66723d958f368f285d303fc4" + "$oid": "6674c30595590f9fd945928b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12736,13 +12736,13 @@ "industry": "Consultancy", "cities": [], "_id": { - "$oid": "66723d958f368f285d303fc5" + "$oid": "6674c30595590f9fd945928c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12755,15 +12755,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "Security", - "cities": ["Miami"], + "cities": ["Dallas", "Virginia Beach"], "_id": { - "$oid": "66723d958f368f285d303fc6" + "$oid": "6674c30595590f9fd945928d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12776,15 +12776,15 @@ "cohort": "5", "jobTitle": "Associate Software Engineer", "industry": "Fintech", - "cities": ["Denver"], + "cities": ["Riverside"], "_id": { - "$oid": "66723d958f368f285d303fc7" + "$oid": "6674c30595590f9fd945928e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12797,15 +12797,15 @@ "cohort": "51", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Memphis", "Toledo", "Sรฃo Paulo"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303fc8" + "$oid": "6674c30595590f9fd945928f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12818,15 +12818,15 @@ "cohort": "52", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Albuquerque", "Paris"], + "cities": ["Gilbert", "Nashville"], "_id": { - "$oid": "66723d958f368f285d303fc9" + "$oid": "6674c30595590f9fd9459290" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12839,15 +12839,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Orlando", "Scottsdale"], + "cities": ["Honolulu", "Toledo", "Stockton"], "_id": { - "$oid": "66723d958f368f285d303fca" + "$oid": "6674c30595590f9fd9459291" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12860,15 +12860,15 @@ "cohort": "19", "jobTitle": "Senior Full Stack Software Engineer (Frontend)", "industry": "", - "cities": [], + "cities": ["Raleigh", "Houston"], "_id": { - "$oid": "66723d958f368f285d303fcb" + "$oid": "6674c30595590f9fd9459292" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12883,13 +12883,13 @@ "industry": "IT", "cities": [], "_id": { - "$oid": "66723d958f368f285d303fcc" + "$oid": "6674c30595590f9fd9459293" }, "createdAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.819Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12902,15 +12902,15 @@ "cohort": "45", "jobTitle": "Backend Developer", "industry": "Telecoms", - "cities": [], + "cities": ["Laredo", "Washington", "Durham"], "_id": { - "$oid": "66723d958f368f285d303fcd" + "$oid": "6674c30595590f9fd9459294" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12923,15 +12923,15 @@ "cohort": "7", "jobTitle": "Senior Developer", "industry": "Consumer Goods: Retail (general)", - "cities": ["Jersey City", "Long Beach", "Bakersfield"], + "cities": ["Toronto", "Reno"], "_id": { - "$oid": "66723d958f368f285d303fce" + "$oid": "6674c30595590f9fd9459295" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12944,15 +12944,15 @@ "cohort": "2", "jobTitle": "Software Engineer", "industry": "Manufacturing", - "cities": [], + "cities": ["Phoenix"], "_id": { - "$oid": "66723d958f368f285d303fcf" + "$oid": "6674c30595590f9fd9459296" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12965,15 +12965,15 @@ "cohort": "20", "jobTitle": "Software Developer", "industry": "Manufacturing", - "cities": [], + "cities": ["Sรฃo Paulo", "Miami"], "_id": { - "$oid": "66723d958f368f285d303fd0" + "$oid": "6674c30595590f9fd9459297" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -12986,15 +12986,15 @@ "cohort": "50", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Mesa", "Berlin", "Cincinnati"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303fd1" + "$oid": "6674c30595590f9fd9459298" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13007,15 +13007,15 @@ "cohort": "32", "jobTitle": "Backend Software Engineer", "industry": "Entertainment", - "cities": [], + "cities": ["Chandler"], "_id": { - "$oid": "66723d958f368f285d303fd2" + "$oid": "6674c30595590f9fd9459299" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13028,15 +13028,15 @@ "cohort": "54", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Lexington", "Houston", "Colorado Springs"], + "cities": ["Mesa", "Cleveland"], "_id": { - "$oid": "66723d958f368f285d303fd3" + "$oid": "6674c30595590f9fd945929a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13049,15 +13049,15 @@ "cohort": "53", "jobTitle": "Software Developer", "industry": "Healthcare", - "cities": ["San Antonio", "Chicago", "Cleveland"], + "cities": ["Chandler"], "_id": { - "$oid": "66723d958f368f285d303fd4" + "$oid": "6674c30595590f9fd945929b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13070,15 +13070,15 @@ "cohort": "15", "jobTitle": "Software Engineer", "industry": "IT", - "cities": [], + "cities": ["Gilbert", "Denver"], "_id": { - "$oid": "66723d958f368f285d303fd5" + "$oid": "6674c30595590f9fd945929c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13091,15 +13091,15 @@ "cohort": "6", "jobTitle": "Software Engineer", "industry": "Research", - "cities": ["Tampa", "Irvine", "Garland"], + "cities": ["Indianapolis", "Pittsburgh"], "_id": { - "$oid": "66723d958f368f285d303fd6" + "$oid": "6674c30595590f9fd945929d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13112,15 +13112,15 @@ "cohort": "42", "jobTitle": "Software Developer", "industry": "Automation", - "cities": [], + "cities": ["Garland"], "_id": { - "$oid": "66723d958f368f285d303fd7" + "$oid": "6674c30595590f9fd945929e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13133,15 +13133,15 @@ "cohort": "22", "jobTitle": "Frontend Engineer", "industry": "Media", - "cities": ["Toledo"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303fd8" + "$oid": "6674c30595590f9fd945929f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13154,15 +13154,15 @@ "cohort": "6", "jobTitle": "Frontend, Software Engineer", "industry": "Tech", - "cities": ["New York"], + "cities": ["Philadelphia"], "_id": { - "$oid": "66723d958f368f285d303fd9" + "$oid": "6674c30595590f9fd94592a0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13175,15 +13175,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Fort Worth", "Beijing"], + "cities": ["Indianapolis", "Denver"], "_id": { - "$oid": "66723d958f368f285d303fda" + "$oid": "6674c30595590f9fd94592a1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13196,15 +13196,15 @@ "cohort": "44", "jobTitle": "React/JavaScript Developer", "industry": "Clothing", - "cities": ["Anchorage", "Laredo", "Mesa"], + "cities": ["Greensboro", "Dallas"], "_id": { - "$oid": "66723d958f368f285d303fdb" + "$oid": "6674c30595590f9fd94592a2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13217,15 +13217,15 @@ "cohort": "3", "jobTitle": "Full Stack Engineer", "industry": "Retail", - "cities": ["Stockton", "Virginia Beach"], + "cities": ["Chula Vista", "Norfolk", "North Las Vegas"], "_id": { - "$oid": "66723d958f368f285d303fdc" + "$oid": "6674c30595590f9fd94592a3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13240,13 +13240,13 @@ "industry": "Clothing/E-Commerce", "cities": [], "_id": { - "$oid": "66723d958f368f285d303fdd" + "$oid": "6674c30595590f9fd94592a4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13261,13 +13261,13 @@ "industry": "eCommerce", "cities": [], "_id": { - "$oid": "66723d958f368f285d303fde" + "$oid": "6674c30595590f9fd94592a5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13280,15 +13280,15 @@ "cohort": "7", "jobTitle": "Front-End Lead", "industry": "", - "cities": [], + "cities": ["Tampa", "Atlanta"], "_id": { - "$oid": "66723d958f368f285d303fdf" + "$oid": "6674c30595590f9fd94592a6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13301,15 +13301,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Bakersfield"], + "cities": ["Durham"], "_id": { - "$oid": "66723d958f368f285d303fe0" + "$oid": "6674c30595590f9fd94592a7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13322,15 +13322,15 @@ "cohort": "24", "jobTitle": "Fullstack Developer", "industry": "Aerospace", - "cities": ["New York", "Philadelphia"], + "cities": ["Cincinnati", "Garland", "Irvine"], "_id": { - "$oid": "66723d958f368f285d303fe1" + "$oid": "6674c30595590f9fd94592a8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13343,15 +13343,15 @@ "cohort": "17", "jobTitle": "Senior Software Engineer I", "industry": "Healthtech/Healthcare", - "cities": [], + "cities": ["Indianapolis", "Mesa"], "_id": { - "$oid": "66723d958f368f285d303fe2" + "$oid": "6674c30595590f9fd94592a9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13364,15 +13364,15 @@ "cohort": "20", "jobTitle": "Frontend Engineer", "industry": "Biotech", - "cities": [], + "cities": ["Milwaukee", "Atlanta", "Tokyo"], "_id": { - "$oid": "66723d958f368f285d303fe3" + "$oid": "6674c30595590f9fd94592aa" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13385,15 +13385,15 @@ "cohort": "8", "jobTitle": "Jr. Software Engineer", "industry": "Internet", - "cities": ["Plano", "Tokyo", "Baltimore"], + "cities": ["Albuquerque", "Jersey City", "Stockton"], "_id": { - "$oid": "66723d958f368f285d303fe4" + "$oid": "6674c30595590f9fd94592ab" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13406,15 +13406,15 @@ "cohort": "5", "jobTitle": "Software Engineer", "industry": "Blockchain/Web3", - "cities": ["Beijing", "Long Beach", "Riverside"], + "cities": ["Atlanta", "Orlando", "Tulsa"], "_id": { - "$oid": "66723d958f368f285d303fe5" + "$oid": "6674c30595590f9fd94592ac" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13429,13 +13429,13 @@ "industry": "Blockchain, Media and Entertainment", "cities": [], "_id": { - "$oid": "66723d958f368f285d303fe6" + "$oid": "6674c30595590f9fd94592ad" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13448,15 +13448,15 @@ "cohort": "22", "jobTitle": "Software Engineer II", "industry": "Tech", - "cities": ["Norfolk", "Long Beach", "San Francisco"], + "cities": ["Irving", "Louisville", "St. Louis"], "_id": { - "$oid": "66723d958f368f285d303fe7" + "$oid": "6674c30595590f9fd94592ae" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13469,15 +13469,15 @@ "cohort": "46", "jobTitle": "Full Stack Engineer", "industry": "Information Technology", - "cities": [], + "cities": ["Phoenix"], "_id": { - "$oid": "66723d958f368f285d303fe8" + "$oid": "6674c30595590f9fd94592af" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13492,13 +13492,13 @@ "industry": "Software / Tech", "cities": [], "_id": { - "$oid": "66723d958f368f285d303fe9" + "$oid": "6674c30595590f9fd94592b0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13511,15 +13511,15 @@ "cohort": "35", "jobTitle": "Software Engineer II", "industry": "E-commerce", - "cities": ["Arlington", "Seattle", "Glendale"], + "cities": ["Indianapolis", "Newark", "Scottsdale"], "_id": { - "$oid": "66723d958f368f285d303fea" + "$oid": "6674c30595590f9fd94592b1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13532,15 +13532,15 @@ "cohort": "4", "jobTitle": "Software Developer II", "industry": "Logistics Technology", - "cities": ["Durham"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303feb" + "$oid": "6674c30595590f9fd94592b2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13555,13 +13555,13 @@ "industry": "Internet", "cities": [], "_id": { - "$oid": "66723d958f368f285d303fec" + "$oid": "6674c30595590f9fd94592b3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13574,15 +13574,15 @@ "cohort": "46", "jobTitle": "Senior Software Development Engineer", "industry": "Software / Tech", - "cities": ["Memphis"], + "cities": ["St. Louis"], "_id": { - "$oid": "66723d958f368f285d303fed" + "$oid": "6674c30595590f9fd94592b4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13595,15 +13595,15 @@ "cohort": "21", "jobTitle": "Software Engineer", "industry": "Crowdfunding/fundraising", - "cities": ["Plano", "Cleveland"], + "cities": ["Jersey City", "Plano"], "_id": { - "$oid": "66723d958f368f285d303fee" + "$oid": "6674c30595590f9fd94592b5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13616,15 +13616,15 @@ "cohort": "11", "jobTitle": "Senior Full Stack Developer", "industry": "Advertising", - "cities": ["Tokyo", "Oklahoma City", "San Francisco"], + "cities": ["Chesapeake", "Minneapolis"], "_id": { - "$oid": "66723d958f368f285d303fef" + "$oid": "6674c30595590f9fd94592b6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13637,15 +13637,15 @@ "cohort": "12", "jobTitle": "Associate Software Engineer", "industry": "Finance / Banking", - "cities": ["Chesapeake", "Columbus"], + "cities": ["Irvine", "Las Vegas", "San Jose"], "_id": { - "$oid": "66723d958f368f285d303ff0" + "$oid": "6674c30595590f9fd94592b7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13658,15 +13658,15 @@ "cohort": "5", "jobTitle": "Analyst", "industry": "Fintech", - "cities": ["Lexington", "Irvine"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ff1" + "$oid": "6674c30595590f9fd94592b8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13679,15 +13679,15 @@ "cohort": "19", "jobTitle": "Vice President", "industry": "Finance", - "cities": ["Henderson"], + "cities": ["Washington"], "_id": { - "$oid": "66723d958f368f285d303ff2" + "$oid": "6674c30595590f9fd94592b9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13700,15 +13700,15 @@ "cohort": "31", "jobTitle": "Frontend Developer", "industry": "Government contractor", - "cities": ["Houston", "Bakersfield", "St. Louis"], + "cities": ["Reno", "Garland"], "_id": { - "$oid": "66723d958f368f285d303ff3" + "$oid": "6674c30595590f9fd94592ba" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13721,15 +13721,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Boston"], + "cities": ["El Paso", "San Jose", "Wichita"], "_id": { - "$oid": "66723d958f368f285d303ff4" + "$oid": "6674c30595590f9fd94592bb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13742,15 +13742,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "Healthcare, Med-tech, Telemedecine", - "cities": ["London", "Omaha", "Long Beach"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ff5" + "$oid": "6674c30595590f9fd94592bc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13763,15 +13763,15 @@ "cohort": "11", "jobTitle": "Senior Frontend Engineer", "industry": "Healthcare", - "cities": ["Honolulu", "Henderson"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ff6" + "$oid": "6674c30595590f9fd94592bd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13784,15 +13784,15 @@ "cohort": "34", "jobTitle": "Software Engineer", "industry": "Business Intelligence", - "cities": ["Garland", "Lincoln", "Tokyo"], + "cities": ["Long Beach", "Baltimore", "Irving"], "_id": { - "$oid": "66723d958f368f285d303ff7" + "$oid": "6674c30595590f9fd94592be" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13805,15 +13805,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Saint Paul"], + "cities": ["Honolulu", "Washington"], "_id": { - "$oid": "66723d958f368f285d303ff8" + "$oid": "6674c30595590f9fd94592bf" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13826,15 +13826,15 @@ "cohort": "15", "jobTitle": "Senior Software Engineer, Site Reliability Engineering", "industry": "Technology", - "cities": ["Columbus", "Aurora"], + "cities": ["San Antonio", "Cleveland"], "_id": { - "$oid": "66723d958f368f285d303ff9" + "$oid": "6674c30595590f9fd94592c0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13847,15 +13847,15 @@ "cohort": "38", "jobTitle": "Software Engineer - Level 3", "industry": "Technology", - "cities": ["Tokyo"], + "cities": ["Aurora"], "_id": { - "$oid": "66723d958f368f285d303ffa" + "$oid": "6674c30595590f9fd94592c1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13868,15 +13868,15 @@ "cohort": "10", "jobTitle": "Software Engineer (L3)", "industry": "Frontend Mobile Development", - "cities": ["Aurora"], + "cities": ["Lexington", "Tampa"], "_id": { - "$oid": "66723d958f368f285d303ffb" + "$oid": "6674c30595590f9fd94592c2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13889,15 +13889,15 @@ "cohort": "5", "jobTitle": "Software Engineer (Frontend III)", "industry": "Software / Tech", - "cities": [], + "cities": ["Mesa"], "_id": { - "$oid": "66723d958f368f285d303ffc" + "$oid": "6674c30595590f9fd94592c3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13910,15 +13910,15 @@ "cohort": "45", "jobTitle": "Software Engineer", "industry": "Cloud Service", - "cities": [], + "cities": ["Charlotte", "Beijing", "Stockton"], "_id": { - "$oid": "66723d958f368f285d303ffd" + "$oid": "6674c30595590f9fd94592c4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13931,15 +13931,15 @@ "cohort": "12", "jobTitle": "Software Engineer", "industry": "Adtech", - "cities": ["Dallas"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303ffe" + "$oid": "6674c30595590f9fd94592c5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13952,15 +13952,15 @@ "cohort": "21", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Cleveland", "Dallas", "San Diego"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d303fff" + "$oid": "6674c30595590f9fd94592c6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13973,15 +13973,15 @@ "cohort": "15", "jobTitle": "Software Engineer", "industry": "Tech", - "cities": ["Beijing", "Washington", "Mexico City"], + "cities": ["North Las Vegas"], "_id": { - "$oid": "66723d958f368f285d304000" + "$oid": "6674c30595590f9fd94592c7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -13994,15 +13994,15 @@ "cohort": "47", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": [], + "cities": ["Portland", "Irvine", "Virginia Beach"], "_id": { - "$oid": "66723d958f368f285d304001" + "$oid": "6674c30595590f9fd94592c8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -14015,15 +14015,15 @@ "cohort": "22", "jobTitle": "Software Engineer - Search Engine Privacy", "industry": "Tech", - "cities": ["Omaha", "Scottsdale"], + "cities": ["St. Louis", "Las Vegas"], "_id": { - "$oid": "66723d958f368f285d304002" + "$oid": "6674c30595590f9fd94592c9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.063Z" }, "__v": 0 }, @@ -14036,15 +14036,15 @@ "cohort": "19", "jobTitle": "Software Engineer", "industry": "Social Media", - "cities": ["Saint Paul"], + "cities": ["Mesa", "Kansas City", "Newark"], "_id": { - "$oid": "66723d958f368f285d304003" + "$oid": "6674c30595590f9fd94592ca" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14057,15 +14057,15 @@ "cohort": "2", "jobTitle": "Software Engineer", "industry": "Tech", - "cities": ["Pittsburgh"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304004" + "$oid": "6674c30595590f9fd94592cb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14078,15 +14078,15 @@ "cohort": "6", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Tucson", "Mumbai"], + "cities": ["Kansas City", "St. Louis"], "_id": { - "$oid": "66723d958f368f285d304005" + "$oid": "6674c30595590f9fd94592cc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14099,15 +14099,15 @@ "cohort": "34", "jobTitle": "Software Engineer", "industry": "Tech", - "cities": ["Norfolk"], + "cities": ["Henderson"], "_id": { - "$oid": "66723d958f368f285d304006" + "$oid": "6674c30595590f9fd94592cd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14120,15 +14120,15 @@ "cohort": "2", "jobTitle": "Software Engineer", "industry": "Tech", - "cities": ["Santa Ana", "Saint Paul", "Indianapolis"], + "cities": ["Fort Worth", "Arlington", "Denver"], "_id": { - "$oid": "66723d958f368f285d304007" + "$oid": "6674c30595590f9fd94592ce" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14141,15 +14141,15 @@ "cohort": "19", "jobTitle": "Full Stack Engineer", "industry": "Digital Services", - "cities": ["Sรฃo Paulo"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304008" + "$oid": "6674c30595590f9fd94592cf" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14162,15 +14162,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Decision Science", - "cities": ["Irving"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304009" + "$oid": "6674c30595590f9fd94592d0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14183,15 +14183,15 @@ "cohort": "8", "jobTitle": "Junior Software Engineer", "industry": "HR tech", - "cities": [], + "cities": ["Chula Vista"], "_id": { - "$oid": "66723d958f368f285d30400a" + "$oid": "6674c30595590f9fd94592d1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14204,15 +14204,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Entertainment", - "cities": ["Fort Wayne", "Fresno"], + "cities": ["North Las Vegas", "Colorado Springs"], "_id": { - "$oid": "66723d958f368f285d30400b" + "$oid": "6674c30595590f9fd94592d2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14225,15 +14225,15 @@ "cohort": "43", "jobTitle": "Software Engineer", "industry": "Agriculture Tech", - "cities": [], + "cities": ["Denver", "Durham"], "_id": { - "$oid": "66723d958f368f285d30400c" + "$oid": "6674c30595590f9fd94592d3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14246,15 +14246,15 @@ "cohort": "21", "jobTitle": "Full Stack Engineer", "industry": "Research & Analytics", - "cities": ["Columbus", "Reno", "Nashville"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30400d" + "$oid": "6674c30595590f9fd94592d4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14267,15 +14267,15 @@ "cohort": "34", "jobTitle": "Technology Associate", "industry": "Real Estate", - "cities": ["Nashville", "Cleveland"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30400e" + "$oid": "6674c30595590f9fd94592d5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14288,15 +14288,15 @@ "cohort": "10", "jobTitle": "Application Developer III", "industry": "Healthcare", - "cities": [], + "cities": ["Cincinnati", "Charlotte", "Denver"], "_id": { - "$oid": "66723d958f368f285d30400f" + "$oid": "6674c30595590f9fd94592d6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14309,15 +14309,15 @@ "cohort": "48", "jobTitle": "Engineer", "industry": "Fintech", - "cities": ["Lubbock"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304010" + "$oid": "6674c30595590f9fd94592d7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14330,15 +14330,15 @@ "cohort": "11", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["El Paso", "New York", "Reno"], + "cities": ["Seattle", "Boston"], "_id": { - "$oid": "66723d958f368f285d304011" + "$oid": "6674c30595590f9fd94592d8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14351,15 +14351,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Agriculture Science", - "cities": ["Henderson", "Austin"], + "cities": ["Raleigh"], "_id": { - "$oid": "66723d958f368f285d304012" + "$oid": "6674c30595590f9fd94592d9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14372,15 +14372,15 @@ "cohort": "24", "jobTitle": "Software Engineer (API/Data Visualization Team)", "industry": "Agricultural Analytics", - "cities": ["Chicago"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304013" + "$oid": "6674c30595590f9fd94592da" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14393,15 +14393,15 @@ "cohort": "7", "jobTitle": "Senior WebXR Developer", "industry": "Other", - "cities": ["Lubbock"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304014" + "$oid": "6674c30595590f9fd94592db" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14414,15 +14414,15 @@ "cohort": "23", "jobTitle": "Technical Consultant", "industry": "Digital Adoption Software", - "cities": ["London", "Saint Paul"], + "cities": ["Nashville", "Seattle", "San Francisco"], "_id": { - "$oid": "66723d958f368f285d304015" + "$oid": "6674c30595590f9fd94592dc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14435,15 +14435,15 @@ "cohort": "36", "jobTitle": "Application Developer", "industry": "Aerospace", - "cities": [], + "cities": ["Oklahoma City", "San Antonio"], "_id": { - "$oid": "66723d958f368f285d304016" + "$oid": "6674c30595590f9fd94592dd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14456,15 +14456,15 @@ "cohort": "27", "jobTitle": "Developer", "industry": "Insurance", - "cities": ["Atlanta", "St. Louis"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304017" + "$oid": "6674c30595590f9fd94592de" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14477,15 +14477,15 @@ "cohort": "37", "jobTitle": "Software Engineer II", "industry": "Cybersecurity", - "cities": ["Mumbai", "Oakland"], + "cities": ["Newark", "Las Vegas", "Stockton"], "_id": { - "$oid": "66723d958f368f285d304018" + "$oid": "6674c30595590f9fd94592df" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14498,15 +14498,15 @@ "cohort": "37", "jobTitle": "Senior Software Engineer", "industry": "Computer Safety", - "cities": ["Long Beach"], + "cities": ["San Jose", "Pittsburgh", "El Paso"], "_id": { - "$oid": "66723d958f368f285d304019" + "$oid": "6674c30595590f9fd94592e0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14519,15 +14519,15 @@ "cohort": "37", "jobTitle": "Software Engineer", "industry": "Cybersecurity", - "cities": ["Mumbai"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30401a" + "$oid": "6674c30595590f9fd94592e1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14540,15 +14540,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "Finance", - "cities": ["Houston"], + "cities": ["Irving", "Corpus Christi"], "_id": { - "$oid": "66723d958f368f285d30401b" + "$oid": "6674c30595590f9fd94592e2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14561,15 +14561,15 @@ "cohort": "41", "jobTitle": "Software Engineer, Platform Services Team", "industry": "Recruiting", - "cities": ["Riverside", "Corpus Christi"], + "cities": ["Minneapolis"], "_id": { - "$oid": "66723d958f368f285d30401c" + "$oid": "6674c30595590f9fd94592e3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14582,15 +14582,15 @@ "cohort": "37", "jobTitle": "Growth Engineer", "industry": "Other", - "cities": ["Glendale"], + "cities": ["Kansas City"], "_id": { - "$oid": "66723d958f368f285d30401d" + "$oid": "6674c30595590f9fd94592e4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14603,15 +14603,15 @@ "cohort": "Beta", "jobTitle": "Software Engineer", "industry": "Education", - "cities": ["Paris", "Houston", "Reno"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30401e" + "$oid": "6674c30595590f9fd94592e5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14624,15 +14624,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["New York"], + "cities": ["Irving", "Garland", "Cincinnati"], "_id": { - "$oid": "66723d958f368f285d30401f" + "$oid": "6674c30595590f9fd94592e6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14645,15 +14645,15 @@ "cohort": "11", "jobTitle": "Full Stack Developer", "industry": "Insurance Tech", - "cities": [], + "cities": ["St. Louis", "Garland", "Detroit"], "_id": { - "$oid": "66723d958f368f285d304020" + "$oid": "6674c30595590f9fd94592e7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14668,13 +14668,13 @@ "industry": "Software / Tech", "cities": [], "_id": { - "$oid": "66723d958f368f285d304021" + "$oid": "6674c30595590f9fd94592e8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14687,15 +14687,15 @@ "cohort": "12", "jobTitle": "Fullstack Engineer", "industry": "Applicant Tracking Software", - "cities": ["Dallas", "Raleigh"], + "cities": ["Irvine", "Riverside", "Columbus"], "_id": { - "$oid": "66723d958f368f285d304022" + "$oid": "6674c30595590f9fd94592e9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14708,15 +14708,15 @@ "cohort": "46", "jobTitle": "Software Engineer", "industry": "Medical CRM", - "cities": ["Virginia Beach"], + "cities": ["Durham", "El Paso"], "_id": { - "$oid": "66723d958f368f285d304023" + "$oid": "6674c30595590f9fd94592ea" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14729,15 +14729,15 @@ "cohort": "32", "jobTitle": "Software Engineer - Front End", "industry": "Other", - "cities": ["Paris", "New York", "Stockton"], + "cities": ["Chesapeake", "New York", "Mesa"], "_id": { - "$oid": "66723d958f368f285d304024" + "$oid": "6674c30595590f9fd94592eb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14752,13 +14752,13 @@ "industry": "", "cities": [], "_id": { - "$oid": "66723d958f368f285d304025" + "$oid": "6674c30595590f9fd94592ec" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14773,13 +14773,13 @@ "industry": "Media", "cities": [], "_id": { - "$oid": "66723d958f368f285d304026" + "$oid": "6674c30595590f9fd94592ed" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14792,15 +14792,15 @@ "cohort": "20", "jobTitle": "Software Engineer", "industry": "Media", - "cities": ["St. Petersburg"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304027" + "$oid": "6674c30595590f9fd94592ee" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14813,15 +14813,15 @@ "cohort": "2", "jobTitle": "Associate Software Engineer", "industry": "Media", - "cities": ["New York", "Denver"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304028" + "$oid": "6674c30595590f9fd94592ef" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14834,15 +14834,15 @@ "cohort": "40", "jobTitle": "Backend Engineer", "industry": "Fintech", - "cities": ["Long Beach", "Oakland", "Charlotte"], + "cities": ["Greensboro", "Orlando", "Chula Vista"], "_id": { - "$oid": "66723d958f368f285d304029" + "$oid": "6674c30595590f9fd94592f0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14855,15 +14855,15 @@ "cohort": "3", "jobTitle": "Software Developer", "industry": "Business Tech/Enterprise Tech", - "cities": ["Chesapeake", "Las Vegas", "Corpus Christi"], + "cities": ["Baltimore", "Phoenix", "Charlotte"], "_id": { - "$oid": "66723d958f368f285d30402a" + "$oid": "6674c30595590f9fd94592f1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14876,15 +14876,15 @@ "cohort": "4", "jobTitle": "Data Visualization Engineer", "industry": "Bio Tech", - "cities": [], + "cities": ["Milwaukee", "Tucson"], "_id": { - "$oid": "66723d958f368f285d30402b" + "$oid": "6674c30595590f9fd94592f2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14897,15 +14897,15 @@ "cohort": "12", "jobTitle": "Software Engineer", "industry": "Automotive", - "cities": ["Dallas", "Sรฃo Paulo"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30402c" + "$oid": "6674c30595590f9fd94592f3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14918,15 +14918,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Software", - "cities": [], + "cities": ["Milwaukee"], "_id": { - "$oid": "66723d958f368f285d30402d" + "$oid": "6674c30595590f9fd94592f4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14939,15 +14939,15 @@ "cohort": "1", "jobTitle": "Backend Software Engineer", "industry": "Entertainment", - "cities": ["Sacramento"], + "cities": ["Raleigh", "Virginia Beach", "Portland"], "_id": { - "$oid": "66723d958f368f285d30402e" + "$oid": "6674c30595590f9fd94592f5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.820Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14962,13 +14962,13 @@ "industry": "Hospitality", "cities": [], "_id": { - "$oid": "66723d958f368f285d30402f" + "$oid": "6674c30595590f9fd94592f6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -14981,15 +14981,15 @@ "cohort": "11", "jobTitle": "Render Tier Engineer", "industry": "Hospitality", - "cities": ["Greensboro", "Glendale"], + "cities": ["Anchorage", "Cleveland", "Oakland"], "_id": { - "$oid": "66723d958f368f285d304030" + "$oid": "6674c30595590f9fd94592f7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15002,15 +15002,15 @@ "cohort": "34", "jobTitle": "Software Engineer - Full-Stack", "industry": "Healthcare", - "cities": ["Raleigh", "Fort Worth"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304031" + "$oid": "6674c30595590f9fd94592f8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15023,15 +15023,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Healthcare Technology", - "cities": ["Henderson", "Norfolk"], + "cities": ["Colorado Springs", "Gilbert", "Philadelphia"], "_id": { - "$oid": "66723d958f368f285d304032" + "$oid": "6674c30595590f9fd94592f9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15044,15 +15044,15 @@ "cohort": "2", "jobTitle": "Software Engineer", "industry": "Health", - "cities": [], + "cities": ["Glendale", "Toronto", "Irving"], "_id": { - "$oid": "66723d958f368f285d304033" + "$oid": "6674c30595590f9fd94592fa" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15067,13 +15067,13 @@ "industry": "Software / Tech", "cities": [], "_id": { - "$oid": "66723d958f368f285d304034" + "$oid": "6674c30595590f9fd94592fb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15088,13 +15088,13 @@ "industry": "", "cities": [], "_id": { - "$oid": "66723d958f368f285d304035" + "$oid": "6674c30595590f9fd94592fc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15107,15 +15107,15 @@ "cohort": "49", "jobTitle": "Full stack software engineer", "industry": "Other", - "cities": ["Portland", "Henderson"], + "cities": ["Philadelphia", "El Paso"], "_id": { - "$oid": "66723d958f368f285d304036" + "$oid": "6674c30595590f9fd94592fd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15128,15 +15128,15 @@ "cohort": "2", "jobTitle": "Senior Software Engineer", "industry": "Tech", - "cities": ["Lubbock"], + "cities": ["Cleveland", "London"], "_id": { - "$oid": "66723d958f368f285d304037" + "$oid": "6674c30595590f9fd94592fe" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15149,15 +15149,15 @@ "cohort": "35", "jobTitle": "Software Engineer", "industry": "Automotive", - "cities": [], + "cities": ["Albuquerque", "Chandler"], "_id": { - "$oid": "66723d958f368f285d304038" + "$oid": "6674c30595590f9fd94592ff" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15170,15 +15170,15 @@ "cohort": "2", "jobTitle": "Venture Analyst", "industry": "", - "cities": ["Norfolk", "Orlando"], + "cities": ["Atlanta"], "_id": { - "$oid": "66723d958f368f285d304039" + "$oid": "6674c30595590f9fd9459300" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15191,15 +15191,15 @@ "cohort": "50", "jobTitle": "Fullstack Software Engineer", "industry": "Retail", - "cities": [], + "cities": ["Louisville", "Baltimore"], "_id": { - "$oid": "66723d958f368f285d30403a" + "$oid": "6674c30595590f9fd9459301" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15212,15 +15212,15 @@ "cohort": "41", "jobTitle": "Software Engineer II", "industry": "Fintech / Ecommerce", - "cities": [], + "cities": ["Beijing", "Honolulu", "Chandler"], "_id": { - "$oid": "66723d958f368f285d30403b" + "$oid": "6674c30595590f9fd9459302" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15233,15 +15233,15 @@ "cohort": "34", "jobTitle": "Junior Frontend Developer", "industry": "Marketing & Advertising", - "cities": ["Norfolk", "Greensboro"], + "cities": ["Reno"], "_id": { - "$oid": "66723d958f368f285d30403c" + "$oid": "6674c30595590f9fd9459303" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15254,15 +15254,15 @@ "cohort": "33", "jobTitle": "Front End Engineer", "industry": "Tech", - "cities": ["Anaheim", "Miami", "Orlando"], + "cities": ["Sรฃo Paulo"], "_id": { - "$oid": "66723d958f368f285d30403d" + "$oid": "6674c30595590f9fd9459304" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15275,15 +15275,15 @@ "cohort": "33", "jobTitle": "Frontend Engineer", "industry": "Online Events Platform", - "cities": ["North Las Vegas"], + "cities": ["Baltimore", "Houston", "Atlanta"], "_id": { - "$oid": "66723d958f368f285d30403e" + "$oid": "6674c30595590f9fd9459305" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15296,15 +15296,15 @@ "cohort": "16", "jobTitle": "Senior Full Stack Engineer", "industry": "Law", - "cities": ["Sacramento"], + "cities": ["Greensboro", "Detroit", "Plano"], "_id": { - "$oid": "66723d958f368f285d30403f" + "$oid": "6674c30595590f9fd9459306" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15317,15 +15317,15 @@ "cohort": "31", "jobTitle": "Front End Software Engineer", "industry": "Cyber Security", - "cities": ["Mumbai", "Santa Ana"], + "cities": ["Long Beach", "Louisville", "Winston-Salem"], "_id": { - "$oid": "66723d958f368f285d304040" + "$oid": "6674c30595590f9fd9459307" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15338,15 +15338,15 @@ "cohort": "49", "jobTitle": "Full Stack Software Engineer", "industry": "Other", - "cities": [], + "cities": ["El Paso", "Honolulu", "London"], "_id": { - "$oid": "66723d958f368f285d304041" + "$oid": "6674c30595590f9fd9459308" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15359,15 +15359,15 @@ "cohort": "49", "jobTitle": "Software Engineer", "industry": "Media", - "cities": ["Portland", "Gilbert"], + "cities": ["Laredo", "Stockton", "St. Petersburg"], "_id": { - "$oid": "66723d958f368f285d304042" + "$oid": "6674c30595590f9fd9459309" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15380,15 +15380,15 @@ "cohort": "49", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Wichita", "Reno"], + "cities": ["San Antonio"], "_id": { - "$oid": "66723d958f368f285d304043" + "$oid": "6674c30595590f9fd945930a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15401,15 +15401,15 @@ "cohort": "24", "jobTitle": "Senior Software Engineer", "industry": "Tenant Experience Platform/Commercial Real Estate", - "cities": [], + "cities": ["Jersey City", "Lexington"], "_id": { - "$oid": "66723d958f368f285d304044" + "$oid": "6674c30595590f9fd945930b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15422,15 +15422,15 @@ "cohort": "42", "jobTitle": "Senior Software Engineer I", "industry": "Software", - "cities": ["Washington", "Tulsa"], + "cities": ["Las Vegas"], "_id": { - "$oid": "66723d958f368f285d304045" + "$oid": "6674c30595590f9fd945930c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15443,15 +15443,15 @@ "cohort": "2", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Sacramento", "Aurora"], + "cities": ["Dallas"], "_id": { - "$oid": "66723d958f368f285d304046" + "$oid": "6674c30595590f9fd945930d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15464,15 +15464,15 @@ "cohort": "12", "jobTitle": "Senior Software Engineer", "industry": "Insurance", - "cities": [], + "cities": ["Winston-Salem", "Lubbock"], "_id": { - "$oid": "66723d958f368f285d304047" + "$oid": "6674c30595590f9fd945930e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15485,15 +15485,15 @@ "cohort": "55", "jobTitle": "Full Stack Developer", "industry": "Other", - "cities": ["North Las Vegas", "Dallas", "Scottsdale"], + "cities": ["Corpus Christi", "Raleigh"], "_id": { - "$oid": "66723d958f368f285d304048" + "$oid": "6674c30595590f9fd945930f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15506,15 +15506,15 @@ "cohort": "49", "jobTitle": "Application Developer", "industry": "IT Services", - "cities": ["Gilbert", "Anchorage"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304049" + "$oid": "6674c30595590f9fd9459310" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15527,15 +15527,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Restaurant, Food, and Beverage", - "cities": [], + "cities": ["Orlando", "San Diego", "Oklahoma City"], "_id": { - "$oid": "66723d958f368f285d30404a" + "$oid": "6674c30595590f9fd9459311" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15548,15 +15548,15 @@ "cohort": "31", "jobTitle": "Software Engineer II", "industry": "Restaurant, Food, and Beverage", - "cities": ["Colorado Springs", "Boston"], + "cities": ["Anchorage"], "_id": { - "$oid": "66723d958f368f285d30404b" + "$oid": "6674c30595590f9fd9459312" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15569,15 +15569,15 @@ "cohort": "16", "jobTitle": "Senior Full Stack Engineer", "industry": "Electric Vehicles", - "cities": [], + "cities": ["Pittsburgh", "Milwaukee", "Atlanta"], "_id": { - "$oid": "66723d958f368f285d30404c" + "$oid": "6674c30595590f9fd9459313" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15590,15 +15590,15 @@ "cohort": "41", "jobTitle": "Senior Frontend Developer", "industry": "Technology", - "cities": ["Reno", "Anaheim", "Newark"], + "cities": ["London"], "_id": { - "$oid": "66723d958f368f285d30404d" + "$oid": "6674c30595590f9fd9459314" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15611,15 +15611,15 @@ "cohort": "Beta", "jobTitle": "Software Engineer", "industry": "Compliance Operations", - "cities": ["Jersey City", "Fort Wayne", "Irving"], + "cities": ["Mumbai", "Los Angeles"], "_id": { - "$oid": "66723d958f368f285d30404e" + "$oid": "6674c30595590f9fd9459315" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15632,15 +15632,15 @@ "cohort": "49", "jobTitle": "Software Engineer II - Emerging Technology", "industry": "Automotive", - "cities": ["Orlando", "Reno", "Tucson"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30404f" + "$oid": "6674c30595590f9fd9459316" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15653,15 +15653,15 @@ "cohort": "42", "jobTitle": "Fullstack software engineer (Contractor)", "industry": "Consulting", - "cities": ["Cleveland", "Seattle"], + "cities": ["Portland"], "_id": { - "$oid": "66723d958f368f285d304050" + "$oid": "6674c30595590f9fd9459317" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15674,15 +15674,15 @@ "cohort": "27", "jobTitle": "Software Developer", "industry": "Architectural Services", - "cities": ["Orlando"], + "cities": ["New York", "Sรฃo Paulo"], "_id": { - "$oid": "66723d958f368f285d304051" + "$oid": "6674c30595590f9fd9459318" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15695,15 +15695,15 @@ "cohort": "9", "jobTitle": "Software engineer, backend", "industry": "IT", - "cities": ["Sacramento", "San Antonio"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304052" + "$oid": "6674c30595590f9fd9459319" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15718,13 +15718,13 @@ "industry": "Sales? Tbh idk", "cities": [], "_id": { - "$oid": "66723d958f368f285d304053" + "$oid": "6674c30595590f9fd945931a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15737,15 +15737,15 @@ "cohort": "22", "jobTitle": "Cloud Engineer", "industry": "Technology", - "cities": [], + "cities": ["Arlington", "Santa Ana"], "_id": { - "$oid": "66723d958f368f285d304054" + "$oid": "6674c30595590f9fd945931b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15758,15 +15758,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Tech", - "cities": ["Chicago"], + "cities": ["Fort Worth"], "_id": { - "$oid": "66723d958f368f285d304055" + "$oid": "6674c30595590f9fd945931c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15779,15 +15779,15 @@ "cohort": "35", "jobTitle": "Cloud Engineer", "industry": "Information Technology & Services", - "cities": ["Honolulu"], + "cities": ["Atlanta", "New York", "Anaheim"], "_id": { - "$oid": "66723d958f368f285d304056" + "$oid": "6674c30595590f9fd945931d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15800,15 +15800,15 @@ "cohort": "15", "jobTitle": "Full Stack Developer", "industry": "Technology & Consulting", - "cities": [], + "cities": ["Bakersfield"], "_id": { - "$oid": "66723d958f368f285d304057" + "$oid": "6674c30595590f9fd945931e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15821,15 +15821,15 @@ "cohort": "15", "jobTitle": "Senior Applications Engineer", "industry": "Other", - "cities": ["Tampa"], + "cities": ["Columbus"], "_id": { - "$oid": "66723d958f368f285d304058" + "$oid": "6674c30595590f9fd945931f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15842,15 +15842,15 @@ "cohort": "11", "jobTitle": "Software Engineer", "industry": "Consulting", - "cities": [], + "cities": ["Orlando"], "_id": { - "$oid": "66723d958f368f285d304059" + "$oid": "6674c30595590f9fd9459320" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15863,15 +15863,15 @@ "cohort": "6", "jobTitle": "Frontend Developer", "industry": "Consulting", - "cities": ["Arlington", "Detroit", "Fort Worth"], + "cities": ["Fort Worth", "Tulsa"], "_id": { - "$oid": "66723d958f368f285d30405a" + "$oid": "6674c30595590f9fd9459321" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15884,15 +15884,15 @@ "cohort": "4", "jobTitle": "Software Engineer I", "industry": "Software / Tech", - "cities": ["Cincinnati"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30405b" + "$oid": "6674c30595590f9fd9459322" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15905,15 +15905,15 @@ "cohort": "2", "jobTitle": "Software Engineer", "industry": "Security", - "cities": [], + "cities": ["Arlington", "Portland", "Henderson"], "_id": { - "$oid": "66723d958f368f285d30405c" + "$oid": "6674c30595590f9fd9459323" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15926,15 +15926,15 @@ "cohort": "47", "jobTitle": "Full-Stack Engineer", "industry": "Entertainment", - "cities": [], + "cities": ["Omaha", "Lubbock"], "_id": { - "$oid": "66723d958f368f285d30405d" + "$oid": "6674c30595590f9fd9459324" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15947,15 +15947,15 @@ "cohort": "33", "jobTitle": "Software Engineer", "industry": "News/Entertainment/Streaming Platforms", - "cities": ["Bakersfield"], + "cities": ["Memphis", "Aurora", "Nashville"], "_id": { - "$oid": "66723d958f368f285d30405e" + "$oid": "6674c30595590f9fd9459325" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15968,15 +15968,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Hospitality", - "cities": ["Mesa", "Columbus"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30405f" + "$oid": "6674c30595590f9fd9459326" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -15989,15 +15989,15 @@ "cohort": "13", "jobTitle": "Data Engineer", "industry": "Fintech", - "cities": ["Toledo"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304060" + "$oid": "6674c30595590f9fd9459327" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -16010,15 +16010,15 @@ "cohort": "33", "jobTitle": "Full Stack Engineer", "industry": "Biotech/Agriculture", - "cities": [], + "cities": ["Sรฃo Paulo", "Dallas", "Charlotte"], "_id": { - "$oid": "66723d958f368f285d304061" + "$oid": "6674c30595590f9fd9459328" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -16033,13 +16033,13 @@ "industry": "Health", "cities": [], "_id": { - "$oid": "66723d958f368f285d304062" + "$oid": "6674c30595590f9fd9459329" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -16052,15 +16052,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Austin", "London", "Sacramento"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304063" + "$oid": "6674c30595590f9fd945932a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -16073,15 +16073,15 @@ "cohort": "35", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["North Las Vegas", "New Orleans", "Bakersfield"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304064" + "$oid": "6674c30595590f9fd945932b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -16094,15 +16094,15 @@ "cohort": "29", "jobTitle": "Software Engineer 1", "industry": "Social Media", - "cities": [], + "cities": ["Albuquerque", "Columbus"], "_id": { - "$oid": "66723d958f368f285d304065" + "$oid": "6674c30595590f9fd945932c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -16115,15 +16115,15 @@ "cohort": "36", "jobTitle": "Engineer I", "industry": "Database service", - "cities": ["Reno"], + "cities": ["Long Beach"], "_id": { - "$oid": "66723d958f368f285d304066" + "$oid": "6674c30595590f9fd945932d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.064Z" }, "__v": 0 }, @@ -16136,15 +16136,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "SaaS", - "cities": [], + "cities": ["Long Beach", "Sydney", "Louisville"], "_id": { - "$oid": "66723d958f368f285d304067" + "$oid": "6674c30595590f9fd945932e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16157,15 +16157,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "software", - "cities": [], + "cities": ["London"], "_id": { - "$oid": "66723d958f368f285d304068" + "$oid": "6674c30595590f9fd945932f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16178,15 +16178,15 @@ "cohort": "52", "jobTitle": "Technical lead", "industry": "IT Services", - "cities": ["Norfolk"], + "cities": ["Dallas"], "_id": { - "$oid": "66723d958f368f285d304069" + "$oid": "6674c30595590f9fd9459330" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16199,15 +16199,15 @@ "cohort": "41", "jobTitle": "Technology Analyst", "industry": "Tech", - "cities": ["Newark", "Albuquerque", "Chula Vista"], + "cities": ["Mesa", "San Antonio", "Louisville"], "_id": { - "$oid": "66723d958f368f285d30406a" + "$oid": "6674c30595590f9fd9459331" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16220,15 +16220,15 @@ "cohort": "24", "jobTitle": "Technology lead -US", "industry": "Entertainment", - "cities": ["Memphis", "Reno", "Seattle"], + "cities": ["Miami", "Toledo", "Henderson"], "_id": { - "$oid": "66723d958f368f285d30406b" + "$oid": "6674c30595590f9fd9459332" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16241,15 +16241,15 @@ "cohort": "34", "jobTitle": "Software Engineer", "industry": "Marketing", - "cities": [], + "cities": ["Milwaukee", "Sacramento", "Toronto"], "_id": { - "$oid": "66723d958f368f285d30406c" + "$oid": "6674c30595590f9fd9459333" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16262,15 +16262,15 @@ "cohort": "45", "jobTitle": "Full Stack Developer", "industry": "Media Agency", - "cities": ["Fresno", "Portland"], + "cities": ["Sydney", "Virginia Beach"], "_id": { - "$oid": "66723d958f368f285d30406d" + "$oid": "6674c30595590f9fd9459334" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16283,15 +16283,15 @@ "cohort": "23", "jobTitle": "Full Stack Developer", "industry": "", - "cities": ["San Jose", "Portland"], + "cities": ["Chicago"], "_id": { - "$oid": "66723d958f368f285d30406e" + "$oid": "6674c30595590f9fd9459335" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16304,15 +16304,15 @@ "cohort": "50", "jobTitle": "Software Developer", "industry": "Real Estate", - "cities": ["Irvine", "Albuquerque"], + "cities": ["Jacksonville", "Indianapolis"], "_id": { - "$oid": "66723d958f368f285d30406f" + "$oid": "6674c30595590f9fd9459336" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16325,15 +16325,15 @@ "cohort": "1", "jobTitle": "Associate Software Engineer", "industry": "Other", - "cities": ["Detroit", "Mesa", "St. Petersburg"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304070" + "$oid": "6674c30595590f9fd9459337" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16346,15 +16346,15 @@ "cohort": "8", "jobTitle": "Senior Software Engineer", "industry": "Consulting", - "cities": ["Baltimore", "Seattle", "Garland"], + "cities": ["Mexico City", "Oakland", "Charlotte"], "_id": { - "$oid": "66723d958f368f285d304071" + "$oid": "6674c30595590f9fd9459338" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16367,15 +16367,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "Information Technology & Services", - "cities": ["Los Angeles"], + "cities": ["Austin", "San Diego"], "_id": { - "$oid": "66723d958f368f285d304072" + "$oid": "6674c30595590f9fd9459339" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16388,15 +16388,15 @@ "cohort": "16", "jobTitle": "Software Engineer: Web Accessibility", "industry": "Consulting", - "cities": [], + "cities": ["San Antonio", "Sydney"], "_id": { - "$oid": "66723d958f368f285d304073" + "$oid": "6674c30595590f9fd945933a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16409,15 +16409,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Consulting", - "cities": ["Plano", "Philadelphia", "Sydney"], + "cities": ["Anchorage", "Mesa", "Bakersfield"], "_id": { - "$oid": "66723d958f368f285d304074" + "$oid": "6674c30595590f9fd945933b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16430,15 +16430,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "Software Consulting", - "cities": ["Tucson"], + "cities": ["Orlando", "Portland"], "_id": { - "$oid": "66723d958f368f285d304075" + "$oid": "6674c30595590f9fd945933c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16451,15 +16451,15 @@ "cohort": "20", "jobTitle": "Software Engineer II", "industry": "Online Media", - "cities": ["Dallas", "Denver", "Beijing"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304076" + "$oid": "6674c30595590f9fd945933d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16472,15 +16472,15 @@ "cohort": "16", "jobTitle": "Software Engineer III", "industry": "Digital Media", - "cities": ["Charlotte", "Sacramento"], + "cities": ["El Paso"], "_id": { - "$oid": "66723d958f368f285d304077" + "$oid": "6674c30595590f9fd945933e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16493,15 +16493,15 @@ "cohort": "41", "jobTitle": "Front End Developer", "industry": "Entertainment", - "cities": ["Chandler", "Cleveland"], + "cities": ["Riverside", "Sydney", "San Francisco"], "_id": { - "$oid": "66723d958f368f285d304078" + "$oid": "6674c30595590f9fd945933f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16514,15 +16514,15 @@ "cohort": "33", "jobTitle": "Senior Full-Stack Automation Developer", "industry": "athletic footwear and apparel", - "cities": ["Phoenix"], + "cities": ["Pittsburgh"], "_id": { - "$oid": "66723d958f368f285d304079" + "$oid": "6674c30595590f9fd9459340" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16535,15 +16535,15 @@ "cohort": "27", "jobTitle": "React developer", "industry": "Consulting", - "cities": ["Tokyo", "San Diego", "Long Beach"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30407a" + "$oid": "6674c30595590f9fd9459341" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16556,15 +16556,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "Education", - "cities": ["Henderson", "Riverside", "El Paso"], + "cities": ["Riverside"], "_id": { - "$oid": "66723d958f368f285d30407b" + "$oid": "6674c30595590f9fd9459342" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16577,15 +16577,15 @@ "cohort": "36", "jobTitle": "Full-stack Engineer", "industry": "Healthcare", - "cities": ["Berlin", "Bakersfield"], + "cities": ["Phoenix", "St. Petersburg"], "_id": { - "$oid": "66723d958f368f285d30407c" + "$oid": "6674c30595590f9fd9459343" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16598,15 +16598,15 @@ "cohort": "8", "jobTitle": "Developer", "industry": "Other", - "cities": ["Wichita", "Austin"], + "cities": ["Chandler"], "_id": { - "$oid": "66723d958f368f285d30407d" + "$oid": "6674c30595590f9fd9459344" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16621,13 +16621,13 @@ "industry": "Internet", "cities": [], "_id": { - "$oid": "66723d958f368f285d30407e" + "$oid": "6674c30595590f9fd9459345" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16640,15 +16640,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Buffalo"], + "cities": ["Fort Worth", "Anchorage"], "_id": { - "$oid": "66723d958f368f285d30407f" + "$oid": "6674c30595590f9fd9459346" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16661,15 +16661,15 @@ "cohort": "35", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["North Las Vegas", "Norfolk", "St. Louis"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304080" + "$oid": "6674c30595590f9fd9459347" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16682,15 +16682,15 @@ "cohort": "27", "jobTitle": "Product Engineer", "industry": "SaaS, business creation services", - "cities": ["Detroit", "Milwaukee", "Lincoln"], + "cities": ["Stockton", "San Jose", "Columbus"], "_id": { - "$oid": "66723d958f368f285d304081" + "$oid": "6674c30595590f9fd9459348" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16703,15 +16703,15 @@ "cohort": "33", "jobTitle": "Full Stack Developer", "industry": "Other", - "cities": [], + "cities": ["London", "Anaheim", "Baltimore"], "_id": { - "$oid": "66723d958f368f285d304082" + "$oid": "6674c30595590f9fd9459349" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16724,15 +16724,15 @@ "cohort": "14", "jobTitle": "Lead Full Stack Developer", "industry": "Computer Software", - "cities": ["Lubbock"], + "cities": ["New York", "Newark", "Chandler"], "_id": { - "$oid": "66723d958f368f285d304083" + "$oid": "6674c30595590f9fd945934a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16745,15 +16745,15 @@ "cohort": "7", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["El Paso"], + "cities": ["Anchorage", "Detroit", "Phoenix"], "_id": { - "$oid": "66723d958f368f285d304084" + "$oid": "6674c30595590f9fd945934b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16766,15 +16766,15 @@ "cohort": "19", "jobTitle": "Software Engineer", "industry": "Enterprise Software", - "cities": ["Colorado Springs", "Durham"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304085" + "$oid": "6674c30595590f9fd945934c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16787,15 +16787,15 @@ "cohort": "38", "jobTitle": "Software Engineer III", "industry": "Technology", - "cities": ["New York", "St. Petersburg"], + "cities": ["Irving", "Boston", "El Paso"], "_id": { - "$oid": "66723d958f368f285d304086" + "$oid": "6674c30595590f9fd945934d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16810,13 +16810,13 @@ "industry": "", "cities": [], "_id": { - "$oid": "66723d958f368f285d304087" + "$oid": "6674c30595590f9fd945934e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16831,13 +16831,13 @@ "industry": "Fintech", "cities": [], "_id": { - "$oid": "66723d958f368f285d304088" + "$oid": "6674c30595590f9fd945934f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16852,13 +16852,13 @@ "industry": "Enterprise software", "cities": [], "_id": { - "$oid": "66723d958f368f285d304089" + "$oid": "6674c30595590f9fd9459350" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16871,15 +16871,15 @@ "cohort": "4", "jobTitle": "UI Developer", "industry": "Fintech", - "cities": ["Orlando", "Washington", "Aurora"], + "cities": ["Tampa", "New York"], "_id": { - "$oid": "66723d958f368f285d30408a" + "$oid": "6674c30595590f9fd9459351" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16894,13 +16894,13 @@ "industry": "Cloud Services", "cities": [], "_id": { - "$oid": "66723d958f368f285d30408b" + "$oid": "6674c30595590f9fd9459352" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16913,15 +16913,15 @@ "cohort": "5", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Milwaukee"], + "cities": ["Sacramento", "Albuquerque"], "_id": { - "$oid": "66723d958f368f285d30408c" + "$oid": "6674c30595590f9fd9459353" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16934,15 +16934,15 @@ "cohort": "34", "jobTitle": "Software Developer II", "industry": "Telecommunications", - "cities": ["London"], + "cities": ["Corpus Christi", "Long Beach"], "_id": { - "$oid": "66723d958f368f285d30408d" + "$oid": "6674c30595590f9fd9459354" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16955,15 +16955,15 @@ "cohort": "33", "jobTitle": "Senior UI/UX Developer", "industry": "Computer and Network Security", - "cities": ["Henderson", "Berlin"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30408e" + "$oid": "6674c30595590f9fd9459355" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16976,15 +16976,15 @@ "cohort": "58", "jobTitle": "Full Stack Developer", "industry": "Other", - "cities": ["Toronto"], + "cities": ["Irvine"], "_id": { - "$oid": "66723d958f368f285d30408f" + "$oid": "6674c30595590f9fd9459356" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -16997,15 +16997,15 @@ "cohort": "41", "jobTitle": "Frontend Developer", "industry": "Creative Agency", - "cities": ["Paris"], + "cities": ["Berlin", "Garland"], "_id": { - "$oid": "66723d958f368f285d304090" + "$oid": "6674c30595590f9fd9459357" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17018,15 +17018,15 @@ "cohort": "15", "jobTitle": "Senior Front End Developer", "industry": "Media", - "cities": ["Fresno", "Tampa", "Orlando"], + "cities": ["Oklahoma City", "Boston", "Colorado Springs"], "_id": { - "$oid": "66723d958f368f285d304091" + "$oid": "6674c30595590f9fd9459358" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17039,15 +17039,15 @@ "cohort": "23", "jobTitle": "Senior Web Developer", "industry": "", - "cities": [], + "cities": ["El Paso"], "_id": { - "$oid": "66723d958f368f285d304092" + "$oid": "6674c30595590f9fd9459359" }, "createdAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.821Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17060,15 +17060,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": [], + "cities": ["Bakersfield", "Garland"], "_id": { - "$oid": "66723d958f368f285d304093" + "$oid": "6674c30595590f9fd945935a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17081,15 +17081,15 @@ "cohort": "39", "jobTitle": "Frontend Engineer", "industry": "Solar", - "cities": [], + "cities": ["Riverside", "Dallas", "Paris"], "_id": { - "$oid": "66723d958f368f285d304094" + "$oid": "6674c30595590f9fd945935b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17102,15 +17102,15 @@ "cohort": "37", "jobTitle": "Software Developer", "industry": "Clean Energy", - "cities": ["Pittsburgh"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304095" + "$oid": "6674c30595590f9fd945935c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17123,15 +17123,15 @@ "cohort": "34", "jobTitle": "Platform Engineer", "industry": "Mobile Gaming", - "cities": [], + "cities": ["Fort Wayne", "Reno"], "_id": { - "$oid": "66723d958f368f285d304096" + "$oid": "6674c30595590f9fd945935d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17144,15 +17144,15 @@ "cohort": "7", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Sydney", "Dallas", "San Antonio"], + "cities": ["San Diego"], "_id": { - "$oid": "66723d958f368f285d304097" + "$oid": "6674c30595590f9fd945935e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17165,15 +17165,15 @@ "cohort": "8", "jobTitle": "Software Engineer II", "industry": "Healthcare", - "cities": [], + "cities": ["Pittsburgh"], "_id": { - "$oid": "66723d958f368f285d304098" + "$oid": "6674c30595590f9fd945935f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17186,15 +17186,15 @@ "cohort": "49", "jobTitle": "Software Engineer II", "industry": "Software / Tech", - "cities": ["Gilbert", "Chandler", "Louisville"], + "cities": ["Atlanta"], "_id": { - "$oid": "66723d958f368f285d304099" + "$oid": "6674c30595590f9fd9459360" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17207,15 +17207,15 @@ "cohort": "50", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Cleveland", "Bakersfield", "Denver"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30409a" + "$oid": "6674c30595590f9fd9459361" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17230,13 +17230,13 @@ "industry": "", "cities": [], "_id": { - "$oid": "66723d958f368f285d30409b" + "$oid": "6674c30595590f9fd9459362" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17249,15 +17249,15 @@ "cohort": "40", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Orlando", "Austin", "Atlanta"], + "cities": ["Jacksonville"], "_id": { - "$oid": "66723d958f368f285d30409c" + "$oid": "6674c30595590f9fd9459363" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17270,15 +17270,15 @@ "cohort": "19", "jobTitle": "Junior Developer Associate", "industry": "Fintech", - "cities": ["Phoenix", "Wichita"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30409d" + "$oid": "6674c30595590f9fd9459364" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17291,15 +17291,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Indianapolis", "Madison", "Sรฃo Paulo"], + "cities": ["Lincoln"], "_id": { - "$oid": "66723d958f368f285d30409e" + "$oid": "6674c30595590f9fd9459365" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17312,15 +17312,15 @@ "cohort": "26", "jobTitle": "Software Engineer", "industry": "Media", - "cities": [], + "cities": ["Sacramento"], "_id": { - "$oid": "66723d958f368f285d30409f" + "$oid": "6674c30595590f9fd9459366" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17333,15 +17333,15 @@ "cohort": "31", "jobTitle": "Associate Software Engineer", "industry": "Fintech", - "cities": ["Fort Wayne"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040a0" + "$oid": "6674c30595590f9fd9459367" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17354,15 +17354,15 @@ "cohort": "52", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Sรฃo Paulo", "Irving"], + "cities": ["Long Beach", "New York", "Jacksonville"], "_id": { - "$oid": "66723d958f368f285d3040a1" + "$oid": "6674c30595590f9fd9459368" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17375,15 +17375,15 @@ "cohort": "17", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Arlington", "Portland"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040a2" + "$oid": "6674c30595590f9fd9459369" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17396,15 +17396,15 @@ "cohort": "28", "jobTitle": "Full Stack Developer", "industry": "Banking", - "cities": ["Scottsdale", "Philadelphia", "Chandler"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040a3" + "$oid": "6674c30595590f9fd945936a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17417,15 +17417,15 @@ "cohort": "1", "jobTitle": "Associate Engineer", "industry": "Finance", - "cities": [], + "cities": ["Pittsburgh", "Riverside"], "_id": { - "$oid": "66723d958f368f285d3040a4" + "$oid": "6674c30595590f9fd945936b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17438,15 +17438,15 @@ "cohort": "19", "jobTitle": "Software Engineer II", "industry": "Fintech", - "cities": ["Toledo", "Gilbert", "Laredo"], + "cities": ["Beijing", "Columbus", "Irvine"], "_id": { - "$oid": "66723d958f368f285d3040a5" + "$oid": "6674c30595590f9fd945936c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17459,15 +17459,15 @@ "cohort": "31", "jobTitle": "Senior Associate Software Engineer", "industry": "Fintech", - "cities": ["Virginia Beach", "Minneapolis"], + "cities": ["Charlotte", "Aurora", "Tulsa"], "_id": { - "$oid": "66723d958f368f285d3040a6" + "$oid": "6674c30595590f9fd945936d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17480,15 +17480,15 @@ "cohort": "46", "jobTitle": "Associate Software Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Reno", "Denver"], "_id": { - "$oid": "66723d958f368f285d3040a7" + "$oid": "6674c30595590f9fd945936e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17501,15 +17501,15 @@ "cohort": "37", "jobTitle": "Software Engineer - Associate II", "industry": "Software / Tech", - "cities": ["Garland"], + "cities": ["Jacksonville", "Cleveland", "Miami"], "_id": { - "$oid": "66723d958f368f285d3040a8" + "$oid": "6674c30595590f9fd945936f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17522,15 +17522,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Fresno", "Omaha"], + "cities": ["Nashville", "Gilbert"], "_id": { - "$oid": "66723d958f368f285d3040a9" + "$oid": "6674c30595590f9fd9459370" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17545,13 +17545,13 @@ "industry": "Fintech", "cities": [], "_id": { - "$oid": "66723d958f368f285d3040aa" + "$oid": "6674c30595590f9fd9459371" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17564,15 +17564,15 @@ "cohort": "29", "jobTitle": "Associate Software Engineer", "industry": "Merchant Services", - "cities": ["Stockton"], + "cities": ["Kansas City"], "_id": { - "$oid": "66723d958f368f285d3040ab" + "$oid": "6674c30595590f9fd9459372" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17585,15 +17585,15 @@ "cohort": "16", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Santa Ana", "Houston"], + "cities": ["Lexington", "Norfolk"], "_id": { - "$oid": "66723d958f368f285d3040ac" + "$oid": "6674c30595590f9fd9459373" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17606,15 +17606,15 @@ "cohort": "50", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Portland", "Tucson"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040ad" + "$oid": "6674c30595590f9fd9459374" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17627,15 +17627,15 @@ "cohort": "16", "jobTitle": "Frontend Software Engineer", "industry": "HR Suite", - "cities": [], + "cities": ["Paris", "Milwaukee", "Toronto"], "_id": { - "$oid": "66723d958f368f285d3040ae" + "$oid": "6674c30595590f9fd9459375" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17648,15 +17648,15 @@ "cohort": "50", "jobTitle": "Software Developer", "industry": "Other", - "cities": ["Santa Ana", "San Diego", "Orlando"], + "cities": ["Jacksonville"], "_id": { - "$oid": "66723d958f368f285d3040af" + "$oid": "6674c30595590f9fd9459376" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17669,15 +17669,15 @@ "cohort": "44", "jobTitle": "Software Engineer", "industry": "Realty", - "cities": ["Seattle", "Tucson"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040b0" + "$oid": "6674c30595590f9fd9459377" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17690,15 +17690,15 @@ "cohort": "46", "jobTitle": "Software Engineer I", "industry": "Automotive", - "cities": ["Baltimore", "Omaha"], + "cities": ["Philadelphia", "New Orleans", "Colorado Springs"], "_id": { - "$oid": "66723d958f368f285d3040b1" + "$oid": "6674c30595590f9fd9459378" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17711,15 +17711,15 @@ "cohort": "40", "jobTitle": "Senior Software Engineer (SDE II)", "industry": "Adtech", - "cities": [], + "cities": ["Tampa", "Berlin"], "_id": { - "$oid": "66723d958f368f285d3040b2" + "$oid": "6674c30595590f9fd9459379" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17732,15 +17732,15 @@ "cohort": "12", "jobTitle": "Senior Full Stack Engineer", "industry": "Fintech", - "cities": ["Colorado Springs", "Irvine", "North Las Vegas"], + "cities": ["Anaheim", "Oklahoma City", "Fort Worth"], "_id": { - "$oid": "66723d958f368f285d3040b3" + "$oid": "6674c30595590f9fd945937a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17753,15 +17753,15 @@ "cohort": "32", "jobTitle": "Front End Engineer", "industry": "Real Estate", - "cities": ["Indianapolis", "Anchorage"], + "cities": ["Saint Paul"], "_id": { - "$oid": "66723d958f368f285d3040b4" + "$oid": "6674c30595590f9fd945937b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17774,15 +17774,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "Tech Consulting", - "cities": ["Jersey City", "Pittsburgh"], + "cities": ["Riverside"], "_id": { - "$oid": "66723d958f368f285d3040b5" + "$oid": "6674c30595590f9fd945937c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17795,15 +17795,15 @@ "cohort": "53", "jobTitle": "Software Engineer", "industry": "Artificial Intelligence", - "cities": ["Los Angeles"], + "cities": ["Long Beach", "Scottsdale", "Mesa"], "_id": { - "$oid": "66723d958f368f285d3040b6" + "$oid": "6674c30595590f9fd945937d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17816,15 +17816,15 @@ "cohort": "24", "jobTitle": "Senior Software Engineer, Frontend", "industry": "Sports data science", - "cities": ["Charlotte", "Anaheim"], + "cities": ["Irvine"], "_id": { - "$oid": "66723d958f368f285d3040b7" + "$oid": "6674c30595590f9fd945937e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17837,15 +17837,15 @@ "cohort": "16", "jobTitle": "Senior Frontend Engineer", "industry": "Ecommerce", - "cities": ["Kansas City"], + "cities": ["Fort Worth", "Austin", "Dallas"], "_id": { - "$oid": "66723d958f368f285d3040b8" + "$oid": "6674c30595590f9fd945937f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17858,15 +17858,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Marketing Technology", - "cities": ["Los Angeles", "Chicago", "Washington"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040b9" + "$oid": "6674c30595590f9fd9459380" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17879,15 +17879,15 @@ "cohort": "5", "jobTitle": "Software Engineer II", "industry": "Marketing/Advertising", - "cities": ["Greensboro"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040ba" + "$oid": "6674c30595590f9fd9459381" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17900,15 +17900,15 @@ "cohort": "12", "jobTitle": "Software engineer", "industry": "Real Estate", - "cities": ["Sydney", "Long Beach"], + "cities": ["Memphis", "London"], "_id": { - "$oid": "66723d958f368f285d3040bb" + "$oid": "6674c30595590f9fd9459382" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17921,15 +17921,15 @@ "cohort": "37", "jobTitle": "Software Development Engineer II (Front end)", "industry": "Legal Services", - "cities": ["Albuquerque"], + "cities": ["Gilbert"], "_id": { - "$oid": "66723d958f368f285d3040bc" + "$oid": "6674c30595590f9fd9459383" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17942,15 +17942,15 @@ "cohort": "50", "jobTitle": "Software Engineer, Applications", "industry": "Healthcare", - "cities": ["Garland", "Chandler"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040bd" + "$oid": "6674c30595590f9fd9459384" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17963,15 +17963,15 @@ "cohort": "28", "jobTitle": "Software Engineer II", "industry": "Gaming/casino management software", - "cities": ["Bakersfield", "Tucson", "Oklahoma City"], + "cities": ["Reno", "Boston"], "_id": { - "$oid": "66723d958f368f285d3040be" + "$oid": "6674c30595590f9fd9459385" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -17984,15 +17984,15 @@ "cohort": "43", "jobTitle": "Web Platform Engineer", "industry": "Retail", - "cities": [], + "cities": ["Oklahoma City"], "_id": { - "$oid": "66723d958f368f285d3040bf" + "$oid": "6674c30595590f9fd9459386" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -18005,15 +18005,15 @@ "cohort": "15", "jobTitle": "Senior Front End Developer", "industry": "Retail", - "cities": ["St. Petersburg"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040c0" + "$oid": "6674c30595590f9fd9459387" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -18026,15 +18026,15 @@ "cohort": "1", "jobTitle": "Backend Engineer", "industry": "Other", - "cities": ["Chula Vista"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040c1" + "$oid": "6674c30595590f9fd9459388" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -18047,15 +18047,15 @@ "cohort": "12", "jobTitle": "Software Engineer", "industry": "Retail", - "cities": ["Plano"], + "cities": ["Washington", "Newark", "Philadelphia"], "_id": { - "$oid": "66723d958f368f285d3040c2" + "$oid": "6674c30595590f9fd9459389" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -18068,15 +18068,15 @@ "cohort": "45", "jobTitle": "Software Engineer II", "industry": "DevSecOps", - "cities": ["Irvine"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040c3" + "$oid": "6674c30595590f9fd945938a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -18089,15 +18089,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Durham", "Toledo"], "_id": { - "$oid": "66723d958f368f285d3040c4" + "$oid": "6674c30595590f9fd945938b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -18110,15 +18110,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["London", "Jacksonville"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040c5" + "$oid": "6674c30595590f9fd945938c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -18131,15 +18131,15 @@ "cohort": "11", "jobTitle": "Application Developer II", "industry": "Government", - "cities": ["Fresno", "Miami"], + "cities": ["San Francisco", "Fresno", "Fort Wayne"], "_id": { - "$oid": "66723d958f368f285d3040c6" + "$oid": "6674c30595590f9fd945938d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -18154,13 +18154,13 @@ "industry": "Marketing", "cities": [], "_id": { - "$oid": "66723d958f368f285d3040c7" + "$oid": "6674c30595590f9fd945938e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -18175,13 +18175,13 @@ "industry": "Fintech Consulting", "cities": [], "_id": { - "$oid": "66723d958f368f285d3040c8" + "$oid": "6674c30595590f9fd945938f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -18194,15 +18194,15 @@ "cohort": "45", "jobTitle": "Integration Engineer", "industry": "Health Care Marketing", - "cities": ["San Francisco", "Baltimore"], + "cities": ["Sacramento", "Cleveland", "Baltimore"], "_id": { - "$oid": "66723d958f368f285d3040c9" + "$oid": "6674c30595590f9fd9459390" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -18215,15 +18215,15 @@ "cohort": "32", "jobTitle": "Front End Engineer", "industry": "Software / Tech", - "cities": [], + "cities": ["Sรฃo Paulo"], "_id": { - "$oid": "66723d958f368f285d3040ca" + "$oid": "6674c30595590f9fd9459391" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -18236,15 +18236,15 @@ "cohort": "57", "jobTitle": "Software Engineer", "industry": "Marketing/Advertising", - "cities": ["Durham", "Boston", "Sydney"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040cb" + "$oid": "6674c30595590f9fd9459392" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -18257,15 +18257,15 @@ "cohort": "21", "jobTitle": "Software Engineer (Backend)", "industry": "Developer Tools", - "cities": [], + "cities": ["Long Beach", "Arlington", "Tucson"], "_id": { - "$oid": "66723d958f368f285d3040cc" + "$oid": "6674c30595590f9fd9459393" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -18280,13 +18280,13 @@ "industry": "CRM for law firms", "cities": [], "_id": { - "$oid": "66723d958f368f285d3040cd" + "$oid": "6674c30595590f9fd9459394" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -18299,15 +18299,15 @@ "cohort": "6", "jobTitle": "Software Engineer II", "industry": "Marketing", - "cities": ["Aurora", "Beijing", "Indianapolis"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040ce" + "$oid": "6674c30595590f9fd9459395" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -18320,15 +18320,15 @@ "cohort": "40", "jobTitle": "Frontend Engineer", "industry": "Other", - "cities": ["Tulsa", "Berlin", "Nashville"], + "cities": ["Oklahoma City", "Colorado Springs"], "_id": { - "$oid": "66723d958f368f285d3040cf" + "$oid": "6674c30595590f9fd9459396" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -18341,15 +18341,15 @@ "cohort": "35", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["St. Petersburg", "Philadelphia"], + "cities": ["El Paso"], "_id": { - "$oid": "66723d958f368f285d3040d0" + "$oid": "6674c30595590f9fd9459397" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -18362,15 +18362,15 @@ "cohort": "16", "jobTitle": "Senior Frontend Engineer", "industry": "Fintech", - "cities": ["San Jose"], + "cities": ["Indianapolis", "Las Vegas", "Arlington"], "_id": { - "$oid": "66723d958f368f285d3040d1" + "$oid": "6674c30595590f9fd9459398" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -18383,15 +18383,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Washington", "Seattle"], + "cities": ["Irvine"], "_id": { - "$oid": "66723d958f368f285d3040d2" + "$oid": "6674c30595590f9fd9459399" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.065Z" }, "__v": 0 }, @@ -18404,15 +18404,15 @@ "cohort": "52", "jobTitle": "Software Engineer II, Product Experiences", "industry": "Other", - "cities": ["Beijing"], + "cities": ["Charlotte"], "_id": { - "$oid": "66723d958f368f285d3040d3" + "$oid": "6674c30595590f9fd945939a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18425,15 +18425,15 @@ "cohort": "34", "jobTitle": "Full Stack Engineer Co-op (Internship)", "industry": "Automotive", - "cities": [], + "cities": ["Anchorage", "Raleigh"], "_id": { - "$oid": "66723d958f368f285d3040d4" + "$oid": "6674c30595590f9fd945939b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18448,13 +18448,13 @@ "industry": "Real Estate", "cities": [], "_id": { - "$oid": "66723d958f368f285d3040d5" + "$oid": "6674c30595590f9fd945939c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18467,15 +18467,15 @@ "cohort": "7", "jobTitle": "Integrations Engineer", "industry": "IT Services", - "cities": [], + "cities": ["Lubbock", "Austin"], "_id": { - "$oid": "66723d958f368f285d3040d6" + "$oid": "6674c30595590f9fd945939d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18488,15 +18488,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Recruiting", - "cities": ["Pittsburgh", "Sรฃo Paulo", "Detroit"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040d7" + "$oid": "6674c30595590f9fd945939e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18511,13 +18511,13 @@ "industry": "Software / Tech", "cities": [], "_id": { - "$oid": "66723d958f368f285d3040d8" + "$oid": "6674c30595590f9fd945939f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18530,15 +18530,15 @@ "cohort": "42", "jobTitle": "GraphQL Full Stack Developer", "industry": "Paralegal", - "cities": ["Boston", "Scottsdale", "Raleigh"], + "cities": ["Oakland"], "_id": { - "$oid": "66723d958f368f285d3040d9" + "$oid": "6674c30595590f9fd94593a0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18551,15 +18551,15 @@ "cohort": "1", "jobTitle": "GraphQL Full Stack Developer", "industry": "Legal", - "cities": ["Tampa", "Lubbock", "Greensboro"], + "cities": ["Nashville", "Honolulu", "Mumbai"], "_id": { - "$oid": "66723d958f368f285d3040da" + "$oid": "6674c30595590f9fd94593a1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18572,15 +18572,15 @@ "cohort": "10", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": [], + "cities": ["St. Louis"], "_id": { - "$oid": "66723d958f368f285d3040db" + "$oid": "6674c30595590f9fd94593a2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18593,15 +18593,15 @@ "cohort": "33", "jobTitle": "Full Stack Developer", "industry": "Other", - "cities": ["New York", "Sydney", "San Diego"], + "cities": ["Minneapolis"], "_id": { - "$oid": "66723d958f368f285d3040dc" + "$oid": "6674c30595590f9fd94593a3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18614,15 +18614,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Berlin"], + "cities": ["New Orleans"], "_id": { - "$oid": "66723d958f368f285d3040dd" + "$oid": "6674c30595590f9fd94593a4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18635,15 +18635,15 @@ "cohort": "5", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": [], + "cities": ["Atlanta", "Mesa", "Aurora"], "_id": { - "$oid": "66723d958f368f285d3040de" + "$oid": "6674c30595590f9fd94593a5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18656,15 +18656,15 @@ "cohort": "43", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Bakersfield", "Chesapeake", "Minneapolis"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040df" + "$oid": "6674c30595590f9fd94593a6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18677,15 +18677,15 @@ "cohort": "50", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": [], + "cities": ["Fort Worth", "Long Beach", "Detroit"], "_id": { - "$oid": "66723d958f368f285d3040e0" + "$oid": "6674c30595590f9fd94593a7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18698,15 +18698,15 @@ "cohort": "43", "jobTitle": "Software engineer", "industry": "Insurance", - "cities": ["London", "Lexington", "Stockton"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040e1" + "$oid": "6674c30595590f9fd94593a8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18719,15 +18719,15 @@ "cohort": "7", "jobTitle": "Associate Software Engineer", "industry": "Healthcare", - "cities": ["Raleigh", "Colorado Springs"], + "cities": ["San Jose", "Irving"], "_id": { - "$oid": "66723d958f368f285d3040e2" + "$oid": "6674c30595590f9fd94593a9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18740,15 +18740,15 @@ "cohort": "6", "jobTitle": "Software Developer III", "industry": "Software / Tech", - "cities": ["Jersey City", "Lexington", "Tokyo"], + "cities": ["North Las Vegas", "Paris"], "_id": { - "$oid": "66723d958f368f285d3040e3" + "$oid": "6674c30595590f9fd94593aa" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18761,15 +18761,15 @@ "cohort": "29", "jobTitle": "Front End Software Engineer", "industry": "Interpreting", - "cities": [], + "cities": ["Las Vegas"], "_id": { - "$oid": "66723d958f368f285d3040e4" + "$oid": "6674c30595590f9fd94593ab" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18782,15 +18782,15 @@ "cohort": "2", "jobTitle": "Full Stack Software Engineer", "industry": "Professional Networking", - "cities": ["Pittsburgh", "Buffalo"], + "cities": ["Fort Worth"], "_id": { - "$oid": "66723d958f368f285d3040e5" + "$oid": "6674c30595590f9fd94593ac" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18803,15 +18803,15 @@ "cohort": "16", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Dallas", "Norfolk"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040e6" + "$oid": "6674c30595590f9fd94593ad" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18824,15 +18824,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Health tech", - "cities": [], + "cities": ["Jersey City", "Honolulu", "Sรฃo Paulo"], "_id": { - "$oid": "66723d958f368f285d3040e7" + "$oid": "6674c30595590f9fd94593ae" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18845,15 +18845,15 @@ "cohort": "11", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["St. Petersburg", "St. Louis"], + "cities": ["Tulsa"], "_id": { - "$oid": "66723d958f368f285d3040e8" + "$oid": "6674c30595590f9fd94593af" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18866,15 +18866,15 @@ "cohort": "42", "jobTitle": "Junior Software Engineer", "industry": "Education/Edtech", - "cities": ["Chicago", "Albuquerque"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040e9" + "$oid": "6674c30595590f9fd94593b0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18887,15 +18887,15 @@ "cohort": "15", "jobTitle": "Front End Engineer", "industry": "Entertainment", - "cities": [], + "cities": ["Jersey City"], "_id": { - "$oid": "66723d958f368f285d3040ea" + "$oid": "6674c30595590f9fd94593b1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18908,15 +18908,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Beauty/Cosmetic", - "cities": [], + "cities": ["Lubbock"], "_id": { - "$oid": "66723d958f368f285d3040eb" + "$oid": "6674c30595590f9fd94593b2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18929,15 +18929,15 @@ "cohort": "44", "jobTitle": "Software Development Engineer", "industry": "Real Estate", - "cities": ["Portland", "Fresno"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040ec" + "$oid": "6674c30595590f9fd94593b3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18950,15 +18950,15 @@ "cohort": "22", "jobTitle": "Senior Software Engineer", "industry": "Entertainment/education", - "cities": ["Houston", "Riverside"], + "cities": ["Fresno", "Mumbai"], "_id": { - "$oid": "66723d958f368f285d3040ed" + "$oid": "6674c30595590f9fd94593b4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18971,15 +18971,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "Computer Software", - "cities": ["Arlington", "Colorado Springs"], + "cities": ["Buffalo"], "_id": { - "$oid": "66723d958f368f285d3040ee" + "$oid": "6674c30595590f9fd94593b5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -18994,13 +18994,13 @@ "industry": "Software (SAAS)", "cities": [], "_id": { - "$oid": "66723d958f368f285d3040ef" + "$oid": "6674c30595590f9fd94593b6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19013,15 +19013,15 @@ "cohort": "8", "jobTitle": "Software Development Engineer", "industry": "Entertainment", - "cities": ["Durham", "Garland", "San Francisco"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040f0" + "$oid": "6674c30595590f9fd94593b7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19034,15 +19034,15 @@ "cohort": "30", "jobTitle": "frontend developer", "industry": "SaaS", - "cities": [], + "cities": ["Mesa", "Kansas City", "Fresno"], "_id": { - "$oid": "66723d958f368f285d3040f1" + "$oid": "6674c30595590f9fd94593b8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19055,15 +19055,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "Information Technology & Services", - "cities": ["North Las Vegas"], + "cities": ["Raleigh", "Charlotte"], "_id": { - "$oid": "66723d958f368f285d3040f2" + "$oid": "6674c30595590f9fd94593b9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19076,15 +19076,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Tokyo", "San Antonio", "Louisville"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040f3" + "$oid": "6674c30595590f9fd94593ba" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19097,15 +19097,15 @@ "cohort": "52", "jobTitle": "Developer - AI Models Integration", "industry": "Software / Tech", - "cities": ["Pittsburgh"], + "cities": ["St. Louis"], "_id": { - "$oid": "66723d958f368f285d3040f4" + "$oid": "6674c30595590f9fd94593bb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19118,15 +19118,15 @@ "cohort": "39", "jobTitle": "Associate Software Engineer", "industry": "Other", - "cities": ["Beijing"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040f5" + "$oid": "6674c30595590f9fd94593bc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19139,15 +19139,15 @@ "cohort": "5", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Detroit", "Corpus Christi", "Newark"], + "cities": ["Washington"], "_id": { - "$oid": "66723d958f368f285d3040f6" + "$oid": "6674c30595590f9fd94593bd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19162,13 +19162,13 @@ "industry": "Security", "cities": [], "_id": { - "$oid": "66723d958f368f285d3040f7" + "$oid": "6674c30595590f9fd94593be" }, "createdAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.822Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19181,15 +19181,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "Mental Health", - "cities": ["London"], + "cities": ["Washington", "Cleveland"], "_id": { - "$oid": "66723d958f368f285d3040f8" + "$oid": "6674c30595590f9fd94593bf" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19202,15 +19202,15 @@ "cohort": "50", "jobTitle": "Full Stack Developer", "industry": "Software / Tech", - "cities": ["Detroit", "Columbus"], + "cities": ["Indianapolis"], "_id": { - "$oid": "66723d958f368f285d3040f9" + "$oid": "6674c30595590f9fd94593c0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19223,15 +19223,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "Retail", - "cities": ["Buffalo"], + "cities": ["Honolulu", "Beijing"], "_id": { - "$oid": "66723d958f368f285d3040fa" + "$oid": "6674c30595590f9fd94593c1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19244,15 +19244,15 @@ "cohort": "4", "jobTitle": "Front-End Engineer (six month contract-to-hire)", "industry": "Artificial Intelligence/Machine Learning", - "cities": ["Madison", "Paris"], + "cities": ["Sรฃo Paulo", "Memphis", "Paris"], "_id": { - "$oid": "66723d958f368f285d3040fb" + "$oid": "6674c30595590f9fd94593c2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19265,15 +19265,15 @@ "cohort": "9", "jobTitle": "Software Developer II", "industry": "Security", - "cities": ["Long Beach", "Henderson"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040fc" + "$oid": "6674c30595590f9fd94593c3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19286,15 +19286,15 @@ "cohort": "23", "jobTitle": "Frontend Engineer", "industry": "Food Industry", - "cities": [], + "cities": ["Newark", "Cleveland", "Beijing"], "_id": { - "$oid": "66723d958f368f285d3040fd" + "$oid": "6674c30595590f9fd94593c4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19307,15 +19307,15 @@ "cohort": "21", "jobTitle": "Senior Software Engineer", "industry": "Supply Chain Management", - "cities": ["Durham"], + "cities": ["Baltimore"], "_id": { - "$oid": "66723d958f368f285d3040fe" + "$oid": "6674c30595590f9fd94593c5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19328,15 +19328,15 @@ "cohort": "6", "jobTitle": "Software Engineer II", "industry": "Automotive", - "cities": ["Columbus", "Gilbert"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3040ff" + "$oid": "6674c30595590f9fd94593c6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19349,15 +19349,15 @@ "cohort": "33", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Scottsdale", "Tucson", "Austin"], + "cities": ["Miami"], "_id": { - "$oid": "66723d958f368f285d304100" + "$oid": "6674c30595590f9fd94593c7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19370,15 +19370,15 @@ "cohort": "21", "jobTitle": "Full Stack Engineer", "industry": "Marketing", - "cities": [], + "cities": ["Aurora"], "_id": { - "$oid": "66723d958f368f285d304101" + "$oid": "6674c30595590f9fd94593c8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19391,15 +19391,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Media/Entertainment", - "cities": ["Fort Worth", "Charlotte"], + "cities": ["Detroit", "Washington", "Fort Worth"], "_id": { - "$oid": "66723d958f368f285d304102" + "$oid": "6674c30595590f9fd94593c9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19412,15 +19412,15 @@ "cohort": "31", "jobTitle": "Front-End Software Engineer", "industry": "Augmented Reality", - "cities": ["Arlington"], + "cities": ["Detroit"], "_id": { - "$oid": "66723d958f368f285d304103" + "$oid": "6674c30595590f9fd94593ca" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19433,15 +19433,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Pittsburgh", "Albuquerque"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304104" + "$oid": "6674c30595590f9fd94593cb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19454,15 +19454,15 @@ "cohort": "37", "jobTitle": "Front End Software Development Engineer", "industry": "Adtech", - "cities": ["Tampa"], + "cities": ["Newark", "Mumbai", "New York"], "_id": { - "$oid": "66723d958f368f285d304105" + "$oid": "6674c30595590f9fd94593cc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19475,15 +19475,15 @@ "cohort": "47", "jobTitle": "SWE II", "industry": "Marketing/financial management", - "cities": [], + "cities": ["San Jose"], "_id": { - "$oid": "66723d958f368f285d304106" + "$oid": "6674c30595590f9fd94593cd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19496,15 +19496,15 @@ "cohort": "6", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Anchorage"], + "cities": ["Corpus Christi", "Reno", "Toronto"], "_id": { - "$oid": "66723d958f368f285d304107" + "$oid": "6674c30595590f9fd94593ce" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19517,15 +19517,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "E-commerce", - "cities": [], + "cities": ["San Antonio", "Jacksonville"], "_id": { - "$oid": "66723d958f368f285d304108" + "$oid": "6674c30595590f9fd94593cf" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19538,15 +19538,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Sports", - "cities": ["Charlotte"], + "cities": ["Santa Ana"], "_id": { - "$oid": "66723d958f368f285d304109" + "$oid": "6674c30595590f9fd94593d0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19559,15 +19559,15 @@ "cohort": "13", "jobTitle": "Senior Software Engineer", "industry": "Hardware manufacturer (3d printers)", - "cities": ["Mesa", "Honolulu"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30410a" + "$oid": "6674c30595590f9fd94593d1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19580,15 +19580,15 @@ "cohort": "10", "jobTitle": "Software Developer", "industry": "Real Estate", - "cities": ["Miami", "Kansas City"], + "cities": ["San Francisco", "Scottsdale", "Raleigh"], "_id": { - "$oid": "66723d958f368f285d30410b" + "$oid": "6674c30595590f9fd94593d2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19601,15 +19601,15 @@ "cohort": "52", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Mumbai"], + "cities": ["San Jose", "Washington"], "_id": { - "$oid": "66723d958f368f285d30410c" + "$oid": "6674c30595590f9fd94593d3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19622,15 +19622,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Artificial Intelligence", - "cities": [], + "cities": ["Kansas City"], "_id": { - "$oid": "66723d958f368f285d30410d" + "$oid": "6674c30595590f9fd94593d4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19643,15 +19643,15 @@ "cohort": "22", "jobTitle": "Full stack Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Dallas"], "_id": { - "$oid": "66723d958f368f285d30410e" + "$oid": "6674c30595590f9fd94593d5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19664,15 +19664,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Paris", "Mesa"], "_id": { - "$oid": "66723d958f368f285d30410f" + "$oid": "6674c30595590f9fd94593d6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19685,15 +19685,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "HealthTech", - "cities": ["Stockton"], + "cities": ["Miami", "Sacramento"], "_id": { - "$oid": "66723d958f368f285d304110" + "$oid": "6674c30595590f9fd94593d7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19706,15 +19706,15 @@ "cohort": "2", "jobTitle": "Senior Software Engineer", "industry": "Blockchain/Web3", - "cities": ["Toronto", "Virginia Beach", "Milwaukee"], + "cities": ["Sรฃo Paulo"], "_id": { - "$oid": "66723d958f368f285d304111" + "$oid": "6674c30595590f9fd94593d8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19727,15 +19727,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "Fitness Center Saas", - "cities": [], + "cities": ["Fort Worth", "Tampa", "Columbus"], "_id": { - "$oid": "66723d958f368f285d304112" + "$oid": "6674c30595590f9fd94593d9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19748,15 +19748,15 @@ "cohort": "12", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Memphis", "St. Louis", "Greensboro"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304113" + "$oid": "6674c30595590f9fd94593da" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19769,15 +19769,15 @@ "cohort": "20", "jobTitle": "Software Engineer", "industry": "Law Enforcement", - "cities": ["St. Louis"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304114" + "$oid": "6674c30595590f9fd94593db" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19792,13 +19792,13 @@ "industry": "Itโ€™s software for first responders, not sure what industry that is", "cities": [], "_id": { - "$oid": "66723d958f368f285d304115" + "$oid": "6674c30595590f9fd94593dc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19811,15 +19811,15 @@ "cohort": "30", "jobTitle": "Developer", "industry": "Insurance", - "cities": [], + "cities": ["Stockton", "Tampa", "Phoenix"], "_id": { - "$oid": "66723d958f368f285d304116" + "$oid": "6674c30595590f9fd94593dd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19832,15 +19832,15 @@ "cohort": "4", "jobTitle": "React Software Engineer", "industry": "FinTech", - "cities": ["Portland", "Pittsburgh"], + "cities": ["Corpus Christi", "Seattle"], "_id": { - "$oid": "66723d958f368f285d304117" + "$oid": "6674c30595590f9fd94593de" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19855,13 +19855,13 @@ "industry": "Financial Services/Insurance", "cities": [], "_id": { - "$oid": "66723d958f368f285d304118" + "$oid": "6674c30595590f9fd94593df" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19874,15 +19874,15 @@ "cohort": "30", "jobTitle": "Full Stack Developer", "industry": "Insurance", - "cities": [], + "cities": ["Las Vegas", "Corpus Christi", "Tucson"], "_id": { - "$oid": "66723d958f368f285d304119" + "$oid": "6674c30595590f9fd94593e0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19895,15 +19895,15 @@ "cohort": "11", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Orlando"], + "cities": ["Stockton", "Toronto", "Greensboro"], "_id": { - "$oid": "66723d958f368f285d30411a" + "$oid": "6674c30595590f9fd94593e1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19916,15 +19916,15 @@ "cohort": "14", "jobTitle": "JavaScript Engineer", "industry": "Payment card", - "cities": ["Las Vegas", "Oakland", "Boston"], + "cities": ["Cleveland", "Scottsdale"], "_id": { - "$oid": "66723d958f368f285d30411b" + "$oid": "6674c30595590f9fd94593e2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19937,15 +19937,15 @@ "cohort": "40", "jobTitle": "Software Engineer", "industry": "Automotive", - "cities": ["London"], + "cities": ["Santa Ana", "Reno", "Fresno"], "_id": { - "$oid": "66723d958f368f285d30411c" + "$oid": "6674c30595590f9fd94593e3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19958,15 +19958,15 @@ "cohort": "9", "jobTitle": "Full Stack Software Engineer", "industry": "Automotive", - "cities": ["Bakersfield", "Gilbert"], + "cities": ["San Francisco"], "_id": { - "$oid": "66723d958f368f285d30411d" + "$oid": "6674c30595590f9fd94593e4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -19981,13 +19981,13 @@ "industry": "Automotive", "cities": [], "_id": { - "$oid": "66723d958f368f285d30411e" + "$oid": "6674c30595590f9fd94593e5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -20000,15 +20000,15 @@ "cohort": "30", "jobTitle": "Front End Engineer", "industry": "Psychedelic Health", - "cities": ["Chicago", "Aurora", "Berlin"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30411f" + "$oid": "6674c30595590f9fd94593e6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -20021,15 +20021,15 @@ "cohort": "18", "jobTitle": "Full Stack Engineer", "industry": "Design", - "cities": ["Houston", "Kansas City", "Charlotte"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304120" + "$oid": "6674c30595590f9fd94593e7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -20042,15 +20042,15 @@ "cohort": "34", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Cincinnati", "Columbus"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304121" + "$oid": "6674c30595590f9fd94593e8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -20063,15 +20063,15 @@ "cohort": "46", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Jersey City"], + "cities": ["Los Angeles", "Portland"], "_id": { - "$oid": "66723d958f368f285d304122" + "$oid": "6674c30595590f9fd94593e9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -20084,15 +20084,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Consulting and technology services", - "cities": ["Raleigh", "Boston"], + "cities": ["Columbus", "Anchorage", "Tucson"], "_id": { - "$oid": "66723d958f368f285d304123" + "$oid": "6674c30595590f9fd94593ea" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -20105,15 +20105,15 @@ "cohort": "8", "jobTitle": "Engineer I", "industry": "Consulting", - "cities": ["Detroit", "Corpus Christi"], + "cities": ["Lexington"], "_id": { - "$oid": "66723d958f368f285d304124" + "$oid": "6674c30595590f9fd94593eb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -20126,15 +20126,15 @@ "cohort": "51", "jobTitle": "Software Engineer", "industry": "Consulting", - "cities": ["Kansas City", "Buffalo", "Detroit"], + "cities": ["Denver", "Stockton", "Lubbock"], "_id": { - "$oid": "66723d958f368f285d304125" + "$oid": "6674c30595590f9fd94593ec" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -20147,15 +20147,15 @@ "cohort": "7", "jobTitle": "Software Engineer", "industry": "Fintech, Payment Processing", - "cities": ["Greensboro", "Chandler", "Reno"], + "cities": ["Irving"], "_id": { - "$oid": "66723d958f368f285d304126" + "$oid": "6674c30595590f9fd94593ed" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -20168,15 +20168,15 @@ "cohort": "33", "jobTitle": "Full Stack Engineer", "industry": "Gaming", - "cities": ["Tucson"], + "cities": ["Oakland", "Toledo"], "_id": { - "$oid": "66723d958f368f285d304127" + "$oid": "6674c30595590f9fd94593ee" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -20189,15 +20189,15 @@ "cohort": "38", "jobTitle": "Creative Technologist", "industry": "Digital Production", - "cities": ["Pittsburgh", "Bakersfield"], + "cities": ["Tokyo", "Oakland", "Chesapeake"], "_id": { - "$oid": "66723d958f368f285d304128" + "$oid": "6674c30595590f9fd94593ef" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.066Z" }, "__v": 0 }, @@ -20210,15 +20210,15 @@ "cohort": "28", "jobTitle": "Senior Software Engineer", "industry": "Advertising & Marketing", - "cities": [], + "cities": ["Phoenix", "Beijing"], "_id": { - "$oid": "66723d958f368f285d304129" + "$oid": "6674c30595590f9fd94593f0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20231,15 +20231,15 @@ "cohort": "16", "jobTitle": "Fullstack Developer", "industry": "Healthtech/Healthcare", - "cities": ["Laredo", "Louisville", "Fort Wayne"], + "cities": ["Chandler", "Tulsa", "Los Angeles"], "_id": { - "$oid": "66723d958f368f285d30412a" + "$oid": "6674c30595590f9fd94593f1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20252,15 +20252,15 @@ "cohort": "4", "jobTitle": "Frontend Engineer", "industry": "", - "cities": [], + "cities": ["Detroit", "New York"], "_id": { - "$oid": "66723d958f368f285d30412b" + "$oid": "6674c30595590f9fd94593f2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20273,15 +20273,15 @@ "cohort": "18", "jobTitle": "Senior Full Stack Engineer, Trust & Safety", "industry": "Online publishing platform", - "cities": ["Milwaukee"], + "cities": ["Tampa"], "_id": { - "$oid": "66723d958f368f285d30412c" + "$oid": "6674c30595590f9fd94593f3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20294,15 +20294,15 @@ "cohort": "14", "jobTitle": "Software Engineer I", "industry": "Healthcare", - "cities": ["Denver", "Newark"], + "cities": ["Buffalo", "Henderson"], "_id": { - "$oid": "66723d958f368f285d30412d" + "$oid": "6674c30595590f9fd94593f4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20315,15 +20315,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Riverside"], + "cities": ["Portland", "Columbus"], "_id": { - "$oid": "66723d958f368f285d30412e" + "$oid": "6674c30595590f9fd94593f5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20336,15 +20336,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "Digital Media Intelligence", - "cities": ["Greensboro", "Sรฃo Paulo", "Winston-Salem"], + "cities": ["Corpus Christi", "Minneapolis"], "_id": { - "$oid": "66723d958f368f285d30412f" + "$oid": "6674c30595590f9fd94593f6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20357,15 +20357,15 @@ "cohort": "42", "jobTitle": "Backend software engineer level 2", "industry": "Software as a Service", - "cities": ["Garland", "St. Petersburg", "Dallas"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304130" + "$oid": "6674c30595590f9fd94593f7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20378,15 +20378,15 @@ "cohort": "17", "jobTitle": "Advanced Software Developer", "industry": "Healthcare", - "cities": ["Anaheim"], + "cities": ["Miami"], "_id": { - "$oid": "66723d958f368f285d304131" + "$oid": "6674c30595590f9fd94593f8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20399,15 +20399,15 @@ "cohort": "5", "jobTitle": "Bioinformatics Software Engineer I", "industry": "Healthcare", - "cities": [], + "cities": ["Phoenix"], "_id": { - "$oid": "66723d958f368f285d304132" + "$oid": "6674c30595590f9fd94593f9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20420,15 +20420,15 @@ "cohort": "16", "jobTitle": "Frontend Software Engineer", "industry": "Health", - "cities": ["Baltimore", "Henderson"], + "cities": ["Indianapolis", "Irvine"], "_id": { - "$oid": "66723d958f368f285d304133" + "$oid": "6674c30595590f9fd94593fa" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20441,15 +20441,15 @@ "cohort": "3", "jobTitle": "Software Engineer II", "industry": "Healthcare", - "cities": ["London"], + "cities": ["Plano"], "_id": { - "$oid": "66723d958f368f285d304134" + "$oid": "6674c30595590f9fd94593fb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20462,15 +20462,15 @@ "cohort": "15", "jobTitle": "Lead Fullstack Engineer", "industry": "HR", - "cities": ["Louisville", "North Las Vegas"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304135" + "$oid": "6674c30595590f9fd94593fc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20483,15 +20483,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Durham"], + "cities": ["Memphis"], "_id": { - "$oid": "66723d958f368f285d304136" + "$oid": "6674c30595590f9fd94593fd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20504,15 +20504,15 @@ "cohort": "9", "jobTitle": "Senior Full Stack Engineer", "industry": "Software / Tech", - "cities": ["Madison"], + "cities": ["Santa Ana", "Kansas City"], "_id": { - "$oid": "66723d958f368f285d304137" + "$oid": "6674c30595590f9fd94593fe" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20525,15 +20525,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Louisville", "London", "Toronto"], + "cities": ["Phoenix"], "_id": { - "$oid": "66723d958f368f285d304138" + "$oid": "6674c30595590f9fd94593ff" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20546,15 +20546,15 @@ "cohort": "42", "jobTitle": "Software Engineer", "industry": "Media Agency", - "cities": ["Phoenix", "Chula Vista", "Portland"], + "cities": ["London", "Mumbai", "Seattle"], "_id": { - "$oid": "66723d958f368f285d304139" + "$oid": "6674c30595590f9fd9459400" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20567,15 +20567,15 @@ "cohort": "15", "jobTitle": "Junior Web Developer", "industry": "Marketing", - "cities": [], + "cities": ["Las Vegas", "Phoenix", "New Orleans"], "_id": { - "$oid": "66723d958f368f285d30413a" + "$oid": "6674c30595590f9fd9459401" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20588,15 +20588,15 @@ "cohort": "2", "jobTitle": "Partner Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Mesa"], "_id": { - "$oid": "66723d958f368f285d30413b" + "$oid": "6674c30595590f9fd9459402" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20609,15 +20609,15 @@ "cohort": "0", "jobTitle": "Data Engineer", "industry": "Social Media + VR", - "cities": [], + "cities": ["Santa Ana", "Newark", "Irving"], "_id": { - "$oid": "66723d958f368f285d30413c" + "$oid": "6674c30595590f9fd9459403" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20630,15 +20630,15 @@ "cohort": "16", "jobTitle": "Software Engineer", "industry": "Technology", - "cities": ["Detroit"], + "cities": ["London", "Oakland", "Bakersfield"], "_id": { - "$oid": "66723d958f368f285d30413d" + "$oid": "6674c30595590f9fd9459404" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20653,13 +20653,13 @@ "industry": "", "cities": [], "_id": { - "$oid": "66723d958f368f285d30413e" + "$oid": "6674c30595590f9fd9459405" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20672,15 +20672,15 @@ "cohort": "48", "jobTitle": "Software Engineer", "industry": "Research", - "cities": ["Durham"], + "cities": ["Sacramento"], "_id": { - "$oid": "66723d958f368f285d30413f" + "$oid": "6674c30595590f9fd9459406" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20693,15 +20693,15 @@ "cohort": "16", "jobTitle": "Software Engineer", "industry": "Information Technology & Services", - "cities": ["Henderson"], + "cities": ["Arlington"], "_id": { - "$oid": "66723d958f368f285d304140" + "$oid": "6674c30595590f9fd9459407" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20714,15 +20714,15 @@ "cohort": "13", "jobTitle": "Frontend Software Engineer", "industry": "Agriculture Science", - "cities": ["Bakersfield", "Milwaukee"], + "cities": ["Las Vegas", "Atlanta", "Oakland"], "_id": { - "$oid": "66723d958f368f285d304141" + "$oid": "6674c30595590f9fd9459408" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20735,15 +20735,15 @@ "cohort": "20", "jobTitle": "Software Engineer II", "industry": "Software", - "cities": [], + "cities": ["Milwaukee", "Plano", "Toledo"], "_id": { - "$oid": "66723d958f368f285d304142" + "$oid": "6674c30595590f9fd9459409" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20756,15 +20756,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Sacramento", "Louisville"], + "cities": ["Riverside", "Chula Vista", "Gilbert"], "_id": { - "$oid": "66723d958f368f285d304143" + "$oid": "6674c30595590f9fd945940a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20777,15 +20777,15 @@ "cohort": "31", "jobTitle": "UI Engineer", "industry": "Tech", - "cities": ["Oklahoma City", "Seattle", "El Paso"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304144" + "$oid": "6674c30595590f9fd945940b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20798,15 +20798,15 @@ "cohort": "40", "jobTitle": "Software Engineer ll", "industry": "Computer Software", - "cities": ["Miami", "Chicago", "Paris"], + "cities": ["Mumbai", "North Las Vegas"], "_id": { - "$oid": "66723d958f368f285d304145" + "$oid": "6674c30595590f9fd945940c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20819,15 +20819,15 @@ "cohort": "19", "jobTitle": "Software Engineer", "industry": "Cloud", - "cities": ["Louisville", "Anchorage", "Oakland"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304146" + "$oid": "6674c30595590f9fd945940d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20840,15 +20840,15 @@ "cohort": "15", "jobTitle": "Software Engineer, Contract", "industry": "tech", - "cities": ["Norfolk", "Buffalo", "Madison"], + "cities": ["Raleigh", "Los Angeles", "Atlanta"], "_id": { - "$oid": "66723d958f368f285d304147" + "$oid": "6674c30595590f9fd945940e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20861,15 +20861,15 @@ "cohort": "53", "jobTitle": "Senior Automation Engineer", "industry": "Gaming", - "cities": ["St. Louis", "Columbus"], + "cities": ["Berlin", "Memphis"], "_id": { - "$oid": "66723d958f368f285d304148" + "$oid": "6674c30595590f9fd945940f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20882,15 +20882,15 @@ "cohort": "43", "jobTitle": "Cloud Support Engineer", "industry": "IT Services", - "cities": [], + "cities": ["Irving"], "_id": { - "$oid": "66723d958f368f285d304149" + "$oid": "6674c30595590f9fd9459410" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20903,15 +20903,15 @@ "cohort": "15", "jobTitle": "Software Engineer Apprentice (LEAP Program)", "industry": "Computer Technology", - "cities": ["Washington", "Lubbock"], + "cities": ["Norfolk"], "_id": { - "$oid": "66723d958f368f285d30414a" + "$oid": "6674c30595590f9fd9459411" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20926,13 +20926,13 @@ "industry": "Technology", "cities": [], "_id": { - "$oid": "66723d958f368f285d30414b" + "$oid": "6674c30595590f9fd9459412" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20945,15 +20945,15 @@ "cohort": "32", "jobTitle": "Software Development Engineer", "industry": "Cloud computing", - "cities": [], + "cities": ["Fort Worth", "Fresno"], "_id": { - "$oid": "66723d958f368f285d30414c" + "$oid": "6674c30595590f9fd9459413" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20966,15 +20966,15 @@ "cohort": "20", "jobTitle": "Software Engineer", "industry": "Cloud Storage", - "cities": ["Colorado Springs"], + "cities": ["Tucson", "Long Beach"], "_id": { - "$oid": "66723d958f368f285d30414d" + "$oid": "6674c30595590f9fd9459414" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -20987,15 +20987,15 @@ "cohort": "40", "jobTitle": "React/react native/full stack engineer", "industry": "Device payment system", - "cities": ["Berlin", "San Jose"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30414e" + "$oid": "6674c30595590f9fd9459415" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21008,15 +21008,15 @@ "cohort": "19", "jobTitle": "Software Engineer", "industry": "Computer Software", - "cities": ["Honolulu", "Saint Paul"], + "cities": ["Garland", "Arlington"], "_id": { - "$oid": "66723d958f368f285d30414f" + "$oid": "6674c30595590f9fd9459416" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21029,15 +21029,15 @@ "cohort": "12", "jobTitle": "Software Engineer", "industry": "Consumer Services", - "cities": [], + "cities": ["Fort Worth", "Chesapeake"], "_id": { - "$oid": "66723d958f368f285d304150" + "$oid": "6674c30595590f9fd9459417" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21050,15 +21050,15 @@ "cohort": "8", "jobTitle": "Technical Solutions Engineer", "industry": "Insurance/ cybersecurity", - "cities": ["Philadelphia", "Albuquerque", "Dallas"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304151" + "$oid": "6674c30595590f9fd9459418" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21071,15 +21071,15 @@ "cohort": "32", "jobTitle": "Senior Software Engineer", "industry": "Security", - "cities": ["Boston", "Laredo"], + "cities": ["Los Angeles", "New York", "Columbus"], "_id": { - "$oid": "66723d958f368f285d304152" + "$oid": "6674c30595590f9fd9459419" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21092,15 +21092,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "Fitness Tech", - "cities": ["Kansas City", "Detroit", "Mumbai"], + "cities": ["Austin", "Anaheim", "Jacksonville"], "_id": { - "$oid": "66723d958f368f285d304153" + "$oid": "6674c30595590f9fd945941a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21113,15 +21113,15 @@ "cohort": "7", "jobTitle": "Software Engineer I", "industry": "Fitness/Wellness", - "cities": ["Riverside", "Norfolk", "Reno"], + "cities": ["Orlando"], "_id": { - "$oid": "66723d958f368f285d304154" + "$oid": "6674c30595590f9fd945941b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21134,15 +21134,15 @@ "cohort": "36", "jobTitle": "Junior Software Engineer", "industry": "Software / Tech", - "cities": ["Baltimore", "Mexico City", "Paris"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304155" + "$oid": "6674c30595590f9fd945941c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21155,15 +21155,15 @@ "cohort": "6", "jobTitle": "Software Engineer I, Full Stack", "industry": "Healthcare", - "cities": ["Long Beach", "Arlington", "Houston"], + "cities": ["Long Beach", "Durham", "Nashville"], "_id": { - "$oid": "66723d958f368f285d304156" + "$oid": "6674c30595590f9fd945941d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21176,15 +21176,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "Education", - "cities": ["Lubbock", "Sacramento"], + "cities": ["Madison"], "_id": { - "$oid": "66723d958f368f285d304157" + "$oid": "6674c30595590f9fd945941e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21199,13 +21199,13 @@ "industry": "Fintech", "cities": [], "_id": { - "$oid": "66723d958f368f285d304158" + "$oid": "6674c30595590f9fd945941f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21218,15 +21218,15 @@ "cohort": "49", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Albuquerque"], + "cities": ["Orlando", "Fort Worth"], "_id": { - "$oid": "66723d958f368f285d304159" + "$oid": "6674c30595590f9fd9459420" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21239,15 +21239,15 @@ "cohort": "21", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": [], + "cities": ["Raleigh"], "_id": { - "$oid": "66723d958f368f285d30415a" + "$oid": "6674c30595590f9fd9459421" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21260,15 +21260,15 @@ "cohort": "25", "jobTitle": "React Developer", "industry": "Health Care Media", - "cities": ["Santa Ana", "Sรฃo Paulo", "Atlanta"], + "cities": ["Orlando", "Kansas City", "Tokyo"], "_id": { - "$oid": "66723d958f368f285d30415b" + "$oid": "6674c30595590f9fd9459422" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21281,15 +21281,15 @@ "cohort": "19", "jobTitle": "Senior Software Developer", "industry": "Marketing", - "cities": [], + "cities": ["Cincinnati", "Chicago"], "_id": { - "$oid": "66723d958f368f285d30415c" + "$oid": "6674c30595590f9fd9459423" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21302,15 +21302,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Advertising", - "cities": ["Winston-Salem"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30415d" + "$oid": "6674c30595590f9fd9459424" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21323,15 +21323,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Advertising", - "cities": ["Cleveland", "Lexington", "Miami"], + "cities": ["Chicago", "Anaheim", "Lubbock"], "_id": { - "$oid": "66723d958f368f285d30415e" + "$oid": "6674c30595590f9fd9459425" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21344,15 +21344,15 @@ "cohort": "58", "jobTitle": "Fullstack Software Engineer", "industry": "Other", - "cities": [], + "cities": ["Irvine", "Nashville", "Charlotte"], "_id": { - "$oid": "66723d958f368f285d30415f" + "$oid": "6674c30595590f9fd9459426" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21365,15 +21365,15 @@ "cohort": "10", "jobTitle": "Sr. Software eng", "industry": "Entertainment", - "cities": ["Pittsburgh", "Chicago"], + "cities": ["Mesa"], "_id": { - "$oid": "66723d958f368f285d304160" + "$oid": "6674c30595590f9fd9459427" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21388,13 +21388,13 @@ "industry": "Tech?", "cities": [], "_id": { - "$oid": "66723d958f368f285d304161" + "$oid": "6674c30595590f9fd9459428" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21407,15 +21407,15 @@ "cohort": "19", "jobTitle": "", "industry": "Healthcare", - "cities": ["Washington"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304162" + "$oid": "6674c30595590f9fd9459429" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21428,15 +21428,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["London"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304163" + "$oid": "6674c30595590f9fd945942a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21449,15 +21449,15 @@ "cohort": "1", "jobTitle": "Senior Software Engineer", "industry": "Finance", - "cities": ["Detroit", "Anchorage", "Cleveland"], + "cities": ["Oakland"], "_id": { - "$oid": "66723d958f368f285d304164" + "$oid": "6674c30595590f9fd945942b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21470,15 +21470,15 @@ "cohort": "13", "jobTitle": "Software Developer", "industry": "Finance", - "cities": ["Saint Paul"], + "cities": ["Tucson"], "_id": { - "$oid": "66723d958f368f285d304165" + "$oid": "6674c30595590f9fd945942c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.823Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21491,15 +21491,15 @@ "cohort": "27", "jobTitle": "Software Engineer II", "industry": "Decision Intelligence", - "cities": ["Miami", "Washington", "Beijing"], + "cities": ["Toledo", "Raleigh", "Indianapolis"], "_id": { - "$oid": "66723d958f368f285d304166" + "$oid": "6674c30595590f9fd945942d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21512,15 +21512,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Freight", - "cities": ["Sรฃo Paulo"], + "cities": ["Corpus Christi", "Los Angeles", "Riverside"], "_id": { - "$oid": "66723d958f368f285d304167" + "$oid": "6674c30595590f9fd945942e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21533,15 +21533,15 @@ "cohort": "25", "jobTitle": "Cloud Developer", "industry": "Automotive", - "cities": ["Sรฃo Paulo", "Greensboro"], + "cities": ["Glendale", "Garland"], "_id": { - "$oid": "66723d958f368f285d304168" + "$oid": "6674c30595590f9fd945942f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21554,15 +21554,15 @@ "cohort": "30", "jobTitle": "Mid Software Engineer", "industry": "Health Communications", - "cities": [], + "cities": ["Plano"], "_id": { - "$oid": "66723d958f368f285d304169" + "$oid": "6674c30595590f9fd9459430" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21575,15 +21575,15 @@ "cohort": "20", "jobTitle": "UI Developer", "industry": "Data Consumer", - "cities": [], + "cities": ["Bakersfield", "Buffalo", "Paris"], "_id": { - "$oid": "66723d958f368f285d30416a" + "$oid": "6674c30595590f9fd9459431" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21596,15 +21596,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Austin", "Lexington", "Colorado Springs"], + "cities": ["Paris", "Detroit", "Plano"], "_id": { - "$oid": "66723d958f368f285d30416b" + "$oid": "6674c30595590f9fd9459432" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21617,15 +21617,15 @@ "cohort": "5", "jobTitle": "Associate Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Houston", "Chicago"], "_id": { - "$oid": "66723d958f368f285d30416c" + "$oid": "6674c30595590f9fd9459433" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21638,15 +21638,15 @@ "cohort": "19", "jobTitle": "Product Manager, Growth", "industry": "Entertainment", - "cities": ["Toronto", "Jacksonville"], + "cities": ["Corpus Christi", "Scottsdale", "Albuquerque"], "_id": { - "$oid": "66723d958f368f285d30416d" + "$oid": "6674c30595590f9fd9459434" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21659,15 +21659,15 @@ "cohort": "35", "jobTitle": "Full Stack Developer", "industry": "Other", - "cities": ["Denver"], + "cities": ["Irvine", "Beijing"], "_id": { - "$oid": "66723d958f368f285d30416e" + "$oid": "6674c30595590f9fd9459435" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21682,13 +21682,13 @@ "industry": "Media", "cities": [], "_id": { - "$oid": "66723d958f368f285d30416f" + "$oid": "6674c30595590f9fd9459436" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21703,13 +21703,13 @@ "industry": "Fintech", "cities": [], "_id": { - "$oid": "66723d958f368f285d304170" + "$oid": "6674c30595590f9fd9459437" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21722,15 +21722,15 @@ "cohort": "35", "jobTitle": "Backend JavaScript Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Winston-Salem", "Oklahoma City", "St. Petersburg"], "_id": { - "$oid": "66723d958f368f285d304171" + "$oid": "6674c30595590f9fd9459438" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21743,15 +21743,15 @@ "cohort": "6", "jobTitle": "Senior Full Stack Developer", "industry": "Digital Advertising", - "cities": ["Paris", "Tulsa"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304172" + "$oid": "6674c30595590f9fd9459439" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21764,15 +21764,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "SaaS / HR startup", - "cities": ["Seattle", "Chesapeake", "Norfolk"], + "cities": ["Long Beach"], "_id": { - "$oid": "66723d958f368f285d304173" + "$oid": "6674c30595590f9fd945943a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21785,15 +21785,15 @@ "cohort": "40", "jobTitle": "Solutions Engineer", "industry": "Fintech", - "cities": ["Stockton"], + "cities": ["Nashville", "Chandler", "Mumbai"], "_id": { - "$oid": "66723d958f368f285d304174" + "$oid": "6674c30595590f9fd945943b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21806,15 +21806,15 @@ "cohort": "17", "jobTitle": "Software Engineer", "industry": "E-commerce", - "cities": ["St. Louis"], + "cities": ["Indianapolis"], "_id": { - "$oid": "66723d958f368f285d304175" + "$oid": "6674c30595590f9fd945943c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21827,15 +21827,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "Utilities", - "cities": [], + "cities": ["Norfolk", "Orlando", "Corpus Christi"], "_id": { - "$oid": "66723d958f368f285d304176" + "$oid": "6674c30595590f9fd945943d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21848,15 +21848,15 @@ "cohort": "12", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Garland", "Bakersfield", "San Francisco"], + "cities": ["Glendale", "Washington"], "_id": { - "$oid": "66723d958f368f285d304177" + "$oid": "6674c30595590f9fd945943e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21869,15 +21869,15 @@ "cohort": "29", "jobTitle": "Associate Front-End Engineer", "industry": "Sports & Entertainment Media", - "cities": ["Sacramento", "Seattle", "Henderson"], + "cities": ["Beijing"], "_id": { - "$oid": "66723d958f368f285d304178" + "$oid": "6674c30595590f9fd945943f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21890,15 +21890,15 @@ "cohort": "3", "jobTitle": "Software Engineer II", "industry": "Entertainment", - "cities": ["San Francisco", "Saint Paul"], + "cities": ["Detroit", "Irvine", "Sacramento"], "_id": { - "$oid": "66723d958f368f285d304179" + "$oid": "6674c30595590f9fd9459440" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21911,15 +21911,15 @@ "cohort": "35", "jobTitle": "Senior Software Engineer", "industry": "Media and Entertainment", - "cities": ["Sydney"], + "cities": ["Lexington"], "_id": { - "$oid": "66723d958f368f285d30417a" + "$oid": "6674c30595590f9fd9459441" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21932,15 +21932,15 @@ "cohort": "47", "jobTitle": "SW Engineer III", "industry": "IT Services", - "cities": ["Lincoln"], + "cities": ["Beijing", "Corpus Christi", "Aurora"], "_id": { - "$oid": "66723d958f368f285d30417b" + "$oid": "6674c30595590f9fd9459442" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21953,15 +21953,15 @@ "cohort": "16", "jobTitle": "Full Stack Engineer", "industry": "Business Tech/Enterprise Tech", - "cities": ["Columbus"], + "cities": ["Long Beach", "Cleveland", "Aurora"], "_id": { - "$oid": "66723d958f368f285d30417c" + "$oid": "6674c30595590f9fd9459443" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21974,15 +21974,15 @@ "cohort": "1", "jobTitle": "Frontend Engineer", "industry": "Artificial Intelligence", - "cities": ["Cleveland", "Greensboro", "Virginia Beach"], + "cities": ["North Las Vegas", "Berlin", "Winston-Salem"], "_id": { - "$oid": "66723d958f368f285d30417d" + "$oid": "6674c30595590f9fd9459444" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -21995,15 +21995,15 @@ "cohort": "41", "jobTitle": "Full-Stack Developer", "industry": "Fintech", - "cities": ["Milwaukee"], + "cities": ["Memphis", "Gilbert"], "_id": { - "$oid": "66723d958f368f285d30417e" + "$oid": "6674c30595590f9fd9459445" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22016,15 +22016,15 @@ "cohort": "45", "jobTitle": "Full-Stack Software Engineer", "industry": "Fintech", - "cities": ["Las Vegas", "Baltimore"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30417f" + "$oid": "6674c30595590f9fd9459446" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22037,15 +22037,15 @@ "cohort": "4", "jobTitle": "Senior Full-Stack Software Engineer", "industry": "Fintech", - "cities": ["Pittsburgh"], + "cities": ["Boston", "San Francisco", "San Antonio"], "_id": { - "$oid": "66723d958f368f285d304180" + "$oid": "6674c30595590f9fd9459447" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22058,15 +22058,15 @@ "cohort": "31", "jobTitle": "Associate Front-End Developer", "industry": "Other", - "cities": [], + "cities": ["Winston-Salem", "Irvine", "Los Angeles"], "_id": { - "$oid": "66723d958f368f285d304181" + "$oid": "6674c30595590f9fd9459448" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22079,15 +22079,15 @@ "cohort": "25", "jobTitle": "Technologist", "industry": "Fashion", - "cities": ["Indianapolis"], + "cities": ["Sydney", "Pittsburgh", "Raleigh"], "_id": { - "$oid": "66723d958f368f285d304182" + "$oid": "6674c30595590f9fd9459449" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22100,15 +22100,15 @@ "cohort": "35", "jobTitle": "Sr. Analytics Engineer", "industry": "Software / Tech", - "cities": ["Tokyo", "Tampa"], + "cities": ["Oakland"], "_id": { - "$oid": "66723d958f368f285d304183" + "$oid": "6674c30595590f9fd945944a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22121,15 +22121,15 @@ "cohort": "29", "jobTitle": "Technologist", "industry": "Entertainment", - "cities": ["Mexico City", "Irvine", "Cleveland"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304184" + "$oid": "6674c30595590f9fd945944b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22144,13 +22144,13 @@ "industry": "Security Cloud", "cities": [], "_id": { - "$oid": "66723d958f368f285d304185" + "$oid": "6674c30595590f9fd945944c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22163,15 +22163,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Dallas"], + "cities": ["Kansas City", "Madison", "Cleveland"], "_id": { - "$oid": "66723d958f368f285d304186" + "$oid": "6674c30595590f9fd945944d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22184,15 +22184,15 @@ "cohort": "2", "jobTitle": "Full Stack Developer", "industry": "Education/Edtech", - "cities": ["El Paso"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304187" + "$oid": "6674c30595590f9fd945944e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22205,15 +22205,15 @@ "cohort": "7", "jobTitle": "Senior Web Application Developer", "industry": "", - "cities": ["Buffalo"], + "cities": ["Sรฃo Paulo", "Omaha", "San Diego"], "_id": { - "$oid": "66723d958f368f285d304188" + "$oid": "6674c30595590f9fd945944f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22226,15 +22226,15 @@ "cohort": "22", "jobTitle": "Software Developer II", "industry": "Tech", - "cities": ["Omaha", "Tulsa"], + "cities": ["Sacramento", "Sydney"], "_id": { - "$oid": "66723d958f368f285d304189" + "$oid": "6674c30595590f9fd9459450" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22247,15 +22247,15 @@ "cohort": "9", "jobTitle": "Frontend Developer", "industry": "Tech products", - "cities": ["Miami", "Lubbock"], + "cities": ["Chula Vista", "Riverside", "Oklahoma City"], "_id": { - "$oid": "66723d958f368f285d30418a" + "$oid": "6674c30595590f9fd9459451" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22268,15 +22268,15 @@ "cohort": "Beta", "jobTitle": "Front End Software Engineer", "industry": "Media", - "cities": ["Arlington", "Irving"], + "cities": ["Detroit"], "_id": { - "$oid": "66723d958f368f285d30418b" + "$oid": "6674c30595590f9fd9459452" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22289,15 +22289,15 @@ "cohort": "11", "jobTitle": "Software Engineer II", "industry": "Healthcare", - "cities": ["Berlin", "Anaheim"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30418c" + "$oid": "6674c30595590f9fd9459453" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22310,15 +22310,15 @@ "cohort": "40", "jobTitle": "Senior Software Engineer", "industry": "Management", - "cities": ["Los Angeles", "Omaha"], + "cities": ["San Diego", "North Las Vegas", "Scottsdale"], "_id": { - "$oid": "66723d958f368f285d30418d" + "$oid": "6674c30595590f9fd9459454" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22331,15 +22331,15 @@ "cohort": "7", "jobTitle": "Director of Engineering - Platform", "industry": "Media / Sports", - "cities": ["Cincinnati", "Miami"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30418e" + "$oid": "6674c30595590f9fd9459455" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22352,15 +22352,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Wichita", "Glendale"], + "cities": ["Greensboro"], "_id": { - "$oid": "66723d958f368f285d30418f" + "$oid": "6674c30595590f9fd9459456" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22373,15 +22373,15 @@ "cohort": "12", "jobTitle": "Senior Software Engineer", "industry": "Business Analytics", - "cities": ["Cincinnati", "Jersey City"], + "cities": ["Atlanta", "Milwaukee"], "_id": { - "$oid": "66723d958f368f285d304190" + "$oid": "6674c30595590f9fd9459457" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22394,15 +22394,15 @@ "cohort": "31", "jobTitle": "Software Engineer II", "industry": "Business Analytics", - "cities": ["Long Beach", "Stockton"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304191" + "$oid": "6674c30595590f9fd9459458" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22415,15 +22415,15 @@ "cohort": "41", "jobTitle": "Sr Software Engineer", "industry": "Information Technology & Services", - "cities": ["Greensboro", "Sรฃo Paulo", "Wichita"], + "cities": ["Houston", "Fort Wayne"], "_id": { - "$oid": "66723d958f368f285d304192" + "$oid": "6674c30595590f9fd9459459" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22436,15 +22436,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Travel", - "cities": ["Toledo"], + "cities": ["Cincinnati", "Gilbert"], "_id": { - "$oid": "66723d958f368f285d304193" + "$oid": "6674c30595590f9fd945945a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22457,15 +22457,15 @@ "cohort": "49", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Arlington"], + "cities": ["Beijing", "Austin"], "_id": { - "$oid": "66723d958f368f285d304194" + "$oid": "6674c30595590f9fd945945b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22478,15 +22478,15 @@ "cohort": "36", "jobTitle": "Full Stack Engineer", "industry": "Scientist R&D", - "cities": ["Philadelphia", "San Antonio", "Bakersfield"], + "cities": ["Mexico City"], "_id": { - "$oid": "66723d958f368f285d304195" + "$oid": "6674c30595590f9fd945945c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22499,15 +22499,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "Health", - "cities": ["Laredo"], + "cities": ["Chesapeake", "Phoenix", "Irvine"], "_id": { - "$oid": "66723d958f368f285d304196" + "$oid": "6674c30595590f9fd945945d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.067Z" }, "__v": 0 }, @@ -22520,15 +22520,15 @@ "cohort": "48", "jobTitle": "Fullstack Software Engineer", "industry": "Healthcare", - "cities": ["Orlando", "Tokyo"], + "cities": ["Mesa", "New York"], "_id": { - "$oid": "66723d958f368f285d304197" + "$oid": "6674c30595590f9fd945945e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -22541,15 +22541,15 @@ "cohort": "30", "jobTitle": "Senior Software Engineer", "industry": "Health", - "cities": ["San Antonio", "Buffalo"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304198" + "$oid": "6674c30595590f9fd945945f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -22562,15 +22562,15 @@ "cohort": "41", "jobTitle": "Software Engineer", "industry": "E-Commerce / Fashion", - "cities": ["Fort Wayne"], + "cities": ["Reno", "Mumbai", "Norfolk"], "_id": { - "$oid": "66723d958f368f285d304199" + "$oid": "6674c30595590f9fd9459460" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -22583,15 +22583,15 @@ "cohort": "46", "jobTitle": "Engineer 2", "industry": "Fintech", - "cities": [], + "cities": ["Stockton"], "_id": { - "$oid": "66723d958f368f285d30419a" + "$oid": "6674c30595590f9fd9459461" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -22604,15 +22604,15 @@ "cohort": "31", "jobTitle": "Software Engineer I, Web", "industry": "Fashion", - "cities": ["Corpus Christi"], + "cities": ["Laredo"], "_id": { - "$oid": "66723d958f368f285d30419b" + "$oid": "6674c30595590f9fd9459462" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -22625,15 +22625,15 @@ "cohort": "13", "jobTitle": "Associate Developer", "industry": "Other", - "cities": [], + "cities": ["Mumbai"], "_id": { - "$oid": "66723d958f368f285d30419c" + "$oid": "6674c30595590f9fd9459463" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -22646,15 +22646,15 @@ "cohort": "19", "jobTitle": "Full Stack Engineer", "industry": "Fintech", - "cities": ["Lexington", "Honolulu", "Chula Vista"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30419d" + "$oid": "6674c30595590f9fd9459464" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -22667,15 +22667,15 @@ "cohort": "52", "jobTitle": "Head of Developer Marketing", "industry": "Cloud Services", - "cities": ["Stockton", "San Francisco", "Norfolk"], + "cities": ["Chandler", "San Antonio"], "_id": { - "$oid": "66723d958f368f285d30419e" + "$oid": "6674c30595590f9fd9459465" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -22688,15 +22688,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Aerospace", - "cities": ["Mexico City", "Riverside", "Chicago"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30419f" + "$oid": "6674c30595590f9fd9459466" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -22709,15 +22709,15 @@ "cohort": "10", "jobTitle": "Cognitive Software Engineer", "industry": "Aerospace", - "cities": [], + "cities": ["Glendale", "Riverside", "Madison"], "_id": { - "$oid": "66723d958f368f285d3041a0" + "$oid": "6674c30595590f9fd9459467" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -22730,15 +22730,15 @@ "cohort": "52", "jobTitle": "Full Stack Engineer", "industry": "Real Estate", - "cities": ["Scottsdale"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3041a1" + "$oid": "6674c30595590f9fd9459468" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -22751,15 +22751,15 @@ "cohort": "30", "jobTitle": "Software Engineer (P2 - Midlevel)", "industry": "Fintech", - "cities": [], + "cities": ["Scottsdale", "Jersey City"], "_id": { - "$oid": "66723d958f368f285d3041a2" + "$oid": "6674c30595590f9fd9459469" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -22772,15 +22772,15 @@ "cohort": "33", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Wichita", "Oakland"], + "cities": ["Houston", "Fort Wayne", "London"], "_id": { - "$oid": "66723d958f368f285d3041a3" + "$oid": "6674c30595590f9fd945946a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -22795,13 +22795,13 @@ "industry": "Fintech", "cities": [], "_id": { - "$oid": "66723d958f368f285d3041a4" + "$oid": "6674c30595590f9fd945946b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -22814,15 +22814,15 @@ "cohort": "4", "jobTitle": "Full Stack Software Engineer", "industry": "Fintech/Insurance", - "cities": ["Toledo", "Cleveland", "Berlin"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3041a5" + "$oid": "6674c30595590f9fd945946c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -22835,15 +22835,15 @@ "cohort": "22", "jobTitle": "Full Stack Software Engineer", "industry": "Fintech", - "cities": ["Lincoln", "Norfolk"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3041a6" + "$oid": "6674c30595590f9fd945946d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -22856,15 +22856,15 @@ "cohort": "11", "jobTitle": "Registered Nurse", "industry": "Healthtech/Healthcare", - "cities": ["Irvine"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3041a7" + "$oid": "6674c30595590f9fd945946e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -22879,13 +22879,13 @@ "industry": "", "cities": [], "_id": { - "$oid": "66723d958f368f285d3041a8" + "$oid": "6674c30595590f9fd945946f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -22898,15 +22898,15 @@ "cohort": "6", "jobTitle": "Advance Associate", "industry": "IT, SaaS", - "cities": ["Corpus Christi", "Atlanta"], + "cities": ["Jacksonville", "Anaheim", "Gilbert"], "_id": { - "$oid": "66723d958f368f285d3041a9" + "$oid": "6674c30595590f9fd9459470" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -22919,15 +22919,15 @@ "cohort": "41", "jobTitle": "L1 Engineer", "industry": "Heath care", - "cities": [], + "cities": ["Fresno"], "_id": { - "$oid": "66723d958f368f285d3041aa" + "$oid": "6674c30595590f9fd9459471" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -22940,15 +22940,15 @@ "cohort": "5", "jobTitle": "Junior Software Engineer", "industry": "", - "cities": ["Colorado Springs"], + "cities": ["Irving", "Oklahoma City"], "_id": { - "$oid": "66723d958f368f285d3041ab" + "$oid": "6674c30595590f9fd9459472" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -22961,15 +22961,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "Subscriptions", - "cities": [], + "cities": ["Newark", "Sรฃo Paulo", "Fresno"], "_id": { - "$oid": "66723d958f368f285d3041ac" + "$oid": "6674c30595590f9fd9459473" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -22982,15 +22982,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "News Media", - "cities": [], + "cities": ["Chandler", "Sydney", "Stockton"], "_id": { - "$oid": "66723d958f368f285d3041ad" + "$oid": "6674c30595590f9fd9459474" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23003,15 +23003,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Information Technology & Services", - "cities": ["Reno", "Mexico City"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3041ae" + "$oid": "6674c30595590f9fd9459475" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23024,15 +23024,15 @@ "cohort": "48", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": [], + "cities": ["Boston", "Chula Vista", "Cincinnati"], "_id": { - "$oid": "66723d958f368f285d3041af" + "$oid": "6674c30595590f9fd9459476" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23047,13 +23047,13 @@ "industry": "Healthtech/Healthcare", "cities": [], "_id": { - "$oid": "66723d958f368f285d3041b0" + "$oid": "6674c30595590f9fd9459477" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23066,15 +23066,15 @@ "cohort": "33", "jobTitle": "Software Engineer (eCommerce)", "industry": "E-commerce", - "cities": ["Tucson", "Los Angeles", "St. Louis"], + "cities": ["Cleveland", "Stockton", "Long Beach"], "_id": { - "$oid": "66723d958f368f285d3041b1" + "$oid": "6674c30595590f9fd9459478" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23089,13 +23089,13 @@ "industry": "Biotech", "cities": [], "_id": { - "$oid": "66723d958f368f285d3041b2" + "$oid": "6674c30595590f9fd9459479" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23110,13 +23110,13 @@ "industry": "E-commerce", "cities": [], "_id": { - "$oid": "66723d958f368f285d3041b3" + "$oid": "6674c30595590f9fd945947a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23129,15 +23129,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Blockchain", - "cities": ["Wichita"], + "cities": ["Tokyo"], "_id": { - "$oid": "66723d958f368f285d3041b4" + "$oid": "6674c30595590f9fd945947b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23150,15 +23150,15 @@ "cohort": "42", "jobTitle": "Software Engineer II", "industry": "Fintech", - "cities": ["Baltimore"], + "cities": ["Henderson", "Reno"], "_id": { - "$oid": "66723d958f368f285d3041b5" + "$oid": "6674c30595590f9fd945947c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23171,15 +23171,15 @@ "cohort": "5", "jobTitle": "Senior Software Engineer", "industry": "", - "cities": ["Henderson", "Wichita", "Buffalo"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3041b6" + "$oid": "6674c30595590f9fd945947d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23192,15 +23192,15 @@ "cohort": "54", "jobTitle": "Software Engineer", "industry": "Other", - "cities": [], + "cities": ["Winston-Salem"], "_id": { - "$oid": "66723d958f368f285d3041b7" + "$oid": "6674c30595590f9fd945947e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23213,15 +23213,15 @@ "cohort": "27", "jobTitle": "Software Engineer", "industry": "SaaS - Security", - "cities": [], + "cities": ["Beijing"], "_id": { - "$oid": "66723d958f368f285d3041b8" + "$oid": "6674c30595590f9fd945947f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23234,15 +23234,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": [], + "cities": ["Oklahoma City", "North Las Vegas"], "_id": { - "$oid": "66723d958f368f285d3041b9" + "$oid": "6674c30595590f9fd9459480" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23255,15 +23255,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Cleveland"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3041ba" + "$oid": "6674c30595590f9fd9459481" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23276,15 +23276,15 @@ "cohort": "1", "jobTitle": "Software Engineer, Front End", "industry": "Other", - "cities": ["Irvine", "Newark", "San Francisco"], + "cities": ["Gilbert"], "_id": { - "$oid": "66723d958f368f285d3041bb" + "$oid": "6674c30595590f9fd9459482" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23297,15 +23297,15 @@ "cohort": "31", "jobTitle": "Software Engineer", "industry": "Fundraising", - "cities": ["Washington"], + "cities": ["Honolulu"], "_id": { - "$oid": "66723d958f368f285d3041bc" + "$oid": "6674c30595590f9fd9459483" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23318,15 +23318,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "MarTech", - "cities": ["Bakersfield", "Chicago", "Tampa"], + "cities": ["Norfolk", "Nashville", "Santa Ana"], "_id": { - "$oid": "66723d958f368f285d3041bd" + "$oid": "6674c30595590f9fd9459484" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23339,15 +23339,15 @@ "cohort": "53", "jobTitle": "Implementation Support Engineer", "industry": "Artificial Intelligence", - "cities": ["Garland", "El Paso"], + "cities": ["Plano", "Long Beach", "Winston-Salem"], "_id": { - "$oid": "66723d958f368f285d3041be" + "$oid": "6674c30595590f9fd9459485" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23360,15 +23360,15 @@ "cohort": "43", "jobTitle": "Full Stack Developer", "industry": "ECommerce", - "cities": ["Arlington", "Henderson"], + "cities": ["North Las Vegas", "Tokyo"], "_id": { - "$oid": "66723d958f368f285d3041bf" + "$oid": "6674c30595590f9fd9459486" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23381,15 +23381,15 @@ "cohort": "24", "jobTitle": "Senior Blockchain Engineer", "industry": "Blockchain/Web3", - "cities": ["Nashville", "Plano"], + "cities": ["Sรฃo Paulo", "Fort Worth"], "_id": { - "$oid": "66723d958f368f285d3041c0" + "$oid": "6674c30595590f9fd9459487" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23402,15 +23402,15 @@ "cohort": "1", "jobTitle": "Senior Software Engineer", "industry": "Software / Tech", - "cities": ["Chicago", "Irvine", "Newark"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3041c1" + "$oid": "6674c30595590f9fd9459488" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23423,15 +23423,15 @@ "cohort": "51", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Los Angeles", "Kansas City"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3041c2" + "$oid": "6674c30595590f9fd9459489" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23444,15 +23444,15 @@ "cohort": "35", "jobTitle": "Software engineer", "industry": "Fintech", - "cities": ["Jersey City", "Charlotte"], + "cities": ["St. Petersburg"], "_id": { - "$oid": "66723d958f368f285d3041c3" + "$oid": "6674c30595590f9fd945948a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23465,15 +23465,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Biotech, Robotics", - "cities": [], + "cities": ["Reno", "St. Louis"], "_id": { - "$oid": "66723d958f368f285d3041c4" + "$oid": "6674c30595590f9fd945948b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23486,15 +23486,15 @@ "cohort": "3", "jobTitle": "Senior Software Engineer", "industry": "Biotech", - "cities": ["Toronto", "Beijing"], + "cities": ["Toledo", "Nashville", "San Francisco"], "_id": { - "$oid": "66723d958f368f285d3041c5" + "$oid": "6674c30595590f9fd945948c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23507,15 +23507,15 @@ "cohort": "39", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Sรฃo Paulo", "Greensboro", "Garland"], + "cities": ["Irvine", "Newark", "Philadelphia"], "_id": { - "$oid": "66723d958f368f285d3041c6" + "$oid": "6674c30595590f9fd945948d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23528,15 +23528,15 @@ "cohort": "33", "jobTitle": "Full stack dev", "industry": "Healthcare", - "cities": ["Garland"], + "cities": ["Oklahoma City", "Fresno"], "_id": { - "$oid": "66723d958f368f285d3041c7" + "$oid": "6674c30595590f9fd945948e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23549,15 +23549,15 @@ "cohort": "28", "jobTitle": "Software Engineer (E2)", "industry": "Health", - "cities": ["Seattle", "Colorado Springs", "Tulsa"], + "cities": ["Riverside", "Kansas City"], "_id": { - "$oid": "66723d958f368f285d3041c8" + "$oid": "6674c30595590f9fd945948f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23570,15 +23570,15 @@ "cohort": "28", "jobTitle": "Software Engineer (E2)", "industry": "Health", - "cities": ["Greensboro"], + "cities": ["Tulsa", "Virginia Beach", "Miami"], "_id": { - "$oid": "66723d958f368f285d3041c9" + "$oid": "6674c30595590f9fd9459490" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23591,15 +23591,15 @@ "cohort": "3", "jobTitle": "Software Engineer, Web & Mobile", "industry": "Insurance", - "cities": ["Atlanta", "Austin", "Winston-Salem"], + "cities": ["Cincinnati", "Anaheim"], "_id": { - "$oid": "66723d958f368f285d3041ca" + "$oid": "6674c30595590f9fd9459491" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23614,13 +23614,13 @@ "industry": "Hospitality", "cities": [], "_id": { - "$oid": "66723d958f368f285d3041cb" + "$oid": "6674c30595590f9fd9459492" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23633,15 +23633,15 @@ "cohort": "45", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Cleveland", "Gilbert"], + "cities": ["Fresno", "Irvine", "Sydney"], "_id": { - "$oid": "66723d958f368f285d3041cc" + "$oid": "6674c30595590f9fd9459493" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23654,15 +23654,15 @@ "cohort": "33", "jobTitle": "Full Stack Developer", "industry": "Other", - "cities": ["San Diego"], + "cities": ["Charlotte"], "_id": { - "$oid": "66723d958f368f285d3041cd" + "$oid": "6674c30595590f9fd9459494" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23675,15 +23675,15 @@ "cohort": "24", "jobTitle": "FullStack Software Engineer", "industry": "Analytics, Defense", - "cities": ["Newark", "Anaheim", "Glendale"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3041ce" + "$oid": "6674c30595590f9fd9459495" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23696,15 +23696,15 @@ "cohort": "21", "jobTitle": "Senior Full Stack Developer", "industry": "Fintech", - "cities": ["Kansas City"], + "cities": ["Miami", "Columbus"], "_id": { - "$oid": "66723d958f368f285d3041cf" + "$oid": "6674c30595590f9fd9459496" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23717,15 +23717,15 @@ "cohort": "18", "jobTitle": "Senior Fullstack Developer", "industry": "Fintech", - "cities": ["Fresno", "Glendale", "Miami"], + "cities": ["Stockton", "Reno", "Seattle"], "_id": { - "$oid": "66723d958f368f285d3041d0" + "$oid": "6674c30595590f9fd9459497" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23738,15 +23738,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Honolulu", "Albuquerque", "Garland"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3041d1" + "$oid": "6674c30595590f9fd9459498" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23759,15 +23759,15 @@ "cohort": "2", "jobTitle": "Senior Software Engineer", "industry": "Media", - "cities": [], + "cities": ["North Las Vegas"], "_id": { - "$oid": "66723d958f368f285d3041d2" + "$oid": "6674c30595590f9fd9459499" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23780,15 +23780,15 @@ "cohort": "18", "jobTitle": "Software Engineer", "industry": "Renewable Energy", - "cities": ["Toronto"], + "cities": ["Milwaukee", "Boston", "Saint Paul"], "_id": { - "$oid": "66723d958f368f285d3041d3" + "$oid": "6674c30595590f9fd945949a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23801,15 +23801,15 @@ "cohort": "31", "jobTitle": "Software developer", "industry": "Restaurant", - "cities": ["Denver", "Las Vegas"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3041d4" + "$oid": "6674c30595590f9fd945949b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23822,15 +23822,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Contract Manufacturing", - "cities": ["Long Beach"], + "cities": ["Orlando", "Paris", "Minneapolis"], "_id": { - "$oid": "66723d958f368f285d3041d5" + "$oid": "6674c30595590f9fd945949c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23843,15 +23843,15 @@ "cohort": "52", "jobTitle": "Software Engineer II", "industry": "Fintech", - "cities": ["St. Louis"], + "cities": ["Memphis"], "_id": { - "$oid": "66723d958f368f285d3041d6" + "$oid": "6674c30595590f9fd945949d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23864,15 +23864,15 @@ "cohort": "35", "jobTitle": "Senior SWE", "industry": "Entertainment", - "cities": ["Irving", "Garland", "Mesa"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3041d7" + "$oid": "6674c30595590f9fd945949e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23885,15 +23885,15 @@ "cohort": "35", "jobTitle": "Software Engineer, Frontend", "industry": "Entertainment", - "cities": ["Oakland", "Lexington"], + "cities": ["Durham", "Wichita"], "_id": { - "$oid": "66723d958f368f285d3041d8" + "$oid": "6674c30595590f9fd945949f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23906,15 +23906,15 @@ "cohort": "9", "jobTitle": "Senior Front End Engineer", "industry": "Sales", - "cities": ["Santa Ana", "Paris", "Austin"], + "cities": ["Anchorage"], "_id": { - "$oid": "66723d958f368f285d3041d9" + "$oid": "6674c30595590f9fd94594a0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.824Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23927,15 +23927,15 @@ "cohort": "33", "jobTitle": "Full Stack Developer", "industry": "Blockchain/Web3", - "cities": [], + "cities": ["Mumbai", "North Las Vegas"], "_id": { - "$oid": "66723d958f368f285d3041da" + "$oid": "6674c30595590f9fd94594a1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23948,15 +23948,15 @@ "cohort": "11", "jobTitle": "Junior Software Engineer", "industry": "Software / Tech", - "cities": [], + "cities": ["Los Angeles"], "_id": { - "$oid": "66723d958f368f285d3041db" + "$oid": "6674c30595590f9fd94594a2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23969,15 +23969,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Federal Defense", - "cities": ["Wichita", "Charlotte"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3041dc" + "$oid": "6674c30595590f9fd94594a3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -23990,15 +23990,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Parking", - "cities": ["St. Petersburg"], + "cities": ["Washington"], "_id": { - "$oid": "66723d958f368f285d3041dd" + "$oid": "6674c30595590f9fd94594a4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24011,15 +24011,15 @@ "cohort": "35", "jobTitle": "Software Engineer II", "industry": "Cloud services", - "cities": ["Norfolk", "Philadelphia", "Minneapolis"], + "cities": ["Memphis"], "_id": { - "$oid": "66723d958f368f285d3041de" + "$oid": "6674c30595590f9fd94594a5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24034,13 +24034,13 @@ "industry": "Fintech", "cities": [], "_id": { - "$oid": "66723d958f368f285d3041df" + "$oid": "6674c30595590f9fd94594a6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24055,13 +24055,13 @@ "industry": "electronic Payment/ financial services", "cities": [], "_id": { - "$oid": "66723d958f368f285d3041e0" + "$oid": "6674c30595590f9fd94594a7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24074,15 +24074,15 @@ "cohort": "32", "jobTitle": "Software Engineer 2", "industry": "Fintech", - "cities": ["Irvine"], + "cities": ["Sacramento"], "_id": { - "$oid": "66723d958f368f285d3041e1" + "$oid": "6674c30595590f9fd94594a8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24095,15 +24095,15 @@ "cohort": "3", "jobTitle": "Software Engineer I", "industry": "Fintech", - "cities": ["San Francisco"], + "cities": ["Laredo"], "_id": { - "$oid": "66723d958f368f285d3041e2" + "$oid": "6674c30595590f9fd94594a9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24116,15 +24116,15 @@ "cohort": "20", "jobTitle": "Full Stack Developer", "industry": "Fintech", - "cities": [], + "cities": ["Glendale", "Los Angeles"], "_id": { - "$oid": "66723d958f368f285d3041e3" + "$oid": "6674c30595590f9fd94594aa" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24137,15 +24137,15 @@ "cohort": "43", "jobTitle": "Software Engineer", "industry": "Logistics", - "cities": ["Paris"], + "cities": ["St. Louis", "New Orleans"], "_id": { - "$oid": "66723d958f368f285d3041e4" + "$oid": "6674c30595590f9fd94594ab" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24158,15 +24158,15 @@ "cohort": "25", "jobTitle": "Engineering Manager, Software Development 2", "industry": "Fintech", - "cities": ["Los Angeles", "Detroit", "Tulsa"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3041e5" + "$oid": "6674c30595590f9fd94594ac" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24179,15 +24179,15 @@ "cohort": "3", "jobTitle": "Software Engineer II", "industry": "Software / Tech", - "cities": [], + "cities": ["Chicago", "Tucson", "Colorado Springs"], "_id": { - "$oid": "66723d958f368f285d3041e6" + "$oid": "6674c30595590f9fd94594ad" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24200,15 +24200,15 @@ "cohort": "16", "jobTitle": "Fullstack Developer - Video Software Engineering", "industry": "Video Streaming", - "cities": ["Laredo"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3041e7" + "$oid": "6674c30595590f9fd94594ae" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24221,15 +24221,15 @@ "cohort": "17", "jobTitle": "Software Engineer", "industry": "Entertainment", - "cities": ["Detroit", "San Antonio"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3041e8" + "$oid": "6674c30595590f9fd94594af" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24242,15 +24242,15 @@ "cohort": "43", "jobTitle": "Software Engineer", "industry": "Tech/Health & Wellness", - "cities": [], + "cities": ["Toronto"], "_id": { - "$oid": "66723d958f368f285d3041e9" + "$oid": "6674c30595590f9fd94594b0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24263,15 +24263,15 @@ "cohort": "24", "jobTitle": "Front End Lead Engineer", "industry": "Sports?", - "cities": ["Tulsa", "Stockton"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3041ea" + "$oid": "6674c30595590f9fd94594b1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24284,15 +24284,15 @@ "cohort": "33", "jobTitle": "Full Stack (UI/UX) Senior Application Developer", "industry": "Loan/Mortgage", - "cities": ["Miami"], + "cities": ["Dallas"], "_id": { - "$oid": "66723d958f368f285d3041eb" + "$oid": "6674c30595590f9fd94594b2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24305,15 +24305,15 @@ "cohort": "25", "jobTitle": "Front End Engineer", "industry": "Medical", - "cities": [], + "cities": ["Sรฃo Paulo", "Irving"], "_id": { - "$oid": "66723d958f368f285d3041ec" + "$oid": "6674c30595590f9fd94594b3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24326,15 +24326,15 @@ "cohort": "3", "jobTitle": "Full Stack Engineer", "industry": "Healthtech/Healthcare", - "cities": ["Los Angeles", "Arlington"], + "cities": ["Arlington", "Beijing"], "_id": { - "$oid": "66723d958f368f285d3041ed" + "$oid": "6674c30595590f9fd94594b4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24347,15 +24347,15 @@ "cohort": "10", "jobTitle": "Cyber Software Engineer", "industry": "Public Safety", - "cities": [], + "cities": ["Jersey City"], "_id": { - "$oid": "66723d958f368f285d3041ee" + "$oid": "6674c30595590f9fd94594b5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24368,15 +24368,15 @@ "cohort": "35", "jobTitle": "Software Engineer", "industry": "Digital", - "cities": ["New York", "Cincinnati"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3041ef" + "$oid": "6674c30595590f9fd94594b6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24389,15 +24389,15 @@ "cohort": "19", "jobTitle": "Software Engineer I", "industry": "Video", - "cities": [], + "cities": ["Irvine", "Tokyo", "Sacramento"], "_id": { - "$oid": "66723d958f368f285d3041f0" + "$oid": "6674c30595590f9fd94594b7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24410,15 +24410,15 @@ "cohort": "10", "jobTitle": "Senior Software Engineer", "industry": "Energy/Cleantech/Greentech", - "cities": ["Lubbock", "Boston"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3041f1" + "$oid": "6674c30595590f9fd94594b8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24431,15 +24431,15 @@ "cohort": "5", "jobTitle": "Software Automation Engineer", "industry": "", - "cities": ["Anchorage"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3041f2" + "$oid": "6674c30595590f9fd94594b9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24452,15 +24452,15 @@ "cohort": "4", "jobTitle": "Software engineer", "industry": "Green tech", - "cities": ["Wichita"], + "cities": ["Toledo", "San Jose", "Gilbert"], "_id": { - "$oid": "66723d958f368f285d3041f3" + "$oid": "6674c30595590f9fd94594ba" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24473,15 +24473,15 @@ "cohort": "40", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Omaha"], + "cities": ["Honolulu", "Las Vegas"], "_id": { - "$oid": "66723d958f368f285d3041f4" + "$oid": "6674c30595590f9fd94594bb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24494,15 +24494,15 @@ "cohort": "7", "jobTitle": "IT Applications Engineer", "industry": "Other", - "cities": ["Winston-Salem", "St. Petersburg", "Reno"], + "cities": ["Paris", "Stockton", "Sacramento"], "_id": { - "$oid": "66723d958f368f285d3041f5" + "$oid": "6674c30595590f9fd94594bc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24515,15 +24515,15 @@ "cohort": "46", "jobTitle": "Software Engineer L4", "industry": "Social Media", - "cities": ["Tulsa"], + "cities": ["Denver", "Jersey City"], "_id": { - "$oid": "66723d958f368f285d3041f6" + "$oid": "6674c30595590f9fd94594bd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24536,15 +24536,15 @@ "cohort": "47", "jobTitle": "Web Developer", "industry": "Other", - "cities": [], + "cities": ["Washington"], "_id": { - "$oid": "66723d958f368f285d3041f7" + "$oid": "6674c30595590f9fd94594be" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24557,15 +24557,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Advertising", - "cities": ["Mumbai", "Tulsa", "North Las Vegas"], + "cities": ["New York"], "_id": { - "$oid": "66723d958f368f285d3041f8" + "$oid": "6674c30595590f9fd94594bf" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24578,15 +24578,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Anaheim", "San Antonio"], "_id": { - "$oid": "66723d958f368f285d3041f9" + "$oid": "6674c30595590f9fd94594c0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24599,15 +24599,15 @@ "cohort": "7", "jobTitle": "software development engineer - FMS", "industry": "Automotive", - "cities": ["Saint Paul", "Miami"], + "cities": ["Pittsburgh", "San Antonio", "Tokyo"], "_id": { - "$oid": "66723d958f368f285d3041fa" + "$oid": "6674c30595590f9fd94594c1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24620,15 +24620,15 @@ "cohort": "49", "jobTitle": "Software Engineer II", "industry": "Gaming", - "cities": ["Austin", "Mumbai", "El Paso"], + "cities": ["Omaha", "Baltimore"], "_id": { - "$oid": "66723d958f368f285d3041fb" + "$oid": "6674c30595590f9fd94594c2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24641,15 +24641,15 @@ "cohort": "54", "jobTitle": "Senior Software Engineer", "industry": "Gaming", - "cities": ["Chesapeake", "Toledo"], + "cities": ["Henderson", "St. Louis"], "_id": { - "$oid": "66723d958f368f285d3041fc" + "$oid": "6674c30595590f9fd94594c3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24662,15 +24662,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "E-Sports", - "cities": ["San Francisco", "Santa Ana", "Jacksonville"], + "cities": ["Colorado Springs", "Dallas", "Mumbai"], "_id": { - "$oid": "66723d958f368f285d3041fd" + "$oid": "6674c30595590f9fd94594c4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24683,15 +24683,15 @@ "cohort": "56", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Bakersfield", "Milwaukee", "Garland"], + "cities": ["Beijing", "Tulsa"], "_id": { - "$oid": "66723d958f368f285d3041fe" + "$oid": "6674c30595590f9fd94594c5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24704,15 +24704,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Education", - "cities": ["Laredo", "Philadelphia"], + "cities": ["Laredo"], "_id": { - "$oid": "66723d958f368f285d3041ff" + "$oid": "6674c30595590f9fd94594c6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24725,15 +24725,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "EdTech", - "cities": [], + "cities": ["Greensboro"], "_id": { - "$oid": "66723d958f368f285d304200" + "$oid": "6674c30595590f9fd94594c7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24746,15 +24746,15 @@ "cohort": "16", "jobTitle": "Backend Engineer", "industry": "Internet/AI/Energy", - "cities": ["Columbus", "San Antonio", "Sรฃo Paulo"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304201" + "$oid": "6674c30595590f9fd94594c8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24767,15 +24767,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "Podcast Analytics", - "cities": ["Jersey City"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304202" + "$oid": "6674c30595590f9fd94594c9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24788,15 +24788,15 @@ "cohort": "29", "jobTitle": "Front-end Engineering Consultant", "industry": "Sports Betting", - "cities": ["Toronto", "Lubbock"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304203" + "$oid": "6674c30595590f9fd94594ca" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24809,15 +24809,15 @@ "cohort": "31", "jobTitle": "Frontend Engineer", "industry": "Entertainment", - "cities": ["Beijing"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304204" + "$oid": "6674c30595590f9fd94594cb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24830,15 +24830,15 @@ "cohort": "24", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Stockton"], + "cities": ["Columbus"], "_id": { - "$oid": "66723d958f368f285d304205" + "$oid": "6674c30595590f9fd94594cc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24851,15 +24851,15 @@ "cohort": "23", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Irvine", "North Las Vegas"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304206" + "$oid": "6674c30595590f9fd94594cd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24874,13 +24874,13 @@ "industry": "IT Services", "cities": [], "_id": { - "$oid": "66723d958f368f285d304207" + "$oid": "6674c30595590f9fd94594ce" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24893,15 +24893,15 @@ "cohort": "8", "jobTitle": "Senior Software Engineer, Web", "industry": "Blockchain/Web3", - "cities": ["El Paso", "Paris"], + "cities": ["Colorado Springs"], "_id": { - "$oid": "66723d958f368f285d304208" + "$oid": "6674c30595590f9fd94594cf" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24914,15 +24914,15 @@ "cohort": "42", "jobTitle": "Software Engineer", "industry": "Data Analytics", - "cities": ["Memphis", "Beijing", "Fort Wayne"], + "cities": ["San Diego"], "_id": { - "$oid": "66723d958f368f285d304209" + "$oid": "6674c30595590f9fd94594d0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24935,15 +24935,15 @@ "cohort": "33", "jobTitle": "Software Engineer", "industry": "Data Analysis", - "cities": ["Gilbert"], + "cities": ["North Las Vegas", "Chicago"], "_id": { - "$oid": "66723d958f368f285d30420a" + "$oid": "6674c30595590f9fd94594d1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24956,15 +24956,15 @@ "cohort": "33", "jobTitle": "Front End Software Engineer", "industry": "Security", - "cities": ["Corpus Christi", "Santa Ana"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30420b" + "$oid": "6674c30595590f9fd94594d2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24977,15 +24977,15 @@ "cohort": "6", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": [], + "cities": ["New York", "Honolulu", "Tulsa"], "_id": { - "$oid": "66723d958f368f285d30420c" + "$oid": "6674c30595590f9fd94594d3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -24998,15 +24998,15 @@ "cohort": "32", "jobTitle": "Full stack engineer", "industry": "Technology", - "cities": ["Chesapeake"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30420d" + "$oid": "6674c30595590f9fd94594d4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -25019,15 +25019,15 @@ "cohort": "45", "jobTitle": "Jr. Software Engineer", "industry": "Marketing", - "cities": ["Laredo", "Seattle", "Las Vegas"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30420e" + "$oid": "6674c30595590f9fd94594d5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -25042,13 +25042,13 @@ "industry": "Building Management", "cities": [], "_id": { - "$oid": "66723d958f368f285d30420f" + "$oid": "6674c30595590f9fd94594d6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -25061,15 +25061,15 @@ "cohort": "23", "jobTitle": "Software Engineer - Frontend", "industry": "Travel", - "cities": [], + "cities": ["Tucson", "Detroit"], "_id": { - "$oid": "66723d958f368f285d304210" + "$oid": "6674c30595590f9fd94594d7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -25082,15 +25082,15 @@ "cohort": "50", "jobTitle": "Shopify Developer", "industry": "Restaurant, Food, and Beverage", - "cities": [], + "cities": ["North Las Vegas", "Saint Paul", "Irvine"], "_id": { - "$oid": "66723d958f368f285d304211" + "$oid": "6674c30595590f9fd94594d8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -25103,15 +25103,15 @@ "cohort": "37", "jobTitle": "Senior Software Engineer", "industry": "Healthcare", - "cities": [], + "cities": ["Riverside", "Nashville", "Kansas City"], "_id": { - "$oid": "66723d958f368f285d304212" + "$oid": "6674c30595590f9fd94594d9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.068Z" }, "__v": 0 }, @@ -25124,15 +25124,15 @@ "cohort": "2", "jobTitle": "Software Engineer II", "industry": "Insurance", - "cities": ["Chandler"], + "cities": ["Irving"], "_id": { - "$oid": "66723d958f368f285d304213" + "$oid": "6674c30595590f9fd94594da" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25145,15 +25145,15 @@ "cohort": "15", "jobTitle": "Software Engineer", "industry": "Business Tech/Enterprise Tech", - "cities": ["Irvine"], + "cities": ["Tucson"], "_id": { - "$oid": "66723d958f368f285d304214" + "$oid": "6674c30595590f9fd94594db" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25166,15 +25166,15 @@ "cohort": "53", "jobTitle": "Frontend Engineer", "industry": "Healthcare", - "cities": ["Jacksonville", "Sydney"], + "cities": ["London"], "_id": { - "$oid": "66723d958f368f285d304215" + "$oid": "6674c30595590f9fd94594dc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25187,15 +25187,15 @@ "cohort": "28", "jobTitle": "Senior Software Engineer", "industry": "", - "cities": ["Saint Paul", "Beijing", "Reno"], + "cities": ["Minneapolis", "Irving"], "_id": { - "$oid": "66723d958f368f285d304216" + "$oid": "6674c30595590f9fd94594dd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25210,13 +25210,13 @@ "industry": "", "cities": [], "_id": { - "$oid": "66723d958f368f285d304217" + "$oid": "6674c30595590f9fd94594de" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25231,13 +25231,13 @@ "industry": "Insurance", "cities": [], "_id": { - "$oid": "66723d958f368f285d304218" + "$oid": "6674c30595590f9fd94594df" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25250,15 +25250,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Chandler"], + "cities": ["Lincoln"], "_id": { - "$oid": "66723d958f368f285d304219" + "$oid": "6674c30595590f9fd94594e0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25271,15 +25271,15 @@ "cohort": "1", "jobTitle": "Full Stack Developer", "industry": "Fintech/Insurance software", - "cities": [], + "cities": ["Henderson", "Beijing", "Aurora"], "_id": { - "$oid": "66723d958f368f285d30421a" + "$oid": "6674c30595590f9fd94594e1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25292,15 +25292,15 @@ "cohort": "40", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Tokyo", "Columbus"], + "cities": ["Bakersfield", "Mesa", "Mexico City"], "_id": { - "$oid": "66723d958f368f285d30421b" + "$oid": "6674c30595590f9fd94594e2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25313,15 +25313,15 @@ "cohort": "6", "jobTitle": "Senior Associate - Node Engineer", "industry": "", - "cities": ["Dallas"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30421c" + "$oid": "6674c30595590f9fd94594e3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25334,15 +25334,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Cryptography", - "cities": ["Tokyo", "Irving"], + "cities": ["Saint Paul"], "_id": { - "$oid": "66723d958f368f285d30421d" + "$oid": "6674c30595590f9fd94594e4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25355,15 +25355,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Entertainment", - "cities": ["London", "Irvine"], + "cities": ["Irvine"], "_id": { - "$oid": "66723d958f368f285d30421e" + "$oid": "6674c30595590f9fd94594e5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25376,15 +25376,15 @@ "cohort": "3", "jobTitle": "Sr. Full Stack Software Engineer", "industry": "", - "cities": ["San Jose", "Anchorage"], + "cities": ["Miami", "Philadelphia"], "_id": { - "$oid": "66723d958f368f285d30421f" + "$oid": "6674c30595590f9fd94594e6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25397,15 +25397,15 @@ "cohort": "1", "jobTitle": "Software Developer", "industry": "Conversational AI", - "cities": ["Colorado Springs", "Anaheim", "Newark"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304220" + "$oid": "6674c30595590f9fd94594e7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25418,15 +25418,15 @@ "cohort": "5", "jobTitle": "Customer Success Engineer", "industry": "Technology", - "cities": ["Indianapolis", "Toledo"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304221" + "$oid": "6674c30595590f9fd94594e8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25441,13 +25441,13 @@ "industry": "Fintech", "cities": [], "_id": { - "$oid": "66723d958f368f285d304222" + "$oid": "6674c30595590f9fd94594e9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25460,15 +25460,15 @@ "cohort": "2", "jobTitle": "Lead Frontend Engineer (Web3)", "industry": "Blockchain baby", - "cities": ["Detroit", "Oklahoma City", "Washington"], + "cities": ["Los Angeles", "Oakland", "Aurora"], "_id": { - "$oid": "66723d958f368f285d304223" + "$oid": "6674c30595590f9fd94594ea" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25481,15 +25481,15 @@ "cohort": "38", "jobTitle": "Software Engineer II", "industry": "Health/Insurance", - "cities": ["Berlin"], + "cities": ["Plano"], "_id": { - "$oid": "66723d958f368f285d304224" + "$oid": "6674c30595590f9fd94594eb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25502,15 +25502,15 @@ "cohort": "54", "jobTitle": "Software Engineer II", "industry": "Aerospace", - "cities": ["Sรฃo Paulo", "Santa Ana"], + "cities": ["Tucson"], "_id": { - "$oid": "66723d958f368f285d304225" + "$oid": "6674c30595590f9fd94594ec" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25523,15 +25523,15 @@ "cohort": "11", "jobTitle": "React Developer", "industry": "Healthcare", - "cities": ["San Jose", "Pittsburgh"], + "cities": ["Long Beach"], "_id": { - "$oid": "66723d958f368f285d304226" + "$oid": "6674c30595590f9fd94594ed" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25544,15 +25544,15 @@ "cohort": "12", "jobTitle": "CEO", "industry": "Rental Inspection", - "cities": ["Cincinnati", "London"], + "cities": ["Kansas City", "Albuquerque"], "_id": { - "$oid": "66723d958f368f285d304227" + "$oid": "6674c30595590f9fd94594ee" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25565,15 +25565,15 @@ "cohort": "3", "jobTitle": "Frontend Engineer", "industry": "Retail", - "cities": ["Santa Ana", "Chandler"], + "cities": ["Denver", "Chandler", "Milwaukee"], "_id": { - "$oid": "66723d958f368f285d304228" + "$oid": "6674c30595590f9fd94594ef" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25586,15 +25586,15 @@ "cohort": "3", "jobTitle": "Lead Frontend Engineer", "industry": "Business Tech/Enterprise Tech", - "cities": ["Albuquerque", "Orlando", "Las Vegas"], + "cities": ["Washington", "Denver"], "_id": { - "$oid": "66723d958f368f285d304229" + "$oid": "6674c30595590f9fd94594f0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25607,15 +25607,15 @@ "cohort": "43", "jobTitle": "Software Automation Engineer", "industry": "Restaurant, Food, and Beverage", - "cities": ["San Diego"], + "cities": ["Bakersfield", "St. Petersburg", "Riverside"], "_id": { - "$oid": "66723d958f368f285d30422a" + "$oid": "6674c30595590f9fd94594f1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25628,15 +25628,15 @@ "cohort": "34", "jobTitle": "Junior Front End Engineer", "industry": "Internet Media", - "cities": ["Chula Vista", "Philadelphia"], + "cities": ["El Paso", "Oakland"], "_id": { - "$oid": "66723d958f368f285d30422b" + "$oid": "6674c30595590f9fd94594f2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25649,15 +25649,15 @@ "cohort": "4", "jobTitle": "Full Stack Engineer", "industry": "Healthcare", - "cities": ["Garland", "Tokyo"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30422c" + "$oid": "6674c30595590f9fd94594f3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25670,15 +25670,15 @@ "cohort": "38", "jobTitle": "Software Dev Instructor", "industry": "Edtech", - "cities": ["Minneapolis", "Anchorage"], + "cities": ["Berlin", "Toronto", "Tokyo"], "_id": { - "$oid": "66723d958f368f285d30422d" + "$oid": "6674c30595590f9fd94594f4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25691,15 +25691,15 @@ "cohort": "18", "jobTitle": "Front end engineer", "industry": "Real Estate", - "cities": ["Laredo"], + "cities": ["Buffalo", "Tulsa"], "_id": { - "$oid": "66723d958f368f285d30422e" + "$oid": "6674c30595590f9fd94594f5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25712,15 +25712,15 @@ "cohort": "33", "jobTitle": "Software Engineer II - Web/Mobile", "industry": "PropTech", - "cities": ["Gilbert", "Henderson", "Milwaukee"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30422f" + "$oid": "6674c30595590f9fd94594f6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25733,15 +25733,15 @@ "cohort": "50", "jobTitle": "Software Engineer I", "industry": "Research", - "cities": ["Virginia Beach"], + "cities": ["Greensboro", "Norfolk"], "_id": { - "$oid": "66723d958f368f285d304230" + "$oid": "6674c30595590f9fd94594f7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25754,15 +25754,15 @@ "cohort": "25", "jobTitle": "Senior Front End Engineer", "industry": "Fashion", - "cities": [], + "cities": ["Portland", "Saint Paul"], "_id": { - "$oid": "66723d958f368f285d304231" + "$oid": "6674c30595590f9fd94594f8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25775,15 +25775,15 @@ "cohort": "6", "jobTitle": "Full Stack Software Engineer", "industry": "Other", - "cities": ["San Antonio", "Sรฃo Paulo", "Norfolk"], + "cities": ["Austin", "San Diego", "North Las Vegas"], "_id": { - "$oid": "66723d958f368f285d304232" + "$oid": "6674c30595590f9fd94594f9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25796,15 +25796,15 @@ "cohort": "23", "jobTitle": "Senior Front End Developer", "industry": "", - "cities": [], + "cities": ["Toledo", "San Jose"], "_id": { - "$oid": "66723d958f368f285d304233" + "$oid": "6674c30595590f9fd94594fa" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25817,15 +25817,15 @@ "cohort": "24", "jobTitle": "Software Engineer", "industry": "Cloud computing", - "cities": [], + "cities": ["Albuquerque", "Reno"], "_id": { - "$oid": "66723d958f368f285d304234" + "$oid": "6674c30595590f9fd94594fb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25838,15 +25838,15 @@ "cohort": "51", "jobTitle": "Software Engineer Apprentice", "industry": "Other", - "cities": ["Jersey City", "Newark"], + "cities": ["Durham", "Seattle"], "_id": { - "$oid": "66723d958f368f285d304235" + "$oid": "6674c30595590f9fd94594fc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25859,15 +25859,15 @@ "cohort": "53", "jobTitle": "Fullstack App SWE", "industry": "Healthcare", - "cities": ["Chandler"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304236" + "$oid": "6674c30595590f9fd94594fd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25880,15 +25880,15 @@ "cohort": "27", "jobTitle": "Full Stack Software Engineer", "industry": "Food", - "cities": ["Scottsdale"], + "cities": ["Raleigh"], "_id": { - "$oid": "66723d958f368f285d304237" + "$oid": "6674c30595590f9fd94594fe" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25901,15 +25901,15 @@ "cohort": "7", "jobTitle": "Senior Front-End Engineer", "industry": "Restaurant, Food, Beverage", - "cities": ["Cincinnati"], + "cities": ["Indianapolis"], "_id": { - "$oid": "66723d958f368f285d304238" + "$oid": "6674c30595590f9fd94594ff" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25922,15 +25922,15 @@ "cohort": "21", "jobTitle": "Frontend Developer", "industry": "Logistics & Supply Chain", - "cities": ["Houston"], + "cities": ["Buffalo"], "_id": { - "$oid": "66723d958f368f285d304239" + "$oid": "6674c30595590f9fd9459500" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25945,13 +25945,13 @@ "industry": "Renewables & Environment", "cities": [], "_id": { - "$oid": "66723d958f368f285d30423a" + "$oid": "6674c30595590f9fd9459501" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25964,15 +25964,15 @@ "cohort": "20", "jobTitle": "software engineer", "industry": "ecommerce", - "cities": ["Columbus"], + "cities": ["Austin"], "_id": { - "$oid": "66723d958f368f285d30423b" + "$oid": "6674c30595590f9fd9459502" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -25985,15 +25985,15 @@ "cohort": "42", "jobTitle": "Software Engineer", "industry": "Education", - "cities": ["Baltimore"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30423c" + "$oid": "6674c30595590f9fd9459503" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26006,15 +26006,15 @@ "cohort": "6", "jobTitle": "JavaScript Applications Developer", "industry": "Software / Tech", - "cities": ["Norfolk", "Charlotte"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30423d" + "$oid": "6674c30595590f9fd9459504" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26027,15 +26027,15 @@ "cohort": "7", "jobTitle": "Front End Software Engineer", "industry": "Research", - "cities": [], + "cities": ["Sacramento"], "_id": { - "$oid": "66723d958f368f285d30423e" + "$oid": "6674c30595590f9fd9459505" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26048,15 +26048,15 @@ "cohort": "45", "jobTitle": "Software engineer", "industry": "Healthcare navigation", - "cities": ["St. Louis"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30423f" + "$oid": "6674c30595590f9fd9459506" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26071,13 +26071,13 @@ "industry": "", "cities": [], "_id": { - "$oid": "66723d958f368f285d304240" + "$oid": "6674c30595590f9fd9459507" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26090,15 +26090,15 @@ "cohort": "51", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Milwaukee", "New Orleans", "Plano"], + "cities": ["Riverside", "Scottsdale"], "_id": { - "$oid": "66723d958f368f285d304241" + "$oid": "6674c30595590f9fd9459508" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26113,13 +26113,13 @@ "industry": "Electric Vehicle", "cities": [], "_id": { - "$oid": "66723d958f368f285d304242" + "$oid": "6674c30595590f9fd9459509" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26132,15 +26132,15 @@ "cohort": "24", "jobTitle": "Full Stack Software Engineer II", "industry": "Automotive", - "cities": ["El Paso", "Minneapolis"], + "cities": ["Sรฃo Paulo", "Portland", "Riverside"], "_id": { - "$oid": "66723d958f368f285d304243" + "$oid": "6674c30595590f9fd945950a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26153,15 +26153,15 @@ "cohort": "24", "jobTitle": "Software Engineer II", "industry": "Automotive", - "cities": [], + "cities": ["Portland"], "_id": { - "$oid": "66723d958f368f285d304244" + "$oid": "6674c30595590f9fd945950b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26174,15 +26174,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Automotive", - "cities": ["Detroit"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304245" + "$oid": "6674c30595590f9fd945950c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26195,15 +26195,15 @@ "cohort": "18", "jobTitle": "Senior Javascript Software Engineer", "industry": "Fintech", - "cities": ["San Francisco", "Cleveland", "Corpus Christi"], + "cities": ["Corpus Christi", "Oklahoma City", "Fort Wayne"], "_id": { - "$oid": "66723d958f368f285d304246" + "$oid": "6674c30595590f9fd945950d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26216,15 +26216,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "Jewelry Ecommerce", - "cities": [], + "cities": ["Fresno", "Bakersfield"], "_id": { - "$oid": "66723d958f368f285d304247" + "$oid": "6674c30595590f9fd945950e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26237,15 +26237,15 @@ "cohort": "11", "jobTitle": "Software Release Manager", "industry": "Software / Tech", - "cities": [], + "cities": ["Baltimore", "Berlin"], "_id": { - "$oid": "66723d958f368f285d304248" + "$oid": "6674c30595590f9fd945950f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26258,15 +26258,15 @@ "cohort": "7", "jobTitle": "Full Stack Engineer", "industry": "Artificial Intelligence", - "cities": [], + "cities": ["Long Beach", "Pittsburgh"], "_id": { - "$oid": "66723d958f368f285d304249" + "$oid": "6674c30595590f9fd9459510" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26279,15 +26279,15 @@ "cohort": "7", "jobTitle": "Full Stack Engineer", "industry": "Artificial Intelligence", - "cities": [], + "cities": ["Tampa"], "_id": { - "$oid": "66723d958f368f285d30424a" + "$oid": "6674c30595590f9fd9459511" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26300,15 +26300,15 @@ "cohort": "1", "jobTitle": "Technology Analyst", "industry": "Biotech", - "cities": ["New York", "Mesa", "Philadelphia"], + "cities": ["Buffalo", "Durham"], "_id": { - "$oid": "66723d958f368f285d30424b" + "$oid": "6674c30595590f9fd9459512" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26321,15 +26321,15 @@ "cohort": "29", "jobTitle": "Frontend Software Engineer", "industry": "Digital Advertising/E-commerce", - "cities": ["Philadelphia", "Riverside"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30424c" + "$oid": "6674c30595590f9fd9459513" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26342,15 +26342,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["Honolulu", "Cincinnati", "Memphis"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30424d" + "$oid": "6674c30595590f9fd9459514" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26365,13 +26365,13 @@ "industry": "Entertainment", "cities": [], "_id": { - "$oid": "66723d958f368f285d30424e" + "$oid": "6674c30595590f9fd9459515" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26384,15 +26384,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Search and ads", - "cities": ["Laredo", "Virginia Beach"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30424f" + "$oid": "6674c30595590f9fd9459516" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26405,15 +26405,15 @@ "cohort": "28", "jobTitle": "Jr. Frontend Engineer", "industry": "Digital Agency/Client Services", - "cities": [], + "cities": ["Tampa", "Kansas City"], "_id": { - "$oid": "66723d958f368f285d304250" + "$oid": "6674c30595590f9fd9459517" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26426,15 +26426,15 @@ "cohort": "3", "jobTitle": "Junior Software Engineer", "industry": "", - "cities": ["Anchorage"], + "cities": ["Raleigh", "Gilbert", "Newark"], "_id": { - "$oid": "66723d958f368f285d304251" + "$oid": "6674c30595590f9fd9459518" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26447,15 +26447,15 @@ "cohort": "31", "jobTitle": "Sr. Software Engineer", "industry": "Commerce", - "cities": ["Madison", "Phoenix", "Louisville"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304252" + "$oid": "6674c30595590f9fd9459519" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26468,15 +26468,15 @@ "cohort": "29", "jobTitle": "Sr. Front-End Engineer", "industry": "E-Commerce", - "cities": ["Fort Wayne"], + "cities": ["Houston"], "_id": { - "$oid": "66723d958f368f285d304253" + "$oid": "6674c30595590f9fd945951a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26489,15 +26489,15 @@ "cohort": "28", "jobTitle": "Front End Engineer", "industry": "E-Commerce", - "cities": ["Lexington", "Reno", "Baltimore"], + "cities": ["Columbus", "Milwaukee"], "_id": { - "$oid": "66723d958f368f285d304254" + "$oid": "6674c30595590f9fd945951b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.825Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26510,15 +26510,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "Automative", - "cities": [], + "cities": ["New Orleans", "Henderson"], "_id": { - "$oid": "66723d958f368f285d304255" + "$oid": "6674c30595590f9fd945951c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26531,15 +26531,15 @@ "cohort": "54", "jobTitle": "Front End Software Engineer", "industry": "Marketing", - "cities": ["Chicago", "Baltimore"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304256" + "$oid": "6674c30595590f9fd945951d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26552,15 +26552,15 @@ "cohort": "2", "jobTitle": "Full-stack Analytics Engineer", "industry": "Big Data, Analytics", - "cities": [], + "cities": ["Orlando", "Atlanta"], "_id": { - "$oid": "66723d958f368f285d304257" + "$oid": "6674c30595590f9fd945951e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26573,15 +26573,15 @@ "cohort": "22", "jobTitle": "Full Stack Engineer", "industry": "B2B", - "cities": ["Stockton"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304258" + "$oid": "6674c30595590f9fd945951f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26594,15 +26594,15 @@ "cohort": "22", "jobTitle": "Senior Web and Mobile Developer", "industry": "Software / Tech", - "cities": [], + "cities": ["Mesa", "Arlington", "Laredo"], "_id": { - "$oid": "66723d958f368f285d304259" + "$oid": "6674c30595590f9fd9459520" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26615,15 +26615,15 @@ "cohort": "35", "jobTitle": "Front End Developer", "industry": "Enterprise Software", - "cities": ["Detroit", "San Jose"], + "cities": ["Stockton", "Durham"], "_id": { - "$oid": "66723d958f368f285d30425a" + "$oid": "6674c30595590f9fd9459521" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26636,15 +26636,15 @@ "cohort": "46", "jobTitle": "Frontend Software Engineer", "industry": "Business Software", - "cities": ["Gilbert"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30425b" + "$oid": "6674c30595590f9fd9459522" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26657,15 +26657,15 @@ "cohort": "2", "jobTitle": "Senior Full Stack Developer", "industry": "Data Intelligence", - "cities": [], + "cities": ["Oklahoma City"], "_id": { - "$oid": "66723d958f368f285d30425c" + "$oid": "6674c30595590f9fd9459523" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26678,15 +26678,15 @@ "cohort": "22", "jobTitle": "Senior Full Stack Engineer", "industry": "Financial Data", - "cities": ["Pittsburgh", "Charlotte"], + "cities": ["Milwaukee"], "_id": { - "$oid": "66723d958f368f285d30425d" + "$oid": "6674c30595590f9fd9459524" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26699,15 +26699,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Cloud Technology", - "cities": ["Winston-Salem", "Toronto", "Sรฃo Paulo"], + "cities": ["Garland"], "_id": { - "$oid": "66723d958f368f285d30425e" + "$oid": "6674c30595590f9fd9459525" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26720,15 +26720,15 @@ "cohort": "16", "jobTitle": "Software Development Engineer", "industry": "Business Tech/Enterprise Tech", - "cities": ["Saint Paul"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30425f" + "$oid": "6674c30595590f9fd9459526" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26743,13 +26743,13 @@ "industry": "Biotech", "cities": [], "_id": { - "$oid": "66723d958f368f285d304260" + "$oid": "6674c30595590f9fd9459527" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26762,15 +26762,15 @@ "cohort": "26", "jobTitle": "Sr. Frontend Engineer", "industry": "Research", - "cities": ["Newark", "Minneapolis", "Denver"], + "cities": ["El Paso", "Mesa", "San Jose"], "_id": { - "$oid": "66723d958f368f285d304261" + "$oid": "6674c30595590f9fd9459528" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26783,15 +26783,15 @@ "cohort": "20", "jobTitle": "Engineer", "industry": "AIOps, IT monitoring and automation", - "cities": ["Kansas City", "London", "Austin"], + "cities": ["Glendale", "Mesa", "Honolulu"], "_id": { - "$oid": "66723d958f368f285d304262" + "$oid": "6674c30595590f9fd9459529" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26804,15 +26804,15 @@ "cohort": "53", "jobTitle": "Senior Software Engineer", "industry": "Other", - "cities": ["Lubbock"], + "cities": ["Tokyo", "Anchorage", "Laredo"], "_id": { - "$oid": "66723d958f368f285d304263" + "$oid": "6674c30595590f9fd945952a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26825,15 +26825,15 @@ "cohort": "30", "jobTitle": "Front End Engineer (Mid Level)", "industry": "Translation", - "cities": [], + "cities": ["Chicago", "Bakersfield"], "_id": { - "$oid": "66723d958f368f285d304264" + "$oid": "6674c30595590f9fd945952b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26846,15 +26846,15 @@ "cohort": "5", "jobTitle": "Senior Fullstack Engineer", "industry": "Software / Tech", - "cities": ["Washington"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304265" + "$oid": "6674c30595590f9fd945952c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26867,15 +26867,15 @@ "cohort": "5", "jobTitle": "Software Engineer", "industry": "Consulting", - "cities": ["Corpus Christi", "Phoenix", "Philadelphia"], + "cities": ["Saint Paul", "Baltimore"], "_id": { - "$oid": "66723d958f368f285d304266" + "$oid": "6674c30595590f9fd945952d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26888,15 +26888,15 @@ "cohort": "15", "jobTitle": "Software Developer", "industry": "Hospitals", - "cities": ["New Orleans", "Lubbock"], + "cities": ["Memphis"], "_id": { - "$oid": "66723d958f368f285d304267" + "$oid": "6674c30595590f9fd945952e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26909,15 +26909,15 @@ "cohort": "39", "jobTitle": "Fullstack Software Engineer I", "industry": "Fitness/Wellness", - "cities": ["Anchorage", "Newark", "Lexington"], + "cities": ["San Diego"], "_id": { - "$oid": "66723d958f368f285d304268" + "$oid": "6674c30595590f9fd945952f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26930,15 +26930,15 @@ "cohort": "26", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Madison", "Plano"], + "cities": ["Mumbai", "Colorado Springs", "Denver"], "_id": { - "$oid": "66723d958f368f285d304269" + "$oid": "6674c30595590f9fd9459530" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26951,15 +26951,15 @@ "cohort": "3", "jobTitle": "Senior Software Engineer", "industry": "Finance", - "cities": ["Dallas", "Indianapolis", "Mexico City"], + "cities": ["El Paso"], "_id": { - "$oid": "66723d958f368f285d30426a" + "$oid": "6674c30595590f9fd9459531" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26972,15 +26972,15 @@ "cohort": "51", "jobTitle": "Software Engineer - Front End", "industry": "Energy/Cleantech/Greentech", - "cities": ["Anaheim", "Paris", "Aurora"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30426b" + "$oid": "6674c30595590f9fd9459532" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -26993,15 +26993,15 @@ "cohort": "15", "jobTitle": "Front end engineer", "industry": "Not sure: itโ€™s a subscription service for designing hallmark style cards", - "cities": ["Orlando", "Toronto"], + "cities": ["Beijing", "Fort Wayne", "Plano"], "_id": { - "$oid": "66723d958f368f285d30426c" + "$oid": "6674c30595590f9fd9459533" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27014,15 +27014,15 @@ "cohort": "25", "jobTitle": "Senior Mobile Developer", "industry": "Consulting", - "cities": ["Fort Worth", "Laredo", "North Las Vegas"], + "cities": ["Riverside", "Virginia Beach"], "_id": { - "$oid": "66723d958f368f285d30426d" + "$oid": "6674c30595590f9fd9459534" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27035,15 +27035,15 @@ "cohort": "37", "jobTitle": "Senior Frontend Engineer", "industry": "Wellness", - "cities": [], + "cities": ["Atlanta", "Santa Ana"], "_id": { - "$oid": "66723d958f368f285d30426e" + "$oid": "6674c30595590f9fd9459535" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27056,15 +27056,15 @@ "cohort": "37", "jobTitle": "Software Engineer", "industry": "Augmented Reality, Entertainment", - "cities": [], + "cities": ["Los Angeles", "Omaha"], "_id": { - "$oid": "66723d958f368f285d30426f" + "$oid": "6674c30595590f9fd9459536" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27079,13 +27079,13 @@ "industry": "Contractor Software", "cities": [], "_id": { - "$oid": "66723d958f368f285d304270" + "$oid": "6674c30595590f9fd9459537" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27100,13 +27100,13 @@ "industry": "Marketing/Advertising", "cities": [], "_id": { - "$oid": "66723d958f368f285d304271" + "$oid": "6674c30595590f9fd9459538" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27119,15 +27119,15 @@ "cohort": "15", "jobTitle": "Full Stack Developer", "industry": "Government", - "cities": ["Chicago", "Omaha", "Anaheim"], + "cities": ["Winston-Salem"], "_id": { - "$oid": "66723d958f368f285d304272" + "$oid": "6674c30595590f9fd9459539" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27140,15 +27140,15 @@ "cohort": "4", "jobTitle": "Software Engineer II", "industry": "Virtual Reality Education", - "cities": ["Austin", "Cleveland", "Glendale"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304273" + "$oid": "6674c30595590f9fd945953a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27161,15 +27161,15 @@ "cohort": "8", "jobTitle": "Senior Full Stack Developer", "industry": "Software / Tech", - "cities": ["Bakersfield", "Madison"], + "cities": ["Plano", "Saint Paul"], "_id": { - "$oid": "66723d958f368f285d304274" + "$oid": "6674c30595590f9fd945953b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27182,15 +27182,15 @@ "cohort": "39", "jobTitle": "React Developer", "industry": "Consumer", - "cities": [], + "cities": ["Virginia Beach", "Fort Worth", "Fort Wayne"], "_id": { - "$oid": "66723d958f368f285d304275" + "$oid": "6674c30595590f9fd945953c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27203,15 +27203,15 @@ "cohort": "2", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Garland", "Dallas"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304276" + "$oid": "6674c30595590f9fd945953d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27224,15 +27224,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Entertainment", - "cities": ["Pittsburgh", "Sacramento", "Raleigh"], + "cities": ["Omaha", "Paris", "Tulsa"], "_id": { - "$oid": "66723d958f368f285d304277" + "$oid": "6674c30595590f9fd945953e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27245,15 +27245,15 @@ "cohort": "11", "jobTitle": "Full Stack Developer", "industry": "Events", - "cities": ["Buffalo", "Atlanta"], + "cities": ["Stockton", "Indianapolis", "Dallas"], "_id": { - "$oid": "66723d958f368f285d304278" + "$oid": "6674c30595590f9fd945953f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27266,15 +27266,15 @@ "cohort": "31", "jobTitle": "Software Engineer III", "industry": "Photography", - "cities": ["Fort Worth", "San Francisco", "Nashville"], + "cities": ["Columbus"], "_id": { - "$oid": "66723d958f368f285d304279" + "$oid": "6674c30595590f9fd9459540" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27289,13 +27289,13 @@ "industry": "Other", "cities": [], "_id": { - "$oid": "66723d958f368f285d30427a" + "$oid": "6674c30595590f9fd9459541" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27310,13 +27310,13 @@ "industry": "Entertainment", "cities": [], "_id": { - "$oid": "66723d958f368f285d30427b" + "$oid": "6674c30595590f9fd9459542" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27329,15 +27329,15 @@ "cohort": "11", "jobTitle": "Software Engineer, Projects", "industry": "Tech? stock photography?", - "cities": ["Kansas City", "Berlin", "Detroit"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30427c" + "$oid": "6674c30595590f9fd9459543" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27350,15 +27350,15 @@ "cohort": "41", "jobTitle": "Software Engineer", "industry": "Healthcare / insurance", - "cities": ["Gilbert", "North Las Vegas"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30427d" + "$oid": "6674c30595590f9fd9459544" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27373,13 +27373,13 @@ "industry": "Other", "cities": [], "_id": { - "$oid": "66723d958f368f285d30427e" + "$oid": "6674c30595590f9fd9459545" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27392,15 +27392,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": [], + "cities": ["Tokyo", "Oakland", "Lincoln"], "_id": { - "$oid": "66723d958f368f285d30427f" + "$oid": "6674c30595590f9fd9459546" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27413,15 +27413,15 @@ "cohort": "29", "jobTitle": "Fullstack Software Engineer", "industry": "Fintech", - "cities": ["Toledo", "Jersey City", "New York"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304280" + "$oid": "6674c30595590f9fd9459547" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27436,13 +27436,13 @@ "industry": "Security", "cities": [], "_id": { - "$oid": "66723d958f368f285d304281" + "$oid": "6674c30595590f9fd9459548" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27455,15 +27455,15 @@ "cohort": "1", "jobTitle": "Front end engineer", "industry": "Customer service software", - "cities": ["London", "Cincinnati"], + "cities": ["Scottsdale", "Cincinnati"], "_id": { - "$oid": "66723d958f368f285d304282" + "$oid": "6674c30595590f9fd9459549" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27476,15 +27476,15 @@ "cohort": "20", "jobTitle": "Software Engineer", "industry": "Cloud storage", - "cities": [], + "cities": ["Los Angeles"], "_id": { - "$oid": "66723d958f368f285d304283" + "$oid": "6674c30595590f9fd945954a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.069Z" }, "__v": 0 }, @@ -27497,15 +27497,15 @@ "cohort": "6", "jobTitle": "Full Stack Software Engineer III", "industry": "Media", - "cities": ["Lubbock", "New Orleans"], + "cities": ["Denver"], "_id": { - "$oid": "66723d958f368f285d304284" + "$oid": "6674c30595590f9fd945954b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27518,15 +27518,15 @@ "cohort": "55", "jobTitle": "Associate Software Developer", "industry": "Media", - "cities": ["Berlin"], + "cities": ["Laredo"], "_id": { - "$oid": "66723d958f368f285d304285" + "$oid": "6674c30595590f9fd945954c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27539,15 +27539,15 @@ "cohort": "54", "jobTitle": "Associate Development Engineer", "industry": "Telecommunications", - "cities": ["Henderson", "Winston-Salem", "Boston"], + "cities": ["Kansas City"], "_id": { - "$oid": "66723d958f368f285d304286" + "$oid": "6674c30595590f9fd945954d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27560,15 +27560,15 @@ "cohort": "3", "jobTitle": "Engineer", "industry": "Outdoor Recreation", - "cities": ["Chicago", "Omaha"], + "cities": ["Philadelphia", "Bakersfield"], "_id": { - "$oid": "66723d958f368f285d304287" + "$oid": "6674c30595590f9fd945954e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27581,15 +27581,15 @@ "cohort": "21", "jobTitle": "Software Engineer III", "industry": "Entertainment", - "cities": [], + "cities": ["Paris", "Dallas", "Indianapolis"], "_id": { - "$oid": "66723d958f368f285d304288" + "$oid": "6674c30595590f9fd945954f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27602,15 +27602,15 @@ "cohort": "22", "jobTitle": "Front end engineer", "industry": "Retail/Manufacturing", - "cities": ["Oklahoma City"], + "cities": ["Omaha"], "_id": { - "$oid": "66723d958f368f285d304289" + "$oid": "6674c30595590f9fd9459550" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27625,13 +27625,13 @@ "industry": "Software / Tech", "cities": [], "_id": { - "$oid": "66723d958f368f285d30428a" + "$oid": "6674c30595590f9fd9459551" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27644,15 +27644,15 @@ "cohort": "46", "jobTitle": "Founding Engineer", "industry": "Retail", - "cities": ["Tampa"], + "cities": ["Durham", "Madison"], "_id": { - "$oid": "66723d958f368f285d30428b" + "$oid": "6674c30595590f9fd9459552" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27665,15 +27665,15 @@ "cohort": "19", "jobTitle": "Front End Developer", "industry": "Manufacturing", - "cities": ["El Paso"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30428c" + "$oid": "6674c30595590f9fd9459553" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27686,15 +27686,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Edtech", - "cities": [], + "cities": ["Cincinnati"], "_id": { - "$oid": "66723d958f368f285d30428d" + "$oid": "6674c30595590f9fd9459554" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27707,15 +27707,15 @@ "cohort": "10", "jobTitle": "Application Programmer", "industry": "Fintech", - "cities": [], + "cities": ["Baltimore", "San Jose", "Memphis"], "_id": { - "$oid": "66723d958f368f285d30428e" + "$oid": "6674c30595590f9fd9459555" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27728,15 +27728,15 @@ "cohort": "21", "jobTitle": "Senior Software Engineer", "industry": "Cybersecurity", - "cities": [], + "cities": ["Paris", "Scottsdale"], "_id": { - "$oid": "66723d958f368f285d30428f" + "$oid": "6674c30595590f9fd9459556" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27749,15 +27749,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Sports/Sports betting", - "cities": ["San Antonio", "Boston", "Chesapeake"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304290" + "$oid": "6674c30595590f9fd9459557" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27770,15 +27770,15 @@ "cohort": "12", "jobTitle": "Senior Full Stack Developer", "industry": "Travel", - "cities": ["Sydney"], + "cities": ["Cincinnati", "London", "Garland"], "_id": { - "$oid": "66723d958f368f285d304291" + "$oid": "6674c30595590f9fd9459558" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27793,13 +27793,13 @@ "industry": "Consumer Goods", "cities": [], "_id": { - "$oid": "66723d958f368f285d304292" + "$oid": "6674c30595590f9fd9459559" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27812,15 +27812,15 @@ "cohort": "43", "jobTitle": "Software Engineer (Consultant)", "industry": "Consulting", - "cities": ["San Diego", "Phoenix", "Fresno"], + "cities": ["Corpus Christi", "Oakland", "Columbus"], "_id": { - "$oid": "66723d958f368f285d304293" + "$oid": "6674c30595590f9fd945955a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27833,15 +27833,15 @@ "cohort": "49", "jobTitle": "Software Engineer", "industry": "Consulting", - "cities": ["Tokyo"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304294" + "$oid": "6674c30595590f9fd945955b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27854,15 +27854,15 @@ "cohort": "17", "jobTitle": "Software Engineer", "industry": "Customer Service", - "cities": ["Kansas City", "Arlington", "Baltimore"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304295" + "$oid": "6674c30595590f9fd945955c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27875,15 +27875,15 @@ "cohort": "2", "jobTitle": "Lead Software Engineer", "industry": "Energy/Cleantech/Greentech", - "cities": [], + "cities": ["Oklahoma City"], "_id": { - "$oid": "66723d958f368f285d304296" + "$oid": "6674c30595590f9fd945955d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27896,15 +27896,15 @@ "cohort": "36", "jobTitle": "Frontend Engineer", "industry": "Fintech", - "cities": ["Corpus Christi", "Lincoln", "Raleigh"], + "cities": ["Arlington"], "_id": { - "$oid": "66723d958f368f285d304297" + "$oid": "6674c30595590f9fd945955e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27917,15 +27917,15 @@ "cohort": "40", "jobTitle": "Frontend Engineer", "industry": "Fintech", - "cities": ["Reno"], + "cities": ["Tampa"], "_id": { - "$oid": "66723d958f368f285d304298" + "$oid": "6674c30595590f9fd945955f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27938,15 +27938,15 @@ "cohort": "26", "jobTitle": "Software Developer", "industry": "SaaS", - "cities": ["Reno", "Anaheim"], + "cities": ["Mumbai", "Buffalo"], "_id": { - "$oid": "66723d958f368f285d304299" + "$oid": "6674c30595590f9fd9459560" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27959,15 +27959,15 @@ "cohort": "4", "jobTitle": "Software Engineer I", "industry": "Computer Hardware & Software", - "cities": ["Chandler", "Bakersfield", "Irvine"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30429a" + "$oid": "6674c30595590f9fd9459561" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -27980,15 +27980,15 @@ "cohort": "31", "jobTitle": "Associate Software Engineer", "industry": "Software / Tech", - "cities": ["New York", "Miami"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30429b" + "$oid": "6674c30595590f9fd9459562" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28001,15 +28001,15 @@ "cohort": "3", "jobTitle": "Software Developer", "industry": "", - "cities": ["Saint Paul", "London"], + "cities": ["Philadelphia", "Portland", "Sรฃo Paulo"], "_id": { - "$oid": "66723d958f368f285d30429c" + "$oid": "6674c30595590f9fd9459563" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28022,15 +28022,15 @@ "cohort": "45", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": [], + "cities": ["Anaheim", "Sydney", "San Antonio"], "_id": { - "$oid": "66723d958f368f285d30429d" + "$oid": "6674c30595590f9fd9459564" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28043,15 +28043,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Entertainment", - "cities": ["Glendale", "Wichita", "Sacramento"], + "cities": ["Norfolk"], "_id": { - "$oid": "66723d958f368f285d30429e" + "$oid": "6674c30595590f9fd9459565" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28064,15 +28064,15 @@ "cohort": "1", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": [], + "cities": ["Detroit", "Charlotte", "Miami"], "_id": { - "$oid": "66723d958f368f285d30429f" + "$oid": "6674c30595590f9fd9459566" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28085,15 +28085,15 @@ "cohort": "42", "jobTitle": "Software Engineer", "industry": "camera, social media", - "cities": ["Long Beach", "Wichita", "New Orleans"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3042a0" + "$oid": "6674c30595590f9fd9459567" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28106,15 +28106,15 @@ "cohort": "35", "jobTitle": "Platform Engineer", "industry": "Video Streaming", - "cities": ["Scottsdale"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3042a1" + "$oid": "6674c30595590f9fd9459568" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28127,15 +28127,15 @@ "cohort": "52", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Cleveland"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3042a2" + "$oid": "6674c30595590f9fd9459569" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28148,15 +28148,15 @@ "cohort": "38", "jobTitle": "Frontend software engineer", "industry": "Hospitality", - "cities": [], + "cities": ["Sรฃo Paulo", "Atlanta", "Los Angeles"], "_id": { - "$oid": "66723d958f368f285d3042a3" + "$oid": "6674c30595590f9fd945956a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28169,15 +28169,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": [], + "cities": ["Los Angeles"], "_id": { - "$oid": "66723d958f368f285d3042a4" + "$oid": "6674c30595590f9fd945956b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28190,15 +28190,15 @@ "cohort": "40", "jobTitle": "DevOps Software Developer", "industry": "Data/Analytics/Cloud", - "cities": [], + "cities": ["Houston", "Phoenix", "Fresno"], "_id": { - "$oid": "66723d958f368f285d3042a5" + "$oid": "6674c30595590f9fd945956c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28211,15 +28211,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Minneapolis", "Las Vegas", "Phoenix"], + "cities": ["Lincoln", "Anaheim", "Madison"], "_id": { - "$oid": "66723d958f368f285d3042a6" + "$oid": "6674c30595590f9fd945956d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28232,15 +28232,15 @@ "cohort": "35", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Lincoln"], + "cities": ["Virginia Beach"], "_id": { - "$oid": "66723d958f368f285d3042a7" + "$oid": "6674c30595590f9fd945956e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28253,15 +28253,15 @@ "cohort": "6", "jobTitle": "Platform Engineer", "industry": "Public Safety", - "cities": ["North Las Vegas", "Riverside"], + "cities": ["Newark", "Laredo", "San Antonio"], "_id": { - "$oid": "66723d958f368f285d3042a8" + "$oid": "6674c30595590f9fd945956f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28274,15 +28274,15 @@ "cohort": "7", "jobTitle": "Release Engineer", "industry": "Software / Tech", - "cities": ["Newark", "New Orleans"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3042a9" + "$oid": "6674c30595590f9fd9459570" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28295,15 +28295,15 @@ "cohort": "23", "jobTitle": "Senior Software Engineer", "industry": "Consumer Electronics", - "cities": ["Boston", "Henderson"], + "cities": ["Tucson", "Louisville", "Corpus Christi"], "_id": { - "$oid": "66723d958f368f285d3042aa" + "$oid": "6674c30595590f9fd9459571" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28316,15 +28316,15 @@ "cohort": "3", "jobTitle": "Full Stack Developer", "industry": "Web3", - "cities": [], + "cities": ["Indianapolis"], "_id": { - "$oid": "66723d958f368f285d3042ab" + "$oid": "6674c30595590f9fd9459572" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28337,15 +28337,15 @@ "cohort": "18", "jobTitle": "Software Engineer", "industry": "SaaS", - "cities": ["Tokyo", "Detroit"], + "cities": ["Tokyo", "Paris", "Arlington"], "_id": { - "$oid": "66723d958f368f285d3042ac" + "$oid": "6674c30595590f9fd9459573" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28358,15 +28358,15 @@ "cohort": "33", "jobTitle": "Sr. Full Stack Developer", "industry": "Energy", - "cities": ["Arlington"], + "cities": ["Raleigh"], "_id": { - "$oid": "66723d958f368f285d3042ad" + "$oid": "6674c30595590f9fd9459574" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28379,15 +28379,15 @@ "cohort": "47", "jobTitle": "Software Engineer II", "industry": "Artificial intelligence", - "cities": ["New York"], + "cities": ["Glendale", "Buffalo", "Kansas City"], "_id": { - "$oid": "66723d958f368f285d3042ae" + "$oid": "6674c30595590f9fd9459575" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28400,15 +28400,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Kansas City", "Milwaukee", "Baltimore"], + "cities": ["Sacramento"], "_id": { - "$oid": "66723d958f368f285d3042af" + "$oid": "6674c30595590f9fd9459576" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28421,15 +28421,15 @@ "cohort": "34", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Colorado Springs"], + "cities": ["Jersey City", "Oklahoma City", "San Jose"], "_id": { - "$oid": "66723d958f368f285d3042b0" + "$oid": "6674c30595590f9fd9459577" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28442,15 +28442,15 @@ "cohort": "33", "jobTitle": "Senior Software Engineer", "industry": "Security", - "cities": ["Tokyo", "North Las Vegas"], + "cities": ["Glendale", "Sรฃo Paulo"], "_id": { - "$oid": "66723d958f368f285d3042b1" + "$oid": "6674c30595590f9fd9459578" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28465,13 +28465,13 @@ "industry": "Cybercrime", "cities": [], "_id": { - "$oid": "66723d958f368f285d3042b2" + "$oid": "6674c30595590f9fd9459579" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28484,15 +28484,15 @@ "cohort": "38", "jobTitle": "Software Engineer", "industry": "Telecom", - "cities": ["Omaha", "Berlin", "Riverside"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3042b3" + "$oid": "6674c30595590f9fd945957a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28505,15 +28505,15 @@ "cohort": "42", "jobTitle": "Software Engineer", "industry": "Telecommunications", - "cities": [], + "cities": ["Arlington", "Saint Paul"], "_id": { - "$oid": "66723d958f368f285d3042b4" + "$oid": "6674c30595590f9fd945957b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28526,15 +28526,15 @@ "cohort": "15", "jobTitle": "Senior Software Engineer", "industry": "Finance", - "cities": ["Chula Vista"], + "cities": ["Arlington"], "_id": { - "$oid": "66723d958f368f285d3042b5" + "$oid": "6674c30595590f9fd945957c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28547,15 +28547,15 @@ "cohort": "37", "jobTitle": "Software Engineer", "industry": "Security/Data Privacy", - "cities": [], + "cities": ["Newark", "Los Angeles", "Stockton"], "_id": { - "$oid": "66723d958f368f285d3042b6" + "$oid": "6674c30595590f9fd945957d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28568,15 +28568,15 @@ "cohort": "6", "jobTitle": "Web Engineer II", "industry": "", - "cities": [], + "cities": ["Toledo", "Orlando", "Santa Ana"], "_id": { - "$oid": "66723d958f368f285d3042b7" + "$oid": "6674c30595590f9fd945957e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28589,15 +28589,15 @@ "cohort": "12", "jobTitle": "Senior Web Engineer", "industry": "Entertainment", - "cities": ["Sydney", "Orlando", "Saint Paul"], + "cities": ["Toledo", "Lincoln", "Fort Wayne"], "_id": { - "$oid": "66723d958f368f285d3042b8" + "$oid": "6674c30595590f9fd945957f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28610,15 +28610,15 @@ "cohort": "21", "jobTitle": "Technical Writer", "industry": "Entertainment", - "cities": ["Winston-Salem", "Henderson"], + "cities": ["Mexico City", "London"], "_id": { - "$oid": "66723d958f368f285d3042b9" + "$oid": "6674c30595590f9fd9459580" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28631,15 +28631,15 @@ "cohort": "7", "jobTitle": "Frontend Engineer", "industry": "Entertainment", - "cities": ["Sacramento"], + "cities": ["Tucson", "Tulsa"], "_id": { - "$oid": "66723d958f368f285d3042ba" + "$oid": "6674c30595590f9fd9459581" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28652,15 +28652,15 @@ "cohort": "31", "jobTitle": "Frontend Engineer", "industry": "Healthcare", - "cities": ["Chicago", "Glendale", "Sรฃo Paulo"], + "cities": ["El Paso", "Chicago"], "_id": { - "$oid": "66723d958f368f285d3042bb" + "$oid": "6674c30595590f9fd9459582" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28673,15 +28673,15 @@ "cohort": "46", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Sรฃo Paulo", "Winston-Salem", "Las Vegas"], + "cities": ["Miami", "Cincinnati"], "_id": { - "$oid": "66723d958f368f285d3042bc" + "$oid": "6674c30595590f9fd9459583" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28694,15 +28694,15 @@ "cohort": "27", "jobTitle": "Software Engineer", "industry": "Hospitality Services", - "cities": ["Honolulu"], + "cities": ["Lincoln", "Norfolk", "San Francisco"], "_id": { - "$oid": "66723d958f368f285d3042bd" + "$oid": "6674c30595590f9fd9459584" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28715,15 +28715,15 @@ "cohort": "15", "jobTitle": "Application Developer", "industry": "Healthtech/Healthcare", - "cities": [], + "cities": ["Chandler", "Chesapeake"], "_id": { - "$oid": "66723d958f368f285d3042be" + "$oid": "6674c30595590f9fd9459585" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28736,15 +28736,15 @@ "cohort": "9", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Henderson", "Jacksonville"], + "cities": ["Glendale", "Oakland", "San Antonio"], "_id": { - "$oid": "66723d958f368f285d3042bf" + "$oid": "6674c30595590f9fd9459586" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28757,15 +28757,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["San Diego"], + "cities": ["Glendale", "Louisville"], "_id": { - "$oid": "66723d958f368f285d3042c0" + "$oid": "6674c30595590f9fd9459587" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28778,15 +28778,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": [], + "cities": ["St. Louis", "Chula Vista", "Miami"], "_id": { - "$oid": "66723d958f368f285d3042c1" + "$oid": "6674c30595590f9fd9459588" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28799,15 +28799,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "Information Technology", - "cities": ["Oakland"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3042c2" + "$oid": "6674c30595590f9fd9459589" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28820,15 +28820,15 @@ "cohort": "42", "jobTitle": "UI Engineer", "industry": "Consulting", - "cities": ["Paris", "Cleveland", "Berlin"], + "cities": ["San Jose", "Los Angeles", "Norfolk"], "_id": { - "$oid": "66723d958f368f285d3042c3" + "$oid": "6674c30595590f9fd945958a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28841,15 +28841,15 @@ "cohort": "5", "jobTitle": "Software Engineer - Front End", "industry": "Cryptocurrency / Fintech", - "cities": ["Irving", "St. Louis", "Madison"], + "cities": ["Jersey City", "Gilbert", "Laredo"], "_id": { - "$oid": "66723d958f368f285d3042c4" + "$oid": "6674c30595590f9fd945958b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28864,13 +28864,13 @@ "industry": "Robotics / Industrial Automation", "cities": [], "_id": { - "$oid": "66723d958f368f285d3042c5" + "$oid": "6674c30595590f9fd945958c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28883,15 +28883,15 @@ "cohort": "50", "jobTitle": "Software Engineer", "industry": "Restaurant, Food, and Beverage", - "cities": ["Phoenix"], + "cities": ["Seattle"], "_id": { - "$oid": "66723d958f368f285d3042c6" + "$oid": "6674c30595590f9fd945958d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28904,15 +28904,15 @@ "cohort": "21", "jobTitle": "Full Stack Engineer", "industry": "", - "cities": ["San Francisco"], + "cities": ["Buffalo", "Columbus"], "_id": { - "$oid": "66723d958f368f285d3042c7" + "$oid": "6674c30595590f9fd945958e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28925,15 +28925,15 @@ "cohort": "34", "jobTitle": "Software Developer", "industry": "Insurance", - "cities": ["St. Louis", "Fort Worth"], + "cities": ["Oklahoma City"], "_id": { - "$oid": "66723d958f368f285d3042c8" + "$oid": "6674c30595590f9fd945958f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28946,15 +28946,15 @@ "cohort": "2", "jobTitle": "Initiative Lead: Social Media", "industry": "Software / Tech", - "cities": ["Pittsburgh", "Boston", "Stockton"], + "cities": ["Pittsburgh", "St. Petersburg"], "_id": { - "$oid": "66723d958f368f285d3042c9" + "$oid": "6674c30595590f9fd9459590" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28967,15 +28967,15 @@ "cohort": "26", "jobTitle": "Software Engineer - Backend", "industry": "Healthcare", - "cities": ["Cincinnati", "Mesa"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3042ca" + "$oid": "6674c30595590f9fd9459591" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -28990,13 +28990,13 @@ "industry": "Ad Tech", "cities": [], "_id": { - "$oid": "66723d958f368f285d3042cb" + "$oid": "6674c30595590f9fd9459592" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29009,15 +29009,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "", - "cities": ["North Las Vegas", "Charlotte", "St. Petersburg"], + "cities": ["Columbus", "Miami"], "_id": { - "$oid": "66723d958f368f285d3042cc" + "$oid": "6674c30595590f9fd9459593" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29030,15 +29030,15 @@ "cohort": "48", "jobTitle": "Senior Software Engineer", "industry": "Software / Tech", - "cities": [], + "cities": ["Jacksonville", "Long Beach"], "_id": { - "$oid": "66723d958f368f285d3042cd" + "$oid": "6674c30595590f9fd9459594" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29051,15 +29051,15 @@ "cohort": "21", "jobTitle": "Software Engineer", "industry": "ML / Data / Open Source", - "cities": ["Mumbai", "Anaheim"], + "cities": ["Aurora"], "_id": { - "$oid": "66723d958f368f285d3042ce" + "$oid": "6674c30595590f9fd9459595" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29072,15 +29072,15 @@ "cohort": "9", "jobTitle": "Software Engineer, Writer/Instructor", "industry": "Software / Tech", - "cities": ["Tokyo"], + "cities": ["Oakland", "Houston", "San Francisco"], "_id": { - "$oid": "66723d958f368f285d3042cf" + "$oid": "6674c30595590f9fd9459596" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29093,15 +29093,15 @@ "cohort": "37", "jobTitle": "Software Engineer, Full Stack", "industry": "Insurance", - "cities": ["Plano"], + "cities": ["Tokyo", "St. Petersburg"], "_id": { - "$oid": "66723d958f368f285d3042d0" + "$oid": "6674c30595590f9fd9459597" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29114,15 +29114,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Other", - "cities": [], + "cities": ["Anchorage"], "_id": { - "$oid": "66723d958f368f285d3042d1" + "$oid": "6674c30595590f9fd9459598" }, "createdAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.826Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29135,15 +29135,15 @@ "cohort": "20", "jobTitle": "Full-Stack Software Developer", "industry": "", - "cities": [], + "cities": ["Colorado Springs", "Buffalo", "Las Vegas"], "_id": { - "$oid": "66723d958f368f285d3042d2" + "$oid": "6674c30595590f9fd9459599" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29156,15 +29156,15 @@ "cohort": "23", "jobTitle": "Software Developer", "industry": "On-Demand Work", - "cities": ["Berlin", "Minneapolis", "Toledo"], + "cities": ["Chula Vista"], "_id": { - "$oid": "66723d958f368f285d3042d3" + "$oid": "6674c30595590f9fd945959a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29177,15 +29177,15 @@ "cohort": "11", "jobTitle": "Full Stack Developer", "industry": "Retail", - "cities": [], + "cities": ["Tampa", "San Jose", "El Paso"], "_id": { - "$oid": "66723d958f368f285d3042d4" + "$oid": "6674c30595590f9fd945959b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29198,15 +29198,15 @@ "cohort": "39", "jobTitle": "Senior Frontend Engineer", "industry": "Fashion", - "cities": [], + "cities": ["Fort Worth"], "_id": { - "$oid": "66723d958f368f285d3042d5" + "$oid": "6674c30595590f9fd945959c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29219,15 +29219,15 @@ "cohort": "39", "jobTitle": "Software Engineer", "industry": "Medical Transcription", - "cities": ["Santa Ana", "Miami"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3042d6" + "$oid": "6674c30595590f9fd945959d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29240,15 +29240,15 @@ "cohort": "17", "jobTitle": "Software Engineer - Platform Integration", "industry": "Advertising", - "cities": ["Irvine", "Charlotte", "New Orleans"], + "cities": ["Lubbock"], "_id": { - "$oid": "66723d958f368f285d3042d7" + "$oid": "6674c30595590f9fd945959e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29261,15 +29261,15 @@ "cohort": "11", "jobTitle": "Senior Full Stack Engineer", "industry": "Manufacturing", - "cities": ["Omaha", "New Orleans", "Memphis"], + "cities": ["Saint Paul", "Stockton", "Mexico City"], "_id": { - "$oid": "66723d958f368f285d3042d8" + "$oid": "6674c30595590f9fd945959f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29282,15 +29282,15 @@ "cohort": "26", "jobTitle": "Software Engineer", "industry": "Food", - "cities": [], + "cities": ["Albuquerque", "St. Petersburg"], "_id": { - "$oid": "66723d958f368f285d3042d9" + "$oid": "6674c30595590f9fd94595a0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29303,15 +29303,15 @@ "cohort": "26", "jobTitle": "Engineer I", "industry": "Fast Casual Dining", - "cities": [], + "cities": ["Cincinnati", "Columbus"], "_id": { - "$oid": "66723d958f368f285d3042da" + "$oid": "6674c30595590f9fd94595a1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29324,15 +29324,15 @@ "cohort": "13", "jobTitle": "eCommerce Development Supervisor", "industry": "Other", - "cities": ["St. Louis", "Sydney"], + "cities": ["Aurora", "Tampa"], "_id": { - "$oid": "66723d958f368f285d3042db" + "$oid": "6674c30595590f9fd94595a2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29345,15 +29345,15 @@ "cohort": "10", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["New York"], + "cities": ["Henderson", "Jersey City"], "_id": { - "$oid": "66723d958f368f285d3042dc" + "$oid": "6674c30595590f9fd94595a3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29366,15 +29366,15 @@ "cohort": "28", "jobTitle": "Front-End Engineer II", "industry": "Fintech", - "cities": ["Irvine", "Paris", "Garland"], + "cities": ["Sacramento", "Colorado Springs", "Chandler"], "_id": { - "$oid": "66723d958f368f285d3042dd" + "$oid": "6674c30595590f9fd94595a4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29387,15 +29387,15 @@ "cohort": "7", "jobTitle": "Software Engineer", "industry": "Telecommunications", - "cities": ["Cincinnati", "Dallas", "Memphis"], + "cities": ["St. Louis", "Glendale"], "_id": { - "$oid": "66723d958f368f285d3042de" + "$oid": "6674c30595590f9fd94595a5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29408,15 +29408,15 @@ "cohort": "7", "jobTitle": "Associate Software Engineer", "industry": "Telecommunications", - "cities": [], + "cities": ["Portland", "New Orleans", "Lincoln"], "_id": { - "$oid": "66723d958f368f285d3042df" + "$oid": "6674c30595590f9fd94595a6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29429,15 +29429,15 @@ "cohort": "28", "jobTitle": "Associate Software Engineer", "industry": "Fintech", - "cities": ["Austin", "Toronto"], + "cities": ["Orlando", "Tokyo"], "_id": { - "$oid": "66723d958f368f285d3042e0" + "$oid": "6674c30595590f9fd94595a7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29450,15 +29450,15 @@ "cohort": "26", "jobTitle": "Mid-Level Software Engineer (contract-to-hire)", "industry": "Fintech", - "cities": ["Las Vegas", "Atlanta", "Plano"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3042e1" + "$oid": "6674c30595590f9fd94595a8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29471,15 +29471,15 @@ "cohort": "45", "jobTitle": "UI Engineer", "industry": "Retail", - "cities": ["Toronto"], + "cities": ["Sรฃo Paulo", "Tucson"], "_id": { - "$oid": "66723d958f368f285d3042e2" + "$oid": "6674c30595590f9fd94595a9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29492,15 +29492,15 @@ "cohort": "32", "jobTitle": "Front End Developer", "industry": "Insurance", - "cities": ["Virginia Beach", "Durham", "Jersey City"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3042e3" + "$oid": "6674c30595590f9fd94595aa" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29513,15 +29513,15 @@ "cohort": "4", "jobTitle": "Senior Software Engineer", "industry": "Insurtech", - "cities": [], + "cities": ["Austin"], "_id": { - "$oid": "66723d958f368f285d3042e4" + "$oid": "6674c30595590f9fd94595ab" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29534,15 +29534,15 @@ "cohort": "47", "jobTitle": "Software Engineer 2", "industry": "Financial Services & Digital Payments", - "cities": ["Indianapolis", "Arlington", "San Antonio"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3042e5" + "$oid": "6674c30595590f9fd94595ac" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29555,15 +29555,15 @@ "cohort": "44", "jobTitle": "Software Engineer", "industry": "Communication/Productivity Software", - "cities": ["Denver", "Raleigh"], + "cities": ["San Francisco", "Winston-Salem"], "_id": { - "$oid": "66723d958f368f285d3042e6" + "$oid": "6674c30595590f9fd94595ad" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29576,15 +29576,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "E-Commerce", - "cities": ["Lubbock", "Charlotte", "Anchorage"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3042e7" + "$oid": "6674c30595590f9fd94595ae" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29597,15 +29597,15 @@ "cohort": "40", "jobTitle": "Software Engineer", "industry": "Retail", - "cities": ["El Paso", "Chandler"], + "cities": ["Omaha", "Laredo"], "_id": { - "$oid": "66723d958f368f285d3042e8" + "$oid": "6674c30595590f9fd94595af" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29618,15 +29618,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "TV ads", - "cities": ["Chula Vista", "Riverside"], + "cities": ["Mexico City"], "_id": { - "$oid": "66723d958f368f285d3042e9" + "$oid": "6674c30595590f9fd94595b0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29639,15 +29639,15 @@ "cohort": "51", "jobTitle": "Software Engineer", "industry": "Business Tech/Enterprise Tech", - "cities": [], + "cities": ["St. Louis"], "_id": { - "$oid": "66723d958f368f285d3042ea" + "$oid": "6674c30595590f9fd94595b1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29662,13 +29662,13 @@ "industry": "Other", "cities": [], "_id": { - "$oid": "66723d958f368f285d3042eb" + "$oid": "6674c30595590f9fd94595b2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29681,15 +29681,15 @@ "cohort": "13", "jobTitle": "Full Stack Engineer", "industry": "Media", - "cities": ["Toronto", "London", "Baltimore"], + "cities": ["El Paso", "Newark", "Fort Worth"], "_id": { - "$oid": "66723d958f368f285d3042ec" + "$oid": "6674c30595590f9fd94595b3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29702,15 +29702,15 @@ "cohort": "24", "jobTitle": "Software Engineer", "industry": "Media & Advertisement", - "cities": [], + "cities": ["Scottsdale"], "_id": { - "$oid": "66723d958f368f285d3042ed" + "$oid": "6674c30595590f9fd94595b4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29723,15 +29723,15 @@ "cohort": "24", "jobTitle": "Programmer I", "industry": "Software Development/Consulting", - "cities": ["Tampa"], + "cities": ["Wichita", "Miami"], "_id": { - "$oid": "66723d958f368f285d3042ee" + "$oid": "6674c30595590f9fd94595b5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29744,15 +29744,15 @@ "cohort": "8", "jobTitle": "Junior Software Engineer", "industry": "Software / Tech", - "cities": [], + "cities": ["Austin", "St. Petersburg", "San Francisco"], "_id": { - "$oid": "66723d958f368f285d3042ef" + "$oid": "6674c30595590f9fd94595b6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29765,15 +29765,15 @@ "cohort": "9", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Norfolk"], + "cities": ["Newark", "St. Petersburg", "Virginia Beach"], "_id": { - "$oid": "66723d958f368f285d3042f0" + "$oid": "6674c30595590f9fd94595b7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29786,15 +29786,15 @@ "cohort": "37", "jobTitle": "Developer", "industry": "Banking", - "cities": [], + "cities": ["Long Beach", "Nashville", "Toledo"], "_id": { - "$oid": "66723d958f368f285d3042f1" + "$oid": "6674c30595590f9fd94595b8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29807,15 +29807,15 @@ "cohort": "40", "jobTitle": "Software Engineer II", "industry": "Tech", - "cities": ["Denver"], + "cities": ["Albuquerque"], "_id": { - "$oid": "66723d958f368f285d3042f2" + "$oid": "6674c30595590f9fd94595b9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29828,15 +29828,15 @@ "cohort": "7", "jobTitle": "Software engineer", "industry": "", - "cities": ["North Las Vegas", "Santa Ana"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3042f3" + "$oid": "6674c30595590f9fd94595ba" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29849,15 +29849,15 @@ "cohort": "39", "jobTitle": "Junior Software Developer", "industry": "Dentistry", - "cities": ["Fort Worth", "Detroit", "Minneapolis"], + "cities": ["Cleveland"], "_id": { - "$oid": "66723d958f368f285d3042f4" + "$oid": "6674c30595590f9fd94595bb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29870,15 +29870,15 @@ "cohort": "39", "jobTitle": "Software Engineer", "industry": "Marketing Tevh", - "cities": ["Wichita"], + "cities": ["Omaha", "Norfolk"], "_id": { - "$oid": "66723d958f368f285d3042f5" + "$oid": "6674c30595590f9fd94595bc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29891,15 +29891,15 @@ "cohort": "31", "jobTitle": "Software Engineer II", "industry": "Entertainment", - "cities": ["Kansas City", "Lexington", "Jacksonville"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3042f6" + "$oid": "6674c30595590f9fd94595bd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29912,15 +29912,15 @@ "cohort": "42", "jobTitle": "Software Engineer II", "industry": "Entertainment", - "cities": [], + "cities": ["Toronto"], "_id": { - "$oid": "66723d958f368f285d3042f7" + "$oid": "6674c30595590f9fd94595be" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29933,15 +29933,15 @@ "cohort": "3", "jobTitle": "Member of Technical Staff in Fullstack Web Group", "industry": "Research", - "cities": ["Mexico City"], + "cities": ["Lincoln"], "_id": { - "$oid": "66723d958f368f285d3042f8" + "$oid": "6674c30595590f9fd94595bf" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29954,15 +29954,15 @@ "cohort": "13", "jobTitle": "Typescript Full Stack Engineer", "industry": "Software / Tech", - "cities": ["Sรฃo Paulo"], + "cities": ["Chula Vista", "Fort Worth"], "_id": { - "$oid": "66723d958f368f285d3042f9" + "$oid": "6674c30595590f9fd94595c0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29975,15 +29975,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "Professional Training & Coaching", - "cities": ["Scottsdale", "Cleveland", "Irvine"], + "cities": ["Louisville", "Cleveland", "Orlando"], "_id": { - "$oid": "66723d958f368f285d3042fa" + "$oid": "6674c30595590f9fd94595c1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -29996,15 +29996,15 @@ "cohort": "47", "jobTitle": "Web Developer", "industry": "Healthcare", - "cities": ["London", "Henderson"], + "cities": ["Santa Ana"], "_id": { - "$oid": "66723d958f368f285d3042fb" + "$oid": "6674c30595590f9fd94595c2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -30017,15 +30017,15 @@ "cohort": "26", "jobTitle": "Lead Web UI Engineer?", "industry": "Telecommunications", - "cities": ["Chicago"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3042fc" + "$oid": "6674c30595590f9fd94595c3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -30040,13 +30040,13 @@ "industry": "Other", "cities": [], "_id": { - "$oid": "66723d958f368f285d3042fd" + "$oid": "6674c30595590f9fd94595c4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -30059,15 +30059,15 @@ "cohort": "12", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Saint Paul"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3042fe" + "$oid": "6674c30595590f9fd94595c5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -30080,15 +30080,15 @@ "cohort": "48", "jobTitle": "Front-End Developer", "industry": "Retail", - "cities": ["Henderson", "Long Beach"], + "cities": ["Saint Paul"], "_id": { - "$oid": "66723d958f368f285d3042ff" + "$oid": "6674c30595590f9fd94595c6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -30101,15 +30101,15 @@ "cohort": "40", "jobTitle": "Full Stack Software Engineer", "industry": "Construction/retail", - "cities": ["Chandler"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304300" + "$oid": "6674c30595590f9fd94595c7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -30122,15 +30122,15 @@ "cohort": "10", "jobTitle": "Software Engineer", "industry": "News/Entertainment/Streaming Platforms", - "cities": ["Reno"], + "cities": ["Indianapolis", "Mexico City"], "_id": { - "$oid": "66723d958f368f285d304301" + "$oid": "6674c30595590f9fd94595c8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -30143,15 +30143,15 @@ "cohort": "38", "jobTitle": "Software Developer", "industry": "News/Entertainment/Streaming Platforms", - "cities": ["Sydney"], + "cities": ["Saint Paul", "Mexico City", "Cleveland"], "_id": { - "$oid": "66723d958f368f285d304302" + "$oid": "6674c30595590f9fd94595c9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -30164,15 +30164,15 @@ "cohort": "36", "jobTitle": "Full Stack Developer", "industry": "Healthcare", - "cities": ["El Paso"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304303" + "$oid": "6674c30595590f9fd94595ca" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -30185,15 +30185,15 @@ "cohort": "36", "jobTitle": "Lead Frontend Engineer", "industry": "Social Impact/Nonprofit", - "cities": ["Kansas City", "Fort Worth"], + "cities": ["Philadelphia", "Wichita"], "_id": { - "$oid": "66723d958f368f285d304304" + "$oid": "6674c30595590f9fd94595cb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -30206,15 +30206,15 @@ "cohort": "9", "jobTitle": "Software Engineer II / Software Engineering Mentor", "industry": "Software / Tech", - "cities": ["Anaheim", "Mesa", "Chicago"], + "cities": ["Madison", "Sydney"], "_id": { - "$oid": "66723d958f368f285d304305" + "$oid": "6674c30595590f9fd94595cc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -30227,15 +30227,15 @@ "cohort": "41", "jobTitle": "Software Engineer", "industry": "Entertainment", - "cities": ["Arlington", "Virginia Beach", "Scottsdale"], + "cities": ["Detroit", "Kansas City"], "_id": { - "$oid": "66723d958f368f285d304306" + "$oid": "6674c30595590f9fd94595cd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.070Z" }, "__v": 0 }, @@ -30250,13 +30250,13 @@ "industry": "IT", "cities": [], "_id": { - "$oid": "66723d958f368f285d304307" + "$oid": "6674c30595590f9fd94595ce" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30269,15 +30269,15 @@ "cohort": "27", "jobTitle": "Software Engineer", "industry": "Entertainment/Media", - "cities": ["Norfolk", "Albuquerque", "Riverside"], + "cities": ["Irving", "Cincinnati", "Arlington"], "_id": { - "$oid": "66723d958f368f285d304308" + "$oid": "6674c30595590f9fd94595cf" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30290,15 +30290,15 @@ "cohort": "31", "jobTitle": "Software Engineer II", "industry": "Software / Tech", - "cities": ["Washington", "Dallas", "New Orleans"], + "cities": ["Scottsdale"], "_id": { - "$oid": "66723d958f368f285d304309" + "$oid": "6674c30595590f9fd94595d0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30313,13 +30313,13 @@ "industry": "Newsroom", "cities": [], "_id": { - "$oid": "66723d958f368f285d30430a" + "$oid": "6674c30595590f9fd94595d1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30332,15 +30332,15 @@ "cohort": "13", "jobTitle": "Software Engineer", "industry": "Co-working spaces", - "cities": [], + "cities": ["Bakersfield", "Long Beach", "Tokyo"], "_id": { - "$oid": "66723d958f368f285d30430b" + "$oid": "6674c30595590f9fd94595d2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30353,15 +30353,15 @@ "cohort": "28", "jobTitle": "Senior Software Engineer", "industry": "Real Estate", - "cities": ["Laredo"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30430c" + "$oid": "6674c30595590f9fd94595d3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30374,15 +30374,15 @@ "cohort": "9", "jobTitle": "Full-Stack Engineer", "industry": "Robotics", - "cities": [], + "cities": ["San Jose", "Beijing"], "_id": { - "$oid": "66723d958f368f285d30430d" + "$oid": "6674c30595590f9fd94595d4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30395,15 +30395,15 @@ "cohort": "50", "jobTitle": "Integration Engineer", "industry": "IT Services", - "cities": ["London"], + "cities": ["Detroit"], "_id": { - "$oid": "66723d958f368f285d30430e" + "$oid": "6674c30595590f9fd94595d5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30416,15 +30416,15 @@ "cohort": "31", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Glendale"], + "cities": ["Tucson"], "_id": { - "$oid": "66723d958f368f285d30430f" + "$oid": "6674c30595590f9fd94595d6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30437,15 +30437,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Riverside", "Jersey City"], + "cities": ["Omaha"], "_id": { - "$oid": "66723d958f368f285d304310" + "$oid": "6674c30595590f9fd94595d7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30458,15 +30458,15 @@ "cohort": "32", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Colorado Springs"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304311" + "$oid": "6674c30595590f9fd94595d8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30479,15 +30479,15 @@ "cohort": "20", "jobTitle": "Founder", "industry": "Live Events", - "cities": [], + "cities": ["Anaheim", "Las Vegas", "Scottsdale"], "_id": { - "$oid": "66723d958f368f285d304312" + "$oid": "6674c30595590f9fd94595d9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30500,15 +30500,15 @@ "cohort": "28", "jobTitle": "Software Engineer", "industry": "Social Media", - "cities": ["Beijing", "Virginia Beach"], + "cities": ["Cleveland", "Tucson"], "_id": { - "$oid": "66723d958f368f285d304313" + "$oid": "6674c30595590f9fd94595da" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30523,13 +30523,13 @@ "industry": "Video Social Networking", "cities": [], "_id": { - "$oid": "66723d958f368f285d304314" + "$oid": "6674c30595590f9fd94595db" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30542,15 +30542,15 @@ "cohort": "46", "jobTitle": "Software Engineer", "industry": "Social", - "cities": ["Fort Wayne"], + "cities": ["Laredo", "Tulsa", "Winston-Salem"], "_id": { - "$oid": "66723d958f368f285d304315" + "$oid": "6674c30595590f9fd94595dc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30563,15 +30563,15 @@ "cohort": "46", "jobTitle": "Software Engineer II, Web Development", "industry": "Dating", - "cities": ["Colorado Springs", "Baltimore", "Mesa"], + "cities": ["Lincoln", "Bakersfield"], "_id": { - "$oid": "66723d958f368f285d304316" + "$oid": "6674c30595590f9fd94595dd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30584,15 +30584,15 @@ "cohort": "24", "jobTitle": "Senior Backend Engineer", "industry": "", - "cities": ["Norfolk", "Durham", "Anaheim"], + "cities": ["Mexico City"], "_id": { - "$oid": "66723d958f368f285d304317" + "$oid": "6674c30595590f9fd94595de" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30605,15 +30605,15 @@ "cohort": "53", "jobTitle": "Frontend Engineer", "industry": "Blockchain/Web3", - "cities": ["Tokyo", "Indianapolis", "Omaha"], + "cities": ["Irvine", "North Las Vegas", "Fort Worth"], "_id": { - "$oid": "66723d958f368f285d304318" + "$oid": "6674c30595590f9fd94595df" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30626,15 +30626,15 @@ "cohort": "18", "jobTitle": "Software Engineer II", "industry": "Restaurant software", - "cities": [], + "cities": ["Greensboro"], "_id": { - "$oid": "66723d958f368f285d304319" + "$oid": "6674c30595590f9fd94595e0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30647,15 +30647,15 @@ "cohort": "2", "jobTitle": "Associate Software Engineer", "industry": "Entertainment", - "cities": ["Irvine"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30431a" + "$oid": "6674c30595590f9fd94595e1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30668,15 +30668,15 @@ "cohort": "41", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Toronto"], + "cities": ["Toledo", "Atlanta"], "_id": { - "$oid": "66723d958f368f285d30431b" + "$oid": "6674c30595590f9fd94595e2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30689,15 +30689,15 @@ "cohort": "15", "jobTitle": "Senior Software Engineer", "industry": "Web Dev for Air Force", - "cities": [], + "cities": ["Cleveland", "Honolulu"], "_id": { - "$oid": "66723d958f368f285d30431c" + "$oid": "6674c30595590f9fd94595e3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30710,15 +30710,15 @@ "cohort": "19", "jobTitle": "Software Engineer", "industry": "Real Estate Tech", - "cities": [], + "cities": ["Dallas", "Albuquerque", "Las Vegas"], "_id": { - "$oid": "66723d958f368f285d30431d" + "$oid": "6674c30595590f9fd94595e4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30731,15 +30731,15 @@ "cohort": "5", "jobTitle": "Senior Engineer II", "industry": "", - "cities": ["Sacramento", "Minneapolis"], + "cities": ["Greensboro"], "_id": { - "$oid": "66723d958f368f285d30431e" + "$oid": "6674c30595590f9fd94595e5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30752,15 +30752,15 @@ "cohort": "22", "jobTitle": "Software Engineer", "industry": "Education tools", - "cities": ["Mumbai", "Virginia Beach", "Berlin"], + "cities": ["Honolulu", "Reno"], "_id": { - "$oid": "66723d958f368f285d30431f" + "$oid": "6674c30595590f9fd94595e6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30773,15 +30773,15 @@ "cohort": "12", "jobTitle": "Software Engineer", "industry": "Automotive", - "cities": [], + "cities": ["Lubbock", "Glendale"], "_id": { - "$oid": "66723d958f368f285d304320" + "$oid": "6674c30595590f9fd94595e7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30796,13 +30796,13 @@ "industry": "Automotive", "cities": [], "_id": { - "$oid": "66723d958f368f285d304321" + "$oid": "6674c30595590f9fd94595e8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30815,15 +30815,15 @@ "cohort": "7", "jobTitle": "Backend Engineer", "industry": "Software / Tech", - "cities": [], + "cities": ["Orlando", "Jersey City"], "_id": { - "$oid": "66723d958f368f285d304322" + "$oid": "6674c30595590f9fd94595e9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30836,15 +30836,15 @@ "cohort": "2", "jobTitle": "Software Engineer", "industry": "Insurance", - "cities": ["Cincinnati", "Riverside"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304323" + "$oid": "6674c30595590f9fd94595ea" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30857,15 +30857,15 @@ "cohort": "41", "jobTitle": "Software engineer", "industry": "Web security", - "cities": ["San Diego"], + "cities": ["Dallas", "Durham"], "_id": { - "$oid": "66723d958f368f285d304324" + "$oid": "6674c30595590f9fd94595eb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30878,15 +30878,15 @@ "cohort": "55", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": [], + "cities": ["Corpus Christi", "Washington", "Philadelphia"], "_id": { - "$oid": "66723d958f368f285d304325" + "$oid": "6674c30595590f9fd94595ec" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30899,15 +30899,15 @@ "cohort": "38", "jobTitle": "Frontend Software Engineer", "industry": "Communication Tech", - "cities": ["Las Vegas", "Winston-Salem", "Pittsburgh"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304326" + "$oid": "6674c30595590f9fd94595ed" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30920,15 +30920,15 @@ "cohort": "39", "jobTitle": "Software Engineer II", "industry": "Software Consultancy", - "cities": ["New York"], + "cities": ["Mesa"], "_id": { - "$oid": "66723d958f368f285d304327" + "$oid": "6674c30595590f9fd94595ee" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30943,13 +30943,13 @@ "industry": "Other", "cities": [], "_id": { - "$oid": "66723d958f368f285d304328" + "$oid": "6674c30595590f9fd94595ef" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30962,15 +30962,15 @@ "cohort": "2", "jobTitle": "Cloud Infrastructure Engineer", "industry": "Ad-Tech", - "cities": ["San Jose", "Cleveland"], + "cities": ["Lexington", "Boston"], "_id": { - "$oid": "66723d958f368f285d304329" + "$oid": "6674c30595590f9fd94595f0" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -30985,13 +30985,13 @@ "industry": "Social Impact", "cities": [], "_id": { - "$oid": "66723d958f368f285d30432a" + "$oid": "6674c30595590f9fd94595f1" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31004,15 +31004,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Irvine"], + "cities": ["Madison"], "_id": { - "$oid": "66723d958f368f285d30432b" + "$oid": "6674c30595590f9fd94595f2" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31025,15 +31025,15 @@ "cohort": "48", "jobTitle": "Software Engineer II", "industry": "Marketing", - "cities": ["Lexington"], + "cities": ["San Francisco", "St. Louis", "Mexico City"], "_id": { - "$oid": "66723d958f368f285d30432c" + "$oid": "6674c30595590f9fd94595f3" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31046,15 +31046,15 @@ "cohort": "17", "jobTitle": "Software Engineer", "industry": "Automotive", - "cities": ["Boston", "Phoenix"], + "cities": ["St. Louis"], "_id": { - "$oid": "66723d958f368f285d30432d" + "$oid": "6674c30595590f9fd94595f4" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31067,15 +31067,15 @@ "cohort": "27", "jobTitle": "full stack developer", "industry": "computer vision", - "cities": [], + "cities": ["Plano", "Glendale"], "_id": { - "$oid": "66723d958f368f285d30432e" + "$oid": "6674c30595590f9fd94595f5" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31088,15 +31088,15 @@ "cohort": "42", "jobTitle": "Associate Software Engineer", "industry": "Health Tech", - "cities": ["Indianapolis", "Albuquerque"], + "cities": ["Albuquerque"], "_id": { - "$oid": "66723d958f368f285d30432f" + "$oid": "6674c30595590f9fd94595f6" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31109,15 +31109,15 @@ "cohort": "22", "jobTitle": "Associate Software Engineer - Backend", "industry": "Healthtech", - "cities": ["Corpus Christi"], + "cities": ["Lexington"], "_id": { - "$oid": "66723d958f368f285d304330" + "$oid": "6674c30595590f9fd94595f7" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31130,15 +31130,15 @@ "cohort": "34", "jobTitle": "Senior Software Engineer", "industry": "Cloud & Network Monitoring", - "cities": ["Detroit"], + "cities": ["Colorado Springs", "Madison"], "_id": { - "$oid": "66723d958f368f285d304331" + "$oid": "6674c30595590f9fd94595f8" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31151,15 +31151,15 @@ "cohort": "40", "jobTitle": "Software Engineer (Personas R&D)", "industry": "Communications", - "cities": [], + "cities": ["Denver"], "_id": { - "$oid": "66723d958f368f285d304332" + "$oid": "6674c30595590f9fd94595f9" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31172,15 +31172,15 @@ "cohort": "11", "jobTitle": "Frontend Engineer", "industry": "IoT", - "cities": ["Garland", "Greensboro"], + "cities": ["Sรฃo Paulo", "Toronto", "Columbus"], "_id": { - "$oid": "66723d958f368f285d304333" + "$oid": "6674c30595590f9fd94595fa" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31193,15 +31193,15 @@ "cohort": "4", "jobTitle": "Front End Developer", "industry": "Software / Tech", - "cities": ["Philadelphia", "Fort Worth"], + "cities": ["Nashville"], "_id": { - "$oid": "66723d958f368f285d304334" + "$oid": "6674c30595590f9fd94595fb" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31214,15 +31214,15 @@ "cohort": "31", "jobTitle": "Software Engineer - Front End", "industry": "Cybersecurity", - "cities": ["New York", "Sydney"], + "cities": ["Memphis", "Irving", "Saint Paul"], "_id": { - "$oid": "66723d958f368f285d304335" + "$oid": "6674c30595590f9fd94595fc" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31235,15 +31235,15 @@ "cohort": "31", "jobTitle": "Jr. Frontend Developer", "industry": "Government", - "cities": [], + "cities": ["Columbus", "Oakland"], "_id": { - "$oid": "66723d958f368f285d304336" + "$oid": "6674c30595590f9fd94595fd" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31256,15 +31256,15 @@ "cohort": "10", "jobTitle": "Backend Engineer", "industry": "Crypto", - "cities": ["San Francisco", "Mumbai", "Chicago"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304337" + "$oid": "6674c30595590f9fd94595fe" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31277,15 +31277,15 @@ "cohort": "31", "jobTitle": "Software Engineer II", "industry": "Transportation", - "cities": ["Corpus Christi", "Boston"], + "cities": ["Houston", "Pittsburgh", "Lincoln"], "_id": { - "$oid": "66723d958f368f285d304338" + "$oid": "6674c30595590f9fd94595ff" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31298,15 +31298,15 @@ "cohort": "31", "jobTitle": "Software Engineer (SE1)", "industry": "Software / Tech", - "cities": [], + "cities": ["Long Beach", "Lexington"], "_id": { - "$oid": "66723d958f368f285d304339" + "$oid": "6674c30595590f9fd9459600" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31319,15 +31319,15 @@ "cohort": "34", "jobTitle": "Software Engineer", "industry": "Aerospace", - "cities": [], + "cities": ["Baltimore"], "_id": { - "$oid": "66723d958f368f285d30433a" + "$oid": "6674c30595590f9fd9459601" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31340,15 +31340,15 @@ "cohort": "34", "jobTitle": "Integrationโ€™s Developer", "industry": "Other", - "cities": ["Toronto"], + "cities": ["Mexico City", "Austin"], "_id": { - "$oid": "66723d958f368f285d30433b" + "$oid": "6674c30595590f9fd9459602" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31361,15 +31361,15 @@ "cohort": "5", "jobTitle": "Senior Consultant", "industry": "Consulting", - "cities": ["Austin", "Toledo"], + "cities": ["New York", "Bakersfield"], "_id": { - "$oid": "66723d958f368f285d30433c" + "$oid": "6674c30595590f9fd9459603" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31382,15 +31382,15 @@ "cohort": "42", "jobTitle": "Full Stack Developer", "industry": "Conversational Service Automation", - "cities": ["Plano", "Newark", "Phoenix"], + "cities": ["Columbus", "Fort Worth", "Colorado Springs"], "_id": { - "$oid": "66723d958f368f285d30433d" + "$oid": "6674c30595590f9fd9459604" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31403,15 +31403,15 @@ "cohort": "19", "jobTitle": "Software Engineer", "industry": "AI / ML", - "cities": [], + "cities": ["Tampa"], "_id": { - "$oid": "66723d958f368f285d30433e" + "$oid": "6674c30595590f9fd9459605" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31424,15 +31424,15 @@ "cohort": "36", "jobTitle": "Developer - IT", "industry": "Aerospace", - "cities": [], + "cities": ["Tampa"], "_id": { - "$oid": "66723d958f368f285d30433f" + "$oid": "6674c30595590f9fd9459606" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31445,15 +31445,15 @@ "cohort": "16", "jobTitle": "Sr Fullstack Developer", "industry": "", - "cities": ["Oklahoma City", "Wichita", "Durham"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304340" + "$oid": "6674c30595590f9fd9459607" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31466,15 +31466,15 @@ "cohort": "7", "jobTitle": "Software Developer ERP", "industry": "Other", - "cities": ["Corpus Christi", "Toronto"], + "cities": ["Denver", "Cincinnati", "Portland"], "_id": { - "$oid": "66723d958f368f285d304341" + "$oid": "6674c30595590f9fd9459608" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31487,15 +31487,15 @@ "cohort": "9", "jobTitle": "Junior application developer", "industry": "Other", - "cities": ["Glendale"], + "cities": ["Minneapolis", "St. Louis", "Chandler"], "_id": { - "$oid": "66723d958f368f285d304342" + "$oid": "6674c30595590f9fd9459609" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31508,15 +31508,15 @@ "cohort": "36", "jobTitle": "Web Developer", "industry": "Art", - "cities": ["Berlin", "Jacksonville"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304343" + "$oid": "6674c30595590f9fd945960a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31529,15 +31529,15 @@ "cohort": "11", "jobTitle": "Senior Software Engineer", "industry": "Tech", - "cities": ["Winston-Salem"], + "cities": ["Chicago", "Buffalo", "Denver"], "_id": { - "$oid": "66723d958f368f285d304344" + "$oid": "6674c30595590f9fd945960b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31550,15 +31550,15 @@ "cohort": "51", "jobTitle": "Full Stack Developer", "industry": "Other", - "cities": ["Austin", "New Orleans"], + "cities": ["Gilbert", "Sydney"], "_id": { - "$oid": "66723d958f368f285d304345" + "$oid": "6674c30595590f9fd945960c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31571,15 +31571,15 @@ "cohort": "22", "jobTitle": "Frontend Engineer", "industry": "Crypto", - "cities": [], + "cities": ["Cincinnati", "Fort Wayne"], "_id": { - "$oid": "66723d958f368f285d304346" + "$oid": "6674c30595590f9fd945960d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31592,15 +31592,15 @@ "cohort": "34", "jobTitle": "Software Engineer", "industry": "CRM", - "cities": [], + "cities": ["Chesapeake", "Beijing", "Bakersfield"], "_id": { - "$oid": "66723d958f368f285d304347" + "$oid": "6674c30595590f9fd945960e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31613,15 +31613,15 @@ "cohort": "36", "jobTitle": "Software Engineer", "industry": "Software Solutions/Developer Tools", - "cities": ["Tokyo", "Corpus Christi", "Cincinnati"], + "cities": ["Detroit", "Durham", "Norfolk"], "_id": { - "$oid": "66723d958f368f285d304348" + "$oid": "6674c30595590f9fd945960f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31634,15 +31634,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Travel", - "cities": ["Aurora"], + "cities": ["Greensboro", "Colorado Springs", "San Francisco"], "_id": { - "$oid": "66723d958f368f285d304349" + "$oid": "6674c30595590f9fd9459610" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31655,15 +31655,15 @@ "cohort": "35", "jobTitle": "Senior Software Engineer", "industry": "Other", - "cities": ["Toronto", "Mumbai", "Santa Ana"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30434a" + "$oid": "6674c30595590f9fd9459611" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31676,15 +31676,15 @@ "cohort": "30", "jobTitle": "Mobile Software Engineer", "industry": "Consumer / Transportation", - "cities": ["St. Petersburg", "Toledo"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30434b" + "$oid": "6674c30595590f9fd9459612" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31697,15 +31697,15 @@ "cohort": "35", "jobTitle": "Application Developer", "industry": "Software / Tech", - "cities": ["Dallas", "Laredo", "Omaha"], + "cities": ["Henderson"], "_id": { - "$oid": "66723d958f368f285d30434c" + "$oid": "6674c30595590f9fd9459613" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31718,15 +31718,15 @@ "cohort": "42", "jobTitle": "Application Developer", "industry": "Other", - "cities": ["Tampa"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30434d" + "$oid": "6674c30595590f9fd9459614" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31739,15 +31739,15 @@ "cohort": "21", "jobTitle": "Full Stack Engineer", "industry": "Consulting", - "cities": [], + "cities": ["Mesa", "Santa Ana", "Arlington"], "_id": { - "$oid": "66723d958f368f285d30434e" + "$oid": "6674c30595590f9fd9459615" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31760,15 +31760,15 @@ "cohort": "41", "jobTitle": "Software Engineer + Solutions Architect", "industry": "E-Commerce", - "cities": [], + "cities": ["Raleigh", "Sรฃo Paulo"], "_id": { - "$oid": "66723d958f368f285d30434f" + "$oid": "6674c30595590f9fd9459616" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31781,15 +31781,15 @@ "cohort": "49", "jobTitle": "Software Developer", "industry": "Healthcare", - "cities": [], + "cities": ["Chula Vista"], "_id": { - "$oid": "66723d958f368f285d304350" + "$oid": "6674c30595590f9fd9459617" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31802,15 +31802,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "Gaming hardware", - "cities": ["Riverside"], + "cities": ["Toronto"], "_id": { - "$oid": "66723d958f368f285d304351" + "$oid": "6674c30595590f9fd9459618" }, "createdAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.827Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31823,15 +31823,15 @@ "cohort": "2", "jobTitle": "Software Engineer", "industry": "Life Sciences", - "cities": ["Laredo", "Nashville"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304352" + "$oid": "6674c30595590f9fd9459619" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31844,15 +31844,15 @@ "cohort": "27", "jobTitle": "Software Engineer", "industry": "Law", - "cities": ["Newark"], + "cities": ["Greensboro", "Seattle"], "_id": { - "$oid": "66723d958f368f285d304353" + "$oid": "6674c30595590f9fd945961a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31865,15 +31865,15 @@ "cohort": "27", "jobTitle": "Backend Developer", "industry": "Legal", - "cities": [], + "cities": ["Seattle"], "_id": { - "$oid": "66723d958f368f285d304354" + "$oid": "6674c30595590f9fd945961b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31886,15 +31886,15 @@ "cohort": "4", "jobTitle": "Software Development Engineer II", "industry": "Media", - "cities": ["Beijing", "Garland"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304355" + "$oid": "6674c30595590f9fd945961c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31907,15 +31907,15 @@ "cohort": "41", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Los Angeles", "Irving", "Toronto"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304356" + "$oid": "6674c30595590f9fd945961d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31928,15 +31928,15 @@ "cohort": "27", "jobTitle": "Software Developer", "industry": "Consulting/Contracting Agency", - "cities": ["Houston", "Norfolk"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304357" + "$oid": "6674c30595590f9fd945961e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31951,13 +31951,13 @@ "industry": "Consulting", "cities": [], "_id": { - "$oid": "66723d958f368f285d304358" + "$oid": "6674c30595590f9fd945961f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31970,15 +31970,15 @@ "cohort": "45", "jobTitle": "Software Engineer, Front-End", "industry": "Software / Tech", - "cities": ["Baltimore", "Greensboro"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304359" + "$oid": "6674c30595590f9fd9459620" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -31991,15 +31991,15 @@ "cohort": "13", "jobTitle": "Senior Full Stack Engineer", "industry": "Software / Tech", - "cities": [], + "cities": ["Phoenix", "Honolulu", "Reno"], "_id": { - "$oid": "66723d958f368f285d30435a" + "$oid": "6674c30595590f9fd9459621" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32012,15 +32012,15 @@ "cohort": "52", "jobTitle": "Application Developer", "industry": "Data Analytics", - "cities": ["Buffalo", "El Paso", "Corpus Christi"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30435b" + "$oid": "6674c30595590f9fd9459622" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32033,15 +32033,15 @@ "cohort": "30", "jobTitle": "Front-End Developer", "industry": "Transportation", - "cities": ["Laredo", "San Francisco"], + "cities": ["Durham", "Fort Worth", "Kansas City"], "_id": { - "$oid": "66723d958f368f285d30435c" + "$oid": "6674c30595590f9fd9459623" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32054,15 +32054,15 @@ "cohort": "23", "jobTitle": "Full Stack Developer", "industry": "Aerospace", - "cities": ["Mumbai", "Oklahoma City", "Oakland"], + "cities": ["Atlanta"], "_id": { - "$oid": "66723d958f368f285d30435d" + "$oid": "6674c30595590f9fd9459624" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32075,15 +32075,15 @@ "cohort": "48", "jobTitle": "Full Stack Developer", "industry": "Aerospace", - "cities": ["Portland", "Sรฃo Paulo", "Winston-Salem"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30435e" + "$oid": "6674c30595590f9fd9459625" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32096,15 +32096,15 @@ "cohort": "5", "jobTitle": "Senior Full Stack Engineer", "industry": "Security", - "cities": ["Denver", "Reno", "Saint Paul"], + "cities": ["Kansas City"], "_id": { - "$oid": "66723d958f368f285d30435f" + "$oid": "6674c30595590f9fd9459626" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32117,15 +32117,15 @@ "cohort": "12", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["London", "Las Vegas", "Beijing"], + "cities": ["Bakersfield"], "_id": { - "$oid": "66723d958f368f285d304360" + "$oid": "6674c30595590f9fd9459627" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32140,13 +32140,13 @@ "industry": "Tech", "cities": [], "_id": { - "$oid": "66723d958f368f285d304361" + "$oid": "6674c30595590f9fd9459628" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32161,13 +32161,13 @@ "industry": "Transportation", "cities": [], "_id": { - "$oid": "66723d958f368f285d304362" + "$oid": "6674c30595590f9fd9459629" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32180,15 +32180,15 @@ "cohort": "52", "jobTitle": "JavaScript Developer", "industry": "Entertainment", - "cities": ["Winston-Salem", "Beijing"], + "cities": ["Plano", "Omaha"], "_id": { - "$oid": "66723d958f368f285d304363" + "$oid": "6674c30595590f9fd945962a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32201,15 +32201,15 @@ "cohort": "39", "jobTitle": "Software Engineer, Platform", "industry": "Commercial Real Estate", - "cities": [], + "cities": ["Washington", "North Las Vegas"], "_id": { - "$oid": "66723d958f368f285d304364" + "$oid": "6674c30595590f9fd945962b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32222,15 +32222,15 @@ "cohort": "39", "jobTitle": "Backend Developer", "industry": "Manufacturing", - "cities": ["Arlington", "Bakersfield"], + "cities": ["Virginia Beach", "North Las Vegas"], "_id": { - "$oid": "66723d958f368f285d304365" + "$oid": "6674c30595590f9fd945962c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32243,15 +32243,15 @@ "cohort": "24", "jobTitle": "Software Engineer", "industry": "Pet Care", - "cities": ["Sydney"], + "cities": ["Tulsa"], "_id": { - "$oid": "66723d958f368f285d304366" + "$oid": "6674c30595590f9fd945962d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32264,15 +32264,15 @@ "cohort": "12", "jobTitle": "Software Engineer", "industry": "Other", - "cities": ["Washington", "Atlanta", "Tokyo"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304367" + "$oid": "6674c30595590f9fd945962e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32285,15 +32285,15 @@ "cohort": "35", "jobTitle": "Software Engineer II", "industry": "Marketing", - "cities": ["Denver"], + "cities": ["Orlando"], "_id": { - "$oid": "66723d958f368f285d304368" + "$oid": "6674c30595590f9fd945962f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32306,15 +32306,15 @@ "cohort": "29", "jobTitle": "Software Engineer", "industry": "Retail", - "cities": [], + "cities": ["North Las Vegas", "Mumbai", "Oakland"], "_id": { - "$oid": "66723d958f368f285d304369" + "$oid": "6674c30595590f9fd9459630" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32327,15 +32327,15 @@ "cohort": "19", "jobTitle": "Software Engineer", "industry": "", - "cities": [], + "cities": ["Cincinnati", "Colorado Springs"], "_id": { - "$oid": "66723d958f368f285d30436a" + "$oid": "6674c30595590f9fd9459631" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32348,15 +32348,15 @@ "cohort": "31", "jobTitle": "Senior Software Engineer", "industry": "Health and Wellness", - "cities": ["Lubbock"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30436b" + "$oid": "6674c30595590f9fd9459632" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32369,15 +32369,15 @@ "cohort": "25", "jobTitle": "Senior Backend Engineer (Node)", "industry": "FinTech (?)", - "cities": ["Pittsburgh", "Buffalo"], + "cities": ["Buffalo"], "_id": { - "$oid": "66723d958f368f285d30436c" + "$oid": "6674c30595590f9fd9459633" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32390,15 +32390,15 @@ "cohort": "24", "jobTitle": "Software Engineer", "industry": "", - "cities": ["Anaheim", "San Francisco", "Chesapeake"], + "cities": ["Lubbock", "Mexico City", "Beijing"], "_id": { - "$oid": "66723d958f368f285d30436d" + "$oid": "6674c30595590f9fd9459634" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32411,15 +32411,15 @@ "cohort": "22", "jobTitle": "BackendSoftware Engineer II", "industry": "Retail", - "cities": ["Boston"], + "cities": ["Omaha"], "_id": { - "$oid": "66723d958f368f285d30436e" + "$oid": "6674c30595590f9fd9459635" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32432,15 +32432,15 @@ "cohort": "13", "jobTitle": "Software Development Engineer II", "industry": "Entertainment", - "cities": ["Denver", "Norfolk"], + "cities": ["Baltimore", "Honolulu", "Memphis"], "_id": { - "$oid": "66723d958f368f285d30436f" + "$oid": "6674c30595590f9fd9459636" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32455,13 +32455,13 @@ "industry": "Electronics", "cities": [], "_id": { - "$oid": "66723d958f368f285d304370" + "$oid": "6674c30595590f9fd9459637" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32474,15 +32474,15 @@ "cohort": "26", "jobTitle": "Senior Software Engineer", "industry": "Consumer Services", - "cities": ["Fort Wayne", "Las Vegas"], + "cities": ["Denver", "New York", "Mesa"], "_id": { - "$oid": "66723d958f368f285d304371" + "$oid": "6674c30595590f9fd9459638" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32497,13 +32497,13 @@ "industry": "HVAC distributor", "cities": [], "_id": { - "$oid": "66723d958f368f285d304372" + "$oid": "6674c30595590f9fd9459639" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32516,15 +32516,15 @@ "cohort": "23", "jobTitle": "Software Engineer L1", "industry": "E-Commerce", - "cities": ["St. Petersburg"], + "cities": ["Sydney"], "_id": { - "$oid": "66723d958f368f285d304373" + "$oid": "6674c30595590f9fd945963a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32537,15 +32537,15 @@ "cohort": "26", "jobTitle": "Software Engineer II", "industry": "Fintech", - "cities": ["Atlanta", "North Las Vegas"], + "cities": ["Fort Worth"], "_id": { - "$oid": "66723d958f368f285d304374" + "$oid": "6674c30595590f9fd945963b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32558,15 +32558,15 @@ "cohort": "12", "jobTitle": "Software Engineer Intern", "industry": "E-Commerce", - "cities": ["Dallas", "Stockton", "Glendale"], + "cities": ["Houston", "Cleveland", "Virginia Beach"], "_id": { - "$oid": "66723d958f368f285d304375" + "$oid": "6674c30595590f9fd945963c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32579,15 +32579,15 @@ "cohort": "36", "jobTitle": "Front End Software Engineer", "industry": "Developer Tools", - "cities": [], + "cities": ["Atlanta", "Bakersfield"], "_id": { - "$oid": "66723d958f368f285d304376" + "$oid": "6674c30595590f9fd945963d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32600,15 +32600,15 @@ "cohort": "2", "jobTitle": "Frontend Software Engineer", "industry": "", - "cities": ["Indianapolis"], + "cities": ["Fresno"], "_id": { - "$oid": "66723d958f368f285d304377" + "$oid": "6674c30595590f9fd945963e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32621,15 +32621,15 @@ "cohort": "5", "jobTitle": "Web Developer", "industry": "Healthcare", - "cities": ["Mesa"], + "cities": ["Memphis", "Paris", "Philadelphia"], "_id": { - "$oid": "66723d958f368f285d304378" + "$oid": "6674c30595590f9fd945963f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32644,13 +32644,13 @@ "industry": "Healtchare", "cities": [], "_id": { - "$oid": "66723d958f368f285d304379" + "$oid": "6674c30595590f9fd9459640" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32663,15 +32663,15 @@ "cohort": "39", "jobTitle": "Mid-level Frontend Engineer", "industry": "Health", - "cities": ["Garland", "St. Louis"], + "cities": ["El Paso"], "_id": { - "$oid": "66723d958f368f285d30437a" + "$oid": "6674c30595590f9fd9459641" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32684,15 +32684,15 @@ "cohort": "38", "jobTitle": "Frontend Software Engineer", "industry": "Health Tech", - "cities": ["Berlin", "Minneapolis"], + "cities": ["Long Beach", "Henderson"], "_id": { - "$oid": "66723d958f368f285d30437b" + "$oid": "6674c30595590f9fd9459642" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32705,15 +32705,15 @@ "cohort": "36", "jobTitle": "Software Engineer (Backend)", "industry": "Health Tech", - "cities": ["Wichita", "Cleveland"], + "cities": ["Cincinnati"], "_id": { - "$oid": "66723d958f368f285d30437c" + "$oid": "6674c30595590f9fd9459643" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32726,15 +32726,15 @@ "cohort": "30", "jobTitle": "Software Engineer", "industry": "Healthcare", - "cities": ["Newark", "Orlando"], + "cities": ["Tucson", "Scottsdale"], "_id": { - "$oid": "66723d958f368f285d30437d" + "$oid": "6674c30595590f9fd9459644" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32747,15 +32747,15 @@ "cohort": "13", "jobTitle": "Senior Software Engineer", "industry": "Foodtech", - "cities": ["Durham", "Sacramento", "San Francisco"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30437e" + "$oid": "6674c30595590f9fd9459645" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32768,15 +32768,15 @@ "cohort": "41", "jobTitle": "Software Engineer", "industry": "Fintech", - "cities": ["Denver", "Louisville", "Tucson"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d30437f" + "$oid": "6674c30595590f9fd9459646" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32789,15 +32789,15 @@ "cohort": "4", "jobTitle": "Microservices Engineer", "industry": "Health Tech", - "cities": ["Arlington", "Tulsa", "Fort Worth"], + "cities": ["Indianapolis", "Phoenix", "Gilbert"], "_id": { - "$oid": "66723d958f368f285d304380" + "$oid": "6674c30595590f9fd9459647" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32810,15 +32810,15 @@ "cohort": "8", "jobTitle": "Software Engineer", "industry": "Real Estate / Hospitality", - "cities": ["Mexico City", "Stockton", "Irvine"], + "cities": ["Bakersfield"], "_id": { - "$oid": "66723d958f368f285d304381" + "$oid": "6674c30595590f9fd9459648" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32831,15 +32831,15 @@ "cohort": "24", "jobTitle": "Server Developer", "industry": "", - "cities": ["Reno"], + "cities": ["Arlington", "Orlando", "Indianapolis"], "_id": { - "$oid": "66723d958f368f285d304382" + "$oid": "6674c30595590f9fd9459649" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32852,15 +32852,15 @@ "cohort": "14", "jobTitle": "Frontend Software Engineer", "industry": "Sports/Entertainment", - "cities": ["Reno"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304383" + "$oid": "6674c30595590f9fd945964a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32873,15 +32873,15 @@ "cohort": "24", "jobTitle": "front end software engineer", "industry": "casino", - "cities": ["Phoenix", "Paris", "Sacramento"], + "cities": ["Berlin", "Oakland"], "_id": { - "$oid": "66723d958f368f285d304384" + "$oid": "6674c30595590f9fd945964b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32894,15 +32894,15 @@ "cohort": "51", "jobTitle": "Software Engineer", "industry": "Real Estate", - "cities": ["Omaha", "Fort Worth", "Atlanta"], + "cities": ["Indianapolis", "Plano", "Lexington"], "_id": { - "$oid": "66723d958f368f285d304385" + "$oid": "6674c30595590f9fd945964c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32915,15 +32915,15 @@ "cohort": "42", "jobTitle": "Senior Full Stack Engineer", "industry": "Fintech, ML, AI", - "cities": ["Orlando"], + "cities": ["Las Vegas"], "_id": { - "$oid": "66723d958f368f285d304386" + "$oid": "6674c30595590f9fd945964d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.071Z" }, "__v": 0 }, @@ -32936,15 +32936,15 @@ "cohort": "53", "jobTitle": "Software Engineer", "industry": "Aerospace", - "cities": ["Cincinnati"], + "cities": ["San Francisco", "Chula Vista", "Santa Ana"], "_id": { - "$oid": "66723d958f368f285d304387" + "$oid": "6674c30595590f9fd945964e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -32957,15 +32957,15 @@ "cohort": "31", "jobTitle": "Software Engineer", "industry": "Business Analytics", - "cities": ["Atlanta"], + "cities": ["Mumbai"], "_id": { - "$oid": "66723d958f368f285d304388" + "$oid": "6674c30595590f9fd945964f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -32978,15 +32978,15 @@ "cohort": "48", "jobTitle": "Software Engineer II", "industry": "Data Analytics", - "cities": [], + "cities": ["Miami"], "_id": { - "$oid": "66723d958f368f285d304389" + "$oid": "6674c30595590f9fd9459650" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -32999,15 +32999,15 @@ "cohort": "27", "jobTitle": "Solutions Engineer", "industry": "Software / Tech", - "cities": ["Louisville", "Denver"], + "cities": ["Stockton", "Toronto", "Buffalo"], "_id": { - "$oid": "66723d958f368f285d30438a" + "$oid": "6674c30595590f9fd9459651" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33020,15 +33020,15 @@ "cohort": "22", "jobTitle": "Senior Full Stack Developer", "industry": "", - "cities": ["Omaha"], + "cities": ["Jacksonville", "Wichita", "Albuquerque"], "_id": { - "$oid": "66723d958f368f285d30438b" + "$oid": "6674c30595590f9fd9459652" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33041,15 +33041,15 @@ "cohort": "46", "jobTitle": "Software Development Engineer", "industry": "FinTech, HR", - "cities": ["Irving", "Toledo", "Bakersfield"], + "cities": ["Seattle"], "_id": { - "$oid": "66723d958f368f285d30438c" + "$oid": "6674c30595590f9fd9459653" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33062,15 +33062,15 @@ "cohort": "20", "jobTitle": "Front-End Developer", "industry": "Intelligent Automation", - "cities": [], + "cities": ["Atlanta", "Milwaukee", "Baltimore"], "_id": { - "$oid": "66723d958f368f285d30438d" + "$oid": "6674c30595590f9fd9459654" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33083,15 +33083,15 @@ "cohort": "40", "jobTitle": "Internal Tools/Customer Support Engineer", "industry": "SaaS", - "cities": [], + "cities": ["Scottsdale"], "_id": { - "$oid": "66723d958f368f285d30438e" + "$oid": "6674c30595590f9fd9459655" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33104,15 +33104,15 @@ "cohort": "11", "jobTitle": "JavaScript Developer - Material Planning", "industry": "IT Services", - "cities": ["Lexington"], + "cities": ["St. Petersburg", "Arlington"], "_id": { - "$oid": "66723d958f368f285d30438f" + "$oid": "6674c30595590f9fd9459656" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33125,15 +33125,15 @@ "cohort": "10", "jobTitle": "Full Stack Developer", "industry": "IT Services", - "cities": ["St. Louis", "El Paso"], + "cities": ["Oklahoma City", "San Jose"], "_id": { - "$oid": "66723d958f368f285d304390" + "$oid": "6674c30595590f9fd9459657" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33146,15 +33146,15 @@ "cohort": "11", "jobTitle": "Associate Developer", "industry": "Consulting", - "cities": ["Milwaukee", "Gilbert", "Jersey City"], + "cities": ["Chandler"], "_id": { - "$oid": "66723d958f368f285d304391" + "$oid": "6674c30595590f9fd9459658" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33167,15 +33167,15 @@ "cohort": "10", "jobTitle": "Software Engineer", "industry": "IT Services", - "cities": ["New York", "Stockton"], + "cities": ["Lubbock"], "_id": { - "$oid": "66723d958f368f285d304392" + "$oid": "6674c30595590f9fd9459659" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33188,15 +33188,15 @@ "cohort": "19", "jobTitle": "Software Engineer", "industry": "Digital Marketing", - "cities": [], + "cities": ["Tokyo", "San Antonio"], "_id": { - "$oid": "66723d958f368f285d304393" + "$oid": "6674c30595590f9fd945965a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33209,15 +33209,15 @@ "cohort": "59", "jobTitle": "Software Develooper", "industry": "Consulting", - "cities": ["Henderson", "Baltimore", "Norfolk"], + "cities": ["Garland", "Sรฃo Paulo"], "_id": { - "$oid": "66723d958f368f285d304394" + "$oid": "6674c30595590f9fd945965b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33230,15 +33230,15 @@ "cohort": "43", "jobTitle": "Software Engineer", "industry": "Health and Wellness", - "cities": ["Milwaukee"], + "cities": ["St. Louis", "Miami"], "_id": { - "$oid": "66723d958f368f285d304395" + "$oid": "6674c30595590f9fd945965c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33251,15 +33251,15 @@ "cohort": "38", "jobTitle": "Jr. Front End Engineer", "industry": "IoT", - "cities": ["Kansas City"], + "cities": ["Chesapeake", "Virginia Beach"], "_id": { - "$oid": "66723d958f368f285d304396" + "$oid": "6674c30595590f9fd945965d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33272,15 +33272,15 @@ "cohort": "25", "jobTitle": "Software Engineer II", "industry": "Advertising / Telecom", - "cities": ["Gilbert", "Fresno", "Raleigh"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d304397" + "$oid": "6674c30595590f9fd945965e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33293,15 +33293,15 @@ "cohort": "25", "jobTitle": "Software Engineer", "industry": "Adtech", - "cities": ["Mexico City", "Toronto"], + "cities": ["San Francisco", "Cincinnati"], "_id": { - "$oid": "66723d958f368f285d304398" + "$oid": "6674c30595590f9fd945965f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33314,15 +33314,15 @@ "cohort": "22", "jobTitle": "Software Engineer 2", "industry": "", - "cities": ["Toronto", "Durham", "Miami"], + "cities": ["Oakland", "Atlanta"], "_id": { - "$oid": "66723d958f368f285d304399" + "$oid": "6674c30595590f9fd9459660" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33335,15 +33335,15 @@ "cohort": "52", "jobTitle": "Jr. UI Developer", "industry": "IT Services", - "cities": ["San Francisco"], + "cities": ["Colorado Springs", "Mumbai", "Fort Wayne"], "_id": { - "$oid": "66723d958f368f285d30439a" + "$oid": "6674c30595590f9fd9459661" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33356,15 +33356,15 @@ "cohort": "49", "jobTitle": "Software Apps Engineer I", "industry": "Software / Tech", - "cities": ["Fresno", "Pittsburgh", "Beijing"], + "cities": ["Philadelphia"], "_id": { - "$oid": "66723d958f368f285d30439b" + "$oid": "6674c30595590f9fd9459662" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33377,15 +33377,15 @@ "cohort": "3", "jobTitle": "Software Engineer", "industry": "Other", - "cities": [], + "cities": ["Minneapolis"], "_id": { - "$oid": "66723d958f368f285d30439c" + "$oid": "6674c30595590f9fd9459663" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33398,15 +33398,15 @@ "cohort": "8", "jobTitle": "Web Developer", "industry": "Healthtech/Healthcare", - "cities": ["Seattle", "Mexico City"], + "cities": ["San Francisco", "Newark", "Indianapolis"], "_id": { - "$oid": "66723d958f368f285d30439d" + "$oid": "6674c30595590f9fd9459664" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33419,15 +33419,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "Software / Tech", - "cities": ["Henderson", "Mesa"], + "cities": ["Santa Ana", "Los Angeles", "Dallas"], "_id": { - "$oid": "66723d958f368f285d30439e" + "$oid": "6674c30595590f9fd9459665" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33440,15 +33440,15 @@ "cohort": "15", "jobTitle": "UX Designer & Developer (It's complicated - let me know if you want more details)", "industry": "Financial Services", - "cities": [], + "cities": ["Newark", "Fresno"], "_id": { - "$oid": "66723d958f368f285d30439f" + "$oid": "6674c30595590f9fd9459666" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33461,15 +33461,15 @@ "cohort": "1", "jobTitle": "Software Engineer II", "industry": "Fintech", - "cities": ["Anchorage", "Memphis", "Colorado Springs"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3043a0" + "$oid": "6674c30595590f9fd9459667" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33482,15 +33482,15 @@ "cohort": "2", "jobTitle": "Software Engineer II", "industry": "Healthtech/Healthcare", - "cities": [], + "cities": ["Albuquerque", "Santa Ana"], "_id": { - "$oid": "66723d958f368f285d3043a1" + "$oid": "6674c30595590f9fd9459668" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33503,15 +33503,15 @@ "cohort": "4", "jobTitle": "Software Engineer", "industry": "Entrepreneurship", - "cities": ["Fort Wayne", "Philadelphia"], + "cities": ["Raleigh"], "_id": { - "$oid": "66723d958f368f285d3043a2" + "$oid": "6674c30595590f9fd9459669" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33524,15 +33524,15 @@ "cohort": "46", "jobTitle": "Software Engineer II", "industry": "SaaS, business creation services", - "cities": ["Lincoln", "Pittsburgh", "Henderson"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3043a3" + "$oid": "6674c30595590f9fd945966a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33545,15 +33545,15 @@ "cohort": "42", "jobTitle": "Senior Software Engineer", "industry": "Software/Tech", - "cities": ["Lexington"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3043a4" + "$oid": "6674c30595590f9fd945966b" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33568,13 +33568,13 @@ "industry": "med tech", "cities": [], "_id": { - "$oid": "66723d958f368f285d3043a5" + "$oid": "6674c30595590f9fd945966c" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33587,15 +33587,15 @@ "cohort": "15", "jobTitle": "Frontend Engineer", "industry": "Computer & Network Security", - "cities": ["New Orleans", "Santa Ana", "Long Beach"], + "cities": ["Norfolk", "London", "Mexico City"], "_id": { - "$oid": "66723d958f368f285d3043a6" + "$oid": "6674c30595590f9fd945966d" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33608,15 +33608,15 @@ "cohort": "36", "jobTitle": "Senior Software Engineer", "industry": "Fintech", - "cities": ["Corpus Christi", "Fresno", "Greensboro"], + "cities": ["Saint Paul", "Los Angeles"], "_id": { - "$oid": "66723d958f368f285d3043a7" + "$oid": "6674c30595590f9fd945966e" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33629,15 +33629,15 @@ "cohort": "46", "jobTitle": "Software Engineer", "industry": "Data", - "cities": ["Santa Ana", "Bakersfield", "Fort Wayne"], + "cities": ["Saint Paul", "Wichita"], "_id": { - "$oid": "66723d958f368f285d3043a8" + "$oid": "6674c30595590f9fd945966f" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33650,15 +33650,15 @@ "cohort": "35", "jobTitle": "Full Stack Engineer", "industry": "Entertainment", - "cities": ["San Francisco"], + "cities": ["Bakersfield", "Henderson", "Durham"], "_id": { - "$oid": "66723d958f368f285d3043a9" + "$oid": "6674c30595590f9fd9459670" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33671,15 +33671,15 @@ "cohort": "37", "jobTitle": "Software Engineer", "industry": "Entertainment", - "cities": ["Lincoln", "Mesa", "Beijing"], + "cities": ["Mesa", "San Jose"], "_id": { - "$oid": "66723d958f368f285d3043aa" + "$oid": "6674c30595590f9fd9459671" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33694,13 +33694,13 @@ "industry": "Real Estate", "cities": [], "_id": { - "$oid": "66723d958f368f285d3043ab" + "$oid": "6674c30695590f9fd9459672" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33713,15 +33713,15 @@ "cohort": "10", "jobTitle": "Founding Software Engineer", "industry": "Security", - "cities": ["Albuquerque"], + "cities": ["Philadelphia", "Saint Paul", "Dallas"], "_id": { - "$oid": "66723d958f368f285d3043ac" + "$oid": "6674c30695590f9fd9459673" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33734,15 +33734,15 @@ "cohort": "36", "jobTitle": "Software Engineer (Front End)", "industry": "Transportation", - "cities": ["Scottsdale", "Indianapolis", "Corpus Christi"], + "cities": [], "_id": { - "$oid": "66723d958f368f285d3043ad" + "$oid": "6674c30695590f9fd9459674" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33755,15 +33755,15 @@ "cohort": "10", "jobTitle": "Senior Software Engineer", "industry": "Health Care", - "cities": ["Bakersfield", "Chicago"], + "cities": ["Atlanta", "New York"], "_id": { - "$oid": "66723d958f368f285d3043ae" + "$oid": "6674c30695590f9fd9459675" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33776,15 +33776,15 @@ "cohort": "46", "jobTitle": "Software Engineer III", "industry": "Other", - "cities": ["Chicago", "Pittsburgh", "Tucson"], + "cities": ["Newark", "Anchorage"], "_id": { - "$oid": "66723d958f368f285d3043af" + "$oid": "6674c30695590f9fd9459676" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33797,15 +33797,15 @@ "cohort": "56", "jobTitle": "Data Systems Engineer", "industry": "Other", - "cities": ["Bakersfield"], + "cities": ["Corpus Christi"], "_id": { - "$oid": "66723d958f368f285d3043b0" + "$oid": "6674c30695590f9fd9459677" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33818,15 +33818,15 @@ "cohort": "22", "jobTitle": "Full Stack Engineer", "industry": "education, financial services, banking", - "cities": [], + "cities": ["Milwaukee", "Mesa"], "_id": { - "$oid": "66723d958f368f285d3043b1" + "$oid": "6674c30695590f9fd9459678" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33841,13 +33841,13 @@ "industry": "Telecommunications", "cities": [], "_id": { - "$oid": "66723d958f368f285d3043b2" + "$oid": "6674c30695590f9fd9459679" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 }, @@ -33860,15 +33860,15 @@ "cohort": "4", "jobTitle": "Senior DevSecOps Engineer", "industry": "Software / Tech", - "cities": ["Columbus", "Paris", "Minneapolis"], + "cities": ["Memphis"], "_id": { - "$oid": "66723d958f368f285d3043b3" + "$oid": "6674c30695590f9fd945967a" }, "createdAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:21.828Z" + "$date": "2024-06-21T00:02:14.072Z" }, "__v": 0 } diff --git a/scripts/db/mongo-dev-init/MOCK_FORUMS.json b/scripts/db/mongo-dev-init/MOCK_FORUMS.json index eed03cfd..334ed3bd 100644 --- a/scripts/db/mongo-dev-init/MOCK_FORUMS.json +++ b/scripts/db/mongo-dev-init/MOCK_FORUMS.json @@ -3,13 +3,13 @@ "title": "Code Crunch & Job Hunt: Battle Logs", "description": "Share your epic (or tragic) tales from the job search battlefield. Did you bravely conquer the coding test, or did it conquer you?", "_id": { - "$oid": "66723dae8f368f285d304b92" + "$oid": "6674c31e95590f9fd9459e59" }, "createdAt": { - "$date": "2024-06-19T02:08:46.282Z" + "$date": "2024-06-21T00:02:38.535Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:46.282Z" + "$date": "2024-06-21T00:02:38.535Z" }, "__v": 0 }, @@ -17,13 +17,13 @@ "title": "Debugging My Resume", "description": "Need help squashing those pesky resume bugs? Post your CV here and let the community help you refactor it into a job offer magnet.", "_id": { - "$oid": "66723dae8f368f285d304b93" + "$oid": "6674c31e95590f9fd9459e5a" }, "createdAt": { - "$date": "2024-06-19T02:08:46.282Z" + "$date": "2024-06-21T00:02:38.536Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:46.282Z" + "$date": "2024-06-21T00:02:38.536Z" }, "__v": 0 }, @@ -31,13 +31,13 @@ "title": "Interview Nightmares & Dream Jobs", "description": "Spill the beans on your worst interview disasters and celebrate those rare moments when it actually went well. Misery loves company, and so do success stories!", "_id": { - "$oid": "66723dae8f368f285d304b94" + "$oid": "6674c31e95590f9fd9459e5b" }, "createdAt": { - "$date": "2024-06-19T02:08:46.282Z" + "$date": "2024-06-21T00:02:38.536Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:46.282Z" + "$date": "2024-06-21T00:02:38.536Z" }, "__v": 0 }, @@ -45,13 +45,13 @@ "title": "HR: Humans or Robots?", "description": "Ever wonder if that HR person was a cleverly disguised bot? Share your weirdest and most robotic interactions with hiring departments.", "_id": { - "$oid": "66723dae8f368f285d304b95" + "$oid": "6674c31e95590f9fd9459e5c" }, "createdAt": { - "$date": "2024-06-19T02:08:46.282Z" + "$date": "2024-06-21T00:02:38.536Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:46.282Z" + "$date": "2024-06-21T00:02:38.536Z" }, "__v": 0 }, @@ -59,13 +59,13 @@ "title": "Salary Negotiation: The Boss Fight", "description": "Tips, tricks, and epic fails from the final boss battle of job hunting: salary negotiations. Did you get the loot or just a consolation prize?", "_id": { - "$oid": "66723dae8f368f285d304b96" + "$oid": "6674c31e95590f9fd9459e5d" }, "createdAt": { - "$date": "2024-06-19T02:08:46.282Z" + "$date": "2024-06-21T00:02:38.536Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:46.282Z" + "$date": "2024-06-21T00:02:38.536Z" }, "__v": 0 } diff --git a/scripts/db/mongo-dev-init/MOCK_GRADUATE_INVITATIONS.json b/scripts/db/mongo-dev-init/MOCK_GRADUATE_INVITATIONS.json index 3cd90331..be2dee54 100644 --- a/scripts/db/mongo-dev-init/MOCK_GRADUATE_INVITATIONS.json +++ b/scripts/db/mongo-dev-init/MOCK_GRADUATE_INVITATIONS.json @@ -8,18 +8,18 @@ "isRegistered": true, "firstName": "Alonso", "lastName": "Carradice", - "cohort": "FTRI 69", + "cohort": "ECRI 96", "registeredAt": { "$date": "1970-01-20T09:52:04.950Z" }, "_id": { - "$oid": "66723da58f368f285d304a01" + "$oid": "6674c31595590f9fd9459cc8" }, "createdAt": { - "$date": "2024-06-19T02:08:37.643Z" + "$date": "2024-06-21T00:02:29.845Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.643Z" + "$date": "2024-06-21T00:02:29.845Z" }, "__v": 0 }, @@ -32,18 +32,18 @@ "isRegistered": false, "firstName": "Wilton", "lastName": "Bleaden", - "cohort": "PTRI 93", + "cohort": "ECRI 89", "registeredAt": { "$date": "1970-01-20T19:09:48.748Z" }, "_id": { - "$oid": "66723da58f368f285d304a02" + "$oid": "6674c31595590f9fd9459cc9" }, "createdAt": { - "$date": "2024-06-19T02:08:37.643Z" + "$date": "2024-06-21T00:02:29.845Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.643Z" + "$date": "2024-06-21T00:02:29.845Z" }, "__v": 0 }, @@ -56,18 +56,18 @@ "isRegistered": true, "firstName": "Gannon", "lastName": "Halso", - "cohort": "FTRI 0", + "cohort": "WCRI 8", "registeredAt": { "$date": "1970-01-20T12:18:04.782Z" }, "_id": { - "$oid": "66723da58f368f285d304a03" + "$oid": "6674c31595590f9fd9459cca" }, "createdAt": { - "$date": "2024-06-19T02:08:37.643Z" + "$date": "2024-06-21T00:02:29.845Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.643Z" + "$date": "2024-06-21T00:02:29.845Z" }, "__v": 0 }, @@ -80,18 +80,18 @@ "isRegistered": false, "firstName": "Doralynn", "lastName": "Grinter", - "cohort": "CTRI 6", + "cohort": "ECRI 84", "registeredAt": { "$date": "1970-01-20T14:33:07.127Z" }, "_id": { - "$oid": "66723da58f368f285d304a04" + "$oid": "6674c31595590f9fd9459ccb" }, "createdAt": { - "$date": "2024-06-19T02:08:37.644Z" + "$date": "2024-06-21T00:02:29.845Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.644Z" + "$date": "2024-06-21T00:02:29.845Z" }, "__v": 0 }, @@ -104,18 +104,18 @@ "isRegistered": true, "firstName": "Winn", "lastName": "Weatherley", - "cohort": "WCRI 39", + "cohort": "ECRI 74", "registeredAt": { "$date": "1970-01-20T19:01:06.414Z" }, "_id": { - "$oid": "66723da58f368f285d304a05" + "$oid": "6674c31595590f9fd9459ccc" }, "createdAt": { - "$date": "2024-06-19T02:08:37.644Z" + "$date": "2024-06-21T00:02:29.846Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.644Z" + "$date": "2024-06-21T00:02:29.846Z" }, "__v": 0 }, @@ -128,18 +128,18 @@ "isRegistered": true, "firstName": "Hermon", "lastName": "Regis", - "cohort": "NYC 5", + "cohort": "PTRI 22", "registeredAt": { "$date": "1970-01-20T14:35:42.909Z" }, "_id": { - "$oid": "66723da58f368f285d304a06" + "$oid": "6674c31595590f9fd9459ccd" }, "createdAt": { - "$date": "2024-06-19T02:08:37.644Z" + "$date": "2024-06-21T00:02:29.846Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.644Z" + "$date": "2024-06-21T00:02:29.846Z" }, "__v": 0 }, @@ -152,18 +152,18 @@ "isRegistered": false, "firstName": "Cordie", "lastName": "Rousby", - "cohort": "LA 22", + "cohort": "CTRI 71", "registeredAt": { "$date": "1970-01-20T11:13:45.913Z" }, "_id": { - "$oid": "66723da58f368f285d304a07" + "$oid": "6674c31595590f9fd9459cce" }, "createdAt": { - "$date": "2024-06-19T02:08:37.644Z" + "$date": "2024-06-21T00:02:29.846Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.644Z" + "$date": "2024-06-21T00:02:29.846Z" }, "__v": 0 }, @@ -176,18 +176,18 @@ "isRegistered": false, "firstName": "Maureene", "lastName": "Riseborough", - "cohort": "NYC 14", + "cohort": "CTRI 92", "registeredAt": { "$date": "1970-01-20T12:21:32.791Z" }, "_id": { - "$oid": "66723da58f368f285d304a08" + "$oid": "6674c31595590f9fd9459ccf" }, "createdAt": { - "$date": "2024-06-19T02:08:37.644Z" + "$date": "2024-06-21T00:02:29.846Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.644Z" + "$date": "2024-06-21T00:02:29.846Z" }, "__v": 0 }, @@ -200,18 +200,18 @@ "isRegistered": false, "firstName": "Orelle", "lastName": "Lawson", - "cohort": "CTRI 44", + "cohort": "WCRI 84", "registeredAt": { "$date": "1970-01-20T13:15:33.880Z" }, "_id": { - "$oid": "66723da58f368f285d304a09" + "$oid": "6674c31595590f9fd9459cd0" }, "createdAt": { - "$date": "2024-06-19T02:08:37.644Z" + "$date": "2024-06-21T00:02:29.846Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.644Z" + "$date": "2024-06-21T00:02:29.846Z" }, "__v": 0 }, @@ -224,18 +224,18 @@ "isRegistered": false, "firstName": "Jess", "lastName": "Emer", - "cohort": "PTRI 80", + "cohort": "LA 74", "registeredAt": { "$date": "1970-01-20T13:02:37.374Z" }, "_id": { - "$oid": "66723da58f368f285d304a0a" + "$oid": "6674c31595590f9fd9459cd1" }, "createdAt": { - "$date": "2024-06-19T02:08:37.644Z" + "$date": "2024-06-21T00:02:29.846Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.644Z" + "$date": "2024-06-21T00:02:29.846Z" }, "__v": 0 }, @@ -248,18 +248,18 @@ "isRegistered": true, "firstName": "Mariel", "lastName": "Tubbles", - "cohort": "PTRI 10", + "cohort": "PTRI 50", "registeredAt": { "$date": "1970-01-20T10:33:43.674Z" }, "_id": { - "$oid": "66723da58f368f285d304a0b" + "$oid": "6674c31595590f9fd9459cd2" }, "createdAt": { - "$date": "2024-06-19T02:08:37.644Z" + "$date": "2024-06-21T00:02:29.846Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.644Z" + "$date": "2024-06-21T00:02:29.846Z" }, "__v": 0 }, @@ -272,18 +272,18 @@ "isRegistered": true, "firstName": "Perice", "lastName": "Keightley", - "cohort": "WCRI 3", + "cohort": "FTRI 82", "registeredAt": { "$date": "1970-01-20T13:31:16.231Z" }, "_id": { - "$oid": "66723da58f368f285d304a0c" + "$oid": "6674c31595590f9fd9459cd3" }, "createdAt": { - "$date": "2024-06-19T02:08:37.645Z" + "$date": "2024-06-21T00:02:29.846Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.645Z" + "$date": "2024-06-21T00:02:29.846Z" }, "__v": 0 }, @@ -296,18 +296,18 @@ "isRegistered": false, "firstName": "Eula", "lastName": "Falcus", - "cohort": "ECRI 37", + "cohort": "ECRI 12", "registeredAt": { "$date": "1970-01-20T18:29:02.836Z" }, "_id": { - "$oid": "66723da58f368f285d304a0d" + "$oid": "6674c31595590f9fd9459cd4" }, "createdAt": { - "$date": "2024-06-19T02:08:37.645Z" + "$date": "2024-06-21T00:02:29.847Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.645Z" + "$date": "2024-06-21T00:02:29.847Z" }, "__v": 0 }, @@ -320,18 +320,18 @@ "isRegistered": true, "firstName": "Jacqui", "lastName": "Baldini", - "cohort": "LA 69", + "cohort": "LA 96", "registeredAt": { "$date": "1970-01-20T14:11:21.038Z" }, "_id": { - "$oid": "66723da58f368f285d304a0e" + "$oid": "6674c31595590f9fd9459cd5" }, "createdAt": { - "$date": "2024-06-19T02:08:37.645Z" + "$date": "2024-06-21T00:02:29.847Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.645Z" + "$date": "2024-06-21T00:02:29.847Z" }, "__v": 0 }, @@ -344,18 +344,18 @@ "isRegistered": true, "firstName": "Scottie", "lastName": "Northridge", - "cohort": "CTRI 6", + "cohort": "LA 61", "registeredAt": { "$date": "1970-01-20T13:47:43.603Z" }, "_id": { - "$oid": "66723da58f368f285d304a0f" + "$oid": "6674c31595590f9fd9459cd6" }, "createdAt": { - "$date": "2024-06-19T02:08:37.645Z" + "$date": "2024-06-21T00:02:29.847Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.645Z" + "$date": "2024-06-21T00:02:29.847Z" }, "__v": 0 }, @@ -368,18 +368,18 @@ "isRegistered": false, "firstName": "Dorie", "lastName": "Hedger", - "cohort": "ECRI 37", + "cohort": "LA 66", "registeredAt": { "$date": "1970-01-20T12:40:26.473Z" }, "_id": { - "$oid": "66723da58f368f285d304a10" + "$oid": "6674c31595590f9fd9459cd7" }, "createdAt": { - "$date": "2024-06-19T02:08:37.645Z" + "$date": "2024-06-21T00:02:29.847Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.645Z" + "$date": "2024-06-21T00:02:29.847Z" }, "__v": 0 }, @@ -392,18 +392,18 @@ "isRegistered": false, "firstName": "Nadia", "lastName": "Skeen", - "cohort": "FTRI 38", + "cohort": "WCRI 68", "registeredAt": { "$date": "1970-01-20T14:58:04.577Z" }, "_id": { - "$oid": "66723da58f368f285d304a11" + "$oid": "6674c31595590f9fd9459cd8" }, "createdAt": { - "$date": "2024-06-19T02:08:37.645Z" + "$date": "2024-06-21T00:02:29.847Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.645Z" + "$date": "2024-06-21T00:02:29.847Z" }, "__v": 0 }, @@ -416,18 +416,18 @@ "isRegistered": true, "firstName": "Mickie", "lastName": "Groom", - "cohort": "PTRI 97", + "cohort": "WCRI 23", "registeredAt": { "$date": "1970-01-20T13:47:19.049Z" }, "_id": { - "$oid": "66723da58f368f285d304a12" + "$oid": "6674c31595590f9fd9459cd9" }, "createdAt": { - "$date": "2024-06-19T02:08:37.645Z" + "$date": "2024-06-21T00:02:29.847Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.645Z" + "$date": "2024-06-21T00:02:29.847Z" }, "__v": 0 }, @@ -440,18 +440,18 @@ "isRegistered": true, "firstName": "Leticia", "lastName": "Kupisz", - "cohort": "CTRI 83", + "cohort": "PTRI 96", "registeredAt": { "$date": "1970-01-20T11:33:31.294Z" }, "_id": { - "$oid": "66723da58f368f285d304a13" + "$oid": "6674c31595590f9fd9459cda" }, "createdAt": { - "$date": "2024-06-19T02:08:37.645Z" + "$date": "2024-06-21T00:02:29.847Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.645Z" + "$date": "2024-06-21T00:02:29.847Z" }, "__v": 0 }, @@ -464,18 +464,18 @@ "isRegistered": false, "firstName": "Babb", "lastName": "Dean", - "cohort": "ECRI 29", + "cohort": "LA 73", "registeredAt": { "$date": "1970-01-20T12:25:42.997Z" }, "_id": { - "$oid": "66723da58f368f285d304a14" + "$oid": "6674c31595590f9fd9459cdb" }, "createdAt": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.847Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.847Z" }, "__v": 0 }, @@ -488,18 +488,18 @@ "isRegistered": false, "firstName": "Burtie", "lastName": "Lilley", - "cohort": "ECRI 86", + "cohort": "NYC 10", "registeredAt": { "$date": "1970-01-20T10:38:22.087Z" }, "_id": { - "$oid": "66723da58f368f285d304a15" + "$oid": "6674c31595590f9fd9459cdc" }, "createdAt": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.847Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.847Z" }, "__v": 0 }, @@ -512,18 +512,18 @@ "isRegistered": true, "firstName": "Dorelle", "lastName": "Woodland", - "cohort": "NYC 49", + "cohort": "CTRI 79", "registeredAt": { "$date": "1970-01-20T21:05:10.004Z" }, "_id": { - "$oid": "66723da58f368f285d304a16" + "$oid": "6674c31595590f9fd9459cdd" }, "createdAt": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.847Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.847Z" }, "__v": 0 }, @@ -536,18 +536,18 @@ "isRegistered": false, "firstName": "Burk", "lastName": "Dunlap", - "cohort": "WCRI 32", + "cohort": "ECRI 1", "registeredAt": { "$date": "1970-01-20T10:46:36.642Z" }, "_id": { - "$oid": "66723da58f368f285d304a17" + "$oid": "6674c31595590f9fd9459cde" }, "createdAt": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.848Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.848Z" }, "__v": 0 }, @@ -560,18 +560,18 @@ "isRegistered": false, "firstName": "Cecilius", "lastName": "Darrel", - "cohort": "PTRI 92", + "cohort": "NYC 45", "registeredAt": { "$date": "1970-01-20T18:04:03.899Z" }, "_id": { - "$oid": "66723da58f368f285d304a18" + "$oid": "6674c31595590f9fd9459cdf" }, "createdAt": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.848Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.848Z" }, "__v": 0 }, @@ -584,18 +584,18 @@ "isRegistered": true, "firstName": "Brod", "lastName": "Budcock", - "cohort": "FTRI 69", + "cohort": "ECRI 94", "registeredAt": { "$date": "1970-01-20T09:40:43.900Z" }, "_id": { - "$oid": "66723da58f368f285d304a19" + "$oid": "6674c31595590f9fd9459ce0" }, "createdAt": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.848Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.848Z" }, "__v": 0 }, @@ -608,18 +608,18 @@ "isRegistered": false, "firstName": "Bayard", "lastName": "Thickin", - "cohort": "LA 72", + "cohort": "PTRI 17", "registeredAt": { "$date": "1970-01-20T14:59:50.750Z" }, "_id": { - "$oid": "66723da58f368f285d304a1a" + "$oid": "6674c31595590f9fd9459ce1" }, "createdAt": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.848Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.848Z" }, "__v": 0 }, @@ -632,18 +632,18 @@ "isRegistered": true, "firstName": "Lorenza", "lastName": "Larrington", - "cohort": "FTRI 61", + "cohort": "ECRI 92", "registeredAt": { "$date": "1970-01-20T11:34:38.978Z" }, "_id": { - "$oid": "66723da58f368f285d304a1b" + "$oid": "6674c31595590f9fd9459ce2" }, "createdAt": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.848Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.848Z" }, "__v": 0 }, @@ -656,18 +656,18 @@ "isRegistered": true, "firstName": "Ranna", "lastName": "Stanton", - "cohort": "NYC 55", + "cohort": "FTRI 42", "registeredAt": { "$date": "1970-01-20T14:35:02.332Z" }, "_id": { - "$oid": "66723da58f368f285d304a1c" + "$oid": "6674c31595590f9fd9459ce3" }, "createdAt": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.848Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.848Z" }, "__v": 0 }, @@ -680,18 +680,18 @@ "isRegistered": false, "firstName": "Silvan", "lastName": "Cowdroy", - "cohort": "ECRI 43", + "cohort": "PTRI 38", "registeredAt": { "$date": "1970-01-20T15:46:38.807Z" }, "_id": { - "$oid": "66723da58f368f285d304a1d" + "$oid": "6674c31595590f9fd9459ce4" }, "createdAt": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.848Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.848Z" }, "__v": 0 }, @@ -704,18 +704,18 @@ "isRegistered": false, "firstName": "Pepita", "lastName": "Skirling", - "cohort": "WCRI 90", + "cohort": "FTRI 75", "registeredAt": { "$date": "1970-01-20T17:04:37.019Z" }, "_id": { - "$oid": "66723da58f368f285d304a1e" + "$oid": "6674c31595590f9fd9459ce5" }, "createdAt": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.848Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.848Z" }, "__v": 0 }, @@ -728,18 +728,18 @@ "isRegistered": true, "firstName": "Brinna", "lastName": "Spensley", - "cohort": "PTRI 14", + "cohort": "LA 15", "registeredAt": { "$date": "1970-01-20T13:33:35.190Z" }, "_id": { - "$oid": "66723da58f368f285d304a1f" + "$oid": "6674c31595590f9fd9459ce6" }, "createdAt": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.848Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.848Z" }, "__v": 0 }, @@ -752,18 +752,18 @@ "isRegistered": true, "firstName": "Leta", "lastName": "Blais", - "cohort": "ECRI 27", + "cohort": "PTRI 42", "registeredAt": { "$date": "1970-01-20T17:20:30.885Z" }, "_id": { - "$oid": "66723da58f368f285d304a20" + "$oid": "6674c31595590f9fd9459ce7" }, "createdAt": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.849Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.646Z" + "$date": "2024-06-21T00:02:29.849Z" }, "__v": 0 }, @@ -776,18 +776,18 @@ "isRegistered": true, "firstName": "Onfre", "lastName": "Le Huquet", - "cohort": "WCRI 22", + "cohort": "LA 15", "registeredAt": { "$date": "1970-01-20T16:24:15.434Z" }, "_id": { - "$oid": "66723da58f368f285d304a21" + "$oid": "6674c31595590f9fd9459ce8" }, "createdAt": { - "$date": "2024-06-19T02:08:37.647Z" + "$date": "2024-06-21T00:02:29.849Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.647Z" + "$date": "2024-06-21T00:02:29.849Z" }, "__v": 0 }, @@ -800,18 +800,18 @@ "isRegistered": false, "firstName": "Cairistiona", "lastName": "Edworthie", - "cohort": "LA 34", + "cohort": "ECRI 17", "registeredAt": { "$date": "1970-01-20T14:57:07.010Z" }, "_id": { - "$oid": "66723da58f368f285d304a22" + "$oid": "6674c31595590f9fd9459ce9" }, "createdAt": { - "$date": "2024-06-19T02:08:37.647Z" + "$date": "2024-06-21T00:02:29.849Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.647Z" + "$date": "2024-06-21T00:02:29.849Z" }, "__v": 0 }, @@ -824,18 +824,18 @@ "isRegistered": true, "firstName": "Jonas", "lastName": "Chong", - "cohort": "CTRI 51", + "cohort": "WCRI 34", "registeredAt": { "$date": "1970-01-20T16:23:24.074Z" }, "_id": { - "$oid": "66723da58f368f285d304a23" + "$oid": "6674c31595590f9fd9459cea" }, "createdAt": { - "$date": "2024-06-19T02:08:37.647Z" + "$date": "2024-06-21T00:02:29.849Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.647Z" + "$date": "2024-06-21T00:02:29.849Z" }, "__v": 0 }, @@ -848,18 +848,18 @@ "isRegistered": true, "firstName": "Ezra", "lastName": "Minto", - "cohort": "LA 55", + "cohort": "WCRI 42", "registeredAt": { "$date": "1970-01-20T16:45:04.952Z" }, "_id": { - "$oid": "66723da58f368f285d304a24" + "$oid": "6674c31595590f9fd9459ceb" }, "createdAt": { - "$date": "2024-06-19T02:08:37.647Z" + "$date": "2024-06-21T00:02:29.849Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.647Z" + "$date": "2024-06-21T00:02:29.849Z" }, "__v": 0 }, @@ -872,18 +872,18 @@ "isRegistered": false, "firstName": "Virgina", "lastName": "Licari", - "cohort": "FTRI 90", + "cohort": "CTRI 93", "registeredAt": { "$date": "1970-01-20T18:31:24.774Z" }, "_id": { - "$oid": "66723da58f368f285d304a25" + "$oid": "6674c31595590f9fd9459cec" }, "createdAt": { - "$date": "2024-06-19T02:08:37.647Z" + "$date": "2024-06-21T00:02:29.849Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.647Z" + "$date": "2024-06-21T00:02:29.849Z" }, "__v": 0 }, @@ -896,18 +896,18 @@ "isRegistered": true, "firstName": "Rickert", "lastName": "Lambrick", - "cohort": "FTRI 81", + "cohort": "LA 63", "registeredAt": { "$date": "1970-01-20T10:22:28.854Z" }, "_id": { - "$oid": "66723da58f368f285d304a26" + "$oid": "6674c31595590f9fd9459ced" }, "createdAt": { - "$date": "2024-06-19T02:08:37.647Z" + "$date": "2024-06-21T00:02:29.849Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.647Z" + "$date": "2024-06-21T00:02:29.849Z" }, "__v": 0 }, @@ -920,18 +920,18 @@ "isRegistered": true, "firstName": "Jesselyn", "lastName": "Madner", - "cohort": "LA 98", + "cohort": "ECRI 55", "registeredAt": { "$date": "1970-01-20T12:18:09.400Z" }, "_id": { - "$oid": "66723da58f368f285d304a27" + "$oid": "6674c31595590f9fd9459cee" }, "createdAt": { - "$date": "2024-06-19T02:08:37.647Z" + "$date": "2024-06-21T00:02:29.849Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.647Z" + "$date": "2024-06-21T00:02:29.849Z" }, "__v": 0 }, @@ -944,18 +944,18 @@ "isRegistered": false, "firstName": "Peirce", "lastName": "Test", - "cohort": "WCRI 75", + "cohort": "CTRI 50", "registeredAt": { "$date": "1970-01-20T10:10:01.051Z" }, "_id": { - "$oid": "66723da58f368f285d304a28" + "$oid": "6674c31595590f9fd9459cef" }, "createdAt": { - "$date": "2024-06-19T02:08:37.647Z" + "$date": "2024-06-21T00:02:29.849Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.647Z" + "$date": "2024-06-21T00:02:29.850Z" }, "__v": 0 }, @@ -968,18 +968,18 @@ "isRegistered": true, "firstName": "Saraann", "lastName": "Walcher", - "cohort": "CTRI 7", + "cohort": "PTRI 74", "registeredAt": { "$date": "1970-01-20T19:08:59.027Z" }, "_id": { - "$oid": "66723da58f368f285d304a29" + "$oid": "6674c31595590f9fd9459cf0" }, "createdAt": { - "$date": "2024-06-19T02:08:37.648Z" + "$date": "2024-06-21T00:02:29.850Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.648Z" + "$date": "2024-06-21T00:02:29.850Z" }, "__v": 0 }, @@ -992,18 +992,18 @@ "isRegistered": true, "firstName": "Giff", "lastName": "Bank", - "cohort": "WCRI 44", + "cohort": "FTRI 42", "registeredAt": { "$date": "1970-01-20T12:07:22.746Z" }, "_id": { - "$oid": "66723da58f368f285d304a2a" + "$oid": "6674c31595590f9fd9459cf1" }, "createdAt": { - "$date": "2024-06-19T02:08:37.648Z" + "$date": "2024-06-21T00:02:29.850Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.648Z" + "$date": "2024-06-21T00:02:29.850Z" }, "__v": 0 }, @@ -1016,18 +1016,18 @@ "isRegistered": false, "firstName": "Ronny", "lastName": "Allmen", - "cohort": "NYC 50", + "cohort": "LA 89", "registeredAt": { "$date": "1970-01-20T12:51:39.673Z" }, "_id": { - "$oid": "66723da58f368f285d304a2b" + "$oid": "6674c31595590f9fd9459cf2" }, "createdAt": { - "$date": "2024-06-19T02:08:37.648Z" + "$date": "2024-06-21T00:02:29.850Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.648Z" + "$date": "2024-06-21T00:02:29.850Z" }, "__v": 0 }, @@ -1040,18 +1040,18 @@ "isRegistered": true, "firstName": "Kimmi", "lastName": "Yarrow", - "cohort": "WCRI 92", + "cohort": "WCRI 10", "registeredAt": { "$date": "1970-01-20T13:45:24.672Z" }, "_id": { - "$oid": "66723da58f368f285d304a2c" + "$oid": "6674c31595590f9fd9459cf3" }, "createdAt": { - "$date": "2024-06-19T02:08:37.648Z" + "$date": "2024-06-21T00:02:29.850Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.648Z" + "$date": "2024-06-21T00:02:29.850Z" }, "__v": 0 }, @@ -1064,18 +1064,18 @@ "isRegistered": false, "firstName": "Portia", "lastName": "Shepard", - "cohort": "CTRI 53", + "cohort": "PTRI 16", "registeredAt": { "$date": "1970-01-20T08:36:25.642Z" }, "_id": { - "$oid": "66723da58f368f285d304a2d" + "$oid": "6674c31595590f9fd9459cf4" }, "createdAt": { - "$date": "2024-06-19T02:08:37.648Z" + "$date": "2024-06-21T00:02:29.850Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.648Z" + "$date": "2024-06-21T00:02:29.850Z" }, "__v": 0 }, @@ -1088,18 +1088,18 @@ "isRegistered": false, "firstName": "Emlen", "lastName": "Gook", - "cohort": "FTRI 47", + "cohort": "WCRI 34", "registeredAt": { "$date": "1970-01-20T11:42:55.506Z" }, "_id": { - "$oid": "66723da58f368f285d304a2e" + "$oid": "6674c31595590f9fd9459cf5" }, "createdAt": { - "$date": "2024-06-19T02:08:37.648Z" + "$date": "2024-06-21T00:02:29.850Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.648Z" + "$date": "2024-06-21T00:02:29.850Z" }, "__v": 0 }, @@ -1112,18 +1112,18 @@ "isRegistered": false, "firstName": "Debee", "lastName": "Rocks", - "cohort": "FTRI 55", + "cohort": "PTRI 17", "registeredAt": { "$date": "1970-01-20T17:53:43.454Z" }, "_id": { - "$oid": "66723da58f368f285d304a2f" + "$oid": "6674c31595590f9fd9459cf6" }, "createdAt": { - "$date": "2024-06-19T02:08:37.648Z" + "$date": "2024-06-21T00:02:29.850Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.648Z" + "$date": "2024-06-21T00:02:29.850Z" }, "__v": 0 }, @@ -1136,18 +1136,18 @@ "isRegistered": false, "firstName": "Valina", "lastName": "Dhennin", - "cohort": "CTRI 33", + "cohort": "NYC 1", "registeredAt": { "$date": "1970-01-20T10:57:45.096Z" }, "_id": { - "$oid": "66723da58f368f285d304a30" + "$oid": "6674c31595590f9fd9459cf7" }, "createdAt": { - "$date": "2024-06-19T02:08:37.648Z" + "$date": "2024-06-21T00:02:29.850Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.648Z" + "$date": "2024-06-21T00:02:29.850Z" }, "__v": 0 }, @@ -1160,18 +1160,18 @@ "isRegistered": false, "firstName": "Dwayne", "lastName": "Cheasman", - "cohort": "CTRI 40", + "cohort": "WCRI 63", "registeredAt": { "$date": "1970-01-20T11:36:58.150Z" }, "_id": { - "$oid": "66723da58f368f285d304a31" + "$oid": "6674c31595590f9fd9459cf8" }, "createdAt": { - "$date": "2024-06-19T02:08:37.648Z" + "$date": "2024-06-21T00:02:29.850Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.648Z" + "$date": "2024-06-21T00:02:29.850Z" }, "__v": 0 }, @@ -1184,18 +1184,18 @@ "isRegistered": false, "firstName": "Nellie", "lastName": "Gladhill", - "cohort": "LA 31", + "cohort": "WCRI 33", "registeredAt": { "$date": "1970-01-20T13:09:23.480Z" }, "_id": { - "$oid": "66723da58f368f285d304a32" + "$oid": "6674c31595590f9fd9459cf9" }, "createdAt": { - "$date": "2024-06-19T02:08:37.648Z" + "$date": "2024-06-21T00:02:29.851Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.648Z" + "$date": "2024-06-21T00:02:29.851Z" }, "__v": 0 }, @@ -1208,18 +1208,18 @@ "isRegistered": true, "firstName": "Eziechiele", "lastName": "Livzey", - "cohort": "NYC 87", + "cohort": "NYC 85", "registeredAt": { "$date": "1970-01-20T11:12:55.403Z" }, "_id": { - "$oid": "66723da58f368f285d304a33" + "$oid": "6674c31595590f9fd9459cfa" }, "createdAt": { - "$date": "2024-06-19T02:08:37.649Z" + "$date": "2024-06-21T00:02:29.851Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.649Z" + "$date": "2024-06-21T00:02:29.851Z" }, "__v": 0 }, @@ -1232,18 +1232,18 @@ "isRegistered": true, "firstName": "Sallyanne", "lastName": "Mingasson", - "cohort": "NYC 38", + "cohort": "NYC 12", "registeredAt": { "$date": "1970-01-20T11:45:13.073Z" }, "_id": { - "$oid": "66723da58f368f285d304a34" + "$oid": "6674c31595590f9fd9459cfb" }, "createdAt": { - "$date": "2024-06-19T02:08:37.649Z" + "$date": "2024-06-21T00:02:29.851Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.649Z" + "$date": "2024-06-21T00:02:29.851Z" }, "__v": 0 }, @@ -1256,18 +1256,18 @@ "isRegistered": true, "firstName": "Heall", "lastName": "Pattullo", - "cohort": "WCRI 72", + "cohort": "LA 75", "registeredAt": { "$date": "1970-01-20T10:34:33.540Z" }, "_id": { - "$oid": "66723da58f368f285d304a35" + "$oid": "6674c31595590f9fd9459cfc" }, "createdAt": { - "$date": "2024-06-19T02:08:37.649Z" + "$date": "2024-06-21T00:02:29.851Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.649Z" + "$date": "2024-06-21T00:02:29.851Z" }, "__v": 0 }, @@ -1280,18 +1280,18 @@ "isRegistered": true, "firstName": "Amaleta", "lastName": "Scarlan", - "cohort": "WCRI 81", + "cohort": "ECRI 52", "registeredAt": { "$date": "1970-01-20T19:45:01.940Z" }, "_id": { - "$oid": "66723da58f368f285d304a36" + "$oid": "6674c31595590f9fd9459cfd" }, "createdAt": { - "$date": "2024-06-19T02:08:37.649Z" + "$date": "2024-06-21T00:02:29.851Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.649Z" + "$date": "2024-06-21T00:02:29.851Z" }, "__v": 0 }, @@ -1304,18 +1304,18 @@ "isRegistered": true, "firstName": "Zonda", "lastName": "Lawlance", - "cohort": "NYC 59", + "cohort": "CTRI 27", "registeredAt": { "$date": "1970-01-20T16:45:24.480Z" }, "_id": { - "$oid": "66723da58f368f285d304a37" + "$oid": "6674c31595590f9fd9459cfe" }, "createdAt": { - "$date": "2024-06-19T02:08:37.649Z" + "$date": "2024-06-21T00:02:29.851Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.649Z" + "$date": "2024-06-21T00:02:29.851Z" }, "__v": 0 }, @@ -1328,18 +1328,18 @@ "isRegistered": false, "firstName": "Livvy", "lastName": "Romney", - "cohort": "CTRI 36", + "cohort": "ECRI 32", "registeredAt": { "$date": "1970-01-20T17:22:54.160Z" }, "_id": { - "$oid": "66723da58f368f285d304a38" + "$oid": "6674c31595590f9fd9459cff" }, "createdAt": { - "$date": "2024-06-19T02:08:37.649Z" + "$date": "2024-06-21T00:02:29.851Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.649Z" + "$date": "2024-06-21T00:02:29.851Z" }, "__v": 0 }, @@ -1352,18 +1352,18 @@ "isRegistered": true, "firstName": "Brockie", "lastName": "Allardyce", - "cohort": "NYC 61", + "cohort": "PTRI 65", "registeredAt": { "$date": "1970-01-20T10:24:01.128Z" }, "_id": { - "$oid": "66723da58f368f285d304a39" + "$oid": "6674c31595590f9fd9459d00" }, "createdAt": { - "$date": "2024-06-19T02:08:37.649Z" + "$date": "2024-06-21T00:02:29.851Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.649Z" + "$date": "2024-06-21T00:02:29.851Z" }, "__v": 0 }, @@ -1376,18 +1376,18 @@ "isRegistered": false, "firstName": "Jaquelyn", "lastName": "Atthowe", - "cohort": "WCRI 33", + "cohort": "ECRI 71", "registeredAt": { "$date": "1970-01-20T18:20:08.705Z" }, "_id": { - "$oid": "66723da58f368f285d304a3a" + "$oid": "6674c31595590f9fd9459d01" }, "createdAt": { - "$date": "2024-06-19T02:08:37.649Z" + "$date": "2024-06-21T00:02:29.851Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.649Z" + "$date": "2024-06-21T00:02:29.851Z" }, "__v": 0 }, @@ -1400,18 +1400,18 @@ "isRegistered": true, "firstName": "Barn", "lastName": "Guerre", - "cohort": "ECRI 56", + "cohort": "WCRI 86", "registeredAt": { "$date": "1970-01-20T20:43:22.221Z" }, "_id": { - "$oid": "66723da58f368f285d304a3b" + "$oid": "6674c31595590f9fd9459d02" }, "createdAt": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.852Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.852Z" }, "__v": 0 }, @@ -1424,18 +1424,18 @@ "isRegistered": false, "firstName": "Carina", "lastName": "Millions", - "cohort": "CTRI 56", + "cohort": "CTRI 9", "registeredAt": { "$date": "1970-01-20T15:50:36.752Z" }, "_id": { - "$oid": "66723da58f368f285d304a3c" + "$oid": "6674c31595590f9fd9459d03" }, "createdAt": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.852Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.852Z" }, "__v": 0 }, @@ -1448,18 +1448,18 @@ "isRegistered": true, "firstName": "Micaela", "lastName": "Grigorini", - "cohort": "LA 81", + "cohort": "WCRI 48", "registeredAt": { "$date": "1970-01-20T09:06:40.482Z" }, "_id": { - "$oid": "66723da58f368f285d304a3d" + "$oid": "6674c31595590f9fd9459d04" }, "createdAt": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.852Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.852Z" }, "__v": 0 }, @@ -1472,18 +1472,18 @@ "isRegistered": false, "firstName": "Fran", "lastName": "Redwin", - "cohort": "CTRI 27", + "cohort": "PTRI 0", "registeredAt": { "$date": "1970-01-20T13:29:42.467Z" }, "_id": { - "$oid": "66723da58f368f285d304a3e" + "$oid": "6674c31595590f9fd9459d05" }, "createdAt": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.852Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.852Z" }, "__v": 0 }, @@ -1496,18 +1496,18 @@ "isRegistered": true, "firstName": "Kalina", "lastName": "Firmager", - "cohort": "CTRI 63", + "cohort": "PTRI 67", "registeredAt": { "$date": "1970-01-20T15:14:33.707Z" }, "_id": { - "$oid": "66723da58f368f285d304a3f" + "$oid": "6674c31595590f9fd9459d06" }, "createdAt": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.852Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.852Z" }, "__v": 0 }, @@ -1520,18 +1520,18 @@ "isRegistered": true, "firstName": "Lurline", "lastName": "Blyth", - "cohort": "PTRI 8", + "cohort": "LA 15", "registeredAt": { "$date": "1970-01-20T14:18:34.651Z" }, "_id": { - "$oid": "66723da58f368f285d304a40" + "$oid": "6674c31595590f9fd9459d07" }, "createdAt": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.852Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.852Z" }, "__v": 0 }, @@ -1544,18 +1544,18 @@ "isRegistered": true, "firstName": "Julianne", "lastName": "Stowte", - "cohort": "ECRI 92", + "cohort": "LA 39", "registeredAt": { "$date": "1970-01-20T10:56:05.284Z" }, "_id": { - "$oid": "66723da58f368f285d304a41" + "$oid": "6674c31595590f9fd9459d08" }, "createdAt": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.852Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.852Z" }, "__v": 0 }, @@ -1568,18 +1568,18 @@ "isRegistered": true, "firstName": "Tierney", "lastName": "Patrie", - "cohort": "LA 71", + "cohort": "PTRI 8", "registeredAt": { "$date": "1970-01-20T16:53:05.719Z" }, "_id": { - "$oid": "66723da58f368f285d304a42" + "$oid": "6674c31595590f9fd9459d09" }, "createdAt": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.852Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.852Z" }, "__v": 0 }, @@ -1592,18 +1592,18 @@ "isRegistered": false, "firstName": "Gerladina", "lastName": "Sherborne", - "cohort": "PTRI 71", + "cohort": "ECRI 28", "registeredAt": { "$date": "1970-01-20T19:28:48.496Z" }, "_id": { - "$oid": "66723da58f368f285d304a43" + "$oid": "6674c31595590f9fd9459d0a" }, "createdAt": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.852Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.852Z" }, "__v": 0 }, @@ -1616,18 +1616,18 @@ "isRegistered": true, "firstName": "Phil", "lastName": "Farress", - "cohort": "FTRI 7", + "cohort": "FTRI 49", "registeredAt": { "$date": "1970-01-20T14:30:52.128Z" }, "_id": { - "$oid": "66723da58f368f285d304a44" + "$oid": "6674c31595590f9fd9459d0b" }, "createdAt": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.852Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.852Z" }, "__v": 0 }, @@ -1640,18 +1640,18 @@ "isRegistered": false, "firstName": "Elisha", "lastName": "Allsop", - "cohort": "FTRI 56", + "cohort": "ECRI 53", "registeredAt": { "$date": "1970-01-20T20:03:21.737Z" }, "_id": { - "$oid": "66723da58f368f285d304a45" + "$oid": "6674c31595590f9fd9459d0c" }, "createdAt": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.853Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.853Z" }, "__v": 0 }, @@ -1664,18 +1664,18 @@ "isRegistered": false, "firstName": "Carline", "lastName": "Skipton", - "cohort": "CTRI 95", + "cohort": "PTRI 49", "registeredAt": { "$date": "1970-01-20T16:49:15.150Z" }, "_id": { - "$oid": "66723da58f368f285d304a46" + "$oid": "6674c31595590f9fd9459d0d" }, "createdAt": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.853Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.853Z" }, "__v": 0 }, @@ -1688,18 +1688,18 @@ "isRegistered": false, "firstName": "Mia", "lastName": "Northridge", - "cohort": "CTRI 62", + "cohort": "LA 84", "registeredAt": { "$date": "1970-01-20T11:07:10.387Z" }, "_id": { - "$oid": "66723da58f368f285d304a47" + "$oid": "6674c31595590f9fd9459d0e" }, "createdAt": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.853Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.650Z" + "$date": "2024-06-21T00:02:29.853Z" }, "__v": 0 }, @@ -1712,18 +1712,18 @@ "isRegistered": true, "firstName": "Isaiah", "lastName": "Friedenbach", - "cohort": "ECRI 21", + "cohort": "WCRI 44", "registeredAt": { "$date": "1970-01-20T16:50:30.245Z" }, "_id": { - "$oid": "66723da58f368f285d304a48" + "$oid": "6674c31595590f9fd9459d0f" }, "createdAt": { - "$date": "2024-06-19T02:08:37.651Z" + "$date": "2024-06-21T00:02:29.853Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.651Z" + "$date": "2024-06-21T00:02:29.853Z" }, "__v": 0 }, @@ -1736,18 +1736,18 @@ "isRegistered": true, "firstName": "Tallulah", "lastName": "Dulton", - "cohort": "NYC 84", + "cohort": "ECRI 91", "registeredAt": { "$date": "1970-01-20T13:17:09.264Z" }, "_id": { - "$oid": "66723da58f368f285d304a49" + "$oid": "6674c31595590f9fd9459d10" }, "createdAt": { - "$date": "2024-06-19T02:08:37.651Z" + "$date": "2024-06-21T00:02:29.853Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.651Z" + "$date": "2024-06-21T00:02:29.853Z" }, "__v": 0 }, @@ -1760,18 +1760,18 @@ "isRegistered": false, "firstName": "Bel", "lastName": "Esherwood", - "cohort": "PTRI 37", + "cohort": "CTRI 86", "registeredAt": { "$date": "1970-01-20T19:40:17.366Z" }, "_id": { - "$oid": "66723da58f368f285d304a4a" + "$oid": "6674c31595590f9fd9459d11" }, "createdAt": { - "$date": "2024-06-19T02:08:37.651Z" + "$date": "2024-06-21T00:02:29.853Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.651Z" + "$date": "2024-06-21T00:02:29.853Z" }, "__v": 0 }, @@ -1784,18 +1784,18 @@ "isRegistered": true, "firstName": "Anatol", "lastName": "Kiley", - "cohort": "FTRI 30", + "cohort": "ECRI 60", "registeredAt": { "$date": "1970-01-20T20:15:39.754Z" }, "_id": { - "$oid": "66723da58f368f285d304a4b" + "$oid": "6674c31595590f9fd9459d12" }, "createdAt": { - "$date": "2024-06-19T02:08:37.651Z" + "$date": "2024-06-21T00:02:29.853Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.651Z" + "$date": "2024-06-21T00:02:29.853Z" }, "__v": 0 }, @@ -1808,18 +1808,18 @@ "isRegistered": true, "firstName": "Corabel", "lastName": "Meth", - "cohort": "LA 31", + "cohort": "WCRI 33", "registeredAt": { "$date": "1970-01-20T11:26:24.205Z" }, "_id": { - "$oid": "66723da58f368f285d304a4c" + "$oid": "6674c31595590f9fd9459d13" }, "createdAt": { - "$date": "2024-06-19T02:08:37.651Z" + "$date": "2024-06-21T00:02:29.853Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.651Z" + "$date": "2024-06-21T00:02:29.853Z" }, "__v": 0 }, @@ -1832,18 +1832,18 @@ "isRegistered": false, "firstName": "Shae", "lastName": "Terrill", - "cohort": "CTRI 15", + "cohort": "LA 64", "registeredAt": { "$date": "1970-01-20T12:46:02.944Z" }, "_id": { - "$oid": "66723da58f368f285d304a4d" + "$oid": "6674c31595590f9fd9459d14" }, "createdAt": { - "$date": "2024-06-19T02:08:37.651Z" + "$date": "2024-06-21T00:02:29.854Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.651Z" + "$date": "2024-06-21T00:02:29.854Z" }, "__v": 0 }, @@ -1856,18 +1856,18 @@ "isRegistered": false, "firstName": "Dotty", "lastName": "Mahedy", - "cohort": "ECRI 86", + "cohort": "PTRI 59", "registeredAt": { "$date": "1970-01-20T17:04:00.599Z" }, "_id": { - "$oid": "66723da58f368f285d304a4e" + "$oid": "6674c31595590f9fd9459d15" }, "createdAt": { - "$date": "2024-06-19T02:08:37.652Z" + "$date": "2024-06-21T00:02:29.854Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.652Z" + "$date": "2024-06-21T00:02:29.854Z" }, "__v": 0 }, @@ -1880,18 +1880,18 @@ "isRegistered": false, "firstName": "Salaidh", "lastName": "Attiwill", - "cohort": "ECRI 78", + "cohort": "FTRI 89", "registeredAt": { "$date": "1970-01-20T19:08:51.917Z" }, "_id": { - "$oid": "66723da58f368f285d304a4f" + "$oid": "6674c31595590f9fd9459d16" }, "createdAt": { - "$date": "2024-06-19T02:08:37.652Z" + "$date": "2024-06-21T00:02:29.854Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.652Z" + "$date": "2024-06-21T00:02:29.854Z" }, "__v": 0 }, @@ -1904,18 +1904,18 @@ "isRegistered": true, "firstName": "Billi", "lastName": "Bomb", - "cohort": "LA 16", + "cohort": "NYC 64", "registeredAt": { "$date": "1970-01-20T17:13:38.131Z" }, "_id": { - "$oid": "66723da58f368f285d304a50" + "$oid": "6674c31595590f9fd9459d17" }, "createdAt": { - "$date": "2024-06-19T02:08:37.652Z" + "$date": "2024-06-21T00:02:29.854Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.652Z" + "$date": "2024-06-21T00:02:29.854Z" }, "__v": 0 }, @@ -1928,18 +1928,18 @@ "isRegistered": true, "firstName": "Burty", "lastName": "Bedells", - "cohort": "PTRI 76", + "cohort": "PTRI 23", "registeredAt": { "$date": "1970-01-20T17:08:45.382Z" }, "_id": { - "$oid": "66723da58f368f285d304a51" + "$oid": "6674c31595590f9fd9459d18" }, "createdAt": { - "$date": "2024-06-19T02:08:37.652Z" + "$date": "2024-06-21T00:02:29.854Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.652Z" + "$date": "2024-06-21T00:02:29.854Z" }, "__v": 0 }, @@ -1952,18 +1952,18 @@ "isRegistered": false, "firstName": "De", "lastName": "Lemin", - "cohort": "PTRI 97", + "cohort": "CTRI 82", "registeredAt": { "$date": "1970-01-20T19:38:34.981Z" }, "_id": { - "$oid": "66723da58f368f285d304a52" + "$oid": "6674c31595590f9fd9459d19" }, "createdAt": { - "$date": "2024-06-19T02:08:37.652Z" + "$date": "2024-06-21T00:02:29.854Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.652Z" + "$date": "2024-06-21T00:02:29.854Z" }, "__v": 0 }, @@ -1976,18 +1976,18 @@ "isRegistered": true, "firstName": "Morgen", "lastName": "Draco", - "cohort": "FTRI 92", + "cohort": "LA 61", "registeredAt": { "$date": "1970-01-20T11:40:37.999Z" }, "_id": { - "$oid": "66723da58f368f285d304a53" + "$oid": "6674c31595590f9fd9459d1a" }, "createdAt": { - "$date": "2024-06-19T02:08:37.652Z" + "$date": "2024-06-21T00:02:29.854Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.652Z" + "$date": "2024-06-21T00:02:29.854Z" }, "__v": 0 }, @@ -2000,18 +2000,18 @@ "isRegistered": true, "firstName": "Urban", "lastName": "Grassin", - "cohort": "FTRI 85", + "cohort": "ECRI 13", "registeredAt": { "$date": "1970-01-20T19:01:11.474Z" }, "_id": { - "$oid": "66723da58f368f285d304a54" + "$oid": "6674c31595590f9fd9459d1b" }, "createdAt": { - "$date": "2024-06-19T02:08:37.652Z" + "$date": "2024-06-21T00:02:29.855Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.652Z" + "$date": "2024-06-21T00:02:29.855Z" }, "__v": 0 }, @@ -2024,18 +2024,18 @@ "isRegistered": false, "firstName": "Archy", "lastName": "Atto", - "cohort": "CTRI 32", + "cohort": "LA 25", "registeredAt": { "$date": "1970-01-20T19:34:03.526Z" }, "_id": { - "$oid": "66723da58f368f285d304a55" + "$oid": "6674c31595590f9fd9459d1c" }, "createdAt": { - "$date": "2024-06-19T02:08:37.652Z" + "$date": "2024-06-21T00:02:29.855Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.652Z" + "$date": "2024-06-21T00:02:29.855Z" }, "__v": 0 }, @@ -2048,18 +2048,18 @@ "isRegistered": true, "firstName": "Lothaire", "lastName": "Murfill", - "cohort": "CTRI 10", + "cohort": "CTRI 51", "registeredAt": { "$date": "1970-01-20T17:22:13.684Z" }, "_id": { - "$oid": "66723da58f368f285d304a56" + "$oid": "6674c31595590f9fd9459d1d" }, "createdAt": { - "$date": "2024-06-19T02:08:37.653Z" + "$date": "2024-06-21T00:02:29.855Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.653Z" + "$date": "2024-06-21T00:02:29.855Z" }, "__v": 0 }, @@ -2072,18 +2072,18 @@ "isRegistered": true, "firstName": "Anne", "lastName": "O'Crigan", - "cohort": "ECRI 61", + "cohort": "FTRI 93", "registeredAt": { "$date": "1970-01-20T09:36:48.159Z" }, "_id": { - "$oid": "66723da58f368f285d304a57" + "$oid": "6674c31595590f9fd9459d1e" }, "createdAt": { - "$date": "2024-06-19T02:08:37.653Z" + "$date": "2024-06-21T00:02:29.855Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.653Z" + "$date": "2024-06-21T00:02:29.855Z" }, "__v": 0 }, @@ -2096,18 +2096,18 @@ "isRegistered": true, "firstName": "Nisse", "lastName": "Meacher", - "cohort": "NYC 98", + "cohort": "ECRI 97", "registeredAt": { "$date": "1970-01-20T11:07:19.572Z" }, "_id": { - "$oid": "66723da58f368f285d304a58" + "$oid": "6674c31595590f9fd9459d1f" }, "createdAt": { - "$date": "2024-06-19T02:08:37.653Z" + "$date": "2024-06-21T00:02:29.855Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.653Z" + "$date": "2024-06-21T00:02:29.855Z" }, "__v": 0 }, @@ -2120,18 +2120,18 @@ "isRegistered": false, "firstName": "Dix", "lastName": "Traill", - "cohort": "WCRI 96", + "cohort": "WCRI 45", "registeredAt": { "$date": "1970-01-20T13:00:41.678Z" }, "_id": { - "$oid": "66723da58f368f285d304a59" + "$oid": "6674c31595590f9fd9459d20" }, "createdAt": { - "$date": "2024-06-19T02:08:37.653Z" + "$date": "2024-06-21T00:02:29.855Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.653Z" + "$date": "2024-06-21T00:02:29.855Z" }, "__v": 0 }, @@ -2144,18 +2144,18 @@ "isRegistered": false, "firstName": "Verla", "lastName": "Proske", - "cohort": "PTRI 67", + "cohort": "FTRI 40", "registeredAt": { "$date": "1970-01-20T13:09:03.295Z" }, "_id": { - "$oid": "66723da58f368f285d304a5a" + "$oid": "6674c31595590f9fd9459d21" }, "createdAt": { - "$date": "2024-06-19T02:08:37.653Z" + "$date": "2024-06-21T00:02:29.855Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.653Z" + "$date": "2024-06-21T00:02:29.855Z" }, "__v": 0 }, @@ -2168,18 +2168,18 @@ "isRegistered": false, "firstName": "Pennie", "lastName": "Dahmke", - "cohort": "PTRI 75", + "cohort": "FTRI 14", "registeredAt": { "$date": "1970-01-20T17:46:08.448Z" }, "_id": { - "$oid": "66723da58f368f285d304a5b" + "$oid": "6674c31595590f9fd9459d22" }, "createdAt": { - "$date": "2024-06-19T02:08:37.653Z" + "$date": "2024-06-21T00:02:29.855Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.653Z" + "$date": "2024-06-21T00:02:29.855Z" }, "__v": 0 }, @@ -2192,18 +2192,18 @@ "isRegistered": true, "firstName": "Anestassia", "lastName": "Kilroy", - "cohort": "LA 33", + "cohort": "CTRI 32", "registeredAt": { "$date": "1970-01-20T18:12:42.650Z" }, "_id": { - "$oid": "66723da58f368f285d304a5c" + "$oid": "6674c31595590f9fd9459d23" }, "createdAt": { - "$date": "2024-06-19T02:08:37.653Z" + "$date": "2024-06-21T00:02:29.856Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.653Z" + "$date": "2024-06-21T00:02:29.856Z" }, "__v": 0 }, @@ -2216,18 +2216,18 @@ "isRegistered": true, "firstName": "Remus", "lastName": "Vanelli", - "cohort": "PTRI 99", + "cohort": "CTRI 7", "registeredAt": { "$date": "1970-01-20T13:01:08.428Z" }, "_id": { - "$oid": "66723da58f368f285d304a5d" + "$oid": "6674c31595590f9fd9459d24" }, "createdAt": { - "$date": "2024-06-19T02:08:37.653Z" + "$date": "2024-06-21T00:02:29.856Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.653Z" + "$date": "2024-06-21T00:02:29.856Z" }, "__v": 0 }, @@ -2240,18 +2240,18 @@ "isRegistered": true, "firstName": "Gil", "lastName": "Tarbert", - "cohort": "NYC 2", + "cohort": "ECRI 69", "registeredAt": { "$date": "1970-01-20T12:06:31.965Z" }, "_id": { - "$oid": "66723da58f368f285d304a5e" + "$oid": "6674c31595590f9fd9459d25" }, "createdAt": { - "$date": "2024-06-19T02:08:37.653Z" + "$date": "2024-06-21T00:02:29.856Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.653Z" + "$date": "2024-06-21T00:02:29.856Z" }, "__v": 0 }, @@ -2264,18 +2264,18 @@ "isRegistered": true, "firstName": "Yulma", "lastName": "Smelley", - "cohort": "NYC 44", + "cohort": "FTRI 4", "registeredAt": { "$date": "1970-01-20T20:28:53.795Z" }, "_id": { - "$oid": "66723da58f368f285d304a5f" + "$oid": "6674c31595590f9fd9459d26" }, "createdAt": { - "$date": "2024-06-19T02:08:37.653Z" + "$date": "2024-06-21T00:02:29.856Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.653Z" + "$date": "2024-06-21T00:02:29.856Z" }, "__v": 0 }, @@ -2288,18 +2288,18 @@ "isRegistered": false, "firstName": "Timmy", "lastName": "Longworth", - "cohort": "CTRI 3", + "cohort": "LA 56", "registeredAt": { "$date": "1970-01-20T18:47:58.351Z" }, "_id": { - "$oid": "66723da58f368f285d304a60" + "$oid": "6674c31595590f9fd9459d27" }, "createdAt": { - "$date": "2024-06-19T02:08:37.653Z" + "$date": "2024-06-21T00:02:29.856Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.653Z" + "$date": "2024-06-21T00:02:29.856Z" }, "__v": 0 }, @@ -2312,18 +2312,18 @@ "isRegistered": true, "firstName": "Arthur", "lastName": "Mollatt", - "cohort": "FTRI 43", + "cohort": "WCRI 89", "registeredAt": { "$date": "1970-01-20T18:28:04.127Z" }, "_id": { - "$oid": "66723da58f368f285d304a61" + "$oid": "6674c31595590f9fd9459d28" }, "createdAt": { - "$date": "2024-06-19T02:08:37.654Z" + "$date": "2024-06-21T00:02:29.856Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.654Z" + "$date": "2024-06-21T00:02:29.856Z" }, "__v": 0 }, @@ -2336,18 +2336,18 @@ "isRegistered": false, "firstName": "Griffin", "lastName": "Taylor", - "cohort": "NYC 38", + "cohort": "LA 99", "registeredAt": { "$date": "1970-01-20T18:10:31.385Z" }, "_id": { - "$oid": "66723da58f368f285d304a62" + "$oid": "6674c31595590f9fd9459d29" }, "createdAt": { - "$date": "2024-06-19T02:08:37.654Z" + "$date": "2024-06-21T00:02:29.856Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.654Z" + "$date": "2024-06-21T00:02:29.856Z" }, "__v": 0 }, @@ -2360,18 +2360,18 @@ "isRegistered": true, "firstName": "Odelinda", "lastName": "Studholme", - "cohort": "WCRI 26", + "cohort": "CTRI 22", "registeredAt": { "$date": "1970-01-20T09:11:35.487Z" }, "_id": { - "$oid": "66723da58f368f285d304a63" + "$oid": "6674c31595590f9fd9459d2a" }, "createdAt": { - "$date": "2024-06-19T02:08:37.654Z" + "$date": "2024-06-21T00:02:29.856Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.654Z" + "$date": "2024-06-21T00:02:29.856Z" }, "__v": 0 }, @@ -2384,18 +2384,18 @@ "isRegistered": true, "firstName": "Ardith", "lastName": "Duffill", - "cohort": "CTRI 91", + "cohort": "CTRI 86", "registeredAt": { "$date": "1970-01-20T14:21:35.088Z" }, "_id": { - "$oid": "66723da58f368f285d304a64" + "$oid": "6674c31595590f9fd9459d2b" }, "createdAt": { - "$date": "2024-06-19T02:08:37.655Z" + "$date": "2024-06-21T00:02:29.856Z" }, "lastEmailSent": { - "$date": "2024-06-19T02:08:37.655Z" + "$date": "2024-06-21T00:02:29.856Z" }, "__v": 0 } diff --git a/scripts/db/mongo-dev-init/MOCK_POSTS.json b/scripts/db/mongo-dev-init/MOCK_POSTS.json index 6f92b141..1ac5fcd6 100644 --- a/scripts/db/mongo-dev-init/MOCK_POSTS.json +++ b/scripts/db/mongo-dev-init/MOCK_POSTS.json @@ -1,989 +1,989 @@ [ { "thread": { - "$oid": "66723db08f368f285d304f67" + "$oid": "6674c31f95590f9fd945a20e" }, "user": { - "$oid": "66723da68f368f285d304acb" + "$oid": "66723da68f368f285d304ac9" }, - "content": "Exploring the role of AI in enhancing cybersecurity measures. How can AI algorithms detect threats?", + "content": "Discussing the evolution of programming languages and their impact on software development practices.", "createdAt": { - "$date": "2024-06-19T02:08:48.294Z" + "$date": "2024-06-21T00:02:39.606Z" }, "updatedAt": { - "$date": "2027-01-28T07:33:27.394Z" + "$date": "2027-04-08T20:49:14.678Z" }, "_id": { - "$oid": "66723db08f368f285d304f7f" + "$oid": "6674c31f95590f9fd945a223" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f5f" + "$oid": "6674c31f95590f9fd945a20d" }, "user": { - "$oid": "66723da68f368f285d304acb" + "$oid": "66723da68f368f285d304acd" }, - "content": "Seeking recommendations for online platforms or courses to learn data science and machine learning.", + "content": "What are your thoughts on the future of cybersecurity in the era of AI and automation?", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.606Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-08-04T07:32:13.537Z" }, "_id": { - "$oid": "66723db08f368f285d304f80" + "$oid": "6674c31f95590f9fd945a224" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f6e" + "$oid": "6674c31f95590f9fd945a20e" }, "user": { - "$oid": "66723da68f368f285d304acb" + "$oid": "6644c7f7515c654def9b2b18" }, - "content": "What are the key factors to consider when choosing a tech stack for a new startup project?", + "content": "Tips for managing technical debt in software projects. How do you prioritize and refactor?", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.606Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2027-06-03T21:57:17.677Z" }, "_id": { - "$oid": "66723db08f368f285d304f81" + "$oid": "6674c31f95590f9fd945a225" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f6e" + "$oid": "6674c31f95590f9fd945a212" }, "user": { - "$oid": "66723da68f368f285d304acb" + "$oid": "6644c602515c654def9b2ae7" }, - "content": "Debating the future of AI and its potential impact on industries like healthcare and finance.", + "content": "What are the key factors to consider when choosing a tech stack for a new startup project?", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.607Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.607Z" }, "_id": { - "$oid": "66723db08f368f285d304f82" + "$oid": "6674c31f95590f9fd945a226" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f66" + "$oid": "6674c31f95590f9fd945a211" }, "user": { - "$oid": "66723da68f368f285d304ac9" + "$oid": "6644c602515c654def9b2ae7" }, - "content": "Tips for building responsive and accessible user interfaces in web development. Best practices?", + "content": "Discussing the challenges and benefits of implementing blockchain technology in supply chain management.", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.606Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2025-03-04T04:00:32.084Z" }, "_id": { - "$oid": "66723db08f368f285d304f83" + "$oid": "6674c31f95590f9fd945a227" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f64" + "$oid": "6674c31f95590f9fd945a207" }, "user": { - "$oid": "66723da68f368f285d304ac9" + "$oid": "6644c602515c654def9b2ae7" }, - "content": "Discussing the adoption of serverless architecture in enterprise applications. What are the use cases?", + "content": "Discussing the benefits of adopting agile methodologies in non-software development teams.", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.607Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.607Z" }, "_id": { - "$oid": "66723db08f368f285d304f84" + "$oid": "6674c31f95590f9fd945a228" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f6c" + "$oid": "6674c31f95590f9fd945a20c" }, "user": { - "$oid": "66723da68f368f285d304acc" + "$oid": "6644c602515c654def9b2ae7" }, - "content": "Tips for optimizing database performance in high-traffic web applications. Best practices?", + "content": "Tips for building scalable and maintainable frontend architectures. How do you structure your codebase?", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.607Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.607Z" }, "_id": { - "$oid": "66723db08f368f285d304f85" + "$oid": "6674c31f95590f9fd945a229" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f6c" + "$oid": "6674c31f95590f9fd945a20d" }, "user": { - "$oid": "66723da68f368f285d304aca" + "$oid": "66723da68f368f285d304acd" }, - "content": "Seeking recommendations for online platforms or courses to learn data science and machine learning.", + "content": "Tips for optimizing database performance in high-traffic web applications. Best practices?", "createdAt": { - "$date": "2024-06-19T02:08:48.294Z" + "$date": "2024-06-21T00:02:39.607Z" }, "updatedAt": { - "$date": "2026-08-29T17:17:05.009Z" + "$date": "2024-06-21T00:02:39.607Z" }, "_id": { - "$oid": "66723db08f368f285d304f86" + "$oid": "6674c31f95590f9fd945a22a" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f62" + "$oid": "6674c31f95590f9fd945a204" }, "user": { - "$oid": "66723da68f368f285d304acb" + "$oid": "6644c768515c654def9b2b09" }, - "content": "Tips for optimizing database performance in high-traffic web applications. Best practices?", + "content": "Seeking advice on transitioning from academia to industry as a software engineer. What are the challenges?", "createdAt": { - "$date": "2024-06-19T02:08:48.294Z" + "$date": "2024-06-21T00:02:39.608Z" }, "updatedAt": { - "$date": "2025-12-27T12:52:09.207Z" + "$date": "2024-06-21T00:02:39.608Z" }, "_id": { - "$oid": "66723db08f368f285d304f87" + "$oid": "6674c31f95590f9fd945a22b" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f67" + "$oid": "6674c31f95590f9fd945a20f" }, "user": { "$oid": "66723da68f368f285d304acd" }, - "content": "What are your favorite design patterns for building scalable backend systems? Discussing architecture.", + "content": "How can developers contribute to open-source projects? Discussing the impact of community contributions.", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.608Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.608Z" }, "_id": { - "$oid": "66723db08f368f285d304f88" + "$oid": "6674c31f95590f9fd945a22c" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f6c" + "$oid": "6674c31f95590f9fd945a210" }, "user": { - "$oid": "66723da68f368f285d304acd" + "$oid": "6644c7f7515c654def9b2b18" }, - "content": "Share your experiences with continuous integration and deployment tools like Jenkins and GitLab CI/CD.", + "content": "Tips for managing technical debt in software projects. How do you prioritize and refactor?", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.608Z" }, "updatedAt": { - "$date": "2024-10-24T00:40:46.677Z" + "$date": "2024-06-21T00:02:39.608Z" }, "_id": { - "$oid": "66723db08f368f285d304f89" + "$oid": "6674c31f95590f9fd945a22d" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f66" + "$oid": "6674c31f95590f9fd945a210" }, "user": { - "$oid": "66723da68f368f285d304acb" + "$oid": "6644c7f7515c654def9b2b18" }, - "content": "Discussing the impact of IoT on everyday life and its implications for software developers.", + "content": "Exploring the challenges of scaling applications globally. How do you design for international users?", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.606Z" }, "updatedAt": { - "$date": "2028-02-01T11:18:34.588Z" + "$date": "2026-12-23T02:32:10.434Z" }, "_id": { - "$oid": "66723db08f368f285d304f8a" + "$oid": "6674c31f95590f9fd945a22e" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f6b" + "$oid": "6674c31f95590f9fd945a20d" }, "user": { - "$oid": "66723da68f368f285d304aca" + "$oid": "66723da68f368f285d304acd" }, - "content": "Discussing the challenges and benefits of implementing blockchain technology in supply chain management.", + "content": "Tips for optimizing frontend performance in large-scale web applications? What techniques do you use?", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.606Z" }, "updatedAt": { - "$date": "2025-05-13T00:15:44.168Z" + "$date": "2024-08-24T01:18:00.754Z" }, "_id": { - "$oid": "66723db08f368f285d304f8b" + "$oid": "6674c31f95590f9fd945a22f" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f66" + "$oid": "6674c31f95590f9fd945a208" }, "user": { - "$oid": "66723da68f368f285d304aca" + "$oid": "6644c602515c654def9b2ae7" }, - "content": "Discussing the best practices for securing RESTful APIs. How do you protect against common vulnerabilities?", + "content": "What are your thoughts on the future of cybersecurity in the era of AI and automation?", "createdAt": { - "$date": "2024-06-19T02:08:48.296Z" + "$date": "2024-06-21T00:02:39.606Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.296Z" + "$date": "2026-08-16T10:47:30.615Z" }, "_id": { - "$oid": "66723db08f368f285d304f8c" + "$oid": "6674c31f95590f9fd945a230" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f67" + "$oid": "6674c31f95590f9fd945a20e" }, "user": { - "$oid": "66723da68f368f285d304aca" + "$oid": "6644c768515c654def9b2b09" }, "content": "How can AI and machine learning be leveraged to enhance personalized user experiences in applications?", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.608Z" }, "updatedAt": { - "$date": "2025-06-14T02:00:54.499Z" + "$date": "2024-06-21T00:02:39.608Z" }, "_id": { - "$oid": "66723db08f368f285d304f8d" + "$oid": "6674c31f95590f9fd945a231" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f63" + "$oid": "6674c31f95590f9fd945a209" }, "user": { - "$oid": "66723da68f368f285d304acc" + "$oid": "66723da68f368f285d304acd" }, - "content": "Seeking advice on building a personal brand as a software engineer. How can networking help career growth?", + "content": "Exploring the challenges of implementing AI-driven chatbots in customer service applications.", "createdAt": { - "$date": "2024-06-19T02:08:48.296Z" + "$date": "2024-06-21T00:02:39.608Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.296Z" + "$date": "2024-06-21T00:02:39.608Z" }, "_id": { - "$oid": "66723db08f368f285d304f8e" + "$oid": "6674c31f95590f9fd945a232" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f67" + "$oid": "6674c31f95590f9fd945a206" }, "user": { - "$oid": "66723da68f368f285d304ac9" + "$oid": "6644c768515c654def9b2b09" }, - "content": "Tips for building scalable and maintainable frontend architectures. How do you structure your codebase?", + "content": "How do you balance feature development with technical debt reduction in agile development?", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.606Z" }, "updatedAt": { - "$date": "2024-06-30T04:39:41.449Z" + "$date": "2026-02-16T20:31:19.075Z" }, "_id": { - "$oid": "66723db08f368f285d304f8f" + "$oid": "6674c31f95590f9fd945a233" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f68" + "$oid": "6674c31f95590f9fd945a20b" }, "user": { - "$oid": "66723da68f368f285d304acc" + "$oid": "6644c768515c654def9b2b09" }, - "content": "Discussing the evolution of programming languages and their impact on software development practices.", + "content": "Seeking advice on building a personal brand as a software engineer. How can networking help career growth?", "createdAt": { - "$date": "2024-06-19T02:08:48.296Z" + "$date": "2024-06-21T00:02:39.606Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.296Z" + "$date": "2025-09-12T07:12:51.482Z" }, "_id": { - "$oid": "66723db08f368f285d304f90" + "$oid": "6674c31f95590f9fd945a234" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f5f" + "$oid": "6674c31f95590f9fd945a20a" }, "user": { - "$oid": "66723da68f368f285d304aca" + "$oid": "6644c768515c654def9b2b09" }, - "content": "Tips for optimizing database performance in high-traffic web applications. Best practices?", + "content": "Discussing the best practices for securing RESTful APIs. How do you protect against common vulnerabilities?", "createdAt": { - "$date": "2024-06-19T02:08:48.296Z" + "$date": "2024-06-21T00:02:39.608Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.296Z" + "$date": "2024-06-21T00:02:39.608Z" }, "_id": { - "$oid": "66723db08f368f285d304f91" + "$oid": "6674c31f95590f9fd945a235" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f66" + "$oid": "6674c31f95590f9fd945a20b" }, "user": { - "$oid": "66723da68f368f285d304aca" + "$oid": "6644c7f7515c654def9b2b18" }, - "content": "Tips for managing technical debt in software projects. How do you prioritize and refactor?", + "content": "What are the key factors to consider when choosing a tech stack for a new startup project?", "createdAt": { - "$date": "2024-06-19T02:08:48.296Z" + "$date": "2024-06-21T00:02:39.608Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.296Z" + "$date": "2024-06-21T00:02:39.608Z" }, "_id": { - "$oid": "66723db08f368f285d304f92" + "$oid": "6674c31f95590f9fd945a236" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f61" + "$oid": "6674c31f95590f9fd945a208" }, "user": { - "$oid": "66723da68f368f285d304acb" + "$oid": "6644c602515c654def9b2ae7" }, - "content": "How do you approach refactoring legacy codebases? Share your strategies for modernization.", + "content": "Tips for managing technical debt in software projects. How do you prioritize and refactor?", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.608Z" }, "updatedAt": { - "$date": "2027-04-01T08:54:19.130Z" + "$date": "2024-06-21T00:02:39.608Z" }, "_id": { - "$oid": "66723db08f368f285d304f93" + "$oid": "6674c31f95590f9fd945a237" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f6d" + "$oid": "6674c31f95590f9fd945a20a" }, "user": { - "$oid": "66723da68f368f285d304ad5" + "$oid": "6674c31695590f9fd9459dcf" }, - "content": "What are the essential skills for a successful software engineering career in the next decade?", + "content": "Discussing the impact of IoT on everyday life and its implications for software developers.", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.609Z" }, "updatedAt": { - "$date": "2025-10-07T14:22:25.733Z" + "$date": "2024-06-21T00:02:39.609Z" }, "_id": { - "$oid": "66723db08f368f285d304f94" + "$oid": "6674c31f95590f9fd945a238" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f65" + "$oid": "6674c31f95590f9fd945a203" }, "user": { - "$oid": "66723da68f368f285d304afb" + "$oid": "6674c31695590f9fd9459d98" }, - "content": "Discussing the adoption of serverless architecture in enterprise applications. What are the use cases?", + "content": "How do you approach designing intuitive user interfaces? Share your UX/UI design principles.", "createdAt": { - "$date": "2024-06-19T02:08:48.297Z" + "$date": "2024-06-21T00:02:39.609Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.297Z" + "$date": "2024-06-21T00:02:39.609Z" }, "_id": { - "$oid": "66723db08f368f285d304f95" + "$oid": "6674c31f95590f9fd945a239" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f63" + "$oid": "6674c31f95590f9fd945a205" }, "user": { - "$oid": "66723da68f368f285d304b06" + "$oid": "6674c31695590f9fd9459de4" }, - "content": "Discussing the impact of IoT on everyday life and its implications for software developers.", + "content": "How do you approach code reviews in your team? Share your process for constructive feedback and improvement.", "createdAt": { - "$date": "2024-06-19T02:08:48.297Z" + "$date": "2024-06-21T00:02:39.607Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.297Z" + "$date": "2027-01-06T07:43:18.087Z" }, "_id": { - "$oid": "66723db08f368f285d304f96" + "$oid": "6674c31f95590f9fd945a23a" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f64" + "$oid": "6674c31f95590f9fd945a20c" }, "user": { - "$oid": "66723da68f368f285d304adb" + "$oid": "6674c31695590f9fd9459d9f" }, - "content": "Discussing the challenges and benefits of implementing blockchain technology in supply chain management.", + "content": "Discussing the impact of IoT on everyday life and its implications for software developers.", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.609Z" }, "updatedAt": { - "$date": "2027-06-28T20:40:39.345Z" + "$date": "2024-06-21T00:02:39.609Z" }, "_id": { - "$oid": "66723db08f368f285d304f97" + "$oid": "6674c31f95590f9fd945a23b" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f62" + "$oid": "6674c31f95590f9fd945a204" }, "user": { - "$oid": "66723da68f368f285d304b0c" + "$oid": "6674c31695590f9fd9459dd8" }, - "content": "Tips for managing technical debt in software projects. How do you prioritize and refactor?", + "content": "Seeking advice on transitioning from frontend to full-stack development. What skills should I focus on?", "createdAt": { - "$date": "2024-06-19T02:08:48.297Z" + "$date": "2024-06-21T00:02:39.607Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.297Z" + "$date": "2024-09-26T05:33:01.963Z" }, "_id": { - "$oid": "66723db08f368f285d304f98" + "$oid": "6674c31f95590f9fd945a23c" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f6e" + "$oid": "6674c31f95590f9fd945a20f" }, "user": { - "$oid": "66723da68f368f285d304b00" + "$oid": "6674c31695590f9fd9459daa" }, - "content": "What are the emerging trends in mobile app development? Discussing technologies like Flutter and React Native.", + "content": "Seeking advice on preparing for technical interviews at top tech companies. What are common interview questions?", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.607Z" }, "updatedAt": { - "$date": "2027-07-29T13:28:02.709Z" + "$date": "2025-03-30T04:18:29.802Z" }, "_id": { - "$oid": "66723db08f368f285d304f99" + "$oid": "6674c31f95590f9fd945a23d" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f6b" + "$oid": "6674c31f95590f9fd945a205" }, "user": { - "$oid": "66723da68f368f285d304aec" + "$oid": "6674c31695590f9fd9459dcf" }, - "content": "Seeking advice on transitioning from frontend to full-stack development. What skills should I focus on?", + "content": "Tips for managing technical debt in software projects. How do you prioritize and refactor?", "createdAt": { - "$date": "2024-06-19T02:08:48.297Z" + "$date": "2024-06-21T00:02:39.607Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.297Z" + "$date": "2026-08-15T02:48:35.524Z" }, "_id": { - "$oid": "66723db08f368f285d304f9a" + "$oid": "6674c31f95590f9fd945a23e" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f6d" + "$oid": "6674c31f95590f9fd945a209" }, "user": { - "$oid": "66723da68f368f285d304b05" + "$oid": "6674c31695590f9fd9459d99" }, - "content": "Share your insights on DevOps culture and its impact on software development teams.", + "content": "Exploring the challenges of implementing AI-driven chatbots in customer service applications.", "createdAt": { - "$date": "2024-06-19T02:08:48.297Z" + "$date": "2024-06-21T00:02:39.609Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.297Z" + "$date": "2024-06-21T00:02:39.609Z" }, "_id": { - "$oid": "66723db08f368f285d304f9b" + "$oid": "6674c31f95590f9fd945a23f" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f61" + "$oid": "6674c31f95590f9fd945a209" }, "user": { - "$oid": "66723da68f368f285d304b16" + "$oid": "6674c31695590f9fd9459db8" }, - "content": "Seeking advice on transitioning from frontend to full-stack development. What skills should I focus on?", + "content": "Share your favorite resources for staying updated with the latest tech trends and industry news.", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.607Z" }, "updatedAt": { - "$date": "2026-11-17T19:55:23.566Z" + "$date": "2026-02-19T11:17:05.581Z" }, "_id": { - "$oid": "66723db08f368f285d304f9c" + "$oid": "6674c31f95590f9fd945a240" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f69" + "$oid": "6674c31f95590f9fd945a20c" }, "user": { - "$oid": "66723da68f368f285d304b0c" + "$oid": "6674c31695590f9fd9459db1" }, - "content": "Tips for effective project management in software development teams. How do you ensure deadlines are met?", + "content": "Exploring the benefits of adopting a microservices architecture over monolithic applications.", "createdAt": { - "$date": "2024-06-19T02:08:48.297Z" + "$date": "2024-06-21T00:02:39.609Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.297Z" + "$date": "2024-06-21T00:02:39.609Z" }, "_id": { - "$oid": "66723db08f368f285d304f9d" + "$oid": "6674c31f95590f9fd945a241" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f61" + "$oid": "6674c31f95590f9fd945a20b" }, "user": { - "$oid": "66723da68f368f285d304b2a" + "$oid": "6674c31695590f9fd9459da8" }, - "content": "How do you approach code reviews in your team? Share your process for constructive feedback and improvement.", + "content": "How do you handle software architecture design in agile development? Share your strategies and experiences.", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.607Z" }, "updatedAt": { - "$date": "2024-09-30T19:35:44.170Z" + "$date": "2025-02-10T14:27:50.834Z" }, "_id": { - "$oid": "66723db08f368f285d304f9e" + "$oid": "6674c31f95590f9fd945a242" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f65" + "$oid": "6674c31f95590f9fd945a20b" }, "user": { - "$oid": "66723da68f368f285d304b14" + "$oid": "6674c31695590f9fd9459db7" }, - "content": "Seeking recommendations for online platforms or courses to learn data science and machine learning.", + "content": "Discussing the adoption of serverless architecture in enterprise applications. What are the use cases?", "createdAt": { - "$date": "2024-06-19T02:08:48.298Z" + "$date": "2024-06-21T00:02:39.609Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.298Z" + "$date": "2024-06-21T00:02:39.609Z" }, "_id": { - "$oid": "66723db08f368f285d304f9f" + "$oid": "6674c31f95590f9fd945a243" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f66" + "$oid": "6674c31f95590f9fd945a203" }, "user": { - "$oid": "66723da68f368f285d304b1c" + "$oid": "6674c31695590f9fd9459df2" }, - "content": "Exploring the benefits of adopting a microservices architecture over monolithic applications.", + "content": "Tips for effective project management in software development teams. How do you ensure deadlines are met?", "createdAt": { - "$date": "2024-06-19T02:08:48.298Z" + "$date": "2024-06-21T00:02:39.609Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.298Z" + "$date": "2024-06-21T00:02:39.609Z" }, "_id": { - "$oid": "66723db08f368f285d304fa0" + "$oid": "6674c31f95590f9fd945a244" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f66" + "$oid": "6674c31f95590f9fd945a20b" }, "user": { - "$oid": "66723da68f368f285d304ae8" + "$oid": "6674c31695590f9fd9459dd8" }, - "content": "Tips for building responsive and accessible user interfaces in web development. Best practices?", + "content": "Seeking advice on preparing for technical interviews at top tech companies. What are common interview questions?", "createdAt": { - "$date": "2024-06-19T02:08:48.298Z" + "$date": "2024-06-21T00:02:39.610Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.298Z" + "$date": "2024-06-21T00:02:39.610Z" }, "_id": { - "$oid": "66723db08f368f285d304fa1" + "$oid": "6674c31f95590f9fd945a245" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f69" + "$oid": "6674c31f95590f9fd945a203" }, "user": { - "$oid": "66723da68f368f285d304af0" + "$oid": "6674c31695590f9fd9459d97" }, - "content": "How do you balance feature development with technical debt reduction in agile development?", + "content": "I'm new to web development. Can anyone recommend a good beginner-friendly JavaScript framework?", "createdAt": { - "$date": "2024-06-19T02:08:48.298Z" + "$date": "2024-06-21T00:02:39.607Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.298Z" + "$date": "2028-06-17T04:45:49.087Z" }, "_id": { - "$oid": "66723db08f368f285d304fa2" + "$oid": "6674c31f95590f9fd945a246" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f5f" + "$oid": "6674c31f95590f9fd945a205" }, "user": { - "$oid": "66723da68f368f285d304b23" + "$oid": "6674c31695590f9fd9459db9" }, - "content": "What are your favorite VS Code extensions for productivity? Looking to optimize my workflow.", + "content": "How can AI and machine learning be leveraged to enhance personalized user experiences in applications?", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.607Z" }, "updatedAt": { - "$date": "2026-05-18T11:23:04.320Z" + "$date": "2026-08-14T08:18:55.620Z" }, "_id": { - "$oid": "66723db08f368f285d304fa3" + "$oid": "6674c31f95590f9fd945a247" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f6a" + "$oid": "6674c31f95590f9fd945a20b" }, "user": { - "$oid": "66723da68f368f285d304ad0" + "$oid": "6674c31695590f9fd9459da5" }, - "content": "Discussing the benefits of adopting agile methodologies in non-software development teams.", + "content": "Share your favorite resources for staying updated with the latest tech trends and industry news.", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.610Z" }, "updatedAt": { - "$date": "2026-01-04T06:30:01.252Z" + "$date": "2024-06-21T00:02:39.610Z" }, "_id": { - "$oid": "66723db08f368f285d304fa4" + "$oid": "6674c31f95590f9fd945a248" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f63" + "$oid": "6674c31f95590f9fd945a20a" }, "user": { - "$oid": "66723da68f368f285d304ad5" + "$oid": "6674c31695590f9fd9459dc2" }, - "content": "Tips for managing technical debt in software projects. How do you prioritize and refactor?", + "content": "Exploring the benefits of using TypeScript in large-scale JavaScript applications. Is it worth the learning curve?", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.610Z" }, "updatedAt": { - "$date": "2027-10-19T08:27:55.399Z" + "$date": "2024-06-21T00:02:39.610Z" }, "_id": { - "$oid": "66723db08f368f285d304fa5" + "$oid": "6674c31f95590f9fd945a249" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f6e" + "$oid": "6674c31f95590f9fd945a20a" }, "user": { - "$oid": "66723da68f368f285d304ac9" + "$oid": "6674c31695590f9fd9459daf" }, - "content": "Discussing the impact of IoT on everyday life and its implications for software developers.", + "content": "How do you approach refactoring legacy codebases? Share your strategies for modernization.", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.610Z" }, "updatedAt": { - "$date": "2027-10-18T22:55:00.577Z" + "$date": "2024-06-21T00:02:39.610Z" }, "_id": { - "$oid": "66723db08f368f285d304fa6" + "$oid": "6674c31f95590f9fd945a24a" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f66" + "$oid": "6674c31f95590f9fd945a210" }, "user": { - "$oid": "66723da68f368f285d304ae4" + "$oid": "6644c602515c654def9b2ae7" }, - "content": "How do you approach designing intuitive user interfaces? Share your UX/UI design principles.", + "content": "Tips for effective project management in software development teams. How do you ensure deadlines are met?", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.610Z" }, "updatedAt": { - "$date": "2026-06-20T05:46:36.489Z" + "$date": "2024-06-21T00:02:39.610Z" }, "_id": { - "$oid": "66723db08f368f285d304fa7" + "$oid": "6674c31f95590f9fd945a24b" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f60" + "$oid": "6674c31f95590f9fd945a207" }, "user": { - "$oid": "66723da68f368f285d304ad5" + "$oid": "6644c768515c654def9b2b09" }, - "content": "Seeking advice on transitioning from academia to industry as a software engineer. What are the challenges?", + "content": "What are the key factors to consider when choosing a tech stack for a new startup project?", "createdAt": { - "$date": "2024-06-19T02:08:48.298Z" + "$date": "2024-06-21T00:02:39.610Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.298Z" + "$date": "2024-06-21T00:02:39.610Z" }, "_id": { - "$oid": "66723db08f368f285d304fa8" + "$oid": "6674c31f95590f9fd945a24c" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f69" + "$oid": "6674c31f95590f9fd945a211" }, "user": { - "$oid": "66723da68f368f285d304ace" + "$oid": "6674c31695590f9fd9459dc6" }, - "content": "Exploring the role of microservices in modern software architectures. What are the benefits and challenges?", + "content": "Discussing the impact of IoT on everyday life and its implications for software developers.", "createdAt": { - "$date": "2024-06-19T02:08:48.298Z" + "$date": "2024-06-21T00:02:39.607Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.298Z" + "$date": "2027-05-25T08:49:22.671Z" }, "_id": { - "$oid": "66723db08f368f285d304fa9" + "$oid": "6674c31f95590f9fd945a24d" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f67" + "$oid": "6674c31f95590f9fd945a210" }, "user": { - "$oid": "66723da68f368f285d304af4" + "$oid": "6674c31695590f9fd9459da5" }, - "content": "How can blockchain technology revolutionize industries beyond finance? Discussing real-world applications.", + "content": "Share your insights on DevOps culture and its impact on software development teams.", "createdAt": { - "$date": "2024-06-19T02:08:48.298Z" + "$date": "2024-06-21T00:02:39.607Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.298Z" + "$date": "2025-09-08T07:26:08.375Z" }, "_id": { - "$oid": "66723db08f368f285d304faa" + "$oid": "6674c31f95590f9fd945a24e" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f68" + "$oid": "6674c31f95590f9fd945a211" }, "user": { - "$oid": "66723da68f368f285d304acd" + "$oid": "6674c31695590f9fd9459da5" }, - "content": "Discussing the evolution of programming languages and their impact on software development practices.", + "content": "What are the essential skills for a successful software engineering career in the next decade?", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.610Z" }, "updatedAt": { - "$date": "2028-04-27T19:50:20.860Z" + "$date": "2024-06-21T00:02:39.610Z" }, "_id": { - "$oid": "66723db08f368f285d304fab" + "$oid": "6674c31f95590f9fd945a24f" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f63" + "$oid": "6674c31f95590f9fd945a208" }, "user": { - "$oid": "66723da68f368f285d304ac9" + "$oid": "6674c31695590f9fd9459dae" }, - "content": "Discussing the adoption of serverless architecture in enterprise applications. What are the use cases?", + "content": "How can developers contribute to open-source projects? Discussing the impact of community contributions.", "createdAt": { - "$date": "2024-06-19T02:08:48.298Z" + "$date": "2024-06-21T00:02:39.610Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.298Z" + "$date": "2024-06-21T00:02:39.610Z" }, "_id": { - "$oid": "66723db08f368f285d304fac" + "$oid": "6674c31f95590f9fd945a250" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f5f" + "$oid": "6674c31f95590f9fd945a207" }, "user": { - "$oid": "66723da68f368f285d304adc" + "$oid": "6674c31695590f9fd9459de2" }, - "content": "How can blockchain technology revolutionize industries beyond finance? Discussing real-world applications.", + "content": "Debating the future of AI and its potential impact on industries like healthcare and finance.", "createdAt": { - "$date": "2024-06-19T02:08:48.299Z" + "$date": "2024-06-21T00:02:39.610Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.299Z" + "$date": "2024-06-21T00:02:39.610Z" }, "_id": { - "$oid": "66723db08f368f285d304fad" + "$oid": "6674c31f95590f9fd945a251" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f6a" + "$oid": "6674c31f95590f9fd945a205" }, "user": { - "$oid": "66723da68f368f285d304af7" + "$oid": "6674c31695590f9fd9459dee" }, - "content": "Exploring the challenges of scaling applications globally. How do you design for international users?", + "content": "Exploring the benefits of adopting a microservices architecture over monolithic applications.", "createdAt": { - "$date": "2024-06-19T02:08:48.299Z" + "$date": "2024-06-21T00:02:39.611Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.299Z" + "$date": "2024-06-21T00:02:39.611Z" }, "_id": { - "$oid": "66723db08f368f285d304fae" + "$oid": "6674c31f95590f9fd945a252" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f6c" + "$oid": "6674c31f95590f9fd945a209" }, "user": { - "$oid": "66723da68f368f285d304b0d" + "$oid": "6674c31695590f9fd9459dc5" }, - "content": "How do you handle software architecture design in agile development? Share your strategies and experiences.", + "content": "What are the emerging trends in mobile app development? Discussing technologies like Flutter and React Native.", "createdAt": { - "$date": "2024-06-19T02:08:48.299Z" + "$date": "2024-06-21T00:02:39.611Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.299Z" + "$date": "2024-06-21T00:02:39.611Z" }, "_id": { - "$oid": "66723db08f368f285d304faf" + "$oid": "6674c31f95590f9fd945a253" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f60" + "$oid": "6674c31f95590f9fd945a204" }, "user": { - "$oid": "66723da68f368f285d304ad6" + "$oid": "6674c31695590f9fd9459dae" }, - "content": "Seeking advice on preparing for technical interviews at top tech companies. What are common interview questions?", + "content": "Seeking advice on transitioning from frontend to full-stack development. What skills should I focus on?", "createdAt": { - "$date": "2024-06-19T02:08:48.299Z" + "$date": "2024-06-21T00:02:39.611Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.299Z" + "$date": "2024-06-21T00:02:39.611Z" }, "_id": { - "$oid": "66723db08f368f285d304fb0" + "$oid": "6674c31f95590f9fd945a254" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f64" + "$oid": "6674c31f95590f9fd945a206" }, "user": { - "$oid": "66723da68f368f285d304adf" + "$oid": "6674c31695590f9fd9459da0" }, - "content": "How do you approach code reviews in your team? Share your process for constructive feedback and improvement.", + "content": "Seeking advice on preparing for technical interviews at top tech companies. What are common interview questions?", "createdAt": { - "$date": "2024-06-19T02:08:48.299Z" + "$date": "2024-06-21T00:02:39.611Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.299Z" + "$date": "2024-06-21T00:02:39.611Z" }, "_id": { - "$oid": "66723db08f368f285d304fb1" + "$oid": "6674c31f95590f9fd945a255" }, "__v": 0 }, { "thread": { - "$oid": "66723db08f368f285d304f6b" + "$oid": "6674c31f95590f9fd945a20c" }, "user": { - "$oid": "66723da68f368f285d304adc" + "$oid": "6674c31695590f9fd9459df2" }, - "content": "How do you handle software architecture design in agile development? Share your strategies and experiences.", + "content": "How important is unit testing in your development workflow? Discussing the impact on code quality.", "createdAt": { - "$date": "2024-06-19T02:08:48.295Z" + "$date": "2024-06-21T00:02:39.611Z" }, "updatedAt": { - "$date": "2027-01-29T01:00:15.398Z" + "$date": "2024-06-21T00:02:39.611Z" }, "_id": { - "$oid": "66723db08f368f285d304fb2" + "$oid": "6674c31f95590f9fd945a256" }, "__v": 0 } diff --git a/scripts/db/mongo-dev-init/MOCK_PROFILES.json b/scripts/db/mongo-dev-init/MOCK_PROFILES.json index 6edbda08..ca441496 100644 --- a/scripts/db/mongo-dev-init/MOCK_PROFILES.json +++ b/scripts/db/mongo-dev-init/MOCK_PROFILES.json @@ -6,449 +6,510 @@ "firstName": "Testy", "lastName": "McTesterson", "profilePhoto": "https://www.codesmith.io/hubfs/Screen%20Shot%202024-06-10%20at%2010.46.24%20AM.png", - "cohort": "PTRI 96", + "cohort": "PTRI 19", "graduationYear": 2024, "email": "tester@codehammers.com", "linkedInProfile": "https://www.linkedin.com/in/Testy-McTesterson-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", - "skills": [ - "Android Development", - "Reactive Programming", - "Laravel", - "Scrum", - "Serverless Architecture", - "Concurrency", - "Software Architecture", - "HTML", - "Angular", - "API Integration", - "AWS", - "Cybersecurity", - "Leadership" + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": ["Software Architecture", "Containerization"], + "specializations": [ + "WebSockets", + "Performance Optimization", + "Integration Testing", + "Deep Learning", + "Code Review", + "Containerization", + "React", + "Azure" ], - "specializations": ["Spring Boot", "Google Cloud Platform", "User Experience (UX) Design"], "careerInformation": { - "currentPosition": { "title": "QA Engineer", "company": "Adobe" }, + "currentPosition": { "title": "Cloud Engineer", "company": "Cisco" }, "pastPositions": [ { - "title": "Software Architect", - "company": "Red Hat", + "title": "Mobile Developer", + "company": "Dropbox", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.628Z" }, "endDate": { - "$date": "2027-07-11T14:07:07.297Z" + "$date": "2027-10-10T03:09:26.750Z" }, "_id": { - "$oid": "66723dae8f368f285d304b9d" + "$oid": "6674c31e95590f9fd9459e64" } }, { - "title": "Senior Software Engineer", - "company": "Apple", + "title": "Lead Software Engineer", + "company": "Square", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.628Z" }, "endDate": { - "$date": "2027-09-19T05:16:57.568Z" + "$date": "2027-12-11T16:42:53.446Z" }, "_id": { - "$oid": "66723dae8f368f285d304b9e" + "$oid": "6674c31e95590f9fd9459e65" } }, { - "title": "iOS Developer", - "company": "PayPal", + "title": "Machine Learning Engineer", + "company": "Apple", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.628Z" }, "endDate": { - "$date": "2026-12-22T09:25:16.741Z" + "$date": "2024-07-12T03:29:40.355Z" }, "_id": { - "$oid": "66723dae8f368f285d304b9f" + "$oid": "6674c31e95590f9fd9459e66" } }, { - "title": "Android Developer", - "company": "DoorDash", + "title": "Security Engineer", + "company": "NVIDIA", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.628Z" }, "endDate": { - "$date": "2028-02-08T11:33:45.001Z" + "$date": "2026-11-28T07:29:13.216Z" }, "_id": { - "$oid": "66723dae8f368f285d304ba0" + "$oid": "6674c31e95590f9fd9459e67" } }, { - "title": "Technical Lead", - "company": "Intel", + "title": "Site Reliability Engineer", + "company": "Asana", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2026-04-17T02:41:08.500Z" + "$date": "2026-03-20T05:16:50.298Z" }, "_id": { - "$oid": "66723dae8f368f285d304ba1" + "$oid": "6674c31e95590f9fd9459e68" } } ] }, - "education": [ + "education": [], + "projects": [ { - "institution": "University of California, Santa Barbara (UCSB)", - "degree": "Diploma Program", - "fieldOfStudy": "Film Studies", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2025-07-24T04:55:48.488Z" - }, + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", "_id": { - "$oid": "66723dae8f368f285d304ba2" + "$oid": "6674c31e95590f9fd9459e69" } }, { - "institution": "Rice University", - "degree": "Associate Degree", - "fieldOfStudy": "Urban Planning", + "name": "CloudGuard", + "description": "Advanced cloud security suite ensuring data protection and compliance.", + "link": "https://github.com/username/cloudguard", + "_id": { + "$oid": "6674c31e95590f9fd9459e6a" + } + }, + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "6674c31e95590f9fd9459e6b" + } + }, + { + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", + "_id": { + "$oid": "6674c31e95590f9fd9459e6c" + } + } + ], + "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", + "testimonials": [ + { + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "_id": { + "$oid": "6674c31e95590f9fd9459e6d" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459e6e" + } + }, + { + "from": "Aiden Walker", + "relation": "CTO at Innovate Solutions", + "text": "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", + "_id": { + "$oid": "6674c31e95590f9fd9459e6f" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Testy-McTesterson-fake-blog.com", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Kenzie Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459e63" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6644c768515c654def9b2b09" + }, + "firstName": "Jane", + "lastName": "Doe", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "LA 22", + "graduationYear": 2024, + "email": "jane@codehammers.com", + "linkedInProfile": "https://www.linkedin.com/in/Jane-Doe-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": [ + "React", + "Deep Learning", + "Python", + "Big Data", + "Automated Testing", + "HTML", + "Refactoring", + "Docker" + ], + "specializations": [], + "careerInformation": { + "currentPosition": { "title": "Engineering Manager", "company": "Stripe" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "Johns Hopkins University", + "degree": "Bachelor of Engineering (BE)", + "fieldOfStudy": "Marketing", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2025-01-20T05:28:22.944Z" + "$date": "2027-11-18T07:45:56.863Z" }, "_id": { - "$oid": "66723dae8f368f285d304ba3" + "$oid": "6674c31e95590f9fd9459e71" } }, { - "institution": "Case Western Reserve University", - "degree": "Bachelor of Fine Arts (BFA)", - "fieldOfStudy": "Management", + "institution": "University of Washington", + "degree": "Doctor of Education (EdD)", + "fieldOfStudy": "Mathematics", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2024-10-04T19:33:12.706Z" + "$date": "2028-06-14T22:44:00.693Z" }, "_id": { - "$oid": "66723dae8f368f285d304ba4" + "$oid": "6674c31e95590f9fd9459e72" } } ], "projects": [ { - "name": "SmartInventory", - "description": "Inventory management system with RFID and IoT integration for tracking assets.", - "link": "https://github.com/username/smartinventory", + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", "_id": { - "$oid": "66723dae8f368f285d304ba5" + "$oid": "6674c31e95590f9fd9459e73" } }, { - "name": "RoboVision", - "description": "AI-powered computer vision system for object detection and recognition.", - "link": "https://github.com/username/robovision", + "name": "FoodDelivery", + "description": "Online food delivery platform connecting restaurants with customers for food ordering.", + "link": "https://github.com/username/fooddelivery", "_id": { - "$oid": "66723dae8f368f285d304ba6" + "$oid": "6674c31e95590f9fd9459e74" } }, { - "name": "NetPlanner", - "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", - "link": "https://github.com/username/netplanner", + "name": "TourismApp", + "description": "Mobile application for tourists providing travel guides and local recommendations.", + "link": "https://github.com/username/tourismapp", "_id": { - "$oid": "66723dae8f368f285d304ba7" + "$oid": "6674c31e95590f9fd9459e75" } }, { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", + "name": "RecruitmentAI", + "description": "AI-powered recruitment platform for matching candidates with job opportunities.", + "link": "https://github.com/username/recruitmentai", + "_id": { + "$oid": "6674c31e95590f9fd9459e76" + } + }, + { + "name": "VirtualAssistant", + "description": "Virtual assistant software for voice command-based tasks and personal assistance.", + "link": "https://github.com/username/virtualassistant", "_id": { - "$oid": "66723dae8f368f285d304ba8" + "$oid": "6674c31e95590f9fd9459e77" } } ], - "personalBio": "Passionate about leveraging data-driven insights to optimize software performance and user engagement.", + "personalBio": "Skilled in working with cross-functional teams to deliver innovative software solutions that exceed expectations.", "testimonials": [ { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "66723dae8f368f285d304ba9" + "$oid": "6674c31e95590f9fd9459e78" } }, { - "from": "Noah Rodriguez", - "relation": "Product Owner at AgileSoft", - "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "from": "Lucas Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", "_id": { - "$oid": "66723dae8f368f285d304baa" + "$oid": "6674c31e95590f9fd9459e79" } }, { - "from": "Alice Johnson", - "relation": "Manager at TechSolutions Inc.", - "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", "_id": { - "$oid": "66723dae8f368f285d304bab" + "$oid": "6674c31e95590f9fd9459e7a" } } ], "socialMediaLinks": { - "twitter": "https://x.com/Testy-McTesterson-fake", - "other": ["https://www.instagram.com/Testy-McTesterson-fake"] + "twitter": "https://x.com/Jane-Doe-fake", + "blog": "https://www.Jane-Doe-fake-blog.com", + "other": [] }, "availabilityForNetworking": false, - "bootcampExperience": "Nucamp", + "bootcampExperience": "Kenzie Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304b9c" + "$oid": "6674c31e95590f9fd9459e70" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304aca" + "$oid": "6644c602515c654def9b2ae7" }, - "firstName": "Jane", - "lastName": "Doe", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "WCRI 49", + "firstName": "John", + "lastName": "Dough", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "PTRI 79", "graduationYear": 2024, - "email": "jane@codehammers.com", - "linkedInProfile": "https://www.linkedin.com/in/Jane-Doe-fake", + "email": "john@codehammers.com", + "linkedInProfile": "https://www.linkedin.com/in/John-Dough-fake", "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", "skills": [ - "C#", - "Infrastructure as Code", - "Concurrency", - "Machine Learning", - "Agile Development", - "Functional Programming" + "Continuous Deployment", + "CSS", + "Legacy Code Management", + "API Development", + "Technical Writing", + "Laravel", + "Robotic Process Automation", + "Code Review", + "SaaS (Software as a Service)", + "User Interface (UI) Design", + "Angular", + "API Integration" ], "specializations": [ - "Project Management", - "Unit Testing", - "Edge Computing", - "Legacy Code Management", + "AR/VR (Augmented/Virtual Reality)", + "Google Cloud Platform", + "Machine Learning", + "IoT (Internet of Things)", + "AWS", + "Containerization", + "C#", + "CI/CD", + "Reactive Programming", "Cybersecurity", - "RESTful APIs", - "Mobile Development", - "HTML", - "Angular", - "TDD (Test-Driven Development)", - "Agile Development", - "Machine Learning" + "Node.js", + "Deep Learning", + "Mobile Development" ], "careerInformation": { - "currentPosition": { "title": "Junior Software Engineer", "company": "Dropbox" }, + "currentPosition": { "title": "Android Developer", "company": "Intel" }, "pastPositions": [ { - "title": "QA Engineer", - "company": "LinkedIn", + "title": "Software Developer", + "company": "Uber", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2026-12-11T23:41:42.324Z" + "$date": "2027-09-09T07:07:12.937Z" }, "_id": { - "$oid": "66723dae8f368f285d304bad" + "$oid": "6674c31e95590f9fd9459e7c" } }, { - "title": "Product Manager", - "company": "Dropbox", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2027-08-16T18:45:30.658Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304bae" - } - }, - { - "title": "Android Developer", - "company": "Snowflake", + "title": "AI Engineer", + "company": "Twitter", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2026-06-02T01:42:00.530Z" + "$date": "2027-12-02T21:47:59.011Z" }, "_id": { - "$oid": "66723dae8f368f285d304baf" + "$oid": "6674c31e95590f9fd9459e7d" } } ] }, "education": [], - "projects": [ + "projects": [], + "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", + "testimonials": [ { - "name": "LearnHub", - "description": "Online learning platform offering courses on various subjects with interactive content.", - "link": "https://github.com/username/learnhub", + "from": "Emily Brown", + "relation": "Client at GlobalSoft Solutions", + "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", "_id": { - "$oid": "66723dae8f368f285d304bb0" + "$oid": "6674c31e95590f9fd9459e7e" } }, { - "name": "VirtualTour", - "description": "Virtual reality tour application for immersive travel experiences.", - "link": "https://github.com/username/virtualtour", + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", "_id": { - "$oid": "66723dae8f368f285d304bb1" + "$oid": "6674c31e95590f9fd9459e7f" } }, { - "name": "SmartCity", - "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", - "link": "https://github.com/username/smartcity", + "from": "Lucas Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", "_id": { - "$oid": "66723dae8f368f285d304bb2" + "$oid": "6674c31e95590f9fd9459e80" } }, { - "name": "VoiceAssistant", - "description": "Voice-controlled personal assistant using natural language processing.", - "link": "https://github.com/username/voiceassistant", - "_id": { - "$oid": "66723dae8f368f285d304bb3" - } - } - ], - "personalBio": "Experienced in rapid prototyping and iterative development methodologies.", - "testimonials": [ - { - "from": "Emma Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "66723dae8f368f285d304bb4" + "$oid": "6674c31e95590f9fd9459e81" } }, { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "66723dae8f368f285d304bb5" + "$oid": "6674c31e95590f9fd9459e82" } } ], - "socialMediaLinks": { "other": [] }, + "socialMediaLinks": { + "twitter": "https://x.com/John-Dough-fake", + "blog": "https://www.John-Dough-fake-blog.com", + "other": ["https://www.instagram.com/John-Dough-fake"] + }, "availabilityForNetworking": true, - "bootcampExperience": "Le Wagon", + "bootcampExperience": "Hack Reactor", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304bac" + "$oid": "6674c31e95590f9fd9459e7b" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304acb" + "$oid": "6644c7f7515c654def9b2b18" }, - "firstName": "John", - "lastName": "Dough", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "CTRI 40", + "firstName": "Jaime", + "lastName": "Doh", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "WCRI 12", "graduationYear": 2024, - "email": "john@codehammers.com", - "linkedInProfile": "https://www.linkedin.com/in/John-Dough-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": ["C#", "SQL", "Angular"], + "email": "jaime@codehammers.com", + "linkedInProfile": "https://www.linkedin.com/in/Jaime-Doh-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": [ + "Data Science", + "Performance Optimization", + "System Design", + "Parallel Computing", + "Vue.js" + ], "specializations": [ - "Azure", - "Functional Programming", - "Leadership", + "Docker", + "API Development", + "Software Architecture", + "SQL", + "Blockchain", + "Natural Language Processing", + "Mobile Development", + "Event-Driven Architecture", "Quantum Computing", - "Serverless Architecture" + "Version Control", + "IoT (Internet of Things)", + "Object-Oriented Programming", + "Python", + "Laravel", + "TDD (Test-Driven Development)", + "RESTful APIs", + "Git", + "ASP.NET" ], "careerInformation": { - "currentPosition": { "title": "Product Manager", "company": "Snowflake" }, + "currentPosition": { "title": "Principal Software Engineer", "company": "IBM" }, "pastPositions": [ { - "title": "Android Developer", - "company": "Spotify", + "title": "Data Scientist", + "company": "Facebook", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2024-12-15T20:00:40.088Z" + "$date": "2028-03-11T07:42:22.722Z" }, "_id": { - "$oid": "66723dae8f368f285d304bb7" + "$oid": "6674c31e95590f9fd9459e84" } }, { "title": "Software Developer", - "company": "Google", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2024-12-13T20:23:34.071Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304bb8" - } - }, - { - "title": "Lead Software Engineer", - "company": "Robinhood", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2024-09-13T02:05:00.978Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304bb9" - } - }, - { - "title": "Full Stack Developer", - "company": "Okta", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2026-12-25T23:50:51.225Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304bba" - } - }, - { - "title": "AI Engineer", - "company": "Spotify", + "company": "Snapchat", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2025-07-11T16:32:16.694Z" + "$date": "2026-05-04T04:30:26.274Z" }, "_id": { - "$oid": "66723dae8f368f285d304bbb" + "$oid": "6674c31e95590f9fd9459e85" } } ] @@ -456,54 +517,46 @@ "education": [], "projects": [ { - "name": "EcoTech", - "description": "Environmental monitoring and conservation app with real-time data visualization.", - "link": "https://github.com/username/ecotech", - "_id": { - "$oid": "66723dae8f368f285d304bbc" - } - }, - { - "name": "SmartHomeHub", - "description": "Centralized home automation system integrating IoT devices for smart living.", - "link": "https://github.com/username/smarthomehub", + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", "_id": { - "$oid": "66723dae8f368f285d304bbd" + "$oid": "6674c31e95590f9fd9459e86" } }, { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", "_id": { - "$oid": "66723dae8f368f285d304bbe" + "$oid": "6674c31e95590f9fd9459e87" } }, { - "name": "ARNavigation", - "description": "Augmented reality navigation app for real-time directions and location-based information.", - "link": "https://github.com/username/arnavigation", + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", "_id": { - "$oid": "66723dae8f368f285d304bbf" + "$oid": "6674c31e95590f9fd9459e88" } }, { - "name": "AIChatbot", - "description": "AI-powered chatbot for customer support and interactive communication.", - "link": "https://github.com/username/aichatbot", + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", "_id": { - "$oid": "66723dae8f368f285d304bc0" + "$oid": "6674c31e95590f9fd9459e89" } } ], - "personalBio": "Skilled in working with cross-functional teams to deliver innovative software solutions that exceed expectations.", + "personalBio": "Innovative thinker with a track record of proposing and implementing creative solutions to technical challenges.", "testimonials": [ { - "from": "David Smith", - "relation": "Colleague at InnovateTech Ltd.", - "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "66723dae8f368f285d304bc1" + "$oid": "6674c31e95590f9fd9459e8a" } }, { @@ -511,285 +564,160 @@ "relation": "Project Manager at Digital Dynamics", "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "66723dae8f368f285d304bc2" + "$oid": "6674c31e95590f9fd9459e8b" } }, { - "from": "Olivia White", - "relation": "Tech Lead at Cloud Innovations", - "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", "_id": { - "$oid": "66723dae8f368f285d304bc3" + "$oid": "6674c31e95590f9fd9459e8c" } }, { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "_id": { + "$oid": "6674c31e95590f9fd9459e8d" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "66723dae8f368f285d304bc4" + "$oid": "6674c31e95590f9fd9459e8e" } } ], "socialMediaLinks": { - "blog": "https://www.John-Dough-fake-blog.com", - "other": ["https://www.instagram.com/John-Dough-fake"] + "blog": "https://www.Jaime-Doh-fake-blog.com", + "other": ["https://www.instagram.com/Jaime-Doh-fake"] }, - "availabilityForNetworking": false, - "bootcampExperience": "Codesmith", + "availabilityForNetworking": true, + "bootcampExperience": "DevMountain", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304bb6" + "$oid": "6674c31e95590f9fd9459e83" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304acc" + "$oid": "66723da68f368f285d304acd" }, - "firstName": "Jaime", - "lastName": "Doh", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "cohort": "WCRI 41", + "firstName": "Homer", + "lastName": "Simpson", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "ECRI 33", "graduationYear": 2024, - "email": "jaime@codehammers.com", - "linkedInProfile": "https://www.linkedin.com/in/Jaime-Doh-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", - "skills": [ - "Graph Theory", - "JavaScript", - "Docker", - "ETL (Extract, Transform, Load)", - "Java", - "Machine Learning", - "Integration Testing", - "Functional Programming", - "System Design", - "BDD (Behavior-Driven Development)", - "Refactoring", - "HTML", - "Database Design", - "Vue.js", - "ASP.NET", - "Legacy Code Management", - "Critical Thinking" - ], + "email": "homer@donuts.com", + "linkedInProfile": "https://www.linkedin.com/in/Homer-Simpson-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": ["Data Warehousing", "Java", "Object-Oriented Programming", "CI/CD", "Deep Learning"], "specializations": [ - "Pair Programming", "Project Management", - "Communication Skills", - "Continuous Deployment", - "Quantum Computing", - "CSS", - "Android Development", - "JavaScript", - "Blockchain" - ], - "careerInformation": { - "currentPosition": { "title": "Site Reliability Engineer", "company": "DocuSign" }, - "pastPositions": [ - { - "title": "QA Engineer", - "company": "Robinhood", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2027-08-29T11:09:24.650Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304bc6" - } - }, + "Containerization", + "NoSQL", + "Big Data", + "Performance Optimization", + "Robotic Process Automation", + "Technical Writing", + "Deep Learning", + "Parallel Computing", + "RESTful APIs", + "Database Design", + "Laravel", + "Cybersecurity", + "User Experience (UX) Design", + "Scrum", + "Django" + ], + "careerInformation": { + "currentPosition": { "title": "Android Developer", "company": "Intel" }, + "pastPositions": [ { - "title": "Software Developer", - "company": "Intel", + "title": "Senior Software Engineer", + "company": "PayPal", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2025-01-08T07:59:17.660Z" + "$date": "2025-04-12T21:27:36.733Z" }, "_id": { - "$oid": "66723dae8f368f285d304bc7" + "$oid": "6674c31e95590f9fd9459e90" } - } - ] - }, - "education": [], - "projects": [ - { - "name": "CodeAnalyzer", - "description": "Static code analysis tool for detecting bugs and code quality improvements.", - "link": "https://github.com/username/codeanalyzer", - "_id": { - "$oid": "66723dae8f368f285d304bc8" - } - }, - { - "name": "EduTech", - "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", - "link": "https://github.com/username/edutech", - "_id": { - "$oid": "66723dae8f368f285d304bc9" - } - } - ], - "personalBio": "Passionate about leveraging data-driven insights to optimize software performance and user engagement.", - "testimonials": [], - "socialMediaLinks": { "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "Lambda School", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "66723dae8f368f285d304bc5" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304acd" - }, - "firstName": "Homer", - "lastName": "Simpson", - "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "cohort": "LA 76", - "graduationYear": 2024, - "email": "homer@donuts.com", - "linkedInProfile": "https://www.linkedin.com/in/Homer-Simpson-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", - "skills": [ - "Django", - "FaaS (Function as a Service)", - "Agile Development", - "Robotic Process Automation", - "ETL (Extract, Transform, Load)", - "Graph Databases", - "Functional Programming", - "CSS", - "Unit Testing", - "HTML", - "Ruby", - "Containerization", - "Infrastructure as Code", - "Database Design", - "Continuous Deployment", - "iOS Development", - "JavaScript", - "Collaboration" - ], - "specializations": ["API Development"], - "careerInformation": { - "currentPosition": { "title": "Security Engineer", "company": "Snapchat" }, - "pastPositions": [ + }, { "title": "Software Developer", - "company": "Netflix", + "company": "HubSpot", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2027-11-25T13:08:26.974Z" + "$date": "2028-03-20T10:24:49.358Z" }, "_id": { - "$oid": "66723dae8f368f285d304bcb" + "$oid": "6674c31e95590f9fd9459e91" } }, { - "title": "Machine Learning Engineer", + "title": "AI Engineer", "company": "Coinbase", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2026-09-17T09:07:19.280Z" + "$date": "2028-06-18T18:44:44.418Z" }, "_id": { - "$oid": "66723dae8f368f285d304bcc" + "$oid": "6674c31e95590f9fd9459e92" } } ] }, - "education": [ - { - "institution": "Georgetown University", - "degree": "Doctor of Dental Medicine (DMD)", - "fieldOfStudy": "Nursing", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2027-04-09T01:00:29.970Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304bcd" - } - }, - { - "institution": "University College London (UCL)", - "degree": "Bachelor of Technology (BTech)", - "fieldOfStudy": "Film Studies", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2025-11-10T11:28:20.511Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304bce" - } - } - ], + "education": [], "projects": [ { - "name": "CodeBot", - "description": "Automated code generation tool using AI for faster development cycles.", - "link": "https://github.com/username/codebot", - "_id": { - "$oid": "66723dae8f368f285d304bcf" - } - }, - { - "name": "TravelGuide", - "description": "Interactive travel guide application providing travel tips and destination insights.", - "link": "https://github.com/username/travelguide", + "name": "VirtualAssistant", + "description": "Virtual assistant software for voice command-based tasks and personal assistance.", + "link": "https://github.com/username/virtualassistant", "_id": { - "$oid": "66723dae8f368f285d304bd0" + "$oid": "6674c31e95590f9fd9459e93" } }, { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", + "name": "TourismApp", + "description": "Mobile application for tourists providing travel guides and local recommendations.", + "link": "https://github.com/username/tourismapp", "_id": { - "$oid": "66723dae8f368f285d304bd1" + "$oid": "6674c31e95590f9fd9459e94" } }, { - "name": "LearnHub", - "description": "Online learning platform offering courses on various subjects with interactive content.", - "link": "https://github.com/username/learnhub", + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", "_id": { - "$oid": "66723dae8f368f285d304bd2" + "$oid": "6674c31e95590f9fd9459e95" } } ], - "personalBio": "Dedicated to upholding best practices in software engineering, including testing, code reviews, and version control.", + "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", "testimonials": [ { - "from": "David Smith", - "relation": "Colleague at InnovateTech Ltd.", - "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "from": "Liam Harris", + "relation": "Lead Developer at CloudTech", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "66723dae8f368f285d304bd3" + "$oid": "6674c31e95590f9fd9459e96" } }, { @@ -797,334 +725,305 @@ "relation": "Manager at DataTech Solutions", "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", "_id": { - "$oid": "66723dae8f368f285d304bd4" + "$oid": "6674c31e95590f9fd9459e97" } }, { - "from": "Noah Rodriguez", - "relation": "Product Owner at AgileSoft", - "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304bd5" + "$oid": "6674c31e95590f9fd9459e98" } }, { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "66723dae8f368f285d304bd6" + "$oid": "6674c31e95590f9fd9459e99" } } ], - "socialMediaLinks": { "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "App Academy", + "socialMediaLinks": { + "twitter": "https://x.com/Homer-Simpson-fake", + "blog": "https://www.Homer-Simpson-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Flatiron School", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304bca" + "$oid": "6674c31e95590f9fd9459e8f" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304ace" + "$oid": "6674c31695590f9fd9459d95" }, "firstName": "Corine", "lastName": "Tugwell", - "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "cohort": "WCRI 62", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "ECRI 59", "graduationYear": 2024, "email": "ctugwell0@ovh.net", "linkedInProfile": "https://www.linkedin.com/in/Corine-Tugwell-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", "skills": [ - "Critical Thinking", - "JavaScript", - "ETL (Extract, Transform, Load)", - "Google Cloud Platform", - "Scrum", - "Collaboration", - "SaaS (Software as a Service)", - "CSS", - "FaaS (Function as a Service)", - "Flask", - "Laravel", - "Java", - "Docker", - "Microservices", - "Database Design", - "Refactoring" + "WebSockets", + "Deep Learning", + "Python", + "Project Management", + "Cybersecurity", + "Agile Development", + "Event-Driven Architecture", + "C#" + ], + "specializations": [ + "Integration Testing", + "Graph Theory", + "Natural Language Processing", + "Flask" ], - "specializations": ["Natural Language Processing"], "careerInformation": { - "currentPosition": { "title": "Principal Software Engineer", "company": "IBM" }, + "currentPosition": { "title": "Full Stack Developer", "company": "Uber" }, "pastPositions": [ { - "title": "Software Architect", - "company": "IBM", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2026-09-12T17:12:26.563Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304bd8" - } - }, - { - "title": "Android Developer", - "company": "Dropbox", + "title": "AI Engineer", + "company": "Snowflake", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2024-12-15T01:52:43.225Z" + "$date": "2026-01-21T23:56:05.245Z" }, "_id": { - "$oid": "66723dae8f368f285d304bd9" + "$oid": "6674c31e95590f9fd9459e9b" } }, { - "title": "Security Engineer", - "company": "LinkedIn", + "title": "Lead Software Engineer", + "company": "Intel", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2026-09-27T06:56:31.173Z" + "$date": "2026-11-09T16:01:14.054Z" }, "_id": { - "$oid": "66723dae8f368f285d304bda" + "$oid": "6674c31e95590f9fd9459e9c" } } ] }, "education": [ { - "institution": "University of South Carolina", - "degree": "Bachelor of Science (BS)", - "fieldOfStudy": "International Relations", + "institution": "University of Pennsylvania", + "degree": "Postdoctoral Research", + "fieldOfStudy": "Accounting", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2027-10-23T23:37:01.570Z" + "$date": "2027-07-25T03:58:24.891Z" }, "_id": { - "$oid": "66723dae8f368f285d304bdb" - } - } - ], - "projects": [ - { - "name": "MediCare", - "description": "Medical appointment scheduling and patient management system for healthcare providers.", - "link": "https://github.com/username/medicare", - "_id": { - "$oid": "66723dae8f368f285d304bdc" - } - }, - { - "name": "CryptoTrack", - "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", - "link": "https://github.com/username/cryptotrack", - "_id": { - "$oid": "66723dae8f368f285d304bdd" + "$oid": "6674c31e95590f9fd9459e9d" } } ], - "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", - "testimonials": [ - { - "from": "Ethan Taylor", - "relation": "Co-founder at StartupX", - "text": "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", - "_id": { - "$oid": "66723dae8f368f285d304bde" - } - }, - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", - "_id": { - "$oid": "66723dae8f368f285d304bdf" - } - }, - { - "from": "Noah Rodriguez", - "relation": "Product Owner at AgileSoft", - "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", - "_id": { - "$oid": "66723dae8f368f285d304be0" - } - }, - { - "from": "Isabella Clark", - "relation": "HR Manager at TechFusion", - "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", - "_id": { - "$oid": "66723dae8f368f285d304be1" - } - } - ], - "socialMediaLinks": { "twitter": "https://x.com/Corine-Tugwell-fake", "other": [] }, + "projects": [], + "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Corine-Tugwell-fake", + "blog": "https://www.Corine-Tugwell-fake-blog.com", + "other": [] + }, "availabilityForNetworking": false, - "bootcampExperience": "Le Wagon", + "bootcampExperience": "Springboard", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304bd7" + "$oid": "6674c31e95590f9fd9459e9a" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304acf" + "$oid": "6674c31695590f9fd9459d96" }, "firstName": "Brody", "lastName": "Cumpton", - "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "cohort": "LA 94", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "cohort": "LA 53", "graduationYear": 2024, "email": "bcumpton1@bluehost.com", "linkedInProfile": "https://www.linkedin.com/in/Brody-Cumpton-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", - "skills": ["FaaS (Function as a Service)", "C++", "Agile Development"], - "specializations": [ - "Performance Optimization", - "Pair Programming", - "Leadership", - "Legacy Code Management", - "Android Development", - "Integration Testing", - "Critical Thinking", - "Cloud Computing", - "AWS", - "Machine Learning", - "GraphQL", - "Time Management", - "Scrum", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": [ + "Cybersecurity", + "Functional Programming", + "Continuous Deployment", + "BDD (Behavior-Driven Development)", + "Code Review", + "C#", "ASP.NET", - "BDD (Behavior-Driven Development)" + "System Design", + "Serverless Architecture", + "Node.js", + "Leadership", + "Refactoring" ], + "specializations": ["Design Patterns", "ASP.NET", "Data Science"], "careerInformation": { - "currentPosition": { "title": "Mobile Developer", "company": "HubSpot" }, + "currentPosition": { "title": "Automation Engineer", "company": "DoorDash" }, "pastPositions": [ { - "title": "Embedded Systems Engineer", - "company": "ServiceNow", + "title": "AI Engineer", + "company": "Activision Blizzard", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2025-04-18T00:59:24.882Z" + "$date": "2024-07-19T16:33:45.483Z" }, "_id": { - "$oid": "66723dae8f368f285d304be3" + "$oid": "6674c31e95590f9fd9459e9f" } }, { - "title": "Technical Program Manager", - "company": "Twilio", + "title": "Data Engineer", + "company": "Cisco", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2027-09-05T14:06:42.146Z" + "$date": "2027-11-18T15:54:33.828Z" }, "_id": { - "$oid": "66723dae8f368f285d304be4" + "$oid": "6674c31e95590f9fd9459ea0" } } ] }, "education": [ { - "institution": "University of Virginia", - "degree": "Master of Education (MEd)", + "institution": "University of Hong Kong (HKU)", + "degree": "Doctor of Veterinary Medicine (DVM)", + "fieldOfStudy": "Fine Arts", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2026-04-20T15:00:38.622Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ea1" + } + }, + { + "institution": "Rice University", + "degree": "Doctoral Degree", "fieldOfStudy": "Electrical Engineering", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2028-05-17T05:36:09.767Z" + "$date": "2027-04-09T18:24:08.544Z" }, "_id": { - "$oid": "66723dae8f368f285d304be5" + "$oid": "6674c31e95590f9fd9459ea2" } }, { - "institution": "University of Missouri", + "institution": "Emory University", "degree": "Associate Degree", - "fieldOfStudy": "Electrical Engineering", + "fieldOfStudy": "Fine Arts", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2025-05-19T11:54:01.609Z" + "$date": "2024-08-25T01:25:26.296Z" }, "_id": { - "$oid": "66723dae8f368f285d304be6" + "$oid": "6674c31e95590f9fd9459ea3" } } ], - "projects": [], - "personalBio": "Experienced in deploying and maintaining applications on cloud platforms like AWS and Azure.", - "testimonials": [ + "projects": [ { - "from": "Lucas Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", + "name": "HealthLink", + "description": "Telemedicine platform connecting patients with healthcare providers remotely.", + "link": "https://github.com/username/healthlink", "_id": { - "$oid": "66723dae8f368f285d304be7" + "$oid": "6674c31e95590f9fd9459ea4" } }, { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", "_id": { - "$oid": "66723dae8f368f285d304be8" + "$oid": "6674c31e95590f9fd9459ea5" } }, { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", "_id": { - "$oid": "66723dae8f368f285d304be9" + "$oid": "6674c31e95590f9fd9459ea6" } }, { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "name": "ARNavigation", + "description": "Augmented reality navigation app for real-time directions and location-based information.", + "link": "https://github.com/username/arnavigation", "_id": { - "$oid": "66723dae8f368f285d304bea" + "$oid": "6674c31e95590f9fd9459ea7" } }, { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "name": "NetPlanner", + "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", + "link": "https://github.com/username/netplanner", + "_id": { + "$oid": "6674c31e95590f9fd9459ea8" + } + } + ], + "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", + "testimonials": [ + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd9459ea9" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "66723dae8f368f285d304beb" + "$oid": "6674c31e95590f9fd9459eaa" } } ], "socialMediaLinks": { "twitter": "https://x.com/Brody-Cumpton-fake", - "other": ["https://www.instagram.com/Brody-Cumpton-fake"] + "blog": "https://www.Brody-Cumpton-fake-blog.com", + "other": [] }, "availabilityForNetworking": true, "bootcampExperience": "App Academy", @@ -1133,422 +1032,346 @@ "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304be2" + "$oid": "6674c31e95590f9fd9459e9e" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304ad0" + "$oid": "6674c31695590f9fd9459d97" }, "firstName": "Moselle", "lastName": "Duro", - "cohort": "ECRI 91", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "66723dae8f368f285d304bec" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304ad1" - }, - "firstName": "Winifred", - "lastName": "Carnelley", - "cohort": "LA 54", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "66723dae8f368f285d304bed" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304ad2" - }, - "firstName": "Marchelle", - "lastName": "Truin", - "cohort": "CTRI 6", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "66723dae8f368f285d304bee" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304ad3" - }, - "firstName": "Cally", - "lastName": "Gisbey", - "cohort": "NYC 36", + "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "cohort": "ECRI 35", + "graduationYear": 2024, + "email": "mduro2@technorati.com", + "linkedInProfile": "https://www.linkedin.com/in/Moselle-Duro-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "66723dae8f368f285d304bef" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304ad4" + "specializations": [ + "Critical Thinking", + "Performance Optimization", + "Graph Theory", + "Python", + "WebSockets", + "Parallel Computing", + "Project Management", + "Reactive Programming", + "Data Science" + ], + "careerInformation": { + "currentPosition": { "title": "Data Scientist", "company": "Adobe" }, + "pastPositions": [ + { + "title": "Software Engineer", + "company": "Intel", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2024-08-04T07:39:44.239Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459eac" + } + }, + { + "title": "Automation Engineer", + "company": "ServiceNow", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2028-04-12T13:00:51.922Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ead" + } + } + ] }, - "firstName": "Arlina", - "lastName": "Moodie", - "cohort": "ECRI 84", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "66723dae8f368f285d304bf0" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304ad5" - }, - "firstName": "Shurlock", - "lastName": "Tytcomb", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "LA 7", - "graduationYear": 2024, - "email": "stytcomb8@google.it", - "linkedInProfile": "https://www.linkedin.com/in/Shurlock-Tytcomb-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", - "skills": [ - "Azure", - "Event-Driven Architecture", - "SaaS (Software as a Service)", - "Edge Computing", - "Unit Testing", - "Git", - "Critical Thinking", - "NoSQL", - "Big Data", - "Integration Testing", - "API Integration" - ], - "specializations": [ - "Angular", - "C++", - "Git", - "Java", - "Blockchain", - "Android Development", - "JavaScript", - "Big Data", - "Integration Testing", - "Microservices", - "Performance Optimization" - ], - "careerInformation": { - "currentPosition": { "title": "Embedded Systems Engineer", "company": "ServiceNow" }, - "pastPositions": [ - { - "title": "Data Scientist", - "company": "Netflix", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2026-05-02T10:36:15.927Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304bf2" - } + "education": [ + { + "institution": "Carnegie Mellon University", + "degree": "Trade School Certification", + "fieldOfStudy": "Dentistry", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" }, - { - "title": "DevOps Engineer", - "company": "Snowflake", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2028-01-11T03:36:57.065Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304bf3" - } + "endDate": { + "$date": "2026-10-05T23:54:03.085Z" }, - { - "title": "Senior Software Engineer", - "company": "Microsoft", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2025-07-06T15:36:06.061Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304bf4" - } + "_id": { + "$oid": "6674c31e95590f9fd9459eae" } - ] - }, - "education": [], + }, + { + "institution": "University of British Columbia", + "degree": "Master of Public Administration (MPA)", + "fieldOfStudy": "Nursing", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2027-09-30T00:54:06.572Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459eaf" + } + } + ], "projects": [ { - "name": "FoodDelivery", - "description": "Online food delivery platform connecting restaurants with customers for food ordering.", - "link": "https://github.com/username/fooddelivery", + "name": "SmartLearning", + "description": "AI-driven personalized learning platform with adaptive learning algorithms.", + "link": "https://github.com/username/smartlearning", "_id": { - "$oid": "66723dae8f368f285d304bf5" + "$oid": "6674c31e95590f9fd9459eb0" } }, { - "name": "ARNavigation", - "description": "Augmented reality navigation app for real-time directions and location-based information.", - "link": "https://github.com/username/arnavigation", + "name": "HealthMonitor", + "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", + "link": "https://github.com/username/healthmonitor", "_id": { - "$oid": "66723dae8f368f285d304bf6" + "$oid": "6674c31e95590f9fd9459eb1" } }, { - "name": "DataCrunch", - "description": "Real-time data analytics platform for extracting insights from big data.", - "link": "https://github.com/username/datacrunch", + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", "_id": { - "$oid": "66723dae8f368f285d304bf7" + "$oid": "6674c31e95590f9fd9459eb2" } }, { - "name": "CloudGuard", - "description": "Advanced cloud security suite ensuring data protection and compliance.", - "link": "https://github.com/username/cloudguard", + "name": "CryptoTrack", + "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", + "link": "https://github.com/username/cryptotrack", "_id": { - "$oid": "66723dae8f368f285d304bf8" + "$oid": "6674c31e95590f9fd9459eb3" + } + }, + { + "name": "SmartLearning", + "description": "AI-driven personalized learning platform with adaptive learning algorithms.", + "link": "https://github.com/username/smartlearning", + "_id": { + "$oid": "6674c31e95590f9fd9459eb4" } } ], - "personalBio": "Skilled in UX/UI design principles, with a focus on creating intuitive and visually appealing interfaces.", - "testimonials": [], - "socialMediaLinks": { - "twitter": "https://x.com/Shurlock-Tytcomb-fake", - "other": ["https://www.instagram.com/Shurlock-Tytcomb-fake"] - }, + "personalBio": "Committed to writing clean, maintainable code that meets rigorous performance standards.", + "testimonials": [ + { + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "_id": { + "$oid": "6674c31e95590f9fd9459eb5" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd9459eb6" + } + }, + { + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd9459eb7" + } + }, + { + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459eb8" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Moselle-Duro-fake-blog.com", "other": [] }, "availabilityForNetworking": false, - "bootcampExperience": "Hack Reactor", + "bootcampExperience": "Lambda School", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304bf1" + "$oid": "6674c31e95590f9fd9459eab" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304ad6" + "$oid": "6674c31695590f9fd9459d98" }, - "firstName": "Ermina", - "lastName": "Guyton", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "CTRI 76", + "firstName": "Winifred", + "lastName": "Carnelley", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "CTRI 43", "graduationYear": 2024, - "email": "eguyton9@blog.com", - "linkedInProfile": "https://www.linkedin.com/in/Ermina-Guyton-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", - "skills": [ - "Data Science", - "Graph Databases", - "Performance Optimization", - "Refactoring", - "Functional Programming", - "Azure", - "User Experience (UX) Design", - "Event-Driven Architecture", - "Communication Skills", - "Quantum Computing" - ], - "specializations": ["Edge Computing", "Automated Testing"], + "email": "wcarnelley3@ucsd.edu", + "linkedInProfile": "https://www.linkedin.com/in/Winifred-Carnelley-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [], + "specializations": ["SQL", "Event-Driven Architecture", "Java", "Automated Testing"], "careerInformation": { - "currentPosition": { "title": "Engineering Manager", "company": "Pinterest" }, + "currentPosition": { "title": "Cloud Engineer", "company": "Stripe" }, "pastPositions": [ { - "title": "Technical Lead", - "company": "Square", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2026-06-11T00:16:49.256Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304bfa" - } - }, - { - "title": "Software Engineer", - "company": "Datadog", + "title": "Principal Software Engineer", + "company": "Stripe", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2026-11-27T09:45:55.758Z" + "$date": "2026-10-28T00:27:58.801Z" }, "_id": { - "$oid": "66723dae8f368f285d304bfb" + "$oid": "6674c31e95590f9fd9459eba" } }, { - "title": "Backend Developer", - "company": "Qualcomm", + "title": "Site Reliability Engineer", + "company": "Zoom", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2025-06-24T20:34:29.079Z" + "$date": "2027-04-07T05:12:43.621Z" }, "_id": { - "$oid": "66723dae8f368f285d304bfc" + "$oid": "6674c31e95590f9fd9459ebb" } }, { - "title": "Cloud Engineer", - "company": "Datadog", + "title": "Automation Engineer", + "company": "Slack", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2024-11-20T16:41:03.163Z" + "$date": "2027-05-20T18:04:40.281Z" }, "_id": { - "$oid": "66723dae8f368f285d304bfd" + "$oid": "6674c31e95590f9fd9459ebc" } } ] }, "education": [ { - "institution": "University of California, San Diego (UCSD)", - "degree": "Doctoral Degree", - "fieldOfStudy": "Finance", + "institution": "University of Arizona", + "degree": "Bachelor of Arts (BA)", + "fieldOfStudy": "Civil Engineering", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2026-01-22T20:46:31.447Z" + "$date": "2026-10-24T16:15:27.252Z" }, "_id": { - "$oid": "66723dae8f368f285d304bfe" + "$oid": "6674c31e95590f9fd9459ebd" } - } - ], - "projects": [ + }, { - "name": "AIAssistant", - "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", - "link": "https://github.com/username/aiassistant", + "institution": "California Institute of Technology (Caltech)", + "degree": "Doctor of Medicine (MD)", + "fieldOfStudy": "Mechanical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2027-05-18T20:43:41.258Z" + }, "_id": { - "$oid": "66723dae8f368f285d304bff" + "$oid": "6674c31e95590f9fd9459ebe" } }, { - "name": "SmartGrid", - "description": "Smart grid technology for efficient energy distribution and consumption.", - "link": "https://github.com/username/smartgrid", + "institution": "Columbia University", + "degree": "Bachelor of Technology (BTech)", + "fieldOfStudy": "Biology", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2026-10-21T01:23:24.583Z" + }, "_id": { - "$oid": "66723dae8f368f285d304c00" + "$oid": "6674c31e95590f9fd9459ebf" } - }, + } + ], + "projects": [ { - "name": "HealthMonitor", - "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", - "link": "https://github.com/username/healthmonitor", + "name": "SmartWatch", + "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", + "link": "https://github.com/username/smartwatch", "_id": { - "$oid": "66723dae8f368f285d304c01" + "$oid": "6674c31e95590f9fd9459ec0" } }, { - "name": "LearnHub", - "description": "Online learning platform offering courses on various subjects with interactive content.", - "link": "https://github.com/username/learnhub", + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", "_id": { - "$oid": "66723dae8f368f285d304c02" + "$oid": "6674c31e95590f9fd9459ec1" } }, { - "name": "ARNavigation", - "description": "Augmented reality navigation app for real-time directions and location-based information.", - "link": "https://github.com/username/arnavigation", + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", "_id": { - "$oid": "66723dae8f368f285d304c03" + "$oid": "6674c31e95590f9fd9459ec2" } } ], - "personalBio": "Passionate about contributing to the tech community through open-source projects and knowledge sharing.", + "personalBio": "Skilled in UX/UI design principles, with a focus on creating intuitive and visually appealing interfaces.", "testimonials": [ { - "from": "Sophia Turner", + "from": "Liam Harris", + "relation": "Lead Developer at CloudTech", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459ec3" + } + }, + { + "from": "Sophie Turner", "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "66723dae8f368f285d304c04" + "$oid": "6674c31e95590f9fd9459ec4" } }, { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd9459ec5" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "66723dae8f368f285d304c05" + "$oid": "6674c31e95590f9fd9459ec6" } }, { @@ -1556,134 +1379,211 @@ "relation": "Director of Engineering at FutureTech", "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304c06" + "$oid": "6674c31e95590f9fd9459ec7" } } ], "socialMediaLinks": { - "blog": "https://www.Ermina-Guyton-fake-blog.com", - "other": ["https://www.instagram.com/Ermina-Guyton-fake"] + "blog": "https://www.Winifred-Carnelley-fake-blog.com", + "other": ["https://www.instagram.com/Winifred-Carnelley-fake"] }, "availabilityForNetworking": true, - "bootcampExperience": "Makers Academy", + "bootcampExperience": "Lambda School", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304bf9" + "$oid": "6674c31e95590f9fd9459eb9" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304ad7" + "$oid": "6674c31695590f9fd9459d99" }, - "firstName": "Shelton", - "lastName": "Halwood", + "firstName": "Marchelle", + "lastName": "Truin", "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "cohort": "LA 83", + "cohort": "ECRI 75", "graduationYear": 2024, - "email": "shalwooda@sciencedirect.com", - "linkedInProfile": "https://www.linkedin.com/in/Shelton-Halwood-fake", - "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", + "email": "mtruin4@stumbleupon.com", + "linkedInProfile": "https://www.linkedin.com/in/Marchelle-Truin-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", "skills": [ - "PaaS (Platform as a Service)", - "Mobile Development", - "Leadership", + "User Interface (UI) Design", + "GraphQL", + "Refactoring", + "Deep Learning", + "Problem-Solving", + "Pair Programming", + "Database Design", + "Parallel Computing", + "Reactive Programming", + "BDD (Behavior-Driven Development)", + "Graph Theory", + "NoSQL", + "Machine Learning", "Spring Boot", - "Microservices", + "Big Data", + "Blockchain", + "iOS Development", + "Node.js" + ], + "specializations": [ "Edge Computing", - "Data Science", - "Vue.js", - "FaaS (Function as a Service)", - "Integration Testing", - "Agile Development", - "Automated Testing" + "Flask", + "RESTful APIs", + "Functional Programming", + "Event-Driven Architecture", + "Google Cloud Platform", + "Communication Skills", + "Docker" ], - "specializations": ["Data Visualization", "Leadership"], "careerInformation": { - "currentPosition": { "title": "Backend Developer", "company": "Shopify" }, + "currentPosition": { "title": "DevOps Engineer", "company": "Snapchat" }, "pastPositions": [ { - "title": "Automation Engineer", - "company": "Datadog", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2027-10-23T22:34:02.474Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304c08" - } - }, - { - "title": "Senior Software Engineer", - "company": "Robinhood", + "title": "Test Engineer", + "company": "Lyft", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2026-09-02T13:42:32.039Z" + "$date": "2025-09-25T10:44:24.021Z" }, "_id": { - "$oid": "66723dae8f368f285d304c09" + "$oid": "6674c31e95590f9fd9459ec9" } }, { - "title": "Software Developer", - "company": "Snowflake", + "title": "Data Scientist", + "company": "Facebook", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.629Z" }, "endDate": { - "$date": "2027-04-04T12:24:55.498Z" + "$date": "2026-07-19T22:19:39.735Z" }, "_id": { - "$oid": "66723dae8f368f285d304c0a" + "$oid": "6674c31e95590f9fd9459eca" } } ] }, - "education": [ + "education": [], + "projects": [], + "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", + "testimonials": [ { - "institution": "Vanderbilt University", - "degree": "Doctor of Pharmacy (PharmD)", - "fieldOfStudy": "Computer Science", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2027-10-06T22:26:05.951Z" - }, + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304c0b" + "$oid": "6674c31e95590f9fd9459ecb" } }, { - "institution": "University of Alberta", - "degree": "Master of Public Administration (MPA)", - "fieldOfStudy": "Urban Planning", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "_id": { + "$oid": "6674c31e95590f9fd9459ecc" + } + }, + { + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd9459ecd" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Marchelle-Truin-fake", + "blog": "https://www.Marchelle-Truin-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": false, + "bootcampExperience": "The Tech Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459ec8" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459d9a" + }, + "firstName": "Cally", + "lastName": "Gisbey", + "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "cohort": "WCRI 47", + "graduationYear": 2024, + "email": "cgisbey5@squarespace.com", + "linkedInProfile": "https://www.linkedin.com/in/Cally-Gisbey-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": [ + "Continuous Deployment", + "Quantum Computing", + "Cybersecurity", + "C#", + "C++", + "Graph Databases", + "RESTful APIs", + "SaaS (Software as a Service)", + "Android Development", + "Machine Learning", + "Collaboration", + "Data Science", + "Data Visualization", + "Event-Driven Architecture" + ], + "specializations": [ + "FaaS (Function as a Service)", + "Refactoring", + "Data Visualization", + "Kubernetes", + "Cloud Computing", + "Software Architecture", + "Android Development", + "Flask", + "API Development" + ], + "careerInformation": { + "currentPosition": { "title": "Software Engineer", "company": "Red Hat" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "Chinese University of Hong Kong (CUHK)", + "degree": "Executive Education", + "fieldOfStudy": "Biomedical Engineering", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2028-06-08T07:30:17.321Z" + "$date": "2026-03-26T12:16:39.146Z" }, "_id": { - "$oid": "66723dae8f368f285d304c0c" + "$oid": "6674c31e95590f9fd9459ecf" } } ], "projects": [ { - "name": "SmartHomeHub", - "description": "Centralized home automation system integrating IoT devices for smart living.", - "link": "https://github.com/username/smarthomehub", + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", "_id": { - "$oid": "66723dae8f368f285d304c0d" + "$oid": "6674c31e95590f9fd9459ed0" } }, { @@ -1691,293 +1591,450 @@ "description": "Environmental monitoring and conservation app with real-time data visualization.", "link": "https://github.com/username/ecotech", "_id": { - "$oid": "66723dae8f368f285d304c0e" + "$oid": "6674c31e95590f9fd9459ed1" } }, { - "name": "CloudStorage", - "description": "Cloud storage service with file synchronization and sharing capabilities.", - "link": "https://github.com/username/cloudstorage", + "name": "AIChatbot", + "description": "AI-powered chatbot for customer support and interactive communication.", + "link": "https://github.com/username/aichatbot", + "_id": { + "$oid": "6674c31e95590f9fd9459ed2" + } + } + ], + "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", + "testimonials": [ + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "66723dae8f368f285d304c0f" + "$oid": "6674c31e95590f9fd9459ed3" } }, { - "name": "SmartHomeHub", - "description": "Centralized home automation system integrating IoT devices for smart living.", - "link": "https://github.com/username/smarthomehub", + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", "_id": { - "$oid": "66723dae8f368f285d304c10" + "$oid": "6674c31e95590f9fd9459ed4" } }, { - "name": "AIAssistant", - "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", - "link": "https://github.com/username/aiassistant", + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "_id": { + "$oid": "6674c31e95590f9fd9459ed5" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd9459ed6" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "66723dae8f368f285d304c11" + "$oid": "6674c31e95590f9fd9459ed7" } } ], - "personalBio": "Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.", - "testimonials": [], "socialMediaLinks": { - "twitter": "https://x.com/Shelton-Halwood-fake", - "other": ["https://www.instagram.com/Shelton-Halwood-fake"] + "blog": "https://www.Cally-Gisbey-fake-blog.com", + "other": ["https://www.instagram.com/Cally-Gisbey-fake"] }, "availabilityForNetworking": true, - "bootcampExperience": "Coding Dojo", + "bootcampExperience": "Kenzie Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304c07" + "$oid": "6674c31e95590f9fd9459ece" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304ad8" + "$oid": "6674c31695590f9fd9459d9b" }, - "firstName": "Nigel", - "lastName": "Clemenzo", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "CTRI 75", - "graduationYear": 2024, - "email": "nclemenzob@fotki.com", - "linkedInProfile": "https://www.linkedin.com/in/Nigel-Clemenzo-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": ["Event-Driven Architecture"], - "specializations": [ - "Data Science", - "Python", - "IoT (Internet of Things)", - "Time Management", - "Database Design", - "BDD (Behavior-Driven Development)", - "Big Data" - ], - "careerInformation": { - "currentPosition": { "title": "iOS Developer", "company": "HubSpot" }, - "pastPositions": [ - { - "title": "Site Reliability Engineer", - "company": "Facebook", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2027-08-13T15:22:23.830Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304c13" - } - }, + "firstName": "Arlina", + "lastName": "Moodie", + "cohort": "CTRI 90", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459ed8" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459d9c" + }, + "firstName": "Shurlock", + "lastName": "Tytcomb", + "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "cohort": "FTRI 96", + "graduationYear": 2024, + "email": "stytcomb8@google.it", + "linkedInProfile": "https://www.linkedin.com/in/Shurlock-Tytcomb-fake", + "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", + "skills": [ + "Mobile Development", + "Python", + "Serverless Architecture", + "Microservices", + "Technical Writing", + "Database Design", + "React", + "Data Visualization", + "Android Development", + "Project Management" + ], + "specializations": [ + "Pair Programming", + "BDD (Behavior-Driven Development)", + "SaaS (Software as a Service)", + "Performance Optimization", + "Continuous Deployment", + "Automated Testing", + "Deep Learning", + "Critical Thinking", + "SQL", + "Flask", + "Azure", + "CI/CD", + "User Interface (UI) Design", + "Reactive Programming", + "Android Development" + ], + "careerInformation": { + "currentPosition": { "title": "Software Developer", "company": "Epic Games" }, + "pastPositions": [ { - "title": "Data Engineer", - "company": "Palantir", + "title": "Web Developer", + "company": "Spotify", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-07-12T07:14:02.706Z" + "$date": "2026-06-10T04:49:57.630Z" }, "_id": { - "$oid": "66723dae8f368f285d304c14" + "$oid": "6674c31e95590f9fd9459eda" } }, { - "title": "Technical Lead", - "company": "Qualcomm", + "title": "Product Manager", + "company": "Google", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-05-08T03:58:43.449Z" + "$date": "2025-11-17T20:23:24.793Z" }, "_id": { - "$oid": "66723dae8f368f285d304c15" + "$oid": "6674c31e95590f9fd9459edb" } }, { - "title": "Lead Software Engineer", - "company": "Asana", + "title": "Engineering Manager", + "company": "Square", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-03-18T18:46:31.823Z" + "$date": "2028-03-23T21:47:04.450Z" }, "_id": { - "$oid": "66723dae8f368f285d304c16" + "$oid": "6674c31e95590f9fd9459edc" } }, { - "title": "Product Manager", - "company": "IBM", + "title": "iOS Developer", + "company": "ServiceNow", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-12-12T09:44:25.866Z" + "$date": "2028-04-29T03:55:53.606Z" }, "_id": { - "$oid": "66723dae8f368f285d304c17" + "$oid": "6674c31e95590f9fd9459edd" } } ] }, "education": [ { - "institution": "Case Western Reserve University", - "degree": "Master of Science (MS)", - "fieldOfStudy": "Film Studies", + "institution": "McGill University", + "degree": "Master of Education (MEd)", + "fieldOfStudy": "Biology", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-08-14T21:04:11.241Z" + "$date": "2025-12-11T12:31:47.006Z" }, "_id": { - "$oid": "66723dae8f368f285d304c18" + "$oid": "6674c31e95590f9fd9459ede" } } ], "projects": [ { - "name": "CryptoWallet", - "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", - "link": "https://github.com/username/cryptowallet", + "name": "CloudGuard", + "description": "Advanced cloud security suite ensuring data protection and compliance.", + "link": "https://github.com/username/cloudguard", "_id": { - "$oid": "66723dae8f368f285d304c19" + "$oid": "6674c31e95590f9fd9459edf" } }, { - "name": "ARNavigation", - "description": "Augmented reality navigation app for real-time directions and location-based information.", - "link": "https://github.com/username/arnavigation", + "name": "AugmentWorks", + "description": "Augmented reality application for enhancing workplace productivity and training.", + "link": "https://github.com/username/augmentworks", "_id": { - "$oid": "66723dae8f368f285d304c1a" + "$oid": "6674c31e95590f9fd9459ee0" } }, { - "name": "RoboVision", - "description": "AI-powered computer vision system for object detection and recognition.", - "link": "https://github.com/username/robovision", + "name": "VirtualAssistant", + "description": "Virtual assistant software for voice command-based tasks and personal assistance.", + "link": "https://github.com/username/virtualassistant", "_id": { - "$oid": "66723dae8f368f285d304c1b" + "$oid": "6674c31e95590f9fd9459ee1" } } ], - "personalBio": "Passionate about improving codebase efficiency through refactoring and performance tuning.", + "personalBio": "Experienced in rapid prototyping and iterative development methodologies.", "testimonials": [ { "from": "Sophia Turner", "relation": "Project Manager at Digital Dynamics", "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "66723dae8f368f285d304c1c" + "$oid": "6674c31e95590f9fd9459ee2" } }, { - "from": "Sophie Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "from": "Liam Harris", + "relation": "Lead Developer at CloudTech", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "66723dae8f368f285d304c1d" + "$oid": "6674c31e95590f9fd9459ee3" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd9459ee4" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd9459ee5" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "66723dae8f368f285d304c1e" + "$oid": "6674c31e95590f9fd9459ee6" } } ], "socialMediaLinks": { - "twitter": "https://x.com/Nigel-Clemenzo-fake", - "other": ["https://www.instagram.com/Nigel-Clemenzo-fake"] + "blog": "https://www.Shurlock-Tytcomb-fake-blog.com", + "other": ["https://www.instagram.com/Shurlock-Tytcomb-fake"] }, "availabilityForNetworking": true, - "bootcampExperience": "Makers Academy", + "bootcampExperience": "General Assembly", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304c12" + "$oid": "6674c31e95590f9fd9459ed9" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304ad9" + "$oid": "6674c31695590f9fd9459d9d" + }, + "firstName": "Ermina", + "lastName": "Guyton", + "cohort": "NYC 50", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459ee7" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459d9e" + }, + "firstName": "Shelton", + "lastName": "Halwood", + "cohort": "FTRI 75", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459ee8" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459d9f" + }, + "firstName": "Nigel", + "lastName": "Clemenzo", + "cohort": "NYC 28", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459ee9" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459da0" }, "firstName": "Colver", "lastName": "Oswell", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "NYC 48", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "NYC 47", "graduationYear": 2024, "email": "coswellc@wsj.com", "linkedInProfile": "https://www.linkedin.com/in/Colver-Oswell-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": ["Agile Development", "NoSQL", "Vue.js"], + "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", + "skills": [], "specializations": [ - "Angular", - "FaaS (Function as a Service)", - "Data Science", "Parallel Computing", - "PaaS (Platform as a Service)", - "Event-Driven Architecture", - "Git", "Graph Theory", - "Natural Language Processing" + "Project Management", + "Django", + "User Interface (UI) Design", + "Problem-Solving", + "Flask", + "Cybersecurity", + "Serverless Architecture", + "Event-Driven Architecture" ], "careerInformation": { - "currentPosition": { "title": "Frontend Developer", "company": "Zoom" }, + "currentPosition": { "title": "Product Manager", "company": "Intel" }, "pastPositions": [ { - "title": "Backend Developer", - "company": "Intel", + "title": "Data Engineer", + "company": "VMware", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2028-03-19T19:53:16.224Z" + "$date": "2024-09-17T01:01:15.666Z" }, "_id": { - "$oid": "66723dae8f368f285d304c20" + "$oid": "6674c31e95590f9fd9459eeb" } }, { - "title": "Mobile Developer", - "company": "Netflix", + "title": "Web Developer", + "company": "EA (Electronic Arts)", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2024-09-20T21:26:30.040Z" + "$date": "2025-12-30T14:55:19.349Z" }, "_id": { - "$oid": "66723dae8f368f285d304c21" + "$oid": "6674c31e95590f9fd9459eec" } }, { - "title": "Technical Lead", - "company": "DoorDash", + "title": "Machine Learning Engineer", + "company": "Asana", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-04-26T04:30:20.219Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459eed" + } + }, + { + "title": "Full Stack Developer", + "company": "Google", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-03-03T09:58:37.154Z" + "$date": "2025-07-19T04:15:17.275Z" }, "_id": { - "$oid": "66723dae8f368f285d304c22" + "$oid": "6674c31e95590f9fd9459eee" } } ] @@ -1985,101 +2042,93 @@ "education": [], "projects": [ { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", + "name": "ARNavigation", + "description": "Augmented reality navigation app for real-time directions and location-based information.", + "link": "https://github.com/username/arnavigation", "_id": { - "$oid": "66723dae8f368f285d304c23" + "$oid": "6674c31e95590f9fd9459eef" } }, { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", "_id": { - "$oid": "66723dae8f368f285d304c24" + "$oid": "6674c31e95590f9fd9459ef0" } }, { - "name": "HealthMonitor", - "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", - "link": "https://github.com/username/healthmonitor", + "name": "AIChatbot", + "description": "AI-powered chatbot for customer support and interactive communication.", + "link": "https://github.com/username/aichatbot", "_id": { - "$oid": "66723dae8f368f285d304c25" + "$oid": "6674c31e95590f9fd9459ef1" } }, { - "name": "VirtualAssistant", - "description": "Virtual assistant software for voice command-based tasks and personal assistance.", - "link": "https://github.com/username/virtualassistant", - "_id": { - "$oid": "66723dae8f368f285d304c26" - } + "name": "SmartHomeHub", + "description": "Centralized home automation system integrating IoT devices for smart living.", + "link": "https://github.com/username/smarthomehub", + "_id": { + "$oid": "6674c31e95590f9fd9459ef2" + } }, { - "name": "EcoTech", - "description": "Environmental monitoring and conservation app with real-time data visualization.", - "link": "https://github.com/username/ecotech", + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", "_id": { - "$oid": "66723dae8f368f285d304c27" + "$oid": "6674c31e95590f9fd9459ef3" } } ], - "personalBio": "Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.", + "personalBio": "Passionate about leveraging data-driven insights to optimize software performance and user engagement.", "testimonials": [ { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", - "_id": { - "$oid": "66723dae8f368f285d304c28" - } - }, - { - "from": "Sophie Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304c29" + "$oid": "6674c31e95590f9fd9459ef4" } }, { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "from": "Lucas Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", "_id": { - "$oid": "66723dae8f368f285d304c2a" + "$oid": "6674c31e95590f9fd9459ef5" } }, { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "66723dae8f368f285d304c2b" + "$oid": "6674c31e95590f9fd9459ef6" } } ], "socialMediaLinks": { "other": ["https://www.instagram.com/Colver-Oswell-fake"] }, - "availabilityForNetworking": false, - "bootcampExperience": "The Tech Academy", + "availabilityForNetworking": true, + "bootcampExperience": "Codesmith", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304c1f" + "$oid": "6674c31e95590f9fd9459eea" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304ada" + "$oid": "6674c31695590f9fd9459da1" }, "firstName": "Saundra", "lastName": "Normabell", - "cohort": "WCRI 76", + "cohort": "ECRI 9", "skills": [], "specializations": [], "careerInformation": { "pastPositions": [] }, @@ -2089,7 +2138,7 @@ "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304c2c" + "$oid": "6674c31e95590f9fd9459ef7" }, "education": [], "projects": [], @@ -2099,765 +2148,829 @@ }, { "user": { - "$oid": "66723da68f368f285d304adb" + "$oid": "6674c31695590f9fd9459da2" }, "firstName": "Grant", "lastName": "Chasney", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "WCRI 72", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "PTRI 61", "graduationYear": 2024, "email": "gchasneye@mediafire.com", "linkedInProfile": "https://www.linkedin.com/in/Grant-Chasney-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", "skills": [ - "Docker", - "Big Data", - "Automated Testing", - "Continuous Deployment", - "Infrastructure as Code", - "CSS", - "Problem-Solving", + "User Experience (UX) Design", + "Event-Driven Architecture", "Kubernetes", - "Algorithm Design", - "Integration Testing", - "Concurrency" + "ASP.NET", + "Pair Programming", + "RESTful APIs", + "PaaS (Platform as a Service)", + "C#", + "Automated Testing", + "Android Development" ], "specializations": [ - "Natural Language Processing", - "AWS", - "Algorithm Design", - "Graph Theory", - "Quantum Computing", - "Functional Programming", "Azure", - "Code Review", - "Continuous Deployment", - "Angular", - "Cybersecurity", - "Google Cloud Platform" + "BDD (Behavior-Driven Development)", + "NoSQL", + "Pair Programming", + "ASP.NET", + "Cloud Computing", + "DevOps", + "Kubernetes", + "FaaS (Function as a Service)", + "System Design", + "Big Data", + "Integration Testing", + "Critical Thinking", + "Legacy Code Management", + "Data Warehousing", + "RESTful APIs", + "Performance Optimization", + "Graph Theory" ], "careerInformation": { - "currentPosition": { "title": "Engineering Manager", "company": "DocuSign" }, + "currentPosition": { "title": "Cloud Engineer", "company": "Okta" }, "pastPositions": [ { - "title": "Backend Developer", - "company": "Apple", + "title": "Automation Engineer", + "company": "Workday", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2024-10-24T08:31:44.574Z" + "$date": "2026-08-09T03:12:20.218Z" }, "_id": { - "$oid": "66723dae8f368f285d304c2e" + "$oid": "6674c31e95590f9fd9459ef9" } }, { - "title": "Security Engineer", - "company": "Twilio", + "title": "Principal Software Engineer", + "company": "Stripe", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2028-04-13T03:33:18.075Z" + "$date": "2027-09-10T06:11:20.217Z" }, "_id": { - "$oid": "66723dae8f368f285d304c2f" + "$oid": "6674c31e95590f9fd9459efa" } }, { - "title": "Technical Lead", - "company": "Intel", + "title": "Security Engineer", + "company": "Stripe", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-08-15T01:49:38.957Z" + "$date": "2026-07-27T23:16:44.438Z" }, "_id": { - "$oid": "66723dae8f368f285d304c30" + "$oid": "6674c31e95590f9fd9459efb" } }, { - "title": "Product Manager", - "company": "Spotify", + "title": "Cloud Engineer", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-11-09T09:02:05.622Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459efc" + } + } + ] + }, + "education": [], + "projects": [ + { + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", + "_id": { + "$oid": "6674c31e95590f9fd9459efd" + } + }, + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "6674c31e95590f9fd9459efe" + } + }, + { + "name": "SmartCity", + "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", + "link": "https://github.com/username/smartcity", + "_id": { + "$oid": "6674c31e95590f9fd9459eff" + } + } + ], + "personalBio": "Devoted to fostering a collaborative team environment and mentoring junior developers.", + "testimonials": [], + "socialMediaLinks": { "other": ["https://www.instagram.com/Grant-Chasney-fake"] }, + "availabilityForNetworking": false, + "bootcampExperience": "Galvanize", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459ef8" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459da3" + }, + "firstName": "Franni", + "lastName": "Chance", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "CTRI 85", + "graduationYear": 2024, + "email": "fchancef@ted.com", + "linkedInProfile": "https://www.linkedin.com/in/Franni-Chance-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": [ + "Project Management", + "Django", + "Continuous Deployment", + "CSS", + "User Interface (UI) Design", + "System Design" + ], + "specializations": [ + "Kubernetes", + "Spring Boot", + "Agile Development", + "API Integration", + "Event-Driven Architecture", + "Object-Oriented Programming", + "Continuous Deployment", + "Infrastructure as Code" + ], + "careerInformation": { + "currentPosition": { "title": "QA Engineer", "company": "Dropbox" }, + "pastPositions": [ + { + "title": "Mobile Developer", + "company": "Google", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-03-31T20:44:29.452Z" + "$date": "2026-12-13T17:16:15.422Z" }, "_id": { - "$oid": "66723dae8f368f285d304c31" + "$oid": "6674c31e95590f9fd9459f01" } }, { - "title": "Software Architect", - "company": "ServiceNow", + "title": "Data Scientist", + "company": "VMware", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-01-01T13:23:31.621Z" + "$date": "2024-12-28T19:30:31.838Z" }, "_id": { - "$oid": "66723dae8f368f285d304c32" + "$oid": "6674c31e95590f9fd9459f02" } } ] }, "education": [ { - "institution": "University of Houston", - "degree": "Master of Business Administration (MBA)", - "fieldOfStudy": "Psychology", + "institution": "Purdue University", + "degree": "Bachelor of Arts (BA)", + "fieldOfStudy": "Mechanical Engineering", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-12-21T04:02:00.672Z" + "$date": "2027-04-18T05:46:51.645Z" }, "_id": { - "$oid": "66723dae8f368f285d304c33" + "$oid": "6674c31e95590f9fd9459f03" } }, { - "institution": "Tsinghua University", - "degree": "Professional Development", - "fieldOfStudy": "Chemical Engineering", + "institution": "University of Hong Kong (HKU)", + "degree": "Trade School Certification", + "fieldOfStudy": "Environmental Engineering", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-06-15T01:32:50.478Z" + "$date": "2025-11-18T10:57:20.759Z" }, "_id": { - "$oid": "66723dae8f368f285d304c34" + "$oid": "6674c31e95590f9fd9459f04" } }, { - "institution": "University of Minnesota", - "degree": "Doctor of Medicine (MD)", - "fieldOfStudy": "Dentistry", + "institution": "University of Oregon", + "degree": "Doctor of Dental Medicine (DMD)", + "fieldOfStudy": "Journalism", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-10-28T22:32:27.119Z" + "$date": "2026-02-03T22:47:47.085Z" }, "_id": { - "$oid": "66723dae8f368f285d304c35" + "$oid": "6674c31e95590f9fd9459f05" } } ], "projects": [ { - "name": "FoodDelivery", - "description": "Online food delivery platform connecting restaurants with customers for food ordering.", - "link": "https://github.com/username/fooddelivery", - "_id": { - "$oid": "66723dae8f368f285d304c36" - } - }, - { - "name": "SmartCarPark", - "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", - "link": "https://github.com/username/smartcarpark", - "_id": { - "$oid": "66723dae8f368f285d304c37" - } - }, - { - "name": "JobFinder", - "description": "Job search and application management platform with personalized recommendations.", - "link": "https://github.com/username/jobfinder", + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", "_id": { - "$oid": "66723dae8f368f285d304c38" + "$oid": "6674c31e95590f9fd9459f06" } }, { - "name": "EventPlanner", - "description": "Event management and planning software for organizing and coordinating events.", - "link": "https://github.com/username/eventplanner", + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", "_id": { - "$oid": "66723dae8f368f285d304c39" + "$oid": "6674c31e95590f9fd9459f07" } } ], - "personalBio": "Experienced in Agile methodologies, with a track record of delivering projects on time and within budget.", + "personalBio": "Experienced in deploying and maintaining applications on cloud platforms like AWS and Azure.", "testimonials": [ { - "from": "Olivia White", - "relation": "Tech Lead at Cloud Innovations", - "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", - "_id": { - "$oid": "66723dae8f368f285d304c3a" - } - }, - { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - "_id": { - "$oid": "66723dae8f368f285d304c3b" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304c3c" + "$oid": "6674c31e95590f9fd9459f08" } }, { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "66723dae8f368f285d304c3d" - } - }, - { - "from": "Alice Johnson", - "relation": "Manager at TechSolutions Inc.", - "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", - "_id": { - "$oid": "66723dae8f368f285d304c3e" + "$oid": "6674c31e95590f9fd9459f09" } } ], "socialMediaLinks": { - "twitter": "https://x.com/Grant-Chasney-fake", - "blog": "https://www.Grant-Chasney-fake-blog.com", - "other": ["https://www.instagram.com/Grant-Chasney-fake"] + "twitter": "https://x.com/Franni-Chance-fake", + "other": ["https://www.instagram.com/Franni-Chance-fake"] }, "availabilityForNetworking": true, - "bootcampExperience": "Springboard", + "bootcampExperience": "Nucamp", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304c2d" + "$oid": "6674c31e95590f9fd9459f00" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304adc" + "$oid": "6674c31695590f9fd9459da4" }, - "firstName": "Franni", - "lastName": "Chance", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "PTRI 63", - "graduationYear": 2024, - "email": "fchancef@ted.com", - "linkedInProfile": "https://www.linkedin.com/in/Franni-Chance-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "firstName": "Clarance", + "lastName": "Meecher", + "cohort": "WCRI 68", "skills": [], - "specializations": [ - "Performance Optimization", - "Quantum Computing", - "Graph Databases", - "Cybersecurity", - "WebSockets", - "Functional Programming", - "Version Control", - "Reactive Programming", + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f0a" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459da5" + }, + "firstName": "Katharine", + "lastName": "Lancett", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "NYC 34", + "graduationYear": 2024, + "email": "klancetth@sfgate.com", + "linkedInProfile": "https://www.linkedin.com/in/Katharine-Lancett-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [ + "Project Management", "C++", - "HTML", + "Microservices", + "Agile Development", + "Code Review", + "Data Science", + "Ruby", + "Communication Skills", + "Django", + "Automated Testing", + "Scrum", + "Flask", + "JavaScript", + "Leadership", "DevOps", - "ASP.NET", - "Critical Thinking", + "Laravel", + "Docker" + ], + "specializations": [ "Software Architecture", + "Concurrency", "NoSQL", + "DevOps", + "AWS", + "SaaS (Software as a Service)", + "Ruby", + "Collaboration", "Data Science" ], "careerInformation": { - "currentPosition": { "title": "Lead Software Engineer", "company": "Datadog" }, + "currentPosition": { "title": "DevOps Engineer", "company": "Tesla" }, "pastPositions": [ { - "title": "Senior Software Engineer", - "company": "Oracle", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2025-02-06T06:27:50.238Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304c40" - } - }, - { - "title": "Technical Program Manager", - "company": "PayPal", + "title": "Full Stack Developer", + "company": "Google", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2024-08-11T12:27:05.541Z" + "$date": "2027-10-19T00:08:30.372Z" }, "_id": { - "$oid": "66723dae8f368f285d304c41" + "$oid": "6674c31e95590f9fd9459f0c" } }, { - "title": "Full Stack Developer", - "company": "Oracle", + "title": "Product Manager", + "company": "Microsoft", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-05-29T21:24:21.794Z" + "$date": "2025-04-19T22:36:45.486Z" }, "_id": { - "$oid": "66723dae8f368f285d304c42" + "$oid": "6674c31e95590f9fd9459f0d" } } ] }, "education": [ { - "institution": "Washington University in St. Louis", - "degree": "Doctor of Veterinary Medicine (DVM)", - "fieldOfStudy": "Interior Design", + "institution": "Pennsylvania State University", + "degree": "Master of Education (MEd)", + "fieldOfStudy": "English Literature", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-05-07T03:08:27.606Z" + "$date": "2027-04-18T16:33:23.851Z" }, "_id": { - "$oid": "66723dae8f368f285d304c43" + "$oid": "6674c31e95590f9fd9459f0e" } }, { - "institution": "University of Edinburgh", - "degree": "Diploma Program", - "fieldOfStudy": "Electrical Engineering", + "institution": "University of Melbourne", + "degree": "Doctor of Philosophy (PhD)", + "fieldOfStudy": "Urban Planning", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-01-06T12:59:18.404Z" + "$date": "2026-03-28T07:33:55.340Z" }, "_id": { - "$oid": "66723dae8f368f285d304c44" + "$oid": "6674c31e95590f9fd9459f0f" } }, { - "institution": "University of Rochester", - "degree": "Master of Fine Arts (MFA)", - "fieldOfStudy": "History", + "institution": "Stanford University", + "degree": "Doctor of Veterinary Medicine (DVM)", + "fieldOfStudy": "Architecture", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-05-25T18:16:03.964Z" + "$date": "2026-07-05T20:19:04.001Z" }, "_id": { - "$oid": "66723dae8f368f285d304c45" + "$oid": "6674c31e95590f9fd9459f10" } } ], - "projects": [], - "personalBio": "Advocate for diversity and inclusion in the tech industry, fostering a welcoming and supportive workplace culture.", - "testimonials": [ + "projects": [ { - "from": "Daniel Lee", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "name": "CloudStorage", + "description": "Cloud storage service with file synchronization and sharing capabilities.", + "link": "https://github.com/username/cloudstorage", "_id": { - "$oid": "66723dae8f368f285d304c46" + "$oid": "6674c31e95590f9fd9459f11" } }, { - "from": "Emma Thompson", + "name": "CloudStorage", + "description": "Cloud storage service with file synchronization and sharing capabilities.", + "link": "https://github.com/username/cloudstorage", + "_id": { + "$oid": "6674c31e95590f9fd9459f12" + } + }, + { + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", + "_id": { + "$oid": "6674c31e95590f9fd9459f13" + } + }, + { + "name": "LearnHub", + "description": "Online learning platform offering courses on various subjects with interactive content.", + "link": "https://github.com/username/learnhub", + "_id": { + "$oid": "6674c31e95590f9fd9459f14" + } + }, + { + "name": "CryptoTrack", + "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", + "link": "https://github.com/username/cryptotrack", + "_id": { + "$oid": "6674c31e95590f9fd9459f15" + } + } + ], + "personalBio": "Driven by a curiosity for innovation and a commitment to delivering high-quality software solutions.", + "testimonials": [ + { + "from": "Noah Wilson", "relation": "Manager at DataTech Solutions", - "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "66723dae8f368f285d304c47" + "$oid": "6674c31e95590f9fd9459f16" } }, { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "66723dae8f368f285d304c48" + "$oid": "6674c31e95590f9fd9459f17" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "66723dae8f368f285d304c49" + "$oid": "6674c31e95590f9fd9459f18" } }, { - "from": "Olivia White", - "relation": "Tech Lead at Cloud Innovations", - "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", "_id": { - "$oid": "66723dae8f368f285d304c4a" + "$oid": "6674c31e95590f9fd9459f19" } } ], - "socialMediaLinks": { "other": ["https://www.instagram.com/Franni-Chance-fake"] }, - "availabilityForNetworking": false, - "bootcampExperience": "Codesmith", + "socialMediaLinks": { "twitter": "https://x.com/Katharine-Lancett-fake", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "BrainStation", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304c3f" + "$oid": "6674c31e95590f9fd9459f0b" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304add" + "$oid": "6674c31695590f9fd9459da6" }, - "firstName": "Clarance", - "lastName": "Meecher", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "NYC 48", + "firstName": "Margaret", + "lastName": "Dubber", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "LA 40", "graduationYear": 2024, - "email": "cmeecherg@addthis.com", - "linkedInProfile": "https://www.linkedin.com/in/Clarance-Meecher-fake", - "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", - "skills": ["Microservices", "Functional Programming", "Problem-Solving", "Deep Learning"], - "specializations": [ - "Quantum Computing", - "CSS", - "Google Cloud Platform", + "email": "mdubberi@dropbox.com", + "linkedInProfile": "https://www.linkedin.com/in/Margaret-Dubber-fake", + "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", + "skills": [ + "Spring Boot", + "ETL (Extract, Transform, Load)", + "Cybersecurity", "Time Management", + "Scrum", + "Mobile Development", + "Version Control", + "Object-Oriented Programming", + "Critical Thinking", + "Java", + "ASP.NET", "Machine Learning", - "Collaboration", - "Azure", - "WebSockets", - "Natural Language Processing", + "React", + "Data Warehousing", + "Reactive Programming", + "TDD (Test-Driven Development)" + ], + "specializations": [ + "Event-Driven Architecture", + "Scrum", + "DevOps", + "Code Review", + "Project Management", "Technical Writing", - "CI/CD", - "SaaS (Software as a Service)", - "BDD (Behavior-Driven Development)", - "Continuous Deployment", - "Django", - "JavaScript", - "Leadership", - "Laravel" + "API Integration", + "AWS", + "Graph Databases", + "Design Patterns", + "Kubernetes", + "Python", + "Blockchain" ], "careerInformation": { - "currentPosition": { "title": "Machine Learning Engineer", "company": "Salesforce" }, + "currentPosition": { "title": "Data Scientist", "company": "Apple" }, "pastPositions": [ { - "title": "Lead Software Engineer", - "company": "DoorDash", + "title": "Software Architect", + "company": "Asana", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-12-22T21:50:04.148Z" + "$date": "2027-10-19T10:40:24.254Z" }, "_id": { - "$oid": "66723dae8f368f285d304c4c" + "$oid": "6674c31e95590f9fd9459f1b" } }, { - "title": "Senior Software Engineer", - "company": "Tesla", + "title": "Full Stack Developer", + "company": "EA (Electronic Arts)", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2028-04-17T12:18:53.171Z" + "$date": "2026-07-30T14:54:00.461Z" }, "_id": { - "$oid": "66723dae8f368f285d304c4d" + "$oid": "6674c31e95590f9fd9459f1c" } }, { - "title": "Technical Lead", - "company": "Netflix", + "title": "Web Developer", + "company": "Qualcomm", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-02-06T13:01:58.274Z" + "$date": "2027-04-29T10:23:36.926Z" }, "_id": { - "$oid": "66723dae8f368f285d304c4e" + "$oid": "6674c31e95590f9fd9459f1d" } }, { - "title": "Security Engineer", - "company": "Oracle", + "title": "Data Scientist", + "company": "Square", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-05-04T18:29:08.861Z" + "$date": "2025-04-14T05:53:06.043Z" }, "_id": { - "$oid": "66723dae8f368f285d304c4f" + "$oid": "6674c31e95590f9fd9459f1e" } } ] }, - "education": [ + "education": [], + "projects": [], + "personalBio": "Adaptable problem solver who thrives in dynamic, fast-paced environments.", + "testimonials": [ { - "institution": "University of Oklahoma", - "degree": "Executive Education", - "fieldOfStudy": "Civil Engineering", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2027-08-27T05:54:24.377Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304c50" - } - } - ], - "projects": [ + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd9459f1f" + } + }, { - "name": "SmartLearning", - "description": "AI-driven personalized learning platform with adaptive learning algorithms.", - "link": "https://github.com/username/smartlearning", + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "66723dae8f368f285d304c51" + "$oid": "6674c31e95590f9fd9459f20" } }, { - "name": "AIAssistant", - "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", - "link": "https://github.com/username/aiassistant", + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459f21" + } + }, + { + "from": "Olivia White", + "relation": "Tech Lead at Cloud Innovations", + "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "_id": { + "$oid": "6674c31e95590f9fd9459f22" + } + }, + { + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", "_id": { - "$oid": "66723dae8f368f285d304c52" + "$oid": "6674c31e95590f9fd9459f23" } } ], - "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", - "testimonials": [], - "socialMediaLinks": { - "blog": "https://www.Clarance-Meecher-fake-blog.com", - "other": ["https://www.instagram.com/Clarance-Meecher-fake"] - }, + "socialMediaLinks": { "other": ["https://www.instagram.com/Margaret-Dubber-fake"] }, "availabilityForNetworking": true, - "bootcampExperience": "Codesmith", + "bootcampExperience": "BrainStation", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304c4b" + "$oid": "6674c31e95590f9fd9459f1a" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304ade" + "$oid": "6674c31695590f9fd9459da7" }, - "firstName": "Katharine", - "lastName": "Lancett", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "LA 89", + "firstName": "Addy", + "lastName": "Fass", + "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "cohort": "LA 84", "graduationYear": 2024, - "email": "klancetth@sfgate.com", - "linkedInProfile": "https://www.linkedin.com/in/Katharine-Lancett-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": [ - "Problem-Solving", - "Deep Learning", - "NoSQL", - "API Development", - "Parallel Computing" - ], + "email": "afassj@vistaprint.com", + "linkedInProfile": "https://www.linkedin.com/in/Addy-Fass-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": ["Quantum Computing"], "specializations": [ - "WebSockets", - "Natural Language Processing", - "Azure", - "Docker", - "API Development", - "FaaS (Function as a Service)" + "Problem-Solving", + "System Design", + "Unit Testing", + "Agile Development", + "API Development" ], "careerInformation": { - "currentPosition": { "title": "Data Engineer", "company": "Zoom" }, - "pastPositions": [ - { - "title": "Android Developer", - "company": "Amazon", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2024-12-06T05:13:42.318Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304c54" - } - }, - { - "title": "Software Architect", - "company": "Coinbase", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2027-08-15T10:52:29.202Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304c55" - } - }, - { - "title": "Junior Software Engineer", - "company": "Apple", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2028-03-04T10:15:45.448Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304c56" - } - } - ] + "currentPosition": { "title": "Embedded Systems Engineer", "company": "Red Hat" }, + "pastPositions": [] }, - "education": [ + "education": [], + "projects": [ { - "institution": "Pennsylvania State University", - "degree": "Professional Development", - "fieldOfStudy": "Economics", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2028-05-26T08:40:21.284Z" - }, + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", "_id": { - "$oid": "66723dae8f368f285d304c57" + "$oid": "6674c31e95590f9fd9459f25" } }, { - "institution": "Georgetown University", - "degree": "Doctor of Philosophy (PhD)", - "fieldOfStudy": "Marketing", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2026-06-05T14:53:30.934Z" - }, + "name": "CloudGuard", + "description": "Advanced cloud security suite ensuring data protection and compliance.", + "link": "https://github.com/username/cloudguard", "_id": { - "$oid": "66723dae8f368f285d304c58" + "$oid": "6674c31e95590f9fd9459f26" } }, { - "institution": "University of Oxford", - "degree": "Master of Technology (MTech)", - "fieldOfStudy": "Aerospace Engineering", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2026-06-24T18:49:50.403Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304c59" - } - } - ], - "projects": [ - { - "name": "CryptoTrack", - "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", - "link": "https://github.com/username/cryptotrack", + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", "_id": { - "$oid": "66723dae8f368f285d304c5a" + "$oid": "6674c31e95590f9fd9459f27" } }, { - "name": "EcoTech", - "description": "Environmental monitoring and conservation app with real-time data visualization.", - "link": "https://github.com/username/ecotech", + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", "_id": { - "$oid": "66723dae8f368f285d304c5b" + "$oid": "6674c31e95590f9fd9459f28" } }, { - "name": "SmartGrid", - "description": "Smart grid technology for efficient energy distribution and consumption.", - "link": "https://github.com/username/smartgrid", + "name": "CloudGuard", + "description": "Advanced cloud security suite ensuring data protection and compliance.", + "link": "https://github.com/username/cloudguard", "_id": { - "$oid": "66723dae8f368f285d304c5c" + "$oid": "6674c31e95590f9fd9459f29" } } ], - "personalBio": "Devoted to fostering a collaborative team environment and mentoring junior developers.", + "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", "testimonials": [ { - "from": "Alice Johnson", - "relation": "Manager at TechSolutions Inc.", - "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", "_id": { - "$oid": "66723dae8f368f285d304c5d" + "$oid": "6674c31e95590f9fd9459f2a" } }, { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", "_id": { - "$oid": "66723dae8f368f285d304c5e" + "$oid": "6674c31e95590f9fd9459f2b" } }, { - "from": "Olivia White", - "relation": "Tech Lead at Cloud Innovations", - "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", "_id": { - "$oid": "66723dae8f368f285d304c5f" + "$oid": "6674c31e95590f9fd9459f2c" } }, { - "from": "Emily Brown", - "relation": "Client at GlobalSoft Solutions", - "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "from": "Liam Harris", + "relation": "Lead Developer at CloudTech", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459f2d" + } + }, + { + "from": "Lucas Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", "_id": { - "$oid": "66723dae8f368f285d304c60" + "$oid": "6674c31e95590f9fd9459f2e" } } ], - "socialMediaLinks": { "blog": "https://www.Katharine-Lancett-fake-blog.com", "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "Tech Elevator", + "socialMediaLinks": { + "twitter": "https://x.com/Addy-Fass-fake", + "other": ["https://www.instagram.com/Addy-Fass-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Fullstack Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304c53" + "$oid": "6674c31e95590f9fd9459f24" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304adf" + "$oid": "6674c31695590f9fd9459da8" }, - "firstName": "Margaret", - "lastName": "Dubber", - "cohort": "CTRI 39", + "firstName": "Sollie", + "lastName": "Puckinghorne", + "cohort": "ECRI 14", "skills": [], "specializations": [], "careerInformation": { "pastPositions": [] }, @@ -2867,7 +2980,7 @@ "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304c61" + "$oid": "6674c31e95590f9fd9459f2f" }, "education": [], "projects": [], @@ -2877,690 +2990,699 @@ }, { "user": { - "$oid": "66723da68f368f285d304ae0" + "$oid": "6674c31695590f9fd9459da9" }, - "firstName": "Addy", - "lastName": "Fass", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "CTRI 39", + "firstName": "Xena", + "lastName": "Tomczynski", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "ECRI 41", "graduationYear": 2024, - "email": "afassj@vistaprint.com", - "linkedInProfile": "https://www.linkedin.com/in/Addy-Fass-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", - "skills": [ - "RESTful APIs", - "Mobile Development", - "IoT (Internet of Things)", - "Database Design", - "Scrum", - "FaaS (Function as a Service)", - "iOS Development" - ], + "email": "xtomczynskil@ted.com", + "linkedInProfile": "https://www.linkedin.com/in/Xena-Tomczynski-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": ["Blockchain", "Big Data", "Microservices", "API Development", "Database Design"], "specializations": [ - "Data Warehousing", - "Database Design", - "Technical Writing", - "Ruby", - "Natural Language Processing", - "Vue.js", - "System Design", - "AR/VR (Augmented/Virtual Reality)", - "Cloud Computing", - "User Experience (UX) Design" + "Java", + "Performance Optimization", + "Graph Theory", + "Collaboration", + "Quantum Computing", + "Scrum", + "Project Management" ], "careerInformation": { - "currentPosition": { "title": "Software Developer", "company": "GitHub" }, + "currentPosition": { "title": "Machine Learning Engineer", "company": "Apple" }, "pastPositions": [ { - "title": "Web Developer", - "company": "Palantir", + "title": "Technical Program Manager", + "company": "Uber", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-05-16T15:19:16.506Z" + "$date": "2027-10-03T01:40:09.199Z" }, "_id": { - "$oid": "66723dae8f368f285d304c63" + "$oid": "6674c31e95590f9fd9459f31" } }, { - "title": "Principal Software Engineer", - "company": "Palantir", + "title": "AI Engineer", + "company": "DocuSign", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-06-08T10:37:01.953Z" + "$date": "2026-08-06T10:43:42.175Z" }, "_id": { - "$oid": "66723dae8f368f285d304c64" + "$oid": "6674c31e95590f9fd9459f32" } }, { - "title": "Software Architect", - "company": "VMware", + "title": "Software Engineer", + "company": "Okta", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-02-27T20:46:16.528Z" + "$date": "2026-10-20T22:12:20.349Z" }, "_id": { - "$oid": "66723dae8f368f285d304c65" + "$oid": "6674c31e95590f9fd9459f33" } - } - ] - }, - "education": [ - { - "institution": "Shanghai Jiao Tong University", - "degree": "Master of Arts (MA)", - "fieldOfStudy": "Theater", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" }, - "endDate": { - "$date": "2025-04-30T15:58:47.957Z" + { + "title": "Senior Software Engineer", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-09-01T08:25:07.264Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f34" + } }, - "_id": { - "$oid": "66723dae8f368f285d304c66" + { + "title": "Full Stack Developer", + "company": "Uber", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-08-30T04:25:40.078Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f35" + } } - }, + ] + }, + "education": [ { - "institution": "Peking University", + "institution": "EPFL - ร‰cole Polytechnique Fรฉdรฉrale de Lausanne", "degree": "Master of Business Administration (MBA)", - "fieldOfStudy": "Interior Design", + "fieldOfStudy": "Biochemistry", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-10-01T17:51:53.067Z" + "$date": "2027-10-02T22:34:11.517Z" }, "_id": { - "$oid": "66723dae8f368f285d304c67" + "$oid": "6674c31e95590f9fd9459f36" } }, { - "institution": "University of North Carolina at Chapel Hill", - "degree": "Diploma Program", - "fieldOfStudy": "Data Science", + "institution": "ETH Zurich - Swiss Federal Institute of Technology", + "degree": "Doctor of Pharmacy (PharmD)", + "fieldOfStudy": "Economics", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-10-11T06:47:07.458Z" + "$date": "2026-10-17T09:05:36.803Z" }, "_id": { - "$oid": "66723dae8f368f285d304c68" + "$oid": "6674c31e95590f9fd9459f37" } } ], "projects": [ { - "name": "RoboTrader", - "description": "Algorithmic trading platform for automated stock market analysis and trading.", - "link": "https://github.com/username/robotrader", - "_id": { - "$oid": "66723dae8f368f285d304c69" - } - }, - { - "name": "CloudStorage", - "description": "Cloud storage service with file synchronization and sharing capabilities.", - "link": "https://github.com/username/cloudstorage", - "_id": { - "$oid": "66723dae8f368f285d304c6a" - } - }, - { - "name": "AugmentWorks", - "description": "Augmented reality application for enhancing workplace productivity and training.", - "link": "https://github.com/username/augmentworks", - "_id": { - "$oid": "66723dae8f368f285d304c6b" - } - } - ], - "personalBio": "Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.", - "testimonials": [ - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", - "_id": { - "$oid": "66723dae8f368f285d304c6c" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "name": "SocialConnect", + "description": "Social media integration platform for managing multiple social accounts.", + "link": "https://github.com/username/socialconnect", "_id": { - "$oid": "66723dae8f368f285d304c6d" + "$oid": "6674c31e95590f9fd9459f38" } }, { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", "_id": { - "$oid": "66723dae8f368f285d304c6e" + "$oid": "6674c31e95590f9fd9459f39" } }, { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", "_id": { - "$oid": "66723dae8f368f285d304c6f" + "$oid": "6674c31e95590f9fd9459f3a" } }, { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "name": "EduTech", + "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", + "link": "https://github.com/username/edutech", "_id": { - "$oid": "66723dae8f368f285d304c70" + "$oid": "6674c31e95590f9fd9459f3b" } } ], + "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", + "testimonials": [], "socialMediaLinks": { - "blog": "https://www.Addy-Fass-fake-blog.com", - "other": ["https://www.instagram.com/Addy-Fass-fake"] + "twitter": "https://x.com/Xena-Tomczynski-fake", + "blog": "https://www.Xena-Tomczynski-fake-blog.com", + "other": [] }, "availabilityForNetworking": false, - "bootcampExperience": "CareerFoundry", + "bootcampExperience": "Lambda School", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304c62" + "$oid": "6674c31e95590f9fd9459f30" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304ae1" + "$oid": "6674c31695590f9fd9459daa" }, - "firstName": "Sollie", - "lastName": "Puckinghorne", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "LA 54", + "firstName": "Harmonie", + "lastName": "Karpinski", + "cohort": "NYC 84", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f3c" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dab" + }, + "firstName": "Marielle", + "lastName": "Crocket", + "cohort": "FTRI 96", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f3d" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dac" + }, + "firstName": "Ulrick", + "lastName": "Blasing", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "ECRI 65", "graduationYear": 2024, - "email": "spuckinghornek@topsy.com", - "linkedInProfile": "https://www.linkedin.com/in/Sollie-Puckinghorne-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "email": "ublasingo@yahoo.com", + "linkedInProfile": "https://www.linkedin.com/in/Ulrick-Blasing-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", "skills": [ - "Vue.js", - "Microservices", - "Azure", - "IoT (Internet of Things)", - "Android Development", - "Data Science", - "Parallel Computing", - "Docker", - "WebSockets", - "PaaS (Platform as a Service)", - "iOS Development" - ], - "specializations": [ + "FaaS (Function as a Service)", + "NoSQL", + "Legacy Code Management", "GraphQL", - "User Experience (UX) Design", - "Laravel", - "Parallel Computing", - "Event-Driven Architecture", - "Blockchain", + "Infrastructure as Code", + "API Integration", + "Refactoring", + "Pair Programming", + "Concurrency", + "TDD (Test-Driven Development)", "Code Review", - "Critical Thinking", - "CI/CD", - "PaaS (Platform as a Service)", - "System Design", - "Reactive Programming", + "User Interface (UI) Design", + "Laravel", + "Unit Testing", + "Machine Learning" + ], + "specializations": [ "Graph Databases", - "Django" + "Quantum Computing", + "Functional Programming", + "Cybersecurity", + "Natural Language Processing", + "Code Review", + "Robotic Process Automation", + "IoT (Internet of Things)", + "CSS", + "GraphQL", + "Software Architecture" ], "careerInformation": { - "currentPosition": { "title": "Mobile Developer", "company": "Amazon" }, + "currentPosition": { "title": "Mobile Developer", "company": "Twilio" }, "pastPositions": [ { - "title": "Technical Program Manager", - "company": "Dropbox", + "title": "Full Stack Developer", + "company": "Zoom", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2024-11-23T22:04:50.277Z" + "$date": "2026-01-19T04:56:18.411Z" }, "_id": { - "$oid": "66723dae8f368f285d304c72" + "$oid": "6674c31e95590f9fd9459f3f" } }, { - "title": "Test Engineer", - "company": "Dropbox", + "title": "Product Manager", + "company": "Netflix", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-06-24T01:15:45.320Z" + "$date": "2024-09-06T23:25:33.104Z" }, "_id": { - "$oid": "66723dae8f368f285d304c73" + "$oid": "6674c31e95590f9fd9459f40" } } ] }, "education": [ { - "institution": "University of Massachusetts Amherst", - "degree": "Doctor of Medicine (MD)", - "fieldOfStudy": "Chemical Engineering", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2025-06-29T06:22:31.884Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304c74" - } - }, - { - "institution": "Case Western Reserve University", - "degree": "Continuing Education", - "fieldOfStudy": "Anthropology", + "institution": "University of Georgia", + "degree": "Postdoctoral Research", + "fieldOfStudy": "Film Studies", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-05-18T21:09:19.566Z" + "$date": "2026-10-17T05:12:44.626Z" }, "_id": { - "$oid": "66723dae8f368f285d304c75" + "$oid": "6674c31e95590f9fd9459f41" } } ], "projects": [ { - "name": "MediCare", - "description": "Medical appointment scheduling and patient management system for healthcare providers.", - "link": "https://github.com/username/medicare", + "name": "HealthMonitor", + "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", + "link": "https://github.com/username/healthmonitor", "_id": { - "$oid": "66723dae8f368f285d304c76" + "$oid": "6674c31e95590f9fd9459f42" } }, { - "name": "JobFinder", - "description": "Job search and application management platform with personalized recommendations.", - "link": "https://github.com/username/jobfinder", + "name": "EcoTech", + "description": "Environmental monitoring and conservation app with real-time data visualization.", + "link": "https://github.com/username/ecotech", + "_id": { + "$oid": "6674c31e95590f9fd9459f43" + } + } + ], + "personalBio": "Experienced in deploying and maintaining applications on cloud platforms like AWS and Azure.", + "testimonials": [ + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "66723dae8f368f285d304c77" + "$oid": "6674c31e95590f9fd9459f44" } }, { - "name": "SmartHomeHub", - "description": "Centralized home automation system integrating IoT devices for smart living.", - "link": "https://github.com/username/smarthomehub", + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "66723dae8f368f285d304c78" + "$oid": "6674c31e95590f9fd9459f45" } }, { - "name": "SecureBackup", - "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", - "link": "https://github.com/username/securebackup", + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", "_id": { - "$oid": "66723dae8f368f285d304c79" + "$oid": "6674c31e95590f9fd9459f46" } }, { - "name": "EduTech", - "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", - "link": "https://github.com/username/edutech", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "66723dae8f368f285d304c7a" + "$oid": "6674c31e95590f9fd9459f47" } } ], - "personalBio": "Strong analytical thinker with a knack for troubleshooting and resolving complex technical issues.", - "testimonials": [ - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "66723dae8f368f285d304c7b" - } - }, - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "66723dae8f368f285d304c7c" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "66723dae8f368f285d304c7d" - } - }, - { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - "_id": { - "$oid": "66723dae8f368f285d304c7e" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Sollie-Puckinghorne-fake", - "other": ["https://www.instagram.com/Sollie-Puckinghorne-fake"] - }, - "availabilityForNetworking": false, - "bootcampExperience": "Codesmith", + "socialMediaLinks": { "other": ["https://www.instagram.com/Ulrick-Blasing-fake"] }, + "availabilityForNetworking": true, + "bootcampExperience": "BrainStation", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304c71" + "$oid": "6674c31e95590f9fd9459f3e" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304ae2" + "$oid": "6674c31695590f9fd9459dad" }, - "firstName": "Xena", - "lastName": "Tomczynski", - "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "cohort": "NYC 22", + "firstName": "Cheri", + "lastName": "Danielsson", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "FTRI 83", "graduationYear": 2024, - "email": "xtomczynskil@ted.com", - "linkedInProfile": "https://www.linkedin.com/in/Xena-Tomczynski-fake", + "email": "cdanielssonp@example.com", + "linkedInProfile": "https://www.linkedin.com/in/Cheri-Danielsson-fake", "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", "skills": [ - "Google Cloud Platform", - "SaaS (Software as a Service)", - "Agile Development", - "API Development" + "Continuous Deployment", + "Critical Thinking", + "Node.js", + "Graph Databases", + "C#", + "Collaboration", + "Pair Programming", + "Mobile Development", + "Robotic Process Automation", + "Infrastructure as Code" ], "specializations": [ + "AR/VR (Augmented/Virtual Reality)", + "Algorithm Design", + "User Interface (UI) Design", + "Object-Oriented Programming", + "Design Patterns", + "Angular", + "User Experience (UX) Design", + "iOS Development", + "Cybersecurity", + "WebSockets", "Continuous Deployment", - "Serverless Architecture", - "Deep Learning", - "Project Management", - "Infrastructure as Code", - "Vue.js", - "IoT (Internet of Things)" + "Event-Driven Architecture", + "Functional Programming", + "C#", + "Unit Testing", + "Software Architecture", + "RESTful APIs", + "Pair Programming" ], "careerInformation": { - "currentPosition": { - "title": "Technical Program Manager", - "company": "EA (Electronic Arts)" - }, - "pastPositions": [] + "currentPosition": { "title": "Technical Lead", "company": "Robinhood" }, + "pastPositions": [ + { + "title": "Data Engineer", + "company": "Netflix", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-11-06T10:07:15.640Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f49" + } + }, + { + "title": "Engineering Manager", + "company": "Oracle", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-01-09T18:06:13.047Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f4a" + } + } + ] }, "education": [ { - "institution": "Georgia Institute of Technology", - "degree": "Doctor of Business Administration (DBA)", - "fieldOfStudy": "Aerospace Engineering", + "institution": "Michigan State University", + "degree": "Master's Degree", + "fieldOfStudy": "Anthropology", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-12-25T20:45:38.163Z" + "$date": "2026-07-07T16:04:30.604Z" }, "_id": { - "$oid": "66723dae8f368f285d304c80" + "$oid": "6674c31e95590f9fd9459f4b" } }, { "institution": "University of Houston", - "degree": "Bachelor of Arts (BA)", - "fieldOfStudy": "Civil Engineering", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2026-05-12T08:20:25.233Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304c81" - } - }, - { - "institution": "Georgia Institute of Technology", - "degree": "Associate Degree", - "fieldOfStudy": "Marketing", + "degree": "Bachelor of Technology (BTech)", + "fieldOfStudy": "Veterinary Medicine", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2028-06-10T19:59:05.249Z" + "$date": "2024-12-05T22:10:00.055Z" }, "_id": { - "$oid": "66723dae8f368f285d304c82" + "$oid": "6674c31e95590f9fd9459f4c" } } ], "projects": [ - { - "name": "HealthMonitor", - "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", - "link": "https://github.com/username/healthmonitor", - "_id": { - "$oid": "66723dae8f368f285d304c83" - } - }, { "name": "DataCrunch", "description": "Real-time data analytics platform for extracting insights from big data.", "link": "https://github.com/username/datacrunch", "_id": { - "$oid": "66723dae8f368f285d304c84" - } - }, - { - "name": "SocialConnect", - "description": "Social media integration platform for managing multiple social accounts.", - "link": "https://github.com/username/socialconnect", - "_id": { - "$oid": "66723dae8f368f285d304c85" + "$oid": "6674c31e95590f9fd9459f4d" } }, { - "name": "TourismApp", - "description": "Mobile application for tourists providing travel guides and local recommendations.", - "link": "https://github.com/username/tourismapp", + "name": "SmartWatch", + "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", + "link": "https://github.com/username/smartwatch", "_id": { - "$oid": "66723dae8f368f285d304c86" + "$oid": "6674c31e95590f9fd9459f4e" } } ], - "personalBio": "Committed to writing clean, maintainable code that meets rigorous performance standards.", + "personalBio": "Experienced in both frontend and backend development, with a focus on creating elegant and efficient solutions.", "testimonials": [], - "socialMediaLinks": { "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "Thinkful", + "socialMediaLinks": { "twitter": "https://x.com/Cheri-Danielsson-fake", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Tech Elevator", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304c7f" + "$oid": "6674c31e95590f9fd9459f48" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304ae3" + "$oid": "6674c31695590f9fd9459dae" }, - "firstName": "Harmonie", - "lastName": "Karpinski", - "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "cohort": "LA 37", + "firstName": "Durand", + "lastName": "Joron", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "FTRI 21", "graduationYear": 2024, - "email": "hkarpinskim@g.co", - "linkedInProfile": "https://www.linkedin.com/in/Harmonie-Karpinski-fake", - "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", - "skills": [ + "email": "djoronq@google.cn", + "linkedInProfile": "https://www.linkedin.com/in/Durand-Joron-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": ["Scrum"], + "specializations": [ "Kubernetes", - "C++", - "API Integration", - "HTML", + "Ruby", + "Code Review", + "Legacy Code Management", "Functional Programming", - "Laravel", - "CI/CD", - "Parallel Computing", - "RESTful APIs", - "Continuous Deployment", - "User Interface (UI) Design" + "Cybersecurity", + "Python", + "ASP.NET", + "Automated Testing", + "Git", + "Node.js" ], - "specializations": ["Leadership", "API Integration"], "careerInformation": { - "currentPosition": { "title": "Technical Program Manager", "company": "Stripe" }, - "pastPositions": [] + "currentPosition": { "title": "Full Stack Developer", "company": "IBM" }, + "pastPositions": [ + { + "title": "Automation Engineer", + "company": "Spotify", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-08-27T10:52:03.251Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f50" + } + }, + { + "title": "Test Engineer", + "company": "Square", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-11-24T00:39:08.044Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f51" + } + }, + { + "title": "Technical Program Manager", + "company": "Tesla", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-12-27T20:45:18.643Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f52" + } + }, + { + "title": "Android Developer", + "company": "Datadog", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-05-22T15:31:48.350Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f53" + } + }, + { + "title": "Full Stack Developer", + "company": "Coinbase", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-01-17T07:27:43.232Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f54" + } + } + ] }, "education": [ { - "institution": "Purdue University", - "degree": "Master of Public Health (MPH)", - "fieldOfStudy": "Environmental Engineering", + "institution": "Chinese University of Hong Kong (CUHK)", + "degree": "Executive Education", + "fieldOfStudy": "Finance", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-12-27T10:00:44.784Z" + "$date": "2024-10-02T22:45:53.438Z" }, "_id": { - "$oid": "66723dae8f368f285d304c88" + "$oid": "6674c31e95590f9fd9459f55" } }, { - "institution": "University of Missouri", - "degree": "Master of Technology (MTech)", - "fieldOfStudy": "Computer Science", + "institution": "University of New South Wales (UNSW Sydney)", + "degree": "Postdoctoral Research", + "fieldOfStudy": "Chemistry", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-02-16T19:13:32.244Z" + "$date": "2026-03-03T07:32:31.390Z" }, "_id": { - "$oid": "66723dae8f368f285d304c89" + "$oid": "6674c31e95590f9fd9459f56" } }, { - "institution": "Kyoto University", - "degree": "Master of Social Work (MSW)", - "fieldOfStudy": "Accounting", + "institution": "Carnegie Mellon University", + "degree": "Bachelor of Fine Arts (BFA)", + "fieldOfStudy": "Data Science", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-10-23T06:18:16.122Z" + "$date": "2025-04-16T23:18:10.615Z" }, "_id": { - "$oid": "66723dae8f368f285d304c8a" + "$oid": "6674c31e95590f9fd9459f57" } } ], - "projects": [ + "projects": [], + "personalBio": "Driven by a curiosity for innovation and a commitment to delivering high-quality software solutions.", + "testimonials": [ { - "name": "RecruitmentAI", - "description": "AI-powered recruitment platform for matching candidates with job opportunities.", - "link": "https://github.com/username/recruitmentai", + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304c8b" + "$oid": "6674c31e95590f9fd9459f58" } }, { - "name": "FoodDelivery", - "description": "Online food delivery platform connecting restaurants with customers for food ordering.", - "link": "https://github.com/username/fooddelivery", - "_id": { - "$oid": "66723dae8f368f285d304c8c" - } - } - ], - "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", - "testimonials": [ - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "66723dae8f368f285d304c8d" - } - }, - { - "from": "Isabella Clark", - "relation": "HR Manager at TechFusion", - "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", - "_id": { - "$oid": "66723dae8f368f285d304c8e" - } - }, - { - "from": "Emma Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "66723dae8f368f285d304c8f" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "66723dae8f368f285d304c90" - } - }, - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", "_id": { - "$oid": "66723dae8f368f285d304c91" + "$oid": "6674c31e95590f9fd9459f59" } } ], - "socialMediaLinks": { - "twitter": "https://x.com/Harmonie-Karpinski-fake", - "blog": "https://www.Harmonie-Karpinski-fake-blog.com", - "other": ["https://www.instagram.com/Harmonie-Karpinski-fake"] - }, + "socialMediaLinks": { "blog": "https://www.Durand-Joron-fake-blog.com", "other": [] }, "availabilityForNetworking": true, - "bootcampExperience": "Lambda School", + "bootcampExperience": "Le Wagon", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304c87" + "$oid": "6674c31e95590f9fd9459f4f" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304ae4" + "$oid": "6674c31695590f9fd9459daf" }, - "firstName": "Marielle", - "lastName": "Crocket", + "firstName": "Kristien", + "lastName": "Burgett", "cohort": "PTRI 30", "skills": [], "specializations": [], @@ -3571,7 +3693,7 @@ "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304c92" + "$oid": "6674c31e95590f9fd9459f5a" }, "education": [], "projects": [], @@ -3581,492 +3703,528 @@ }, { "user": { - "$oid": "66723da68f368f285d304ae5" + "$oid": "6674c31695590f9fd9459db0" }, - "firstName": "Ulrick", - "lastName": "Blasing", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "PTRI 85", + "firstName": "Kaia", + "lastName": "Fassmann", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "cohort": "NYC 96", "graduationYear": 2024, - "email": "ublasingo@yahoo.com", - "linkedInProfile": "https://www.linkedin.com/in/Ulrick-Blasing-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "email": "kfassmanns@ted.com", + "linkedInProfile": "https://www.linkedin.com/in/Kaia-Fassmann-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", "skills": [ - "User Interface (UI) Design", - "Blockchain", - "Reactive Programming", - "Python", - "Django", - "DevOps", - "Agile Development", - "Algorithm Design", - "SaaS (Software as a Service)", - "Big Data" - ], - "specializations": [ - "Concurrency", - "Git", - "Angular", + "Pair Programming", "ETL (Extract, Transform, Load)", - "RESTful APIs", - "Time Management", - "Java", - "JavaScript", - "Software Architecture", - "Legacy Code Management" + "Critical Thinking", + "Integration Testing", + "Infrastructure as Code", + "Graph Theory", + "API Development", + "Design Patterns", + "Natural Language Processing", + "ASP.NET", + "Data Visualization" ], + "specializations": ["Refactoring"], "careerInformation": { - "currentPosition": { "title": "Software Developer", "company": "Oracle" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "University of Connecticut", - "degree": "Doctor of Dental Surgery (DDS)", - "fieldOfStudy": "Economics", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "currentPosition": { "title": "Mobile Developer", "company": "Google" }, + "pastPositions": [ + { + "title": "Junior Software Engineer", + "company": "Intel", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-08-28T20:05:59.474Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f5c" + } }, - "endDate": { - "$date": "2026-08-21T15:53:35.289Z" + { + "title": "Technical Program Manager", + "company": "PayPal", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-09-17T17:42:19.864Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f5d" + } }, - "_id": { - "$oid": "66723dae8f368f285d304c94" - } - }, - { - "institution": "Yale University", - "degree": "Master of Technology (MTech)", - "fieldOfStudy": "Political Science", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + { + "title": "Technical Lead", + "company": "Snapchat", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-07-04T00:13:05.498Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f5e" + } }, - "endDate": { - "$date": "2027-06-18T03:48:04.078Z" + { + "title": "QA Engineer", + "company": "Robinhood", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-01-18T03:47:17.187Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f5f" + } }, - "_id": { - "$oid": "66723dae8f368f285d304c95" + { + "title": "Android Developer", + "company": "Red Hat", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-04-11T16:04:51.159Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f60" + } } - } - ], + ] + }, + "education": [], "projects": [ { - "name": "RoboVision", - "description": "AI-powered computer vision system for object detection and recognition.", - "link": "https://github.com/username/robovision", - "_id": { - "$oid": "66723dae8f368f285d304c96" - } - }, - { - "name": "AugmentWorks", - "description": "Augmented reality application for enhancing workplace productivity and training.", - "link": "https://github.com/username/augmentworks", - "_id": { - "$oid": "66723dae8f368f285d304c97" - } - }, - { - "name": "ARNavigation", - "description": "Augmented reality navigation app for real-time directions and location-based information.", - "link": "https://github.com/username/arnavigation", + "name": "NetPlanner", + "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", + "link": "https://github.com/username/netplanner", "_id": { - "$oid": "66723dae8f368f285d304c98" + "$oid": "6674c31e95590f9fd9459f61" } }, { - "name": "VirtualMarket", - "description": "Virtual reality shopping experience allowing users to browse and buy products online.", - "link": "https://github.com/username/virtualmarket", + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", "_id": { - "$oid": "66723dae8f368f285d304c99" + "$oid": "6674c31e95590f9fd9459f62" } }, { - "name": "SmartHomeHub", - "description": "Centralized home automation system integrating IoT devices for smart living.", - "link": "https://github.com/username/smarthomehub", + "name": "CryptoWallet", + "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", + "link": "https://github.com/username/cryptowallet", "_id": { - "$oid": "66723dae8f368f285d304c9a" + "$oid": "6674c31e95590f9fd9459f63" } } ], - "personalBio": "Driven by a curiosity for innovation and a commitment to delivering high-quality software solutions.", + "personalBio": "Experienced in building scalable microservices architectures and integrating third-party APIs.", "testimonials": [ { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", - "_id": { - "$oid": "66723dae8f368f285d304c9b" - } - }, - { - "from": "Lucas Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304c9c" + "$oid": "6674c31e95590f9fd9459f64" } }, { - "from": "Emily Brown", - "relation": "Client at GlobalSoft Solutions", - "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304c9d" + "$oid": "6674c31e95590f9fd9459f65" } }, { - "from": "Olivia White", - "relation": "Tech Lead at Cloud Innovations", - "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "66723dae8f368f285d304c9e" + "$oid": "6674c31e95590f9fd9459f66" } } ], - "socialMediaLinks": { "blog": "https://www.Ulrick-Blasing-fake-blog.com", "other": [] }, + "socialMediaLinks": { "blog": "https://www.Kaia-Fassmann-fake-blog.com", "other": [] }, "availabilityForNetworking": true, - "bootcampExperience": "Springboard", + "bootcampExperience": "Kenzie Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304c93" + "$oid": "6674c31e95590f9fd9459f5b" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304ae6" + "$oid": "6674c31695590f9fd9459db1" }, - "firstName": "Cheri", - "lastName": "Danielsson", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "NYC 40", + "firstName": "Lockwood", + "lastName": "Moxham", + "cohort": "FTRI 1", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f67" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459db2" + }, + "firstName": "Tessie", + "lastName": "Sugden", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "ECRI 10", "graduationYear": 2024, - "email": "cdanielssonp@example.com", - "linkedInProfile": "https://www.linkedin.com/in/Cheri-Danielsson-fake", + "email": "tsugdenu@npr.org", + "linkedInProfile": "https://www.linkedin.com/in/Tessie-Sugden-fake", "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", "skills": [ - "PaaS (Platform as a Service)", - "Spring Boot", - "Technical Writing", - "Agile Development" + "SaaS (Software as a Service)", + "Java", + "HTML", + "Collaboration", + "Cybersecurity", + "Code Review", + "Blockchain", + "Docker", + "CI/CD", + "Git", + "Laravel", + "Containerization", + "Event-Driven Architecture" + ], + "specializations": [ + "Java", + "WebSockets", + "JavaScript", + "Data Science", + "Deep Learning", + "Time Management", + "Algorithm Design", + "AR/VR (Augmented/Virtual Reality)", + "SaaS (Software as a Service)", + "Legacy Code Management", + "Android Development", + "React", + "Django", + "System Design" ], - "specializations": ["Graph Databases", "Cloud Computing", "CI/CD"], "careerInformation": { - "currentPosition": { "title": "Engineering Manager", "company": "VMware" }, + "currentPosition": { "title": "Cloud Engineer", "company": "Robinhood" }, "pastPositions": [ { - "title": "Cloud Engineer", - "company": "Asana", + "title": "Data Scientist", + "company": "Oracle", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-06-03T08:54:09.280Z" + "$date": "2025-10-29T17:13:59.076Z" }, "_id": { - "$oid": "66723dae8f368f285d304ca0" + "$oid": "6674c31e95590f9fd9459f69" } }, { - "title": "Data Engineer", - "company": "Lyft", + "title": "Software Developer", + "company": "Uber", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-03-12T23:31:49.932Z" + "$date": "2026-02-24T07:29:45.493Z" }, "_id": { - "$oid": "66723dae8f368f285d304ca1" + "$oid": "6674c31e95590f9fd9459f6a" } }, { - "title": "QA Engineer", - "company": "Atlassian", + "title": "Mobile Developer", + "company": "GitHub", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-12-05T15:16:53.118Z" + "$date": "2025-11-15T07:17:37.297Z" }, "_id": { - "$oid": "66723dae8f368f285d304ca2" + "$oid": "6674c31e95590f9fd9459f6b" } }, { - "title": "Junior Software Engineer", - "company": "Spotify", + "title": "Security Engineer", + "company": "Facebook", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-07-17T20:29:26.535Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f6c" + } + }, + { + "title": "DevOps Engineer", + "company": "DocuSign", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-03-13T04:32:38.222Z" + "$date": "2025-05-02T02:56:04.337Z" }, "_id": { - "$oid": "66723dae8f368f285d304ca3" + "$oid": "6674c31e95590f9fd9459f6d" } } ] }, - "education": [ - { - "institution": "Vanderbilt University", - "degree": "Doctor of Dental Medicine (DMD)", - "fieldOfStudy": "Mechanical Engineering", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2025-11-24T02:57:54.357Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304ca4" - } - } - ], + "education": [], "projects": [ { - "name": "SecureBackup", - "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", - "link": "https://github.com/username/securebackup", + "name": "AIChatbot", + "description": "AI-powered chatbot for customer support and interactive communication.", + "link": "https://github.com/username/aichatbot", "_id": { - "$oid": "66723dae8f368f285d304ca5" + "$oid": "6674c31e95590f9fd9459f6e" } }, { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", + "name": "RoboTrader", + "description": "Algorithmic trading platform for automated stock market analysis and trading.", + "link": "https://github.com/username/robotrader", "_id": { - "$oid": "66723dae8f368f285d304ca6" + "$oid": "6674c31e95590f9fd9459f6f" } } ], - "personalBio": "Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.", + "personalBio": "Passionate about contributing to the tech community through open-source projects and knowledge sharing.", "testimonials": [ { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "66723dae8f368f285d304ca7" + "$oid": "6674c31e95590f9fd9459f70" } }, { - "from": "Emma Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "66723dae8f368f285d304ca8" + "$oid": "6674c31e95590f9fd9459f71" } }, { - "from": "Liam Harris", - "relation": "Lead Developer at CloudTech", - "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "66723dae8f368f285d304ca9" + "$oid": "6674c31e95590f9fd9459f72" } }, { - "from": "Emily Brown", - "relation": "Client at GlobalSoft Solutions", - "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304caa" + "$oid": "6674c31e95590f9fd9459f73" } }, { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", "_id": { - "$oid": "66723dae8f368f285d304cab" + "$oid": "6674c31e95590f9fd9459f74" } } ], - "socialMediaLinks": { - "twitter": "https://x.com/Cheri-Danielsson-fake", - "blog": "https://www.Cheri-Danielsson-fake-blog.com", - "other": [] - }, - "availabilityForNetworking": true, + "socialMediaLinks": { "other": ["https://www.instagram.com/Tessie-Sugden-fake"] }, + "availabilityForNetworking": false, "bootcampExperience": "Fullstack Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304c9f" + "$oid": "6674c31e95590f9fd9459f68" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304ae7" + "$oid": "6674c31695590f9fd9459db3" }, - "firstName": "Durand", - "lastName": "Joron", - "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "cohort": "PTRI 39", + "firstName": "Rea", + "lastName": "Jeremiah", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "PTRI 29", "graduationYear": 2024, - "email": "djoronq@google.cn", - "linkedInProfile": "https://www.linkedin.com/in/Durand-Joron-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "email": "rjeremiahv@wikispaces.com", + "linkedInProfile": "https://www.linkedin.com/in/Rea-Jeremiah-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", "skills": [ - "Machine Learning", + "BDD (Behavior-Driven Development)", + "Serverless Architecture", "Vue.js", - "Containerization", - "Unit Testing", - "Performance Optimization", - "Node.js", - "Infrastructure as Code", - "Version Control", - "SQL", - "ETL (Extract, Transform, Load)", - "User Interface (UI) Design", - "Functional Programming", - "Cloud Computing", - "NoSQL" + "Android Development", + "Mobile Development", + "HTML" ], "specializations": [ - "Integration Testing", + "iOS Development", + "Problem-Solving", + "Big Data", + "Serverless Architecture", + "Flask", + "Mobile Development", + "Project Management", + "FaaS (Function as a Service)", "Legacy Code Management", - "Code Review", "Algorithm Design", - "Machine Learning", - "C#", - "API Integration" + "Database Design", + "Code Review", + "Cloud Computing", + "CSS", + "Containerization", + "Google Cloud Platform", + "Data Warehousing" ], "careerInformation": { - "currentPosition": { "title": "Machine Learning Engineer", "company": "Cisco" }, + "currentPosition": { "title": "iOS Developer", "company": "Apple" }, "pastPositions": [ { - "title": "Lead Software Engineer", - "company": "Microsoft", + "title": "Automation Engineer", + "company": "DoorDash", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2028-05-13T22:26:46.728Z" + "$date": "2026-09-10T06:01:52.379Z" }, "_id": { - "$oid": "66723dae8f368f285d304cad" + "$oid": "6674c31e95590f9fd9459f76" } }, { - "title": "Security Engineer", - "company": "HubSpot", + "title": "Software Engineer", + "company": "Oracle", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-06-09T05:08:24.878Z" + "$date": "2024-12-03T13:44:43.262Z" }, "_id": { - "$oid": "66723dae8f368f285d304cae" + "$oid": "6674c31e95590f9fd9459f77" } }, { - "title": "Software Engineer", - "company": "Twilio", + "title": "Test Engineer", + "company": "HubSpot", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-08-28T06:25:38.775Z" + "$date": "2026-03-26T12:07:31.221Z" }, "_id": { - "$oid": "66723dae8f368f285d304caf" + "$oid": "6674c31e95590f9fd9459f78" } }, { - "title": "Backend Developer", - "company": "Tesla", + "title": "Android Developer", + "company": "Stripe", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2028-04-28T15:34:48.841Z" + "$date": "2027-12-31T15:34:26.525Z" }, "_id": { - "$oid": "66723dae8f368f285d304cb0" + "$oid": "6674c31e95590f9fd9459f79" } } ] }, "education": [ { - "institution": "University of California, Santa Barbara (UCSB)", - "degree": "Trade School Certification", - "fieldOfStudy": "Data Science", + "institution": "Tsinghua University", + "degree": "Bachelor of Arts (BA)", + "fieldOfStudy": "Music", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-12-21T06:16:54.572Z" + "$date": "2026-05-12T02:19:48.507Z" }, "_id": { - "$oid": "66723dae8f368f285d304cb1" - } - } - ], - "projects": [ - { - "name": "SmartGrid", - "description": "Smart grid technology for efficient energy distribution and consumption.", - "link": "https://github.com/username/smartgrid", - "_id": { - "$oid": "66723dae8f368f285d304cb2" - } - }, - { - "name": "SmartWatch", - "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", - "link": "https://github.com/username/smartwatch", - "_id": { - "$oid": "66723dae8f368f285d304cb3" + "$oid": "6674c31e95590f9fd9459f7a" } }, { - "name": "VirtualMarket", - "description": "Virtual reality shopping experience allowing users to browse and buy products online.", - "link": "https://github.com/username/virtualmarket", + "institution": "University of Tennessee", + "degree": "Doctoral Degree", + "fieldOfStudy": "Theater", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-08-14T09:49:48.680Z" + }, "_id": { - "$oid": "66723dae8f368f285d304cb4" + "$oid": "6674c31e95590f9fd9459f7b" } } ], - "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", + "projects": [], + "personalBio": "Adaptable problem solver who thrives in dynamic, fast-paced environments.", "testimonials": [], - "socialMediaLinks": { "twitter": "https://x.com/Durand-Joron-fake", "other": [] }, + "socialMediaLinks": { "other": ["https://www.instagram.com/Rea-Jeremiah-fake"] }, "availabilityForNetworking": true, - "bootcampExperience": "Le Wagon", + "bootcampExperience": "Codesmith", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304cac" + "$oid": "6674c31e95590f9fd9459f75" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304ae8" + "$oid": "6674c31695590f9fd9459db4" }, - "firstName": "Kristien", - "lastName": "Burgett", - "cohort": "PTRI 99", + "firstName": "Cassie", + "lastName": "Meadows", + "cohort": "FTRI 97", "skills": [], "specializations": [], "careerInformation": { "pastPositions": [] }, @@ -4076,7 +4234,7 @@ "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304cb5" + "$oid": "6674c31e95590f9fd9459f7c" }, "education": [], "projects": [], @@ -4086,319 +4244,283 @@ }, { "user": { - "$oid": "66723da68f368f285d304ae9" + "$oid": "6674c31695590f9fd9459db5" }, - "firstName": "Kaia", - "lastName": "Fassmann", - "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "cohort": "WCRI 34", + "firstName": "Kelci", + "lastName": "Bastide", + "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "cohort": "NYC 55", "graduationYear": 2024, - "email": "kfassmanns@ted.com", - "linkedInProfile": "https://www.linkedin.com/in/Kaia-Fassmann-fake", - "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", - "skills": ["Docker", "Algorithm Design", "Blockchain", "GraphQL", "System Design"], + "email": "kbastidex@latimes.com", + "linkedInProfile": "https://www.linkedin.com/in/Kelci-Bastide-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": [ + "Cloud Computing", + "NoSQL", + "Python", + "DevOps", + "Algorithm Design", + "Event-Driven Architecture", + "IoT (Internet of Things)", + "Scrum", + "Git", + "Edge Computing", + "ETL (Extract, Transform, Load)", + "Ruby", + "Data Visualization", + "Problem-Solving", + "BDD (Behavior-Driven Development)", + "Node.js" + ], "specializations": [ - "Design Patterns", - "Unit Testing", - "System Design", - "Robotic Process Automation", - "React", - "Flask", "Collaboration", - "ASP.NET", - "Serverless Architecture", - "Data Science", - "Algorithm Design", - "Mobile Development", - "Concurrency", - "AR/VR (Augmented/Virtual Reality)" + "C++", + "AWS", + "Microservices", + "SaaS (Software as a Service)", + "WebSockets", + "Pair Programming", + "API Development", + "ETL (Extract, Transform, Load)", + "GraphQL", + "ASP.NET", + "Time Management", + "RESTful APIs", + "Agile Development", + "CI/CD", + "Machine Learning", + "Python" ], "careerInformation": { - "currentPosition": { "title": "Android Developer", "company": "Lyft" }, + "currentPosition": { "title": "DevOps Engineer", "company": "Red Hat" }, "pastPositions": [ { - "title": "Product Manager", - "company": "Okta", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2028-02-29T14:48:47.739Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304cb7" - } - }, - { - "title": "Software Architect", - "company": "Spotify", + "title": "Full Stack Developer", + "company": "Oracle", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-10-19T18:49:04.550Z" + "$date": "2027-04-03T06:50:10.796Z" }, "_id": { - "$oid": "66723dae8f368f285d304cb8" + "$oid": "6674c31e95590f9fd9459f7e" } }, { - "title": "iOS Developer", - "company": "DoorDash", + "title": "Software Engineer", + "company": "Activision Blizzard", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-06-12T08:28:11.038Z" + "$date": "2025-07-08T00:13:47.187Z" }, "_id": { - "$oid": "66723dae8f368f285d304cb9" + "$oid": "6674c31e95590f9fd9459f7f" } } ] }, - "education": [ - { - "institution": "Pennsylvania State University", - "degree": "Master of Business Administration (MBA)", - "fieldOfStudy": "Electrical Engineering", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2024-08-09T19:36:04.194Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304cba" - } - }, - { - "institution": "Washington University in St. Louis", - "degree": "Master of Business Administration (MBA)", - "fieldOfStudy": "Statistics", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2026-02-05T00:15:07.565Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304cbb" - } - }, - { - "institution": "Rutgers University", - "degree": "Doctor of Pharmacy (PharmD)", - "fieldOfStudy": "Dentistry", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2024-10-21T06:35:40.803Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304cbc" - } - } - ], - "projects": [ + "education": [], + "projects": [], + "personalBio": "Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.", + "testimonials": [ { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", "_id": { - "$oid": "66723dae8f368f285d304cbd" + "$oid": "6674c31e95590f9fd9459f80" } }, { - "name": "RoboVision", - "description": "AI-powered computer vision system for object detection and recognition.", - "link": "https://github.com/username/robovision", + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", "_id": { - "$oid": "66723dae8f368f285d304cbe" + "$oid": "6674c31e95590f9fd9459f81" } }, - { - "name": "JobFinder", - "description": "Job search and application management platform with personalized recommendations.", - "link": "https://github.com/username/jobfinder", - "_id": { - "$oid": "66723dae8f368f285d304cbf" - } - } - ], - "personalBio": "Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.", - "testimonials": [ { "from": "Mia Davis", "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", "_id": { - "$oid": "66723dae8f368f285d304cc0" + "$oid": "6674c31e95590f9fd9459f82" } }, { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", "_id": { - "$oid": "66723dae8f368f285d304cc1" + "$oid": "6674c31e95590f9fd9459f83" } } ], - "socialMediaLinks": { "twitter": "https://x.com/Kaia-Fassmann-fake", "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "Lambda School", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "66723dae8f368f285d304cb6" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304aea" - }, - "firstName": "Lockwood", - "lastName": "Moxham", - "cohort": "PTRI 83", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Makers Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304cc2" + "$oid": "6674c31e95590f9fd9459f7d" }, - "education": [], - "projects": [], - "testimonials": [], "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304aeb" + "$oid": "6674c31695590f9fd9459db6" }, - "firstName": "Tessie", - "lastName": "Sugden", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "cohort": "LA 53", + "firstName": "Thurston", + "lastName": "Speechly", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "LA 41", "graduationYear": 2024, - "email": "tsugdenu@npr.org", - "linkedInProfile": "https://www.linkedin.com/in/Tessie-Sugden-fake", - "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", - "skills": ["Concurrency", "User Interface (UI) Design", "Agile Development"], - "specializations": [ - "NoSQL", - "Serverless Architecture", - "BDD (Behavior-Driven Development)", + "email": "tspeechlyy@plala.or.jp", + "linkedInProfile": "https://www.linkedin.com/in/Thurston-Speechly-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "skills": [ + "Time Management", + "Java", + "Machine Learning", + "Project Management", + "Parallel Computing", "Concurrency", - "ASP.NET", - "Unit Testing", - "Cybersecurity", - "Angular", - "Git", + "Critical Thinking", + "Leadership", + "User Interface (UI) Design", + "Google Cloud Platform", + "CSS", + "AWS" + ], + "specializations": [ + "AWS", + "GraphQL", + "Quantum Computing", "Refactoring", - "Vue.js", - "Node.js", - "JavaScript" + "Natural Language Processing", + "Functional Programming", + "Scrum", + "Python", + "ETL (Extract, Transform, Load)", + "Unit Testing", + "Laravel", + "SaaS (Software as a Service)", + "Performance Optimization", + "Mobile Development" ], "careerInformation": { - "currentPosition": { "title": "Data Engineer", "company": "EA (Electronic Arts)" }, + "currentPosition": { "title": "Mobile Developer", "company": "IBM" }, "pastPositions": [ { - "title": "QA Engineer", - "company": "Robinhood", + "title": "Site Reliability Engineer", + "company": "EA (Electronic Arts)", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-06-17T11:08:48.544Z" + "$date": "2026-07-17T16:33:06.515Z" }, "_id": { - "$oid": "66723dae8f368f285d304cc4" + "$oid": "6674c31e95590f9fd9459f85" } }, { - "title": "DevOps Engineer", - "company": "Oracle", + "title": "Cloud Engineer", + "company": "Dropbox", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-05-14T12:02:11.339Z" + "$date": "2025-01-21T09:48:13.207Z" }, "_id": { - "$oid": "66723dae8f368f285d304cc5" + "$oid": "6674c31e95590f9fd9459f86" } }, { - "title": "iOS Developer", - "company": "GitHub", + "title": "AI Engineer", + "company": "Okta", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2024-12-21T17:42:45.286Z" + "$date": "2028-02-25T15:24:38.854Z" }, "_id": { - "$oid": "66723dae8f368f285d304cc6" + "$oid": "6674c31e95590f9fd9459f87" } }, { - "title": "Full Stack Developer", - "company": "Salesforce", + "title": "Test Engineer", + "company": "Adobe", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-02-04T17:12:44.698Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f88" + } + }, + { + "title": "Lead Software Engineer", + "company": "Activision Blizzard", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-12-24T16:34:04.910Z" + "$date": "2024-10-10T02:51:10.141Z" }, "_id": { - "$oid": "66723dae8f368f285d304cc7" + "$oid": "6674c31e95590f9fd9459f89" } } ] }, "education": [ { - "institution": "University of British Columbia", - "degree": "Master of Arts (MA)", + "institution": "University of Sydney", + "degree": "Technical School Certification", "fieldOfStudy": "Education", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-01-03T15:05:03.134Z" + "$date": "2026-10-22T18:25:20.293Z" }, "_id": { - "$oid": "66723dae8f368f285d304cc8" + "$oid": "6674c31e95590f9fd9459f8a" } - } - ], - "projects": [ + }, { - "name": "JobFinder", - "description": "Job search and application management platform with personalized recommendations.", - "link": "https://github.com/username/jobfinder", + "institution": "University of Vermont", + "degree": "Associate Degree", + "fieldOfStudy": "Psychology", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-02-24T16:32:24.701Z" + }, "_id": { - "$oid": "66723dae8f368f285d304cc9" + "$oid": "6674c31e95590f9fd9459f8b" } - }, + } + ], + "projects": [ { - "name": "VirtualAssistant", - "description": "Virtual assistant software for voice command-based tasks and personal assistance.", - "link": "https://github.com/username/virtualassistant", + "name": "AIAssistant", + "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", + "link": "https://github.com/username/aiassistant", "_id": { - "$oid": "66723dae8f368f285d304cca" + "$oid": "6674c31e95590f9fd9459f8c" } }, { @@ -4406,245 +4528,220 @@ "description": "Home security system with video surveillance, motion detection, and alarm integration.", "link": "https://github.com/username/homesecurity", "_id": { - "$oid": "66723dae8f368f285d304ccb" + "$oid": "6674c31e95590f9fd9459f8d" } }, { - "name": "VirtualMarket", - "description": "Virtual reality shopping experience allowing users to browse and buy products online.", - "link": "https://github.com/username/virtualmarket", + "name": "SmartLearning", + "description": "AI-driven personalized learning platform with adaptive learning algorithms.", + "link": "https://github.com/username/smartlearning", "_id": { - "$oid": "66723dae8f368f285d304ccc" + "$oid": "6674c31e95590f9fd9459f8e" } }, { - "name": "SmartGrid", - "description": "Smart grid technology for efficient energy distribution and consumption.", - "link": "https://github.com/username/smartgrid", + "name": "EcoTech", + "description": "Environmental monitoring and conservation app with real-time data visualization.", + "link": "https://github.com/username/ecotech", "_id": { - "$oid": "66723dae8f368f285d304ccd" + "$oid": "6674c31e95590f9fd9459f8f" } } ], "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", "testimonials": [ { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "66723dae8f368f285d304cce" + "$oid": "6674c31e95590f9fd9459f90" } }, { - "from": "Emily Brown", - "relation": "Client at GlobalSoft Solutions", - "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", - "_id": { - "$oid": "66723dae8f368f285d304ccf" - } - }, - { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "66723dae8f368f285d304cd0" + "$oid": "6674c31e95590f9fd9459f91" } } ], "socialMediaLinks": { - "blog": "https://www.Tessie-Sugden-fake-blog.com", - "other": ["https://www.instagram.com/Tessie-Sugden-fake"] + "blog": "https://www.Thurston-Speechly-fake-blog.com", + "other": ["https://www.instagram.com/Thurston-Speechly-fake"] }, "availabilityForNetworking": false, - "bootcampExperience": "Lambda School", + "bootcampExperience": "App Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304cc3" + "$oid": "6674c31e95590f9fd9459f84" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304aec" + "$oid": "6674c31695590f9fd9459db7" }, - "firstName": "Rea", - "lastName": "Jeremiah", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "PTRI 45", + "firstName": "Silas", + "lastName": "Reyes", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "CTRI 95", "graduationYear": 2024, - "email": "rjeremiahv@wikispaces.com", - "linkedInProfile": "https://www.linkedin.com/in/Rea-Jeremiah-fake", - "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "email": "sreyesz@google.co.jp", + "linkedInProfile": "https://www.linkedin.com/in/Silas-Reyes-fake", + "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", "skills": [ - "Automated Testing", - "Problem-Solving", - "Vue.js", - "Parallel Computing", - "Collaboration", "Algorithm Design", - "Agile Development", - "AWS" + "Android Development", + "ETL (Extract, Transform, Load)", + "RESTful APIs", + "Data Visualization", + "Scrum", + "User Experience (UX) Design", + "SaaS (Software as a Service)", + "Git", + "Problem-Solving", + "Refactoring", + "Functional Programming" ], "specializations": [ - "Data Science", - "Version Control", - "Technical Writing", - "Mobile Development", + "React", + "Kubernetes", + "Machine Learning", + "SaaS (Software as a Service)", + "Pair Programming", + "Software Architecture", "C++", - "Event-Driven Architecture", - "Infrastructure as Code", - "JavaScript", - "C#" + "Laravel", + "iOS Development", + "Functional Programming", + "Data Warehousing", + "Parallel Computing", + "User Experience (UX) Design", + "PaaS (Platform as a Service)" ], "careerInformation": { - "currentPosition": { "title": "Frontend Developer", "company": "Workday" }, - "pastPositions": [ - { - "title": "Cloud Engineer", - "company": "PayPal", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2025-11-07T14:32:37.664Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304cd2" - } - }, - { - "title": "Automation Engineer", - "company": "Atlassian", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2025-07-17T01:29:05.657Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304cd3" - } - } - ] + "currentPosition": { "title": "Security Engineer", "company": "Cisco" }, + "pastPositions": [] }, "education": [ { - "institution": "University of Tokyo", - "degree": "Doctor of Pharmacy (PharmD)", - "fieldOfStudy": "Biomedical Engineering", + "institution": "University of Oxford", + "degree": "Master of Social Work (MSW)", + "fieldOfStudy": "Linguistics", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2028-02-01T15:19:38.760Z" + "$date": "2027-04-12T07:41:52.089Z" }, "_id": { - "$oid": "66723dae8f368f285d304cd4" + "$oid": "6674c31e95590f9fd9459f93" + } + } + ], + "projects": [ + { + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", + "_id": { + "$oid": "6674c31e95590f9fd9459f94" } }, { - "institution": "Nanyang Technological University (NTU)", - "degree": "Doctor of Medicine (MD)", - "fieldOfStudy": "Business Administration", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2028-06-09T13:41:06.295Z" - }, + "name": "MediCare", + "description": "Medical appointment scheduling and patient management system for healthcare providers.", + "link": "https://github.com/username/medicare", "_id": { - "$oid": "66723dae8f368f285d304cd5" + "$oid": "6674c31e95590f9fd9459f95" } }, { - "institution": "University of Pennsylvania", - "degree": "Master of Fine Arts (MFA)", - "fieldOfStudy": "Biochemistry", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2024-08-02T19:16:06.020Z" - }, + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", + "_id": { + "$oid": "6674c31e95590f9fd9459f96" + } + }, + { + "name": "CodeReview", + "description": "Collaborative code review platform with annotations and feedback features.", + "link": "https://github.com/username/codereview", "_id": { - "$oid": "66723dae8f368f285d304cd6" + "$oid": "6674c31e95590f9fd9459f97" } } ], - "projects": [ + "personalBio": "Skilled in UX/UI design principles, with a focus on creating intuitive and visually appealing interfaces.", + "testimonials": [ { - "name": "SocialConnect", - "description": "Social media integration platform for managing multiple social accounts.", - "link": "https://github.com/username/socialconnect", + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "66723dae8f368f285d304cd7" + "$oid": "6674c31e95590f9fd9459f98" } }, { - "name": "SecureBackup", - "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", - "link": "https://github.com/username/securebackup", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", "_id": { - "$oid": "66723dae8f368f285d304cd8" + "$oid": "6674c31e95590f9fd9459f99" } }, { - "name": "EventPlanner", - "description": "Event management and planning software for organizing and coordinating events.", - "link": "https://github.com/username/eventplanner", + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", "_id": { - "$oid": "66723dae8f368f285d304cd9" + "$oid": "6674c31e95590f9fd9459f9a" } - } - ], - "personalBio": "Advocate for diversity and inclusion in the tech industry, fostering a welcoming and supportive workplace culture.", - "testimonials": [ + }, { - "from": "Sophia Martinez", - "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", "_id": { - "$oid": "66723dae8f368f285d304cda" + "$oid": "6674c31e95590f9fd9459f9b" } }, { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", "_id": { - "$oid": "66723dae8f368f285d304cdb" + "$oid": "6674c31e95590f9fd9459f9c" } } ], - "socialMediaLinks": { - "twitter": "https://x.com/Rea-Jeremiah-fake", - "other": ["https://www.instagram.com/Rea-Jeremiah-fake"] - }, - "availabilityForNetworking": false, - "bootcampExperience": "Codesmith", + "socialMediaLinks": { "blog": "https://www.Silas-Reyes-fake-blog.com", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Hack Reactor", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304cd1" + "$oid": "6674c31e95590f9fd9459f92" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304aed" + "$oid": "6674c31695590f9fd9459db8" }, - "firstName": "Cassie", - "lastName": "Meadows", - "cohort": "WCRI 10", + "firstName": "Marley", + "lastName": "Boshard", + "cohort": "PTRI 10", "skills": [], "specializations": [], "careerInformation": { "pastPositions": [] }, @@ -4654,7 +4751,7 @@ "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304cdc" + "$oid": "6674c31e95590f9fd9459f9d" }, "education": [], "projects": [], @@ -4664,187 +4761,162 @@ }, { "user": { - "$oid": "66723da68f368f285d304aee" + "$oid": "6674c31695590f9fd9459db9" }, - "firstName": "Kelci", - "lastName": "Bastide", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "cohort": "LA 51", + "firstName": "Eb", + "lastName": "Dargie", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "LA 10", "graduationYear": 2024, - "email": "kbastidex@latimes.com", - "linkedInProfile": "https://www.linkedin.com/in/Kelci-Bastide-fake", - "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "email": "edargie11@artisteer.com", + "linkedInProfile": "https://www.linkedin.com/in/Eb-Dargie-fake", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", "skills": [ - "Kubernetes", - "Azure", - "RESTful APIs", - "ETL (Extract, Transform, Load)", - "BDD (Behavior-Driven Development)", - "Quantum Computing", - "Google Cloud Platform" + "HTML", + "AR/VR (Augmented/Virtual Reality)", + "Parallel Computing", + "Graph Theory", + "Laravel", + "Version Control" ], "specializations": [ - "Version Control", - "Data Warehousing", - "Machine Learning", - "Serverless Architecture", - "Docker", + "Problem-Solving", + "Quantum Computing", + "C#", "Database Design", - "FaaS (Function as a Service)", - "C#" + "iOS Development", + "Continuous Deployment", + "Laravel", + "Machine Learning", + "Data Warehousing", + "Spring Boot", + "Concurrency", + "Automated Testing" ], "careerInformation": { - "currentPosition": { "title": "Android Developer", "company": "IBM" }, - "pastPositions": [] - }, - "education": [], - "projects": [], - "personalBio": "Strong analytical thinker with a knack for troubleshooting and resolving complex technical issues.", - "testimonials": [], - "socialMediaLinks": { - "twitter": "https://x.com/Kelci-Bastide-fake", - "other": ["https://www.instagram.com/Kelci-Bastide-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Thinkful", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "66723dae8f368f285d304cdd" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304aef" - }, - "firstName": "Thurston", - "lastName": "Speechly", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "CTRI 29", - "graduationYear": 2024, - "email": "tspeechlyy@plala.or.jp", - "linkedInProfile": "https://www.linkedin.com/in/Thurston-Speechly-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": ["User Interface (UI) Design", "AWS", "Software Architecture"], - "specializations": [ - "C#", - "SQL", - "Robotic Process Automation", - "Integration Testing", - "Data Visualization", - "Version Control", - "Scrum", - "C++", - "Deep Learning", - "Project Management", - "Automated Testing", - "Cloud Computing", - "Technical Writing", - "WebSockets", - "RESTful APIs" - ], - "careerInformation": { - "currentPosition": { "title": "Backend Developer", "company": "Pinterest" }, - "pastPositions": [] + "currentPosition": { "title": "Engineering Manager", "company": "Twitter" }, + "pastPositions": [ + { + "title": "Mobile Developer", + "company": "Facebook", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-06-07T11:35:53.822Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f9f" + } + }, + { + "title": "Cloud Engineer", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-08-18T18:04:23.853Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fa0" + } + }, + { + "title": "Data Scientist", + "company": "Airbnb", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-07-24T16:40:21.338Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fa1" + } + } + ] }, "education": [ { - "institution": "Australian National University", - "degree": "Postdoctoral Research", - "fieldOfStudy": "Environmental Engineering", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2028-04-15T22:48:48.506Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304cdf" - } - }, - { - "institution": "University of Pittsburgh", - "degree": "Master of Public Administration (MPA)", - "fieldOfStudy": "Chemical Engineering", + "institution": "University of Massachusetts Amherst", + "degree": "Bachelor's Degree", + "fieldOfStudy": "Statistics", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2024-08-22T08:44:29.470Z" + "$date": "2025-06-03T05:34:00.391Z" }, "_id": { - "$oid": "66723dae8f368f285d304ce0" + "$oid": "6674c31e95590f9fd9459fa2" } }, { - "institution": "University of Nebraska-Lincoln", - "degree": "Doctor of Education (EdD)", - "fieldOfStudy": "Medicine", + "institution": "University of Missouri", + "degree": "Juris Doctor (JD)", + "fieldOfStudy": "Environmental Engineering", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-03-05T05:45:15.520Z" + "$date": "2026-10-08T09:12:19.626Z" }, "_id": { - "$oid": "66723dae8f368f285d304ce1" + "$oid": "6674c31e95590f9fd9459fa3" } } ], "projects": [ { - "name": "RoboTrader", - "description": "Algorithmic trading platform for automated stock market analysis and trading.", - "link": "https://github.com/username/robotrader", + "name": "VoiceAssistant", + "description": "Voice-controlled personal assistant using natural language processing.", + "link": "https://github.com/username/voiceassistant", "_id": { - "$oid": "66723dae8f368f285d304ce2" + "$oid": "6674c31e95590f9fd9459fa4" } }, { - "name": "GenomeQuest", - "description": "Genomic data analysis tool for researchers and bioinformaticians.", - "link": "https://github.com/username/genomequest", + "name": "AIChatbot", + "description": "AI-powered chatbot for customer support and interactive communication.", + "link": "https://github.com/username/aichatbot", "_id": { - "$oid": "66723dae8f368f285d304ce3" + "$oid": "6674c31e95590f9fd9459fa5" } }, { - "name": "VirtualMarket", - "description": "Virtual reality shopping experience allowing users to browse and buy products online.", - "link": "https://github.com/username/virtualmarket", + "name": "SmartInventory", + "description": "Inventory management system with RFID and IoT integration for tracking assets.", + "link": "https://github.com/username/smartinventory", "_id": { - "$oid": "66723dae8f368f285d304ce4" + "$oid": "6674c31e95590f9fd9459fa6" } }, { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", "_id": { - "$oid": "66723dae8f368f285d304ce5" + "$oid": "6674c31e95590f9fd9459fa7" } } ], - "personalBio": "Experienced in building scalable microservices architectures and integrating third-party APIs.", + "personalBio": "Proven ability to lead technical projects from inception to successful deployment and maintenance.", "testimonials": [ { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "from": "Aiden Walker", + "relation": "CTO at Innovate Solutions", + "text": "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", "_id": { - "$oid": "66723dae8f368f285d304ce6" + "$oid": "6674c31e95590f9fd9459fa8" } }, { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "66723dae8f368f285d304ce7" + "$oid": "6674c31e95590f9fd9459fa9" } }, { @@ -4852,244 +4924,145 @@ "relation": "CTO at Innovate Solutions", "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "66723dae8f368f285d304ce8" + "$oid": "6674c31e95590f9fd9459faa" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd9459fab" } } ], - "socialMediaLinks": { - "twitter": "https://x.com/Thurston-Speechly-fake", - "blog": "https://www.Thurston-Speechly-fake-blog.com", - "other": [] - }, + "socialMediaLinks": { "other": [] }, "availabilityForNetworking": true, - "bootcampExperience": "Le Wagon", + "bootcampExperience": "Lambda School", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304cde" + "$oid": "6674c31e95590f9fd9459f9e" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304af0" + "$oid": "6674c31695590f9fd9459dba" }, - "firstName": "Silas", - "lastName": "Reyes", + "firstName": "Dian", + "lastName": "Dackombe", "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "cohort": "NYC 11", + "cohort": "WCRI 17", "graduationYear": 2024, - "email": "sreyesz@google.co.jp", - "linkedInProfile": "https://www.linkedin.com/in/Silas-Reyes-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", - "skills": ["API Development"], - "specializations": [ - "User Interface (UI) Design", - "SaaS (Software as a Service)", - "Microservices", - "Collaboration", - "SQL", - "HTML", - "RESTful APIs", - "Legacy Code Management", - "ASP.NET", - "Event-Driven Architecture", - "Data Warehousing", - "Time Management", - "Agile Development", - "API Integration", - "Android Development", - "Node.js", - "IoT (Internet of Things)", - "Communication Skills" - ], + "email": "ddackombe13@ihg.com", + "linkedInProfile": "https://www.linkedin.com/in/Dian-Dackombe-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": ["Design Patterns", "Technical Writing", "Algorithm Design"], + "specializations": ["NoSQL"], "careerInformation": { - "currentPosition": { "title": "Senior Software Engineer", "company": "Facebook" }, + "currentPosition": { "title": "Principal Software Engineer", "company": "Stripe" }, "pastPositions": [ { - "title": "Senior Software Engineer", - "company": "Oracle", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2024-06-20T01:50:11.295Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304cea" - } - }, - { - "title": "Mobile Developer", - "company": "GitHub", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2027-05-18T04:16:52.469Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304ceb" - } - }, - { - "title": "Frontend Developer", - "company": "Twitter", + "title": "Automation Engineer", + "company": "Facebook", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2024-07-06T01:55:20.986Z" + "$date": "2024-07-07T20:11:19.983Z" }, "_id": { - "$oid": "66723dae8f368f285d304cec" + "$oid": "6674c31e95590f9fd9459fad" } }, { - "title": "Full Stack Developer", - "company": "Palantir", + "title": "Web Developer", + "company": "Cisco", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2024-08-02T01:32:49.326Z" + "$date": "2027-07-14T11:45:14.760Z" }, "_id": { - "$oid": "66723dae8f368f285d304ced" + "$oid": "6674c31e95590f9fd9459fae" } }, { - "title": "Junior Software Engineer", - "company": "Zoom", + "title": "Data Engineer", + "company": "Atlassian", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-11-15T04:33:26.412Z" + "$date": "2028-02-22T07:55:58.115Z" }, "_id": { - "$oid": "66723dae8f368f285d304cee" + "$oid": "6674c31e95590f9fd9459faf" } } ] }, "education": [ { - "institution": "Stanford University", - "degree": "Master of Fine Arts (MFA)", - "fieldOfStudy": "History", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2025-07-04T23:46:16.151Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304cef" - } - }, - { - "institution": "University of Minnesota", - "degree": "Bachelor's Degree", - "fieldOfStudy": "English Literature", + "institution": "University of California, Los Angeles (UCLA)", + "degree": "Technical School Certification", + "fieldOfStudy": "Film Studies", "startDate": { - "$date": "2024-06-19T02:08:46.632Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2028-05-15T19:39:21.866Z" + "$date": "2025-04-10T04:17:41.900Z" }, "_id": { - "$oid": "66723dae8f368f285d304cf0" + "$oid": "6674c31e95590f9fd9459fb0" } } ], - "projects": [ - { - "name": "VoiceAssistant", - "description": "Voice-controlled personal assistant using natural language processing.", - "link": "https://github.com/username/voiceassistant", - "_id": { - "$oid": "66723dae8f368f285d304cf1" - } - }, - { - "name": "EventPlanner", - "description": "Event management and planning software for organizing and coordinating events.", - "link": "https://github.com/username/eventplanner", - "_id": { - "$oid": "66723dae8f368f285d304cf2" - } - }, + "projects": [], + "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", + "testimonials": [ { - "name": "SecureChat", - "description": "End-to-end encrypted messaging app ensuring user privacy and security.", - "link": "https://github.com/username/securechat", + "from": "Aiden Walker", + "relation": "CTO at Innovate Solutions", + "text": "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", "_id": { - "$oid": "66723dae8f368f285d304cf3" + "$oid": "6674c31e95590f9fd9459fb1" } }, { - "name": "RecruitmentAI", - "description": "AI-powered recruitment platform for matching candidates with job opportunities.", - "link": "https://github.com/username/recruitmentai", + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "66723dae8f368f285d304cf4" + "$oid": "6674c31e95590f9fd9459fb2" } } ], - "personalBio": "Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.", - "testimonials": [], - "socialMediaLinks": { - "twitter": "https://x.com/Silas-Reyes-fake", - "blog": "https://www.Silas-Reyes-fake-blog.com", - "other": ["https://www.instagram.com/Silas-Reyes-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "App Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "66723dae8f368f285d304ce9" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304af1" - }, - "firstName": "Marley", - "lastName": "Boshard", - "cohort": "NYC 16", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "General Assembly", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304cf5" + "$oid": "6674c31e95590f9fd9459fac" }, - "education": [], - "projects": [], - "testimonials": [], "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304af2" + "$oid": "6674c31695590f9fd9459dbb" }, - "firstName": "Eb", - "lastName": "Dargie", - "cohort": "NYC 32", + "firstName": "Freedman", + "lastName": "Scrafton", + "cohort": "PTRI 56", "skills": [], "specializations": [], "careerInformation": { "pastPositions": [] }, @@ -5099,7 +5072,7 @@ "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304cf6" + "$oid": "6674c31e95590f9fd9459fb3" }, "education": [], "projects": [], @@ -5109,74 +5082,96 @@ }, { "user": { - "$oid": "66723da68f368f285d304af3" + "$oid": "6674c31695590f9fd9459dbc" }, - "firstName": "Dian", - "lastName": "Dackombe", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "CTRI 34", - "graduationYear": 2024, - "email": "ddackombe13@ihg.com", - "linkedInProfile": "https://www.linkedin.com/in/Dian-Dackombe-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", - "skills": [ - "Natural Language Processing", - "Communication Skills", - "Deep Learning", - "DevOps", - "Infrastructure as Code", - "Ruby", - "BDD (Behavior-Driven Development)", - "Performance Optimization", - "PaaS (Platform as a Service)", - "Python" - ], - "specializations": [ - "Event-Driven Architecture", - "Cloud Computing", - "Agile Development", - "Concurrency", - "Communication Skills", - "Critical Thinking", - "Reactive Programming", - "Django", - "AR/VR (Augmented/Virtual Reality)", - "IoT (Internet of Things)", - "Java", - "HTML", - "Scrum", - "Big Data", - "BDD (Behavior-Driven Development)", - "Ruby" - ], + "firstName": "Tabbitha", + "lastName": "Jolliffe", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "FTRI 23", + "graduationYear": 2024, + "email": "tjolliffe15@bbb.org", + "linkedInProfile": "https://www.linkedin.com/in/Tabbitha-Jolliffe-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": ["PaaS (Platform as a Service)", "Version Control"], + "specializations": ["Flask", "Performance Optimization"], "careerInformation": { - "currentPosition": { "title": "AI Engineer", "company": "Google" }, - "pastPositions": [] + "currentPosition": { "title": "Technical Lead", "company": "Zoom" }, + "pastPositions": [ + { + "title": "Security Engineer", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-01-27T02:34:31.023Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fb5" + } + }, + { + "title": "Frontend Developer", + "company": "Netflix", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-02-09T15:33:23.807Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fb6" + } + }, + { + "title": "Software Architect", + "company": "LinkedIn", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-12-03T04:14:07.527Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fb7" + } + }, + { + "title": "Junior Software Engineer", + "company": "Snowflake", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-08-21T03:24:16.343Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fb8" + } + }, + { + "title": "Web Developer", + "company": "PayPal", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-09-08T02:33:13.154Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fb9" + } + } + ] }, "education": [], "projects": [ { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", - "_id": { - "$oid": "66723dae8f368f285d304cf8" - } - }, - { - "name": "HealthMonitor", - "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", - "link": "https://github.com/username/healthmonitor", - "_id": { - "$oid": "66723dae8f368f285d304cf9" - } - }, - { - "name": "MediCare", - "description": "Medical appointment scheduling and patient management system for healthcare providers.", - "link": "https://github.com/username/medicare", + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", "_id": { - "$oid": "66723dae8f368f285d304cfa" + "$oid": "6674c31e95590f9fd9459fba" } }, { @@ -5184,573 +5179,251 @@ "description": "Centralized home automation system integrating IoT devices for smart living.", "link": "https://github.com/username/smarthomehub", "_id": { - "$oid": "66723dae8f368f285d304cfb" + "$oid": "6674c31e95590f9fd9459fbb" } - } - ], - "personalBio": "Experienced in Agile methodologies, with a track record of delivering projects on time and within budget.", - "testimonials": [ + }, { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", "_id": { - "$oid": "66723dae8f368f285d304cfc" + "$oid": "6674c31e95590f9fd9459fbc" } }, { - "from": "Noah Rodriguez", - "relation": "Product Owner at AgileSoft", - "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "name": "CloudStorage", + "description": "Cloud storage service with file synchronization and sharing capabilities.", + "link": "https://github.com/username/cloudstorage", "_id": { - "$oid": "66723dae8f368f285d304cfd" + "$oid": "6674c31e95590f9fd9459fbd" } }, { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", "_id": { - "$oid": "66723dae8f368f285d304cfe" + "$oid": "6674c31e95590f9fd9459fbe" } } ], - "socialMediaLinks": { "twitter": "https://x.com/Dian-Dackombe-fake", "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "General Assembly", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "66723dae8f368f285d304cf7" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304af4" - }, - "firstName": "Freedman", - "lastName": "Scrafton", - "cohort": "NYC 18", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "66723dae8f368f285d304cff" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304af5" - }, - "firstName": "Tabbitha", - "lastName": "Jolliffe", - "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "cohort": "PTRI 42", - "graduationYear": 2024, - "email": "tjolliffe15@bbb.org", - "linkedInProfile": "https://www.linkedin.com/in/Tabbitha-Jolliffe-fake", - "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", - "skills": ["Vue.js"], - "specializations": [ - "Version Control", - "Continuous Deployment", - "SQL", - "Object-Oriented Programming", - "Node.js", - "Design Patterns", - "WebSockets" - ], - "careerInformation": { - "currentPosition": { "title": "DevOps Engineer", "company": "Snapchat" }, - "pastPositions": [] - }, - "education": [], - "projects": [ - { - "name": "SmartInventory", - "description": "Inventory management system with RFID and IoT integration for tracking assets.", - "link": "https://github.com/username/smartinventory", - "_id": { - "$oid": "66723dae8f368f285d304d01" - } - }, + "personalBio": "Experienced in rapid prototyping and iterative development methodologies.", + "testimonials": [ { - "name": "CodeAnalyzer", - "description": "Static code analysis tool for detecting bugs and code quality improvements.", - "link": "https://github.com/username/codeanalyzer", + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "66723dae8f368f285d304d02" + "$oid": "6674c31e95590f9fd9459fbf" } }, { - "name": "RecruitmentAI", - "description": "AI-powered recruitment platform for matching candidates with job opportunities.", - "link": "https://github.com/username/recruitmentai", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "66723dae8f368f285d304d03" + "$oid": "6674c31e95590f9fd9459fc0" } }, { - "name": "SmartInventory", - "description": "Inventory management system with RFID and IoT integration for tracking assets.", - "link": "https://github.com/username/smartinventory", + "from": "Liam Harris", + "relation": "Lead Developer at CloudTech", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "66723dae8f368f285d304d04" + "$oid": "6674c31e95590f9fd9459fc1" } } ], - "personalBio": "Experienced in deploying and maintaining applications on cloud platforms like AWS and Azure.", - "testimonials": [], - "socialMediaLinks": { "blog": "https://www.Tabbitha-Jolliffe-fake-blog.com", "other": [] }, + "socialMediaLinks": { "other": ["https://www.instagram.com/Tabbitha-Jolliffe-fake"] }, "availabilityForNetworking": true, - "bootcampExperience": "Coding Dojo", + "bootcampExperience": "Flatiron School", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304d00" + "$oid": "6674c31e95590f9fd9459fb4" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304af6" + "$oid": "6674c31695590f9fd9459dbd" }, "firstName": "Jordon", "lastName": "Ganley", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "cohort": "LA 74", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "CTRI 49", "graduationYear": 2024, "email": "jganley16@geocities.jp", "linkedInProfile": "https://www.linkedin.com/in/Jordon-Ganley-fake", "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": ["Unit Testing", "Collaboration"], - "specializations": [ - "Spring Boot", - "iOS Development", - "API Development", - "Critical Thinking", - "Azure", - "DevOps", - "Functional Programming", - "Agile Development", - "GraphQL", - "Blockchain", - "Android Development", - "Continuous Deployment", - "Integration Testing", - "Object-Oriented Programming", - "Cloud Computing" - ], - "careerInformation": { - "currentPosition": { "title": "Mobile Developer", "company": "Twitter" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "London School of Economics and Political Science (LSE)", - "degree": "Master of Arts (MA)", - "fieldOfStudy": "Marketing", - "startDate": { - "$date": "2024-06-19T02:08:46.632Z" - }, - "endDate": { - "$date": "2027-12-22T16:24:24.577Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304d06" - } - } - ], - "projects": [], - "personalBio": "Experienced in international collaboration and remote work, with a strong appreciation for cultural diversity.", - "testimonials": [ - { - "from": "Emma Thompson", - "relation": "Manager at DataTech Solutions", - "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", - "_id": { - "$oid": "66723dae8f368f285d304d07" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "66723dae8f368f285d304d08" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "66723dae8f368f285d304d09" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Jordon-Ganley-fake", - "blog": "https://www.Jordon-Ganley-fake-blog.com", - "other": ["https://www.instagram.com/Jordon-Ganley-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Le Wagon", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "66723dae8f368f285d304d05" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304af7" - }, - "firstName": "Annora", - "lastName": "Brigge", - "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "cohort": "ECRI 48", - "graduationYear": 2024, - "email": "abrigge17@joomla.org", - "linkedInProfile": "https://www.linkedin.com/in/Annora-Brigge-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", "skills": [ - "Communication Skills", - "TDD (Test-Driven Development)", - "Containerization", - "JavaScript", - "Version Control", - "Microservices", - "Machine Learning", - "Laravel", - "CI/CD", - "Edge Computing" - ], - "specializations": [ - "Vue.js", - "RESTful APIs", + "Cybersecurity", + "API Integration", "PaaS (Platform as a Service)", - "GraphQL", - "HTML", - "Edge Computing", - "Node.js", - "Machine Learning", - "Mobile Development", - "Natural Language Processing" + "User Experience (UX) Design", + "NoSQL", + "Ruby", + "Pair Programming", + "Version Control", + "User Interface (UI) Design", + "Agile Development", + "Python" ], + "specializations": ["Django", "Object-Oriented Programming"], "careerInformation": { - "currentPosition": { "title": "DevOps Engineer", "company": "Facebook" }, + "currentPosition": { "title": "Security Engineer", "company": "Stripe" }, "pastPositions": [ { - "title": "AI Engineer", - "company": "ServiceNow", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2026-03-08T12:39:08.793Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304d0b" - } - }, - { - "title": "AI Engineer", - "company": "DoorDash", + "title": "Technical Lead", + "company": "Red Hat", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-12-16T22:28:04.375Z" + "$date": "2024-12-05T22:49:54.439Z" }, "_id": { - "$oid": "66723dae8f368f285d304d0c" + "$oid": "6674c31e95590f9fd9459fc3" } }, { - "title": "Data Engineer", - "company": "PayPal", + "title": "QA Engineer", + "company": "Twitter", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2028-04-11T18:26:03.638Z" + "$date": "2028-03-24T15:39:33.464Z" }, "_id": { - "$oid": "66723dae8f368f285d304d0d" + "$oid": "6674c31e95590f9fd9459fc4" } }, { - "title": "Software Engineer", - "company": "Cisco", + "title": "Automation Engineer", + "company": "Netflix", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-07-09T18:16:44.041Z" + "$date": "2026-10-01T00:44:40.237Z" }, "_id": { - "$oid": "66723dae8f368f285d304d0e" + "$oid": "6674c31e95590f9fd9459fc5" } }, { "title": "Full Stack Developer", - "company": "VMware", + "company": "LinkedIn", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2028-02-26T09:31:15.221Z" + "$date": "2024-09-11T07:50:27.027Z" }, "_id": { - "$oid": "66723dae8f368f285d304d0f" + "$oid": "6674c31e95590f9fd9459fc6" } } ] }, "education": [ { - "institution": "University of New South Wales (UNSW Sydney)", - "degree": "Professional Degree", - "fieldOfStudy": "Computer Science", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2026-12-08T23:47:59.445Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304d10" - } - } - ], - "projects": [ - { - "name": "SmartCity", - "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", - "link": "https://github.com/username/smartcity", - "_id": { - "$oid": "66723dae8f368f285d304d11" - } - }, - { - "name": "JobFinder", - "description": "Job search and application management platform with personalized recommendations.", - "link": "https://github.com/username/jobfinder", - "_id": { - "$oid": "66723dae8f368f285d304d12" - } - }, - { - "name": "AIAssistant", - "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", - "link": "https://github.com/username/aiassistant", - "_id": { - "$oid": "66723dae8f368f285d304d13" - } - } - ], - "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", - "testimonials": [ - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", - "_id": { - "$oid": "66723dae8f368f285d304d14" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "66723dae8f368f285d304d15" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Annora-Brigge-fake", - "other": ["https://www.instagram.com/Annora-Brigge-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "BrainStation", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "66723dae8f368f285d304d0a" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304af8" - }, - "firstName": "Bethanne", - "lastName": "Osband", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "LA 50", - "graduationYear": 2024, - "email": "bosband18@blinklist.com", - "linkedInProfile": "https://www.linkedin.com/in/Bethanne-Osband-fake", - "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", - "skills": [ - "Collaboration", - "Android Development", - "System Design", - "Containerization", - "Leadership", - "Edge Computing", - "Cloud Computing", - "Reactive Programming", - "C++", - "Refactoring", - "Automated Testing", - "Functional Programming", - "Natural Language Processing", - "CSS", - "Communication Skills", - "Ruby", - "Critical Thinking" - ], - "specializations": [ - "Integration Testing", - "Algorithm Design", - "Data Science", - "Mobile Development", - "Blockchain", - "Containerization" - ], - "careerInformation": { - "currentPosition": { "title": "Engineering Manager", "company": "Apple" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "University of Arizona", - "degree": "Continuing Education", - "fieldOfStudy": "Accounting", + "institution": "University College London (UCL)", + "degree": "Doctor of Pharmacy (PharmD)", + "fieldOfStudy": "Veterinary Medicine", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2028-05-26T11:31:51.132Z" + "$date": "2025-07-03T23:09:55.258Z" }, "_id": { - "$oid": "66723dae8f368f285d304d17" + "$oid": "6674c31e95590f9fd9459fc7" } }, { - "institution": "Australian National University", - "degree": "Master of Arts (MA)", - "fieldOfStudy": "Pharmacy", + "institution": "University of New South Wales (UNSW Sydney)", + "degree": "Executive Education", + "fieldOfStudy": "Mechanical Engineering", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-06-16T21:45:18.143Z" + "$date": "2026-02-13T15:55:05.842Z" }, "_id": { - "$oid": "66723dae8f368f285d304d18" + "$oid": "6674c31e95590f9fd9459fc8" } }, { - "institution": "University of Florida", - "degree": "Master of Business Administration (MBA)", - "fieldOfStudy": "Philosophy", + "institution": "University of California, Los Angeles (UCLA)", + "degree": "Doctor of Dental Medicine (DMD)", + "fieldOfStudy": "Biology", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2024-07-08T00:57:55.480Z" + "$date": "2026-02-21T18:23:24.863Z" }, "_id": { - "$oid": "66723dae8f368f285d304d19" + "$oid": "6674c31e95590f9fd9459fc9" } } ], - "projects": [ - { - "name": "HomeSecurity", - "description": "Home security system with video surveillance, motion detection, and alarm integration.", - "link": "https://github.com/username/homesecurity", - "_id": { - "$oid": "66723dae8f368f285d304d1a" - } - }, + "projects": [ { - "name": "CloudGuard", - "description": "Advanced cloud security suite ensuring data protection and compliance.", - "link": "https://github.com/username/cloudguard", + "name": "HealthLink", + "description": "Telemedicine platform connecting patients with healthcare providers remotely.", + "link": "https://github.com/username/healthlink", "_id": { - "$oid": "66723dae8f368f285d304d1b" + "$oid": "6674c31e95590f9fd9459fca" } }, { - "name": "VoiceAssistant", - "description": "Voice-controlled personal assistant using natural language processing.", - "link": "https://github.com/username/voiceassistant", + "name": "HealthLink", + "description": "Telemedicine platform connecting patients with healthcare providers remotely.", + "link": "https://github.com/username/healthlink", "_id": { - "$oid": "66723dae8f368f285d304d1c" + "$oid": "6674c31e95590f9fd9459fcb" } } ], - "personalBio": "Adept at optimizing SQL and NoSQL databases for performance and scalability.", + "personalBio": "Passionate about leveraging data-driven insights to optimize software performance and user engagement.", "testimonials": [ { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", "_id": { - "$oid": "66723dae8f368f285d304d1d" + "$oid": "6674c31e95590f9fd9459fcc" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "66723dae8f368f285d304d1e" + "$oid": "6674c31e95590f9fd9459fcd" } }, { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", "_id": { - "$oid": "66723dae8f368f285d304d1f" + "$oid": "6674c31e95590f9fd9459fce" } }, { - "from": "Lucas Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", "_id": { - "$oid": "66723dae8f368f285d304d20" + "$oid": "6674c31e95590f9fd9459fcf" } }, { @@ -5758,1691 +5431,1879 @@ "relation": "Manager at DataTech Solutions", "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "66723dae8f368f285d304d21" + "$oid": "6674c31e95590f9fd9459fd0" } } ], - "socialMediaLinks": { - "blog": "https://www.Bethanne-Osband-fake-blog.com", - "other": ["https://www.instagram.com/Bethanne-Osband-fake"] - }, - "availabilityForNetworking": false, - "bootcampExperience": "Coding Dojo", + "socialMediaLinks": { "twitter": "https://x.com/Jordon-Ganley-fake", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Thinkful", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304d16" + "$oid": "6674c31e95590f9fd9459fc2" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304af9" + "$oid": "6674c31695590f9fd9459dbe" }, - "firstName": "Hedda", - "lastName": "Tallquist", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "LA 64", + "firstName": "Annora", + "lastName": "Brigge", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "FTRI 30", "graduationYear": 2024, - "email": "htallquist19@cisco.com", - "linkedInProfile": "https://www.linkedin.com/in/Hedda-Tallquist-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": [], - "specializations": [ - "Graph Databases", - "Data Visualization", - "Natural Language Processing", - "User Experience (UX) Design", + "email": "abrigge17@joomla.org", + "linkedInProfile": "https://www.linkedin.com/in/Annora-Brigge-fake", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "skills": [ + "Functional Programming", + "Django", + "Concurrency", + "Containerization", + "Performance Optimization", + "C#", + "iOS Development", + "ETL (Extract, Transform, Load)", + "System Design", + "Technical Writing", + "Blockchain", "Infrastructure as Code", - "Design Patterns", - "Angular", - "ASP.NET", - "SQL", - "WebSockets" + "PaaS (Platform as a Service)", + "Cloud Computing" ], + "specializations": ["Python", "Leadership", "User Interface (UI) Design"], "careerInformation": { - "currentPosition": { "title": "Junior Software Engineer", "company": "Activision Blizzard" }, + "currentPosition": { "title": "Web Developer", "company": "Uber" }, "pastPositions": [ { - "title": "Frontend Developer", - "company": "VMware", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2025-03-01T13:31:50.544Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304d23" - } - }, - { - "title": "Security Engineer", - "company": "HubSpot", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2026-02-04T09:18:28.816Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304d24" - } - }, - { - "title": "Android Developer", - "company": "EA (Electronic Arts)", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2025-07-01T12:38:42.761Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304d25" - } - }, - { - "title": "Backend Developer", - "company": "Snapchat", + "title": "Technical Program Manager", + "company": "Netflix", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-01-01T11:29:37.946Z" + "$date": "2025-01-24T17:38:22.450Z" }, "_id": { - "$oid": "66723dae8f368f285d304d26" + "$oid": "6674c31e95590f9fd9459fd2" } }, { - "title": "Cloud Engineer", - "company": "Stripe", + "title": "AI Engineer", + "company": "Pinterest", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2028-04-18T10:08:35.372Z" + "$date": "2025-04-02T07:53:35.280Z" }, "_id": { - "$oid": "66723dae8f368f285d304d27" + "$oid": "6674c31e95590f9fd9459fd3" } } ] }, "education": [ { - "institution": "University of Colorado Boulder", - "degree": "Doctor of Philosophy (PhD)", - "fieldOfStudy": "Aerospace Engineering", + "institution": "Peking University", + "degree": "Diploma Program", + "fieldOfStudy": "Communication Studies", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2028-04-29T04:05:51.043Z" + "$date": "2028-01-17T23:58:52.901Z" }, "_id": { - "$oid": "66723dae8f368f285d304d28" + "$oid": "6674c31e95590f9fd9459fd4" } }, { - "institution": "University of Minnesota", - "degree": "Bachelor of Fine Arts (BFA)", - "fieldOfStudy": "English Literature", + "institution": "University of Oxford", + "degree": "Bachelor of Engineering (BE)", + "fieldOfStudy": "Finance", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-06-01T14:21:12.269Z" + "$date": "2028-06-16T20:05:00.691Z" }, "_id": { - "$oid": "66723dae8f368f285d304d29" + "$oid": "6674c31e95590f9fd9459fd5" + } + } + ], + "projects": [ + { + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", + "_id": { + "$oid": "6674c31e95590f9fd9459fd6" } }, { - "institution": "University of Toronto", - "degree": "Continuing Education", - "fieldOfStudy": "Law", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2025-01-20T10:46:03.418Z" - }, + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", + "_id": { + "$oid": "6674c31e95590f9fd9459fd7" + } + }, + { + "name": "EduTech", + "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", + "link": "https://github.com/username/edutech", + "_id": { + "$oid": "6674c31e95590f9fd9459fd8" + } + }, + { + "name": "VirtualTour", + "description": "Virtual reality tour application for immersive travel experiences.", + "link": "https://github.com/username/virtualtour", "_id": { - "$oid": "66723dae8f368f285d304d2a" + "$oid": "6674c31e95590f9fd9459fd9" } } ], - "projects": [ + "personalBio": "Devoted to fostering a collaborative team environment and mentoring junior developers.", + "testimonials": [ { - "name": "ARNavigation", - "description": "Augmented reality navigation app for real-time directions and location-based information.", - "link": "https://github.com/username/arnavigation", + "from": "Emily Brown", + "relation": "Client at GlobalSoft Solutions", + "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", "_id": { - "$oid": "66723dae8f368f285d304d2b" + "$oid": "6674c31e95590f9fd9459fda" } }, { - "name": "CloudGuard", - "description": "Advanced cloud security suite ensuring data protection and compliance.", - "link": "https://github.com/username/cloudguard", + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304d2c" + "$oid": "6674c31e95590f9fd9459fdb" } }, { - "name": "SmartHomeHub", - "description": "Centralized home automation system integrating IoT devices for smart living.", - "link": "https://github.com/username/smarthomehub", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd9459fdc" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "66723dae8f368f285d304d2d" + "$oid": "6674c31e95590f9fd9459fdd" } } ], - "personalBio": "Dedicated to upholding best practices in software engineering, including testing, code reviews, and version control.", - "testimonials": [], - "socialMediaLinks": { "blog": "https://www.Hedda-Tallquist-fake-blog.com", "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "General Assembly", + "socialMediaLinks": { + "blog": "https://www.Annora-Brigge-fake-blog.com", + "other": ["https://www.instagram.com/Annora-Brigge-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "The Tech Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304d22" + "$oid": "6674c31e95590f9fd9459fd1" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304afa" + "$oid": "6674c31695590f9fd9459dbf" }, - "firstName": "Lynelle", - "lastName": "Grosvener", - "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "cohort": "NYC 27", + "firstName": "Bethanne", + "lastName": "Osband", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "PTRI 61", "graduationYear": 2024, - "email": "lgrosvener1a@google.cn", - "linkedInProfile": "https://www.linkedin.com/in/Lynelle-Grosvener-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", - "skills": [], - "specializations": [ - "iOS Development", - "Legacy Code Management", - "Mobile Development", - "Microservices", + "email": "bosband18@blinklist.com", + "linkedInProfile": "https://www.linkedin.com/in/Bethanne-Osband-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "skills": [ "Object-Oriented Programming", + "Microservices", + "ASP.NET", + "Docker", + "Graph Theory", + "Mobile Development", + "Edge Computing", + "Leadership", + "API Development", + "Data Warehousing", + "Node.js", + "GraphQL", + "PaaS (Platform as a Service)" + ], + "specializations": [ + "Machine Learning", + "Quantum Computing", + "Cloud Computing", + "Ruby", "Kubernetes", - "Deep Learning", - "Cybersecurity", "DevOps", - "Graph Databases", - "Ruby", - "CSS", - "WebSockets", - "Time Management", - "Machine Learning" + "Project Management", + "Blockchain", + "Concurrency", + "PaaS (Platform as a Service)", + "Database Design", + "User Interface (UI) Design", + "Robotic Process Automation", + "Code Review", + "Technical Writing" ], "careerInformation": { - "currentPosition": { "title": "Test Engineer", "company": "ServiceNow" }, + "currentPosition": { "title": "Technical Program Manager", "company": "Oracle" }, "pastPositions": [ - { - "title": "Software Architect", - "company": "GitHub", + { + "title": "Lead Software Engineer", + "company": "Uber", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-12-28T18:42:02.470Z" + "$date": "2027-08-18T06:12:30.684Z" }, "_id": { - "$oid": "66723dae8f368f285d304d2f" + "$oid": "6674c31e95590f9fd9459fdf" } }, { - "title": "Automation Engineer", - "company": "Epic Games", + "title": "Senior Software Engineer", + "company": "Microsoft", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-06-11T11:54:02.772Z" + "$date": "2025-03-25T00:09:23.283Z" }, "_id": { - "$oid": "66723dae8f368f285d304d30" + "$oid": "6674c31e95590f9fd9459fe0" } }, { - "title": "Product Manager", + "title": "Site Reliability Engineer", "company": "Netflix", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-11-04T15:07:14.940Z" + "$date": "2028-01-18T08:51:14.764Z" }, "_id": { - "$oid": "66723dae8f368f285d304d31" + "$oid": "6674c31e95590f9fd9459fe1" } }, { - "title": "Engineering Manager", - "company": "Palantir", + "title": "Automation Engineer", + "company": "Zoom", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-03-30T09:09:44.844Z" + "$date": "2028-02-11T05:16:46.443Z" }, "_id": { - "$oid": "66723dae8f368f285d304d32" + "$oid": "6674c31e95590f9fd9459fe2" } } ] }, "education": [ { - "institution": "University of Arizona", - "degree": "Doctor of Pharmacy (PharmD)", - "fieldOfStudy": "History", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2027-12-20T21:33:55.047Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304d33" - } - }, - { - "institution": "Yale University", - "degree": "Master of Fine Arts (MFA)", - "fieldOfStudy": "Political Science", + "institution": "University of Oxford", + "degree": "Bachelor of Science (BS)", + "fieldOfStudy": "Nursing", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2028-05-02T22:42:12.692Z" + "$date": "2024-12-19T01:51:50.569Z" }, "_id": { - "$oid": "66723dae8f368f285d304d34" + "$oid": "6674c31e95590f9fd9459fe3" } } ], "projects": [], - "personalBio": "Passionate about contributing to the tech community through open-source projects and knowledge sharing.", + "personalBio": "Skilled in UX/UI design principles, with a focus on creating intuitive and visually appealing interfaces.", "testimonials": [ { - "from": "Daniel Lee", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", - "_id": { - "$oid": "66723dae8f368f285d304d35" - } - }, - { - "from": "Isabella Clark", - "relation": "HR Manager at TechFusion", - "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", - "_id": { - "$oid": "66723dae8f368f285d304d36" - } - }, - { - "from": "Ella Watson", + "from": "Emma Watson", "relation": "Director of Engineering at FutureTech", "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304d37" - } - }, - { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - "_id": { - "$oid": "66723dae8f368f285d304d38" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Lynelle-Grosvener-fake", - "blog": "https://www.Lynelle-Grosvener-fake-blog.com", - "other": ["https://www.instagram.com/Lynelle-Grosvener-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Hack Reactor", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "66723dae8f368f285d304d2e" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304afb" - }, - "firstName": "Lenee", - "lastName": "Pethybridge", - "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "cohort": "ECRI 26", - "graduationYear": 2024, - "email": "lpethybridge1b@chron.com", - "linkedInProfile": "https://www.linkedin.com/in/Lenee-Pethybridge-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": ["Microservices"], - "specializations": [ - "Docker", - "AR/VR (Augmented/Virtual Reality)", - "CSS", - "React", - "System Design", - "Algorithm Design", - "Time Management", - "Performance Optimization", - "JavaScript" - ], - "careerInformation": { - "currentPosition": { "title": "Automation Engineer", "company": "NVIDIA" }, - "pastPositions": [] - }, - "education": [], - "projects": [ - { - "name": "RoboTrader", - "description": "Algorithmic trading platform for automated stock market analysis and trading.", - "link": "https://github.com/username/robotrader", - "_id": { - "$oid": "66723dae8f368f285d304d3a" - } - }, - { - "name": "FoodDelivery", - "description": "Online food delivery platform connecting restaurants with customers for food ordering.", - "link": "https://github.com/username/fooddelivery", - "_id": { - "$oid": "66723dae8f368f285d304d3b" - } - }, - { - "name": "CodeBot", - "description": "Automated code generation tool using AI for faster development cycles.", - "link": "https://github.com/username/codebot", - "_id": { - "$oid": "66723dae8f368f285d304d3c" - } - }, - { - "name": "SocialConnect", - "description": "Social media integration platform for managing multiple social accounts.", - "link": "https://github.com/username/socialconnect", - "_id": { - "$oid": "66723dae8f368f285d304d3d" + "$oid": "6674c31e95590f9fd9459fe4" } }, { - "name": "ARNavigation", - "description": "Augmented reality navigation app for real-time directions and location-based information.", - "link": "https://github.com/username/arnavigation", - "_id": { - "$oid": "66723dae8f368f285d304d3e" - } - } - ], - "personalBio": "Experienced in rapid prototyping and iterative development methodologies.", - "testimonials": [ - { - "from": "Olivia White", - "relation": "Tech Lead at Cloud Innovations", - "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", "_id": { - "$oid": "66723dae8f368f285d304d3f" + "$oid": "6674c31e95590f9fd9459fe5" } }, { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", "_id": { - "$oid": "66723dae8f368f285d304d40" + "$oid": "6674c31e95590f9fd9459fe6" } } ], - "socialMediaLinks": { "blog": "https://www.Lenee-Pethybridge-fake-blog.com", "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "Le Wagon", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "66723dae8f368f285d304d39" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304afc" + "socialMediaLinks": { + "twitter": "https://x.com/Bethanne-Osband-fake", + "other": ["https://www.instagram.com/Bethanne-Osband-fake"] }, - "firstName": "Ninnette", - "lastName": "Maden", - "cohort": "ECRI 52", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Flatiron School", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304d41" + "$oid": "6674c31e95590f9fd9459fde" }, - "education": [], - "projects": [], - "testimonials": [], "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304afd" + "$oid": "6674c31695590f9fd9459dc0" }, - "firstName": "Jolynn", - "lastName": "Catenot", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "LA 55", + "firstName": "Hedda", + "lastName": "Tallquist", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "PTRI 62", "graduationYear": 2024, - "email": "jcatenot1d@oakley.com", - "linkedInProfile": "https://www.linkedin.com/in/Jolynn-Catenot-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "email": "htallquist19@cisco.com", + "linkedInProfile": "https://www.linkedin.com/in/Hedda-Tallquist-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", "skills": [ - "Java", - "Ruby", - "ASP.NET", - "React", - "PaaS (Platform as a Service)", - "Kubernetes", - "Reactive Programming", - "Concurrency", - "Database Design" + "Project Management", + "IoT (Internet of Things)", + "SaaS (Software as a Service)", + "Continuous Deployment", + "Docker", + "Node.js", + "HTML", + "C#", + "Event-Driven Architecture", + "FaaS (Function as a Service)" ], - "specializations": ["Problem-Solving", "Graph Theory", "Agile Development"], + "specializations": ["Scrum"], "careerInformation": { - "currentPosition": { "title": "Android Developer", "company": "Square" }, + "currentPosition": { "title": "Product Manager", "company": "Google" }, "pastPositions": [ { - "title": "Engineering Manager", - "company": "DoorDash", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2024-09-14T13:12:44.183Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304d43" - } - }, - { - "title": "QA Engineer", - "company": "Datadog", + "title": "AI Engineer", + "company": "Stripe", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2024-06-21T15:57:03.206Z" + "$date": "2026-03-30T13:55:51.212Z" }, "_id": { - "$oid": "66723dae8f368f285d304d44" + "$oid": "6674c31e95590f9fd9459fe8" } }, { - "title": "Software Architect", - "company": "Salesforce", + "title": "Automation Engineer", + "company": "Atlassian", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2024-11-23T03:27:35.839Z" + "$date": "2027-11-28T06:24:48.112Z" }, "_id": { - "$oid": "66723dae8f368f285d304d45" + "$oid": "6674c31e95590f9fd9459fe9" } }, { - "title": "Test Engineer", - "company": "Square", + "title": "Junior Software Engineer", + "company": "Coinbase", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-11-30T11:40:09.072Z" + "$date": "2027-05-14T22:10:59.957Z" }, "_id": { - "$oid": "66723dae8f368f285d304d46" + "$oid": "6674c31e95590f9fd9459fea" } }, { - "title": "Lead Software Engineer", - "company": "Red Hat", + "title": "Software Developer", + "company": "Qualcomm", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-11-28T02:03:58.554Z" + "$date": "2027-12-10T14:12:12.482Z" }, "_id": { - "$oid": "66723dae8f368f285d304d47" + "$oid": "6674c31e95590f9fd9459feb" } } ] }, "education": [ { - "institution": "Brigham Young University", - "degree": "Professional Degree", - "fieldOfStudy": "Communication Studies", + "institution": "Kyoto University", + "degree": "Master of Business Administration (MBA)", + "fieldOfStudy": "Music", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-10-11T09:35:59.934Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fec" + } + }, + { + "institution": "Emory University", + "degree": "Juris Doctor (JD)", + "fieldOfStudy": "Theater", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2024-11-29T16:38:48.306Z" + "$date": "2024-07-26T20:35:42.060Z" }, "_id": { - "$oid": "66723dae8f368f285d304d48" + "$oid": "6674c31e95590f9fd9459fed" + } + } + ], + "projects": [ + { + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", + "_id": { + "$oid": "6674c31e95590f9fd9459fee" + } + }, + { + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", + "_id": { + "$oid": "6674c31e95590f9fd9459fef" + } + }, + { + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", + "_id": { + "$oid": "6674c31e95590f9fd9459ff0" } } ], - "projects": [ + "personalBio": "Passionate about leveraging data-driven insights to optimize software performance and user engagement.", + "testimonials": [ { - "name": "CodeAnalyzer", - "description": "Static code analysis tool for detecting bugs and code quality improvements.", - "link": "https://github.com/username/codeanalyzer", + "from": "Ethan Taylor", + "relation": "Co-founder at StartupX", + "text": "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", "_id": { - "$oid": "66723dae8f368f285d304d49" + "$oid": "6674c31e95590f9fd9459ff1" } }, { - "name": "ARNavigation", - "description": "Augmented reality navigation app for real-time directions and location-based information.", - "link": "https://github.com/username/arnavigation", + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "66723dae8f368f285d304d4a" + "$oid": "6674c31e95590f9fd9459ff2" } - } - ], - "personalBio": "Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.", - "testimonials": [ + }, { - "from": "David Smith", - "relation": "Colleague at InnovateTech Ltd.", - "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", "_id": { - "$oid": "66723dae8f368f285d304d4b" + "$oid": "6674c31e95590f9fd9459ff3" } }, { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "_id": { + "$oid": "6674c31e95590f9fd9459ff4" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "66723dae8f368f285d304d4c" + "$oid": "6674c31e95590f9fd9459ff5" } } ], - "socialMediaLinks": { - "twitter": "https://x.com/Jolynn-Catenot-fake", - "other": ["https://www.instagram.com/Jolynn-Catenot-fake"] - }, + "socialMediaLinks": { "other": [] }, "availabilityForNetworking": false, - "bootcampExperience": "App Academy", + "bootcampExperience": "Fullstack Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304d42" + "$oid": "6674c31e95590f9fd9459fe7" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304afe" + "$oid": "6674c31695590f9fd9459dc1" }, - "firstName": "Marabel", - "lastName": "Puleston", + "firstName": "Lynelle", + "lastName": "Grosvener", "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "FTRI 6", + "cohort": "NYC 60", "graduationYear": 2024, - "email": "mpuleston1e@utexas.edu", - "linkedInProfile": "https://www.linkedin.com/in/Marabel-Puleston-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "email": "lgrosvener1a@google.cn", + "linkedInProfile": "https://www.linkedin.com/in/Lynelle-Grosvener-fake", + "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", "skills": [ - "Design Patterns", - "Laravel", - "Integration Testing", - "Android Development", - "Performance Optimization", - "Blockchain" + "C#", + "Big Data", + "NoSQL", + "Quantum Computing", + "GraphQL", + "Deep Learning", + "Continuous Deployment", + "Mobile Development", + "Serverless Architecture", + "IoT (Internet of Things)", + "AR/VR (Augmented/Virtual Reality)", + "Scrum", + "Java", + "API Development" ], - "specializations": [], + "specializations": ["React", "JavaScript"], "careerInformation": { - "currentPosition": { "title": "Data Engineer", "company": "Salesforce" }, + "currentPosition": { "title": "Data Engineer", "company": "EA (Electronic Arts)" }, "pastPositions": [ { - "title": "Android Developer", - "company": "Twilio", + "title": "Principal Software Engineer", + "company": "EA (Electronic Arts)", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-06-28T19:44:23.132Z" + "$date": "2026-05-19T12:40:43.020Z" }, "_id": { - "$oid": "66723dae8f368f285d304d4e" + "$oid": "6674c31e95590f9fd9459ff7" } }, { - "title": "Data Scientist", - "company": "Google", + "title": "Senior Software Engineer", + "company": "Qualcomm", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-07-06T15:37:06.023Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ff8" + } + }, + { + "title": "Web Developer", + "company": "Oracle", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-05-18T20:04:35.764Z" + "$date": "2027-02-01T18:10:39.392Z" }, "_id": { - "$oid": "66723dae8f368f285d304d4f" + "$oid": "6674c31e95590f9fd9459ff9" } }, { "title": "Technical Lead", - "company": "Epic Games", + "company": "Tesla", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-11-24T11:05:05.287Z" + "$date": "2024-11-24T07:49:00.151Z" }, "_id": { - "$oid": "66723dae8f368f285d304d50" + "$oid": "6674c31e95590f9fd9459ffa" } }, { - "title": "Data Engineer", - "company": "Snowflake", + "title": "Software Developer", + "company": "Shopify", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-02-08T08:50:13.205Z" + "$date": "2027-12-01T21:55:36.660Z" }, "_id": { - "$oid": "66723dae8f368f285d304d51" + "$oid": "6674c31e95590f9fd9459ffb" } } ] }, "education": [ { - "institution": "McGill University", - "degree": "Bachelor of Engineering (BE)", - "fieldOfStudy": "Mathematics", + "institution": "University of Oklahoma", + "degree": "Doctor of Business Administration (DBA)", + "fieldOfStudy": "Urban Planning", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2024-08-06T13:34:44.663Z" + "$date": "2027-05-24T07:14:51.319Z" }, "_id": { - "$oid": "66723dae8f368f285d304d52" - } - } - ], - "projects": [ - { - "name": "SecureBackup", - "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", - "link": "https://github.com/username/securebackup", - "_id": { - "$oid": "66723dae8f368f285d304d53" - } - }, - { - "name": "RecruitmentAI", - "description": "AI-powered recruitment platform for matching candidates with job opportunities.", - "link": "https://github.com/username/recruitmentai", - "_id": { - "$oid": "66723dae8f368f285d304d54" - } - }, - { - "name": "SmartHomeHub", - "description": "Centralized home automation system integrating IoT devices for smart living.", - "link": "https://github.com/username/smarthomehub", - "_id": { - "$oid": "66723dae8f368f285d304d55" + "$oid": "6674c31e95590f9fd9459ffc" } }, { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", + "institution": "Ohio State University", + "degree": "Master of Social Work (MSW)", + "fieldOfStudy": "Medicine", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-02-05T17:27:17.667Z" + }, "_id": { - "$oid": "66723dae8f368f285d304d56" + "$oid": "6674c31e95590f9fd9459ffd" } } ], - "personalBio": "Enthusiastic about open-source contributions and collaborating with diverse teams to deliver impactful projects.", - "testimonials": [ - { - "from": "Alice Johnson", - "relation": "Manager at TechSolutions Inc.", - "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", - "_id": { - "$oid": "66723dae8f368f285d304d57" - } - }, + "projects": [ { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", "_id": { - "$oid": "66723dae8f368f285d304d58" + "$oid": "6674c31e95590f9fd9459ffe" } }, { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "name": "SmartHomeHub", + "description": "Centralized home automation system integrating IoT devices for smart living.", + "link": "https://github.com/username/smarthomehub", "_id": { - "$oid": "66723dae8f368f285d304d59" + "$oid": "6674c31e95590f9fd9459fff" } }, { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "name": "AIChatbot", + "description": "AI-powered chatbot for customer support and interactive communication.", + "link": "https://github.com/username/aichatbot", "_id": { - "$oid": "66723dae8f368f285d304d5a" + "$oid": "6674c31e95590f9fd945a000" } } ], - "socialMediaLinks": { "twitter": "https://x.com/Marabel-Puleston-fake", "other": [] }, + "personalBio": "Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.", + "testimonials": [], + "socialMediaLinks": { "blog": "https://www.Lynelle-Grosvener-fake-blog.com", "other": [] }, "availabilityForNetworking": false, - "bootcampExperience": "General Assembly", + "bootcampExperience": "Ironhack", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304d4d" + "$oid": "6674c31e95590f9fd9459ff6" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304aff" + "$oid": "6674c31695590f9fd9459dc2" }, - "firstName": "Bryn", - "lastName": "Arias", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "ECRI 84", + "firstName": "Lenee", + "lastName": "Pethybridge", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "CTRI 4", "graduationYear": 2024, - "email": "barias1f@flavors.me", - "linkedInProfile": "https://www.linkedin.com/in/Bryn-Arias-fake", - "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", - "skills": [ - "DevOps", - "Robotic Process Automation", - "Node.js", - "Problem-Solving", - "Django", - "Performance Optimization", - "Cybersecurity", - "Vue.js", + "email": "lpethybridge1b@chron.com", + "linkedInProfile": "https://www.linkedin.com/in/Lenee-Pethybridge-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "skills": ["Object-Oriented Programming"], + "specializations": [ "Automated Testing", - "Critical Thinking", - "BDD (Behavior-Driven Development)", - "API Integration", - "Design Patterns", - "Git", - "Project Management", - "C++", - "User Interface (UI) Design", - "Collaboration" + "Python", + "RESTful APIs", + "Google Cloud Platform", + "Git" ], - "specializations": ["Git", "Machine Learning", "Data Science", "Agile Development"], "careerInformation": { - "currentPosition": { "title": "Engineering Manager", "company": "VMware" }, + "currentPosition": { "title": "Frontend Developer", "company": "Zoom" }, "pastPositions": [ { - "title": "Backend Developer", - "company": "Twitter", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2026-01-09T04:51:11.948Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304d5c" - } - }, - { - "title": "Lead Software Engineer", - "company": "Adobe", + "title": "Software Engineer", + "company": "Zoom", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-03-01T13:47:35.462Z" + "$date": "2026-07-06T08:37:31.567Z" }, "_id": { - "$oid": "66723dae8f368f285d304d5d" + "$oid": "6674c31e95590f9fd945a002" } }, { - "title": "Data Scientist", - "company": "Google", + "title": "Test Engineer", + "company": "Airbnb", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-03-28T10:15:44.607Z" + "$date": "2027-01-17T03:38:29.737Z" }, "_id": { - "$oid": "66723dae8f368f285d304d5e" + "$oid": "6674c31e95590f9fd945a003" } } ] }, "education": [ { - "institution": "Syracuse University", - "degree": "Master of Public Administration (MPA)", - "fieldOfStudy": "Business Administration", + "institution": "Ohio State University", + "degree": "Bachelor of Technology (BTech)", + "fieldOfStudy": "Information Technology", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-06-11T15:20:44.462Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a004" + } + }, + { + "institution": "University of Southern California", + "degree": "Bachelor of Business Administration (BBA)", + "fieldOfStudy": "Finance", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-12-07T23:04:24.439Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a005" + } + }, + { + "institution": "Nanyang Technological University (NTU)", + "degree": "Doctor of Medicine (MD)", + "fieldOfStudy": "Journalism", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-07-03T21:11:33.656Z" + "$date": "2028-01-05T19:28:12.287Z" }, "_id": { - "$oid": "66723dae8f368f285d304d5f" + "$oid": "6674c31e95590f9fd945a006" } } ], "projects": [ { - "name": "GenomeQuest", - "description": "Genomic data analysis tool for researchers and bioinformaticians.", - "link": "https://github.com/username/genomequest", + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", "_id": { - "$oid": "66723dae8f368f285d304d60" + "$oid": "6674c31e95590f9fd945a007" } }, { - "name": "CloudGuard", - "description": "Advanced cloud security suite ensuring data protection and compliance.", - "link": "https://github.com/username/cloudguard", + "name": "LearnHub", + "description": "Online learning platform offering courses on various subjects with interactive content.", + "link": "https://github.com/username/learnhub", "_id": { - "$oid": "66723dae8f368f285d304d61" + "$oid": "6674c31e95590f9fd945a008" } }, { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", + "name": "LearnHub", + "description": "Online learning platform offering courses on various subjects with interactive content.", + "link": "https://github.com/username/learnhub", "_id": { - "$oid": "66723dae8f368f285d304d62" + "$oid": "6674c31e95590f9fd945a009" } }, { - "name": "SmartCity", - "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", - "link": "https://github.com/username/smartcity", + "name": "TravelGuide", + "description": "Interactive travel guide application providing travel tips and destination insights.", + "link": "https://github.com/username/travelguide", "_id": { - "$oid": "66723dae8f368f285d304d63" + "$oid": "6674c31e95590f9fd945a00a" } } ], - "personalBio": "Experienced in building scalable microservices architectures and integrating third-party APIs.", + "personalBio": "Adept at optimizing SQL and NoSQL databases for performance and scalability.", "testimonials": [ { - "from": "Liam Harris", - "relation": "Lead Developer at CloudTech", - "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", "_id": { - "$oid": "66723dae8f368f285d304d64" + "$oid": "6674c31e95590f9fd945a00b" } }, { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "66723dae8f368f285d304d65" + "$oid": "6674c31e95590f9fd945a00c" } }, { - "from": "Emma Thompson", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "_id": { + "$oid": "6674c31e95590f9fd945a00d" + } + }, + { + "from": "Noah Wilson", "relation": "Manager at DataTech Solutions", - "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "66723dae8f368f285d304d66" + "$oid": "6674c31e95590f9fd945a00e" } } ], "socialMediaLinks": { - "twitter": "https://x.com/Bryn-Arias-fake", - "other": ["https://www.instagram.com/Bryn-Arias-fake"] + "twitter": "https://x.com/Lenee-Pethybridge-fake", + "blog": "https://www.Lenee-Pethybridge-fake-blog.com", + "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "Nucamp", + "availabilityForNetworking": false, + "bootcampExperience": "DevMountain", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304d5b" + "$oid": "6674c31e95590f9fd945a001" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b00" + "$oid": "6674c31695590f9fd9459dc3" }, - "firstName": "Arni", - "lastName": "Jertz", - "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "cohort": "PTRI 9", + "firstName": "Ninnette", + "lastName": "Maden", + "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "cohort": "PTRI 72", "graduationYear": 2024, - "email": "ajertz1g@tuttocitta.it", - "linkedInProfile": "https://www.linkedin.com/in/Arni-Jertz-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "email": "nmaden1c@sciencedirect.com", + "linkedInProfile": "https://www.linkedin.com/in/Ninnette-Maden-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", "skills": [ - "Infrastructure as Code", + "Graph Theory", + "API Development", + "Data Science", + "HTML", + "Critical Thinking", + "Machine Learning", "TDD (Test-Driven Development)", - "Version Control", - "Leadership", - "Django", - "Serverless Architecture", - "AWS", - "AR/VR (Augmented/Virtual Reality)", - "Critical Thinking" + "Communication Skills", + "Design Patterns", + "IoT (Internet of Things)", + "Project Management", + "Deep Learning", + "Blockchain", + "Cloud Computing" ], "specializations": [ - "Performance Optimization", - "Pair Programming", - "Integration Testing", - "React", - "Continuous Deployment", - "Microservices", - "TDD (Test-Driven Development)", - "Infrastructure as Code", - "Spring Boot", - "System Design", - "Version Control", - "Automated Testing", - "Kubernetes", - "PaaS (Platform as a Service)" + "Containerization", + "Django", + "Flask", + "Problem-Solving", + "User Interface (UI) Design", + "Scrum", + "Robotic Process Automation", + "Design Patterns", + "AWS", + "ASP.NET", + "CI/CD", + "Functional Programming", + "RESTful APIs" ], "careerInformation": { - "currentPosition": { "title": "Data Scientist", "company": "Square" }, + "currentPosition": { "title": "Senior Software Engineer", "company": "Activision Blizzard" }, "pastPositions": [ { - "title": "Security Engineer", - "company": "Qualcomm", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2025-08-17T09:15:43.076Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304d68" - } - }, - { - "title": "Full Stack Developer", - "company": "Okta", + "title": "Data Engineer", + "company": "Datadog", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2028-05-27T08:15:39.568Z" + "$date": "2027-04-29T06:54:43.698Z" }, "_id": { - "$oid": "66723dae8f368f285d304d69" + "$oid": "6674c31e95590f9fd945a010" } }, { - "title": "Web Developer", - "company": "Google", + "title": "iOS Developer", + "company": "Square", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2024-06-24T02:56:13.497Z" + "$date": "2028-06-04T12:47:17.988Z" }, "_id": { - "$oid": "66723dae8f368f285d304d6a" + "$oid": "6674c31e95590f9fd945a011" } }, { - "title": "Software Architect", - "company": "Lyft", + "title": "Software Developer", + "company": "Cisco", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-08-06T06:13:55.501Z" + "$date": "2025-08-22T00:10:19.352Z" }, "_id": { - "$oid": "66723dae8f368f285d304d6b" + "$oid": "6674c31e95590f9fd945a012" } }, { - "title": "Software Engineer", - "company": "Adobe", + "title": "DevOps Engineer", + "company": "Epic Games", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-08-04T05:14:29.095Z" + "$date": "2026-08-25T03:19:22.871Z" }, "_id": { - "$oid": "66723dae8f368f285d304d6c" + "$oid": "6674c31e95590f9fd945a013" } } ] }, - "education": [], - "projects": [], - "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", - "testimonials": [], - "socialMediaLinks": { "other": [] }, + "education": [ + { + "institution": "Chinese University of Hong Kong (CUHK)", + "degree": "Diploma Program", + "fieldOfStudy": "Data Science", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-10-09T15:55:00.595Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a014" + } + }, + { + "institution": "Cornell University", + "degree": "Master of Arts (MA)", + "fieldOfStudy": "Mathematics", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-11-12T07:55:35.690Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a015" + } + } + ], + "projects": [ + { + "name": "VirtualAssistant", + "description": "Virtual assistant software for voice command-based tasks and personal assistance.", + "link": "https://github.com/username/virtualassistant", + "_id": { + "$oid": "6674c31e95590f9fd945a016" + } + }, + { + "name": "EduTech", + "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", + "link": "https://github.com/username/edutech", + "_id": { + "$oid": "6674c31e95590f9fd945a017" + } + }, + { + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", + "_id": { + "$oid": "6674c31e95590f9fd945a018" + } + }, + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "6674c31e95590f9fd945a019" + } + }, + { + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", + "_id": { + "$oid": "6674c31e95590f9fd945a01a" + } + } + ], + "personalBio": "Experienced in Agile methodologies, with a track record of delivering projects on time and within budget.", + "testimonials": [ + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd945a01b" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "6674c31e95590f9fd945a01c" + } + }, + { + "from": "Liam Harris", + "relation": "Lead Developer at CloudTech", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd945a01d" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd945a01e" + } + } + ], + "socialMediaLinks": { + "blog": "https://www.Ninnette-Maden-fake-blog.com", + "other": ["https://www.instagram.com/Ninnette-Maden-fake"] + }, "availabilityForNetworking": true, - "bootcampExperience": "Flatiron School", + "bootcampExperience": "Tech Elevator", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304d67" + "$oid": "6674c31e95590f9fd945a00f" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b01" + "$oid": "6674c31695590f9fd9459dc4" }, - "firstName": "Maegan", - "lastName": "Mulhall", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "PTRI 48", + "firstName": "Jolynn", + "lastName": "Catenot", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "cohort": "LA 14", "graduationYear": 2024, - "email": "mmulhall1h@wikipedia.org", - "linkedInProfile": "https://www.linkedin.com/in/Maegan-Mulhall-fake", - "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", - "skills": [ - "Machine Learning", - "C++", - "AWS", - "Infrastructure as Code", - "Quantum Computing", - "Design Patterns", - "Java", - "Vue.js", - "Big Data", - "Pair Programming", - "CSS", - "Database Design", - "Kubernetes" - ], + "email": "jcatenot1d@oakley.com", + "linkedInProfile": "https://www.linkedin.com/in/Jolynn-Catenot-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": ["PaaS (Platform as a Service)", "C++", "Python"], "specializations": [ - "Data Science", - "Project Management", - "Agile Development", - "SaaS (Software as a Service)", - "Problem-Solving", - "Automated Testing", - "Node.js", - "Collaboration", - "CSS", - "Software Architecture", + "Machine Learning", + "Python", + "Unit Testing", + "API Integration", "Git", - "Graph Databases", - "Event-Driven Architecture", - "Robotic Process Automation", - "Data Visualization", - "Serverless Architecture" + "iOS Development", + "Django", + "Containerization", + "Refactoring", + "Flask", + "Legacy Code Management", + "Data Warehousing", + "DevOps", + "Software Architecture", + "NoSQL", + "GraphQL", + "Cloud Computing" ], "careerInformation": { - "currentPosition": { "title": "Mobile Developer", "company": "DocuSign" }, + "currentPosition": { "title": "Lead Software Engineer", "company": "Cisco" }, "pastPositions": [ { - "title": "Senior Software Engineer", - "company": "Cisco", + "title": "Full Stack Developer", + "company": "IBM", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-03-18T00:55:04.766Z" + "$date": "2027-02-10T09:21:35.479Z" }, "_id": { - "$oid": "66723dae8f368f285d304d6e" + "$oid": "6674c31e95590f9fd945a020" } }, { - "title": "Lead Software Engineer", - "company": "Asana", + "title": "Software Engineer", + "company": "Tesla", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2028-05-31T12:33:33.556Z" + "$date": "2024-08-01T22:00:04.487Z" }, "_id": { - "$oid": "66723dae8f368f285d304d6f" + "$oid": "6674c31e95590f9fd945a021" } }, { - "title": "Cloud Engineer", - "company": "Netflix", + "title": "Technical Program Manager", + "company": "IBM", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-10-14T21:58:46.948Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a022" + } + }, + { + "title": "Technical Lead", + "company": "Shopify", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-08-26T07:06:21.567Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a023" + } + }, + { + "title": "Mobile Developer", + "company": "Red Hat", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-05-01T02:41:39.567Z" + "$date": "2028-01-02T04:26:04.032Z" }, "_id": { - "$oid": "66723dae8f368f285d304d70" + "$oid": "6674c31e95590f9fd945a024" } } ] }, "education": [ { - "institution": "University of Cambridge", + "institution": "University of Tennessee", + "degree": "Master of Public Health (MPH)", + "fieldOfStudy": "Pharmacy", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-10-31T10:30:20.021Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a025" + } + }, + { + "institution": "University of Hong Kong (HKU)", "degree": "Master of Education (MEd)", - "fieldOfStudy": "Law", + "fieldOfStudy": "Civil Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-02-18T07:24:48.461Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a026" + } + }, + { + "institution": "Shanghai Jiao Tong University", + "degree": "Master of Public Health (MPH)", + "fieldOfStudy": "Mechanical Engineering", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-07-25T05:55:24.704Z" + "$date": "2026-05-23T21:43:37.385Z" }, "_id": { - "$oid": "66723dae8f368f285d304d71" + "$oid": "6674c31e95590f9fd945a027" } } ], - "projects": [], - "personalBio": "Passionate about improving codebase efficiency through refactoring and performance tuning.", - "testimonials": [ + "projects": [ { - "from": "David Smith", - "relation": "Colleague at InnovateTech Ltd.", - "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "name": "NetPlanner", + "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", + "link": "https://github.com/username/netplanner", "_id": { - "$oid": "66723dae8f368f285d304d72" + "$oid": "6674c31e95590f9fd945a028" } }, { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", "_id": { - "$oid": "66723dae8f368f285d304d73" + "$oid": "6674c31e95590f9fd945a029" } - }, + } + ], + "personalBio": "Adept at optimizing SQL and NoSQL databases for performance and scalability.", + "testimonials": [ { "from": "Olivia White", "relation": "Tech Lead at Cloud Innovations", "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", "_id": { - "$oid": "66723dae8f368f285d304d74" + "$oid": "6674c31e95590f9fd945a02a" } }, { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "66723dae8f368f285d304d75" + "$oid": "6674c31e95590f9fd945a02b" } }, { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "66723dae8f368f285d304d76" + "$oid": "6674c31e95590f9fd945a02c" } } ], - "socialMediaLinks": { "other": ["https://www.instagram.com/Maegan-Mulhall-fake"] }, + "socialMediaLinks": { + "twitter": "https://x.com/Jolynn-Catenot-fake", + "other": ["https://www.instagram.com/Jolynn-Catenot-fake"] + }, "availabilityForNetworking": true, - "bootcampExperience": "Makers Academy", + "bootcampExperience": "Le Wagon", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304d6d" + "$oid": "6674c31e95590f9fd945a01f" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b02" + "$oid": "6674c31695590f9fd9459dc5" }, - "firstName": "Nicolai", - "lastName": "Brugsma", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "ECRI 91", + "firstName": "Marabel", + "lastName": "Puleston", + "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "cohort": "WCRI 77", "graduationYear": 2024, - "email": "nbrugsma1i@4shared.com", - "linkedInProfile": "https://www.linkedin.com/in/Nicolai-Brugsma-fake", + "email": "mpuleston1e@utexas.edu", + "linkedInProfile": "https://www.linkedin.com/in/Marabel-Puleston-fake", "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", - "skills": [ - "DevOps", - "Serverless Architecture", - "AWS", - "Kubernetes", - "Concurrency", - "Quantum Computing", + "skills": ["SaaS (Software as a Service)", "Node.js"], + "specializations": [ + "Django", + "FaaS (Function as a Service)", + "Graph Databases", + "Pair Programming", + "HTML", + "Communication Skills", "Data Warehousing", - "Code Review", - "WebSockets", - "Project Management", + "Natural Language Processing", "Data Visualization", - "Communication Skills", - "Machine Learning" - ], - "specializations": [ - "Performance Optimization", - "Concurrency", - "AWS", - "Legacy Code Management", - "Cybersecurity", - "Integration Testing", - "React", - "Quantum Computing", - "Project Management" + "C#", + "Code Review", + "PaaS (Platform as a Service)", + "CSS", + "Blockchain" ], "careerInformation": { - "currentPosition": { "title": "Backend Developer", "company": "Snowflake" }, - "pastPositions": [] + "currentPosition": { "title": "Cloud Engineer", "company": "Tesla" }, + "pastPositions": [ + { + "title": "Data Scientist", + "company": "Stripe", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-09-10T10:52:39.879Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a02e" + } + }, + { + "title": "QA Engineer", + "company": "Activision Blizzard", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-03-09T13:59:50.810Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a02f" + } + }, + { + "title": "Principal Software Engineer", + "company": "VMware", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-02-18T22:10:01.529Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a030" + } + }, + { + "title": "Data Engineer", + "company": "Facebook", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-01-05T06:12:18.497Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a031" + } + } + ] }, "education": [ { - "institution": "University of Alberta", - "degree": "Master of Social Work (MSW)", - "fieldOfStudy": "Medicine", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2027-01-10T23:10:54.640Z" - }, + "institution": "Chinese University of Hong Kong (CUHK)", + "degree": "Master of Fine Arts (MFA)", + "fieldOfStudy": "Biomedical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-10-13T18:40:39.654Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a032" + } + }, + { + "institution": "University of California, Santa Barbara (UCSB)", + "degree": "Doctoral Degree", + "fieldOfStudy": "Film Studies", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-05-23T07:34:50.851Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a033" + } + }, + { + "institution": "Harvard University", + "degree": "Master of Education (MEd)", + "fieldOfStudy": "Biomedical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-03-27T09:59:16.444Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a034" + } + } + ], + "projects": [ + { + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", + "_id": { + "$oid": "6674c31e95590f9fd945a035" + } + }, + { + "name": "SocialConnect", + "description": "Social media integration platform for managing multiple social accounts.", + "link": "https://github.com/username/socialconnect", + "_id": { + "$oid": "6674c31e95590f9fd945a036" + } + }, + { + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", "_id": { - "$oid": "66723dae8f368f285d304d78" + "$oid": "6674c31e95590f9fd945a037" } } ], - "projects": [], - "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", + "personalBio": "Driven by a curiosity for innovation and a commitment to delivering high-quality software solutions.", "testimonials": [ { - "from": "Lucas Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "66723dae8f368f285d304d79" + "$oid": "6674c31e95590f9fd945a038" } }, { - "from": "Olivia White", - "relation": "Tech Lead at Cloud Innovations", - "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "66723dae8f368f285d304d7a" + "$oid": "6674c31e95590f9fd945a039" } }, { - "from": "Sophia Martinez", - "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "from": "Emily Brown", + "relation": "Client at GlobalSoft Solutions", + "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd945a03a" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "66723dae8f368f285d304d7b" + "$oid": "6674c31e95590f9fd945a03b" } } ], - "socialMediaLinks": { "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "DevMountain", + "socialMediaLinks": { + "twitter": "https://x.com/Marabel-Puleston-fake", + "blog": "https://www.Marabel-Puleston-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": false, + "bootcampExperience": "CareerFoundry", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304d77" + "$oid": "6674c31e95590f9fd945a02d" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b03" + "$oid": "6674c31695590f9fd9459dc6" }, - "firstName": "Bryan", - "lastName": "Heffy", - "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "cohort": "ECRI 27", + "firstName": "Bryn", + "lastName": "Arias", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "WCRI 15", "graduationYear": 2024, - "email": "bheffy1j@cbsnews.com", - "linkedInProfile": "https://www.linkedin.com/in/Bryan-Heffy-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", - "skills": [ - "Integration Testing", - "Refactoring", - "Technical Writing", - "Serverless Architecture", - "Data Warehousing", - "Laravel", - "RESTful APIs", - "Big Data" - ], + "email": "barias1f@flavors.me", + "linkedInProfile": "https://www.linkedin.com/in/Bryn-Arias-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": [], "specializations": [ - "Data Visualization", + "React", + "GraphQL", + "Vue.js", + "Edge Computing", + "Machine Learning", + "C++", + "ASP.NET", + "Java", + "Parallel Computing", + "Deep Learning", + "Reactive Programming", + "FaaS (Function as a Service)", "Containerization", - "SaaS (Software as a Service)", - "Scrum", - "Legacy Code Management", - "TDD (Test-Driven Development)", - "Event-Driven Architecture", - "Object-Oriented Programming", - "Functional Programming", - "NoSQL", - "Graph Databases", - "JavaScript", - "Technical Writing", - "Kubernetes", - "Mobile Development" + "Laravel", + "Collaboration", + "TDD (Test-Driven Development)" ], "careerInformation": { - "currentPosition": { "title": "DevOps Engineer", "company": "VMware" }, + "currentPosition": { "title": "Mobile Developer", "company": "HubSpot" }, "pastPositions": [ + { + "title": "Lead Software Engineer", + "company": "Palantir", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-02-17T11:31:02.577Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a03d" + } + }, + { + "title": "Data Scientist", + "company": "Atlassian", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-06-08T03:27:57.500Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a03e" + } + }, { "title": "Principal Software Engineer", - "company": "Adobe", + "company": "Okta", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-09-20T09:30:19.952Z" + "$date": "2027-01-01T21:05:23.832Z" }, "_id": { - "$oid": "66723dae8f368f285d304d7d" + "$oid": "6674c31e95590f9fd945a03f" } }, { - "title": "Data Engineer", - "company": "Twitter", + "title": "Lead Software Engineer", + "company": "Slack", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-07-06T00:25:21.976Z" + "$date": "2024-07-03T03:29:23.194Z" }, "_id": { - "$oid": "66723dae8f368f285d304d7e" + "$oid": "6674c31e95590f9fd945a040" } } ] }, "education": [ { - "institution": "Columbia University", - "degree": "Diploma Program", - "fieldOfStudy": "Pharmacy", + "institution": "University of Virginia", + "degree": "Master of Education (MEd)", + "fieldOfStudy": "Civil Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-12-08T22:16:04.526Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a041" + } + }, + { + "institution": "University of New South Wales (UNSW Sydney)", + "degree": "Master of Business Administration (MBA)", + "fieldOfStudy": "Aerospace Engineering", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-04-25T06:21:03.451Z" + "$date": "2027-02-02T21:17:41.626Z" }, "_id": { - "$oid": "66723dae8f368f285d304d7f" + "$oid": "6674c31e95590f9fd945a042" } } ], "projects": [ { - "name": "AugmentWorks", - "description": "Augmented reality application for enhancing workplace productivity and training.", - "link": "https://github.com/username/augmentworks", + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", "_id": { - "$oid": "66723dae8f368f285d304d80" + "$oid": "6674c31e95590f9fd945a043" } }, { - "name": "SmartCarPark", - "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", - "link": "https://github.com/username/smartcarpark", + "name": "CloudStorage", + "description": "Cloud storage service with file synchronization and sharing capabilities.", + "link": "https://github.com/username/cloudstorage", "_id": { - "$oid": "66723dae8f368f285d304d81" + "$oid": "6674c31e95590f9fd945a044" } }, { - "name": "FoodDelivery", - "description": "Online food delivery platform connecting restaurants with customers for food ordering.", - "link": "https://github.com/username/fooddelivery", + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", "_id": { - "$oid": "66723dae8f368f285d304d82" + "$oid": "6674c31e95590f9fd945a045" } }, { - "name": "CodeBot", - "description": "Automated code generation tool using AI for faster development cycles.", - "link": "https://github.com/username/codebot", + "name": "EcoTech", + "description": "Environmental monitoring and conservation app with real-time data visualization.", + "link": "https://github.com/username/ecotech", "_id": { - "$oid": "66723dae8f368f285d304d83" + "$oid": "6674c31e95590f9fd945a046" } } ], - "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", - "testimonials": [], - "socialMediaLinks": { - "twitter": "https://x.com/Bryan-Heffy-fake", - "blog": "https://www.Bryan-Heffy-fake-blog.com", - "other": [] - }, + "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", + "testimonials": [ + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd945a047" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "6674c31e95590f9fd945a048" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd945a049" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd945a04a" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Bryn-Arias-fake-blog.com", "other": [] }, "availabilityForNetworking": true, - "bootcampExperience": "CareerFoundry", + "bootcampExperience": "Lambda School", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304d7c" + "$oid": "6674c31e95590f9fd945a03c" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b04" + "$oid": "6674c31695590f9fd9459dc7" }, - "firstName": "Donavon", - "lastName": "Osichev", + "firstName": "Arni", + "lastName": "Jertz", "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "CTRI 27", + "cohort": "NYC 0", "graduationYear": 2024, - "email": "dosichev1k@pinterest.com", - "linkedInProfile": "https://www.linkedin.com/in/Donavon-Osichev-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "email": "ajertz1g@tuttocitta.it", + "linkedInProfile": "https://www.linkedin.com/in/Arni-Jertz-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", "skills": [ - "CSS", - "Unit Testing", - "Refactoring", - "Machine Learning", - "API Integration", - "Git", - "Blockchain", + "Serverless Architecture", + "SQL", + "Event-Driven Architecture", + "Robotic Process Automation", + "Agile Development", "Natural Language Processing", - "Scrum", - "AR/VR (Augmented/Virtual Reality)", - "Automated Testing", - "Containerization", + "Technical Writing", + "Continuous Deployment", + "Quantum Computing", "Node.js", - "SaaS (Software as a Service)", - "React" + "Mobile Development" ], "specializations": [ - "Concurrency", - "Python", - "Edge Computing", - "API Integration", - "ETL (Extract, Transform, Load)", - "C#", + "Unit Testing", + "SaaS (Software as a Service)", + "Angular", + "Deep Learning", + "Java", + "RESTful APIs", + "JavaScript", + "PaaS (Platform as a Service)", + "Agile Development", + "Serverless Architecture", + "React", + "Algorithm Design", "User Interface (UI) Design", + "Project Management", "API Development", - "Mobile Development", - "Ruby", - "System Design", - "Reactive Programming", - "Java", - "Technical Writing" + "Edge Computing" ], "careerInformation": { - "currentPosition": { "title": "Software Engineer", "company": "Snapchat" }, + "currentPosition": { "title": "Cloud Engineer", "company": "VMware" }, "pastPositions": [ { - "title": "Web Developer", - "company": "DocuSign", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2027-12-04T06:20:52.416Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304d85" - } - }, - { - "title": "Web Developer", - "company": "Atlassian", + "title": "DevOps Engineer", + "company": "GitHub", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-03-25T20:00:16.128Z" + "$date": "2024-10-31T20:05:15.306Z" }, "_id": { - "$oid": "66723dae8f368f285d304d86" + "$oid": "6674c31e95590f9fd945a04c" } }, { - "title": "Technical Program Manager", - "company": "Facebook", + "title": "Test Engineer", + "company": "Datadog", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-11-28T05:13:29.603Z" + "$date": "2025-09-23T14:34:12.246Z" }, "_id": { - "$oid": "66723dae8f368f285d304d87" + "$oid": "6674c31e95590f9fd945a04d" } }, { - "title": "Technical Program Manager", - "company": "Microsoft", + "title": "Mobile Developer", + "company": "Netflix", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-06-03T06:46:22.525Z" + "$date": "2025-01-23T12:58:28.212Z" }, "_id": { - "$oid": "66723dae8f368f285d304d88" + "$oid": "6674c31e95590f9fd945a04e" } } ] }, - "education": [], - "projects": [ - { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", - "_id": { - "$oid": "66723dae8f368f285d304d89" - } - }, + "education": [ { - "name": "VirtualTour", - "description": "Virtual reality tour application for immersive travel experiences.", - "link": "https://github.com/username/virtualtour", + "institution": "University of Pittsburgh", + "degree": "Master of Technology (MTech)", + "fieldOfStudy": "Economics", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-12-25T13:39:41.095Z" + }, "_id": { - "$oid": "66723dae8f368f285d304d8a" + "$oid": "6674c31e95590f9fd945a04f" } - }, + } + ], + "projects": [ { "name": "SmartMirror", "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", "link": "https://github.com/username/smartmirror", "_id": { - "$oid": "66723dae8f368f285d304d8b" + "$oid": "6674c31e95590f9fd945a050" } }, { - "name": "HealthLink", - "description": "Telemedicine platform connecting patients with healthcare providers remotely.", - "link": "https://github.com/username/healthlink", + "name": "TourismApp", + "description": "Mobile application for tourists providing travel guides and local recommendations.", + "link": "https://github.com/username/tourismapp", "_id": { - "$oid": "66723dae8f368f285d304d8c" + "$oid": "6674c31e95590f9fd945a051" } }, { - "name": "TourismApp", - "description": "Mobile application for tourists providing travel guides and local recommendations.", - "link": "https://github.com/username/tourismapp", + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", "_id": { - "$oid": "66723dae8f368f285d304d8d" + "$oid": "6674c31e95590f9fd945a052" } } ], - "personalBio": "Committed to writing clean, maintainable code that meets rigorous performance standards.", + "personalBio": "Passionate about building inclusive and accessible software that improves people's lives.", "testimonials": [ { - "from": "Ethan Taylor", - "relation": "Co-founder at StartupX", - "text": "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", "_id": { - "$oid": "66723dae8f368f285d304d8e" + "$oid": "6674c31e95590f9fd945a053" } }, { @@ -7450,70 +7311,58 @@ "relation": "Manager at DataTech Solutions", "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "66723dae8f368f285d304d8f" + "$oid": "6674c31e95590f9fd945a054" } }, { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "66723dae8f368f285d304d90" + "$oid": "6674c31e95590f9fd945a055" } }, { - "from": "Aiden Walker", - "relation": "CTO at Innovate Solutions", - "text": "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "_id": { + "$oid": "6674c31e95590f9fd945a056" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304d91" + "$oid": "6674c31e95590f9fd945a057" } } ], - "socialMediaLinks": { "blog": "https://www.Donavon-Osichev-fake-blog.com", "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "Lambda School", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "66723dae8f368f285d304d84" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304b05" + "socialMediaLinks": { + "twitter": "https://x.com/Arni-Jertz-fake", + "blog": "https://www.Arni-Jertz-fake-blog.com", + "other": ["https://www.instagram.com/Arni-Jertz-fake"] }, - "firstName": "Kennan", - "lastName": "Dugget", - "cohort": "PTRI 89", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Ironhack", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304d92" + "$oid": "6674c31e95590f9fd945a04b" }, - "education": [], - "projects": [], - "testimonials": [], "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b06" + "$oid": "6674c31695590f9fd9459dc8" }, - "firstName": "Paton", - "lastName": "Climance", - "cohort": "WCRI 92", + "firstName": "Maegan", + "lastName": "Mulhall", + "cohort": "FTRI 66", "skills": [], "specializations": [], "careerInformation": { "pastPositions": [] }, @@ -7523,7 +7372,7 @@ "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304d93" + "$oid": "6674c31e95590f9fd945a058" }, "education": [], "projects": [], @@ -7533,437 +7382,328 @@ }, { "user": { - "$oid": "66723da68f368f285d304b07" + "$oid": "6674c31695590f9fd9459dc9" }, - "firstName": "Caitrin", - "lastName": "McAllister", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "ECRI 84", + "firstName": "Nicolai", + "lastName": "Brugsma", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "FTRI 15", "graduationYear": 2024, - "email": "cmcallister1n@ft.com", - "linkedInProfile": "https://www.linkedin.com/in/Caitrin-McAllister-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", - "skills": [ - "ETL (Extract, Transform, Load)", - "Java", - "Edge Computing", - "ASP.NET", - "Django", - "Python", - "Git", - "Cloud Computing", - "NoSQL", - "Unit Testing", - "PaaS (Platform as a Service)", - "Continuous Deployment", - "CI/CD", - "SQL", - "Blockchain", - "Big Data", - "HTML", - "Natural Language Processing" - ], + "email": "nbrugsma1i@4shared.com", + "linkedInProfile": "https://www.linkedin.com/in/Nicolai-Brugsma-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": ["ASP.NET", "Reactive Programming"], "specializations": [ - "JavaScript", - "Data Warehousing", - "Communication Skills", - "SQL", - "Cybersecurity" + "C#", + "DevOps", + "Algorithm Design", + "Ruby", + "Software Architecture", + "Pair Programming" ], "careerInformation": { - "currentPosition": { "title": "Data Scientist", "company": "Amazon" }, + "currentPosition": { "title": "Security Engineer", "company": "Uber" }, "pastPositions": [ { - "title": "Principal Software Engineer", - "company": "Netflix", + "title": "Data Scientist", + "company": "Okta", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-02-11T01:29:05.348Z" + "$date": "2025-12-04T10:55:57.499Z" }, "_id": { - "$oid": "66723dae8f368f285d304d95" + "$oid": "6674c31e95590f9fd945a05a" } }, { - "title": "AI Engineer", - "company": "Tesla", + "title": "DevOps Engineer", + "company": "Salesforce", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-02-02T20:25:28.155Z" + "$date": "2028-04-03T09:31:01.690Z" }, "_id": { - "$oid": "66723dae8f368f285d304d96" + "$oid": "6674c31e95590f9fd945a05b" } }, { "title": "Data Scientist", - "company": "Intel", + "company": "Amazon", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-07-08T22:37:46.570Z" + "$date": "2026-06-30T20:15:13.373Z" }, "_id": { - "$oid": "66723dae8f368f285d304d97" + "$oid": "6674c31e95590f9fd945a05c" } }, { - "title": "Junior Software Engineer", - "company": "DocuSign", + "title": "Test Engineer", + "company": "Atlassian", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-01-05T15:56:46.646Z" + "$date": "2028-02-09T14:31:05.409Z" }, "_id": { - "$oid": "66723dae8f368f285d304d98" + "$oid": "6674c31e95590f9fd945a05d" + } + }, + { + "title": "Data Scientist", + "company": "Atlassian", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-05-30T17:58:48.506Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a05e" } } ] }, "education": [ { - "institution": "University of New South Wales (UNSW Sydney)", - "degree": "Continuing Education", - "fieldOfStudy": "Fine Arts", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2027-09-28T17:59:04.136Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304d99" - } - }, - { - "institution": "University of New South Wales (UNSW Sydney)", - "degree": "Doctor of Education (EdD)", - "fieldOfStudy": "Management", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2025-09-07T01:04:09.633Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304d9a" - } - }, - { - "institution": "University of Georgia", - "degree": "Master of Public Health (MPH)", - "fieldOfStudy": "Biology", + "institution": "Georgetown University", + "degree": "Doctor of Medicine (MD)", + "fieldOfStudy": "Urban Planning", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2026-10-12T19:58:17.528Z" + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-01-16T14:13:42.065Z" }, "_id": { - "$oid": "66723dae8f368f285d304d9b" - } - } - ], - "projects": [ - { - "name": "CryptoWallet", - "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", - "link": "https://github.com/username/cryptowallet", - "_id": { - "$oid": "66723dae8f368f285d304d9c" - } - }, - { - "name": "CryptoWallet", - "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", - "link": "https://github.com/username/cryptowallet", - "_id": { - "$oid": "66723dae8f368f285d304d9d" - } - }, - { - "name": "SmartCarPark", - "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", - "link": "https://github.com/username/smartcarpark", - "_id": { - "$oid": "66723dae8f368f285d304d9e" - } - }, - { - "name": "CloudGuard", - "description": "Advanced cloud security suite ensuring data protection and compliance.", - "link": "https://github.com/username/cloudguard", - "_id": { - "$oid": "66723dae8f368f285d304d9f" - } - } - ], - "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", - "testimonials": [ - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "66723dae8f368f285d304da0" + "$oid": "6674c31e95590f9fd945a05f" } }, { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "institution": "Princeton University", + "degree": "Doctor of Philosophy (PhD)", + "fieldOfStudy": "Biomedical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-12-23T10:39:27.798Z" + }, "_id": { - "$oid": "66723dae8f368f285d304da1" + "$oid": "6674c31e95590f9fd945a060" } }, { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "institution": "Yale University", + "degree": "Master of Public Administration (MPA)", + "fieldOfStudy": "Management", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-02-22T09:35:08.922Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a061" + } + } + ], + "projects": [], + "personalBio": "Driven by a passion for problem-solving and a commitment to continuous professional development.", + "testimonials": [ + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "66723dae8f368f285d304da2" + "$oid": "6674c31e95590f9fd945a062" } }, { - "from": "Alice Johnson", - "relation": "Manager at TechSolutions Inc.", - "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304da3" + "$oid": "6674c31e95590f9fd945a063" } }, { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "from": "Liam Harris", + "relation": "Lead Developer at CloudTech", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "66723dae8f368f285d304da4" + "$oid": "6674c31e95590f9fd945a064" } } ], - "socialMediaLinks": { "blog": "https://www.Caitrin-McAllister-fake-blog.com", "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "Ironhack", + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "General Assembly", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304d94" + "$oid": "6674c31e95590f9fd945a059" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b08" + "$oid": "6674c31695590f9fd9459dca" }, - "firstName": "Sephira", - "lastName": "Kaming", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "LA 89", + "firstName": "Bryan", + "lastName": "Heffy", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "FTRI 65", "graduationYear": 2024, - "email": "skaming1o@about.me", - "linkedInProfile": "https://www.linkedin.com/in/Sephira-Kaming-fake", - "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "email": "bheffy1j@cbsnews.com", + "linkedInProfile": "https://www.linkedin.com/in/Bryan-Heffy-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", "skills": [ - "Communication Skills", "ASP.NET", - "API Integration", - "Time Management", - "API Development", - "Google Cloud Platform", - "CSS", + "Ruby", + "Infrastructure as Code", + "Serverless Architecture", + "Graph Databases", "Code Review", - "JavaScript" + "Flask", + "Cloud Computing", + "DevOps", + "CI/CD", + "Version Control", + "Communication Skills", + "Java", + "Laravel", + "SaaS (Software as a Service)", + "User Experience (UX) Design", + "Agile Development", + "Event-Driven Architecture" ], "specializations": [ - "Scrum", + "API Development", + "Natural Language Processing", + "Object-Oriented Programming", + "User Interface (UI) Design", "HTML", - "Critical Thinking", - "AR/VR (Augmented/Virtual Reality)", - "Version Control", - "Automated Testing", "Android Development", - "User Interface (UI) Design", - "ETL (Extract, Transform, Load)", - "Azure" + "Deep Learning", + "Edge Computing", + "Node.js", + "C++", + "Mobile Development", + "Performance Optimization", + "NoSQL" ], "careerInformation": { - "currentPosition": { "title": "Software Architect", "company": "Coinbase" }, + "currentPosition": { "title": "Data Scientist", "company": "Adobe" }, "pastPositions": [ { - "title": "Frontend Developer", - "company": "Twilio", + "title": "DevOps Engineer", + "company": "Okta", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-08-10T16:26:57.640Z" + "$date": "2027-05-29T06:11:23.758Z" }, "_id": { - "$oid": "66723dae8f368f285d304da6" + "$oid": "6674c31e95590f9fd945a066" } }, { - "title": "Mobile Developer", - "company": "Cisco", + "title": "Machine Learning Engineer", + "company": "Twitter", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-07-01T08:16:18.652Z" + "$date": "2024-11-07T19:52:47.058Z" }, "_id": { - "$oid": "66723dae8f368f285d304da7" + "$oid": "6674c31e95590f9fd945a067" } - } - ] - }, - "education": [ - { - "institution": "University of Arizona", - "degree": "Bachelor's Degree", - "fieldOfStudy": "Fine Arts", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2026-04-01T10:27:28.760Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304da8" - } - }, - { - "institution": "University of Wisconsin-Madison", - "degree": "Diploma Program", - "fieldOfStudy": "Pharmacy", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" }, - "endDate": { - "$date": "2027-03-31T23:37:22.434Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304da9" - } - }, - { - "institution": "University of Chicago", - "degree": "Certificate Program", - "fieldOfStudy": "Education", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2027-01-23T17:47:03.433Z" + { + "title": "Technical Lead", + "company": "Lyft", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-11-23T10:55:18.338Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a068" + } }, - "_id": { - "$oid": "66723dae8f368f285d304daa" - } - } - ], - "projects": [ - { - "name": "TravelGuide", - "description": "Interactive travel guide application providing travel tips and destination insights.", - "link": "https://github.com/username/travelguide", - "_id": { - "$oid": "66723dae8f368f285d304dab" - } - }, - { - "name": "SmartGrid", - "description": "Smart grid technology for efficient energy distribution and consumption.", - "link": "https://github.com/username/smartgrid", - "_id": { - "$oid": "66723dae8f368f285d304dac" - } - }, - { - "name": "SecureBackup", - "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", - "link": "https://github.com/username/securebackup", - "_id": { - "$oid": "66723dae8f368f285d304dad" + { + "title": "Product Manager", + "company": "Salesforce", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-02-06T21:25:18.499Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a069" + } } - } - ], - "personalBio": "Adept at optimizing SQL and NoSQL databases for performance and scalability.", + ] + }, + "education": [], + "projects": [], + "personalBio": "Focused on delivering user-centric solutions that address real-world needs and challenges.", "testimonials": [ { "from": "Sophia Brown", "relation": "Product Owner at AgileSoft", "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "66723dae8f368f285d304dae" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "66723dae8f368f285d304daf" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "66723dae8f368f285d304db0" - } - }, - { - "from": "Emma Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "66723dae8f368f285d304db1" + "$oid": "6674c31e95590f9fd945a06a" } }, { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", "_id": { - "$oid": "66723dae8f368f285d304db2" + "$oid": "6674c31e95590f9fd945a06b" } } ], "socialMediaLinks": { - "twitter": "https://x.com/Sephira-Kaming-fake", - "blog": "https://www.Sephira-Kaming-fake-blog.com", - "other": ["https://www.instagram.com/Sephira-Kaming-fake"] + "twitter": "https://x.com/Bryan-Heffy-fake", + "other": ["https://www.instagram.com/Bryan-Heffy-fake"] }, "availabilityForNetworking": false, - "bootcampExperience": "Thinkful", + "bootcampExperience": "Nucamp", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304da5" + "$oid": "6674c31e95590f9fd945a065" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b09" + "$oid": "6674c31695590f9fd9459dcb" }, - "firstName": "Fraser", - "lastName": "Londsdale", - "cohort": "NYC 0", + "firstName": "Donavon", + "lastName": "Osichev", + "cohort": "FTRI 50", "skills": [], "specializations": [], "careerInformation": { "pastPositions": [] }, @@ -7973,7 +7713,7 @@ "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304db3" + "$oid": "6674c31e95590f9fd945a06c" }, "education": [], "projects": [], @@ -7983,11 +7723,11 @@ }, { "user": { - "$oid": "66723da68f368f285d304b0a" + "$oid": "6674c31695590f9fd9459dcc" }, - "firstName": "Alyssa", - "lastName": "Bangham", - "cohort": "ECRI 5", + "firstName": "Kennan", + "lastName": "Dugget", + "cohort": "ECRI 79", "skills": [], "specializations": [], "careerInformation": { "pastPositions": [] }, @@ -7997,7 +7737,7 @@ "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304db4" + "$oid": "6674c31e95590f9fd945a06d" }, "education": [], "projects": [], @@ -8007,11 +7747,11 @@ }, { "user": { - "$oid": "66723da68f368f285d304b0b" + "$oid": "6674c31695590f9fd9459dcd" }, - "firstName": "Clarette", - "lastName": "Alcock", - "cohort": "NYC 59", + "firstName": "Paton", + "lastName": "Climance", + "cohort": "WCRI 70", "skills": [], "specializations": [], "careerInformation": { "pastPositions": [] }, @@ -8021,7 +7761,7 @@ "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304db5" + "$oid": "6674c31e95590f9fd945a06e" }, "education": [], "projects": [], @@ -8031,895 +7771,626 @@ }, { "user": { - "$oid": "66723da68f368f285d304b0c" + "$oid": "6674c31695590f9fd9459dce" }, - "firstName": "Lizbeth", - "lastName": "France", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "LA 21", + "firstName": "Caitrin", + "lastName": "McAllister", + "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "cohort": "PTRI 27", "graduationYear": 2024, - "email": "lfrance1s@yahoo.com", - "linkedInProfile": "https://www.linkedin.com/in/Lizbeth-France-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": [ - "Laravel", - "Data Warehousing", - "Refactoring", - "AWS", - "TDD (Test-Driven Development)", - "CSS", - "SQL", - "ASP.NET", - "Project Management", - "Parallel Computing", - "Unit Testing", - "Quantum Computing", - "JavaScript" + "email": "cmcallister1n@ft.com", + "linkedInProfile": "https://www.linkedin.com/in/Caitrin-McAllister-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": ["Technical Writing"], + "specializations": [ + "GraphQL", + "Edge Computing", + "ETL (Extract, Transform, Load)", + "Docker", + "FaaS (Function as a Service)", + "iOS Development", + "Mobile Development" ], - "specializations": ["Problem-Solving"], "careerInformation": { - "currentPosition": { "title": "Technical Lead", "company": "VMware" }, + "currentPosition": { "title": "Frontend Developer", "company": "GitHub" }, "pastPositions": [ { "title": "Software Engineer", - "company": "Snapchat", + "company": "Shopify", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-03-02T10:07:52.075Z" + "$date": "2027-07-16T05:39:06.444Z" }, "_id": { - "$oid": "66723dae8f368f285d304db7" + "$oid": "6674c31e95590f9fd945a070" } }, { - "title": "Technical Program Manager", - "company": "Stripe", + "title": "Frontend Developer", + "company": "Robinhood", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-11-16T05:16:14.228Z" + "$date": "2028-02-25T18:42:37.000Z" }, "_id": { - "$oid": "66723dae8f368f285d304db8" + "$oid": "6674c31e95590f9fd945a071" } }, { - "title": "Software Architect", - "company": "Adobe", + "title": "Technical Lead", + "company": "Shopify", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-10-10T03:10:25.625Z" + "$date": "2026-09-11T06:52:56.908Z" }, "_id": { - "$oid": "66723dae8f368f285d304db9" + "$oid": "6674c31e95590f9fd945a072" } }, { - "title": "Backend Developer", - "company": "Lyft", + "title": "DevOps Engineer", + "company": "DoorDash", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-03-24T19:24:10.862Z" + "$date": "2026-06-07T18:28:46.924Z" }, "_id": { - "$oid": "66723dae8f368f285d304dba" + "$oid": "6674c31e95590f9fd945a073" } } ] }, - "education": [ - { - "institution": "ETH Zurich - Swiss Federal Institute of Technology", - "degree": "Bachelor of Technology (BTech)", - "fieldOfStudy": "Sociology", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2024-08-14T15:08:41.383Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304dbb" - } - }, - { - "institution": "University of Connecticut", - "degree": "High School Diploma", - "fieldOfStudy": "Dentistry", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2024-10-22T16:12:35.056Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304dbc" - } - }, - { - "institution": "University of Texas at Austin", - "degree": "Doctor of Dental Surgery (DDS)", - "fieldOfStudy": "Linguistics", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2025-01-24T08:27:47.356Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304dbd" - } - } - ], - "projects": [ - { - "name": "ARNavigation", - "description": "Augmented reality navigation app for real-time directions and location-based information.", - "link": "https://github.com/username/arnavigation", - "_id": { - "$oid": "66723dae8f368f285d304dbe" - } - }, - { - "name": "SecureBackup", - "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", - "link": "https://github.com/username/securebackup", - "_id": { - "$oid": "66723dae8f368f285d304dbf" - } - } - ], + "education": [], + "projects": [], "personalBio": "Skilled in working with cross-functional teams to deliver innovative software solutions that exceed expectations.", "testimonials": [ { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - "_id": { - "$oid": "66723dae8f368f285d304dc0" - } - }, - { - "from": "Emma Thompson", - "relation": "Manager at DataTech Solutions", - "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", "_id": { - "$oid": "66723dae8f368f285d304dc1" + "$oid": "6674c31e95590f9fd945a074" } }, { - "from": "Ella Watson", + "from": "Emma Watson", "relation": "Director of Engineering at FutureTech", "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304dc2" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Lizbeth-France-fake", - "blog": "https://www.Lizbeth-France-fake-blog.com", - "other": ["https://www.instagram.com/Lizbeth-France-fake"] - }, - "availabilityForNetworking": false, - "bootcampExperience": "DevMountain", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "66723dae8f368f285d304db6" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304b0d" - }, - "firstName": "Abramo", - "lastName": "Sparkwell", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "WCRI 72", - "graduationYear": 2024, - "email": "asparkwell1t@berkeley.edu", - "linkedInProfile": "https://www.linkedin.com/in/Abramo-Sparkwell-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", - "skills": [ - "Blockchain", - "Mobile Development", - "Node.js", - "Object-Oriented Programming", - "Big Data", - "Scrum", - "Flask", - "TDD (Test-Driven Development)", - "Technical Writing", - "Infrastructure as Code", - "Docker", - "Concurrency", - "CI/CD", - "Critical Thinking" - ], - "specializations": [ - "ASP.NET", - "Kubernetes", - "Azure", - "Laravel", - "AR/VR (Augmented/Virtual Reality)", - "API Development", - "Communication Skills", - "API Integration", - "Continuous Deployment", - "Object-Oriented Programming", - "Problem-Solving" - ], - "careerInformation": { - "currentPosition": { "title": "Software Developer", "company": "Robinhood" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "Tsinghua University", - "degree": "Master of Social Work (MSW)", - "fieldOfStudy": "Environmental Engineering", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2027-01-16T11:47:18.624Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304dc4" - } - }, - { - "institution": "Massachusetts Institute of Technology (MIT)", - "degree": "Trade School Certification", - "fieldOfStudy": "Urban Planning", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2024-11-07T10:28:49.955Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304dc5" - } - } - ], - "projects": [ - { - "name": "RecruitmentAI", - "description": "AI-powered recruitment platform for matching candidates with job opportunities.", - "link": "https://github.com/username/recruitmentai", - "_id": { - "$oid": "66723dae8f368f285d304dc6" - } - }, - { - "name": "EduTech", - "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", - "link": "https://github.com/username/edutech", - "_id": { - "$oid": "66723dae8f368f285d304dc7" - } - }, - { - "name": "SmartCarPark", - "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", - "link": "https://github.com/username/smartcarpark", - "_id": { - "$oid": "66723dae8f368f285d304dc8" - } - } - ], - "personalBio": "Passionate about improving codebase efficiency through refactoring and performance tuning.", - "testimonials": [ - { - "from": "Lucas Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", - "_id": { - "$oid": "66723dae8f368f285d304dc9" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "66723dae8f368f285d304dca" - } - }, - { - "from": "Olivia White", - "relation": "Tech Lead at Cloud Innovations", - "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", - "_id": { - "$oid": "66723dae8f368f285d304dcb" - } - }, - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "66723dae8f368f285d304dcc" + "$oid": "6674c31e95590f9fd945a075" } } ], - "socialMediaLinks": { - "twitter": "https://x.com/Abramo-Sparkwell-fake", - "blog": "https://www.Abramo-Sparkwell-fake-blog.com", - "other": [] - }, - "availabilityForNetworking": false, - "bootcampExperience": "Codesmith", + "socialMediaLinks": { "twitter": "https://x.com/Caitrin-McAllister-fake", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "The Tech Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304dc3" + "$oid": "6674c31e95590f9fd945a06f" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b0e" + "$oid": "6674c31695590f9fd9459dcf" }, - "firstName": "Darb", - "lastName": "Coen", - "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "cohort": "FTRI 88", + "firstName": "Sephira", + "lastName": "Kaming", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "LA 65", "graduationYear": 2024, - "email": "dcoen1u@prlog.org", - "linkedInProfile": "https://www.linkedin.com/in/Darb-Coen-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "email": "skaming1o@about.me", + "linkedInProfile": "https://www.linkedin.com/in/Sephira-Kaming-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", "skills": [ - "Project Management", - "Scrum", - "Leadership", - "Object-Oriented Programming", - "Robotic Process Automation", - "AR/VR (Augmented/Virtual Reality)", - "Concurrency", - "ETL (Extract, Transform, Load)", - "Ruby", + "Machine Learning", "Cybersecurity", - "Collaboration", - "Communication Skills", - "Code Review", - "Algorithm Design", - "Unit Testing" + "ETL (Extract, Transform, Load)", + "SaaS (Software as a Service)", + "Spring Boot", + "RESTful APIs" ], "specializations": [ - "IoT (Internet of Things)", - "Pair Programming", - "BDD (Behavior-Driven Development)", - "Functional Programming", - "NoSQL", - "TDD (Test-Driven Development)", - "Infrastructure as Code", + "Project Management", "HTML", - "Performance Optimization", - "RESTful APIs", - "Event-Driven Architecture", - "Software Architecture" + "Vue.js", + "WebSockets", + "User Interface (UI) Design", + "Quantum Computing", + "Data Visualization", + "iOS Development", + "AWS", + "BDD (Behavior-Driven Development)", + "Java", + "ETL (Extract, Transform, Load)", + "Google Cloud Platform", + "Mobile Development", + "Time Management" ], "careerInformation": { - "currentPosition": { "title": "Android Developer", "company": "Robinhood" }, + "currentPosition": { "title": "Cloud Engineer", "company": "Intel" }, "pastPositions": [ { - "title": "Test Engineer", - "company": "Workday", + "title": "Data Scientist", + "company": "EA (Electronic Arts)", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-10-16T01:29:03.158Z" + "$date": "2024-10-02T14:00:59.331Z" }, "_id": { - "$oid": "66723dae8f368f285d304dce" + "$oid": "6674c31e95590f9fd945a077" } }, { - "title": "iOS Developer", - "company": "Red Hat", + "title": "Data Scientist", + "company": "Google", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-04-28T19:56:49.598Z" + "$date": "2026-12-02T07:51:37.339Z" }, "_id": { - "$oid": "66723dae8f368f285d304dcf" + "$oid": "6674c31e95590f9fd945a078" } }, { - "title": "DevOps Engineer", - "company": "Slack", + "title": "Software Engineer", + "company": "Twilio", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-03-07T20:45:36.700Z" + "$date": "2025-11-09T07:14:41.105Z" }, "_id": { - "$oid": "66723dae8f368f285d304dd0" + "$oid": "6674c31e95590f9fd945a079" } } ] }, - "education": [], + "education": [ + { + "institution": "University of Wisconsin-Madison", + "degree": "Doctor of Veterinary Medicine (DVM)", + "fieldOfStudy": "Philosophy", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-02-05T05:37:23.289Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a07a" + } + }, + { + "institution": "Northwestern University", + "degree": "Bachelor of Business Administration (BBA)", + "fieldOfStudy": "Mechanical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-04-29T03:04:16.105Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a07b" + } + }, + { + "institution": "Harvard University", + "degree": "Doctor of Business Administration (DBA)", + "fieldOfStudy": "Graphic Design", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-08-23T07:33:21.887Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a07c" + } + } + ], "projects": [ { - "name": "CodeReview", - "description": "Collaborative code review platform with annotations and feedback features.", - "link": "https://github.com/username/codereview", + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", "_id": { - "$oid": "66723dae8f368f285d304dd1" + "$oid": "6674c31e95590f9fd945a07d" } }, { - "name": "TourismApp", - "description": "Mobile application for tourists providing travel guides and local recommendations.", - "link": "https://github.com/username/tourismapp", + "name": "VoiceAssistant", + "description": "Voice-controlled personal assistant using natural language processing.", + "link": "https://github.com/username/voiceassistant", + "_id": { + "$oid": "6674c31e95590f9fd945a07e" + } + }, + { + "name": "CryptoTrack", + "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", + "link": "https://github.com/username/cryptotrack", + "_id": { + "$oid": "6674c31e95590f9fd945a07f" + } + }, + { + "name": "HealthLink", + "description": "Telemedicine platform connecting patients with healthcare providers remotely.", + "link": "https://github.com/username/healthlink", "_id": { - "$oid": "66723dae8f368f285d304dd2" + "$oid": "6674c31e95590f9fd945a080" } } ], - "personalBio": "Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.", + "personalBio": "Detail-oriented developer with a strong foundation in algorithms and data structures.", "testimonials": [ { - "from": "Lucas Miller", + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + "_id": { + "$oid": "6674c31e95590f9fd945a081" + } + }, + { + "from": "Ava Miller", "relation": "CTO at InnovateTech Ltd.", - "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", "_id": { - "$oid": "66723dae8f368f285d304dd3" + "$oid": "6674c31e95590f9fd945a082" } }, { - "from": "Ethan Taylor", - "relation": "Co-founder at StartupX", - "text": "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", "_id": { - "$oid": "66723dae8f368f285d304dd4" + "$oid": "6674c31e95590f9fd945a083" } }, { - "from": "Daniel Lee", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd945a084" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304dd5" + "$oid": "6674c31e95590f9fd945a085" } } ], "socialMediaLinks": { - "twitter": "https://x.com/Darb-Coen-fake", - "blog": "https://www.Darb-Coen-fake-blog.com", - "other": ["https://www.instagram.com/Darb-Coen-fake"] + "blog": "https://www.Sephira-Kaming-fake-blog.com", + "other": ["https://www.instagram.com/Sephira-Kaming-fake"] }, - "availabilityForNetworking": false, - "bootcampExperience": "Galvanize", + "availabilityForNetworking": true, + "bootcampExperience": "DevMountain", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304dcd" + "$oid": "6674c31e95590f9fd945a076" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b0f" + "$oid": "6674c31695590f9fd9459dd0" }, - "firstName": "Gusty", - "lastName": "Besnardeau", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "CTRI 48", + "firstName": "Fraser", + "lastName": "Londsdale", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "PTRI 34", "graduationYear": 2024, - "email": "gbesnardeau1v@themeforest.net", - "linkedInProfile": "https://www.linkedin.com/in/Gusty-Besnardeau-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", - "skills": [ - "Java", - "Communication Skills", - "Project Management", - "Robotic Process Automation", - "Unit Testing", - "Spring Boot" - ], + "email": "flondsdale1p@freewebs.com", + "linkedInProfile": "https://www.linkedin.com/in/Fraser-Londsdale-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": ["Time Management", "Azure", "Spring Boot"], "specializations": [ - "Blockchain", - "DevOps", - "SQL", - "Google Cloud Platform", - "Big Data", - "Graph Theory", - "Docker", + "Deep Learning", + "Flask", + "Robotic Process Automation", + "Python", + "Ruby", "Mobile Development", - "GraphQL", - "Spring Boot", - "Concurrency", - "API Development", - "Design Patterns", - "Database Design", - "iOS Development", - "Infrastructure as Code" + "Infrastructure as Code", + "AWS", + "SaaS (Software as a Service)", + "TDD (Test-Driven Development)", + "Java" ], "careerInformation": { - "currentPosition": { "title": "Test Engineer", "company": "DoorDash" }, - "pastPositions": [ - { - "title": "Senior Software Engineer", - "company": "Slack", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2026-09-26T13:00:21.779Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304dd7" - } - }, - { - "title": "Cloud Engineer", - "company": "Qualcomm", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2026-11-16T15:25:04.328Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304dd8" - } - } - ] + "currentPosition": { "title": "Mobile Developer", "company": "DocuSign" }, + "pastPositions": [] }, "education": [ { - "institution": "University of Toronto", - "degree": "Master of Arts (MA)", - "fieldOfStudy": "Data Science", + "institution": "California Institute of Technology (Caltech)", + "degree": "Bachelor of Fine Arts (BFA)", + "fieldOfStudy": "Biomedical Engineering", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-04-18T20:32:13.471Z" + "$date": "2028-01-22T21:22:55.014Z" }, "_id": { - "$oid": "66723dae8f368f285d304dd9" + "$oid": "6674c31e95590f9fd945a087" } - }, + } + ], + "projects": [ { - "institution": "Imperial College London", - "degree": "Bachelor of Engineering (BE)", - "fieldOfStudy": "Law", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2027-03-09T12:40:44.458Z" - }, + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", "_id": { - "$oid": "66723dae8f368f285d304dda" + "$oid": "6674c31e95590f9fd945a088" } }, { - "institution": "Peking University", - "degree": "Master of Technology (MTech)", - "fieldOfStudy": "Nursing", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2025-12-28T11:19:55.539Z" - }, + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", "_id": { - "$oid": "66723dae8f368f285d304ddb" + "$oid": "6674c31e95590f9fd945a089" } - } - ], - "projects": [ + }, { - "name": "RoboVision", - "description": "AI-powered computer vision system for object detection and recognition.", - "link": "https://github.com/username/robovision", + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", "_id": { - "$oid": "66723dae8f368f285d304ddc" + "$oid": "6674c31e95590f9fd945a08a" } }, { - "name": "SmartCity", - "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", - "link": "https://github.com/username/smartcity", + "name": "CryptoWallet", + "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", + "link": "https://github.com/username/cryptowallet", "_id": { - "$oid": "66723dae8f368f285d304ddd" + "$oid": "6674c31e95590f9fd945a08b" } } ], - "personalBio": "Skilled in conducting technical workshops and seminars to share knowledge and mentor aspiring developers.", + "personalBio": "Innovative thinker with a track record of proposing and implementing creative solutions to technical challenges.", "testimonials": [ { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", "_id": { - "$oid": "66723dae8f368f285d304dde" + "$oid": "6674c31e95590f9fd945a08c" } }, - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + { + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", "_id": { - "$oid": "66723dae8f368f285d304ddf" + "$oid": "6674c31e95590f9fd945a08d" } }, { - "from": "Ethan Taylor", - "relation": "Co-founder at StartupX", - "text": "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", "_id": { - "$oid": "66723dae8f368f285d304de0" + "$oid": "6674c31e95590f9fd945a08e" } }, { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "66723dae8f368f285d304de1" + "$oid": "6674c31e95590f9fd945a08f" } }, { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "66723dae8f368f285d304de2" + "$oid": "6674c31e95590f9fd945a090" } } ], "socialMediaLinks": { - "blog": "https://www.Gusty-Besnardeau-fake-blog.com", - "other": ["https://www.instagram.com/Gusty-Besnardeau-fake"] + "twitter": "https://x.com/Fraser-Londsdale-fake", + "blog": "https://www.Fraser-Londsdale-fake-blog.com", + "other": [] }, - "availabilityForNetworking": false, + "availabilityForNetworking": true, "bootcampExperience": "Nucamp", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304dd6" + "$oid": "6674c31e95590f9fd945a086" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b10" + "$oid": "6674c31695590f9fd9459dd1" }, - "firstName": "Randy", - "lastName": "Verriour", + "firstName": "Alyssa", + "lastName": "Bangham", "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "LA 74", + "cohort": "CTRI 96", "graduationYear": 2024, - "email": "rverriour1w@ebay.co.uk", - "linkedInProfile": "https://www.linkedin.com/in/Randy-Verriour-fake", - "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", - "skills": ["ETL (Extract, Transform, Load)", "Natural Language Processing"], + "email": "abangham1q@usgs.gov", + "linkedInProfile": "https://www.linkedin.com/in/Alyssa-Bangham-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": [ + "Google Cloud Platform", + "Automated Testing", + "Flask", + "API Development", + "Laravel", + "Python", + "FaaS (Function as a Service)" + ], "specializations": [ - "Microservices", - "Natural Language Processing", - "Critical Thinking", - "Version Control", - "Technical Writing", - "API Integration", - "Performance Optimization", - "Database Design", - "Reactive Programming", - "GraphQL", + "JavaScript", + "Containerization", + "Design Patterns", + "Data Warehousing", + "User Interface (UI) Design", + "CI/CD", + "Graph Theory", "Big Data", - "WebSockets" + "Code Review" ], "careerInformation": { - "currentPosition": { "title": "QA Engineer", "company": "Netflix" }, + "currentPosition": { "title": "QA Engineer", "company": "Robinhood" }, "pastPositions": [ - { - "title": "Product Manager", - "company": "Red Hat", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2024-09-01T03:39:29.287Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304de4" - } - }, - { - "title": "Data Engineer", - "company": "Adobe", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2024-09-26T11:23:20.673Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304de5" - } - }, - { - "title": "Mobile Developer", - "company": "VMware", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2027-07-08T08:47:04.767Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304de6" - } - }, { "title": "Backend Developer", - "company": "PayPal", + "company": "Red Hat", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2024-09-01T13:16:14.657Z" + "$date": "2026-03-21T17:46:34.279Z" }, "_id": { - "$oid": "66723dae8f368f285d304de7" + "$oid": "6674c31e95590f9fd945a092" } }, { - "title": "Site Reliability Engineer", - "company": "Snapchat", + "title": "Security Engineer", + "company": "Dropbox", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-05-20T22:00:37.685Z" + "$date": "2025-05-07T03:33:06.274Z" }, "_id": { - "$oid": "66723dae8f368f285d304de8" + "$oid": "6674c31e95590f9fd945a093" } } ] }, "education": [ { - "institution": "University of California, Santa Barbara (UCSB)", - "degree": "Doctor of Philosophy (PhD)", - "fieldOfStudy": "Medicine", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2026-05-14T05:34:37.259Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304de9" - } - }, - { - "institution": "Stanford University", - "degree": "Diploma Program", - "fieldOfStudy": "Electrical Engineering", + "institution": "University of California, Los Angeles (UCLA)", + "degree": "Bachelor of Fine Arts (BFA)", + "fieldOfStudy": "Statistics", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-11-10T09:40:37.249Z" + "$date": "2025-02-17T22:44:31.250Z" }, "_id": { - "$oid": "66723dae8f368f285d304dea" + "$oid": "6674c31e95590f9fd945a094" } }, { - "institution": "Syracuse University", - "degree": "Master of Fine Arts (MFA)", - "fieldOfStudy": "Data Science", + "institution": "Fudan University", + "degree": "Master of Technology (MTech)", + "fieldOfStudy": "Sociology", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2024-10-30T20:27:26.905Z" + "$date": "2027-08-29T21:15:35.972Z" }, "_id": { - "$oid": "66723dae8f368f285d304deb" + "$oid": "6674c31e95590f9fd945a095" } } ], "projects": [ { - "name": "VoiceAssistant", - "description": "Voice-controlled personal assistant using natural language processing.", - "link": "https://github.com/username/voiceassistant", - "_id": { - "$oid": "66723dae8f368f285d304dec" - } - }, - { - "name": "SecureBackup", - "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", - "link": "https://github.com/username/securebackup", + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", "_id": { - "$oid": "66723dae8f368f285d304ded" + "$oid": "6674c31e95590f9fd945a096" } }, { - "name": "EduTech", - "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", - "link": "https://github.com/username/edutech", + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", "_id": { - "$oid": "66723dae8f368f285d304dee" + "$oid": "6674c31e95590f9fd945a097" } }, { - "name": "JobFinder", - "description": "Job search and application management platform with personalized recommendations.", - "link": "https://github.com/username/jobfinder", + "name": "VoiceAssistant", + "description": "Voice-controlled personal assistant using natural language processing.", + "link": "https://github.com/username/voiceassistant", "_id": { - "$oid": "66723dae8f368f285d304def" + "$oid": "6674c31e95590f9fd945a098" } }, { - "name": "DataCrunch", - "description": "Real-time data analytics platform for extracting insights from big data.", - "link": "https://github.com/username/datacrunch", + "name": "TravelGuide", + "description": "Interactive travel guide application providing travel tips and destination insights.", + "link": "https://github.com/username/travelguide", "_id": { - "$oid": "66723dae8f368f285d304df0" + "$oid": "6674c31e95590f9fd945a099" } } ], - "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", + "personalBio": "Experienced in international collaboration and remote work, with a strong appreciation for cultural diversity.", "testimonials": [ { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304df1" + "$oid": "6674c31e95590f9fd945a09a" } }, { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "66723dae8f368f285d304df2" + "$oid": "6674c31e95590f9fd945a09b" } }, { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "66723dae8f368f285d304df3" + "$oid": "6674c31e95590f9fd945a09c" } }, { @@ -8927,771 +8398,633 @@ "relation": "Product Owner at AgileSoft", "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", "_id": { - "$oid": "66723dae8f368f285d304df4" + "$oid": "6674c31e95590f9fd945a09d" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd945a09e" } } ], - "socialMediaLinks": { - "twitter": "https://x.com/Randy-Verriour-fake", - "other": ["https://www.instagram.com/Randy-Verriour-fake"] - }, + "socialMediaLinks": { "other": ["https://www.instagram.com/Alyssa-Bangham-fake"] }, "availabilityForNetworking": true, - "bootcampExperience": "Makers Academy", + "bootcampExperience": "Flatiron School", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304de3" + "$oid": "6674c31e95590f9fd945a091" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b11" + "$oid": "6674c31695590f9fd9459dd2" }, - "firstName": "Israel", - "lastName": "Canti", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "NYC 55", + "firstName": "Clarette", + "lastName": "Alcock", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "FTRI 32", "graduationYear": 2024, - "email": "icanti1x@businesswire.com", - "linkedInProfile": "https://www.linkedin.com/in/Israel-Canti-fake", + "email": "calcock1r@amazonaws.com", + "linkedInProfile": "https://www.linkedin.com/in/Clarette-Alcock-fake", "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", "skills": [ - "C++", - "FaaS (Function as a Service)", - "AWS", - "ETL (Extract, Transform, Load)", - "Quantum Computing", - "Event-Driven Architecture", - "Code Review", - "Problem-Solving", - "React", - "Containerization", - "API Development", - "GraphQL", + "System Design", "Android Development", - "ASP.NET", - "Data Warehousing", - "Flask" + "Natural Language Processing", + "GraphQL", + "Refactoring" ], "specializations": [ - "Flask", - "Code Review", - "Performance Optimization", - "Software Architecture", - "Git", - "Technical Writing", - "ETL (Extract, Transform, Load)", - "Data Warehousing", - "Automated Testing", - "Leadership", + "TDD (Test-Driven Development)", "Problem-Solving", - "Containerization" - ], - "careerInformation": { - "currentPosition": { "title": "Test Engineer", "company": "Microsoft" }, - "pastPositions": [ - { - "title": "Security Engineer", - "company": "Asana", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2024-10-19T16:26:15.010Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304df6" - } - }, - { - "title": "Data Engineer", - "company": "Snowflake", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2025-07-13T19:40:02.263Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304df7" - } - }, - { - "title": "Frontend Developer", - "company": "Snapchat", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2026-09-21T09:49:30.529Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304df8" - } + "Natural Language Processing", + "Software Architecture", + "Blockchain", + "Microservices", + "Robotic Process Automation", + "System Design", + "Azure", + "Performance Optimization", + "Quantum Computing", + "Data Science", + "Algorithm Design", + "iOS Development", + "Spring Boot" + ], + "careerInformation": { + "currentPosition": { "title": "Product Manager", "company": "Asana" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "Pennsylvania State University", + "degree": "High School Diploma", + "fieldOfStudy": "Sociology", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" }, - { - "title": "Automation Engineer", - "company": "Spotify", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2027-09-13T01:23:13.411Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304df9" - } + "endDate": { + "$date": "2027-12-27T23:03:27.760Z" }, - { - "title": "Technical Program Manager", - "company": "PayPal", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2027-06-10T10:20:21.994Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304dfa" - } + "_id": { + "$oid": "6674c31e95590f9fd945a0a0" } - ] - }, - "education": [ + }, { - "institution": "National University of Singapore (NUS)", - "degree": "Doctor of Education (EdD)", - "fieldOfStudy": "English Literature", + "institution": "Fudan University", + "degree": "Certificate Program", + "fieldOfStudy": "Business Administration", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-07-02T21:08:16.314Z" + "$date": "2024-12-10T07:09:04.166Z" }, "_id": { - "$oid": "66723dae8f368f285d304dfb" + "$oid": "6674c31e95590f9fd945a0a1" } }, { - "institution": "University of Virginia", - "degree": "Diploma Program", - "fieldOfStudy": "Biomedical Engineering", + "institution": "University of Vermont", + "degree": "Master's Degree", + "fieldOfStudy": "History", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-06-11T02:06:00.283Z" + "$date": "2026-05-06T12:08:45.479Z" }, "_id": { - "$oid": "66723dae8f368f285d304dfc" + "$oid": "6674c31e95590f9fd945a0a2" } } ], "projects": [ { - "name": "RecruitmentAI", - "description": "AI-powered recruitment platform for matching candidates with job opportunities.", - "link": "https://github.com/username/recruitmentai", + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", "_id": { - "$oid": "66723dae8f368f285d304dfd" + "$oid": "6674c31e95590f9fd945a0a3" } }, { - "name": "AugmentWorks", - "description": "Augmented reality application for enhancing workplace productivity and training.", - "link": "https://github.com/username/augmentworks", + "name": "EcoTech", + "description": "Environmental monitoring and conservation app with real-time data visualization.", + "link": "https://github.com/username/ecotech", + "_id": { + "$oid": "6674c31e95590f9fd945a0a4" + } + }, + { + "name": "TravelGuide", + "description": "Interactive travel guide application providing travel tips and destination insights.", + "link": "https://github.com/username/travelguide", "_id": { - "$oid": "66723dae8f368f285d304dfe" + "$oid": "6674c31e95590f9fd945a0a5" } } ], - "personalBio": "Innovative thinker with a track record of proposing and implementing creative solutions to technical challenges.", - "testimonials": [], - "socialMediaLinks": { "blog": "https://www.Israel-Canti-fake-blog.com", "other": [] }, + "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", + "testimonials": [ + { + "from": "Emily Brown", + "relation": "Client at GlobalSoft Solutions", + "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd945a0a6" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd945a0a7" + } + } + ], + "socialMediaLinks": { + "blog": "https://www.Clarette-Alcock-fake-blog.com", + "other": ["https://www.instagram.com/Clarette-Alcock-fake"] + }, "availabilityForNetworking": true, - "bootcampExperience": "App Academy", + "bootcampExperience": "Thinkful", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304df5" + "$oid": "6674c31e95590f9fd945a09f" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b12" + "$oid": "6674c31695590f9fd9459dd3" }, - "firstName": "Micky", - "lastName": "Dunseath", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "FTRI 7", + "firstName": "Lizbeth", + "lastName": "France", + "cohort": "FTRI 61", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a0a8" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dd4" + }, + "firstName": "Abramo", + "lastName": "Sparkwell", + "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "cohort": "NYC 26", "graduationYear": 2024, - "email": "mdunseath1y@miibeian.gov.cn", - "linkedInProfile": "https://www.linkedin.com/in/Micky-Dunseath-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", - "skills": ["C++"], + "email": "asparkwell1t@berkeley.edu", + "linkedInProfile": "https://www.linkedin.com/in/Abramo-Sparkwell-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": ["Leadership"], "specializations": [ - "Legacy Code Management", "Big Data", - "HTML", - "Cybersecurity", - "Parallel Computing" + "CI/CD", + "Mobile Development", + "Scrum", + "AWS", + "Cloud Computing", + "Collaboration", + "Data Visualization", + "Java", + "Containerization", + "Ruby", + "AR/VR (Augmented/Virtual Reality)", + "SQL", + "User Interface (UI) Design" ], "careerInformation": { - "currentPosition": { "title": "Software Engineer", "company": "Twilio" }, - "pastPositions": [ - { - "title": "Backend Developer", - "company": "Microsoft", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2024-10-31T10:52:23.166Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304e00" - } - }, - { - "title": "Mobile Developer", - "company": "Coinbase", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2026-06-01T00:55:49.606Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304e01" - } - }, - { - "title": "Product Manager", - "company": "Apple", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2028-04-15T09:33:09.137Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304e02" - } + "currentPosition": { "title": "Principal Software Engineer", "company": "Dropbox" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "University of Colorado Boulder", + "degree": "Bachelor's Degree", + "fieldOfStudy": "Fine Arts", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" }, - { - "title": "Web Developer", - "company": "ServiceNow", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2026-07-24T03:47:14.862Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304e03" - } + "endDate": { + "$date": "2026-05-22T16:36:53.382Z" }, - { - "title": "iOS Developer", - "company": "Twilio", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2028-03-17T09:38:20.907Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304e04" - } + "_id": { + "$oid": "6674c31e95590f9fd945a0aa" } - ] - }, - "education": [ + }, { - "institution": "University of Queensland", - "degree": "Master of Education (MEd)", - "fieldOfStudy": "Marketing", + "institution": "University of Houston", + "degree": "Bachelor of Arts (BA)", + "fieldOfStudy": "Fine Arts", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-01-20T21:26:52.904Z" + "$date": "2027-02-12T00:31:55.296Z" }, "_id": { - "$oid": "66723dae8f368f285d304e05" + "$oid": "6674c31e95590f9fd945a0ab" } } ], - "projects": [], - "personalBio": "Experienced in both frontend and backend development, with a focus on creating elegant and efficient solutions.", - "testimonials": [ + "projects": [ { - "from": "Alice Johnson", - "relation": "Manager at TechSolutions Inc.", - "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", "_id": { - "$oid": "66723dae8f368f285d304e06" + "$oid": "6674c31e95590f9fd945a0ac" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", + "_id": { + "$oid": "6674c31e95590f9fd945a0ad" + } + }, + { + "name": "EcoTech", + "description": "Environmental monitoring and conservation app with real-time data visualization.", + "link": "https://github.com/username/ecotech", "_id": { - "$oid": "66723dae8f368f285d304e07" + "$oid": "6674c31e95590f9fd945a0ae" } } ], - "socialMediaLinks": { - "blog": "https://www.Micky-Dunseath-fake-blog.com", - "other": ["https://www.instagram.com/Micky-Dunseath-fake"] - }, - "availabilityForNetworking": false, - "bootcampExperience": "Kenzie Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "66723dae8f368f285d304dff" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304b13" - }, - "firstName": "Gabi", - "lastName": "Hardcastle", - "cohort": "CTRI 62", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, + "personalBio": "Focused on delivering user-centric solutions that address real-world needs and challenges.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Abramo-Sparkwell-fake", + "blog": "https://www.Abramo-Sparkwell-fake-blog.com", + "other": ["https://www.instagram.com/Abramo-Sparkwell-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "App Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304e08" + "$oid": "6674c31e95590f9fd945a0a9" }, - "education": [], - "projects": [], - "testimonials": [], "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b14" + "$oid": "6674c31695590f9fd9459dd5" }, - "firstName": "Rakel", - "lastName": "Scothron", + "firstName": "Darb", + "lastName": "Coen", "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "cohort": "WCRI 16", + "cohort": "ECRI 37", "graduationYear": 2024, - "email": "rscothron20@yellowbook.com", - "linkedInProfile": "https://www.linkedin.com/in/Rakel-Scothron-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "email": "dcoen1u@prlog.org", + "linkedInProfile": "https://www.linkedin.com/in/Darb-Coen-fake", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", "skills": [ - "SaaS (Software as a Service)", - "Microservices", - "Pair Programming", - "Big Data", - "Graph Databases", - "Refactoring", - "Functional Programming", - "C#" - ], - "specializations": [ - "Blockchain", - "Time Management", - "Parallel Computing", - "Agile Development", - "Automated Testing", - "Containerization", "Edge Computing", - "FaaS (Function as a Service)", - "Serverless Architecture", - "Design Patterns", - "Object-Oriented Programming", - "IoT (Internet of Things)", - "WebSockets" + "Refactoring", + "User Interface (UI) Design", + "AWS", + "Problem-Solving", + "Kubernetes", + "Vue.js" ], + "specializations": ["C++", "User Experience (UX) Design", "CI/CD", "Algorithm Design", "Git"], "careerInformation": { - "currentPosition": { "title": "Embedded Systems Engineer", "company": "Spotify" }, + "currentPosition": { "title": "QA Engineer", "company": "DoorDash" }, "pastPositions": [ { - "title": "Product Manager", - "company": "DocuSign", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2028-02-17T12:27:00.589Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304e0a" - } - }, - { - "title": "QA Engineer", - "company": "Workday", + "title": "Software Architect", + "company": "Spotify", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2028-05-19T11:51:40.728Z" + "$date": "2024-09-20T08:51:23.231Z" }, "_id": { - "$oid": "66723dae8f368f285d304e0b" + "$oid": "6674c31e95590f9fd945a0b0" } }, { - "title": "Machine Learning Engineer", - "company": "Stripe", + "title": "Software Architect", + "company": "Robinhood", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-09-30T22:44:32.984Z" + "$date": "2027-07-19T23:28:24.625Z" }, "_id": { - "$oid": "66723dae8f368f285d304e0c" + "$oid": "6674c31e95590f9fd945a0b1" } } ] }, "education": [ { - "institution": "University of Queensland", - "degree": "Bachelor of Engineering (BE)", - "fieldOfStudy": "Interior Design", + "institution": "Georgetown University", + "degree": "Master of Technology (MTech)", + "fieldOfStudy": "Sociology", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-01-15T01:11:34.903Z" + "$date": "2025-10-21T03:54:18.247Z" }, "_id": { - "$oid": "66723dae8f368f285d304e0d" + "$oid": "6674c31e95590f9fd945a0b2" } - } - ], - "projects": [ + }, { - "name": "HealthMonitor", - "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", - "link": "https://github.com/username/healthmonitor", + "institution": "University of Utah", + "degree": "Doctor of Veterinary Medicine (DVM)", + "fieldOfStudy": "Biochemistry", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-03-02T07:29:31.284Z" + }, "_id": { - "$oid": "66723dae8f368f285d304e0e" + "$oid": "6674c31e95590f9fd945a0b3" } }, { - "name": "AIChatbot", - "description": "AI-powered chatbot for customer support and interactive communication.", - "link": "https://github.com/username/aichatbot", + "institution": "University of Texas at Austin", + "degree": "Doctor of Philosophy (PhD)", + "fieldOfStudy": "Accounting", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-08-12T17:24:30.841Z" + }, "_id": { - "$oid": "66723dae8f368f285d304e0f" + "$oid": "6674c31e95590f9fd945a0b4" } } ], - "personalBio": "Experienced in international collaboration and remote work, with a strong appreciation for cultural diversity.", - "testimonials": [], - "socialMediaLinks": { "other": ["https://www.instagram.com/Rakel-Scothron-fake"] }, - "availabilityForNetworking": false, - "bootcampExperience": "Flatiron School", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "66723dae8f368f285d304e09" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304b15" - }, - "firstName": "Gretel", - "lastName": "Sitford", - "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "cohort": "NYC 63", - "graduationYear": 2024, - "email": "gsitford21@tinyurl.com", - "linkedInProfile": "https://www.linkedin.com/in/Gretel-Sitford-fake", - "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", - "skills": [ - "Reactive Programming", - "Integration Testing", - "BDD (Behavior-Driven Development)", - "Google Cloud Platform", - "Blockchain", - "SQL" - ], - "specializations": [ - "Azure", - "Collaboration", - "Code Review", - "Performance Optimization", - "Ruby", - "Object-Oriented Programming", - "NoSQL", - "Continuous Deployment", - "SaaS (Software as a Service)", - "Vue.js", - "Laravel", - "Leadership", - "Technical Writing", - "DevOps" - ], - "careerInformation": { - "currentPosition": { "title": "Site Reliability Engineer", "company": "Microsoft" }, - "pastPositions": [] - }, - "education": [], "projects": [ { - "name": "CodeReview", - "description": "Collaborative code review platform with annotations and feedback features.", - "link": "https://github.com/username/codereview", + "name": "ARNavigation", + "description": "Augmented reality navigation app for real-time directions and location-based information.", + "link": "https://github.com/username/arnavigation", "_id": { - "$oid": "66723dae8f368f285d304e11" + "$oid": "6674c31e95590f9fd945a0b5" } }, { - "name": "CryptoWallet", - "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", - "link": "https://github.com/username/cryptowallet", + "name": "VirtualTour", + "description": "Virtual reality tour application for immersive travel experiences.", + "link": "https://github.com/username/virtualtour", "_id": { - "$oid": "66723dae8f368f285d304e12" + "$oid": "6674c31e95590f9fd945a0b6" } - } - ], - "personalBio": "Driven by a curiosity for innovation and a commitment to delivering high-quality software solutions.", - "testimonials": [ + }, { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", "_id": { - "$oid": "66723dae8f368f285d304e13" + "$oid": "6674c31e95590f9fd945a0b7" } }, { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "name": "SmartCity", + "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", + "link": "https://github.com/username/smartcity", "_id": { - "$oid": "66723dae8f368f285d304e14" + "$oid": "6674c31e95590f9fd945a0b8" } - }, + } + ], + "personalBio": "Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.", + "testimonials": [ { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "66723dae8f368f285d304e15" + "$oid": "6674c31e95590f9fd945a0b9" } }, { - "from": "Isabella Clark", - "relation": "HR Manager at TechFusion", - "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304e16" + "$oid": "6674c31e95590f9fd945a0ba" } } ], "socialMediaLinks": { - "twitter": "https://x.com/Gretel-Sitford-fake", - "blog": "https://www.Gretel-Sitford-fake-blog.com", - "other": [] + "twitter": "https://x.com/Darb-Coen-fake", + "other": ["https://www.instagram.com/Darb-Coen-fake"] }, - "availabilityForNetworking": true, - "bootcampExperience": "Makers Academy", + "availabilityForNetworking": false, + "bootcampExperience": "Flatiron School", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304e10" + "$oid": "6674c31e95590f9fd945a0af" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b16" + "$oid": "6674c31695590f9fd9459dd6" }, - "firstName": "Rosalinda", - "lastName": "Naisby", - "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "cohort": "PTRI 50", + "firstName": "Gusty", + "lastName": "Besnardeau", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "cohort": "CTRI 30", "graduationYear": 2024, - "email": "rnaisby22@nationalgeographic.com", - "linkedInProfile": "https://www.linkedin.com/in/Rosalinda-Naisby-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", - "skills": [ - "Technical Writing", - "Critical Thinking", - "Robotic Process Automation", - "HTML", - "Design Patterns", - "Reactive Programming", - "Docker", - "Mobile Development", - "WebSockets", - "Deep Learning", - "Automated Testing", - "PaaS (Platform as a Service)", - "Object-Oriented Programming" - ], - "specializations": [ - "ASP.NET", - "RESTful APIs", - "Critical Thinking", - "Parallel Computing", - "Django", - "DevOps", - "C++", - "Software Architecture", - "Concurrency", - "Git", - "Python", - "Technical Writing", - "User Experience (UX) Design", - "Quantum Computing", - "CI/CD", - "Android Development", - "Unit Testing", - "Legacy Code Management", - "Containerization" - ], + "email": "gbesnardeau1v@themeforest.net", + "linkedInProfile": "https://www.linkedin.com/in/Gusty-Besnardeau-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": [], + "specializations": [], "careerInformation": { - "currentPosition": { "title": "Product Manager", "company": "HubSpot" }, - "pastPositions": [] + "currentPosition": { "title": "Data Engineer", "company": "Atlassian" }, + "pastPositions": [ + { + "title": "Software Developer", + "company": "Facebook", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-12-24T10:46:01.539Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0bc" + } + }, + { + "title": "Backend Developer", + "company": "Activision Blizzard", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-07-28T03:02:03.937Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0bd" + } + }, + { + "title": "Cloud Engineer", + "company": "Stripe", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-09-07T19:01:30.142Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0be" + } + } + ] }, "education": [ { - "institution": "University of Cambridge", - "degree": "Master of Technology (MTech)", - "fieldOfStudy": "Sociology", + "institution": "Columbia University", + "degree": "Bachelor of Arts (BA)", + "fieldOfStudy": "Pharmacy", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2028-02-14T20:15:12.901Z" + "$date": "2026-08-03T21:23:08.155Z" }, "_id": { - "$oid": "66723dae8f368f285d304e18" + "$oid": "6674c31e95590f9fd945a0bf" } } ], "projects": [ { - "name": "CodeBot", - "description": "Automated code generation tool using AI for faster development cycles.", - "link": "https://github.com/username/codebot", - "_id": { - "$oid": "66723dae8f368f285d304e19" - } - }, - { - "name": "CodeAnalyzer", - "description": "Static code analysis tool for detecting bugs and code quality improvements.", - "link": "https://github.com/username/codeanalyzer", + "name": "HealthMonitor", + "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", + "link": "https://github.com/username/healthmonitor", "_id": { - "$oid": "66723dae8f368f285d304e1a" + "$oid": "6674c31e95590f9fd945a0c0" } }, { - "name": "HealthLink", - "description": "Telemedicine platform connecting patients with healthcare providers remotely.", - "link": "https://github.com/username/healthlink", + "name": "AIChatbot", + "description": "AI-powered chatbot for customer support and interactive communication.", + "link": "https://github.com/username/aichatbot", "_id": { - "$oid": "66723dae8f368f285d304e1b" + "$oid": "6674c31e95590f9fd945a0c1" } }, { - "name": "CryptoWallet", - "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", - "link": "https://github.com/username/cryptowallet", + "name": "AIAssistant", + "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", + "link": "https://github.com/username/aiassistant", "_id": { - "$oid": "66723dae8f368f285d304e1c" + "$oid": "6674c31e95590f9fd945a0c2" } }, { - "name": "AIChatbot", - "description": "AI-powered chatbot for customer support and interactive communication.", - "link": "https://github.com/username/aichatbot", + "name": "VirtualAssistant", + "description": "Virtual assistant software for voice command-based tasks and personal assistance.", + "link": "https://github.com/username/virtualassistant", "_id": { - "$oid": "66723dae8f368f285d304e1d" + "$oid": "6674c31e95590f9fd945a0c3" } } ], - "personalBio": "Dedicated to upholding best practices in software engineering, including testing, code reviews, and version control.", + "personalBio": "Committed to writing clean, maintainable code that meets rigorous performance standards.", "testimonials": [ { - "from": "Alice Johnson", - "relation": "Manager at TechSolutions Inc.", - "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", "_id": { - "$oid": "66723dae8f368f285d304e1e" + "$oid": "6674c31e95590f9fd945a0c4" } }, { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", "_id": { - "$oid": "66723dae8f368f285d304e1f" + "$oid": "6674c31e95590f9fd945a0c5" } }, { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "66723dae8f368f285d304e20" + "$oid": "6674c31e95590f9fd945a0c6" } } ], "socialMediaLinks": { - "twitter": "https://x.com/Rosalinda-Naisby-fake", - "blog": "https://www.Rosalinda-Naisby-fake-blog.com", - "other": ["https://www.instagram.com/Rosalinda-Naisby-fake"] + "twitter": "https://x.com/Gusty-Besnardeau-fake", + "blog": "https://www.Gusty-Besnardeau-fake-blog.com", + "other": ["https://www.instagram.com/Gusty-Besnardeau-fake"] }, - "availabilityForNetworking": true, - "bootcampExperience": "Thinkful", + "availabilityForNetworking": false, + "bootcampExperience": "App Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304e17" + "$oid": "6674c31e95590f9fd945a0bb" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b17" + "$oid": "6674c31695590f9fd9459dd7" }, - "firstName": "Thaddus", - "lastName": "Waddell", - "cohort": "CTRI 33", + "firstName": "Randy", + "lastName": "Verriour", + "cohort": "LA 41", "skills": [], "specializations": [], "careerInformation": { "pastPositions": [] }, @@ -9701,7 +9034,7 @@ "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304e21" + "$oid": "6674c31e95590f9fd945a0c7" }, "education": [], "projects": [], @@ -9711,1680 +9044,1705 @@ }, { "user": { - "$oid": "66723da68f368f285d304b18" + "$oid": "6674c31695590f9fd9459dd8" }, - "firstName": "Nadia", - "lastName": "Zeale", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "ECRI 48", + "firstName": "Israel", + "lastName": "Canti", + "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "cohort": "FTRI 66", "graduationYear": 2024, - "email": "nzeale24@google.ru", - "linkedInProfile": "https://www.linkedin.com/in/Nadia-Zeale-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "email": "icanti1x@businesswire.com", + "linkedInProfile": "https://www.linkedin.com/in/Israel-Canti-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", "skills": [ - "Data Warehousing", - "Vue.js", "Software Architecture", - "Data Visualization", + "Flask", + "Algorithm Design", "Legacy Code Management", - "Version Control", - "Azure", - "Leadership", + "Laravel", + "Java", + "NoSQL", + "GraphQL", + "AWS", "Node.js", - "C#", - "Agile Development", - "Database Design", - "FaaS (Function as a Service)", - "JavaScript", - "Concurrency" + "Concurrency", + "DevOps", + "Docker", + "Performance Optimization", + "React", + "User Interface (UI) Design", + "IoT (Internet of Things)", + "Edge Computing" ], "specializations": [ - "Reactive Programming", - "Git", - "Graph Databases", - "System Design", - "Edge Computing", + "Spring Boot", + "API Development", + "WebSockets", + "Node.js", + "Kubernetes", + "Object-Oriented Programming", + "Algorithm Design", + "Machine Learning", + "Mobile Development", + "Critical Thinking", + "Angular", "FaaS (Function as a Service)", - "Scrum" + "Big Data", + "Integration Testing", + "Natural Language Processing", + "Automated Testing" ], "careerInformation": { - "currentPosition": { "title": "Junior Software Engineer", "company": "Atlassian" }, + "currentPosition": { "title": "Lead Software Engineer", "company": "IBM" }, "pastPositions": [ - { - "title": "Technical Lead", - "company": "Spotify", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2027-12-29T07:40:07.858Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304e23" - } - }, - { - "title": "Backend Developer", - "company": "Google", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2025-02-07T18:10:08.607Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304e24" - } - }, - { - "title": "Software Developer", - "company": "Snapchat", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2026-02-22T22:09:51.929Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304e25" - } - }, { "title": "QA Engineer", - "company": "Apple", + "company": "Activision Blizzard", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-12-20T12:54:13.705Z" + "$date": "2027-10-01T04:30:19.856Z" }, "_id": { - "$oid": "66723dae8f368f285d304e26" + "$oid": "6674c31e95590f9fd945a0c9" } }, { - "title": "Web Developer", - "company": "Lyft", + "title": "Principal Software Engineer", + "company": "PayPal", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-03-24T00:34:39.656Z" + "$date": "2027-02-07T08:04:25.685Z" }, "_id": { - "$oid": "66723dae8f368f285d304e27" + "$oid": "6674c31e95590f9fd945a0ca" } } ] }, "education": [ { - "institution": "University of Delaware", - "degree": "Certificate Program", - "fieldOfStudy": "Political Science", + "institution": "California Institute of Technology (Caltech)", + "degree": "Bachelor of Fine Arts (BFA)", + "fieldOfStudy": "Marketing", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-04-30T01:56:54.384Z" + "$date": "2028-06-19T23:24:51.463Z" }, "_id": { - "$oid": "66723dae8f368f285d304e28" + "$oid": "6674c31e95590f9fd945a0cb" } - }, + } + ], + "projects": [ { - "institution": "University of Connecticut", - "degree": "Master of Fine Arts (MFA)", - "fieldOfStudy": "Finance", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2026-07-08T20:26:58.173Z" - }, + "name": "SmartGrid", + "description": "Smart grid technology for efficient energy distribution and consumption.", + "link": "https://github.com/username/smartgrid", "_id": { - "$oid": "66723dae8f368f285d304e29" + "$oid": "6674c31e95590f9fd945a0cc" } - } - ], - "projects": [], - "personalBio": "Committed to writing clean, maintainable code that meets rigorous performance standards.", - "testimonials": [ + }, { - "from": "Noah Rodriguez", - "relation": "Product Owner at AgileSoft", - "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "name": "AIAssistant", + "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", + "link": "https://github.com/username/aiassistant", "_id": { - "$oid": "66723dae8f368f285d304e2a" + "$oid": "6674c31e95590f9fd945a0cd" } }, { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", "_id": { - "$oid": "66723dae8f368f285d304e2b" + "$oid": "6674c31e95590f9fd945a0ce" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "name": "SecureChat", + "description": "End-to-end encrypted messaging app ensuring user privacy and security.", + "link": "https://github.com/username/securechat", "_id": { - "$oid": "66723dae8f368f285d304e2c" + "$oid": "6674c31e95590f9fd945a0cf" } }, { - "from": "Sophie Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", "_id": { - "$oid": "66723dae8f368f285d304e2d" + "$oid": "6674c31e95590f9fd945a0d0" } } ], - "socialMediaLinks": { "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "Le Wagon", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "66723dae8f368f285d304e22" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304b19" + "personalBio": "Experienced in rapid prototyping and iterative development methodologies.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Israel-Canti-fake", + "other": ["https://www.instagram.com/Israel-Canti-fake"] }, - "firstName": "Emmett", - "lastName": "Buckell", - "cohort": "ECRI 15", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Makers Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304e2e" + "$oid": "6674c31e95590f9fd945a0c8" }, - "education": [], - "projects": [], - "testimonials": [], "blogOrWriting": [], "__v": 0 }, { - "user": { - "$oid": "66723da68f368f285d304b1a" - }, - "firstName": "Lavinia", - "lastName": "Baume", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "ECRI 27", + "user": { + "$oid": "6674c31695590f9fd9459dd9" + }, + "firstName": "Micky", + "lastName": "Dunseath", + "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "cohort": "PTRI 74", "graduationYear": 2024, - "email": "lbaume26@tinyurl.com", - "linkedInProfile": "https://www.linkedin.com/in/Lavinia-Baume-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "email": "mdunseath1y@miibeian.gov.cn", + "linkedInProfile": "https://www.linkedin.com/in/Micky-Dunseath-fake", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", "skills": [ - "PaaS (Platform as a Service)", - "ASP.NET", - "Docker", + "Communication Skills", + "Automated Testing", + "Ruby", + "Code Review", + "Concurrency", + "SaaS (Software as a Service)", + "React", + "Scrum" + ], + "specializations": [ + "C#", "API Development", - "CI/CD", - "RESTful APIs" + "ASP.NET", + "Python", + "Deep Learning", + "Google Cloud Platform", + "User Interface (UI) Design", + "Collaboration", + "Natural Language Processing", + "Infrastructure as Code" ], - "specializations": ["Data Visualization", "Angular"], "careerInformation": { - "currentPosition": { "title": "Web Developer", "company": "EA (Electronic Arts)" }, + "currentPosition": { "title": "Android Developer", "company": "Workday" }, "pastPositions": [ { - "title": "Software Engineer", - "company": "EA (Electronic Arts)", + "title": "Site Reliability Engineer", + "company": "Twitter", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-12-17T02:16:39.789Z" + "$date": "2025-08-14T16:26:09.484Z" }, "_id": { - "$oid": "66723dae8f368f285d304e30" + "$oid": "6674c31e95590f9fd945a0d2" } }, { - "title": "Cloud Engineer", - "company": "NVIDIA", + "title": "Principal Software Engineer", + "company": "Facebook", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-07-24T16:25:08.598Z" + "$date": "2025-06-27T21:34:27.658Z" }, "_id": { - "$oid": "66723dae8f368f285d304e31" + "$oid": "6674c31e95590f9fd945a0d3" } }, { - "title": "Site Reliability Engineer", - "company": "Square", + "title": "Software Engineer", + "company": "VMware", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-02-11T21:12:00.811Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0d4" + } + }, + { + "title": "Technical Program Manager", + "company": "Zoom", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2024-11-10T04:01:43.099Z" + "$date": "2025-05-31T15:46:28.271Z" }, "_id": { - "$oid": "66723dae8f368f285d304e32" + "$oid": "6674c31e95590f9fd945a0d5" } }, { "title": "DevOps Engineer", - "company": "Cisco", + "company": "Robinhood", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-05-13T09:23:30.096Z" + "$date": "2026-06-23T11:20:45.983Z" }, "_id": { - "$oid": "66723dae8f368f285d304e33" + "$oid": "6674c31e95590f9fd945a0d6" } } ] }, "education": [ { - "institution": "Case Western Reserve University", - "degree": "Master of Arts (MA)", - "fieldOfStudy": "Journalism", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2025-04-12T12:07:33.532Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304e34" - } - }, - { - "institution": "Indiana University Bloomington", - "degree": "Diploma Program", - "fieldOfStudy": "Mechanical Engineering", + "institution": "California Institute of Technology (Caltech)", + "degree": "Master of Public Health (MPH)", + "fieldOfStudy": "Statistics", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-07-22T02:38:34.507Z" + "$date": "2025-11-24T04:15:28.305Z" }, "_id": { - "$oid": "66723dae8f368f285d304e35" + "$oid": "6674c31e95590f9fd945a0d7" } } ], "projects": [ { - "name": "SmartHomeHub", - "description": "Centralized home automation system integrating IoT devices for smart living.", - "link": "https://github.com/username/smarthomehub", - "_id": { - "$oid": "66723dae8f368f285d304e36" - } - }, - { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", - "_id": { - "$oid": "66723dae8f368f285d304e37" - } - }, - { - "name": "RoboTrader", - "description": "Algorithmic trading platform for automated stock market analysis and trading.", - "link": "https://github.com/username/robotrader", - "_id": { - "$oid": "66723dae8f368f285d304e38" - } - } - ], - "personalBio": "Detail-oriented developer with a strong foundation in algorithms and data structures.", - "testimonials": [ - { - "from": "Alice Johnson", - "relation": "Manager at TechSolutions Inc.", - "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", - "_id": { - "$oid": "66723dae8f368f285d304e39" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "66723dae8f368f285d304e3a" - } - }, - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "66723dae8f368f285d304e3b" - } - }, - { - "from": "Emma Thompson", - "relation": "Manager at DataTech Solutions", - "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + "name": "AIChatbot", + "description": "AI-powered chatbot for customer support and interactive communication.", + "link": "https://github.com/username/aichatbot", "_id": { - "$oid": "66723dae8f368f285d304e3c" + "$oid": "6674c31e95590f9fd945a0d8" } }, { - "from": "Daniel Lee", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", "_id": { - "$oid": "66723dae8f368f285d304e3d" + "$oid": "6674c31e95590f9fd945a0d9" } } ], - "socialMediaLinks": { "other": ["https://www.instagram.com/Lavinia-Baume-fake"] }, + "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Micky-Dunseath-fake", + "other": ["https://www.instagram.com/Micky-Dunseath-fake"] + }, "availabilityForNetworking": true, - "bootcampExperience": "CareerFoundry", + "bootcampExperience": "Springboard", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304e2f" + "$oid": "6674c31e95590f9fd945a0d1" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b1b" + "$oid": "6674c31695590f9fd9459dda" }, - "firstName": "Janine", - "lastName": "Kitt", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "CTRI 15", + "firstName": "Gabi", + "lastName": "Hardcastle", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "LA 66", "graduationYear": 2024, - "email": "jkitt27@wsj.com", - "linkedInProfile": "https://www.linkedin.com/in/Janine-Kitt-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", - "skills": ["DevOps", "Scrum", "User Interface (UI) Design", "Git"], - "specializations": ["Laravel", "Agile Development"], + "email": "ghardcastle1z@weebly.com", + "linkedInProfile": "https://www.linkedin.com/in/Gabi-Hardcastle-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": ["Design Patterns", "User Experience (UX) Design", "SaaS (Software as a Service)"], + "specializations": ["CI/CD", "iOS Development"], "careerInformation": { - "currentPosition": { "title": "Junior Software Engineer", "company": "Atlassian" }, + "currentPosition": { "title": "Lead Software Engineer", "company": "Stripe" }, "pastPositions": [ { - "title": "DevOps Engineer", - "company": "Adobe", + "title": "Software Developer", + "company": "PayPal", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2024-12-13T11:32:23.164Z" + "$date": "2027-09-02T10:15:10.021Z" }, "_id": { - "$oid": "66723dae8f368f285d304e3f" + "$oid": "6674c31e95590f9fd945a0db" } }, { - "title": "Junior Software Engineer", - "company": "Airbnb", + "title": "Data Engineer", + "company": "Cisco", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-02-06T22:38:05.187Z" + "$date": "2027-06-12T06:58:29.263Z" }, "_id": { - "$oid": "66723dae8f368f285d304e40" + "$oid": "6674c31e95590f9fd945a0dc" } }, { - "title": "Embedded Systems Engineer", - "company": "Facebook", + "title": "Software Developer", + "company": "HubSpot", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-06-07T02:51:43.401Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0dd" + } + }, + { + "title": "Backend Developer", + "company": "Shopify", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-01-20T10:41:41.676Z" + "$date": "2027-10-22T16:04:43.723Z" }, "_id": { - "$oid": "66723dae8f368f285d304e41" + "$oid": "6674c31e95590f9fd945a0de" } } ] }, "education": [ { - "institution": "Massachusetts Institute of Technology (MIT)", - "degree": "Doctoral Degree", - "fieldOfStudy": "Computer Science", + "institution": "University of Alberta", + "degree": "Associate Degree", + "fieldOfStudy": "Civil Engineering", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-03-12T21:05:30.881Z" + "$date": "2026-01-28T16:03:38.497Z" }, "_id": { - "$oid": "66723dae8f368f285d304e42" + "$oid": "6674c31e95590f9fd945a0df" } } ], "projects": [ - { - "name": "CodeReview", - "description": "Collaborative code review platform with annotations and feedback features.", - "link": "https://github.com/username/codereview", - "_id": { - "$oid": "66723dae8f368f285d304e43" - } - }, { "name": "AIAssistant", "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", "link": "https://github.com/username/aiassistant", "_id": { - "$oid": "66723dae8f368f285d304e44" + "$oid": "6674c31e95590f9fd945a0e0" } }, { - "name": "JobFinder", - "description": "Job search and application management platform with personalized recommendations.", - "link": "https://github.com/username/jobfinder", - "_id": { - "$oid": "66723dae8f368f285d304e45" - } - } - ], - "personalBio": "Skilled in working with cross-functional teams to deliver innovative software solutions that exceed expectations.", - "testimonials": [ - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", "_id": { - "$oid": "66723dae8f368f285d304e46" + "$oid": "6674c31e95590f9fd945a0e1" } }, { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "name": "GenomeQuest", + "description": "Genomic data analysis tool for researchers and bioinformaticians.", + "link": "https://github.com/username/genomequest", "_id": { - "$oid": "66723dae8f368f285d304e47" + "$oid": "6674c31e95590f9fd945a0e2" } - }, + } + ], + "personalBio": "Adept at optimizing SQL and NoSQL databases for performance and scalability.", + "testimonials": [ { - "from": "Alice Johnson", - "relation": "Manager at TechSolutions Inc.", - "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", "_id": { - "$oid": "66723dae8f368f285d304e48" + "$oid": "6674c31e95590f9fd945a0e3" } }, { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "from": "Lucas Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", "_id": { - "$oid": "66723dae8f368f285d304e49" + "$oid": "6674c31e95590f9fd945a0e4" } }, { - "from": "Isabella Clark", - "relation": "HR Manager at TechFusion", - "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "66723dae8f368f285d304e4a" + "$oid": "6674c31e95590f9fd945a0e5" } } ], - "socialMediaLinks": { - "blog": "https://www.Janine-Kitt-fake-blog.com", - "other": ["https://www.instagram.com/Janine-Kitt-fake"] + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "The Tech Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a0da" }, - "availabilityForNetworking": false, - "bootcampExperience": "General Assembly", + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459ddb" + }, + "firstName": "Rakel", + "lastName": "Scothron", + "cohort": "FTRI 9", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304e3e" + "$oid": "6674c31e95590f9fd945a0e6" }, + "education": [], + "projects": [], + "testimonials": [], "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b1c" + "$oid": "6674c31695590f9fd9459ddc" }, - "firstName": "Beatrix", - "lastName": "Healey", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "WCRI 75", + "firstName": "Gretel", + "lastName": "Sitford", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "NYC 80", "graduationYear": 2024, - "email": "bhealey28@amazon.co.jp", - "linkedInProfile": "https://www.linkedin.com/in/Beatrix-Healey-fake", - "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", + "email": "gsitford21@tinyurl.com", + "linkedInProfile": "https://www.linkedin.com/in/Gretel-Sitford-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", "skills": [ - "Communication Skills", - "Infrastructure as Code", "Flask", - "Docker", - "Performance Optimization", - "Python", - "Agile Development", - "Laravel", - "PaaS (Platform as a Service)", - "Natural Language Processing", + "Communication Skills", "Software Architecture", - "RESTful APIs", - "API Integration", - "Robotic Process Automation" - ], - "specializations": [ + "Microservices", "Scrum", - "System Design", - "JavaScript", - "Continuous Deployment", + "Django", + "Graph Databases", + "Critical Thinking", + "React", + "ASP.NET", + "Agile Development", "IoT (Internet of Things)", - "GraphQL", - "Containerization", - "Technical Writing", - "DevOps" + "DevOps", + "Big Data", + "Angular" ], + "specializations": ["IoT (Internet of Things)", "JavaScript", "Code Review", "Time Management"], "careerInformation": { - "currentPosition": { "title": "Product Manager", "company": "Twilio" }, + "currentPosition": { "title": "Backend Developer", "company": "Apple" }, "pastPositions": [ { - "title": "Android Developer", - "company": "Apple", + "title": "Test Engineer", + "company": "EA (Electronic Arts)", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-12-22T06:37:45.681Z" + "$date": "2025-06-28T04:55:04.606Z" }, "_id": { - "$oid": "66723dae8f368f285d304e4c" + "$oid": "6674c31e95590f9fd945a0e8" } }, { - "title": "Software Architect", - "company": "DocuSign", + "title": "Technical Lead", + "company": "DoorDash", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2024-11-27T20:27:35.174Z" + "$date": "2025-09-12T18:13:38.404Z" }, "_id": { - "$oid": "66723dae8f368f285d304e4d" + "$oid": "6674c31e95590f9fd945a0e9" } }, { - "title": "AI Engineer", - "company": "HubSpot", + "title": "Embedded Systems Engineer", + "company": "Qualcomm", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-12-02T03:42:55.342Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0ea" + } + }, + { + "title": "Mobile Developer", + "company": "Red Hat", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-11-08T14:43:26.248Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0eb" + } + }, + { + "title": "Security Engineer", + "company": "Microsoft", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-01-20T13:30:50.183Z" + "$date": "2027-08-12T02:21:12.750Z" }, "_id": { - "$oid": "66723dae8f368f285d304e4e" + "$oid": "6674c31e95590f9fd945a0ec" } } ] }, "education": [ { - "institution": "University of Illinois at Urbana-Champaign", - "degree": "Continuing Education", - "fieldOfStudy": "International Relations", + "institution": "Princeton University", + "degree": "Master of Social Work (MSW)", + "fieldOfStudy": "Statistics", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-09-19T00:16:47.113Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0ed" + } + }, + { + "institution": "University of Vermont", + "degree": "Master of Technology (MTech)", + "fieldOfStudy": "Architecture", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-02-01T16:38:39.986Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0ee" + } + }, + { + "institution": "Purdue University", + "degree": "Bachelor of Fine Arts (BFA)", + "fieldOfStudy": "Biomedical Engineering", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-03-02T09:45:38.483Z" + "$date": "2026-03-04T22:02:55.858Z" }, "_id": { - "$oid": "66723dae8f368f285d304e4f" + "$oid": "6674c31e95590f9fd945a0ef" } } ], "projects": [ { - "name": "SmartHomeHub", - "description": "Centralized home automation system integrating IoT devices for smart living.", - "link": "https://github.com/username/smarthomehub", + "name": "CodeBot", + "description": "Automated code generation tool using AI for faster development cycles.", + "link": "https://github.com/username/codebot", "_id": { - "$oid": "66723dae8f368f285d304e50" + "$oid": "6674c31e95590f9fd945a0f0" } }, { - "name": "TourismApp", - "description": "Mobile application for tourists providing travel guides and local recommendations.", - "link": "https://github.com/username/tourismapp", + "name": "CryptoTrack", + "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", + "link": "https://github.com/username/cryptotrack", "_id": { - "$oid": "66723dae8f368f285d304e51" + "$oid": "6674c31e95590f9fd945a0f1" } } ], - "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", + "personalBio": "Proactive learner constantly exploring emerging technologies and trends in the software industry.", "testimonials": [ { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "from": "Lucas Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", "_id": { - "$oid": "66723dae8f368f285d304e52" + "$oid": "6674c31e95590f9fd945a0f2" } }, { - "from": "Emily Brown", - "relation": "Client at GlobalSoft Solutions", - "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "66723dae8f368f285d304e53" + "$oid": "6674c31e95590f9fd945a0f3" } }, { - "from": "Ethan Taylor", - "relation": "Co-founder at StartupX", - "text": "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304e54" + "$oid": "6674c31e95590f9fd945a0f4" } } ], - "socialMediaLinks": { - "twitter": "https://x.com/Beatrix-Healey-fake", - "blog": "https://www.Beatrix-Healey-fake-blog.com", - "other": ["https://www.instagram.com/Beatrix-Healey-fake"] + "socialMediaLinks": { "other": ["https://www.instagram.com/Gretel-Sitford-fake"] }, + "availabilityForNetworking": true, + "bootcampExperience": "CareerFoundry", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a0e7" }, - "availabilityForNetworking": false, - "bootcampExperience": "Coding Dojo", + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459ddd" + }, + "firstName": "Rosalinda", + "lastName": "Naisby", + "cohort": "LA 50", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304e4b" + "$oid": "6674c31e95590f9fd945a0f5" }, + "education": [], + "projects": [], + "testimonials": [], "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b1d" + "$oid": "6674c31695590f9fd9459dde" }, - "firstName": "Simone", - "lastName": "Buske", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "NYC 29", + "firstName": "Thaddus", + "lastName": "Waddell", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "ECRI 12", "graduationYear": 2024, - "email": "sbuske29@soundcloud.com", - "linkedInProfile": "https://www.linkedin.com/in/Simone-Buske-fake", - "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", - "skills": [ - "Reactive Programming", - "DevOps", - "Event-Driven Architecture", - "Critical Thinking", + "email": "twaddell23@nymag.com", + "linkedInProfile": "https://www.linkedin.com/in/Thaddus-Waddell-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [], + "specializations": [ + "Node.js", + "CSS", + "Mobile Development", "GraphQL", - "RESTful APIs", - "Git", - "Continuous Deployment", "Machine Learning", - "Agile Development" - ], - "specializations": [ - "Google Cloud Platform", - "Quantum Computing", - "TDD (Test-Driven Development)", - "Technical Writing", - "Data Warehousing", - "Serverless Architecture", - "Java", - "Communication Skills", - "CI/CD", + "ETL (Extract, Transform, Load)", + "Cloud Computing", + "Blockchain", + "Flask", + "User Experience (UX) Design", "Refactoring", - "Cybersecurity" + "Edge Computing", + "Docker", + "Problem-Solving", + "Quantum Computing", + "iOS Development", + "Vue.js", + "SaaS (Software as a Service)" ], "careerInformation": { - "currentPosition": { "title": "Web Developer", "company": "Apple" }, + "currentPosition": { "title": "DevOps Engineer", "company": "Pinterest" }, "pastPositions": [ + { + "title": "Cloud Engineer", + "company": "Palantir", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-09-25T01:10:57.865Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0f7" + } + }, { "title": "Software Engineer", - "company": "NVIDIA", + "company": "Pinterest", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-03-05T01:18:32.265Z" + "$date": "2025-04-23T18:23:25.033Z" }, "_id": { - "$oid": "66723dae8f368f285d304e56" + "$oid": "6674c31e95590f9fd945a0f8" } }, { - "title": "Data Scientist", - "company": "Salesforce", + "title": "Software Developer", + "company": "VMware", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2027-06-07T12:52:46.217Z" + "$date": "2024-09-28T23:10:05.316Z" }, "_id": { - "$oid": "66723dae8f368f285d304e57" + "$oid": "6674c31e95590f9fd945a0f9" } }, { - "title": "Frontend Developer", - "company": "Lyft", + "title": "Principal Software Engineer", + "company": "Robinhood", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2028-05-04T22:00:37.028Z" + "$date": "2026-07-27T04:48:06.829Z" }, "_id": { - "$oid": "66723dae8f368f285d304e58" + "$oid": "6674c31e95590f9fd945a0fa" } } ] }, "education": [ { - "institution": "Shanghai Jiao Tong University", - "degree": "Master of Business Administration (MBA)", - "fieldOfStudy": "Psychology", + "institution": "University of Oregon", + "degree": "Doctor of Dental Surgery (DDS)", + "fieldOfStudy": "Linguistics", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2024-11-16T00:05:57.947Z" + "$date": "2024-07-23T21:06:32.270Z" }, "_id": { - "$oid": "66723dae8f368f285d304e59" + "$oid": "6674c31e95590f9fd945a0fb" } }, { - "institution": "University of Toronto", - "degree": "Doctor of Dental Medicine (DMD)", - "fieldOfStudy": "Civil Engineering", + "institution": "University of Massachusetts Amherst", + "degree": "Doctor of Veterinary Medicine (DVM)", + "fieldOfStudy": "Electrical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-12-10T03:54:17.766Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0fc" + } + }, + { + "institution": "Australian National University", + "degree": "Master of Business Administration (MBA)", + "fieldOfStudy": "Psychology", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2024-11-25T08:11:41.585Z" + "$date": "2025-06-09T16:17:29.620Z" }, "_id": { - "$oid": "66723dae8f368f285d304e5a" + "$oid": "6674c31e95590f9fd945a0fd" + } + } + ], + "projects": [ + { + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", + "_id": { + "$oid": "6674c31e95590f9fd945a0fe" + } + }, + { + "name": "CodeReview", + "description": "Collaborative code review platform with annotations and feedback features.", + "link": "https://github.com/username/codereview", + "_id": { + "$oid": "6674c31e95590f9fd945a0ff" + } + }, + { + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", + "_id": { + "$oid": "6674c31e95590f9fd945a100" } }, { - "institution": "University of Tennessee", - "degree": "Bachelor of Arts (BA)", - "fieldOfStudy": "Film Studies", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2026-02-10T06:53:04.318Z" - }, + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", + "_id": { + "$oid": "6674c31e95590f9fd945a101" + } + }, + { + "name": "TourismApp", + "description": "Mobile application for tourists providing travel guides and local recommendations.", + "link": "https://github.com/username/tourismapp", "_id": { - "$oid": "66723dae8f368f285d304e5b" + "$oid": "6674c31e95590f9fd945a102" } } ], - "projects": [ + "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", + "testimonials": [ { - "name": "AIAssistant", - "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", - "link": "https://github.com/username/aiassistant", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "66723dae8f368f285d304e5c" + "$oid": "6674c31e95590f9fd945a103" } }, { - "name": "SecureChat", - "description": "End-to-end encrypted messaging app ensuring user privacy and security.", - "link": "https://github.com/username/securechat", + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304e5d" + "$oid": "6674c31e95590f9fd945a104" } }, { - "name": "TourismApp", - "description": "Mobile application for tourists providing travel guides and local recommendations.", - "link": "https://github.com/username/tourismapp", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "66723dae8f368f285d304e5e" + "$oid": "6674c31e95590f9fd945a105" } }, { - "name": "AIAssistant", - "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", - "link": "https://github.com/username/aiassistant", + "from": "Liam Harris", + "relation": "Lead Developer at CloudTech", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "66723dae8f368f285d304e5f" + "$oid": "6674c31e95590f9fd945a106" } } ], - "personalBio": "Skilled in UX/UI design principles, with a focus on creating intuitive and visually appealing interfaces.", - "testimonials": [], - "socialMediaLinks": { "blog": "https://www.Simone-Buske-fake-blog.com", "other": [] }, + "socialMediaLinks": { + "twitter": "https://x.com/Thaddus-Waddell-fake", + "blog": "https://www.Thaddus-Waddell-fake-blog.com", + "other": ["https://www.instagram.com/Thaddus-Waddell-fake"] + }, "availabilityForNetworking": true, - "bootcampExperience": "Flatiron School", + "bootcampExperience": "Galvanize", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304e55" + "$oid": "6674c31e95590f9fd945a0f6" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b1e" + "$oid": "6674c31695590f9fd9459ddf" }, - "firstName": "Cristine", - "lastName": "Gaddesby", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "CTRI 26", + "firstName": "Nadia", + "lastName": "Zeale", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "PTRI 95", "graduationYear": 2024, - "email": "cgaddesby2a@senate.gov", - "linkedInProfile": "https://www.linkedin.com/in/Cristine-Gaddesby-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "email": "nzeale24@google.ru", + "linkedInProfile": "https://www.linkedin.com/in/Nadia-Zeale-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", "skills": [ "DevOps", - "Database Design", - "System Design", - "Git", - "AWS", - "Concurrency", - "Deep Learning", - "Vue.js", - "Time Management", - "Algorithm Design" + "Infrastructure as Code", + "Cybersecurity", + "Edge Computing", + "Design Patterns", + "Unit Testing", + "Object-Oriented Programming", + "Serverless Architecture", + "Event-Driven Architecture" ], "specializations": [ - "System Design", - "Containerization", - "C++", - "Project Management", - "Leadership", - "Parallel Computing", - "Data Visualization", - "Natural Language Processing", - "Kubernetes", + "TDD (Test-Driven Development)", "User Interface (UI) Design", - "Integration Testing", - "Spring Boot", - "FaaS (Function as a Service)", - "Critical Thinking", - "Functional Programming", - "IoT (Internet of Things)" + "Design Patterns", + "Microservices", + "Infrastructure as Code", + "C#", + "IoT (Internet of Things)", + "Communication Skills", + "Flask" ], "careerInformation": { - "currentPosition": { "title": "Android Developer", "company": "Atlassian" }, + "currentPosition": { "title": "Product Manager", "company": "Robinhood" }, "pastPositions": [ { - "title": "Junior Software Engineer", - "company": "Zoom", + "title": "Machine Learning Engineer", + "company": "Coinbase", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2028-03-15T21:51:03.545Z" + "$date": "2028-05-10T20:01:14.354Z" }, "_id": { - "$oid": "66723dae8f368f285d304e61" + "$oid": "6674c31e95590f9fd945a108" } }, { - "title": "Lead Software Engineer", - "company": "PayPal", + "title": "Machine Learning Engineer", + "company": "ServiceNow", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2024-11-23T02:42:01.707Z" + "$date": "2026-08-01T09:08:05.300Z" }, "_id": { - "$oid": "66723dae8f368f285d304e62" + "$oid": "6674c31e95590f9fd945a109" } }, { - "title": "Data Engineer", - "company": "Stripe", + "title": "AI Engineer", + "company": "Slack", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2025-05-05T13:16:13.643Z" + "$date": "2027-09-01T10:08:57.547Z" }, "_id": { - "$oid": "66723dae8f368f285d304e63" + "$oid": "6674c31e95590f9fd945a10a" } }, { - "title": "Software Architect", - "company": "Okta", + "title": "iOS Developer", + "company": "Twilio", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.630Z" }, "endDate": { - "$date": "2026-05-30T19:01:28.874Z" + "$date": "2024-12-01T15:54:53.771Z" }, "_id": { - "$oid": "66723dae8f368f285d304e64" + "$oid": "6674c31e95590f9fd945a10b" } } ] }, - "education": [ + "education": [], + "projects": [ { - "institution": "Purdue University", - "degree": "Master of Social Work (MSW)", - "fieldOfStudy": "Civil Engineering", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2026-09-20T07:33:34.897Z" - }, + "name": "TourismApp", + "description": "Mobile application for tourists providing travel guides and local recommendations.", + "link": "https://github.com/username/tourismapp", "_id": { - "$oid": "66723dae8f368f285d304e65" + "$oid": "6674c31e95590f9fd945a10c" } }, { - "institution": "University of Delaware", - "degree": "Juris Doctor (JD)", - "fieldOfStudy": "Theater", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2026-08-24T16:34:45.929Z" - }, + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", "_id": { - "$oid": "66723dae8f368f285d304e66" + "$oid": "6674c31e95590f9fd945a10d" } - } - ], - "projects": [ + }, { - "name": "MediCare", - "description": "Medical appointment scheduling and patient management system for healthcare providers.", - "link": "https://github.com/username/medicare", + "name": "AIAssistant", + "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", + "link": "https://github.com/username/aiassistant", "_id": { - "$oid": "66723dae8f368f285d304e67" + "$oid": "6674c31e95590f9fd945a10e" } - }, + } + ], + "personalBio": "Detail-oriented developer with a strong foundation in algorithms and data structures.", + "testimonials": [ { - "name": "SmartCity", - "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", - "link": "https://github.com/username/smartcity", + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "66723dae8f368f285d304e68" + "$oid": "6674c31e95590f9fd945a10f" } }, { - "name": "EduTech", - "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", - "link": "https://github.com/username/edutech", + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304e69" + "$oid": "6674c31e95590f9fd945a110" } }, { - "name": "VirtualTour", - "description": "Virtual reality tour application for immersive travel experiences.", - "link": "https://github.com/username/virtualtour", + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "66723dae8f368f285d304e6a" + "$oid": "6674c31e95590f9fd945a111" } } ], - "personalBio": "Experienced in international collaboration and remote work, with a strong appreciation for cultural diversity.", - "testimonials": [], - "socialMediaLinks": { - "twitter": "https://x.com/Cristine-Gaddesby-fake", - "other": ["https://www.instagram.com/Cristine-Gaddesby-fake"] - }, + "socialMediaLinks": { "blog": "https://www.Nadia-Zeale-fake-blog.com", "other": [] }, "availabilityForNetworking": true, - "bootcampExperience": "Le Wagon", + "bootcampExperience": "CareerFoundry", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304e60" + "$oid": "6674c31e95590f9fd945a107" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b1f" + "$oid": "6674c31695590f9fd9459de0" }, - "firstName": "Marta", - "lastName": "Daveren", - "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "cohort": "ECRI 83", + "firstName": "Emmett", + "lastName": "Buckell", + "cohort": "NYC 73", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a112" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459de1" + }, + "firstName": "Lavinia", + "lastName": "Baume", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "cohort": "PTRI 21", "graduationYear": 2024, - "email": "mdaveren2b@odnoklassniki.ru", - "linkedInProfile": "https://www.linkedin.com/in/Marta-Daveren-fake", + "email": "lbaume26@tinyurl.com", + "linkedInProfile": "https://www.linkedin.com/in/Lavinia-Baume-fake", "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", "skills": [ - "Python", - "DevOps", - "ETL (Extract, Transform, Load)", - "Infrastructure as Code", - "Leadership" + "API Integration", + "Critical Thinking", + "Natural Language Processing", + "Collaboration", + "React", + "Mobile Development" ], "specializations": [ + "Collaboration", + "Kubernetes", + "Cybersecurity", + "AWS", + "Data Science", + "GraphQL", + "Pair Programming", + "Git", + "Docker", "Version Control", - "React", - "Machine Learning", - "Blockchain", - "WebSockets", - "Ruby", + "PaaS (Platform as a Service)", + "Data Warehousing", "Scrum", - "Time Management", - "Leadership", - "Refactoring", - "Performance Optimization", - "Infrastructure as Code", - "Azure", - "API Integration", - "CSS", - "Laravel" - ], - "careerInformation": { - "currentPosition": { "title": "Software Developer", "company": "LinkedIn" }, - "pastPositions": [ - { - "title": "Frontend Developer", - "company": "Tesla", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2027-11-30T14:03:04.838Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304e6c" - } - }, + "Big Data", + "JavaScript", + "Android Development" + ], + "careerInformation": { + "currentPosition": { "title": "Software Architect", "company": "Airbnb" }, + "pastPositions": [ { - "title": "Lead Software Engineer", - "company": "Square", + "title": "Security Engineer", + "company": "Salesforce", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2025-02-12T13:39:14.787Z" + "$date": "2027-08-18T08:32:29.217Z" }, "_id": { - "$oid": "66723dae8f368f285d304e6d" + "$oid": "6674c31e95590f9fd945a114" } }, { - "title": "Full Stack Developer", - "company": "Netflix", + "title": "Backend Developer", + "company": "Lyft", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2027-01-10T14:58:07.865Z" + "$date": "2026-12-18T21:02:19.297Z" }, "_id": { - "$oid": "66723dae8f368f285d304e6e" + "$oid": "6674c31e95590f9fd945a115" } }, { - "title": "DevOps Engineer", - "company": "ServiceNow", + "title": "Backend Developer", + "company": "NVIDIA", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2028-02-04T03:02:49.666Z" + "$date": "2025-12-31T08:36:41.646Z" }, "_id": { - "$oid": "66723dae8f368f285d304e6f" + "$oid": "6674c31e95590f9fd945a116" } }, { - "title": "Data Scientist", + "title": "AI Engineer", "company": "Activision Blizzard", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2027-05-05T06:46:22.329Z" + "$date": "2027-11-22T15:08:23.241Z" }, "_id": { - "$oid": "66723dae8f368f285d304e70" + "$oid": "6674c31e95590f9fd945a117" } } ] }, "education": [], - "projects": [ - { - "name": "CodeReview", - "description": "Collaborative code review platform with annotations and feedback features.", - "link": "https://github.com/username/codereview", - "_id": { - "$oid": "66723dae8f368f285d304e71" - } - }, - { - "name": "SmartFarm", - "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", - "link": "https://github.com/username/smartfarm", - "_id": { - "$oid": "66723dae8f368f285d304e72" - } - }, - { - "name": "TravelGuide", - "description": "Interactive travel guide application providing travel tips and destination insights.", - "link": "https://github.com/username/travelguide", - "_id": { - "$oid": "66723dae8f368f285d304e73" - } - } - ], - "personalBio": "Passionate about contributing to the tech community through open-source projects and knowledge sharing.", - "testimonials": [ - { - "from": "Lucas Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", - "_id": { - "$oid": "66723dae8f368f285d304e74" - } - }, - { - "from": "Emily Brown", - "relation": "Client at GlobalSoft Solutions", - "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", - "_id": { - "$oid": "66723dae8f368f285d304e75" - } - }, - { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - "_id": { - "$oid": "66723dae8f368f285d304e76" - } - } - ], - "socialMediaLinks": { "other": ["https://www.instagram.com/Marta-Daveren-fake"] }, + "projects": [], + "personalBio": "Experienced in deploying and maintaining applications on cloud platforms like AWS and Azure.", + "testimonials": [], + "socialMediaLinks": { "twitter": "https://x.com/Lavinia-Baume-fake", "other": [] }, "availabilityForNetworking": true, - "bootcampExperience": "CareerFoundry", + "bootcampExperience": "Nucamp", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304e6b" + "$oid": "6674c31e95590f9fd945a113" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b20" + "$oid": "6674c31695590f9fd9459de2" }, - "firstName": "Nanon", - "lastName": "Gligoraci", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "NYC 15", + "firstName": "Janine", + "lastName": "Kitt", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "CTRI 29", "graduationYear": 2024, - "email": "ngligoraci2c@addthis.com", - "linkedInProfile": "https://www.linkedin.com/in/Nanon-Gligoraci-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", - "skills": ["iOS Development"], + "email": "jkitt27@wsj.com", + "linkedInProfile": "https://www.linkedin.com/in/Janine-Kitt-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": [ + "Software Architecture", + "Object-Oriented Programming", + "GraphQL", + "Android Development", + "Node.js", + "User Interface (UI) Design" + ], "specializations": [ - "DevOps", - "SQL", - "Cybersecurity", - "Technical Writing", - "Machine Learning", - "iOS Development", - "Database Design" + "Blockchain", + "PaaS (Platform as a Service)", + "Google Cloud Platform", + "Docker", + "Data Science", + "Data Visualization", + "System Design", + "Natural Language Processing" ], "careerInformation": { - "currentPosition": { "title": "Cloud Engineer", "company": "Oracle" }, + "currentPosition": { "title": "AI Engineer", "company": "Lyft" }, "pastPositions": [ { - "title": "Lead Software Engineer", - "company": "GitHub", + "title": "Embedded Systems Engineer", + "company": "Spotify", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2026-01-03T06:52:08.418Z" + "$date": "2027-04-10T02:15:26.718Z" }, "_id": { - "$oid": "66723dae8f368f285d304e78" + "$oid": "6674c31e95590f9fd945a119" } }, { - "title": "Automation Engineer", - "company": "Netflix", + "title": "Software Engineer", + "company": "Twilio", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2027-01-27T23:43:10.071Z" + "$date": "2027-03-31T19:36:09.662Z" }, "_id": { - "$oid": "66723dae8f368f285d304e79" + "$oid": "6674c31e95590f9fd945a11a" } }, { "title": "Engineering Manager", - "company": "Slack", + "company": "NVIDIA", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2025-12-31T05:13:13.584Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a11b" + } + }, + { + "title": "Frontend Developer", + "company": "Netflix", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-04-12T07:00:33.800Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a11c" + } + }, + { + "title": "iOS Developer", + "company": "Amazon", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2024-12-22T10:51:34.599Z" + "$date": "2026-09-12T11:20:39.389Z" }, "_id": { - "$oid": "66723dae8f368f285d304e7a" + "$oid": "6674c31e95590f9fd945a11d" } } ] }, "education": [ { - "institution": "Purdue University", - "degree": "High School Diploma", - "fieldOfStudy": "History", + "institution": "Washington University in St. Louis", + "degree": "Master of Engineering (ME)", + "fieldOfStudy": "Fine Arts", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2028-03-14T10:21:11.856Z" + "$date": "2027-03-19T18:16:31.744Z" }, "_id": { - "$oid": "66723dae8f368f285d304e7b" + "$oid": "6674c31e95590f9fd945a11e" } }, { - "institution": "Washington University in St. Louis", - "degree": "Doctor of Medicine (MD)", - "fieldOfStudy": "Urban Planning", + "institution": "University of Florida", + "degree": "Master of Arts (MA)", + "fieldOfStudy": "Mechanical Engineering", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2024-11-08T18:00:25.505Z" + "$date": "2027-07-13T12:44:06.611Z" }, "_id": { - "$oid": "66723dae8f368f285d304e7c" - } - } - ], - "projects": [ - { - "name": "JobFinder", - "description": "Job search and application management platform with personalized recommendations.", - "link": "https://github.com/username/jobfinder", - "_id": { - "$oid": "66723dae8f368f285d304e7d" - } - }, - { - "name": "SmartFarm", - "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", - "link": "https://github.com/username/smartfarm", - "_id": { - "$oid": "66723dae8f368f285d304e7e" - } - }, - { - "name": "GenomeQuest", - "description": "Genomic data analysis tool for researchers and bioinformaticians.", - "link": "https://github.com/username/genomequest", - "_id": { - "$oid": "66723dae8f368f285d304e7f" + "$oid": "6674c31e95590f9fd945a11f" } }, { - "name": "CodeAnalyzer", - "description": "Static code analysis tool for detecting bugs and code quality improvements.", - "link": "https://github.com/username/codeanalyzer", + "institution": "Clemson University", + "degree": "Trade School Certification", + "fieldOfStudy": "History", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-05-26T08:00:09.398Z" + }, "_id": { - "$oid": "66723dae8f368f285d304e80" + "$oid": "6674c31e95590f9fd945a120" } } ], - "personalBio": "Adaptable problem solver who thrives in dynamic, fast-paced environments.", - "testimonials": [ + "projects": [ { - "from": "Emma Thompson", - "relation": "Manager at DataTech Solutions", - "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", "_id": { - "$oid": "66723dae8f368f285d304e81" + "$oid": "6674c31e95590f9fd945a121" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "name": "CryptoTrack", + "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", + "link": "https://github.com/username/cryptotrack", "_id": { - "$oid": "66723dae8f368f285d304e82" + "$oid": "6674c31e95590f9fd945a122" } }, { - "from": "Alice Johnson", - "relation": "Manager at TechSolutions Inc.", - "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", "_id": { - "$oid": "66723dae8f368f285d304e83" + "$oid": "6674c31e95590f9fd945a123" } } ], - "socialMediaLinks": { "twitter": "https://x.com/Nanon-Gligoraci-fake", "other": [] }, + "personalBio": "Experienced in Agile methodologies, with a track record of delivering projects on time and within budget.", + "testimonials": [], + "socialMediaLinks": { "twitter": "https://x.com/Janine-Kitt-fake", "other": [] }, "availabilityForNetworking": false, - "bootcampExperience": "Makers Academy", + "bootcampExperience": "General Assembly", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304e77" + "$oid": "6674c31e95590f9fd945a118" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b21" + "$oid": "6674c31695590f9fd9459de3" }, - "firstName": "Donall", - "lastName": "Frapwell", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "CTRI 2", + "firstName": "Beatrix", + "lastName": "Healey", + "cohort": "WCRI 59", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a124" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459de4" + }, + "firstName": "Simone", + "lastName": "Buske", + "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "cohort": "PTRI 21", "graduationYear": 2024, - "email": "dfrapwell2d@hostgator.com", - "linkedInProfile": "https://www.linkedin.com/in/Donall-Frapwell-fake", - "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", - "skills": [ - "DevOps", - "Containerization", - "Collaboration", - "Design Patterns", - "Mobile Development", - "BDD (Behavior-Driven Development)", - "Graph Databases", - "User Interface (UI) Design", - "Google Cloud Platform", - "Kubernetes", - "Continuous Deployment", - "Technical Writing", - "Functional Programming", - "Ruby", - "System Design", - "Pair Programming", - "HTML", - "Code Review" - ], + "email": "sbuske29@soundcloud.com", + "linkedInProfile": "https://www.linkedin.com/in/Simone-Buske-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": ["React", "Parallel Computing", "HTML"], "specializations": [ - "Machine Learning", - "Natural Language Processing", - "SaaS (Software as a Service)", - "Concurrency", - "Leadership", - "User Interface (UI) Design", - "Project Management", - "Integration Testing", - "System Design", - "Critical Thinking", - "CSS", - "ASP.NET", - "Reactive Programming", - "Java", - "C++" + "Django", + "IoT (Internet of Things)", + "TDD (Test-Driven Development)", + "Scrum" ], "careerInformation": { - "currentPosition": { "title": "Test Engineer", "company": "Apple" }, - "pastPositions": [] + "currentPosition": { "title": "Software Developer", "company": "DocuSign" }, + "pastPositions": [ + { + "title": "Automation Engineer", + "company": "Square", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2024-07-13T21:23:49.439Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a126" + } + }, + { + "title": "Backend Developer", + "company": "NVIDIA", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2025-06-06T00:08:59.975Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a127" + } + }, + { + "title": "Data Engineer", + "company": "Cisco", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-08-14T20:26:46.133Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a128" + } + }, + { + "title": "Web Developer", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-09-06T10:50:59.060Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a129" + } + }, + { + "title": "Security Engineer", + "company": "PayPal", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-01-24T09:23:47.436Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a12a" + } + } + ] }, "education": [ { - "institution": "University of California, Santa Barbara (UCSB)", - "degree": "Associate Degree", - "fieldOfStudy": "Urban Planning", + "institution": "University of Georgia", + "degree": "Technical School Certification", + "fieldOfStudy": "Data Science", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2026-08-20T11:50:40.091Z" + "$date": "2025-04-05T22:00:42.086Z" }, "_id": { - "$oid": "66723dae8f368f285d304e85" + "$oid": "6674c31e95590f9fd945a12b" } }, { - "institution": "Emory University", - "degree": "Master of Science (MS)", + "institution": "University of Utah", + "degree": "Bachelor of Science (BS)", "fieldOfStudy": "Linguistics", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2027-07-09T02:26:34.518Z" + "$date": "2027-06-30T13:59:59.387Z" }, "_id": { - "$oid": "66723dae8f368f285d304e86" + "$oid": "6674c31e95590f9fd945a12c" } }, { - "institution": "Massachusetts Institute of Technology (MIT)", - "degree": "Juris Doctor (JD)", - "fieldOfStudy": "Dentistry", + "institution": "National University of Singapore (NUS)", + "degree": "Master of Education (MEd)", + "fieldOfStudy": "Biochemistry", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2027-08-18T02:08:54.277Z" + "$date": "2026-02-22T23:48:00.997Z" }, "_id": { - "$oid": "66723dae8f368f285d304e87" + "$oid": "6674c31e95590f9fd945a12d" } } ], - "projects": [ - { - "name": "HealthMonitor", - "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", - "link": "https://github.com/username/healthmonitor", - "_id": { - "$oid": "66723dae8f368f285d304e88" - } - }, - { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", - "_id": { - "$oid": "66723dae8f368f285d304e89" - } - }, + "projects": [], + "personalBio": "Experienced in rapid prototyping and iterative development methodologies.", + "testimonials": [ { - "name": "SecureChat", - "description": "End-to-end encrypted messaging app ensuring user privacy and security.", - "link": "https://github.com/username/securechat", + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "66723dae8f368f285d304e8a" + "$oid": "6674c31e95590f9fd945a12e" } }, { - "name": "SmartGrid", - "description": "Smart grid technology for efficient energy distribution and consumption.", - "link": "https://github.com/username/smartgrid", + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", "_id": { - "$oid": "66723dae8f368f285d304e8b" + "$oid": "6674c31e95590f9fd945a12f" } } ], - "personalBio": "Experienced in building scalable microservices architectures and integrating third-party APIs.", - "testimonials": [], - "socialMediaLinks": { "blog": "https://www.Donall-Frapwell-fake-blog.com", "other": [] }, + "socialMediaLinks": { + "blog": "https://www.Simone-Buske-fake-blog.com", + "other": ["https://www.instagram.com/Simone-Buske-fake"] + }, "availabilityForNetworking": true, - "bootcampExperience": "The Tech Academy", + "bootcampExperience": "Springboard", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304e84" + "$oid": "6674c31e95590f9fd945a125" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b22" + "$oid": "6674c31695590f9fd9459de5" }, - "firstName": "Beverlee", - "lastName": "Bangham", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "CTRI 43", + "firstName": "Cristine", + "lastName": "Gaddesby", + "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "cohort": "WCRI 18", "graduationYear": 2024, - "email": "bbangham2e@tamu.edu", - "linkedInProfile": "https://www.linkedin.com/in/Beverlee-Bangham-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "email": "cgaddesby2a@senate.gov", + "linkedInProfile": "https://www.linkedin.com/in/Cristine-Gaddesby-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", "skills": [ - "Communication Skills", - "NoSQL", - "iOS Development", - "Integration Testing", - "Machine Learning", - "Scrum", - "Functional Programming", - "AWS", - "Design Patterns", - "Algorithm Design" + "GraphQL", + "Software Architecture", + "React", + "Azure", + "Natural Language Processing", + "RESTful APIs", + "System Design", + "SaaS (Software as a Service)", + "Concurrency", + "Angular", + "Android Development" ], "specializations": [ - "Version Control", "Parallel Computing", - "Data Science", - "Blockchain", - "Collaboration", - "Continuous Deployment", - "Ruby", - "Edge Computing", - "Critical Thinking", - "Microservices", - "JavaScript", - "Scrum", - "Unit Testing", - "Legacy Code Management", - "Android Development", - "Object-Oriented Programming", - "C#", - "CSS" + "Docker", + "Leadership", + "C++", + "Natural Language Processing" ], "careerInformation": { - "currentPosition": { "title": "iOS Developer", "company": "Tesla" }, + "currentPosition": { "title": "Embedded Systems Engineer", "company": "Netflix" }, "pastPositions": [ { - "title": "Data Scientist", - "company": "Activision Blizzard", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2028-04-03T21:47:37.044Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304e8d" - } - }, - { - "title": "Web Developer", - "company": "Workday", + "title": "Backend Developer", + "company": "DoorDash", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2025-04-19T11:04:54.003Z" + "$date": "2026-09-04T07:05:54.992Z" }, "_id": { - "$oid": "66723dae8f368f285d304e8e" + "$oid": "6674c31e95590f9fd945a131" } }, { - "title": "Technical Program Manager", - "company": "Coinbase", + "title": "Software Engineer", + "company": "Salesforce", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2025-09-06T18:27:38.614Z" + "$date": "2025-09-15T02:08:09.362Z" }, "_id": { - "$oid": "66723dae8f368f285d304e8f" + "$oid": "6674c31e95590f9fd945a132" } }, { - "title": "Technical Program Manager", - "company": "Facebook", + "title": "Data Engineer", + "company": "Twitter", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2027-04-17T23:45:12.375Z" + "$date": "2026-11-20T01:56:53.417Z" }, "_id": { - "$oid": "66723dae8f368f285d304e90" + "$oid": "6674c31e95590f9fd945a133" } }, { - "title": "QA Engineer", - "company": "Asana", + "title": "Engineering Manager", + "company": "DocuSign", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2025-07-06T03:30:30.348Z" + "$date": "2025-02-21T18:46:14.557Z" }, "_id": { - "$oid": "66723dae8f368f285d304e91" + "$oid": "6674c31e95590f9fd945a134" } } ] @@ -11392,158 +10750,180 @@ "education": [], "projects": [ { - "name": "CodeAnalyzer", - "description": "Static code analysis tool for detecting bugs and code quality improvements.", - "link": "https://github.com/username/codeanalyzer", - "_id": { - "$oid": "66723dae8f368f285d304e92" - } - }, - { - "name": "VirtualTour", - "description": "Virtual reality tour application for immersive travel experiences.", - "link": "https://github.com/username/virtualtour", - "_id": { - "$oid": "66723dae8f368f285d304e93" - } - } - ], - "personalBio": "Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.", - "testimonials": [ - { - "from": "Ethan Taylor", - "relation": "Co-founder at StartupX", - "text": "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", - "_id": { - "$oid": "66723dae8f368f285d304e94" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", "_id": { - "$oid": "66723dae8f368f285d304e95" + "$oid": "6674c31e95590f9fd945a135" } }, { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", "_id": { - "$oid": "66723dae8f368f285d304e96" + "$oid": "6674c31e95590f9fd945a136" } }, { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", "_id": { - "$oid": "66723dae8f368f285d304e97" + "$oid": "6674c31e95590f9fd945a137" } }, { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", "_id": { - "$oid": "66723dae8f368f285d304e98" + "$oid": "6674c31e95590f9fd945a138" } } ], - "socialMediaLinks": { "other": ["https://www.instagram.com/Beverlee-Bangham-fake"] }, - "availabilityForNetworking": false, - "bootcampExperience": "General Assembly", + "personalBio": "Driven by a curiosity for innovation and a commitment to delivering high-quality software solutions.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Cristine-Gaddesby-fake", + "blog": "https://www.Cristine-Gaddesby-fake-blog.com", + "other": ["https://www.instagram.com/Cristine-Gaddesby-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Makers Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304e8c" + "$oid": "6674c31e95590f9fd945a130" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b23" + "$oid": "6674c31695590f9fd9459de6" }, - "firstName": "Englebert", - "lastName": "Bancroft", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "FTRI 71", + "firstName": "Marta", + "lastName": "Daveren", + "cohort": "PTRI 41", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a139" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459de7" + }, + "firstName": "Nanon", + "lastName": "Gligoraci", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "FTRI 70", "graduationYear": 2024, - "email": "ebancroft2f@ow.ly", - "linkedInProfile": "https://www.linkedin.com/in/Englebert-Bancroft-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", - "skills": [ - "Django", - "Data Visualization", - "React", - "Problem-Solving", - "Data Science", - "Automated Testing", - "RESTful APIs", - "Unit Testing", - "HTML", - "Legacy Code Management", - "Time Management", - "Serverless Architecture", - "System Design", - "IoT (Internet of Things)" - ], + "email": "ngligoraci2c@addthis.com", + "linkedInProfile": "https://www.linkedin.com/in/Nanon-Gligoraci-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "skills": [], "specializations": [ - "AWS", - "Version Control", - "AR/VR (Augmented/Virtual Reality)", - "Algorithm Design", - "WebSockets", - "ASP.NET" + "Graph Databases", + "Critical Thinking", + "Spring Boot", + "C++", + "Software Architecture", + "ETL (Extract, Transform, Load)", + "CI/CD", + "Big Data", + "ASP.NET", + "DevOps", + "NoSQL", + "IoT (Internet of Things)" ], "careerInformation": { - "currentPosition": { "title": "Web Developer", "company": "Salesforce" }, + "currentPosition": { "title": "Senior Software Engineer", "company": "DocuSign" }, "pastPositions": [ { - "title": "Android Developer", - "company": "Amazon", + "title": "Security Engineer", + "company": "Asana", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2026-07-15T14:08:29.131Z" + "$date": "2025-08-15T22:23:35.491Z" }, "_id": { - "$oid": "66723dae8f368f285d304e9a" + "$oid": "6674c31e95590f9fd945a13b" } }, { - "title": "DevOps Engineer", - "company": "Activision Blizzard", + "title": "Embedded Systems Engineer", + "company": "Square", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2026-05-29T22:55:09.946Z" + "$date": "2028-03-07T20:37:26.329Z" }, "_id": { - "$oid": "66723dae8f368f285d304e9b" + "$oid": "6674c31e95590f9fd945a13c" } } ] }, "education": [ { - "institution": "Johns Hopkins University", - "degree": "Certificate Program", - "fieldOfStudy": "Theater", + "institution": "Fudan University", + "degree": "Diploma Program", + "fieldOfStudy": "Journalism", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-03-05T01:38:36.714Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a13d" + } + }, + { + "institution": "University of Vermont", + "degree": "Continuing Education", + "fieldOfStudy": "Biomedical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-09-01T03:06:28.903Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a13e" + } + }, + { + "institution": "California Institute of Technology (Caltech)", + "degree": "Master of Engineering (ME)", + "fieldOfStudy": "History", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2025-04-10T15:11:07.092Z" + "$date": "2025-01-26T14:03:35.938Z" }, "_id": { - "$oid": "66723dae8f368f285d304e9c" + "$oid": "6674c31e95590f9fd945a13f" } } ], @@ -11553,227 +10933,238 @@ "description": "Event management and planning software for organizing and coordinating events.", "link": "https://github.com/username/eventplanner", "_id": { - "$oid": "66723dae8f368f285d304e9d" + "$oid": "6674c31e95590f9fd945a140" } }, { - "name": "GenomeQuest", - "description": "Genomic data analysis tool for researchers and bioinformaticians.", - "link": "https://github.com/username/genomequest", + "name": "LearnHub", + "description": "Online learning platform offering courses on various subjects with interactive content.", + "link": "https://github.com/username/learnhub", "_id": { - "$oid": "66723dae8f368f285d304e9e" + "$oid": "6674c31e95590f9fd945a141" } - } - ], - "personalBio": "Passionate about contributing to the tech community through open-source projects and knowledge sharing.", - "testimonials": [ + }, { - "from": "Noah Rodriguez", - "relation": "Product Owner at AgileSoft", - "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "name": "SmartWatch", + "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", + "link": "https://github.com/username/smartwatch", "_id": { - "$oid": "66723dae8f368f285d304e9f" + "$oid": "6674c31e95590f9fd945a142" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "name": "EcoTech", + "description": "Environmental monitoring and conservation app with real-time data visualization.", + "link": "https://github.com/username/ecotech", "_id": { - "$oid": "66723dae8f368f285d304ea0" + "$oid": "6674c31e95590f9fd945a143" } - }, + } + ], + "personalBio": "Proven ability to lead technical projects from inception to successful deployment and maintenance.", + "testimonials": [ { - "from": "Isabella Clark", - "relation": "HR Manager at TechFusion", - "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", "_id": { - "$oid": "66723dae8f368f285d304ea1" + "$oid": "6674c31e95590f9fd945a144" } }, { - "from": "Emily Brown", - "relation": "Client at GlobalSoft Solutions", - "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "66723dae8f368f285d304ea2" + "$oid": "6674c31e95590f9fd945a145" } } ], "socialMediaLinks": { - "twitter": "https://x.com/Englebert-Bancroft-fake", - "other": ["https://www.instagram.com/Englebert-Bancroft-fake"] + "blog": "https://www.Nanon-Gligoraci-fake-blog.com", + "other": ["https://www.instagram.com/Nanon-Gligoraci-fake"] }, "availabilityForNetworking": true, - "bootcampExperience": "Flatiron School", + "bootcampExperience": "Thinkful", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304e99" + "$oid": "6674c31e95590f9fd945a13a" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b24" + "$oid": "6674c31695590f9fd9459de8" }, - "firstName": "Siegfried", - "lastName": "Castillou", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "WCRI 22", + "firstName": "Donall", + "lastName": "Frapwell", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "WCRI 37", "graduationYear": 2024, - "email": "scastillou2g@reddit.com", - "linkedInProfile": "https://www.linkedin.com/in/Siegfried-Castillou-fake", - "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "email": "dfrapwell2d@hostgator.com", + "linkedInProfile": "https://www.linkedin.com/in/Donall-Frapwell-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", "skills": [ - "Concurrency", - "TDD (Test-Driven Development)", - "Django", - "AWS", + "Software Architecture", "Performance Optimization", - "HTML", - "Cybersecurity", + "BDD (Behavior-Driven Development)", + "Android Development", + "Robotic Process Automation", + "Design Patterns", + "Reactive Programming", + "Kubernetes", + "API Development", "Legacy Code Management", - "Natural Language Processing", - "RESTful APIs", - "WebSockets", - "Software Architecture" + "CI/CD", + "Leadership", + "System Design", + "C++", + "GraphQL", + "Docker" ], "specializations": [ - "Reactive Programming", + "Unit Testing", + "BDD (Behavior-Driven Development)", "Containerization", - "C++", - "iOS Development", - "Vue.js", - "Kubernetes", - "Design Patterns", - "Graph Databases", - "Data Visualization", - "Laravel" + "Quantum Computing", + "Data Science", + "Event-Driven Architecture", + "Concurrency" ], "careerInformation": { - "currentPosition": { "title": "Frontend Developer", "company": "Tesla" }, + "currentPosition": { "title": "Principal Software Engineer", "company": "Robinhood" }, "pastPositions": [ { - "title": "Technical Lead", - "company": "Tesla", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2027-07-06T16:21:56.800Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304ea4" - } - }, - { - "title": "Engineering Manager", - "company": "Facebook", + "title": "Full Stack Developer", + "company": "Atlassian", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2024-12-28T17:06:43.005Z" + "$date": "2027-05-25T22:51:17.486Z" }, "_id": { - "$oid": "66723dae8f368f285d304ea5" + "$oid": "6674c31e95590f9fd945a147" } }, { - "title": "Web Developer", - "company": "Coinbase", + "title": "Automation Engineer", + "company": "Workday", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2026-08-21T01:13:41.829Z" + "$date": "2027-03-16T17:12:48.556Z" }, "_id": { - "$oid": "66723dae8f368f285d304ea6" + "$oid": "6674c31e95590f9fd945a148" } }, { - "title": "Data Scientist", - "company": "Snowflake", + "title": "Software Developer", + "company": "Epic Games", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2027-06-05T09:30:14.882Z" + "$date": "2026-12-14T14:18:10.787Z" }, "_id": { - "$oid": "66723dae8f368f285d304ea7" + "$oid": "6674c31e95590f9fd945a149" } } ] }, "education": [ { - "institution": "EPFL - ร‰cole Polytechnique Fรฉdรฉrale de Lausanne", - "degree": "Master of Technology (MTech)", - "fieldOfStudy": "Aerospace Engineering", + "institution": "University of Texas at Austin", + "degree": "Master of Fine Arts (MFA)", + "fieldOfStudy": "Civil Engineering", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2028-03-08T17:33:30.435Z" + "$date": "2027-08-31T07:03:56.697Z" }, "_id": { - "$oid": "66723dae8f368f285d304ea8" + "$oid": "6674c31e95590f9fd945a14a" } }, { - "institution": "University of Michigan", - "degree": "Master of Social Work (MSW)", - "fieldOfStudy": "Biomedical Engineering", + "institution": "Rice University", + "degree": "Professional Development", + "fieldOfStudy": "Law", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2026-12-23T09:58:37.600Z" + "$date": "2028-04-07T03:57:09.726Z" }, "_id": { - "$oid": "66723dae8f368f285d304ea9" + "$oid": "6674c31e95590f9fd945a14b" + } + }, + { + "institution": "National University of Singapore (NUS)", + "degree": "Master of Public Health (MPH)", + "fieldOfStudy": "Statistics", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-05-13T21:05:41.999Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a14c" } } ], - "projects": [], - "personalBio": "Skilled in conducting technical workshops and seminars to share knowledge and mentor aspiring developers.", - "testimonials": [ + "projects": [ { - "from": "Ethan Taylor", - "relation": "Co-founder at StartupX", - "text": "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", + "name": "GenomeQuest", + "description": "Genomic data analysis tool for researchers and bioinformaticians.", + "link": "https://github.com/username/genomequest", "_id": { - "$oid": "66723dae8f368f285d304eaa" + "$oid": "6674c31e95590f9fd945a14d" } }, { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", + "_id": { + "$oid": "6674c31e95590f9fd945a14e" + } + }, + { + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", "_id": { - "$oid": "66723dae8f368f285d304eab" + "$oid": "6674c31e95590f9fd945a14f" } - }, + } + ], + "personalBio": "Passionate about contributing to the tech community through open-source projects and knowledge sharing.", + "testimonials": [ { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "66723dae8f368f285d304eac" + "$oid": "6674c31e95590f9fd945a150" } }, { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "66723dae8f368f285d304ead" + "$oid": "6674c31e95590f9fd945a151" } }, { @@ -11781,377 +11172,379 @@ "relation": "Director of Engineering at FutureTech", "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304eae" + "$oid": "6674c31e95590f9fd945a152" } } ], - "socialMediaLinks": { - "twitter": "https://x.com/Siegfried-Castillou-fake", - "blog": "https://www.Siegfried-Castillou-fake-blog.com", - "other": [] - }, + "socialMediaLinks": { "blog": "https://www.Donall-Frapwell-fake-blog.com", "other": [] }, "availabilityForNetworking": true, - "bootcampExperience": "Flatiron School", + "bootcampExperience": "Kenzie Academy", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304ea3" + "$oid": "6674c31e95590f9fd945a146" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b25" + "$oid": "6674c31695590f9fd9459de9" }, - "firstName": "Marvin", - "lastName": "Cranke", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "FTRI 48", - "graduationYear": 2024, - "email": "mcranke2h@marketwatch.com", - "linkedInProfile": "https://www.linkedin.com/in/Marvin-Cranke-fake", - "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", - "skills": ["ASP.NET", "API Integration", "Critical Thinking", "Code Review", "Laravel"], - "specializations": ["Edge Computing"], - "careerInformation": { - "currentPosition": { "title": "Software Architect", "company": "Snowflake" }, - "pastPositions": [ - { - "title": "QA Engineer", - "company": "Red Hat", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2025-05-17T00:06:32.181Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304eb0" - } - }, - { - "title": "Lead Software Engineer", - "company": "Pinterest", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2027-01-21T03:09:47.678Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304eb1" - } - }, - { - "title": "Product Manager", - "company": "Microsoft", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2025-04-29T02:51:20.226Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304eb2" - } - } - ] + "firstName": "Beverlee", + "lastName": "Bangham", + "cohort": "FTRI 79", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a153" }, - "education": [ - { - "institution": "University of Nebraska-Lincoln", - "degree": "Master of Science (MS)", - "fieldOfStudy": "Dentistry", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2027-12-20T07:42:58.544Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304eb3" - } - } - ], + "education": [], "projects": [], - "personalBio": "Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.", "testimonials": [], - "socialMediaLinks": { - "twitter": "https://x.com/Marvin-Cranke-fake", - "blog": "https://www.Marvin-Cranke-fake-blog.com", - "other": ["https://www.instagram.com/Marvin-Cranke-fake"] + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dea" }, - "availabilityForNetworking": true, - "bootcampExperience": "Galvanize", + "firstName": "Englebert", + "lastName": "Bancroft", + "cohort": "LA 21", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304eaf" + "$oid": "6674c31e95590f9fd945a154" }, + "education": [], + "projects": [], + "testimonials": [], "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b26" + "$oid": "6674c31695590f9fd9459deb" }, - "firstName": "Arne", - "lastName": "Rummin", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "NYC 78", + "firstName": "Siegfried", + "lastName": "Castillou", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "ECRI 74", "graduationYear": 2024, - "email": "arummin2i@is.gd", - "linkedInProfile": "https://www.linkedin.com/in/Arne-Rummin-fake", - "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "email": "scastillou2g@reddit.com", + "linkedInProfile": "https://www.linkedin.com/in/Siegfried-Castillou-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", "skills": [ - "Node.js", - "FaaS (Function as a Service)", - "iOS Development", - "Serverless Architecture", - "Laravel", - "ETL (Extract, Transform, Load)", - "User Experience (UX) Design", - "Communication Skills", - "Cybersecurity", - "System Design", - "Vue.js", - "Object-Oriented Programming", + "PaaS (Platform as a Service)", + "C#", + "Quantum Computing", + "Performance Optimization", "Azure", - "Functional Programming", - "Ruby", - "Database Design" + "React", + "IoT (Internet of Things)", + "Event-Driven Architecture" ], - "specializations": ["ETL (Extract, Transform, Load)"], + "specializations": ["Angular"], "careerInformation": { - "currentPosition": { "title": "Machine Learning Engineer", "company": "Netflix" }, - "pastPositions": [] + "currentPosition": { "title": "Data Scientist", "company": "Pinterest" }, + "pastPositions": [ + { + "title": "Software Architect", + "company": "Robinhood", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-07-03T20:18:11.511Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a156" + } + }, + { + "title": "Data Engineer", + "company": "Pinterest", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2025-11-09T09:16:13.647Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a157" + } + } + ] }, "education": [ { - "institution": "University of Rochester", - "degree": "Bachelor of Science (BS)", - "fieldOfStudy": "Physics", + "institution": "University of Melbourne", + "degree": "Master of Public Administration (MPA)", + "fieldOfStudy": "Accounting", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2027-07-06T13:53:25.719Z" + "$date": "2025-01-19T13:01:57.412Z" }, "_id": { - "$oid": "66723dae8f368f285d304eb5" + "$oid": "6674c31e95590f9fd945a158" } }, { - "institution": "University of Missouri", - "degree": "Certificate Program", - "fieldOfStudy": "Public Health", + "institution": "Brigham Young University", + "degree": "Executive Education", + "fieldOfStudy": "Physics", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2025-05-07T20:36:48.802Z" + "$date": "2027-11-01T12:04:48.118Z" }, "_id": { - "$oid": "66723dae8f368f285d304eb6" + "$oid": "6674c31e95590f9fd945a159" } }, { - "institution": "New York University (NYU)", - "degree": "Trade School Certification", - "fieldOfStudy": "Finance", + "institution": "Massachusetts Institute of Technology (MIT)", + "degree": "Master of Public Administration (MPA)", + "fieldOfStudy": "Electrical Engineering", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2025-05-14T00:46:15.764Z" + "$date": "2028-05-15T12:46:37.883Z" }, "_id": { - "$oid": "66723dae8f368f285d304eb7" + "$oid": "6674c31e95590f9fd945a15a" } } ], "projects": [ { - "name": "CloudStorage", - "description": "Cloud storage service with file synchronization and sharing capabilities.", - "link": "https://github.com/username/cloudstorage", - "_id": { - "$oid": "66723dae8f368f285d304eb8" - } - }, - { - "name": "VirtualTour", - "description": "Virtual reality tour application for immersive travel experiences.", - "link": "https://github.com/username/virtualtour", + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", "_id": { - "$oid": "66723dae8f368f285d304eb9" + "$oid": "6674c31e95590f9fd945a15b" } }, { - "name": "AugmentWorks", - "description": "Augmented reality application for enhancing workplace productivity and training.", - "link": "https://github.com/username/augmentworks", + "name": "AIAssistant", + "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", + "link": "https://github.com/username/aiassistant", "_id": { - "$oid": "66723dae8f368f285d304eba" + "$oid": "6674c31e95590f9fd945a15c" } }, { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", + "name": "CloudGuard", + "description": "Advanced cloud security suite ensuring data protection and compliance.", + "link": "https://github.com/username/cloudguard", "_id": { - "$oid": "66723dae8f368f285d304ebb" + "$oid": "6674c31e95590f9fd945a15d" } }, { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", + "name": "HealthLink", + "description": "Telemedicine platform connecting patients with healthcare providers remotely.", + "link": "https://github.com/username/healthlink", "_id": { - "$oid": "66723dae8f368f285d304ebc" + "$oid": "6674c31e95590f9fd945a15e" } } ], - "personalBio": "Passionate about building inclusive and accessible software that improves people's lives.", + "personalBio": "Adept at optimizing SQL and NoSQL databases for performance and scalability.", "testimonials": [ { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", "_id": { - "$oid": "66723dae8f368f285d304ebd" + "$oid": "6674c31e95590f9fd945a15f" } }, { - "from": "Ethan Taylor", - "relation": "Co-founder at StartupX", - "text": "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304ebe" + "$oid": "6674c31e95590f9fd945a160" } } ], "socialMediaLinks": { - "blog": "https://www.Arne-Rummin-fake-blog.com", - "other": ["https://www.instagram.com/Arne-Rummin-fake"] + "twitter": "https://x.com/Siegfried-Castillou-fake", + "blog": "https://www.Siegfried-Castillou-fake-blog.com", + "other": ["https://www.instagram.com/Siegfried-Castillou-fake"] }, "availabilityForNetworking": true, - "bootcampExperience": "DevMountain", + "bootcampExperience": "General Assembly", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304eb4" + "$oid": "6674c31e95590f9fd945a155" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b27" + "$oid": "6674c31695590f9fd9459dec" }, - "firstName": "Seumas", - "lastName": "Feldberger", + "firstName": "Marvin", + "lastName": "Cranke", "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "cohort": "FTRI 21", + "cohort": "FTRI 63", "graduationYear": 2024, - "email": "sfeldberger2j@ning.com", - "linkedInProfile": "https://www.linkedin.com/in/Seumas-Feldberger-fake", + "email": "mcranke2h@marketwatch.com", + "linkedInProfile": "https://www.linkedin.com/in/Marvin-Cranke-fake", "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", "skills": [ - "Parallel Computing", - "Critical Thinking", - "Legacy Code Management", - "User Interface (UI) Design", - "Deep Learning", - "Serverless Architecture", - "RESTful APIs", + "Leadership", "WebSockets", - "Data Science", - "Project Management", - "Google Cloud Platform", "Agile Development", - "Automated Testing", - "Leadership", - "CI/CD" + "Design Patterns", + "API Integration", + "ETL (Extract, Transform, Load)", + "Project Management", + "ASP.NET", + "SaaS (Software as a Service)", + "Edge Computing", + "Refactoring", + "Event-Driven Architecture", + "User Experience (UX) Design", + "FaaS (Function as a Service)", + "Legacy Code Management" ], "specializations": [], "careerInformation": { - "currentPosition": { "title": "Security Engineer", "company": "Salesforce" }, + "currentPosition": { "title": "Software Architect", "company": "Twitter" }, "pastPositions": [ { - "title": "Data Scientist", - "company": "IBM", + "title": "Engineering Manager", + "company": "HubSpot", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2028-01-20T02:40:54.559Z" + "$date": "2025-03-26T22:50:57.371Z" }, "_id": { - "$oid": "66723dae8f368f285d304ec0" + "$oid": "6674c31e95590f9fd945a162" } }, { - "title": "DevOps Engineer", - "company": "Twilio", + "title": "Security Engineer", + "company": "DocuSign", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-11-17T05:44:42.229Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a163" + } + }, + { + "title": "Principal Software Engineer", + "company": "DoorDash", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-01-08T21:44:21.040Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a164" + } + }, + { + "title": "Lead Software Engineer", + "company": "Oracle", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2025-05-19T06:06:00.359Z" + "$date": "2024-12-12T19:35:33.596Z" }, "_id": { - "$oid": "66723dae8f368f285d304ec1" + "$oid": "6674c31e95590f9fd945a165" } } ] }, "education": [ { - "institution": "Clemson University", - "degree": "Doctor of Dental Surgery (DDS)", - "fieldOfStudy": "Environmental Engineering", + "institution": "National University of Singapore (NUS)", + "degree": "Professional Development", + "fieldOfStudy": "International Relations", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2028-03-04T12:59:16.867Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a166" + } + }, + { + "institution": "Chinese University of Hong Kong (CUHK)", + "degree": "Master of Social Work (MSW)", + "fieldOfStudy": "Biomedical Engineering", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2026-05-10T07:00:51.714Z" + "$date": "2026-10-15T05:42:13.448Z" }, "_id": { - "$oid": "66723dae8f368f285d304ec2" + "$oid": "6674c31e95590f9fd945a167" } } ], "projects": [ { - "name": "EduTech", - "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", - "link": "https://github.com/username/edutech", + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", "_id": { - "$oid": "66723dae8f368f285d304ec3" + "$oid": "6674c31e95590f9fd945a168" } }, { - "name": "SocialConnect", - "description": "Social media integration platform for managing multiple social accounts.", - "link": "https://github.com/username/socialconnect", + "name": "HealthLink", + "description": "Telemedicine platform connecting patients with healthcare providers remotely.", + "link": "https://github.com/username/healthlink", "_id": { - "$oid": "66723dae8f368f285d304ec4" + "$oid": "6674c31e95590f9fd945a169" } }, { - "name": "NetPlanner", - "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", - "link": "https://github.com/username/netplanner", + "name": "SmartCity", + "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", + "link": "https://github.com/username/smartcity", "_id": { - "$oid": "66723dae8f368f285d304ec5" + "$oid": "6674c31e95590f9fd945a16a" } }, { @@ -12159,42 +11552,34 @@ "description": "Inventory management system with RFID and IoT integration for tracking assets.", "link": "https://github.com/username/smartinventory", "_id": { - "$oid": "66723dae8f368f285d304ec6" - } - }, - { - "name": "TravelGuide", - "description": "Interactive travel guide application providing travel tips and destination insights.", - "link": "https://github.com/username/travelguide", - "_id": { - "$oid": "66723dae8f368f285d304ec7" + "$oid": "6674c31e95590f9fd945a16b" } } ], - "personalBio": "Advocate for diversity and inclusion in the tech industry, fostering a welcoming and supportive workplace culture.", + "personalBio": "Experienced in building scalable microservices architectures and integrating third-party APIs.", "testimonials": [ { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", "_id": { - "$oid": "66723dae8f368f285d304ec8" + "$oid": "6674c31e95590f9fd945a16c" } }, { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", "_id": { - "$oid": "66723dae8f368f285d304ec9" + "$oid": "6674c31e95590f9fd945a16d" } }, { - "from": "David Smith", - "relation": "Colleague at InnovateTech Ltd.", - "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "66723dae8f368f285d304eca" + "$oid": "6674c31e95590f9fd945a16e" } }, { @@ -12202,15 +11587,19 @@ "relation": "Director of Engineering at FutureTech", "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304ecb" + "$oid": "6674c31e95590f9fd945a16f" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd945a170" } } ], - "socialMediaLinks": { - "twitter": "https://x.com/Seumas-Feldberger-fake", - "blog": "https://www.Seumas-Feldberger-fake-blog.com", - "other": ["https://www.instagram.com/Seumas-Feldberger-fake"] - }, + "socialMediaLinks": { "twitter": "https://x.com/Marvin-Cranke-fake", "other": [] }, "availabilityForNetworking": false, "bootcampExperience": "Hack Reactor", "achievementsAndCertifications": [], @@ -12218,167 +11607,311 @@ "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304ebf" + "$oid": "6674c31e95590f9fd945a161" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459ded" + }, + "firstName": "Arne", + "lastName": "Rummin", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "WCRI 64", + "graduationYear": 2024, + "email": "arummin2i@is.gd", + "linkedInProfile": "https://www.linkedin.com/in/Arne-Rummin-fake", + "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", + "skills": [ + "Scrum", + "C#", + "Version Control", + "Laravel", + "Data Science", + "Object-Oriented Programming", + "Project Management", + "Graph Databases", + "Edge Computing", + "Communication Skills" + ], + "specializations": ["Ruby", "Robotic Process Automation"], + "careerInformation": { + "currentPosition": { "title": "Software Developer", "company": "Square" }, + "pastPositions": [ + { + "title": "QA Engineer", + "company": "Coinbase", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-10-29T17:31:32.272Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a172" + } + }, + { + "title": "Full Stack Developer", + "company": "Salesforce", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-08-13T22:52:33.420Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a173" + } + }, + { + "title": "Embedded Systems Engineer", + "company": "Snapchat", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-01-26T23:35:06.537Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a174" + } + }, + { + "title": "AI Engineer", + "company": "Square", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-11-27T06:17:35.283Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a175" + } + }, + { + "title": "Security Engineer", + "company": "Adobe", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2025-12-26T05:47:48.960Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a176" + } + } + ] + }, + "education": [ + { + "institution": "University of Pittsburgh", + "degree": "Bachelor of Engineering (BE)", + "fieldOfStudy": "Linguistics", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-09-25T21:02:20.545Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a177" + } + } + ], + "projects": [], + "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", + "testimonials": [], + "socialMediaLinks": { "other": ["https://www.instagram.com/Arne-Rummin-fake"] }, + "availabilityForNetworking": true, + "bootcampExperience": "Codesmith", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a171" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dee" + }, + "firstName": "Seumas", + "lastName": "Feldberger", + "cohort": "PTRI 1", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a178" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459def" + }, + "firstName": "Hilda", + "lastName": "Worham", + "cohort": "ECRI 50", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a179" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459df0" + }, + "firstName": "Winny", + "lastName": "O'Glessane", + "cohort": "PTRI 76", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a17a" }, + "education": [], + "projects": [], + "testimonials": [], "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b28" + "$oid": "6674c31695590f9fd9459df1" }, - "firstName": "Hilda", - "lastName": "Worham", - "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "cohort": "ECRI 8", + "firstName": "Gwenora", + "lastName": "Agge", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "cohort": "NYC 13", "graduationYear": 2024, - "email": "hworham2k@mail.ru", - "linkedInProfile": "https://www.linkedin.com/in/Hilda-Worham-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", - "skills": ["Project Management"], - "specializations": ["HTML"], + "email": "gagge2m@unesco.org", + "linkedInProfile": "https://www.linkedin.com/in/Gwenora-Agge-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "skills": ["Ruby", "IoT (Internet of Things)", "GraphQL", "ETL (Extract, Transform, Load)"], + "specializations": ["AWS", "Cloud Computing", "Containerization"], "careerInformation": { - "currentPosition": { "title": "Engineering Manager", "company": "Qualcomm" }, + "currentPosition": { "title": "Software Engineer", "company": "Asana" }, "pastPositions": [ { - "title": "Full Stack Developer", - "company": "Activision Blizzard", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2025-05-11T23:38:43.725Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304ecd" - } - }, - { - "title": "Android Developer", - "company": "Amazon", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2027-03-31T08:39:25.811Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304ece" - } - }, - { - "title": "Senior Software Engineer", - "company": "DocuSign", + "title": "Mobile Developer", + "company": "PayPal", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.631Z" }, "endDate": { - "$date": "2027-11-02T17:04:18.739Z" + "$date": "2027-05-18T21:06:08.772Z" }, "_id": { - "$oid": "66723dae8f368f285d304ecf" + "$oid": "6674c31e95590f9fd945a17c" } }, { - "title": "Data Engineer", - "company": "Okta", + "title": "Software Architect", + "company": "NVIDIA", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.632Z" }, "endDate": { - "$date": "2028-03-11T18:39:57.512Z" + "$date": "2027-02-10T14:16:43.381Z" }, "_id": { - "$oid": "66723dae8f368f285d304ed0" + "$oid": "6674c31e95590f9fd945a17d" } }, { - "title": "Principal Software Engineer", - "company": "Activision Blizzard", + "title": "Junior Software Engineer", + "company": "ServiceNow", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.632Z" }, "endDate": { - "$date": "2026-06-15T22:38:54.564Z" + "$date": "2025-05-03T06:52:04.928Z" }, "_id": { - "$oid": "66723dae8f368f285d304ed1" + "$oid": "6674c31e95590f9fd945a17e" } } ] }, - "education": [ + "education": [], + "projects": [ { - "institution": "University College London (UCL)", - "degree": "Professional Degree", - "fieldOfStudy": "Theater", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2027-03-22T05:42:46.822Z" - }, + "name": "VirtualTour", + "description": "Virtual reality tour application for immersive travel experiences.", + "link": "https://github.com/username/virtualtour", "_id": { - "$oid": "66723dae8f368f285d304ed2" + "$oid": "6674c31e95590f9fd945a17f" } }, { - "institution": "University of California, San Diego (UCSD)", - "degree": "Master of Fine Arts (MFA)", - "fieldOfStudy": "Music", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2024-08-09T03:23:40.857Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304ed3" - } - } - ], - "projects": [ - { - "name": "SocialConnect", - "description": "Social media integration platform for managing multiple social accounts.", - "link": "https://github.com/username/socialconnect", + "name": "CodeReview", + "description": "Collaborative code review platform with annotations and feedback features.", + "link": "https://github.com/username/codereview", "_id": { - "$oid": "66723dae8f368f285d304ed4" + "$oid": "6674c31e95590f9fd945a180" } }, { - "name": "JobFinder", - "description": "Job search and application management platform with personalized recommendations.", - "link": "https://github.com/username/jobfinder", + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", "_id": { - "$oid": "66723dae8f368f285d304ed5" + "$oid": "6674c31e95590f9fd945a181" } } ], - "personalBio": "Passionate about leveraging data-driven insights to optimize software performance and user engagement.", + "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", "testimonials": [ { - "from": "Alice Johnson", - "relation": "Manager at TechSolutions Inc.", - "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", - "_id": { - "$oid": "66723dae8f368f285d304ed6" - } - }, - { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304ed7" + "$oid": "6674c31e95590f9fd945a182" } }, { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", "_id": { - "$oid": "66723dae8f368f285d304ed8" + "$oid": "6674c31e95590f9fd945a183" } }, { @@ -12386,553 +11919,384 @@ "relation": "Project Manager at Digital Dynamics", "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", "_id": { - "$oid": "66723dae8f368f285d304ed9" + "$oid": "6674c31e95590f9fd945a184" } }, { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", - "_id": { - "$oid": "66723dae8f368f285d304eda" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Hilda-Worham-fake", - "other": ["https://www.instagram.com/Hilda-Worham-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Hack Reactor", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "66723dae8f368f285d304ecc" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304b29" - }, - "firstName": "Winny", - "lastName": "O'Glessane", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "CTRI 19", - "graduationYear": 2024, - "email": "woglessane2l@deviantart.com", - "linkedInProfile": "https://www.linkedin.com/in/Winny-O'Glessane-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", - "skills": [ - "API Integration", - "Concurrency", - "Google Cloud Platform", - "Ruby", - "Software Architecture", - "Integration Testing", - "Edge Computing", - "FaaS (Function as a Service)" - ], - "specializations": [ - "Natural Language Processing", - "Technical Writing", - "Reactive Programming", - "Event-Driven Architecture", - "C#", - "Database Design", - "Spring Boot", - "Microservices", - "ASP.NET" - ], - "careerInformation": { - "currentPosition": { "title": "Full Stack Developer", "company": "DoorDash" }, - "pastPositions": [ - { - "title": "Engineering Manager", - "company": "Cisco", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2026-03-21T06:14:36.184Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304edc" - } - }, - { - "title": "Junior Software Engineer", - "company": "Zoom", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2026-03-13T14:17:01.438Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304edd" - } - }, - { - "title": "Principal Software Engineer", - "company": "HubSpot", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2024-10-19T19:39:56.097Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304ede" - } - } - ] - }, - "education": [ - { - "institution": "Shanghai Jiao Tong University", - "degree": "Master of Technology (MTech)", - "fieldOfStudy": "Economics", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2026-05-17T06:49:58.013Z" - }, + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", "_id": { - "$oid": "66723dae8f368f285d304edf" + "$oid": "6674c31e95590f9fd945a185" } }, { - "institution": "University of Oklahoma", - "degree": "Associate Degree", - "fieldOfStudy": "Biochemistry", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2027-12-05T02:47:58.956Z" - }, + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", "_id": { - "$oid": "66723dae8f368f285d304ee0" + "$oid": "6674c31e95590f9fd945a186" } } ], - "projects": [], - "personalBio": "Proactive learner constantly exploring emerging technologies and trends in the software industry.", - "testimonials": [], "socialMediaLinks": { - "blog": "https://www.Winny-O'Glessane-fake-blog.com", - "other": ["https://www.instagram.com/Winny-O'Glessane-fake"] + "twitter": "https://x.com/Gwenora-Agge-fake", + "other": ["https://www.instagram.com/Gwenora-Agge-fake"] }, "availabilityForNetworking": true, - "bootcampExperience": "Ironhack", + "bootcampExperience": "Lambda School", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304edb" + "$oid": "6674c31e95590f9fd945a17b" }, "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b2a" + "$oid": "6674c31695590f9fd9459df2" }, - "firstName": "Gwenora", - "lastName": "Agge", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "WCRI 1", + "firstName": "Piggy", + "lastName": "Torrisi", + "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "cohort": "WCRI 38", "graduationYear": 2024, - "email": "gagge2m@unesco.org", - "linkedInProfile": "https://www.linkedin.com/in/Gwenora-Agge-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "email": "ptorrisi2n@goodreads.com", + "linkedInProfile": "https://www.linkedin.com/in/Piggy-Torrisi-fake", + "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", "skills": [ - "Blockchain", - "TDD (Test-Driven Development)", + "Natural Language Processing", + "Java", + "Angular", + "Scrum", + "Version Control", + "Communication Skills", "Data Science", - "Data Warehousing", - "Cybersecurity", - "Reactive Programming", - "Python", - "Infrastructure as Code", - "Time Management", - "Serverless Architecture", - "Cloud Computing", - "Google Cloud Platform", - "Docker", - "AR/VR (Augmented/Virtual Reality)" + "Collaboration", + "Software Architecture", + "Node.js", + "JavaScript", + "ASP.NET", + "Machine Learning" + ], + "specializations": [ + "Algorithm Design", + "User Interface (UI) Design", + "Edge Computing", + "NoSQL", + "Flask", + "System Design", + "DevOps", + "Legacy Code Management" ], - "specializations": ["Angular", "CSS", "API Integration", "Project Management"], "careerInformation": { - "currentPosition": { "title": "Principal Software Engineer", "company": "Robinhood" }, + "currentPosition": { "title": "QA Engineer", "company": "Coinbase" }, "pastPositions": [ { "title": "Full Stack Developer", - "company": "Cisco", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2025-03-25T12:07:04.766Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304ee2" - } - }, - { - "title": "Backend Developer", - "company": "Netflix", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2025-09-23T17:47:45.917Z" - }, - "_id": { - "$oid": "66723dae8f368f285d304ee3" - } - }, - { - "title": "Automation Engineer", - "company": "Square", + "company": "Activision Blizzard", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.632Z" }, "endDate": { - "$date": "2026-10-16T03:11:16.124Z" + "$date": "2024-08-21T11:31:42.978Z" }, "_id": { - "$oid": "66723dae8f368f285d304ee4" + "$oid": "6674c31e95590f9fd945a188" } }, { - "title": "Frontend Developer", - "company": "Pinterest", + "title": "Engineering Manager", + "company": "Palantir", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.632Z" }, "endDate": { - "$date": "2024-08-04T18:46:39.052Z" + "$date": "2025-10-18T04:48:27.892Z" }, "_id": { - "$oid": "66723dae8f368f285d304ee5" + "$oid": "6674c31e95590f9fd945a189" } }, { - "title": "Senior Software Engineer", - "company": "PayPal", + "title": "Software Engineer", + "company": "Adobe", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.632Z" }, "endDate": { - "$date": "2025-01-06T03:08:07.281Z" + "$date": "2025-02-16T22:50:41.982Z" }, "_id": { - "$oid": "66723dae8f368f285d304ee6" + "$oid": "6674c31e95590f9fd945a18a" } } ] }, "education": [ { - "institution": "University of South Carolina", - "degree": "Master of Education (MEd)", - "fieldOfStudy": "Civil Engineering", + "institution": "Fudan University", + "degree": "Doctor of Business Administration (DBA)", + "fieldOfStudy": "Mechanical Engineering", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.632Z" }, "endDate": { - "$date": "2027-10-08T20:59:26.919Z" + "$date": "2024-11-03T01:08:34.011Z" }, "_id": { - "$oid": "66723dae8f368f285d304ee7" + "$oid": "6674c31e95590f9fd945a18b" } }, { - "institution": "University of California, Los Angeles (UCLA)", - "degree": "Bachelor of Fine Arts (BFA)", - "fieldOfStudy": "History", + "institution": "University of California, Berkeley", + "degree": "Technical School Certification", + "fieldOfStudy": "Management", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.632Z" }, "endDate": { - "$date": "2025-02-27T11:28:03.220Z" + "$date": "2027-04-22T07:09:15.120Z" }, "_id": { - "$oid": "66723dae8f368f285d304ee8" + "$oid": "6674c31e95590f9fd945a18c" } }, { - "institution": "Indiana University Bloomington", - "degree": "Technical School Certification", - "fieldOfStudy": "Film Studies", + "institution": "Yale University", + "degree": "Professional Development", + "fieldOfStudy": "Communication Studies", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.632Z" }, "endDate": { - "$date": "2028-03-26T02:44:49.301Z" + "$date": "2025-07-24T12:38:14.563Z" }, "_id": { - "$oid": "66723dae8f368f285d304ee9" + "$oid": "6674c31e95590f9fd945a18d" } } ], - "projects": [ - { - "name": "CodeReview", - "description": "Collaborative code review platform with annotations and feedback features.", - "link": "https://github.com/username/codereview", - "_id": { - "$oid": "66723dae8f368f285d304eea" - } - }, + "projects": [], + "personalBio": "Dedicated to upholding best practices in software engineering, including testing, code reviews, and version control.", + "testimonials": [ { - "name": "SmartLearning", - "description": "AI-driven personalized learning platform with adaptive learning algorithms.", - "link": "https://github.com/username/smartlearning", + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", "_id": { - "$oid": "66723dae8f368f285d304eeb" + "$oid": "6674c31e95590f9fd945a18e" } }, { - "name": "SecureBackup", - "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", - "link": "https://github.com/username/securebackup", - "_id": { - "$oid": "66723dae8f368f285d304eec" - } - } - ], - "personalBio": "Proven ability to lead technical projects from inception to successful deployment and maintenance.", - "testimonials": [ - { - "from": "Emily Brown", - "relation": "Client at GlobalSoft Solutions", - "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", "_id": { - "$oid": "66723dae8f368f285d304eed" + "$oid": "6674c31e95590f9fd945a18f" } }, { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", "_id": { - "$oid": "66723dae8f368f285d304eee" + "$oid": "6674c31e95590f9fd945a190" } }, { - "from": "Emma Thompson", - "relation": "Manager at DataTech Solutions", - "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", "_id": { - "$oid": "66723dae8f368f285d304eef" + "$oid": "6674c31e95590f9fd945a191" } } ], - "socialMediaLinks": { - "blog": "https://www.Gwenora-Agge-fake-blog.com", - "other": ["https://www.instagram.com/Gwenora-Agge-fake"] - }, + "socialMediaLinks": { "blog": "https://www.Piggy-Torrisi-fake-blog.com", "other": [] }, "availabilityForNetworking": false, - "bootcampExperience": "Le Wagon", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "66723dae8f368f285d304ee1" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304b2b" - }, - "firstName": "Piggy", - "lastName": "Torrisi", - "cohort": "LA 35", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, + "bootcampExperience": "Codesmith", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304ef0" + "$oid": "6674c31e95590f9fd945a187" }, - "education": [], - "projects": [], - "testimonials": [], "blogOrWriting": [], "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b2c" + "$oid": "6674c31695590f9fd9459df3" }, "firstName": "Niki", "lastName": "Glaysher", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "WCRI 46", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "CTRI 99", "graduationYear": 2024, "email": "nglaysher2o@kickstarter.com", "linkedInProfile": "https://www.linkedin.com/in/Niki-Glaysher-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", "skills": [ - "Unit Testing", - "Flask", - "Graph Theory", - "GraphQL", - "Collaboration", - "Blockchain", - "Code Review", - "Data Visualization", - "User Interface (UI) Design", - "Git", - "Kubernetes", - "NoSQL", - "Azure", - "Time Management", - "Event-Driven Architecture", - "Legacy Code Management", - "Technical Writing" + "Scrum", + "Reactive Programming", + "System Design", + "SaaS (Software as a Service)", + "Graph Databases" ], "specializations": [ - "Agile Development", + "Parallel Computing", + "Leadership", + "Data Science", + "Azure", + "WebSockets", + "Event-Driven Architecture", "Data Warehousing", - "API Integration", - "GraphQL", - "Communication Skills", - "API Development", - "Machine Learning", - "Data Visualization", - "Refactoring", - "BDD (Behavior-Driven Development)", - "Database Design" + "Android Development", + "Big Data", + "iOS Development", + "Containerization" ], "careerInformation": { - "currentPosition": { "title": "AI Engineer", "company": "Palantir" }, + "currentPosition": { "title": "Site Reliability Engineer", "company": "Adobe" }, "pastPositions": [ { - "title": "Site Reliability Engineer", - "company": "Snowflake", + "title": "Mobile Developer", + "company": "Zoom", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.632Z" }, "endDate": { - "$date": "2026-06-20T19:31:11.115Z" + "$date": "2028-04-18T14:26:05.342Z" }, "_id": { - "$oid": "66723dae8f368f285d304ef2" + "$oid": "6674c31e95590f9fd945a193" } }, { "title": "Android Developer", - "company": "Adobe", + "company": "GitHub", + "startDate": { + "$date": "2024-06-21T00:02:38.632Z" + }, + "endDate": { + "$date": "2028-01-11T11:38:10.734Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a194" + } + }, + { + "title": "Test Engineer", + "company": "Slack", + "startDate": { + "$date": "2024-06-21T00:02:38.632Z" + }, + "endDate": { + "$date": "2025-11-16T14:33:54.691Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a195" + } + }, + { + "title": "Senior Software Engineer", + "company": "Stripe", "startDate": { - "$date": "2024-06-19T02:08:46.633Z" + "$date": "2024-06-21T00:02:38.632Z" }, "endDate": { - "$date": "2026-04-23T22:21:03.519Z" + "$date": "2027-09-12T14:00:10.608Z" }, "_id": { - "$oid": "66723dae8f368f285d304ef3" + "$oid": "6674c31e95590f9fd945a196" } } ] }, - "education": [ + "education": [], + "projects": [ { - "institution": "University of Minnesota", - "degree": "Doctor of Dental Surgery (DDS)", - "fieldOfStudy": "Environmental Engineering", - "startDate": { - "$date": "2024-06-19T02:08:46.633Z" - }, - "endDate": { - "$date": "2025-03-22T20:03:37.805Z" - }, + "name": "FoodDelivery", + "description": "Online food delivery platform connecting restaurants with customers for food ordering.", + "link": "https://github.com/username/fooddelivery", "_id": { - "$oid": "66723dae8f368f285d304ef4" + "$oid": "6674c31e95590f9fd945a197" } - } - ], - "projects": [ + }, { - "name": "JobFinder", - "description": "Job search and application management platform with personalized recommendations.", - "link": "https://github.com/username/jobfinder", + "name": "MediCare", + "description": "Medical appointment scheduling and patient management system for healthcare providers.", + "link": "https://github.com/username/medicare", "_id": { - "$oid": "66723dae8f368f285d304ef5" + "$oid": "6674c31e95590f9fd945a198" } }, { - "name": "CryptoTrack", - "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", - "link": "https://github.com/username/cryptotrack", + "name": "SmartCity", + "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", + "link": "https://github.com/username/smartcity", + "_id": { + "$oid": "6674c31e95590f9fd945a199" + } + }, + { + "name": "MediCare", + "description": "Medical appointment scheduling and patient management system for healthcare providers.", + "link": "https://github.com/username/medicare", + "_id": { + "$oid": "6674c31e95590f9fd945a19a" + } + }, + { + "name": "SmartInventory", + "description": "Inventory management system with RFID and IoT integration for tracking assets.", + "link": "https://github.com/username/smartinventory", "_id": { - "$oid": "66723dae8f368f285d304ef6" + "$oid": "6674c31e95590f9fd945a19b" } } ], - "personalBio": "Focused on delivering user-centric solutions that address real-world needs and challenges.", + "personalBio": "Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.", "testimonials": [ { "from": "Noah Wilson", "relation": "Manager at DataTech Solutions", "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", "_id": { - "$oid": "66723dae8f368f285d304ef7" + "$oid": "6674c31e95590f9fd945a19c" } }, { - "from": "Ella Watson", + "from": "Emma Watson", "relation": "Director of Engineering at FutureTech", "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", "_id": { - "$oid": "66723dae8f368f285d304ef8" - } - }, - { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - "_id": { - "$oid": "66723dae8f368f285d304ef9" + "$oid": "6674c31e95590f9fd945a19d" } }, { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", "_id": { - "$oid": "66723dae8f368f285d304efa" + "$oid": "6674c31e95590f9fd945a19e" } } ], - "socialMediaLinks": { - "twitter": "https://x.com/Niki-Glaysher-fake", - "blog": "https://www.Niki-Glaysher-fake-blog.com", - "other": ["https://www.instagram.com/Niki-Glaysher-fake"] - }, + "socialMediaLinks": { "twitter": "https://x.com/Niki-Glaysher-fake", "other": [] }, "availabilityForNetworking": false, - "bootcampExperience": "Kenzie Academy", + "bootcampExperience": "Codesmith", "achievementsAndCertifications": [], "volunteerWork": [], "eventParticipation": [], "gallery": [], "_id": { - "$oid": "66723dae8f368f285d304ef1" + "$oid": "6674c31e95590f9fd945a192" }, "blogOrWriting": [], "__v": 0 diff --git a/scripts/db/mongo-dev-init/MOCK_THREADS.json b/scripts/db/mongo-dev-init/MOCK_THREADS.json index 69fa1303..b17269de 100644 --- a/scripts/db/mongo-dev-init/MOCK_THREADS.json +++ b/scripts/db/mongo-dev-init/MOCK_THREADS.json @@ -4,58 +4,58 @@ "$oid": "66723da68f368f285d304acd" }, "forum": { - "$oid": "66723dae8f368f285d304b94" + "$oid": "6674c31e95590f9fd9459e5c" }, - "title": "Tips for Effective Debugging", - "content": "Share your best practices and tools for debugging complex issues in software development. How do you approach troubleshooting and resolving bugs?", + "title": "Full Stack Development: Best Practices", + "content": "Best practices, tools, and frameworks for mastering full-stack development. How do you balance frontend and backend development responsibilities?", "createdAt": { - "$date": "2024-06-19T02:08:48.122Z" + "$date": "2024-06-21T00:02:39.500Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.122Z" + "$date": "2025-01-08T07:19:52.111Z" }, "_id": { - "$oid": "66723db08f368f285d304f5f" + "$oid": "6674c31f95590f9fd945a203" }, "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304acb" + "$oid": "6644c602515c654def9b2ae7" }, "forum": { - "$oid": "66723dae8f368f285d304b92" + "$oid": "6674c31e95590f9fd9459e5c" }, - "title": "Blockchain Development Platforms: Ethereum vs Hyperledger", - "content": "Comparing Ethereum and Hyperledger as blockchain development platforms. Which platform is suitable for different use cases?", + "title": "AI Ethics: Bias, Accountability, and Transparency", + "content": "Exploring ethical considerations in AI development, including bias mitigation, accountability frameworks, and transparency practices.", "createdAt": { - "$date": "2024-06-19T02:08:48.122Z" + "$date": "2024-06-21T00:02:39.500Z" }, "updatedAt": { - "$date": "2027-08-06T01:54:43.134Z" + "$date": "2027-08-22T12:54:42.090Z" }, "_id": { - "$oid": "66723db08f368f285d304f60" + "$oid": "6674c31f95590f9fd945a204" }, "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304acb" + "$oid": "6644c768515c654def9b2b09" }, "forum": { - "$oid": "66723dae8f368f285d304b93" + "$oid": "6674c31e95590f9fd9459e5c" }, - "title": "Software Development Methodologies: Agile vs Waterfall", - "content": "Comparing Agile and Waterfall methodologies for software development. Which approach suits your project and team dynamics?", + "title": "JavaScript Frameworks Comparison", + "content": "Comparing popular JavaScript frameworks like React, Angular, and Vue.js. Share your experiences, strengths, and weaknesses of each framework.", "createdAt": { - "$date": "2024-06-19T02:08:48.122Z" + "$date": "2024-06-21T00:02:39.500Z" }, "updatedAt": { - "$date": "2024-10-05T05:55:28.594Z" + "$date": "2028-03-07T02:35:36.257Z" }, "_id": { - "$oid": "66723db08f368f285d304f61" + "$oid": "6674c31f95590f9fd945a205" }, "__v": 0 }, @@ -64,258 +64,258 @@ "$oid": "66723da68f368f285d304acd" }, "forum": { - "$oid": "66723dae8f368f285d304b95" + "$oid": "6674c31e95590f9fd9459e5a" }, - "title": "How to Improve Code Review Process?", - "content": "Seeking advice on optimizing our team's code review process. What tools and practices do you use to ensure effective code reviews and maintain code quality?", + "title": "Cybersecurity Threats: Prevention and Response", + "content": "Discussing common cybersecurity threats and strategies for prevention and incident response. How do you secure your applications and data?", "createdAt": { - "$date": "2024-06-19T02:08:48.122Z" + "$date": "2024-06-21T00:02:39.501Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.122Z" + "$date": "2024-06-21T00:02:39.501Z" }, "_id": { - "$oid": "66723db08f368f285d304f62" + "$oid": "6674c31f95590f9fd945a206" }, "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304acd" + "$oid": "6674c31695590f9fd9459dc4" }, "forum": { - "$oid": "66723dae8f368f285d304b92" + "$oid": "6674c31e95590f9fd9459e5b" }, - "title": "Open Source Projects: Contributions and Impact", - "content": "Discussing the impact of open-source projects on the tech industry and society. How can open-source initiatives drive innovation and collaboration?", + "title": "Interview Preparation Tips", + "content": "Preparing for software engineering interviews? Discussing strategies, common interview questions, and resources to ace technical interviews.", "createdAt": { - "$date": "2024-06-19T02:08:48.122Z" + "$date": "2024-06-21T00:02:39.500Z" }, "updatedAt": { - "$date": "2024-07-10T05:52:14.542Z" + "$date": "2028-01-03T07:43:52.724Z" }, "_id": { - "$oid": "66723db08f368f285d304f63" + "$oid": "6674c31f95590f9fd945a207" }, "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304ae8" + "$oid": "6674c31695590f9fd9459dde" }, "forum": { - "$oid": "66723dae8f368f285d304b95" + "$oid": "6674c31e95590f9fd9459e5b" }, - "title": "AR/VR Development: Tools and Platforms", - "content": "Discussing tools, platforms, and development techniques for creating augmented reality (AR) and virtual reality (VR) applications.", + "title": "Open Source Projects: Contributions and Impact", + "content": "Discussing the impact of open-source projects on the tech industry and society. How can open-source initiatives drive innovation and collaboration?", "createdAt": { - "$date": "2024-06-19T02:08:48.123Z" + "$date": "2024-06-21T00:02:39.501Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.123Z" + "$date": "2024-06-21T00:02:39.501Z" }, "_id": { - "$oid": "66723db08f368f285d304f64" + "$oid": "6674c31f95590f9fd945a208" }, "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304af5" + "$oid": "6674c31695590f9fd9459de7" }, "forum": { - "$oid": "66723dae8f368f285d304b95" + "$oid": "6674c31e95590f9fd9459e59" }, - "title": "Software Testing: Strategies and Automation", - "content": "Strategies, tools, and best practices for software testing and test automation. How do you ensure comprehensive test coverage and quality?", + "title": "API Design: Best Practices and Guidelines", + "content": "Exploring best practices, design patterns, and guidelines for designing robust and developer-friendly APIs. What makes a good API?", "createdAt": { - "$date": "2024-06-19T02:08:48.123Z" + "$date": "2024-06-21T00:02:39.500Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.123Z" + "$date": "2024-12-28T14:26:53.154Z" }, "_id": { - "$oid": "66723db08f368f285d304f65" + "$oid": "6674c31f95590f9fd945a209" }, "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b2b" + "$oid": "6674c31695590f9fd9459dbd" }, "forum": { - "$oid": "66723dae8f368f285d304b96" + "$oid": "6674c31e95590f9fd9459e59" }, "title": "How to Improve Code Review Process?", "content": "Seeking advice on optimizing our team's code review process. What tools and practices do you use to ensure effective code reviews and maintain code quality?", "createdAt": { - "$date": "2024-06-19T02:08:48.122Z" + "$date": "2024-06-21T00:02:39.500Z" }, "updatedAt": { - "$date": "2028-01-01T09:49:13.737Z" + "$date": "2026-12-28T21:52:51.888Z" }, "_id": { - "$oid": "66723db08f368f285d304f66" + "$oid": "6674c31f95590f9fd945a20a" }, "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b04" + "$oid": "6644c7f7515c654def9b2b18" }, "forum": { - "$oid": "66723dae8f368f285d304b95" + "$oid": "6674c31e95590f9fd9459e5d" }, - "title": "API Design: Best Practices and Guidelines", - "content": "Exploring best practices, design patterns, and guidelines for designing robust and developer-friendly APIs. What makes a good API?", + "title": "Python vs Java: Which is Better for Backend Development?", + "content": "Debating the pros and cons of Python and Java for backend development. Share your experiences and preferences in choosing a backend programming language.", "createdAt": { - "$date": "2024-06-19T02:08:48.122Z" + "$date": "2024-06-21T00:02:39.502Z" }, "updatedAt": { - "$date": "2026-08-10T21:00:20.579Z" + "$date": "2024-06-21T00:02:39.502Z" }, "_id": { - "$oid": "66723db08f368f285d304f67" + "$oid": "6674c31f95590f9fd945a20b" }, "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b13" + "$oid": "6674c31695590f9fd9459dae" }, "forum": { - "$oid": "66723dae8f368f285d304b93" + "$oid": "6674c31e95590f9fd9459e5d" }, - "title": "Big Data Analytics: Tools and Techniques", - "content": "Exploring tools, frameworks, and techniques for analyzing and deriving insights from large datasets. How do you handle big data challenges?", + "title": "Tech Startups: Lessons Learned and Tips", + "content": "Sharing lessons learned, success stories, and practical tips for launching and scaling tech startups. What challenges did you face?", "createdAt": { - "$date": "2024-06-19T02:08:48.122Z" + "$date": "2024-06-21T00:02:39.500Z" }, "updatedAt": { - "$date": "2028-03-14T02:24:27.056Z" + "$date": "2025-02-16T19:16:47.598Z" }, "_id": { - "$oid": "66723db08f368f285d304f68" + "$oid": "6674c31f95590f9fd945a20c" }, "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b09" + "$oid": "6674c31695590f9fd9459dbd" }, "forum": { - "$oid": "66723dae8f368f285d304b94" + "$oid": "6674c31e95590f9fd9459e5c" }, - "title": "Mobile App Development Trends for 2024", - "content": "Predicting and discussing emerging trends and technologies in mobile app development for the upcoming year. What trends are shaping the mobile app landscape?", + "title": "Continuous Integration and Deployment (CI/CD)", + "content": "Exploring CI/CD pipelines, best practices, and tools for automating software delivery processes. Share your experiences and tips for implementing CI/CD.", "createdAt": { - "$date": "2024-06-19T02:08:48.122Z" + "$date": "2024-06-21T00:02:39.500Z" }, "updatedAt": { - "$date": "2028-01-28T07:59:01.210Z" + "$date": "2025-11-18T11:19:26.269Z" }, "_id": { - "$oid": "66723db08f368f285d304f69" + "$oid": "6674c31f95590f9fd945a20d" }, "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304aef" + "$oid": "6674c31695590f9fd9459dd1" }, "forum": { - "$oid": "66723dae8f368f285d304b95" + "$oid": "6674c31e95590f9fd9459e5c" }, "title": "AR/VR Development: Tools and Platforms", "content": "Discussing tools, platforms, and development techniques for creating augmented reality (AR) and virtual reality (VR) applications.", "createdAt": { - "$date": "2024-06-19T02:08:48.122Z" + "$date": "2024-06-21T00:02:39.500Z" }, "updatedAt": { - "$date": "2024-07-08T23:23:15.564Z" + "$date": "2028-01-03T05:20:56.159Z" }, "_id": { - "$oid": "66723db08f368f285d304f6a" + "$oid": "6674c31f95590f9fd945a20e" }, "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304ae2" + "$oid": "6674c31695590f9fd9459dc2" }, "forum": { - "$oid": "66723dae8f368f285d304b93" + "$oid": "6674c31e95590f9fd9459e5c" }, - "title": "Open Source Contributions: Getting Started", - "content": "Tips and advice for beginners on how to get started with contributing to open-source projects. What are the benefits of open-source contributions?", + "title": "Big Data Analytics: Tools and Techniques", + "content": "Exploring tools, frameworks, and techniques for analyzing and deriving insights from large datasets. How do you handle big data challenges?", "createdAt": { - "$date": "2024-06-19T02:08:48.122Z" + "$date": "2024-06-21T00:02:39.500Z" }, "updatedAt": { - "$date": "2026-01-10T02:11:44.673Z" + "$date": "2025-09-06T15:19:26.698Z" }, "_id": { - "$oid": "66723db08f368f285d304f6b" + "$oid": "6674c31f95590f9fd945a20f" }, "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304b21" + "$oid": "6674c31695590f9fd9459dc5" }, "forum": { - "$oid": "66723dae8f368f285d304b93" + "$oid": "6674c31e95590f9fd9459e59" }, - "title": "Tech Startups: Lessons Learned and Tips", - "content": "Sharing lessons learned, success stories, and practical tips for launching and scaling tech startups. What challenges did you face?", + "title": "UX/UI Design Principles for Developers", + "content": "Exploring UX/UI design principles and best practices for developers. How can developers contribute to creating user-friendly and visually appealing interfaces?", "createdAt": { - "$date": "2024-06-19T02:08:48.122Z" + "$date": "2024-06-21T00:02:39.502Z" }, "updatedAt": { - "$date": "2026-07-11T23:25:49.039Z" + "$date": "2024-06-21T00:02:39.502Z" }, "_id": { - "$oid": "66723db08f368f285d304f6c" + "$oid": "6674c31f95590f9fd945a210" }, "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304ad5" + "$oid": "6674c31695590f9fd9459dd3" }, "forum": { - "$oid": "66723dae8f368f285d304b96" + "$oid": "6674c31e95590f9fd9459e5a" }, - "title": "Data Privacy Regulations: Compliance Challenges", - "content": "Navigating data privacy regulations and compliance challenges in software development. How do you ensure GDPR and CCPA compliance?", + "title": "Introduction to Docker Containers", + "content": "New to Docker and containers? Let's discuss the basics, benefits, and practical applications of Docker in software development and deployment.", "createdAt": { - "$date": "2024-06-19T02:08:48.123Z" + "$date": "2024-06-21T00:02:39.502Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.123Z" + "$date": "2024-06-21T00:02:39.502Z" }, "_id": { - "$oid": "66723db08f368f285d304f6d" + "$oid": "6674c31f95590f9fd945a211" }, "__v": 0 }, { "user": { - "$oid": "66723da68f368f285d304acd" + "$oid": "6674c31695590f9fd9459dcc" }, "forum": { - "$oid": "66723dae8f368f285d304b93" + "$oid": "6674c31e95590f9fd9459e5b" }, - "title": "Backend Architecture Best Practices", - "content": "Discussing best practices for designing scalable and resilient backend architectures. How do you ensure high availability and fault tolerance?", + "title": "Agile Development: Scrum vs Kanban", + "content": "Comparing Scrum and Kanban methodologies for Agile software development. Which approach works better for your team and why?", "createdAt": { - "$date": "2024-06-19T02:08:48.123Z" + "$date": "2024-06-21T00:02:39.502Z" }, "updatedAt": { - "$date": "2024-06-19T02:08:48.123Z" + "$date": "2024-06-21T00:02:39.502Z" }, "_id": { - "$oid": "66723db08f368f285d304f6e" + "$oid": "6674c31f95590f9fd945a212" }, "__v": 0 } diff --git a/scripts/db/mongo-dev-init/MOCK_USERS.json b/scripts/db/mongo-dev-init/MOCK_USERS.json index 3a7d9042..d8c9e776 100644 --- a/scripts/db/mongo-dev-init/MOCK_USERS.json +++ b/scripts/db/mongo-dev-init/MOCK_USERS.json @@ -4,15 +4,15 @@ "lastName": "McTesterson", "email": "tester@codehammers.com", "profilePic": "https://www.codesmith.io/hubfs/Screen%20Shot%202024-06-10%20at%2010.46.24%20AM.png", - "password": "$2a$10$4nNlasDpS.OOjuQmjsvZc.oERB0Zn67que5rFmoimUztCuolpC8vK", + "password": "$2a$10$c0X2SgxNDviyiSfaWEP8NOznd4tOy0VnOvYOsm6zzcUOM9.JHlNLO", "_id": { "$oid": "66723da68f368f285d304ac9" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.547Z" + "$date": "2024-06-21T00:02:30.740Z" }, "date": { - "$date": "2024-06-19T02:08:38.547Z" + "$date": "2024-06-21T00:02:30.740Z" }, "__v": 0 }, @@ -20,16 +20,16 @@ "firstName": "Jane", "lastName": "Doe", "email": "jane@codehammers.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$iz0QHjofc4RaXT5.NVPuvOvDfLFvQLoArMlo2Zceev8vguAUNQYfK", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$d.8UHxw3IQ3NGKR368sgFunb26/ayAHkbVd3JjDdD6ufAvgumU.om", "_id": { - "$oid": "66723da68f368f285d304aca" + "$oid": "6644c768515c654def9b2b09" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.547Z" + "$date": "2024-06-21T00:02:30.740Z" }, "date": { - "$date": "2024-06-19T02:08:38.547Z" + "$date": "2024-06-21T00:02:30.740Z" }, "__v": 0 }, @@ -37,16 +37,16 @@ "firstName": "John", "lastName": "Dough", "email": "john@codehammers.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$LsAaR7Pucw15tiDu5LkBJeYk6zIdcs.njyfuHaSKOs4xcDRkEBJJG", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$4Xjvk2vKv2penssuOg8d0OHcAgGAAIEQb/hRcfsV4FgYIiQFAlw.2", "_id": { - "$oid": "66723da68f368f285d304acb" + "$oid": "6644c602515c654def9b2ae7" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.547Z" + "$date": "2024-06-21T00:02:30.740Z" }, "date": { - "$date": "2024-06-19T02:08:38.547Z" + "$date": "2024-06-21T00:02:30.740Z" }, "__v": 0 }, @@ -54,16 +54,16 @@ "firstName": "Jaime", "lastName": "Doh", "email": "jaime@codehammers.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$HS9X5Q7FC2qOFMdeReqBuOysJ9T.BvMgYgFE2MNi87fCvLOEmsZP6", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$/bKBoPbjvbz661JvEyrX0e4hHgdpcINx2Kredu1SXs1kaygIesX5a", "_id": { - "$oid": "66723da68f368f285d304acc" + "$oid": "6644c7f7515c654def9b2b18" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.547Z" + "$date": "2024-06-21T00:02:30.741Z" }, "date": { - "$date": "2024-06-19T02:08:38.547Z" + "$date": "2024-06-21T00:02:30.741Z" }, "__v": 0 }, @@ -71,16 +71,16 @@ "firstName": "Homer", "lastName": "Simpson", "email": "homer@donuts.com", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$q6827CzMYPN1A5neqtw9J.ALDZc3.kSPeo0gyyQMoKo5ZtQrU19mW", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$1I4VeLgKfhYeraIlKViBSe2OWsIvBLg7wFXyH8G6SGWBAWY8qg0wK", "_id": { "$oid": "66723da68f368f285d304acd" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.547Z" + "$date": "2024-06-21T00:02:30.741Z" }, "date": { - "$date": "2024-06-19T02:08:38.547Z" + "$date": "2024-06-21T00:02:30.741Z" }, "__v": 0 }, @@ -88,16 +88,16 @@ "firstName": "Corine", "lastName": "Tugwell", "email": "ctugwell0@ovh.net", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$DfbU8exBcJm7RHSESXKzPuDvmaKENYMSqaSasFZRnQHwZYpxqqfCa", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$bAEpatT903JIyk/8AldztuqIz5afslRUVTRPJun4naBUmXvc5c0fO", "_id": { - "$oid": "66723da68f368f285d304ace" + "$oid": "6674c31695590f9fd9459d95" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.547Z" + "$date": "2024-06-21T00:02:30.741Z" }, "date": { - "$date": "2024-06-19T02:08:38.547Z" + "$date": "2024-06-21T00:02:30.741Z" }, "__v": 0 }, @@ -105,16 +105,16 @@ "firstName": "Brody", "lastName": "Cumpton", "email": "bcumpton1@bluehost.com", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$pG04PinN11RRJRzVZGZS1.xFkZKw5SzsEiwUMot4Xa6KU728G0ndC", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$6GrwWSo.NSETz5DPCOwOHO9xNKoOhzmAwCPptin4BUfZJcbp2yxAa", "_id": { - "$oid": "66723da68f368f285d304acf" + "$oid": "6674c31695590f9fd9459d96" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.741Z" }, "date": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.741Z" }, "__v": 0 }, @@ -122,16 +122,16 @@ "firstName": "Moselle", "lastName": "Duro", "email": "mduro2@technorati.com", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$1lt3VNVar1ZlTgO6WDNJQOYsGC/7l2BJK1EPkYTglCntv7fQBxjPG", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$wuuA/xXCwgID/f22BVSaJuZT1LOPhgvZzxmqQGK1jG7xmEfXjse6S", "_id": { - "$oid": "66723da68f368f285d304ad0" + "$oid": "6674c31695590f9fd9459d97" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.741Z" }, "date": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.741Z" }, "__v": 0 }, @@ -139,16 +139,16 @@ "firstName": "Winifred", "lastName": "Carnelley", "email": "wcarnelley3@ucsd.edu", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$MtHPd8jmKCOh3et/IqjmpeTxBt2nk1oII1axnxPj/3bnB4tGA3RN6", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$nYnt.4qOeYnoj.V4nqeAXuHI21SjOIlisTSmgKilssNlOfpc0py5W", "_id": { - "$oid": "66723da68f368f285d304ad1" + "$oid": "6674c31695590f9fd9459d98" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.741Z" }, "date": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.741Z" }, "__v": 0 }, @@ -156,16 +156,16 @@ "firstName": "Marchelle", "lastName": "Truin", "email": "mtruin4@stumbleupon.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$Y2MqY7.kyXaanlUTcRuTC.JxbwFMYS7VfPwwNgPgiRX5/FoK0w1tG", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$8mfkeb6./g1rjvkk24a/g.XkKeuzgpjix0unQDZJ/y1MA4i.Wtnlm", "_id": { - "$oid": "66723da68f368f285d304ad2" + "$oid": "6674c31695590f9fd9459d99" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.741Z" }, "date": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.741Z" }, "__v": 0 }, @@ -173,16 +173,16 @@ "firstName": "Cally", "lastName": "Gisbey", "email": "cgisbey5@squarespace.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$Qsrf1su8ae1iesBZbyI4kufkT9bh5MXOciQpIL8.SNy7mlZTl0ixG", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$3XFoIpuYAevbYJAjDVlQZe432ZkrjjSXBavewnGy3ZAhNrpae8KRe", "_id": { - "$oid": "66723da68f368f285d304ad3" + "$oid": "6674c31695590f9fd9459d9a" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.742Z" }, "date": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.742Z" }, "__v": 0 }, @@ -190,16 +190,16 @@ "firstName": "Arlina", "lastName": "Moodie", "email": "amoodie6@twitpic.com", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$ZD7Zc0s4PRmQNn./X1rmsO8kWhMfSKllUmjsbX5eSnKJjWVuMTIku", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$S1SMFKC42HcbFe1HGyCNuOWlHEOZByMWiYQQ8SV8/TwRbW9MxDHsW", "_id": { - "$oid": "66723da68f368f285d304ad4" + "$oid": "6674c31695590f9fd9459d9b" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.742Z" }, "date": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.742Z" }, "__v": 0 }, @@ -207,16 +207,16 @@ "firstName": "Shurlock", "lastName": "Tytcomb", "email": "stytcomb8@google.it", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$MNWFMiJ2.3YHYzAk90uf.eiNPvFDgeOVX7sfT3E8tIv2l1wNSwRvK", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$rBUjvNJcYzG1PPR0Fx4Z7eX/462JNC8co2yMTDhQ1N5jpeGv5ujla", "_id": { - "$oid": "66723da68f368f285d304ad5" + "$oid": "6674c31695590f9fd9459d9c" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.742Z" }, "date": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.742Z" }, "__v": 0 }, @@ -224,16 +224,16 @@ "firstName": "Ermina", "lastName": "Guyton", "email": "eguyton9@blog.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$bcz5rW0VlqFn4tElK1.oUeSaPAlDezYkMBblrc7/KUTsh.WDAZGd.", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$/ZiwIFa0JU5On5646dZVLeIq1iPJkbbOyQno.F4tFdcDHaImZN1VC", "_id": { - "$oid": "66723da68f368f285d304ad6" + "$oid": "6674c31695590f9fd9459d9d" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.742Z" }, "date": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.742Z" }, "__v": 0 }, @@ -242,15 +242,15 @@ "lastName": "Halwood", "email": "shalwooda@sciencedirect.com", "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$3QvVkpEAA5w6Tg.u6nASKee9rDuF4ZttyGQGot4Apcl39Irt4LXCS", + "password": "$2a$10$uuUTsRN9JHk1ikLagbVrf.2Sbus/TSni3nRkvLZmWsR2o62l/Xf7G", "_id": { - "$oid": "66723da68f368f285d304ad7" + "$oid": "6674c31695590f9fd9459d9e" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.742Z" }, "date": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.742Z" }, "__v": 0 }, @@ -258,16 +258,16 @@ "firstName": "Nigel", "lastName": "Clemenzo", "email": "nclemenzob@fotki.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$Er.qW3bucAa51lUS0cHnZOqQ96nqz6tRyKA39.AaDxplQpDHysJCy", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$ZglrpFMSK6Z3aOBFB0uhXemRi2CWc.iQSRMY9JWM5sOu1SLE4A8Au", "_id": { - "$oid": "66723da68f368f285d304ad8" + "$oid": "6674c31695590f9fd9459d9f" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.742Z" }, "date": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.742Z" }, "__v": 0 }, @@ -275,16 +275,16 @@ "firstName": "Colver", "lastName": "Oswell", "email": "coswellc@wsj.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$OgQLHcfNLT.atUxtwljjCOyhqwD77ugoQ.XKoMqszDuyNcXe5qRgq", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$NPh/4KvzSPPD5S3tb0FzyuAWSqXdvAJspNNo7fEGBH02Yum0SR93W", "_id": { - "$oid": "66723da68f368f285d304ad9" + "$oid": "6674c31695590f9fd9459da0" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.742Z" }, "date": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.742Z" }, "__v": 0 }, @@ -292,16 +292,16 @@ "firstName": "Saundra", "lastName": "Normabell", "email": "snormabelld@businessinsider.com", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$37E/UShb1BFgeFF/cyoj6ujh3FKrjIhxSyeIGB9qknzs9wT4GxLce", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$nEyqx1DkU5Csqmr2fH7ZxOLlcDOm4EyXFzvY/ndEi0av664fETtG2", "_id": { - "$oid": "66723da68f368f285d304ada" + "$oid": "6674c31695590f9fd9459da1" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.742Z" }, "date": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.742Z" }, "__v": 0 }, @@ -309,16 +309,16 @@ "firstName": "Grant", "lastName": "Chasney", "email": "gchasneye@mediafire.com", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$IPScRe7qPTk5oVXiOycspucTcCWpy0va/iSOncyylhLQk5L/4B1j.", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$3Mjw3.Zy8Oa.LQdnhx47Eukk.ric0heo0H7T5rHjMGUJ5K1.W/PwC", "_id": { - "$oid": "66723da68f368f285d304adb" + "$oid": "6674c31695590f9fd9459da2" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.742Z" }, "date": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.742Z" }, "__v": 0 }, @@ -326,16 +326,16 @@ "firstName": "Franni", "lastName": "Chance", "email": "fchancef@ted.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$iZlarUiQrzxZaOvqOeU.SuIkqSRsM/tGvKBpPsazmf.vcBTVPCRF.", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$vzEqPWVbwZ6ttUM0/apgKe1mtSkuoZdSETZuCL3xv68SKqzR7BVVG", "_id": { - "$oid": "66723da68f368f285d304adc" + "$oid": "6674c31695590f9fd9459da3" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.742Z" }, "date": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.742Z" }, "__v": 0 }, @@ -343,16 +343,16 @@ "firstName": "Clarance", "lastName": "Meecher", "email": "cmeecherg@addthis.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$qexLI5wTXw1HIBJ0.TYbBOTKhq4GQQD0psaAn9kysPlFu9uLFwFmG", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$gNzhVjb92kkMHObvxKUgwet8JqxMHzWGrerev1R/SXeg..ujeQP2e", "_id": { - "$oid": "66723da68f368f285d304add" + "$oid": "6674c31695590f9fd9459da4" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.743Z" }, "date": { - "$date": "2024-06-19T02:08:38.548Z" + "$date": "2024-06-21T00:02:30.743Z" }, "__v": 0 }, @@ -360,16 +360,16 @@ "firstName": "Katharine", "lastName": "Lancett", "email": "klancetth@sfgate.com", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$1NOV75rYeIdK2Ll5HFSl/egyxHMUWI0EEFWVG0eDlFrCo0950948e", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$Dqgx6cItSwnyLKLWgcCddehWUZwHDrBg.KVRlMtQRDz4/J.cK8XCO", "_id": { - "$oid": "66723da68f368f285d304ade" + "$oid": "6674c31695590f9fd9459da5" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.549Z" + "$date": "2024-06-21T00:02:30.743Z" }, "date": { - "$date": "2024-06-19T02:08:38.549Z" + "$date": "2024-06-21T00:02:30.743Z" }, "__v": 0 }, @@ -378,15 +378,15 @@ "lastName": "Dubber", "email": "mdubberi@dropbox.com", "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$cvSwbRvPXk/NcSbqkoGzIOiQAh8kr7zlY92QdNk5cuQfzgd3wE9Oi", + "password": "$2a$10$2sXwrCie3RBcISPx.n1JXOZ8/7EtXvWoaX2cCO5OpyOpbZSPfWpfm", "_id": { - "$oid": "66723da68f368f285d304adf" + "$oid": "6674c31695590f9fd9459da6" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.549Z" + "$date": "2024-06-21T00:02:30.743Z" }, "date": { - "$date": "2024-06-19T02:08:38.549Z" + "$date": "2024-06-21T00:02:30.743Z" }, "__v": 0 }, @@ -394,16 +394,16 @@ "firstName": "Addy", "lastName": "Fass", "email": "afassj@vistaprint.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$xqUI2OzQApuklpM8ZbqVSe7EcROwEQF5fSVjwbarcCeZKm3Fd6Ed6", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$eR/bdbrlnaYZBCUuOTANguZ9XxddD1nQv8/jy747NB4QZceq.k6wK", "_id": { - "$oid": "66723da68f368f285d304ae0" + "$oid": "6674c31695590f9fd9459da7" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.549Z" + "$date": "2024-06-21T00:02:30.743Z" }, "date": { - "$date": "2024-06-19T02:08:38.549Z" + "$date": "2024-06-21T00:02:30.743Z" }, "__v": 0 }, @@ -411,16 +411,16 @@ "firstName": "Sollie", "lastName": "Puckinghorne", "email": "spuckinghornek@topsy.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$25VrUZ7RvUV21MLputuMJuV0DOZvGBheSDe35M6jqeiBTanX6Wzai", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$QjgeksX.EEVfiauQUAixdu4IQ8sxqPICrZO9CsdT76W1jkhPMDgFO", "_id": { - "$oid": "66723da68f368f285d304ae1" + "$oid": "6674c31695590f9fd9459da8" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.549Z" + "$date": "2024-06-21T00:02:30.743Z" }, "date": { - "$date": "2024-06-19T02:08:38.549Z" + "$date": "2024-06-21T00:02:30.743Z" }, "__v": 0 }, @@ -428,16 +428,16 @@ "firstName": "Xena", "lastName": "Tomczynski", "email": "xtomczynskil@ted.com", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$rd.p9NsE83xR5p1rI9Stvu/UeZp6Aj5CE6bnpYA7dZ8oNxbm1pbFa", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$iL8vrM9gOoebGLP.lKHQi.sJYBC.pIVQPqyf7d3GwRPl1TFsXfQxG", "_id": { - "$oid": "66723da68f368f285d304ae2" + "$oid": "6674c31695590f9fd9459da9" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.549Z" + "$date": "2024-06-21T00:02:30.743Z" }, "date": { - "$date": "2024-06-19T02:08:38.549Z" + "$date": "2024-06-21T00:02:30.743Z" }, "__v": 0 }, @@ -445,16 +445,16 @@ "firstName": "Harmonie", "lastName": "Karpinski", "email": "hkarpinskim@g.co", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$VDYjLcTNDotJitplB5.k3ewhW5VqCj.FHHf14A.Bv3QJVd/pPJslu", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$Qc1P0ObDVoDMY5Z2mRfZv.rI3eFVMzVsiER.JdeX.BiZyQvia6Foy", "_id": { - "$oid": "66723da68f368f285d304ae3" + "$oid": "6674c31695590f9fd9459daa" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.549Z" + "$date": "2024-06-21T00:02:30.743Z" }, "date": { - "$date": "2024-06-19T02:08:38.549Z" + "$date": "2024-06-21T00:02:30.743Z" }, "__v": 0 }, @@ -462,16 +462,16 @@ "firstName": "Marielle", "lastName": "Crocket", "email": "mcrocketn@craigslist.org", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$szoDjGAzB3I0VcMZpZrL1OtKcR4vKD42JobyfkDBO46tdnzps43s2", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$Lz1SenS74eYvYWxTAA0GouQH/P.yzRzbeNQC5AW1FiwDmINx3/mU.", "_id": { - "$oid": "66723da68f368f285d304ae4" + "$oid": "6674c31695590f9fd9459dab" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.549Z" + "$date": "2024-06-21T00:02:30.743Z" }, "date": { - "$date": "2024-06-19T02:08:38.549Z" + "$date": "2024-06-21T00:02:30.743Z" }, "__v": 0 }, @@ -480,15 +480,15 @@ "lastName": "Blasing", "email": "ublasingo@yahoo.com", "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$O6RBdgXvl29lgD0rYjRxxuin75uwR2iVQoia6DEWAz6czKTb7Onqq", + "password": "$2a$10$KdUpL.A42993PSdgR3grkOAAlgdMNjCNKfr2KEp31SftCKMwaKhjq", "_id": { - "$oid": "66723da68f368f285d304ae5" + "$oid": "6674c31695590f9fd9459dac" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.549Z" + "$date": "2024-06-21T00:02:30.743Z" }, "date": { - "$date": "2024-06-19T02:08:38.549Z" + "$date": "2024-06-21T00:02:30.743Z" }, "__v": 0 }, @@ -496,16 +496,16 @@ "firstName": "Cheri", "lastName": "Danielsson", "email": "cdanielssonp@example.com", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$1swC9sdzhCcY7Qsbc6tr3erVcSozlOxuf3esahaTlaB2.6.JqOkaC", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$38mEsJo9ZBkA7i0eGuNFBelle930q9Koamnpl/R.WbM2ksUxwsGCK", "_id": { - "$oid": "66723da68f368f285d304ae6" + "$oid": "6674c31695590f9fd9459dad" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.550Z" + "$date": "2024-06-21T00:02:30.743Z" }, "date": { - "$date": "2024-06-19T02:08:38.550Z" + "$date": "2024-06-21T00:02:30.743Z" }, "__v": 0 }, @@ -513,16 +513,16 @@ "firstName": "Durand", "lastName": "Joron", "email": "djoronq@google.cn", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$Ou.5wePG.7qP9EHjNjmu.e.mhkWU3an2eoa5vN4Lk23m2wn5tk5G.", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$dR986nCxXbKUO5AdsP0nWuBzxuYWT7tZD9FI8ms3./WQkqSO.rnPS", "_id": { - "$oid": "66723da68f368f285d304ae7" + "$oid": "6674c31695590f9fd9459dae" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.550Z" + "$date": "2024-06-21T00:02:30.744Z" }, "date": { - "$date": "2024-06-19T02:08:38.550Z" + "$date": "2024-06-21T00:02:30.744Z" }, "__v": 0 }, @@ -530,16 +530,16 @@ "firstName": "Kristien", "lastName": "Burgett", "email": "kburgettr@kickstarter.com", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$I/wMtszmY0sJD/jNVnhtC.altvjPivUT5ogqPWHAxUB8zi2VJ2oLO", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$SwzXRtmThsLIga6xLNMdIuUgtkC5XXcNFVGDde.RqnLaN2PlZbZjG", "_id": { - "$oid": "66723da68f368f285d304ae8" + "$oid": "6674c31695590f9fd9459daf" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.550Z" + "$date": "2024-06-21T00:02:30.744Z" }, "date": { - "$date": "2024-06-19T02:08:38.550Z" + "$date": "2024-06-21T00:02:30.744Z" }, "__v": 0 }, @@ -547,16 +547,16 @@ "firstName": "Kaia", "lastName": "Fassmann", "email": "kfassmanns@ted.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$pLWSWJ7emwwD1B1To1uLaOmyRF9P7tDCUtrrB.Vz.36DThmD1xNwe", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$ZjqbLPNZqTB66nSvHNwZEuI6T0EgmlHO6LmyhIaX4hLDFP9vcTW6K", "_id": { - "$oid": "66723da68f368f285d304ae9" + "$oid": "6674c31695590f9fd9459db0" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.550Z" + "$date": "2024-06-21T00:02:30.744Z" }, "date": { - "$date": "2024-06-19T02:08:38.550Z" + "$date": "2024-06-21T00:02:30.744Z" }, "__v": 0 }, @@ -564,16 +564,16 @@ "firstName": "Lockwood", "lastName": "Moxham", "email": "lmoxhamt@wikia.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$L800ns2A9G0yORqTPqcVG.Si8hhRddmmn/EMcVVwtLU9VEH2tL6rK", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$Pgv1mMBFMcPLw.Ru75vlJeBeDOstXAPk4cVNwmYPpA5DHeUCxbwVC", "_id": { - "$oid": "66723da68f368f285d304aea" + "$oid": "6674c31695590f9fd9459db1" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.550Z" + "$date": "2024-06-21T00:02:30.744Z" }, "date": { - "$date": "2024-06-19T02:08:38.550Z" + "$date": "2024-06-21T00:02:30.744Z" }, "__v": 0 }, @@ -581,16 +581,16 @@ "firstName": "Tessie", "lastName": "Sugden", "email": "tsugdenu@npr.org", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$ZJTC1RBKBeEYOibhVaGwtug46CMhoe.S0sBqiXhnmFMJhPSK9U.FS", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$bvYvx8tjsUX2S4h.7fZH1OSet1zW1VeszDkqK5b71bfW1DGngB1xq", "_id": { - "$oid": "66723da68f368f285d304aeb" + "$oid": "6674c31695590f9fd9459db2" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.550Z" + "$date": "2024-06-21T00:02:30.744Z" }, "date": { - "$date": "2024-06-19T02:08:38.550Z" + "$date": "2024-06-21T00:02:30.744Z" }, "__v": 0 }, @@ -598,16 +598,16 @@ "firstName": "Rea", "lastName": "Jeremiah", "email": "rjeremiahv@wikispaces.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$q4iYpCBGSKt7shUf7PXj0u8buO6.xLqaG/iicOXUqeKvtcwOnHwdG", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$FfEBgXBRMwOyS/IV60fhe.zGy0arwEXA3yAlSUsRrDRWtOdbCtMTy", "_id": { - "$oid": "66723da68f368f285d304aec" + "$oid": "6674c31695590f9fd9459db3" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.550Z" + "$date": "2024-06-21T00:02:30.744Z" }, "date": { - "$date": "2024-06-19T02:08:38.550Z" + "$date": "2024-06-21T00:02:30.744Z" }, "__v": 0 }, @@ -615,16 +615,16 @@ "firstName": "Cassie", "lastName": "Meadows", "email": "cmeadowsw@smugmug.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$Aq2.S4y1w4ziMyA5cts1wu3n26guigf9CuiaPDNsGr7gObJGz7/Wq", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$ECz527fWRRJVrEY0rLNJau8.N7EjiIqvZZNZPqgjjZvxEfkytdVUO", "_id": { - "$oid": "66723da68f368f285d304aed" + "$oid": "6674c31695590f9fd9459db4" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.550Z" + "$date": "2024-06-21T00:02:30.744Z" }, "date": { - "$date": "2024-06-19T02:08:38.550Z" + "$date": "2024-06-21T00:02:30.744Z" }, "__v": 0 }, @@ -632,16 +632,16 @@ "firstName": "Kelci", "lastName": "Bastide", "email": "kbastidex@latimes.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$DrV6O71n1sKT3DDWH7OfIeHqzNgLG3lNjo6iE9lpLNwn0lSkTC0Za", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$XfZLE6R6uzyO/Mltvg3Il.FuYBLXN2E1GlO4o9eb6PoHRwEkLc8.e", "_id": { - "$oid": "66723da68f368f285d304aee" + "$oid": "6674c31695590f9fd9459db5" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.551Z" + "$date": "2024-06-21T00:02:30.744Z" }, "date": { - "$date": "2024-06-19T02:08:38.551Z" + "$date": "2024-06-21T00:02:30.744Z" }, "__v": 0 }, @@ -649,16 +649,16 @@ "firstName": "Thurston", "lastName": "Speechly", "email": "tspeechlyy@plala.or.jp", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$O2NpWEyAOyMXqt1D.uSLS.MUzkUpCupBYmo4wm9oe.ekgMg5GdLIa", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$ZSSVHxCfb9W3kDKMJ1HYiO5aG1EqMvlxC9Icde0FJcAj4xr32c2/.", "_id": { - "$oid": "66723da68f368f285d304aef" + "$oid": "6674c31695590f9fd9459db6" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.551Z" + "$date": "2024-06-21T00:02:30.744Z" }, "date": { - "$date": "2024-06-19T02:08:38.551Z" + "$date": "2024-06-21T00:02:30.744Z" }, "__v": 0 }, @@ -666,16 +666,16 @@ "firstName": "Silas", "lastName": "Reyes", "email": "sreyesz@google.co.jp", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$HS.i2mZhp36AwhcXEJEQo.Eyw8QnFM7GJWyxoz1vQP7m0srP64u/u", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$A2R1sxcW.o8cUqZqOZb0tee2n5/nHG425PHTSRiM/uZgDkfdXEac.", "_id": { - "$oid": "66723da68f368f285d304af0" + "$oid": "6674c31695590f9fd9459db7" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.551Z" + "$date": "2024-06-21T00:02:30.744Z" }, "date": { - "$date": "2024-06-19T02:08:38.551Z" + "$date": "2024-06-21T00:02:30.744Z" }, "__v": 0 }, @@ -683,16 +683,16 @@ "firstName": "Marley", "lastName": "Boshard", "email": "mboshard10@tiny.cc", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$.DBeQx0oFcWDrGTb1YIv5OOT3cjfxtBnFTvuI4BXzdbu7cdlh4nqi", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$WQ9mJLUpUp8EHOO4sLcqK.dMv/oeegUOSBivgoYiKKsYqVnSAOCwq", "_id": { - "$oid": "66723da68f368f285d304af1" + "$oid": "6674c31695590f9fd9459db8" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.551Z" + "$date": "2024-06-21T00:02:30.745Z" }, "date": { - "$date": "2024-06-19T02:08:38.551Z" + "$date": "2024-06-21T00:02:30.745Z" }, "__v": 0 }, @@ -700,16 +700,16 @@ "firstName": "Eb", "lastName": "Dargie", "email": "edargie11@artisteer.com", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$gPZGdcyOxB5oFXpC/omEEeuCM3JsUfhFJVdn6EpDXhvbZDBfQfZym", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$pHLNPYbTm8TjtCs2rgG8H.AXhe/yfi0CV3pH7hb9Pvh3G5QIFv3.u", "_id": { - "$oid": "66723da68f368f285d304af2" + "$oid": "6674c31695590f9fd9459db9" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.551Z" + "$date": "2024-06-21T00:02:30.745Z" }, "date": { - "$date": "2024-06-19T02:08:38.551Z" + "$date": "2024-06-21T00:02:30.745Z" }, "__v": 0 }, @@ -717,16 +717,16 @@ "firstName": "Dian", "lastName": "Dackombe", "email": "ddackombe13@ihg.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$5WAnVttnwZ2YzGN46yHxNeHbKZGw.v7dQPNq70YL8zGA9WFY0u7bq", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$fyeUovoACjivxo/r5oVCrO7ZB1bNDMtQSKAaJQnXAIFi4jkKB6VB2", "_id": { - "$oid": "66723da68f368f285d304af3" + "$oid": "6674c31695590f9fd9459dba" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.551Z" + "$date": "2024-06-21T00:02:30.745Z" }, "date": { - "$date": "2024-06-19T02:08:38.551Z" + "$date": "2024-06-21T00:02:30.745Z" }, "__v": 0 }, @@ -734,16 +734,16 @@ "firstName": "Freedman", "lastName": "Scrafton", "email": "fscrafton14@posterous.com", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$6e1MZoxtgtb6a/bxxSF2seSOqaQtKNPE.L3Y60dHlBXvrRn5Rugue", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$UhJBjqan9EwBza.OIaoocuRJIMns2.DSQRo1zdU0jCkf9MUofLNgK", "_id": { - "$oid": "66723da68f368f285d304af4" + "$oid": "6674c31695590f9fd9459dbb" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.551Z" + "$date": "2024-06-21T00:02:30.745Z" }, "date": { - "$date": "2024-06-19T02:08:38.551Z" + "$date": "2024-06-21T00:02:30.745Z" }, "__v": 0 }, @@ -751,16 +751,16 @@ "firstName": "Tabbitha", "lastName": "Jolliffe", "email": "tjolliffe15@bbb.org", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$dDWBGqW3SkiTobdhxI88d.E0zMjREaflTFDUB4Mz1ppTq/lQzYsqW", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$ri1xuKY9y5x61geNfZVeaOm3x6FQZBZ/AZNaPC42PMfSqFVzIZR96", "_id": { - "$oid": "66723da68f368f285d304af5" + "$oid": "6674c31695590f9fd9459dbc" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.551Z" + "$date": "2024-06-21T00:02:30.745Z" }, "date": { - "$date": "2024-06-19T02:08:38.551Z" + "$date": "2024-06-21T00:02:30.745Z" }, "__v": 0 }, @@ -768,16 +768,16 @@ "firstName": "Jordon", "lastName": "Ganley", "email": "jganley16@geocities.jp", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$K47WeY.F8cn2ouzh.IWRreOmxr93u..YfOj0fBkGN/ieitwpYYbfW", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$uyYmPhoHR4X7ZC8nPtcuVO1g7MyMk7QnDUvdZwI19fxFVM.O76HqO", "_id": { - "$oid": "66723da68f368f285d304af6" + "$oid": "6674c31695590f9fd9459dbd" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.551Z" + "$date": "2024-06-21T00:02:30.745Z" }, "date": { - "$date": "2024-06-19T02:08:38.551Z" + "$date": "2024-06-21T00:02:30.745Z" }, "__v": 0 }, @@ -785,16 +785,16 @@ "firstName": "Annora", "lastName": "Brigge", "email": "abrigge17@joomla.org", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$VniUHaN.H71tmAznnHK1yOK/6RDaSScCE.OYTSA6moGm0SGQaeSyK", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$6JCzmOuJTX7ZrVPoE1fklObzQJT4dfiLScKeNkgk2hOZIVdlz/HOa", "_id": { - "$oid": "66723da68f368f285d304af7" + "$oid": "6674c31695590f9fd9459dbe" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.551Z" + "$date": "2024-06-21T00:02:30.745Z" }, "date": { - "$date": "2024-06-19T02:08:38.551Z" + "$date": "2024-06-21T00:02:30.745Z" }, "__v": 0 }, @@ -802,16 +802,16 @@ "firstName": "Bethanne", "lastName": "Osband", "email": "bosband18@blinklist.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$MTdJQu1YJ884LrW23dNDM.nsdPwRJDnNQdlvVHXPCH90OjM6RB/.W", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$OswubXObu/d6YNVY5CVWf.OSGEhi8fwioSabaBqJaLAgF3VDbpnvu", "_id": { - "$oid": "66723da68f368f285d304af8" + "$oid": "6674c31695590f9fd9459dbf" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.551Z" + "$date": "2024-06-21T00:02:30.745Z" }, "date": { - "$date": "2024-06-19T02:08:38.551Z" + "$date": "2024-06-21T00:02:30.745Z" }, "__v": 0 }, @@ -819,16 +819,16 @@ "firstName": "Hedda", "lastName": "Tallquist", "email": "htallquist19@cisco.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$Agi4IIjyyPYdRMZ2BmitAu6Gt/LRvu1g0TedS8WZCUpulRVmNWxIS", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$rLc8dMDd5UySXVxXZ8TVtuoRZk6bI4/Tn4iffS2sGWWjZ4vUTGIpu", "_id": { - "$oid": "66723da68f368f285d304af9" + "$oid": "6674c31695590f9fd9459dc0" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.552Z" + "$date": "2024-06-21T00:02:30.745Z" }, "date": { - "$date": "2024-06-19T02:08:38.552Z" + "$date": "2024-06-21T00:02:30.745Z" }, "__v": 0 }, @@ -836,16 +836,16 @@ "firstName": "Lynelle", "lastName": "Grosvener", "email": "lgrosvener1a@google.cn", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$oiCS8rXb8EQnMb4Q4d4pjeP5enSHHKxmV7lqaKnv2DoQ2s3NMPiAu", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$gNRJ/WPB1Emp.16AHxm4GOM0fAcF82QH53FZoBWA4mGWD/dI1AVdi", "_id": { - "$oid": "66723da68f368f285d304afa" + "$oid": "6674c31695590f9fd9459dc1" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.552Z" + "$date": "2024-06-21T00:02:30.745Z" }, "date": { - "$date": "2024-06-19T02:08:38.552Z" + "$date": "2024-06-21T00:02:30.745Z" }, "__v": 0 }, @@ -853,16 +853,16 @@ "firstName": "Lenee", "lastName": "Pethybridge", "email": "lpethybridge1b@chron.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$Vo.JXgiGDLAlFdkl6VW.AugjAjauLpsobZTXaGP75Cie5CflNGBLe", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$gvnmudn22gn.Am/nnMHI1elK4QYC9r8ADzR4/xgGHQiTA7PjM/102", "_id": { - "$oid": "66723da68f368f285d304afb" + "$oid": "6674c31695590f9fd9459dc2" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.552Z" + "$date": "2024-06-21T00:02:30.746Z" }, "date": { - "$date": "2024-06-19T02:08:38.552Z" + "$date": "2024-06-21T00:02:30.746Z" }, "__v": 0 }, @@ -870,16 +870,16 @@ "firstName": "Ninnette", "lastName": "Maden", "email": "nmaden1c@sciencedirect.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$w3vbZZ6zZmKHrEMGe4z7MeLU0NVL3fpiLae51NL18cSpiVeiMFEui", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$GYKqSA4hIp4SNyoC7veNpuE6ffph0TuMHFjL1kSpe1knH.vnbT2o6", "_id": { - "$oid": "66723da68f368f285d304afc" + "$oid": "6674c31695590f9fd9459dc3" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.552Z" + "$date": "2024-06-21T00:02:30.746Z" }, "date": { - "$date": "2024-06-19T02:08:38.552Z" + "$date": "2024-06-21T00:02:30.746Z" }, "__v": 0 }, @@ -887,16 +887,16 @@ "firstName": "Jolynn", "lastName": "Catenot", "email": "jcatenot1d@oakley.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$zzF6skhCWFitnOM5CwDeQu7fOfT/eE3QfvwuQkA5lEqajZfT.VlZC", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$uplHQL2IV9m31LbtUvqWE.rnFigJBJJ.Or4hhxoIkydSL0EKhQAsS", "_id": { - "$oid": "66723da68f368f285d304afd" + "$oid": "6674c31695590f9fd9459dc4" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.552Z" + "$date": "2024-06-21T00:02:30.746Z" }, "date": { - "$date": "2024-06-19T02:08:38.552Z" + "$date": "2024-06-21T00:02:30.746Z" }, "__v": 0 }, @@ -904,16 +904,16 @@ "firstName": "Marabel", "lastName": "Puleston", "email": "mpuleston1e@utexas.edu", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$UveL.ybwHE3SUQo2ACqdPeqyutcjvbTIBAH1ZQ/siyxOHIZm0ylEy", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$MXRKFekNTiWZ6hjEpo2Cnez7GEujOvTYoLh7DqgjOYF6VL2rdOMUa", "_id": { - "$oid": "66723da68f368f285d304afe" + "$oid": "6674c31695590f9fd9459dc5" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.552Z" + "$date": "2024-06-21T00:02:30.746Z" }, "date": { - "$date": "2024-06-19T02:08:38.552Z" + "$date": "2024-06-21T00:02:30.746Z" }, "__v": 0 }, @@ -922,15 +922,15 @@ "lastName": "Arias", "email": "barias1f@flavors.me", "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$VMgAXqWSw0wO4vFqaPZ0Yuhvka2ikaa2ABdpLX9LGxbjhnuzBTIJG", + "password": "$2a$10$ZgOaQPP6FIBJCPh.ZS1CBuZqbvseVUqrW7nergd9v5zQQe5tbtsIS", "_id": { - "$oid": "66723da68f368f285d304aff" + "$oid": "6674c31695590f9fd9459dc6" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.552Z" + "$date": "2024-06-21T00:02:30.746Z" }, "date": { - "$date": "2024-06-19T02:08:38.552Z" + "$date": "2024-06-21T00:02:30.746Z" }, "__v": 0 }, @@ -938,16 +938,16 @@ "firstName": "Arni", "lastName": "Jertz", "email": "ajertz1g@tuttocitta.it", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$QYbOxRESSxpJn4dO4sNeLuQshN1.EC4CMDGDMKyUI4G2X.nQWcP0K", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$uC9ta9vHBA3WaS2ups/0xOcy/gzHVC07gVgnZuhXair3nAmXghIMm", "_id": { - "$oid": "66723da68f368f285d304b00" + "$oid": "6674c31695590f9fd9459dc7" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.552Z" + "$date": "2024-06-21T00:02:30.746Z" }, "date": { - "$date": "2024-06-19T02:08:38.552Z" + "$date": "2024-06-21T00:02:30.746Z" }, "__v": 0 }, @@ -955,16 +955,16 @@ "firstName": "Maegan", "lastName": "Mulhall", "email": "mmulhall1h@wikipedia.org", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$9MMQd8asH32HVeAE9l8qnOZN6FPwqp5rVDeBRJcAY9VnUU7j0nmyy", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$4B9j9zRhqkovXBF4.gDBfO5tGDW0.AfBU4dgPK6iTDicugjW/vIvq", "_id": { - "$oid": "66723da68f368f285d304b01" + "$oid": "6674c31695590f9fd9459dc8" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.552Z" + "$date": "2024-06-21T00:02:30.746Z" }, "date": { - "$date": "2024-06-19T02:08:38.552Z" + "$date": "2024-06-21T00:02:30.746Z" }, "__v": 0 }, @@ -972,16 +972,16 @@ "firstName": "Nicolai", "lastName": "Brugsma", "email": "nbrugsma1i@4shared.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$xFzv03nwmQoKm63Or.udYulQfI33ZyLqWTke5vfM75P.LIowqb0Ti", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$SThp9poPTHZyesEI/Wp9Hu1SYX7xijxJwPsEO8Ey9cinKmM2Chw1.", "_id": { - "$oid": "66723da68f368f285d304b02" + "$oid": "6674c31695590f9fd9459dc9" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.552Z" + "$date": "2024-06-21T00:02:30.746Z" }, "date": { - "$date": "2024-06-19T02:08:38.552Z" + "$date": "2024-06-21T00:02:30.746Z" }, "__v": 0 }, @@ -989,16 +989,16 @@ "firstName": "Bryan", "lastName": "Heffy", "email": "bheffy1j@cbsnews.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$hHsqzWUq6mby1jhthugSLuPTi84WroOHbmzSDUZaVRFHvHPz0T6zm", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$v25/ff2inKjX2gmGa/X4r.zFsf1WicjrMb7ZdU5uaLIKYmB5H6pua", "_id": { - "$oid": "66723da68f368f285d304b03" + "$oid": "6674c31695590f9fd9459dca" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.552Z" + "$date": "2024-06-21T00:02:30.746Z" }, "date": { - "$date": "2024-06-19T02:08:38.552Z" + "$date": "2024-06-21T00:02:30.746Z" }, "__v": 0 }, @@ -1006,16 +1006,16 @@ "firstName": "Donavon", "lastName": "Osichev", "email": "dosichev1k@pinterest.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$N5.Je/j0pTww.DEJkQZLZOKm02Ia/26YsjTvSuyCm3YE9Z5gYYPeS", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$.hatJxwrSHK0/EbtKMt/i.Xh9yeUnD.r8W8JVmfwz0Slg/0CZfmZO", "_id": { - "$oid": "66723da68f368f285d304b04" + "$oid": "6674c31695590f9fd9459dcb" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.553Z" + "$date": "2024-06-21T00:02:30.746Z" }, "date": { - "$date": "2024-06-19T02:08:38.553Z" + "$date": "2024-06-21T00:02:30.746Z" }, "__v": 0 }, @@ -1023,16 +1023,16 @@ "firstName": "Kennan", "lastName": "Dugget", "email": "kdugget1l@opensource.org", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$OSKog2lwroDbovPvKR9vZ.tInkWEmOf2ofKmV8TpORQXCnMlt9Ghu", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$a/v195KwLU7zgEEdonr0Jeo2N8nh2fTEF6Oji1ove7cqrb7KANphG", "_id": { - "$oid": "66723da68f368f285d304b05" + "$oid": "6674c31695590f9fd9459dcc" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.553Z" + "$date": "2024-06-21T00:02:30.747Z" }, "date": { - "$date": "2024-06-19T02:08:38.553Z" + "$date": "2024-06-21T00:02:30.747Z" }, "__v": 0 }, @@ -1040,16 +1040,16 @@ "firstName": "Paton", "lastName": "Climance", "email": "pclimance1m@webnode.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$fxyiCXvcraeMcTNl2lYg0e1AKIBYM90nzaNljT9g4vJV3c2JhPA.2", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$aVBCVkVjgElPwEUsh4U53Obx9l8piY6AnBLyhWszqKwT3Sl/apRiu", "_id": { - "$oid": "66723da68f368f285d304b06" + "$oid": "6674c31695590f9fd9459dcd" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.553Z" + "$date": "2024-06-21T00:02:30.747Z" }, "date": { - "$date": "2024-06-19T02:08:38.553Z" + "$date": "2024-06-21T00:02:30.747Z" }, "__v": 0 }, @@ -1057,16 +1057,16 @@ "firstName": "Caitrin", "lastName": "McAllister", "email": "cmcallister1n@ft.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$mQOhDbf1miTTjhwN54Txn./CJpevXVRxTU2QLemQ8M.F2Py6aBx2K", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$WAZm5uVfMl6Kf21LOcKicOe/y/GkMCZI8szH9NP4eYWtOqOXxrQ7.", "_id": { - "$oid": "66723da68f368f285d304b07" + "$oid": "6674c31695590f9fd9459dce" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.553Z" + "$date": "2024-06-21T00:02:30.747Z" }, "date": { - "$date": "2024-06-19T02:08:38.553Z" + "$date": "2024-06-21T00:02:30.747Z" }, "__v": 0 }, @@ -1074,16 +1074,16 @@ "firstName": "Sephira", "lastName": "Kaming", "email": "skaming1o@about.me", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$6GuOj05Gs/mbnWuy7YIVqOJvpfxk/qcSeBPl47L6JtV.GIj168A3e", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$kADMzPXafPh2uBM3w7kyQud/gN7hjRk7/uEDo1cXGbiOpxuYzHIiS", "_id": { - "$oid": "66723da68f368f285d304b08" + "$oid": "6674c31695590f9fd9459dcf" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.553Z" + "$date": "2024-06-21T00:02:30.747Z" }, "date": { - "$date": "2024-06-19T02:08:38.553Z" + "$date": "2024-06-21T00:02:30.747Z" }, "__v": 0 }, @@ -1091,16 +1091,16 @@ "firstName": "Fraser", "lastName": "Londsdale", "email": "flondsdale1p@freewebs.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$ia8ShPVn/9JiOy3NhlRABuinY6U5jMWgHIaE5LuqmTknuPrLtXemu", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$gQJXxWnNhiJ0KquheSQV5e3bvdiNacu8P.vmLF0hhGpGQQqMr/DPS", "_id": { - "$oid": "66723da68f368f285d304b09" + "$oid": "6674c31695590f9fd9459dd0" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.553Z" + "$date": "2024-06-21T00:02:30.747Z" }, "date": { - "$date": "2024-06-19T02:08:38.553Z" + "$date": "2024-06-21T00:02:30.747Z" }, "__v": 0 }, @@ -1109,15 +1109,15 @@ "lastName": "Bangham", "email": "abangham1q@usgs.gov", "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$t071LdpdR71vZ8GnBEf.suevlPpW/xAKW28AsHxkmyz/tROkoHduy", + "password": "$2a$10$N.kjDboSu/I9UofwKNU4WedzhcX6IbZjpV0i0OmsBZOVjb/HXuqFe", "_id": { - "$oid": "66723da68f368f285d304b0a" + "$oid": "6674c31695590f9fd9459dd1" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.553Z" + "$date": "2024-06-21T00:02:30.747Z" }, "date": { - "$date": "2024-06-19T02:08:38.553Z" + "$date": "2024-06-21T00:02:30.747Z" }, "__v": 0 }, @@ -1125,16 +1125,16 @@ "firstName": "Clarette", "lastName": "Alcock", "email": "calcock1r@amazonaws.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$.I1VeHGqrqKs4jXb0nbC0.qsMR11YIM1iEzMf/T3PQLprPFsUaf4O", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$aXKoFly5vjRD7aaGc.ebte/BwsWa9qvExRZptlco8VKkiCHBCJ30.", "_id": { - "$oid": "66723da68f368f285d304b0b" + "$oid": "6674c31695590f9fd9459dd2" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.554Z" + "$date": "2024-06-21T00:02:30.747Z" }, "date": { - "$date": "2024-06-19T02:08:38.554Z" + "$date": "2024-06-21T00:02:30.747Z" }, "__v": 0 }, @@ -1142,16 +1142,16 @@ "firstName": "Lizbeth", "lastName": "France", "email": "lfrance1s@yahoo.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$1ANElxK9XfTFTTDKTNCptuwDkrxEDR.Bi5iJzyLoenVpSocY7e3ha", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$V7r5GhOPTwlWFFJAq/QGTe56A/sLD.wa1PnVpNiQqQBZVOIvAPXLO", "_id": { - "$oid": "66723da68f368f285d304b0c" + "$oid": "6674c31695590f9fd9459dd3" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.554Z" + "$date": "2024-06-21T00:02:30.747Z" }, "date": { - "$date": "2024-06-19T02:08:38.554Z" + "$date": "2024-06-21T00:02:30.747Z" }, "__v": 0 }, @@ -1159,16 +1159,16 @@ "firstName": "Abramo", "lastName": "Sparkwell", "email": "asparkwell1t@berkeley.edu", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$NqlrzP2iKAKvkzySAleAhe/AdNXpsgfCdp2TR6y8DfXwuqub/AeYq", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$ivCLz8aoMvoQp4sLJn1yL.33CImt7FRT73f1rn6Z2XY/z5.qJVyK6", "_id": { - "$oid": "66723da68f368f285d304b0d" + "$oid": "6674c31695590f9fd9459dd4" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.554Z" + "$date": "2024-06-21T00:02:30.747Z" }, "date": { - "$date": "2024-06-19T02:08:38.554Z" + "$date": "2024-06-21T00:02:30.747Z" }, "__v": 0 }, @@ -1176,16 +1176,16 @@ "firstName": "Darb", "lastName": "Coen", "email": "dcoen1u@prlog.org", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$NTPQ7izZe5EITdCeiIE.D.7OCy2tj6Cl3EDhEUkGyVcI0Em666.LS", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$n9oqbia4uajj3oQGvSd5S.iyvlzPAQUwS99S.ZuPkH9Y03eHQAG8S", "_id": { - "$oid": "66723da68f368f285d304b0e" + "$oid": "6674c31695590f9fd9459dd5" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.554Z" + "$date": "2024-06-21T00:02:30.747Z" }, "date": { - "$date": "2024-06-19T02:08:38.554Z" + "$date": "2024-06-21T00:02:30.747Z" }, "__v": 0 }, @@ -1193,16 +1193,16 @@ "firstName": "Gusty", "lastName": "Besnardeau", "email": "gbesnardeau1v@themeforest.net", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$hJBPCRFfsUSc5mp6bb6rsezzRucr3rfY5WBoIox0FyUfPptkX/Qm2", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$pVjTGQqhjbjBtyn5LlcOQO3MbF6it6xS34B1jj.DHV3FOcO0N1rfG", "_id": { - "$oid": "66723da68f368f285d304b0f" + "$oid": "6674c31695590f9fd9459dd6" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.554Z" + "$date": "2024-06-21T00:02:30.748Z" }, "date": { - "$date": "2024-06-19T02:08:38.554Z" + "$date": "2024-06-21T00:02:30.748Z" }, "__v": 0 }, @@ -1211,15 +1211,15 @@ "lastName": "Verriour", "email": "rverriour1w@ebay.co.uk", "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$..cSH2YjBKProi1oCz7fVuLJcXRMBmpeNRc4mfjfcZIsVFfEcAGOC", + "password": "$2a$10$UsmREDlpRZfHfErSJeTPkeg4v2a0dGhT.YjyU80oHg.uGVtcZJbd2", "_id": { - "$oid": "66723da68f368f285d304b10" + "$oid": "6674c31695590f9fd9459dd7" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.554Z" + "$date": "2024-06-21T00:02:30.748Z" }, "date": { - "$date": "2024-06-19T02:08:38.554Z" + "$date": "2024-06-21T00:02:30.748Z" }, "__v": 0 }, @@ -1227,16 +1227,16 @@ "firstName": "Israel", "lastName": "Canti", "email": "icanti1x@businesswire.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$LYS2QhWZigDB.7.d3CKZFOjJr4Ss6aCde9AuEeDH2A/n.woiFGfAi", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$FSp4Y0VMVciXD7EqEdNH3eiVga32oqbLik.RV29gwlCcyrqDFeE8m", "_id": { - "$oid": "66723da68f368f285d304b11" + "$oid": "6674c31695590f9fd9459dd8" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.554Z" + "$date": "2024-06-21T00:02:30.748Z" }, "date": { - "$date": "2024-06-19T02:08:38.554Z" + "$date": "2024-06-21T00:02:30.748Z" }, "__v": 0 }, @@ -1244,16 +1244,16 @@ "firstName": "Micky", "lastName": "Dunseath", "email": "mdunseath1y@miibeian.gov.cn", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$/nYb3tu0l4bCW4BaZUwmSObgvhfP27i.RydOP4wilS7k3GDb5cCqW", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$SfYlFv1QEET9TEsjx2QlpeUHnDJ1fp8HWYQRMLHCvZaOmJhT4O.DG", "_id": { - "$oid": "66723da68f368f285d304b12" + "$oid": "6674c31695590f9fd9459dd9" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.554Z" + "$date": "2024-06-21T00:02:30.748Z" }, "date": { - "$date": "2024-06-19T02:08:38.554Z" + "$date": "2024-06-21T00:02:30.748Z" }, "__v": 0 }, @@ -1261,16 +1261,16 @@ "firstName": "Gabi", "lastName": "Hardcastle", "email": "ghardcastle1z@weebly.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$PM4RtcUtEAF8IPW4WdKgXu3RJfPExcHmfhCTUtbph7Pv6XvoMO7wC", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$MyVgz59QkXAJnvE7wkxPneTWSe3Uv0yTpnLWX885YuhpK/8rXI3ea", "_id": { - "$oid": "66723da68f368f285d304b13" + "$oid": "6674c31695590f9fd9459dda" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.555Z" + "$date": "2024-06-21T00:02:30.748Z" }, "date": { - "$date": "2024-06-19T02:08:38.555Z" + "$date": "2024-06-21T00:02:30.748Z" }, "__v": 0 }, @@ -1278,16 +1278,16 @@ "firstName": "Rakel", "lastName": "Scothron", "email": "rscothron20@yellowbook.com", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$4svz5xlWUN29HfirroghBuJXo3nXIjEh3wneWbG2vnM9/dy/Xqhuu", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$0Sm1qJ8.946lXRPaVX.ZiemYW9CZKlN7k1PUv2HQLz/iCWvLc350e", "_id": { - "$oid": "66723da68f368f285d304b14" + "$oid": "6674c31695590f9fd9459ddb" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.555Z" + "$date": "2024-06-21T00:02:30.748Z" }, "date": { - "$date": "2024-06-19T02:08:38.555Z" + "$date": "2024-06-21T00:02:30.748Z" }, "__v": 0 }, @@ -1295,16 +1295,16 @@ "firstName": "Gretel", "lastName": "Sitford", "email": "gsitford21@tinyurl.com", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$EkM.t.MoQCHAxWuFwkaBVuWx7rK2mH8vYBY2AE7cl/KN4IqHozm1q", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$8mdJhXhnZG.ySGxao.Nfkuekkt.SGlTKpK3jKzETP4BToeS5zzPOy", "_id": { - "$oid": "66723da68f368f285d304b15" + "$oid": "6674c31695590f9fd9459ddc" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.555Z" + "$date": "2024-06-21T00:02:30.748Z" }, "date": { - "$date": "2024-06-19T02:08:38.555Z" + "$date": "2024-06-21T00:02:30.748Z" }, "__v": 0 }, @@ -1312,16 +1312,16 @@ "firstName": "Rosalinda", "lastName": "Naisby", "email": "rnaisby22@nationalgeographic.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$O4Zih8s1OQhajdXjxbNjJeiaFVNdoXVV6Q2ySD7.iAXHU1tJbgVHG", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$i9JWDLwMMILPMk2O75yR..FffuJwonjEB9ahqUmaORqr4UeeqGgOS", "_id": { - "$oid": "66723da68f368f285d304b16" + "$oid": "6674c31695590f9fd9459ddd" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.555Z" + "$date": "2024-06-21T00:02:30.748Z" }, "date": { - "$date": "2024-06-19T02:08:38.555Z" + "$date": "2024-06-21T00:02:30.748Z" }, "__v": 0 }, @@ -1329,16 +1329,16 @@ "firstName": "Thaddus", "lastName": "Waddell", "email": "twaddell23@nymag.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$Ebg2P.i5K0BL1Uh/3rGXdOeQgpWI3BDkZO2Xp2mYzqKtvoZz0l0yC", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$4kkln2DaCNA3dSLcQNjlxedVkOHGIxQFI90rh.GbAVnDATdF4yFFu", "_id": { - "$oid": "66723da68f368f285d304b17" + "$oid": "6674c31695590f9fd9459dde" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.555Z" + "$date": "2024-06-21T00:02:30.748Z" }, "date": { - "$date": "2024-06-19T02:08:38.555Z" + "$date": "2024-06-21T00:02:30.748Z" }, "__v": 0 }, @@ -1346,16 +1346,16 @@ "firstName": "Nadia", "lastName": "Zeale", "email": "nzeale24@google.ru", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$GsdW34jd8Idz9T9CiCLeIeHFLw/06FiMuRzrNDzA1HBoQTjp31q8O", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$n9Gs25xDbgm4h5Sm0gS45ODmNaNfurc53sOQGN46JU4THmJensIgO", "_id": { - "$oid": "66723da68f368f285d304b18" + "$oid": "6674c31695590f9fd9459ddf" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.555Z" + "$date": "2024-06-21T00:02:30.749Z" }, "date": { - "$date": "2024-06-19T02:08:38.555Z" + "$date": "2024-06-21T00:02:30.749Z" }, "__v": 0 }, @@ -1363,16 +1363,16 @@ "firstName": "Emmett", "lastName": "Buckell", "email": "ebuckell25@reddit.com", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$xAV7kggqSrKPontsyelk3uANfUH3n7ZinHZYLjpTvC5jc.a099m86", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$WdiPdsmRKOi7HvivDf6Tb.Ah72yenh1FHojowhskGys0tReXsX7Yu", "_id": { - "$oid": "66723da68f368f285d304b19" + "$oid": "6674c31695590f9fd9459de0" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.555Z" + "$date": "2024-06-21T00:02:30.749Z" }, "date": { - "$date": "2024-06-19T02:08:38.555Z" + "$date": "2024-06-21T00:02:30.749Z" }, "__v": 0 }, @@ -1380,16 +1380,16 @@ "firstName": "Lavinia", "lastName": "Baume", "email": "lbaume26@tinyurl.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$afh4bLBWo7xXf.X0OPyxEesL15fNEaQesO09y0hslXiuHgtmoM/sy", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$jPfi56gG9AY5RAtTxMI8dO/YVDn145b6VrSyVeMTngHOlOpM.Wfci", "_id": { - "$oid": "66723da68f368f285d304b1a" + "$oid": "6674c31695590f9fd9459de1" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.555Z" + "$date": "2024-06-21T00:02:30.749Z" }, "date": { - "$date": "2024-06-19T02:08:38.555Z" + "$date": "2024-06-21T00:02:30.749Z" }, "__v": 0 }, @@ -1397,16 +1397,16 @@ "firstName": "Janine", "lastName": "Kitt", "email": "jkitt27@wsj.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$u23O9z/SdEbNirUiExvfwerA3O67vuvAQL.1nFCMvF5C2TLslFt1O", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$/rqW4o1VGAJsSBBWArQ1sudZ/1tk5thl9p9H.RxJwcv5KPW6qH4da", "_id": { - "$oid": "66723da68f368f285d304b1b" + "$oid": "6674c31695590f9fd9459de2" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.555Z" + "$date": "2024-06-21T00:02:30.749Z" }, "date": { - "$date": "2024-06-19T02:08:38.555Z" + "$date": "2024-06-21T00:02:30.749Z" }, "__v": 0 }, @@ -1414,16 +1414,16 @@ "firstName": "Beatrix", "lastName": "Healey", "email": "bhealey28@amazon.co.jp", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$irPoEf/87JssE0GloTQiV.6SZbEMv0XFnLOkHcwqOs3Js2rgyHVke", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$GUL6vJnhJXVjvC.0o0p/bessdPb/kvrUL/9xSNHqDwMVH47A4qC/u", "_id": { - "$oid": "66723da68f368f285d304b1c" + "$oid": "6674c31695590f9fd9459de3" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.555Z" + "$date": "2024-06-21T00:02:30.749Z" }, "date": { - "$date": "2024-06-19T02:08:38.555Z" + "$date": "2024-06-21T00:02:30.749Z" }, "__v": 0 }, @@ -1431,16 +1431,16 @@ "firstName": "Simone", "lastName": "Buske", "email": "sbuske29@soundcloud.com", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$1XuzN4hPtQm9kD.PcPK.6.ctu7fg2sWEB0TNBkgo01zUEoFyslBNu", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$I4Fb9znyB56AL3koGXIzeencGUofRvKTalp/0u2XwLBLy953WJ686", "_id": { - "$oid": "66723da68f368f285d304b1d" + "$oid": "6674c31695590f9fd9459de4" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.749Z" }, "date": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.749Z" }, "__v": 0 }, @@ -1448,16 +1448,16 @@ "firstName": "Cristine", "lastName": "Gaddesby", "email": "cgaddesby2a@senate.gov", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$uZC6FDy/PqHxlAZHBZlfDuOz73l/XuyK23/6F1JAUAJAyQRHh.zC6", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$xEfVsFCe7qseNc3LLxzSP.vikLTH/VH2AlnOqGQpQ85THdHcBShIe", "_id": { - "$oid": "66723da68f368f285d304b1e" + "$oid": "6674c31695590f9fd9459de5" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.749Z" }, "date": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.749Z" }, "__v": 0 }, @@ -1465,16 +1465,16 @@ "firstName": "Marta", "lastName": "Daveren", "email": "mdaveren2b@odnoklassniki.ru", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$wd/NufKk8QGa4/KEEO8shO77/8nJGnkRyL/YibxVdf7mkP5d92/w.", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$GHpD3egZVkoIkucCdtdT.e/MKRoPwNgPlQOvW.VHJNayRgJR9nqze", "_id": { - "$oid": "66723da68f368f285d304b1f" + "$oid": "6674c31695590f9fd9459de6" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.749Z" }, "date": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.749Z" }, "__v": 0 }, @@ -1482,16 +1482,16 @@ "firstName": "Nanon", "lastName": "Gligoraci", "email": "ngligoraci2c@addthis.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$ocoKJ1CbTyNvFQ5S7VJIQuqunwhObJz/LagCKvSRRcH2jEtJ6md46", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$I43n3ob4fgpIJ5CWQix2LeEwFGYR.ztMSL7cEDv8mUVvd4x5h0tPC", "_id": { - "$oid": "66723da68f368f285d304b20" + "$oid": "6674c31695590f9fd9459de7" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.750Z" }, "date": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.750Z" }, "__v": 0 }, @@ -1499,16 +1499,16 @@ "firstName": "Donall", "lastName": "Frapwell", "email": "dfrapwell2d@hostgator.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$LdesH1ifY7N0saXbeQOm7OfEfMp0KaQVZWpmbAKBpzJGm48qzGyhy", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$5suhT5mYsHREaFmUifsqaOXZFVvAQreimpTfcWdLAi.D.vh4zhM1O", "_id": { - "$oid": "66723da68f368f285d304b21" + "$oid": "6674c31695590f9fd9459de8" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.750Z" }, "date": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.750Z" }, "__v": 0 }, @@ -1516,16 +1516,16 @@ "firstName": "Beverlee", "lastName": "Bangham", "email": "bbangham2e@tamu.edu", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$iUDpnMVatWQdbRgQJr70OufYqW2XbOYwC2WPstQp8ajFL5uLt7LN2", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$vGHSBP2y9o0HzUDvRqItQubZRpQMEW50TjxsodBu8Z5ETbuQMetUG", "_id": { - "$oid": "66723da68f368f285d304b22" + "$oid": "6674c31695590f9fd9459de9" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.750Z" }, "date": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.750Z" }, "__v": 0 }, @@ -1533,16 +1533,16 @@ "firstName": "Englebert", "lastName": "Bancroft", "email": "ebancroft2f@ow.ly", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$0ZXUgbf/j8O5trykpqSAY.dCVBmnPTmIquh1kT7ZWfQ9k.KiR70ry", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$a5uZQ4skXiMzWGpYZATsfuetqqfX.ON3DAxoIf8sJkbkPVt1uDIJ6", "_id": { - "$oid": "66723da68f368f285d304b23" + "$oid": "6674c31695590f9fd9459dea" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.750Z" }, "date": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.750Z" }, "__v": 0 }, @@ -1550,16 +1550,16 @@ "firstName": "Siegfried", "lastName": "Castillou", "email": "scastillou2g@reddit.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$dLDTVuCo5a.0fNMO3SrgIuH/53cgMgdSwa85sV7GXBgCIuxp/v/wS", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$Xv5616/DIqPvzIrAiocYKurlFZiQrPx2G/ijZBX38BacshSrSK.6e", "_id": { - "$oid": "66723da68f368f285d304b24" + "$oid": "6674c31695590f9fd9459deb" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.750Z" }, "date": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.750Z" }, "__v": 0 }, @@ -1567,16 +1567,16 @@ "firstName": "Marvin", "lastName": "Cranke", "email": "mcranke2h@marketwatch.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$6.FejnIQxqjUXD3ISnmVKOP5ImwsKlH9lRLUAbxRayJjt3g5Gj6Be", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$H7sdU7rI3jNlh1ZMte6qi.7oowzeaUIBAgZjURwLbcvyi0U7QGfXm", "_id": { - "$oid": "66723da68f368f285d304b25" + "$oid": "6674c31695590f9fd9459dec" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.750Z" }, "date": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.750Z" }, "__v": 0 }, @@ -1585,15 +1585,15 @@ "lastName": "Rummin", "email": "arummin2i@is.gd", "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$kPEVnpwRl9yZ2e8ZcG.nfefo0/OCZ7aqi4Ds.ePzTenAfsWYCGNcK", + "password": "$2a$10$U2T4qto9PE6w07GbcPo2LuSMKPCiRxOthBK/NcvdIugtw1ib0vuga", "_id": { - "$oid": "66723da68f368f285d304b26" + "$oid": "6674c31695590f9fd9459ded" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.750Z" }, "date": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.750Z" }, "__v": 0 }, @@ -1601,16 +1601,16 @@ "firstName": "Seumas", "lastName": "Feldberger", "email": "sfeldberger2j@ning.com", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$ybD8snthNqfwt0Pi1VdGieDdPrBB.nIq3dzgauISGvVaZ2X0Sovaa", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$AtmfjAr9ippLTkGoTEm28udWPLU.LnxQJFc6H1HCynYphWMwsvTGe", "_id": { - "$oid": "66723da68f368f285d304b27" + "$oid": "6674c31695590f9fd9459dee" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.750Z" }, "date": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.750Z" }, "__v": 0 }, @@ -1619,15 +1619,15 @@ "lastName": "Worham", "email": "hworham2k@mail.ru", "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$NLD.r.hzHssSuATg1EbeKOD5HWG7b8m1rWm94yG/RXDgVwxIZlxVe", + "password": "$2a$10$8kAf4CADvLbE0DYTFBqBbOjPwasq3ns9VfPn3OmullApA1eaNREyW", "_id": { - "$oid": "66723da68f368f285d304b28" + "$oid": "6674c31695590f9fd9459def" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.750Z" }, "date": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.750Z" }, "__v": 0 }, @@ -1635,16 +1635,16 @@ "firstName": "Winny", "lastName": "O'Glessane", "email": "woglessane2l@deviantart.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$6v6Q8FvJDYCrDLOtHohcOexEMNven.EdtMdLhWFgXFNjyc7zHIGd.", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$Vu37IHsmNqp.rkAJqi5c9OzWcNAjO1upb892DyQXI2B6AYZBtB3/C", "_id": { - "$oid": "66723da68f368f285d304b29" + "$oid": "6674c31695590f9fd9459df0" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.751Z" }, "date": { - "$date": "2024-06-19T02:08:38.556Z" + "$date": "2024-06-21T00:02:30.751Z" }, "__v": 0 }, @@ -1652,16 +1652,16 @@ "firstName": "Gwenora", "lastName": "Agge", "email": "gagge2m@unesco.org", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$aHXbV6y1zl6Wicf5U9Ng0upuUneendv83gjaIMHQUPu0dZSA4i.j.", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$UZxnUIjEqu0RM6tPlfcx8OEOxW9v7YuVbiwPRUl1PTSd90TDDH41q", "_id": { - "$oid": "66723da68f368f285d304b2a" + "$oid": "6674c31695590f9fd9459df1" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.557Z" + "$date": "2024-06-21T00:02:30.751Z" }, "date": { - "$date": "2024-06-19T02:08:38.557Z" + "$date": "2024-06-21T00:02:30.751Z" }, "__v": 0 }, @@ -1669,16 +1669,16 @@ "firstName": "Piggy", "lastName": "Torrisi", "email": "ptorrisi2n@goodreads.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$fnR8diwGLrSu.rdd0jMOxe8IFKGGRKRAc0PTLftgsLSiek71DSdDe", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$ttPjCLUovnyIPXhSxuEr2umGAealHpwTde3yJiQGoZVTBkEEpbF7m", "_id": { - "$oid": "66723da68f368f285d304b2b" + "$oid": "6674c31695590f9fd9459df2" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.557Z" + "$date": "2024-06-21T00:02:30.751Z" }, "date": { - "$date": "2024-06-19T02:08:38.557Z" + "$date": "2024-06-21T00:02:30.751Z" }, "__v": 0 }, @@ -1686,16 +1686,16 @@ "firstName": "Niki", "lastName": "Glaysher", "email": "nglaysher2o@kickstarter.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$EIoh4HqmbP8SKcoB4MmDLuzngiXr/EtAekemGBeFjaBDBPFlCyQ42", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$ol3MkKKRwy9FjT5FwpWVMeOxPp8ZkWDH2/TWNwpkt0ii7RzNv2AL.", "_id": { - "$oid": "66723da68f368f285d304b2c" + "$oid": "6674c31695590f9fd9459df3" }, "lastVisit": { - "$date": "2024-06-19T02:08:38.557Z" + "$date": "2024-06-21T00:02:30.751Z" }, "date": { - "$date": "2024-06-19T02:08:38.557Z" + "$date": "2024-06-21T00:02:30.751Z" }, "__v": 0 } From 93ba68286802a9655410567b65e58cdfe0b8d423 Mon Sep 17 00:00:00 2001 From: seantokuzo Date: Thu, 20 Jun 2024 17:20:28 -0700 Subject: [PATCH 14/25] delete mock data for rewrites --- scripts/db/mongo-dev-init/MOCK_ALUMNI.json | 33875 ---------------- scripts/db/mongo-dev-init/MOCK_FORUMS.json | 72 - .../MOCK_GRADUATE_INVITATIONS.json | 2402 -- scripts/db/mongo-dev-init/MOCK_POSTS.json | 990 - scripts/db/mongo-dev-init/MOCK_PROFILES.json | 12304 ------ scripts/db/mongo-dev-init/MOCK_THREADS.json | 322 - scripts/db/mongo-dev-init/MOCK_USERS.json | 1702 - 7 files changed, 51667 deletions(-) delete mode 100644 scripts/db/mongo-dev-init/MOCK_ALUMNI.json delete mode 100644 scripts/db/mongo-dev-init/MOCK_FORUMS.json delete mode 100644 scripts/db/mongo-dev-init/MOCK_GRADUATE_INVITATIONS.json delete mode 100644 scripts/db/mongo-dev-init/MOCK_POSTS.json delete mode 100644 scripts/db/mongo-dev-init/MOCK_PROFILES.json delete mode 100644 scripts/db/mongo-dev-init/MOCK_THREADS.json delete mode 100644 scripts/db/mongo-dev-init/MOCK_USERS.json diff --git a/scripts/db/mongo-dev-init/MOCK_ALUMNI.json b/scripts/db/mongo-dev-init/MOCK_ALUMNI.json deleted file mode 100644 index 8c71aae4..00000000 --- a/scripts/db/mongo-dev-init/MOCK_ALUMNI.json +++ /dev/null @@ -1,33875 +0,0 @@ -[ - { - "company": "1-800 Flowers", - "name": "Daniel Reilley", - "email": "dannyreilley@gmail.com", - "linkedIn": "https://www.linkedin.com/in/daniel-reilley/", - "campus": "LA", - "cohort": "45", - "jobTitle": "Full-Stack Application Developer", - "industry": "Retail", - "cities": ["Glendale", "Wichita"], - "_id": { - "$oid": "6674c30595590f9fd945902e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.055Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.055Z" - }, - "__v": 0 - }, - { - "company": "1Password", - "name": "William Quan Nguyen", - "email": "william.nguyen202103@gmail.com", - "linkedIn": "https://www.linkedin.com/in/william-nguyen202103/", - "campus": "PTRI", - "cohort": "10", - "jobTitle": "Software Engineer intern", - "industry": "Security/Data Privacy", - "cities": ["Aurora", "St. Louis"], - "_id": { - "$oid": "6674c30595590f9fd945902f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "1StopBedrooms", - "name": "David Yedid", - "email": "diyedid@gmail.com", - "linkedIn": "https://www.linkedin.com/in/yedid/", - "campus": "NYC", - "cohort": "15", - "jobTitle": "VP, Projects (working under CTO); and General Counsel", - "industry": "E-Commerce", - "cities": ["Stockton", "Irvine"], - "_id": { - "$oid": "6674c30595590f9fd9459030" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "1upHealth", - "name": "Robleh Farah", - "email": "farahrobleh1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/farahrobleh", - "campus": "LA", - "cohort": "43", - "jobTitle": "Software Engineer", - "industry": "Health Tech", - "cities": ["San Antonio", "Cincinnati", "Saint Paul"], - "_id": { - "$oid": "6674c30595590f9fd9459031" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "23andMe", - "name": "Jiwon Chung", - "email": "jiwon.chung07@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jchung07/", - "campus": "LA", - "cohort": "48", - "jobTitle": "Software Engineer", - "industry": "Biotech", - "cities": ["Wichita", "Nashville", "Tucson"], - "_id": { - "$oid": "6674c30595590f9fd9459032" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "2U", - "name": "Rebecca Shesser", - "email": "rebeccashesser@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rebeccashesser/", - "campus": "NYC / ECRI", - "cohort": "36", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459033" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "98point6", - "name": "Avi Kerson", - "email": "avitacos@gmail.com", - "linkedIn": "https://www.linkedin.com/in/avi-kerson/", - "campus": "LA / WCRI", - "cohort": "50", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": ["Houston", "Seattle", "Cleveland"], - "_id": { - "$oid": "6674c30595590f9fd9459034" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "AAA (Club Labs)", - "name": "Michael Chan", - "email": "mckchan13@gmail.com", - "linkedIn": "https://www.linkedin.com/in/michael-ck-chan/", - "campus": "PTRI", - "cohort": "5", - "jobTitle": "Software Engineer", - "industry": "Insurance", - "cities": ["Plano", "Toronto", "Kansas City"], - "_id": { - "$oid": "6674c30595590f9fd9459035" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Aavia", - "name": "Wayland SIngh", - "email": "wmsingh@ucdavis.edu", - "linkedIn": "https://www.linkedin.com/in/wayland-singh/", - "campus": "NYOI", - "cohort": "4", - "jobTitle": "Backend Engineer", - "industry": "Healthtech/Healthcare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459036" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Abstract", - "name": "Tyler Kneidl", - "email": "tskneidl@gmail.com", - "linkedIn": "https://www.LinkedIn.com/in/tylerkneidl", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Full Stack Engineer", - "industry": "Software Development", - "cities": ["Houston"], - "_id": { - "$oid": "6674c30595590f9fd9459037" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Accenture", - "name": "Adrian Reczek", - "email": "adrianwreczek@gmail.com", - "linkedIn": "https://www.linkedin.com/in/adrian-reczek/", - "campus": "FTRI / CTRI", - "cohort": "11", - "jobTitle": "Full Stack Software Engineer, Senior Analyst", - "industry": "Consulting", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459038" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Accenture", - "name": "Colin Roemer", - "email": "colin.roemer@gmail.com", - "linkedIn": "https://www.linkedin.com/in/colinroemer/", - "campus": "LA", - "cohort": "23", - "jobTitle": "Node Microservices Engineer", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459039" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Accenture", - "name": "Shamilah Faria", - "email": "shamilahfaria@gmail.com", - "linkedIn": "https://www.linkedin.com/in/shamilah-faria/", - "campus": "NYC", - "cohort": "28", - "jobTitle": "Software Artisan", - "industry": "Technology", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945903a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Accrete AI", - "name": "Andrew Moy", - "email": "ajmoy35@gmail.com", - "linkedIn": "https://www.linkedin.com/in/andrewmoy/", - "campus": "NYC / ECRI", - "cohort": "35", - "jobTitle": "Full Stack Engineer", - "industry": "Artificial Intelligence", - "cities": ["Charlotte", "San Diego"], - "_id": { - "$oid": "6674c30595590f9fd945903b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Acorns", - "name": "Zahaan Jasani", - "email": "zahaanjasani@gmail.com", - "linkedIn": "https://www.linkedin.com/in/zahaan-jasani-183913126/", - "campus": "LA", - "cohort": "26", - "jobTitle": "Software Engineer II - Backend", - "industry": "Finance", - "cities": ["Lexington", "Mexico City"], - "_id": { - "$oid": "6674c30595590f9fd945903c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Acronis", - "name": "Paul Kim", - "email": "Khyunwoo1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/paulyjkim", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Software Engineer", - "industry": "\"Data Protection/ Cyber Security\"", - "cities": ["Durham", "Orlando"], - "_id": { - "$oid": "6674c30595590f9fd945903d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "ActiveCampaign", - "name": "Jacob Gillan", - "email": "jacobgillan9@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jacob-gillan/", - "campus": "FTRI / CTRI", - "cohort": "15", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Washington", "Colorado Springs"], - "_id": { - "$oid": "6674c30595590f9fd945903e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Actuate", - "name": "Braddon Murphy", - "email": "braddonmurphy@gmail.com", - "linkedIn": "https://www.linkedin.com/in/braddonlee/", - "campus": "FTRI", - "cohort": "6", - "jobTitle": "Software Engineer", - "industry": "Security", - "cities": ["Buffalo", "Jersey City"], - "_id": { - "$oid": "6674c30595590f9fd945903f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Acuity Brands", - "name": "Logan Coale", - "email": "lcoale@gmail.com", - "linkedIn": "https://www.linkedin.com/in/logancoale/", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Senior Software Engineer", - "industry": "Industrial Lighting/IoT", - "cities": ["Colorado Springs", "Pittsburgh"], - "_id": { - "$oid": "6674c30595590f9fd9459040" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Adaptive Biotechnologies", - "name": "Conor Chinitz", - "email": "conorchinitz@gmail.com", - "linkedIn": "https://www.linkedin.com/in/conorchinitz", - "campus": "FTRI", - "cohort": "7", - "jobTitle": "Software Engineer III", - "industry": "Biotech", - "cities": ["Houston"], - "_id": { - "$oid": "6674c30595590f9fd9459041" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Adobe - Frame.io", - "name": "Anna Brakowska", - "email": "anna.brakowska91@gmail.com", - "linkedIn": "https://www.linkedin.com/in/anna-brakowska/", - "campus": "NYC", - "cohort": "7", - "jobTitle": "Software Engineer", - "industry": "", - "cities": ["San Jose", "Henderson", "Chandler"], - "_id": { - "$oid": "6674c30595590f9fd9459042" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Affirm", - "name": "Oscar Chan", - "email": "chanoscar0@gmail.com", - "linkedIn": "https://www.linkedin.com/in/occhan/", - "campus": "LA", - "cohort": "26", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Louisville", "Fort Wayne", "Buffalo"], - "_id": { - "$oid": "6674c30595590f9fd9459043" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Age of Learning", - "name": "Brian Kwok", - "email": "brian.kwok15@gmail.com", - "linkedIn": "https://www.linkedin.com/in/briankwok15/", - "campus": "LA", - "cohort": "29", - "jobTitle": "Software Engineer", - "industry": "Education", - "cities": ["Colorado Springs"], - "_id": { - "$oid": "6674c30595590f9fd9459044" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Age of Learning", - "name": "Tre Hultzen", - "email": "hultzentre@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tre-hultzen/", - "campus": "LA", - "cohort": "45", - "jobTitle": "Web Services Engineer", - "industry": "Education", - "cities": ["Berlin", "Seattle", "Henderson"], - "_id": { - "$oid": "6674c30595590f9fd9459045" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Agua Caliente Casinos", - "name": "Mark Alexander", - "email": "markalexander72@gmail.com", - "linkedIn": "https://www.linkedin.com/in/marka772", - "campus": "PTRI", - "cohort": "7", - "jobTitle": "Web Developer", - "industry": "Gaming/eSports", - "cities": ["Denver", "Greensboro", "Philadelphia"], - "_id": { - "$oid": "6674c30595590f9fd9459046" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "AI Insurance", - "name": "James Edwards III", - "email": "j.olden.edwards@gmail.com", - "linkedIn": "https://www.linkedin.com/in/james-edwards-547307242/", - "campus": "LA / WCRI", - "cohort": "50", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Beijing", "Oklahoma City", "New Orleans"], - "_id": { - "$oid": "6674c30595590f9fd9459047" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Air Labs, Inc.", - "name": "Madison Brown", - "email": "mbrown3391@gmail.com", - "linkedIn": "https://www.linkedin.com/in/madisondbrown/", - "campus": "NYC", - "cohort": "18", - "jobTitle": "Sr. Software Engineer", - "industry": "Digital Asset Management", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459048" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Airtable", - "name": "Clara Kim", - "email": "clarayhkim96@gmail.com", - "linkedIn": "https://www.linkedin.com/in/clarakm/", - "campus": "LA", - "cohort": "34", - "jobTitle": "Full-stack Engineer", - "industry": "SaaS", - "cities": ["Lubbock", "Irving", "Winston-Salem"], - "_id": { - "$oid": "6674c30595590f9fd9459049" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Ajmadison", - "name": "Shlomo porges", - "email": "porges.s@gmail.com", - "linkedIn": "https://www.linkedin.com/in/shlomoporges/", - "campus": "NYC", - "cohort": "10", - "jobTitle": "DB architect", - "industry": "Appliances", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945904a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Albert", - "name": "Will Bladon", - "email": "whbladon@gmail.com", - "linkedIn": "https://www.linkedin.com/in/will-bladon/", - "campus": "LA", - "cohort": "40", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["San Diego", "Toledo"], - "_id": { - "$oid": "6674c30595590f9fd945904b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Alchemy", - "name": "Mathias Perfumo", - "email": "mathias.perfumo@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mathiasperfumo", - "campus": "FTRI / CTRI", - "cohort": "7", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": ["Scottsdale", "Seattle"], - "_id": { - "$oid": "6674c30595590f9fd945904c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Aledade", - "name": "Etana Kopin", - "email": "claws.33@gmail.com", - "linkedIn": "https://www.linkedin.com/in/egkopin/", - "campus": "PTRI", - "cohort": "8", - "jobTitle": "Senior Software Engineer", - "industry": "Healthcare", - "cities": ["Toledo", "Santa Ana", "Chesapeake"], - "_id": { - "$oid": "6674c30595590f9fd945904d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Alethix", - "name": "Mark Dolan", - "email": "mark.dolan3@gmail.com", - "linkedIn": "https://www.linkedin.com/in/markdolan30/", - "campus": "NYC", - "cohort": "29", - "jobTitle": "Frontend Software Engineer", - "industry": "Government services", - "cities": ["New Orleans", "Boston"], - "_id": { - "$oid": "6674c30595590f9fd945904e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Algolia", - "name": "Jacob Cole", - "email": "jacob.cole@gmail.com", - "linkedIn": "jacobcole34", - "campus": "PTRI", - "cohort": "8", - "jobTitle": "Solutions Engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945904f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Allen Institute", - "name": "Joseph Heffernan", - "email": "Interim17@gmail.com", - "linkedIn": "LinkedIn.com/in/Joseph-heffernan", - "campus": "LA / WCRI", - "cohort": "53", - "jobTitle": "Software Engineer Front End", - "industry": "Biotech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459050" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Alleo.ai", - "name": "Rawan Al Bairouti", - "email": "rawan.bairouti@gmail.com", - "linkedIn": "linkedin.com/in/rawanbairouti", - "campus": "PTRI", - "cohort": "7", - "jobTitle": "Lead Developer", - "industry": "Software Solutions/Developer Tools", - "cities": ["Lexington", "Seattle"], - "_id": { - "$oid": "6674c30595590f9fd9459051" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Alloy", - "name": "Jacqueline Chang", - "email": "jqw.chang@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jqw-chang/", - "campus": "NYC", - "cohort": "7", - "jobTitle": "Software Engineer II", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459052" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Alloy", - "name": "Sophie Nye", - "email": "sophie.nye@gmail.com", - "linkedIn": "https://www.linkedin.com/in/gsophienye/", - "campus": "NYC", - "cohort": "12", - "jobTitle": "Software Engineer II", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459053" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Allure Bridal", - "name": "Patrick Reid", - "email": "patrickjreid@gmail.com", - "linkedIn": "https://www.linkedin.com/in/patrickjreid/", - "campus": "PTRI", - "cohort": "6", - "jobTitle": "Senior Solutions Engineer", - "industry": "Retail", - "cities": ["Portland"], - "_id": { - "$oid": "6674c30595590f9fd9459054" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Ally", - "name": "Oleksii Hordiienko", - "email": "alex.hord@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/oleksii-hordiienko/", - "campus": "NYC", - "cohort": "27", - "jobTitle": "Sr. Software Engineer", - "industry": "Fintech", - "cities": ["San Diego", "Madison"], - "_id": { - "$oid": "6674c30595590f9fd9459055" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Ally", - "name": "Allison Jacobs", - "email": "allison-jacobs@outlook.com", - "linkedIn": "https://www.linkedin.com/in/allison-j", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Senior Software Engineer", - "industry": "Fintech", - "cities": ["Greensboro", "Jersey City"], - "_id": { - "$oid": "6674c30595590f9fd9459056" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Ally", - "name": "Connor Tracy", - "email": "Connortracy15@gmail.com", - "linkedIn": "https://www.linkedin.com/in/connortracy19", - "campus": "NYC", - "cohort": "28", - "jobTitle": "Frontend Software Engineer", - "industry": "Fintech", - "cities": ["Austin"], - "_id": { - "$oid": "6674c30595590f9fd9459057" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Ally", - "name": "Damien Evans", - "email": "damiensevans@gmail.com", - "linkedIn": "https://www.linkedin.com/in/damien-s-evans/", - "campus": "NYC", - "cohort": "27", - "jobTitle": "Principal Software Engineer", - "industry": "Fintech", - "cities": ["Chandler"], - "_id": { - "$oid": "6674c30595590f9fd9459058" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.056Z" - }, - "__v": 0 - }, - { - "company": "Ally", - "name": "Mercedes Kalaizic", - "email": "Kalaizicmercedes@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mkalaizic/", - "campus": "NYC", - "cohort": "28", - "jobTitle": "Principal Software Engineer", - "industry": "Fintech", - "cities": ["Fort Worth", "El Paso", "Phoenix"], - "_id": { - "$oid": "6674c30595590f9fd9459059" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Ally", - "name": "Richard Zhang", - "email": "rchzhng@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dickzhang/", - "campus": "FTRI / CTRI", - "cohort": "10", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Irving", "San Francisco"], - "_id": { - "$oid": "6674c30595590f9fd945905a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Ally", - "name": "Garrett Weaver", - "email": "Uncommonweaver@gmail.com", - "linkedIn": "https://www.linkedin.com/in/g-weaver/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "API Developer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945905b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Alo Yoga", - "name": "Angie Chang", - "email": "angiechangpagne@gmail.com", - "linkedIn": "https://www.linkedin.com/in/angelsofwar", - "campus": "LA", - "cohort": "32", - "jobTitle": "Software Engineer", - "industry": "E-Commerce/Fashion/Wellness/Mindfulness", - "cities": ["Bakersfield"], - "_id": { - "$oid": "6674c30595590f9fd945905c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "AlphaSense", - "name": "Joe Pavlisko", - "email": "jpavlisko@protonmail.com", - "linkedIn": "https://www.linkedin.com/in/joe-pavlisko-11b74930/", - "campus": "NYC", - "cohort": "11", - "jobTitle": "Software Engineer", - "industry": "FinTech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945905d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "ALTEN GmbH", - "name": "Jay Wall", - "email": "walljayw@gmail.com", - "linkedIn": "https://www.linkedin.com/in/hanswand/", - "campus": "LA", - "cohort": "47", - "jobTitle": "Senior Consultant", - "industry": "Consultancy - Fintech, Manufacturing, Healthcare", - "cities": ["Lubbock", "San Antonio"], - "_id": { - "$oid": "6674c30595590f9fd945905e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Alteryx", - "name": "Miriam Feder", - "email": "mirfeder@gmail.com", - "linkedIn": "https://www.linkedin.com/in/miriam-feder", - "campus": "NYC", - "cohort": "32", - "jobTitle": "Senior Software Engineer", - "industry": "Data Analytics", - "cities": ["Miami"], - "_id": { - "$oid": "6674c30595590f9fd945905f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Altice USA", - "name": "Ola Adedoyin", - "email": "ola_adedoyin@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/oadedoyin/", - "campus": "NYC", - "cohort": "15", - "jobTitle": "DevOps Engineering Manager", - "industry": "Communication and Media", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459060" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon", - "name": "Amy Liang", - "email": "amyliangny@gmail.com", - "linkedIn": "https://www.linkedin.com/in/amyliang18/", - "campus": "NYC", - "cohort": "30", - "jobTitle": "Software Development Engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459061" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon", - "name": "Anna Falvello", - "email": "anna.falvello@gmail.com", - "linkedIn": "https://www.linkedin.com/in/afalvello/", - "campus": "NYC", - "cohort": "29", - "jobTitle": "SDEII", - "industry": "Ecommerce", - "cities": ["Garland", "Phoenix"], - "_id": { - "$oid": "6674c30595590f9fd9459062" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon", - "name": "Anthony Valdez", - "email": "avaldez520@gmail.com", - "linkedIn": "https://www.linkedin.com/in/va1dez/", - "campus": "NYC", - "cohort": "32", - "jobTitle": "SDE II (Full Stack)", - "industry": "Software / Tech", - "cities": ["Berlin", "Paris", "Houston"], - "_id": { - "$oid": "6674c30595590f9fd9459063" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon", - "name": "Christopher LeBrett", - "email": "clebrett@gmail.com", - "linkedIn": "https://www.linkedin.com/in/chris-lebrett/", - "campus": "LA / WCRI", - "cohort": "50", - "jobTitle": "Software Development Engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459064" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon", - "name": "Christopher Wong", - "email": "cwong8257@gmail.com", - "linkedIn": "https://www.linkedin.com/in/chriswong2/", - "campus": "NYC", - "cohort": "7", - "jobTitle": "Software Engineer", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459065" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon", - "name": "David Anderson", - "email": "dlande000@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dlande000/", - "campus": "NYC", - "cohort": "26", - "jobTitle": "Front-End Engineer", - "industry": "AWS / internet infrastructure", - "cities": ["Jacksonville", "Miami"], - "_id": { - "$oid": "6674c30595590f9fd9459066" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon", - "name": "Dillon Schriver", - "email": "dschriver9@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dillon-schriver/", - "campus": "NYC", - "cohort": "27", - "jobTitle": "Software Development Engineer II", - "industry": "Ecommerce", - "cities": ["Scottsdale", "Chandler"], - "_id": { - "$oid": "6674c30595590f9fd9459067" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon", - "name": "Eelan Tung", - "email": "eelantung@gmail.com", - "linkedIn": "https://www.linkedin.com/in/eelantung", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Software Development Engineer", - "industry": "Software / Tech", - "cities": ["Jersey City", "Minneapolis", "Irving"], - "_id": { - "$oid": "6674c30595590f9fd9459068" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon", - "name": "Jason Huang", - "email": "huang.jason999@gmail.com", - "linkedIn": "https://www.linkedin.com/in/huang-jason999/", - "campus": "NYC", - "cohort": "16", - "jobTitle": "Software Development Engineer II", - "industry": "Technology", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459069" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon", - "name": "Idan Michael", - "email": "idan.michael3@gmail.com", - "linkedIn": "https://www.linkedin.com/in/idanmichael/", - "campus": "NYC", - "cohort": "30", - "jobTitle": "Software Develpment Engineer", - "industry": "Cloud", - "cities": ["Anaheim", "Fresno"], - "_id": { - "$oid": "6674c30595590f9fd945906a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon", - "name": "Jacqueline Douglass", - "email": "jackie.douglass@icloud.com", - "linkedIn": "https://www.linkedin.com/in/jacqueline-douglass/", - "campus": "FTRI", - "cohort": "2", - "jobTitle": "Front-End Engineer", - "industry": "e-commerce, cloud computing, digital streaming, and artificial intelligence.", - "cities": ["Pittsburgh", "Irvine"], - "_id": { - "$oid": "6674c30595590f9fd945906b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon", - "name": "James Kim", - "email": "james.minjae.97@gmail.com", - "linkedIn": "https://linkedin.com/in/jamesmjkim", - "campus": "PTRI", - "cohort": "5", - "jobTitle": "Software Development Engineer 1", - "industry": "Software / Tech", - "cities": ["Reno"], - "_id": { - "$oid": "6674c30595590f9fd945906c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon", - "name": "Luke Michals", - "email": "luke.michals@gmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "14", - "jobTitle": "Frontend Engineer II", - "industry": "Retail", - "cities": ["Riverside", "Tokyo", "Corpus Christi"], - "_id": { - "$oid": "6674c30595590f9fd945906d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon", - "name": "Jennifer Song", - "email": "lumie.song@gmail.com", - "linkedIn": "https://www.linkedin.com/in/lu0713/", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Software Development Engineer II", - "industry": "Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945906e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon", - "name": "Megan Nadkarni", - "email": "megan.nadkarni@gmail.com", - "linkedIn": "https://www.linkedin.com/in/megannadkarni/", - "campus": "LA", - "cohort": "48", - "jobTitle": "Front End Engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945906f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon", - "name": "Mark Washkewicz", - "email": "mwashkewicz@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mark-washkewicz/", - "campus": "LA", - "cohort": "39", - "jobTitle": "Software Development Engineer 1", - "industry": "Retail", - "cities": ["Tulsa"], - "_id": { - "$oid": "6674c30595590f9fd9459070" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon", - "name": "Stephan Halarewicz", - "email": "shalarewicz@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stephanhalarewicz/", - "campus": "PTRI", - "cohort": "6", - "jobTitle": "Software Development Engineer, People Engine", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459071" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon", - "name": "Tanner Peterson", - "email": "tanpeterson@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tanner-peterson/", - "campus": "LA", - "cohort": "46", - "jobTitle": "Front End Engineer", - "industry": "Cloud Services", - "cities": ["Chicago", "Chula Vista", "Oklahoma City"], - "_id": { - "$oid": "6674c30595590f9fd9459072" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon", - "name": "Timothy Mai", - "email": "timothy.mai13@gmail.com", - "linkedIn": "https://www.linkedin.com/in/timothy-mai-459085b3/", - "campus": "LA", - "cohort": "31", - "jobTitle": "Software Development Engineer I", - "industry": "Advertising", - "cities": ["Detroit", "Sacramento"], - "_id": { - "$oid": "6674c30595590f9fd9459073" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon", - "name": "Yogi Paturu", - "email": "ypaturu@gmail.com", - "linkedIn": "https://www.linkedin.com/in/yogi-paturu/", - "campus": "NYC", - "cohort": "29", - "jobTitle": "Software Development Engineer", - "industry": "Cloud", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459074" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon", - "name": "Yale Yng-Wong", - "email": "yyngwong@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ywyw/", - "campus": "NYC", - "cohort": "32", - "jobTitle": "SDE1", - "industry": "Advertising", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459075" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon (AWS)", - "name": "Michael Weber", - "email": "michael.weber.jr@gmail.com", - "linkedIn": "https://www.linkedin.com/in/michael-weber-jr/", - "campus": "NYC", - "cohort": "26", - "jobTitle": "Software Development Engineer", - "industry": "Cloud Services", - "cities": ["Bakersfield", "Denver", "Lubbock"], - "_id": { - "$oid": "6674c30595590f9fd9459076" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon Prime Video", - "name": "Faraz Moallemi", - "email": "moallemifaraz@gmail.com", - "linkedIn": "https://www.linkedin.com/in/farazmoallemi/", - "campus": "LA", - "cohort": "44", - "jobTitle": "Software Development Engineer I", - "industry": "Big Tech", - "cities": ["Durham"], - "_id": { - "$oid": "6674c30595590f9fd9459077" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon Web Services", - "name": "Daniel Forrester", - "email": "danielf216@gmail.com", - "linkedIn": "https://www.linkedin.com/in/danielforrester/", - "campus": "PTRI", - "cohort": "5", - "jobTitle": "Cloud Application Architect", - "industry": "Cloud Services", - "cities": ["Dallas"], - "_id": { - "$oid": "6674c30595590f9fd9459078" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon Web Services", - "name": "Lumie (Jen) Song", - "email": "lumie.song@gmail.com", - "linkedIn": "https://www.linkedin.com/in/lu0713/", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Software Development Engineer II", - "industry": "Software", - "cities": ["Jacksonville", "Irving", "San Diego"], - "_id": { - "$oid": "6674c30595590f9fd9459079" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon Web Services", - "name": "Matthew Lee", - "email": "matthewcml6022@gmail.com", - "linkedIn": "https://www.linkedin.com/in/matthewcmlee/", - "campus": "LA", - "cohort": "45", - "jobTitle": "Software Development Engineer", - "industry": "Web Services / Cloud Computing", - "cities": ["San Diego", "Norfolk", "Dallas"], - "_id": { - "$oid": "6674c30595590f9fd945907a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon Web Services", - "name": "Taylor Rodrigues", - "email": "taylor.d.rod33@gmail.com", - "linkedIn": "https://www.linkedin.com/in/taylorrodrigues/", - "campus": "LA", - "cohort": "33", - "jobTitle": "Software Development Engineer I (L4)", - "industry": "Cloud Computing", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945907b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon Web Services (AWS)", - "name": "Raphael Bargues", - "email": "rbargues@gmail.com", - "linkedIn": "https://www.linkedin.com/in/raphael-bargues/", - "campus": "NYC", - "cohort": "17", - "jobTitle": "Software Engineer", - "industry": "", - "cities": ["New Orleans", "St. Petersburg", "Scottsdale"], - "_id": { - "$oid": "6674c30595590f9fd945907c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amazon, AWS", - "name": "Jimmy Ngo", - "email": "jimmycngo@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jimmycngo/", - "campus": "FTRI", - "cohort": "2", - "jobTitle": "Software Development Engineer 1", - "industry": "cloud computing", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945907d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "AMC Networks", - "name": "Wade Armstrong", - "email": "wade@wadearmstrong.com", - "linkedIn": "https://www.linkedin.com/in/wadearmstrong/", - "campus": "LA", - "cohort": "5", - "jobTitle": "Director, Front-End Development", - "industry": "Entertainment", - "cities": ["Glendale", "Corpus Christi", "Milwaukee"], - "_id": { - "$oid": "6674c30595590f9fd945907e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "American Airlines(Contracted via BrookSource)", - "name": "Mariah Talicuran", - "email": "talicuran.mariah@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mariahtalicuran/", - "campus": "PTRI", - "cohort": "6", - "jobTitle": "Associate React Developer", - "industry": "Other", - "cities": ["Toronto"], - "_id": { - "$oid": "6674c30595590f9fd945907f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "American Dawn", - "name": "Charlie Huang", - "email": "charliehuang913@gmail.com", - "linkedIn": "https://www.linkedin.com/in/huangcharlie", - "campus": "LA / WCRI", - "cohort": "48", - "jobTitle": "Junior Software Engineer", - "industry": "Retail", - "cities": ["Fort Wayne"], - "_id": { - "$oid": "6674c30595590f9fd9459080" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "American Express", - "name": "Dominic DiSalvo", - "email": "Dominicd17@gmail.com", - "linkedIn": "https://www.linkedin.com/mwlite/in/dominicdisalvo", - "campus": "FTRI", - "cohort": "3", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Tampa"], - "_id": { - "$oid": "6674c30595590f9fd9459081" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "American Express", - "name": "Jake Diorio", - "email": "jdiorio2393@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jake-diorio/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Software Engineer", - "industry": "Banking", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459082" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "American Express", - "name": "Kelvin Shamy", - "email": "kelvinshamy@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kelvinshamy/", - "campus": "FTRI / CTRI", - "cohort": "13", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459083" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "American Express", - "name": "Rebecca Turk", - "email": "rebecca.e.turk@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rebeccaturk/", - "campus": "NYC", - "cohort": "5", - "jobTitle": "Engineer I", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459084" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "American Express", - "name": "Victor He", - "email": "victorhe33@gmail.com", - "linkedIn": "www.linkedin.com/in/victorhe33", - "campus": "PTRI", - "cohort": "8", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Fresno", "Norfolk", "Henderson"], - "_id": { - "$oid": "6674c30595590f9fd9459085" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "AmeriSave", - "name": "Andrew Pomatti", - "email": "ampomatti@gmail.com", - "linkedIn": "https://www.linkedin.com/in/drewpomatti/", - "campus": "LA", - "cohort": "47", - "jobTitle": "Systems Engineer I", - "industry": "Real Estate", - "cities": ["Santa Ana", "London", "Long Beach"], - "_id": { - "$oid": "6674c30595590f9fd9459086" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "AmeriSave", - "name": "Jacob C Viesselman", - "email": "jacob.viesselman@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jacobviesselman/", - "campus": "LA", - "cohort": "46", - "jobTitle": "Software Engineer", - "industry": "Real Estate", - "cities": ["Greensboro"], - "_id": { - "$oid": "6674c30595590f9fd9459087" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amerisave", - "name": "Norman Liu", - "email": "Normanliu91@gmail.com", - "linkedIn": "https://www.linkedin.com/in/norm-liu", - "campus": "PTRI", - "cohort": "5", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Cincinnati"], - "_id": { - "$oid": "6674c30595590f9fd9459088" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "AmeriSave Mortgage Corporation", - "name": "Jason Chan", - "email": "Jason.chann91@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jason-chan1765/", - "campus": "FTRI", - "cohort": "7", - "jobTitle": "Software Engineer", - "industry": "Real Estate", - "cities": ["Washington", "Phoenix"], - "_id": { - "$oid": "6674c30595590f9fd9459089" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "AmeriSave Mortgage Corporation", - "name": "Michael Prince", - "email": "mgp2454@gmail.com", - "linkedIn": "https://www.linkedin.com/in/michael-prince", - "campus": "LA", - "cohort": "46", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Portland", "Houston"], - "_id": { - "$oid": "6674c30595590f9fd945908a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Ample, LLC", - "name": "Rudo Hengst", - "email": "rudohengst@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rhengst/", - "campus": "NYC", - "cohort": "18", - "jobTitle": "Lead Developer", - "industry": "Digital Marketing", - "cities": ["Saint Paul", "Henderson"], - "_id": { - "$oid": "6674c30595590f9fd945908b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amplify", - "name": "Ekaterina Vasileva", - "email": "ekaterinavasileva768@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ekaterina-vasileva238/", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Software Engineer", - "industry": "Education", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945908c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Amplify", - "name": "Biet Van Nguyen", - "email": "vanbietnguyen@gmail.com", - "linkedIn": "https://www.linkedin.com/in/van-biet-nguyen-6879434a/", - "campus": "NYC", - "cohort": "27", - "jobTitle": "Software Engineer", - "industry": "Edtech", - "cities": ["Jacksonville", "Tampa"], - "_id": { - "$oid": "6674c30595590f9fd945908d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Anaconda", - "name": "Rosio Reyes", - "email": "rosio_reyes@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/rosio-reyes-09b9a256/", - "campus": "PTRI", - "cohort": "3", - "jobTitle": "Software Engineer", - "industry": "Computer Software", - "cities": ["Charlotte", "Anchorage", "Pittsburgh"], - "_id": { - "$oid": "6674c30595590f9fd945908e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Ancestry", - "name": "Miguel Garibay", - "email": "miguelgaribay93@gmail.com", - "linkedIn": "https://www.linkedin.com/in/miguel-garibay-mag/", - "campus": "LA", - "cohort": "43", - "jobTitle": "Full Stack Software Engineer", - "industry": "Genealogy", - "cities": ["Chandler", "Plano"], - "_id": { - "$oid": "6674c30595590f9fd945908f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Ancestry", - "name": "Schno Mozingo", - "email": "schno.mozingo@gmail.com", - "linkedIn": "https://www.linkedin.com/in/schno-mozingo/", - "campus": "LA", - "cohort": "12", - "jobTitle": "Senior Software Engineer", - "industry": "Geneology", - "cities": ["Orlando"], - "_id": { - "$oid": "6674c30595590f9fd9459090" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Ancilia", - "name": "Clark Pang", - "email": "clarkcpang@gmail.com", - "linkedIn": "https://www.linkedin.com/in/clarkpang/", - "campus": "LA / WCRI", - "cohort": "56", - "jobTitle": "Software Engineer", - "industry": "Security", - "cities": ["Anaheim", "Wichita", "Tulsa"], - "_id": { - "$oid": "6674c30595590f9fd9459091" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Anheuser-Busch", - "name": "Brandon Bowers", - "email": "brandonbowers1234@gmail.com", - "linkedIn": "https://www.linkedin.com/in/brandon-michael-bowers/", - "campus": "FTRI", - "cohort": "3", - "jobTitle": "Senior Front-end React Developer", - "industry": "Beverages", - "cities": ["Buffalo", "Greensboro", "Portland"], - "_id": { - "$oid": "6674c30595590f9fd9459092" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Annalect", - "name": "Carlos Peรฑa", - "email": "carlos.pena91@gmail.com", - "linkedIn": "https://www.linkedin.com/in/carlospena91", - "campus": "LA", - "cohort": "39", - "jobTitle": "Front End Engineer", - "industry": "Advertisement and Media", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459093" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Annalect", - "name": "Trent Currie", - "email": "trentdcurrie@gmail.com", - "linkedIn": "https://www.linkedin.com/in/trentdcurrie/", - "campus": "LA", - "cohort": "39", - "jobTitle": "Front-End Engineer", - "industry": "Marketing", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459094" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Apex Fintech Solutions", - "name": "Kevin Le", - "email": "lekevin2013@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kevinvu-le/", - "campus": "FTRI / CTRI", - "cohort": "8", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["St. Petersburg"], - "_id": { - "$oid": "6674c30595590f9fd9459095" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Apex Systems", - "name": "Anthony Martinez", - "email": "anthony@amartinez.cc", - "linkedIn": "https://www.linkedin.com/in/tony-mtz/", - "campus": "LA", - "cohort": "41", - "jobTitle": "Software Engineer", - "industry": "Bank", - "cities": ["Cincinnati"], - "_id": { - "$oid": "6674c30595590f9fd9459096" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Apollo GraphQL", - "name": "Joel Burton", - "email": "joeltburton@gmail.com", - "linkedIn": "https://www.linkedin.com/in/joeltburton", - "campus": "LA", - "cohort": "26", - "jobTitle": "Software Engineer", - "industry": "Technology", - "cities": ["Tucson", "Mumbai"], - "_id": { - "$oid": "6674c30595590f9fd9459097" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Appfolio", - "name": "Erik Fisher", - "email": "efishr4@gmail.com", - "linkedIn": "https://www.linkedin.com/in/erik-fisher-53b9b6b3/", - "campus": "LA", - "cohort": "24", - "jobTitle": "Software Engineer II", - "industry": "Aviation & Aerospace", - "cities": ["Paris", "Miami", "Albuquerque"], - "_id": { - "$oid": "6674c30595590f9fd9459098" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Appfolio", - "name": "Michelle Holland", - "email": "michellebholland@gmail.com", - "linkedIn": "https://www.linkedin.com/in/michellebholland/", - "campus": "LA", - "cohort": "37", - "jobTitle": "Software Engineer", - "industry": "Real Estate", - "cities": ["Houston", "Portland", "Mesa"], - "_id": { - "$oid": "6674c30595590f9fd9459099" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "AppFolio", - "name": "Timothy Barry", - "email": "tim.barry12@gmail.com", - "linkedIn": "https://www.linkedin.com/in/timothy-barry-se", - "campus": "FTRI", - "cohort": "8", - "jobTitle": "Software Engineer", - "industry": "Real Estate", - "cities": ["Fort Worth", "St. Petersburg", "Mesa"], - "_id": { - "$oid": "6674c30595590f9fd945909a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Apple", - "name": "Alexander Zhang", - "email": "azalexanderzhang@gmail.com", - "linkedIn": "https://www.linkedin.com/in/zhang-alexander/", - "campus": "NYC", - "cohort": "26", - "jobTitle": "Software Engineer", - "industry": "Tech", - "cities": ["Santa Ana", "London"], - "_id": { - "$oid": "6674c30595590f9fd945909b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Apple (via Ryzen)", - "name": "Dieu Huynh", - "email": "dieuhhuynh@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dieu-huynh/", - "campus": "LA", - "cohort": "42", - "jobTitle": "Frontend Engineer", - "industry": "Technology", - "cities": ["Denver", "Fort Wayne"], - "_id": { - "$oid": "6674c30595590f9fd945909c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Applied Minds", - "name": "Michael Chiang", - "email": "michael.chiang.dev5@gmail.com", - "linkedIn": "https://www.linkedin.com/in/michael-chiang-dev5/", - "campus": "FTRI / CTRI", - "cohort": "13", - "jobTitle": "software engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945909d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "AppOmni", - "name": "Ousman Diallo", - "email": "ordiallo@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ousman-diallo/", - "campus": "NYC", - "cohort": "15", - "jobTitle": "Front End Engineer", - "industry": "Security", - "cities": ["Chandler", "Portland", "San Jose"], - "_id": { - "$oid": "6674c30595590f9fd945909e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Arc'teryx", - "name": "Simon Grigenas", - "email": "grigenas@outlook.com", - "linkedIn": "https://www.linkedin.com/in/simon-grigenas/", - "campus": "NYC / ECRI", - "cohort": "1", - "jobTitle": "Intermediate Web Applications Developer", - "industry": "Retail", - "cities": ["Fort Wayne", "Saint Paul"], - "_id": { - "$oid": "6674c30595590f9fd945909f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Arcadia", - "name": "Adda Kridler", - "email": "addakridler@gmail.com", - "linkedIn": "https://www.linkedin.com/in/addakridler/", - "campus": "NYC", - "cohort": "27", - "jobTitle": "Software Engineer 1", - "industry": "Energy Tech", - "cities": ["Sydney", "Omaha"], - "_id": { - "$oid": "6674c30595590f9fd94590a0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Arcadia", - "name": "Cameron Baumgartner", - "email": "cameron.h.baumgartner@gmail.com", - "linkedIn": "https://www.linkedin.com/in/cameronbaumgartner/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Software Engineer", - "industry": "Renewable Energy", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94590a1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Arcadia", - "name": "Jehovany A Cruz", - "email": "howaboutjeho@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jehovany-cruz/", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Software Engineer", - "industry": "Energy - Renewable Energy", - "cities": ["Fresno", "Baltimore", "Louisville"], - "_id": { - "$oid": "6674c30595590f9fd94590a2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Arcadia", - "name": "Jason Liggayu", - "email": "jligg224@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jasonliggayu/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Full Stack Engineer", - "industry": "Renewable Energy", - "cities": ["Indianapolis", "Detroit"], - "_id": { - "$oid": "6674c30595590f9fd94590a3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Arcadia", - "name": "Kristen Althoff", - "email": "kristenwalthoff@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kristen-althoff-3a4765b9/", - "campus": "NYC", - "cohort": "31", - "jobTitle": "Full-Stack Software Engineer I", - "industry": "Software / Tech", - "cities": ["London", "Fort Wayne", "Buffalo"], - "_id": { - "$oid": "6674c30595590f9fd94590a4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Arcules", - "name": "Nico Flores", - "email": "floresni1996@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nicolasaflores/", - "campus": "LA", - "cohort": "48", - "jobTitle": "Software Engineer", - "industry": "Cloud Services", - "cities": ["San Antonio", "Denver", "Anchorage"], - "_id": { - "$oid": "6674c30595590f9fd94590a5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Arcules", - "name": "Patrick Allen", - "email": "patrick@ohana-app.io", - "linkedIn": "https://linkedin.com/in/patrickallendfs", - "campus": "LA", - "cohort": "43", - "jobTitle": "Software Engineer", - "industry": "Cloud Video", - "cities": ["Seattle", "Sydney", "San Antonio"], - "_id": { - "$oid": "6674c30595590f9fd94590a6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Armoire", - "name": "Katie Sandfort", - "email": "katie.sandfort@gmail.com", - "linkedIn": "https://www.linkedin.com/in/katie-sandfort/", - "campus": "LA / WCRI", - "cohort": "55", - "jobTitle": "Software Engineer", - "industry": "Retail", - "cities": ["London", "Greensboro"], - "_id": { - "$oid": "6674c30595590f9fd94590a7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Artsy", - "name": "Matt Jones", - "email": "matt.chris.jones@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mc-jones/", - "campus": "NYC", - "cohort": "21", - "jobTitle": "Senior Engineer 1 (Fullstack)", - "industry": "Art", - "cities": ["Chesapeake", "Lincoln"], - "_id": { - "$oid": "6674c30595590f9fd94590a8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Artyc", - "name": "Daniel Geiger", - "email": "daniel.w.geiger@gmail.com", - "linkedIn": "https://www.linkedin.com/in/danielwgeiger/", - "campus": "FTRI / CTRI", - "cohort": "4", - "jobTitle": "Fullstack Engineer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94590a9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Arvest Bank", - "name": "Leilani Hernandez", - "email": "leilani.digame@gmail.com", - "linkedIn": "www.linkedin.com/in/lherna05", - "campus": "LA / WCRI", - "cohort": "52", - "jobTitle": "Front End Developer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94590aa" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Ash Wellness", - "name": "Andrew Rehrig", - "email": "arehrig@gmail.com", - "linkedIn": "https://www.linkedin.com/in/andrew-rehrig/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Full Stack Engineer", - "industry": "Healthcare", - "cities": ["Honolulu"], - "_id": { - "$oid": "6674c30595590f9fd94590ab" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Asics", - "name": "Alexa Roberts", - "email": "alexarobertss@protonmail.com", - "linkedIn": "https://www.linkedin.com/in/alexarobertss", - "campus": "LA / WCRI", - "cohort": "51", - "jobTitle": "Frontend Software Engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94590ac" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Aspiration", - "name": "Charles Gyer", - "email": "charlesgyer@gmail.com", - "linkedIn": "https://www.linkedin.com/in/charles-gyer/", - "campus": "PTRI", - "cohort": "4", - "jobTitle": "Software Engineer, Backend", - "industry": "Green Fintech", - "cities": ["Atlanta", "Beijing"], - "_id": { - "$oid": "6674c30595590f9fd94590ad" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Astra", - "name": "Jae Ryu", - "email": "rj.jaeryu@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jaeryu/", - "campus": "NYC", - "cohort": "27", - "jobTitle": "Senior Software Engineer", - "industry": "Space-tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94590ae" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Asurion", - "name": "Jinseon Shin", - "email": "jinseonshin@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jinseonshin/", - "campus": "LA", - "cohort": "38", - "jobTitle": "Software Engineer", - "industry": "Tech Insurance", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94590af" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Asurion", - "name": "Shah Chaudri", - "email": "shah.pro.se@gmail.com", - "linkedIn": "https://www.linkedin.com/in/shah-chaudri/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Software Engineer 3", - "industry": "Tech Insurance", - "cities": ["Lexington", "Oakland"], - "_id": { - "$oid": "6674c30595590f9fd94590b0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Asurion", - "name": "Travis Woolston", - "email": "travis.ww@hotmail.com", - "linkedIn": "https://www.linkedin.com/in/traviswoolston/", - "campus": "PTRI", - "cohort": "3", - "jobTitle": "Software Engineer", - "industry": "Insurance", - "cities": ["Scottsdale", "North Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd94590b1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "AT&T", - "name": "Alexander Kim", - "email": "akim3235@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alexanderkim1/", - "campus": "LA", - "cohort": "38", - "jobTitle": "Backend Software Engineer", - "industry": "Entertainment", - "cities": ["Baltimore"], - "_id": { - "$oid": "6674c30595590f9fd94590b2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "AT&T", - "name": "Marc Doran", - "email": "doramm4408@gmail.com", - "linkedIn": "https://www.linkedin.com/in/marc-doran", - "campus": "NYC / ECRI", - "cohort": "33", - "jobTitle": "Database Developer", - "industry": "Telecommunications", - "cities": ["Minneapolis", "Bakersfield", "Los Angeles"], - "_id": { - "$oid": "6674c30595590f9fd94590b3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "AT&T", - "name": "Alina Grafkina", - "email": "grafkina.production@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alinakyaw/", - "campus": "FTRI / CTRI", - "cohort": "13", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94590b4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Athena Health", - "name": "Zach Pestaina", - "email": "zpestaina@gmail.com", - "linkedIn": "linkedin.com/zachpestaina/", - "campus": "NYC / ECRI", - "cohort": "38", - "jobTitle": "Analytics Engineer", - "industry": "Healthcare", - "cities": ["Baltimore", "Jacksonville"], - "_id": { - "$oid": "6674c30595590f9fd94590b5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Atlassian", - "name": "Giao Tran", - "email": "contactgiaotran@gmail.com", - "linkedIn": "https://www.linkedin.com/in/gd-tran/", - "campus": "LA", - "cohort": "40", - "jobTitle": "Software Engineer P3", - "industry": "Project management?", - "cities": ["Tulsa", "Arlington"], - "_id": { - "$oid": "6674c30595590f9fd94590b6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Atlassian", - "name": "Dan Snyder", - "email": "dasnyder3@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dasnyder3/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Software Engineer", - "industry": "Tech", - "cities": ["Bakersfield", "Pittsburgh"], - "_id": { - "$oid": "6674c30595590f9fd94590b7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Atlassian/ Trello", - "name": "Elizabeth Lotto", - "email": "fakeEmail1@fakeEmail.com", - "linkedIn": "https://www.linkedin.com/in/elizabethlotto/", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Software Engineer", - "industry": "Computer Software", - "cities": ["Beijing", "Memphis"], - "_id": { - "$oid": "6674c30595590f9fd94590b8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Atos Syntel (at Disney)", - "name": "Dakota Gilbreath", - "email": "dgilbrea92@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dakota-gilbreath/", - "campus": "LA", - "cohort": "34", - "jobTitle": "Full Stack Developer", - "industry": "Entertainment", - "cities": ["Tokyo", "Laredo"], - "_id": { - "$oid": "6674c30595590f9fd94590b9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.057Z" - }, - "__v": 0 - }, - { - "company": "Attentive", - "name": "Sam Goldberg", - "email": "sgoldber61@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sgoldber61/", - "campus": "LA", - "cohort": "27", - "jobTitle": "Software Engineer, Frontend - L4", - "industry": "E-commerce", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94590ba" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Attentive", - "name": "Pravek Karwe", - "email": "pkarwe62@gmail.com", - "linkedIn": "https://www.linkedin.com/in/pravek-karwe?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app", - "campus": "NYOI", - "cohort": "7", - "jobTitle": "Senior Product Manager", - "industry": "Marketing/Advertising", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94590bb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Audacy", - "name": "John Roman", - "email": "johnmroman33@gmail.com", - "linkedIn": "https://www.linkedin.com/in/john-m-roman/", - "campus": "NYC / ECRI", - "cohort": "38", - "jobTitle": "Associate Software Engineer", - "industry": "Entertainment", - "cities": ["Seattle"], - "_id": { - "$oid": "6674c30595590f9fd94590bc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "AuditBoard", - "name": "Alex Yu", - "email": "alexjihunyu@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alexjihunyu/", - "campus": "LA", - "cohort": "42", - "jobTitle": "Software Engineer", - "industry": "FinTech", - "cities": ["Oakland", "Jersey City"], - "_id": { - "$oid": "6674c30595590f9fd94590bd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Autodesk", - "name": "Javan Ang", - "email": "javanamt@gmail.com", - "linkedIn": "https://www.linkedin.com/in/javanang/", - "campus": "PTRI", - "cohort": "6", - "jobTitle": "Software Engineer", - "industry": "Software/Tech", - "cities": ["Louisville", "Toledo"], - "_id": { - "$oid": "6674c30595590f9fd94590be" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "AutoFi", - "name": "Rocky Lin", - "email": "liangwen511@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rocky-lin/", - "campus": "NYC", - "cohort": "14", - "jobTitle": "Senior Software Engineer", - "industry": "FinTech", - "cities": ["Lincoln"], - "_id": { - "$oid": "6674c30595590f9fd94590bf" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Ava", - "name": "Eden Shirin", - "email": "edenshirin@gmail.com", - "linkedIn": "https://www.linkedin.com/in/eden-shirin/", - "campus": "FTRI / CTRI", - "cohort": "11", - "jobTitle": "Software Engineer", - "industry": "Artificial Intelligence", - "cities": ["Sydney", "Reno"], - "_id": { - "$oid": "6674c30595590f9fd94590c0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Avant", - "name": "David Riley Burns", - "email": "drileyburns@gmail.com", - "linkedIn": "https://www.linkedin.com/in/drileyburns/", - "campus": "NYC", - "cohort": "15", - "jobTitle": "Software Engineer", - "industry": "Loans", - "cities": ["Long Beach", "Saint Paul", "Fort Wayne"], - "_id": { - "$oid": "6674c30595590f9fd94590c1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Avirtek", - "name": "Eliot L Nguyen", - "email": "eliotlefrin@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ibeeliot", - "campus": "LA", - "cohort": "34", - "jobTitle": "Front End Lead Developer", - "industry": "Cybersecurity", - "cities": ["Saint Paul", "Tulsa", "Riverside"], - "_id": { - "$oid": "6674c30595590f9fd94590c2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Avise", - "name": "Frank Norton", - "email": "jfnorton@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jfnorton32/", - "campus": "LA", - "cohort": "37", - "jobTitle": "Full Stack Software Engineer", - "industry": "Fintech", - "cities": ["Louisville", "Lexington"], - "_id": { - "$oid": "6674c30595590f9fd94590c3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Avoma", - "name": "Kevin Chung", - "email": "kevin.c@me.com", - "linkedIn": "https://www.linkedin.com/in/kevc/", - "campus": "LA / WCRI", - "cohort": "47", - "jobTitle": "Software Engineer - Frontend", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94590c4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "AVOXI", - "name": "Shirley Luu", - "email": "sh.rleyluu@gmail.com", - "linkedIn": "https://www.linkedin.com/in/luu-shirley", - "campus": "NYC / ECRI", - "cohort": "35", - "jobTitle": "Full Stack Software Engineer", - "industry": "Business Tech/Enterprise Tech", - "cities": ["Columbus", "Saint Paul", "Irving"], - "_id": { - "$oid": "6674c30595590f9fd94590c5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Avvir", - "name": "Sharon Zhu", - "email": "sharonzhu.15@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sharonzhu/", - "campus": "LA", - "cohort": "41", - "jobTitle": "Software Engineer II", - "industry": "Construction Tech", - "cities": ["Berlin", "Denver", "Long Beach"], - "_id": { - "$oid": "6674c30595590f9fd94590c6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "AWS", - "name": "Blake Myrick", - "email": "blake.myrick@gmail.com", - "linkedIn": "https://www.linkedin.com/in/blake-myrick", - "campus": "PTRI", - "cohort": "3", - "jobTitle": "Software Development Engineer", - "industry": "Tech", - "cities": ["New York", "Lubbock", "Chesapeake"], - "_id": { - "$oid": "6674c30595590f9fd94590c7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "AWS", - "name": "George Jeng", - "email": "gjenga@icloud.com", - "linkedIn": "https://www.linkedin.com/in/gjenga", - "campus": "LA", - "cohort": "49", - "jobTitle": "SDE1", - "industry": "Cloud Services", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94590c8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "AWS", - "name": "Marc Burnie", - "email": "MarcABurnie@gmail.com", - "linkedIn": "https://www.linkedin.com/in/marcburnie", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Software Development Engineer II", - "industry": "Tech", - "cities": ["Madison"], - "_id": { - "$oid": "6674c30595590f9fd94590c9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "AWS", - "name": "Patty Qian", - "email": "patty.qian@gmail.com", - "linkedIn": "https://www.linkedin.com/in/patty-qian/", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Software Development Engineer", - "industry": "Tech", - "cities": ["Honolulu", "Beijing"], - "_id": { - "$oid": "6674c30595590f9fd94590ca" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Axim Geospatial", - "name": "Kevin Le", - "email": "kevinle1003@gmail.com", - "linkedIn": "https://www.linkedin.com/in/xkevinle/", - "campus": "FTRI / CTRI", - "cohort": "10", - "jobTitle": "Software Developer", - "industry": "IT Services", - "cities": ["Louisville", "Cincinnati", "Minneapolis"], - "_id": { - "$oid": "6674c30595590f9fd94590cb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Axle Health", - "name": "Alexandra Ashcraft", - "email": "lash211@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alexandra-ashcraft1/", - "campus": "FTRI / CTRI", - "cohort": "17", - "jobTitle": "Software Engineer", - "industry": "Healthtech/Healthcare", - "cities": ["Raleigh", "Lexington", "Tampa"], - "_id": { - "$oid": "6674c30595590f9fd94590cc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Axon", - "name": "Meng Ting Chiang", - "email": "a123deandean@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mengting-chiang/", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Software Engineer", - "industry": "Public Safety", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94590cd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "B-stock solutions", - "name": "Michael Feldman", - "email": "michaelfeldma1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/michael-feldman15/", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Nodejs / microservices software engineer", - "industry": "E-commerce", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94590ce" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Bach", - "name": "Abbey Campbell", - "email": "campbellabbeya@gmail.com", - "linkedIn": "https://www.linkedin.com/in/campbellabbeya/", - "campus": "LA", - "cohort": "31", - "jobTitle": "Frontend Developer", - "industry": "Entertainment? Wed-tech? lol idk it's pretty niche", - "cities": ["Anaheim"], - "_id": { - "$oid": "6674c30595590f9fd94590cf" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "BallerTV", - "name": "Jenessa Chapalamadugu", - "email": "jenessachap@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jenessachap/", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Full Stack Engineer", - "industry": "Entertainment", - "cities": ["Las Vegas", "Minneapolis"], - "_id": { - "$oid": "6674c30595590f9fd94590d0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Bank of America", - "name": "Ranisha Rafeeque Soopi Kalphantakath", - "email": "ranisharafeeque@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ranisha-rafeeque-s-k/", - "campus": "NYC", - "cohort": "26", - "jobTitle": "AVP, Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94590d1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Barstool Sports", - "name": "Daniel Nagano-Gerace", - "email": "dnaganog@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dnaganog/", - "campus": "NYC", - "cohort": "12", - "jobTitle": "Senior Backend Engineer", - "industry": "Media", - "cities": ["Lubbock", "Charlotte"], - "_id": { - "$oid": "6674c30595590f9fd94590d2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Bayer Crop Science (Neteffects)", - "name": "Jason Fricano", - "email": "jason.fricano@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jasonfricano/", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Node / React Developer", - "industry": "Agricultural Science", - "cities": ["Philadelphia", "Lincoln"], - "_id": { - "$oid": "6674c30595590f9fd94590d3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Bayer Crop Sciences", - "name": "Stephen Budarz", - "email": "sbudarz@gmail.com", - "linkedIn": "https://www.linkedin.com/in/steve-budarz/", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Full Stack Engineer", - "industry": "Agriculture", - "cities": ["El Paso", "Seattle"], - "_id": { - "$oid": "6674c30595590f9fd94590d4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "BD", - "name": "Annabelle Ni", - "email": "ann.j.ni@gmail.com", - "linkedIn": "https://www.linkedin.com/in/annabelleni/", - "campus": "FTRI / CTRI", - "cohort": "17", - "jobTitle": "Software Engineer", - "industry": "Healthtech/Healthcare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94590d5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Beacon Hill Staffing (Charter Communications)", - "name": "David Russo", - "email": "dr2378@gmail.com", - "linkedIn": "https://www.linkedin.com/in/russo-david", - "campus": "NYC / ECRI", - "cohort": "36", - "jobTitle": "Software Engineer", - "industry": "Telecommunications", - "cities": ["Scottsdale", "Gilbert", "Chesapeake"], - "_id": { - "$oid": "6674c30595590f9fd94590d6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Beacon Hill Staffing (working for Charter Communications)", - "name": "Jessica Balding", - "email": "jessica.r.balding@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jessica-balding/", - "campus": "PTRI", - "cohort": "7", - "jobTitle": "Full Stack Developer", - "industry": "Telecommunications", - "cities": ["Raleigh"], - "_id": { - "$oid": "6674c30595590f9fd94590d7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Beautycounter", - "name": "Mario Granberri", - "email": "mgranberri@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mgranberri/", - "campus": "LA", - "cohort": "25", - "jobTitle": "Full stack software engineer", - "industry": "Compliance", - "cities": ["Detroit", "Fresno", "Newark"], - "_id": { - "$oid": "6674c30595590f9fd94590d8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Behavior Frontiers", - "name": "Chance Hernandez", - "email": "chance.hernandez24@gmail.com", - "linkedIn": "https://www.linkedin.com/in/chance-hernandez/", - "campus": "LA", - "cohort": "40", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94590d9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Bentobox", - "name": "Corey Van Splinter", - "email": "cvanspl1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/corey-van-splinter/", - "campus": "LA", - "cohort": "39", - "jobTitle": "Senior Software Engineer", - "industry": "Hospitality", - "cities": ["Washington"], - "_id": { - "$oid": "6674c30595590f9fd94590da" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Bentobox", - "name": "Greg Dixon", - "email": "gdixon529@gmail.com", - "linkedIn": "https://www.linkedin.com/in/gdixon529/", - "campus": "LA", - "cohort": "39", - "jobTitle": "Software Engineer", - "industry": "Software", - "cities": ["Houston"], - "_id": { - "$oid": "6674c30595590f9fd94590db" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "BentoBox", - "name": "Brian Liang", - "email": "liangbrian94@gmail.com", - "linkedIn": "https://www.linkedin.com/in/brian-z-liang/", - "campus": "LA", - "cohort": "43", - "jobTitle": "Product Support Engineer", - "industry": "Not sure", - "cities": ["Sรฃo Paulo", "Gilbert"], - "_id": { - "$oid": "6674c30595590f9fd94590dc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Berkadia", - "name": "Isaac Kittila", - "email": "isaac.kittila@gmail.com", - "linkedIn": "https://www.linkedin.com/in/isaac-kittila/", - "campus": "LA", - "cohort": "39", - "jobTitle": "Associate Software Engineer", - "industry": "Commercial Real Estate", - "cities": ["San Diego", "Washington", "Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd94590dd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Best Buy", - "name": "Alexander Hager", - "email": "alexhager19@gmail.com", - "linkedIn": "https://www.linkedin.com/in/hager-alexander/", - "campus": "NYC", - "cohort": "29", - "jobTitle": "Front end Engineer", - "industry": "Data analytics", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94590de" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Better.com", - "name": "Stefan Armijo", - "email": "stefan.armijo@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stefanarmijo/", - "campus": "LA", - "cohort": "21", - "jobTitle": "Sr. Software Engineer", - "industry": "", - "cities": ["Houston"], - "_id": { - "$oid": "6674c30595590f9fd94590df" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "BidWrangler", - "name": "Kylene Hohman", - "email": "kylenehohman@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kylene-hohman", - "campus": "PTRI", - "cohort": "5", - "jobTitle": "Full-Stack Developer", - "industry": "Auction Services", - "cities": ["Riverside", "New York", "Saint Paul"], - "_id": { - "$oid": "6674c30595590f9fd94590e0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Bigeye", - "name": "Dasha Kondratenko", - "email": "dashakondrattenko@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dasha-k/", - "campus": "PTRI", - "cohort": "1", - "jobTitle": "Software Engineer 1", - "industry": "Data quality", - "cities": ["San Antonio", "Laredo", "Chesapeake"], - "_id": { - "$oid": "6674c30595590f9fd94590e1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "BigID", - "name": "Helen Regula", - "email": "hregula03@gmail.com", - "linkedIn": "https://www.linkedin.com/in/helenregula/", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Senior Full Stack Software Engineer", - "industry": "Cyber Security", - "cities": ["Irvine", "Tulsa", "Norfolk"], - "_id": { - "$oid": "6674c30595590f9fd94590e2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Bill.com", - "name": "Gordon Hui", - "email": "Maddogg612@gmail.com", - "linkedIn": "https://www.linkedin.com/in/gordon-hui", - "campus": "PTRI", - "cohort": "3", - "jobTitle": "Software engineer 2 - Frontend", - "industry": "Fintech", - "cities": ["Dallas"], - "_id": { - "$oid": "6674c30595590f9fd94590e3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Bio-Rad Laboratories", - "name": "Tiffany Yang", - "email": "teefyang7857@gmail.com", - "linkedIn": "https://www.linkedin.com/in/teayang/", - "campus": "LA", - "cohort": "21", - "jobTitle": "Software Engineer", - "industry": "Biotech", - "cities": ["New Orleans", "Columbus"], - "_id": { - "$oid": "6674c30595590f9fd94590e4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "BitGo", - "name": "Joe Kinney", - "email": "josephrkinney@gmail.com", - "linkedIn": "https://www.linkedin.com/in/joekinney17/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Greensboro", "Bakersfield", "Buffalo"], - "_id": { - "$oid": "6674c30595590f9fd94590e5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Bitovi", - "name": "Edward Park", - "email": "edwardpark123@gmail.com", - "linkedIn": "https://www.linkedin.com/in/edwardparkwork/", - "campus": "LA", - "cohort": "41", - "jobTitle": "Junior Developer and Consultant", - "industry": "Computer Software", - "cities": ["Columbus"], - "_id": { - "$oid": "6674c30595590f9fd94590e6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "BitPay", - "name": "Taven Shumaker", - "email": "tavensshumaker@gmail.com", - "linkedIn": "https://www.linkedin.com/in/taven-shumaker/", - "campus": "LA", - "cohort": "38", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Anaheim"], - "_id": { - "$oid": "6674c30595590f9fd94590e7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Black Cape", - "name": "kyle saunders", - "email": "kylersaunders@gmail.com", - "linkedIn": "/kylersaunders", - "campus": "NYC / ECRI", - "cohort": "37", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Chandler", "Irving"], - "_id": { - "$oid": "6674c30595590f9fd94590e8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Blackrock", - "name": "Jiaxin Li", - "email": "jiaxin.li.gogo@gmail.com", - "linkedIn": "https://www.linkedin.com/in/lijiaxingogo/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "DevOps Engineer", - "industry": "", - "cities": ["Norfolk"], - "_id": { - "$oid": "6674c30595590f9fd94590e9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Blackthorn Software", - "name": "Aalok Shah", - "email": "aalok.tsh@gmail.com", - "linkedIn": "/kolashah", - "campus": "NYC / ECRI", - "cohort": "37", - "jobTitle": "Full Stack Software Engineer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94590ea" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Blackthorn.io", - "name": "Tristan Onfroy", - "email": "tonfroy90@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tristan-onfroy/", - "campus": "PTRI", - "cohort": "7", - "jobTitle": "Support Software Engineer", - "industry": "Software Solutions/Developer Tools", - "cities": ["Irvine", "Henderson"], - "_id": { - "$oid": "6674c30595590f9fd94590eb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Blend", - "name": "Peter Makhnatch", - "email": "p.makhnatch@gmail.com", - "linkedIn": "https://www.linkedin.com/in/petermakhnatch/", - "campus": "PTRI", - "cohort": "8", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Sydney", "Berlin"], - "_id": { - "$oid": "6674c30595590f9fd94590ec" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Blink Health", - "name": "Matthew Digel", - "email": "Digel.matt@gmail.com", - "linkedIn": "https://www.linkedin.com/in/matt-digel", - "campus": "PTRI", - "cohort": "Beta", - "jobTitle": "Sr. Product Manager", - "industry": "Health Care Tech", - "cities": ["Toledo", "Saint Paul"], - "_id": { - "$oid": "6674c30595590f9fd94590ed" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Blizzard", - "name": "Christopher Washburn", - "email": "chris132128@gmail.com", - "linkedIn": "https://www.linkedin.com/in/christopherwashburn/", - "campus": "LA", - "cohort": "24", - "jobTitle": "Software Development Engineer", - "industry": "Insurance", - "cities": ["Mumbai", "Milwaukee", "Oakland"], - "_id": { - "$oid": "6674c30595590f9fd94590ee" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "BlockFi", - "name": "Mohtasim Chowdhury", - "email": "mohtasim.hc@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mohtasimc/", - "campus": "NYC", - "cohort": "13", - "jobTitle": "Frontend Engineer", - "industry": "Fintech", - "cities": ["New York", "Virginia Beach", "Reno"], - "_id": { - "$oid": "6674c30595590f9fd94590ef" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "BLOCKS", - "name": "Christopher C Carney", - "email": "ccarney51@gmail.com", - "linkedIn": "https://www.linkedin.com/mwlite/in/christopher-c-carney", - "campus": "NYC", - "cohort": "24", - "jobTitle": "Senior Backend Engineer", - "industry": "Technology", - "cities": ["Austin", "Scottsdale", "Anchorage"], - "_id": { - "$oid": "6674c30595590f9fd94590f0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Bloom Medicinals", - "name": "Candie Hill", - "email": "can330330@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/candie-hill/", - "campus": "LA / WCRI", - "cohort": "49", - "jobTitle": "Jr Software Developer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94590f1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Bloomberg", - "name": "John Haberstroh", - "email": "haberstroh.john@gmail.com", - "linkedIn": "https://www.linkedin.com/in/johnhaberstroh/", - "campus": "NYC", - "cohort": "28", - "jobTitle": "Senior Fullstack Engineer", - "industry": "Financial,Software,Media,Data", - "cities": ["Norfolk", "Memphis"], - "_id": { - "$oid": "6674c30595590f9fd94590f2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Bloomberg", - "name": "James Maguire", - "email": "Jmaguire655@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "29", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94590f3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Bloomberg", - "name": "Cedric Lee", - "email": "leeced@umich.edu", - "linkedIn": "https://www.linkedin.com/in/leeced/", - "campus": "NYC", - "cohort": "21", - "jobTitle": "Senior Software Engineer", - "industry": "Fintech", - "cities": ["El Paso", "Tampa"], - "_id": { - "$oid": "6674c30595590f9fd94590f4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Bloomberg", - "name": "Duke Lee", - "email": "leeduke90@gmail.com", - "linkedIn": "https://www.linkedin.com/in/duke-lee/", - "campus": "FTRI", - "cohort": "4", - "jobTitle": "Software Engineer", - "industry": "Fin-Tech", - "cities": ["Stockton", "Oakland", "Atlanta"], - "_id": { - "$oid": "6674c30595590f9fd94590f5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Bloomberg", - "name": "Michael Chin", - "email": "mikechin37@gmail.com", - "linkedIn": "https://www.linkedin.com/in/michael-9-chin/", - "campus": "NYC / ECRI", - "cohort": "29", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Houston", "Riverside", "Norfolk"], - "_id": { - "$oid": "6674c30595590f9fd94590f6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Bloomberg Industry Group", - "name": "Neel Lakshman", - "email": "neelanjan.lakshman@gmail.com", - "linkedIn": "https://www.linkedin.com/in/neel-lakshman/", - "campus": "NYC", - "cohort": "31", - "jobTitle": "Web Application Architect I", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94590f7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Bloomberg L.P.", - "name": "Ariel Hyman", - "email": "a.o.hyman@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ahyman0712/", - "campus": "NYC", - "cohort": "11", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Sรฃo Paulo", "Greensboro"], - "_id": { - "$oid": "6674c30595590f9fd94590f8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Bloomberg LP", - "name": "Jinhee Choi", - "email": "jinhee.k.choi@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jinheekchoi/", - "campus": "LA", - "cohort": "44", - "jobTitle": "Senior Software Engineer (Consultant)", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94590f9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Bloomboard", - "name": "Junie Hou", - "email": "selilac9@gmail.com", - "linkedIn": "https://www.linkedin.com/in/juniehou/", - "campus": "NYC", - "cohort": "27", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Norfolk", "Raleigh"], - "_id": { - "$oid": "6674c30595590f9fd94590fa" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Blue Cross Blue Sheild of Florida", - "name": "Adam Rodriguez", - "email": "adamxrodriguez@gmail.com", - "linkedIn": "https://linkedin.com/in/adamrodriguez/", - "campus": "NYC / ECRI", - "cohort": "33", - "jobTitle": "Senior React Node Software Engineer", - "industry": "Healthcare", - "cities": ["Philadelphia"], - "_id": { - "$oid": "6674c30595590f9fd94590fb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Blue Origin", - "name": "Sam VanTassel", - "email": "vantassel.sam@gmail.com", - "linkedIn": "https://www.linkedin.com/in/samvantassel/", - "campus": "LA", - "cohort": "47", - "jobTitle": "Software Engineer I", - "industry": "Aerospace", - "cities": ["Washington", "Cleveland"], - "_id": { - "$oid": "6674c30595590f9fd94590fc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Blueberry Pediatrics", - "name": "Lina Lee", - "email": "woorin.lee1524@gmail.com", - "linkedIn": "www.linkedin.com/in/lee-lina", - "campus": "LA / WCRI", - "cohort": "49", - "jobTitle": "Full-Stack Software Engineer", - "industry": "Healthcare", - "cities": ["Memphis"], - "_id": { - "$oid": "6674c30595590f9fd94590fd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "BlueStream Health", - "name": "Wei Huang", - "email": "wei.waye.huang@gmail.com", - "linkedIn": "https://www.linkedin.com/in/wei-waye-huang/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Senior Software Engineer", - "industry": "Healthcare", - "cities": ["Berlin"], - "_id": { - "$oid": "6674c30595590f9fd94590fe" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "BlueVoyant", - "name": "Mahfuz Kabir", - "email": "mahfuzk@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mahfuzkabir/", - "campus": "NYC", - "cohort": "4", - "jobTitle": "Software Engineer (Managed Security Services)", - "industry": "", - "cities": ["Henderson", "Denver"], - "_id": { - "$oid": "6674c30595590f9fd94590ff" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "BNY Mellon", - "name": "Ahsan Ali", - "email": "ali.ahsan95@gmail.com", - "linkedIn": "https://www.linkedin.com/in/greyali", - "campus": "FTRI / CTRI", - "cohort": "12", - "jobTitle": "Senior Full Stack Developer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459100" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Bolt", - "name": "Chelsey Fewer", - "email": "chelsey.fewer@gmail.com", - "linkedIn": "https://www.linkedin.com/in/chelsey-fewer/", - "campus": "NYC", - "cohort": "16", - "jobTitle": "Support Engineer", - "industry": "Ecommerce", - "cities": ["Toronto", "Omaha"], - "_id": { - "$oid": "6674c30595590f9fd9459101" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Booster", - "name": "Evelin Goldin", - "email": "evelinsaba1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/evelin-goldin/", - "campus": "NYC / ECRI", - "cohort": "32", - "jobTitle": "Fullstack Software Engineer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459102" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Booz Allen Hamilton", - "name": "Sang Rea Han", - "email": "sxhanx@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sangreahan/", - "campus": "FTRI / CTRI", - "cohort": "13", - "jobTitle": "Sr. Consultant", - "industry": "Consulting", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459103" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Boulevard", - "name": "Ashley Austin", - "email": "aaustin86@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mraustin2u", - "campus": "LA", - "cohort": "34", - "jobTitle": "Senior Associate Software Engineer", - "industry": "Business Management Tool", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459104" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Boxed", - "name": "Adam Goodman", - "email": "adamrgoodman1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/adam-goodman1/", - "campus": "NYC", - "cohort": "27", - "jobTitle": "Backend Engineer I", - "industry": "e-commerce", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459105" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "BP3", - "name": "Brian Jungk", - "email": "brian.jungk@outlook.com", - "linkedIn": "https://www.linkedin.com/in/brian-jungk/", - "campus": "NYC", - "cohort": "24", - "jobTitle": "Software Engineer", - "industry": "Consulting", - "cities": ["Laredo"], - "_id": { - "$oid": "6674c30595590f9fd9459106" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Brady Corporation", - "name": "Sean Flynn", - "email": "seanflynn5000@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sean-g-flynn", - "campus": "NYC / ECRI", - "cohort": "38", - "jobTitle": "Web Developer", - "industry": "Business Tech/Enterprise Tech", - "cities": ["Fresno"], - "_id": { - "$oid": "6674c30595590f9fd9459107" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Branding Brand", - "name": "Andy Heng", - "email": "andyheng1095@gmail.com", - "linkedIn": "https://www.linkedin.com/in/andy-heng/", - "campus": "LA", - "cohort": "39", - "jobTitle": "Software Engineer", - "industry": "E-Commerce", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459108" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Branding Brand", - "name": "Christian Wong", - "email": "ctcwong73@gmail.com", - "linkedIn": "https://www.linkedin.com/in/wong-christian/", - "campus": "LA / WCRI", - "cohort": "52", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Tampa"], - "_id": { - "$oid": "6674c30595590f9fd9459109" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Branding Brand", - "name": "Nobuhide Ajito", - "email": "Nobuhide95@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nobuhide-ajito/", - "campus": "LA", - "cohort": "32", - "jobTitle": "Software Engineer", - "industry": "Technology", - "cities": ["Durham", "Winston-Salem"], - "_id": { - "$oid": "6674c30595590f9fd945910a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Bread Financial", - "name": "Cho Yee Win Aung", - "email": "choyeewinag@gmail.com", - "linkedIn": "https://www.linkedin.com/in/choyeewinaung/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Software Engineer 1", - "industry": "Fintech", - "cities": ["Philadelphia", "Omaha", "North Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd945910b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Brighter", - "name": "Elliot Kim", - "email": "elliot.kim@gmail.com", - "linkedIn": "https://www.linkedin.com/in/elliotjykim/", - "campus": "LA", - "cohort": "24", - "jobTitle": "Full Stack Engineer", - "industry": "Gaming & Entertainment", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945910c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.058Z" - }, - "__v": 0 - }, - { - "company": "Brighter (Cigna)", - "name": "David Marquess", - "email": "dave.marquess@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dave-marquess/", - "campus": "LA", - "cohort": "25", - "jobTitle": "Senior Software Engineer", - "industry": "Cybersecurity", - "cities": ["Garland"], - "_id": { - "$oid": "6674c30595590f9fd945910d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Brightflow AI", - "name": "Erika Jung", - "email": "erika.h.jung@gmail.com", - "linkedIn": "https://www.linkedin.com/in/erikahjung/", - "campus": "LA / WCRI", - "cohort": "56", - "jobTitle": "Software Engineer", - "industry": "IT Services", - "cities": ["Baltimore"], - "_id": { - "$oid": "6674c30595590f9fd945910e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Brillio", - "name": "Alexander Smith", - "email": "ajsmith925@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ajsmith925/", - "campus": "LA", - "cohort": "43", - "jobTitle": "Software Engineer", - "industry": "Software Consulting", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945910f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Brooksource, contracted to Northwestern Mutual", - "name": "Jessica Louie Lee", - "email": "jlouielee@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jessllee/", - "campus": "LA", - "cohort": "48", - "jobTitle": "Backend Node Engineer with Brooksource, Full stack Engineer with Northwestern Mutual", - "industry": "Fintech", - "cities": ["Raleigh", "San Francisco"], - "_id": { - "$oid": "6674c30595590f9fd9459110" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "BuildOps", - "name": "Muhammad Trad", - "email": "Muhammad.trad@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/muhammadtrad/", - "campus": "LA", - "cohort": "37", - "jobTitle": "Senior Software Engineer", - "industry": "Commercial Real Estate", - "cities": ["Tulsa"], - "_id": { - "$oid": "6674c30595590f9fd9459111" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Business Alliance Financial Services (BAFS)", - "name": "Justin McKay", - "email": "justinmckay99@gmail.com", - "linkedIn": "https://www.linkedin.com/in/justinwmckay/", - "campus": "LA", - "cohort": "43", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Chicago", "Chesapeake", "Cincinnati"], - "_id": { - "$oid": "6674c30595590f9fd9459112" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Business Alliance Financial Services, LLC", - "name": "Joe Bigelow", - "email": "joebigelow@protonmail.com", - "linkedIn": "https://www.linkedin.com/in/joe-bigelow", - "campus": "LA", - "cohort": "42", - "jobTitle": "Software Engineer", - "industry": "Finance (Credit union service organization)", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459113" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "ButcherBox", - "name": "Maxwell Shick", - "email": "maxwellshick@gmail.com", - "linkedIn": "https://www.linkedin.com/in/maxwell-shick/", - "campus": "FTRI / CTRI", - "cohort": "9", - "jobTitle": "Software Engineer", - "industry": "Restaurant, Food, and Beverage", - "cities": ["Jersey City", "Minneapolis", "Pittsburgh"], - "_id": { - "$oid": "6674c30595590f9fd9459114" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Butterfly Network", - "name": "Akiko Hagio Dulaney", - "email": "akikoinhd@gmail.com", - "linkedIn": "https://www.linkedin.com/in/akiko-hagio-dulaney/", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Web/API QA Automation Engineer", - "industry": "Healthtech", - "cities": ["Saint Paul", "Plano", "Raleigh"], - "_id": { - "$oid": "6674c30595590f9fd9459115" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Butterfly Network", - "name": "Crystal (Crys) Lim", - "email": "crystal.joy.lim@gmail.com", - "linkedIn": "https://www.linkedin.com/in/crystallim/", - "campus": "LA", - "cohort": "46", - "jobTitle": "Software Engineer II - Cloud Backend", - "industry": "Medical Equipment Manufacturing", - "cities": ["Albuquerque"], - "_id": { - "$oid": "6674c30595590f9fd9459116" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "C3 AI", - "name": "Shelby Cotton", - "email": "hello@shelbycotton.com", - "linkedIn": "https://linkedin.com/in/shelbycotton", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Forward Deployed Engineer", - "industry": "Artificial intelligence", - "cities": ["Honolulu", "Toronto"], - "_id": { - "$oid": "6674c30595590f9fd9459117" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "C3.AI", - "name": "Dominic Genuario", - "email": "dominicgenuario@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dominic-genuario/", - "campus": "NYC / ECRI", - "cohort": "33", - "jobTitle": "Forward Deployed Engineer", - "industry": "Artificial Intelligence", - "cities": ["Mexico City"], - "_id": { - "$oid": "6674c30595590f9fd9459118" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Cadent", - "name": "William Yoon", - "email": "williamdyoon@gmail.com", - "linkedIn": "https://www.linkedin.com/in/williamdyoon/", - "campus": "LA", - "cohort": "42", - "jobTitle": "Front End Engineer", - "industry": "TV Advertising", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459119" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "CafeMedia", - "name": "Jasper Narvil", - "email": "jaspernarvil@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jaspernarvil/", - "campus": "NYC / ECRI", - "cohort": "33", - "jobTitle": "Software Eng II", - "industry": "Software / Tech", - "cities": ["Bakersfield"], - "_id": { - "$oid": "6674c30595590f9fd945911a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "CAIS Group", - "name": "Anson Avellar", - "email": "anson@ansonavellar.com", - "linkedIn": "https://www.linkedin.com/in/ansonavellar/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Front End Developer (internally Associate)", - "industry": "Fintech", - "cities": ["Baltimore", "Scottsdale"], - "_id": { - "$oid": "6674c30595590f9fd945911b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Canadian Tire Corporation", - "name": "Ansel Andro Santos", - "email": "anselandrosantos@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ansel-santos", - "campus": "NYOI", - "cohort": "3", - "jobTitle": "Manager, Advanced Measurement & Analytics", - "industry": "Data/Analytics/Cloud", - "cities": ["Tulsa"], - "_id": { - "$oid": "6674c30595590f9fd945911c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Canary Connect", - "name": "Dillon Garrett", - "email": "dillon.garrett.dev@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dillon-garrett/", - "campus": "NYC", - "cohort": "12", - "jobTitle": "Front End Engineer", - "industry": "Home Security", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945911d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital Connect by JP Morgan", - "name": "Peter Baniuszewicz", - "email": "Baniuszewicz@gmail.com", - "linkedIn": "https://www.linkedin.com/in/peter-ba/", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Detroit"], - "_id": { - "$oid": "6674c30595590f9fd945911e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Adrian Inza-Cruz", - "email": "ainzacruz@gmail.com", - "linkedIn": "https://www.linkedin.com/in/adrian-inza-cruz/", - "campus": "LA", - "cohort": "41", - "jobTitle": "Senior Associate Software Engineer", - "industry": "Fintech", - "cities": ["Fort Wayne", "Virginia Beach"], - "_id": { - "$oid": "6674c30595590f9fd945911f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Alexander Gurfinkel", - "email": "alexgurfinkel@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alexandergurfinkel/", - "campus": "PTRI", - "cohort": "5", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Gilbert", "Lincoln"], - "_id": { - "$oid": "6674c30595590f9fd9459120" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Jung Ho Lee", - "email": "alexxleee@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jungholee27/", - "campus": "FTRI", - "cohort": "1", - "jobTitle": "Senior Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459121" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Allan MacLean", - "email": "allanpmaclean@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Toronto"], - "_id": { - "$oid": "6674c30595590f9fd9459122" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Alvin Ma", - "email": "alvin.ma95@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alvinrayma/", - "campus": "NYC / ECRI", - "cohort": "32", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": ["St. Petersburg", "Albuquerque"], - "_id": { - "$oid": "6674c30595590f9fd9459123" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Alvin Cheng", - "email": "alvincheng505@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alvin-cheng/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Software Engineer", - "industry": "Banking", - "cities": ["Houston"], - "_id": { - "$oid": "6674c30595590f9fd9459124" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Allana Ordonez", - "email": "ayaordonez@gmail.com", - "linkedIn": "https://www.linkedin.com/in/allana-ordonez/", - "campus": "LA", - "cohort": "43", - "jobTitle": "Software Engineer, Frontend", - "industry": "Banking/Fintech", - "cities": ["Milwaukee"], - "_id": { - "$oid": "6674c30595590f9fd9459125" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Brandon Miller", - "email": "bmiller1881@gmail.com", - "linkedIn": "https://www.linkedin.com/in/brandon-j-miller", - "campus": "FTRI / CTRI", - "cohort": "12", - "jobTitle": "Senior Software Engineer", - "industry": "Fintech", - "cities": ["Tucson", "Omaha", "Cincinnati"], - "_id": { - "$oid": "6674c30595590f9fd9459126" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Carson Chen", - "email": "carson.cy.chen@gmail.com", - "linkedIn": "https://www.linkedin.com/in/carsoncychen/", - "campus": "NYC", - "cohort": "9", - "jobTitle": "Software Engineer", - "industry": "IT", - "cities": ["Seattle", "Glendale"], - "_id": { - "$oid": "6674c30595590f9fd9459127" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Carlos Botero-Vargas", - "email": "cbotero-vargas@outlook.com", - "linkedIn": "https://www.linkedin.com/in/carlosb-v/", - "campus": "FTRI", - "cohort": "1", - "jobTitle": "Senior Software Engineer", - "industry": "Finance", - "cities": ["Kansas City"], - "_id": { - "$oid": "6674c30595590f9fd9459128" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Jason Clark", - "email": "clarkjasonee@gmail.com", - "linkedIn": "https://www.linkedin.com/in/clarkjasonee/", - "campus": "FTRI / CTRI", - "cohort": "10", - "jobTitle": "Senior Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459129" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Sina Kahrobaei", - "email": "cna.kahrobaei@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sinakahrobaei/", - "campus": "FTRI", - "cohort": "6", - "jobTitle": "Senior Software Engineer (Full Stack)", - "industry": "Fintech", - "cities": ["Tulsa", "Mesa"], - "_id": { - "$oid": "6674c30595590f9fd945912a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Christopher cheng", - "email": "Ctpcheng@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ctpcheng/", - "campus": "LA / WCRI", - "cohort": "49", - "jobTitle": "Senior Software Engineer, Front End", - "industry": "Fintech", - "cities": ["Washington", "Miami"], - "_id": { - "$oid": "6674c30595590f9fd945912b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Darren Chan", - "email": "darrenc3195@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dbchan/", - "campus": "NYC", - "cohort": "28", - "jobTitle": "Full Stack Software Engineer", - "industry": "Fintech", - "cities": ["Minneapolis"], - "_id": { - "$oid": "6674c30595590f9fd945912c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "David Zhang", - "email": "davidnyc@umich.edu", - "linkedIn": "https://www.linkedin.com/in/davidnyc/", - "campus": "NYC", - "cohort": "26", - "jobTitle": "Fullstack Software Engineer", - "industry": "Finance", - "cities": ["Charlotte", "Irving"], - "_id": { - "$oid": "6674c30595590f9fd945912d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Dani Almaraz", - "email": "dtalmaraz@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dani-almaraz/", - "campus": "LA / WCRI", - "cohort": "49", - "jobTitle": "Senior Software Engineer", - "industry": "Fintech", - "cities": ["San Francisco"], - "_id": { - "$oid": "6674c30595590f9fd945912e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Eugene Lee", - "email": "eugleenyc@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "30", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945912f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Nel Malikova", - "email": "gunelmalikova@gmail.com", - "linkedIn": "https://www.linkedin.com/in/gmalikova/", - "campus": "NYC", - "cohort": "10", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Tucson", "Milwaukee", "Chula Vista"], - "_id": { - "$oid": "6674c30595590f9fd9459130" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Hemwatie Persaud", - "email": "hemwatiecodes@gmail.com", - "linkedIn": "https://www.linkedin.com/in/hemwatie/", - "campus": "NYC", - "cohort": "28", - "jobTitle": "Software Engineer", - "industry": "Banking", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459131" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Ian Madden", - "email": "ianfmadden@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ian-madden/", - "campus": "FTRI / CTRI", - "cohort": "7", - "jobTitle": "Senior Software Engineer", - "industry": "Fintech", - "cities": ["St. Louis", "Laredo"], - "_id": { - "$oid": "6674c30595590f9fd9459132" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Jae Hyun Ha", - "email": "jaehyunha96@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jae-hyun-ha/", - "campus": "NYC", - "cohort": "30", - "jobTitle": "Software Engineer - backend", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459133" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "James Ma", - "email": "jamesma991@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jamesma1199/", - "campus": "FTRI", - "cohort": "7", - "jobTitle": "Senior Associate Software Engineer", - "industry": "Fintech", - "cities": ["Oakland", "Jacksonville"], - "_id": { - "$oid": "6674c30595590f9fd9459134" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Jennifer Chau", - "email": "jenniferchau512@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jenniferchau512/", - "campus": "NYC", - "cohort": "29", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Tampa", "Columbus"], - "_id": { - "$oid": "6674c30595590f9fd9459135" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Jin Oh", - "email": "jintoh613@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jintoh613/", - "campus": "LA", - "cohort": "42", - "jobTitle": "Senior Software Engineer", - "industry": "Fintech", - "cities": ["Wichita", "Seattle", "Lubbock"], - "_id": { - "$oid": "6674c30595590f9fd9459136" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "John Li", - "email": "jli159@binghamton.edu", - "linkedIn": "https://www.linkedin.com/in/john-li7/", - "campus": "NYC", - "cohort": "24", - "jobTitle": "Fullstack Engineer", - "industry": "Banking", - "cities": ["Tampa"], - "_id": { - "$oid": "6674c30595590f9fd9459137" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Joseph Amos", - "email": "joeamos17@gmail.com", - "linkedIn": "linkedin.com/in/joe-amos", - "campus": "LA / WCRI", - "cohort": "49", - "jobTitle": "Senior Associate Software Engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459138" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Johnny Chen", - "email": "johncschen@gmail.com", - "linkedIn": "https://www.linkedin.com/in/johnnycschen/", - "campus": "LA", - "cohort": "45", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Chicago", "San Jose", "Virginia Beach"], - "_id": { - "$oid": "6674c30595590f9fd9459139" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Jonathan Chen", - "email": "jonathanchen832@gmail.com", - "linkedIn": "Https://linkedin.com/in/jonathan-hp-chen", - "campus": "LA / WCRI", - "cohort": "52", - "jobTitle": "Full Stack Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945913a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "June Culp", - "email": "juneculp1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/juneculp/", - "campus": "NYC", - "cohort": "28", - "jobTitle": "Senior Front End Engineer", - "industry": "Fintech", - "cities": ["Lubbock"], - "_id": { - "$oid": "6674c30595590f9fd945913b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Kristine Aguda", - "email": "kaguda03@gmail.com", - "linkedIn": "https://www.linkedin.com/kristine-aguda", - "campus": "LA", - "cohort": "45", - "jobTitle": "Software Engineer, Full Stack", - "industry": "Fin tech", - "cities": ["San Antonio", "Mexico City", "Washington"], - "_id": { - "$oid": "6674c30595590f9fd945913c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Kasthuri Menon", - "email": "kasthuri.menon1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kasthurimenon/", - "campus": "NYC", - "cohort": "28", - "jobTitle": "Senior Software Engineer", - "industry": "Banking/ Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945913d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Ken Litton", - "email": "kennethclitton@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ken-litton/", - "campus": "LA", - "cohort": "43", - "jobTitle": "Backend Engineer, Senior Associate", - "industry": "Finance/Banking", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945913e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Kevin Park-Lee", - "email": "kevin38424@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kevin38424/", - "campus": "FTRI / CTRI", - "cohort": "9", - "jobTitle": "Senior Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945913f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Kellen Levy", - "email": "Kmalcolmlevy@gmail.com", - "linkedIn": "https://www.linked.com/in/kellenmlevy", - "campus": "FTRI", - "cohort": "1", - "jobTitle": "Senior Associate Software Engineer", - "industry": "Fintech", - "cities": ["Arlington"], - "_id": { - "$oid": "6674c30595590f9fd9459140" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Jason Lin", - "email": "lin.jasonp@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jplin/", - "campus": "FTRI", - "cohort": "7", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Long Beach"], - "_id": { - "$oid": "6674c30595590f9fd9459141" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Luke Cho", - "email": "luke.h.cho@gmail.com", - "linkedIn": "https://www.linkedin.com/in/luke-h-cho/", - "campus": "NYC", - "cohort": "28", - "jobTitle": "Software Engineer", - "industry": "Banking", - "cities": ["North Las Vegas", "Santa Ana"], - "_id": { - "$oid": "6674c30595590f9fd9459142" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Philip Kang", - "email": "m.philipkang@gmail.com", - "linkedIn": "https://www.linkedin.com/in/pkmi/", - "campus": "NYC / ECRI", - "cohort": "27", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": ["Glendale", "Louisville"], - "_id": { - "$oid": "6674c30595590f9fd9459143" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Matthew Femia", - "email": "mattfemia1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mattfemia/", - "campus": "NYC / ECRI", - "cohort": "32", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459144" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "May Li", - "email": "mayleeli1234@gmail.com", - "linkedIn": "https://www.linkedin.com/in/maysli", - "campus": "LA", - "cohort": "44", - "jobTitle": "Fullstack Software Engineer", - "industry": "Fintech", - "cities": ["Boston", "Bakersfield", "Dallas"], - "_id": { - "$oid": "6674c30595590f9fd9459145" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Matt von der Lippe", - "email": "mvdlippe@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mvdlippe/", - "campus": "FTRI", - "cohort": "3", - "jobTitle": "Senior Associate Software Engineer - Backend", - "industry": "Fintech", - "cities": ["Long Beach", "Chandler"], - "_id": { - "$oid": "6674c30595590f9fd9459146" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Nathanael Tracy", - "email": "n.tracy@outlook.com", - "linkedIn": "https://www.linkedin.com/in/nathanael-tracy/", - "campus": "NYC", - "cohort": "27", - "jobTitle": "Senior Associate Software Engineer", - "industry": "Finance", - "cities": ["Lexington"], - "_id": { - "$oid": "6674c30595590f9fd9459147" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Nathan Yang", - "email": "nathan.yang16@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nathanmyang/", - "campus": "NYC", - "cohort": "28", - "jobTitle": "Sr. Associate Software Engineer (Full-Stack)", - "industry": "Business", - "cities": ["Arlington", "Cincinnati", "Laredo"], - "_id": { - "$oid": "6674c30595590f9fd9459148" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Nicholas A Gonzalez", - "email": "nicholas.a.gonz@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nicholasagonzalez/", - "campus": "NYC", - "cohort": "30", - "jobTitle": "Fullstack Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459149" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Patrick Slagle", - "email": "patrickryanslagle@gmail.com", - "linkedIn": "https://www.linkedin.com/in/patrickslagle/", - "campus": "LA", - "cohort": "23", - "jobTitle": "Software Engineer", - "industry": "", - "cities": ["Paris"], - "_id": { - "$oid": "6674c30595590f9fd945914a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Peter Van", - "email": "peterrvan@gmail.com", - "linkedIn": "https://www.linkedin.com/in/peter-van/", - "campus": "LA", - "cohort": "43", - "jobTitle": "Front End Software Engineer", - "industry": "Financial Services", - "cities": ["Irvine", "Washington"], - "_id": { - "$oid": "6674c30595590f9fd945914b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Rachel Patterson", - "email": "racheljpatterson@gmail.com", - "linkedIn": "https://www.linkedin.com/in/racheljpatterson/", - "campus": "NYC", - "cohort": "27", - "jobTitle": "Software Engineer, Full Stack", - "industry": "Banking/Fintech", - "cities": ["Charlotte", "Buffalo", "Houston"], - "_id": { - "$oid": "6674c30595590f9fd945914c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Quentin Rousset", - "email": "roussetquent1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/qrousset/", - "campus": "NYC", - "cohort": "28", - "jobTitle": "Sr Software Engineer Back-end", - "industry": "Fintech", - "cities": ["Pittsburgh"], - "_id": { - "$oid": "6674c30595590f9fd945914d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Ahad Rajput", - "email": "sachem2015@gmail.com", - "linkedIn": "https://www.linkedin.com/in/arajput96/", - "campus": "FTRI", - "cohort": "3", - "jobTitle": "Senior Software Engineer", - "industry": "Finance/Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945914e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Sam Portelance", - "email": "sportelance1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sportelance/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Senior Associate Fullstack Engineer", - "industry": "Fintech", - "cities": ["Berlin", "Orlando", "London"], - "_id": { - "$oid": "6674c30595590f9fd945914f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Stephen Kim", - "email": "stephenkim612@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stephenkim612/", - "campus": "LA", - "cohort": "47", - "jobTitle": "Software Engineer, Fullstack", - "industry": "Finance", - "cities": ["Riverside", "Colorado Springs", "Los Angeles"], - "_id": { - "$oid": "6674c30595590f9fd9459150" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Andrew Talle", - "email": "talle.andrew@gmail.com", - "linkedIn": "https://www.linkedin.com/in/andrewtalle/", - "campus": "FTRI", - "cohort": "6", - "jobTitle": "Backend Software Engineer", - "industry": "Fintech", - "cities": ["Greensboro", "Omaha"], - "_id": { - "$oid": "6674c30595590f9fd9459151" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Terrence Granger", - "email": "Terrence.granger@gmail.com", - "linkedIn": "https://www.linkedin.com/in/terrence-granger/", - "campus": "FTRI / CTRI", - "cohort": "13", - "jobTitle": "Senior Software Engineer", - "industry": "Fintech", - "cities": ["Long Beach", "Columbus"], - "_id": { - "$oid": "6674c30595590f9fd9459152" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Thomas Reeder", - "email": "thomaseugenereeder@gmail.com", - "linkedIn": "https://www.linkedin.com/in/thomas-reeder/", - "campus": "LA", - "cohort": "43", - "jobTitle": "Software Engineer, Full Stack", - "industry": "Banking", - "cities": ["Madison", "Virginia Beach", "Houston"], - "_id": { - "$oid": "6674c30595590f9fd9459153" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Trevor Leung", - "email": "trevorleeeung@gmail.com", - "linkedIn": "https://www.linkedin.com/in/trevleung/", - "campus": "LA", - "cohort": "47", - "jobTitle": "Software Engineer, Full Stack", - "industry": "Finance/Banking", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459154" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Vivian Wu", - "email": "Vivian.wu.here@gmail.com", - "linkedIn": "https://www.linkedin.com/in/viv-wu", - "campus": "LA", - "cohort": "44", - "jobTitle": "Solutions Engineer", - "industry": "Healthcare fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459155" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Vicki Yang", - "email": "vwyangdev@gmail.com", - "linkedIn": "https://www.linkedin.com/in/vwyang/", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Senior Software Engineer", - "industry": "Financial Services", - "cities": ["Tokyo", "Gilbert"], - "_id": { - "$oid": "6674c30595590f9fd9459156" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Walker Marsh", - "email": "walkermarsh9@gmail.com", - "linkedIn": "https://www.linkedin.com/in/WalkerVEMarsh/", - "campus": "NYC", - "cohort": "26", - "jobTitle": "Software Engineer, Full Stack", - "industry": "Fintech/ Banking", - "cities": ["Paris", "Washington", "Virginia Beach"], - "_id": { - "$oid": "6674c30595590f9fd9459157" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Kevin Richardson", - "email": "kevin@karcodes.com", - "linkedIn": "https://www.linkedin.com/in/kevinalexrichardson/", - "campus": "FTRI / CTRI", - "cohort": "11", - "jobTitle": "Senior Software Engineer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459158" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Michael Benliyan", - "email": "michaelbenliyan@gmail.com", - "linkedIn": "michaelbenliyan", - "campus": "LA / WCRI", - "cohort": "55", - "jobTitle": "Senior Software Engineer", - "industry": "Fintech", - "cities": ["Louisville"], - "_id": { - "$oid": "6674c30595590f9fd9459159" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Nathan Cho", - "email": "nathan.y.cho@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nathanycho", - "campus": "NYC / ECRI", - "cohort": "37", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Newark"], - "_id": { - "$oid": "6674c30595590f9fd945915a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Martin Ng", - "email": "kamartinng@gmail.com", - "linkedIn": "https://www.linkedin.com/in/martinngsf/", - "campus": "LA / WCRI", - "cohort": "49", - "jobTitle": "Senior Full Stack Engineer", - "industry": "Fintech", - "cities": ["Albuquerque", "Chandler"], - "_id": { - "$oid": "6674c30595590f9fd945915b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One", - "name": "Honghao sun", - "email": "sunhonghaoshh@gmail.com", - "linkedIn": "https://www.linkedin.com/in/honghaosunmichael/", - "campus": "LA / WCRI", - "cohort": "52", - "jobTitle": "Senior Fullstack Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945915c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital One Bank", - "name": "Donald Cross", - "email": "derekcrosslu@gmail.com", - "linkedIn": "https://www.linkedin.com/in/crossderek/", - "campus": "NYC", - "cohort": "13", - "jobTitle": "Front End Engineer", - "industry": "Finance", - "cities": ["Memphis"], - "_id": { - "$oid": "6674c30595590f9fd945915d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital Rx", - "name": "Htin Linn Aung", - "email": "htinlinnag1993@gmail.com", - "linkedIn": "https://www.linkedin.com/in/htinlinnaung/", - "campus": "PTRI", - "cohort": "2", - "jobTitle": "Senior Fullstack Software Engineer", - "industry": "Healthcare Tech", - "cities": ["Stockton"], - "_id": { - "$oid": "6674c30595590f9fd945915e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Capital Rx", - "name": "Jin Qin", - "email": "jxq32@case.edu", - "linkedIn": "https://www.linkedin.com/in/jcqin/", - "campus": "FTRI", - "cohort": "1", - "jobTitle": "Senior Fullstack Developer", - "industry": "Health Care", - "cities": ["Sacramento"], - "_id": { - "$oid": "6674c30595590f9fd945915f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Caraway Health", - "name": "Gwendolyn (Gwen) Phillips", - "email": "gwen.phil@gmail.com", - "linkedIn": "https://www.linkedin.com/in/gwen-phillips/", - "campus": "PTRI", - "cohort": "6", - "jobTitle": "Full Stack Engineer", - "industry": "Healthcare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459160" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Carbon Mapper", - "name": "Zach Franz", - "email": "zachafranz@gmail.com", - "linkedIn": "https://www.linkedin.com/in/zacharyfranz/", - "campus": "NYC", - "cohort": "4", - "jobTitle": "Software Engineer", - "industry": "Research", - "cities": ["Baltimore", "Jersey City", "Orlando"], - "_id": { - "$oid": "6674c30595590f9fd9459161" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Care/of", - "name": "Jake Pino", - "email": "Jakepino@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/jake-pino", - "campus": "NYC", - "cohort": "30", - "jobTitle": "Senior Software Engineer", - "industry": "Wellness", - "cities": ["Miami", "Sacramento", "Winston-Salem"], - "_id": { - "$oid": "6674c30595590f9fd9459162" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Care/of", - "name": "Malika Butler", - "email": "missemmbutler@gmail.com", - "linkedIn": "https://www.linkedin.com/in/malikabutler", - "campus": "NYC", - "cohort": "8", - "jobTitle": "Software Engineer", - "industry": "Health tech", - "cities": ["Philadelphia", "Long Beach"], - "_id": { - "$oid": "6674c30595590f9fd9459163" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "CareDox", - "name": "Christine Choi", - "email": "christine.yj.choi@gmail.com", - "linkedIn": "https://www.linkedin.com/in/christineyjchoi/", - "campus": "NYC", - "cohort": "8", - "jobTitle": "Software Engineer", - "industry": "Retail", - "cities": ["Fort Wayne", "Lincoln", "Honolulu"], - "_id": { - "$oid": "6674c30595590f9fd9459164" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Carrot Fertility", - "name": "Heather Barney", - "email": "heather.barney@gmail.com", - "linkedIn": "https://www.linkedin.com/in/heather-barney1/", - "campus": "PTRI", - "cohort": "4", - "jobTitle": "Associate Software Engineer", - "industry": "Insurance", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459165" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Cassian Solutions, Inc.", - "name": "Darin Ngau", - "email": "darin.ngau@gmail.com", - "linkedIn": "https://www.linkedin.com/in/darin-ngau/", - "campus": "NYC / ECRI", - "cohort": "34", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": ["Omaha", "Bakersfield", "Austin"], - "_id": { - "$oid": "6674c30595590f9fd9459166" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Cast & Crew", - "name": "Tianhao Yao", - "email": "mapleseventh@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tianhao-yao-2021826a/", - "campus": "LA", - "cohort": "28", - "jobTitle": "Software Engineer", - "industry": "Entertainment", - "cities": ["Fort Wayne", "Atlanta"], - "_id": { - "$oid": "6674c30595590f9fd9459167" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "cast and crew", - "name": "Sam Selfridge", - "email": "sirclesam@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/sam-selfridge/", - "campus": "LA", - "cohort": "28", - "jobTitle": "software engineer", - "industry": "fintech/entertainment", - "cities": ["Plano", "Corpus Christi"], - "_id": { - "$oid": "6674c30595590f9fd9459168" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Cast.app", - "name": "Robert Maeda", - "email": "rob.maeda3@gmail.com", - "linkedIn": "https://www.linkedin.com/in/robert-maeda/", - "campus": "LA", - "cohort": "46", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Kansas City"], - "_id": { - "$oid": "6674c30595590f9fd9459169" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Catchpoint", - "name": "Neyser Zana", - "email": "neyserj.zana@gmail.com", - "linkedIn": "https://www.linkedin.com/in/neyser-zana-860018152/", - "campus": "NYC", - "cohort": "7", - "jobTitle": "Software Engineer II", - "industry": "Advertising", - "cities": ["Milwaukee", "Mexico City", "Indianapolis"], - "_id": { - "$oid": "6674c30595590f9fd945916a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Causebox", - "name": "Grace Kim", - "email": "gracekiim@gmail.com", - "linkedIn": "https://www.linkedin.com/in/gracekiim/", - "campus": "LA", - "cohort": "37", - "jobTitle": "Software Engineer", - "industry": "Consumer products", - "cities": ["Chandler"], - "_id": { - "$oid": "6674c30595590f9fd945916b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "CB Insights", - "name": "Hazel Na", - "email": "hazel.na3@gmail.com", - "linkedIn": "https://www.linkedin.com/in/hyeseon-na", - "campus": "NYC", - "cohort": "27", - "jobTitle": "Software Engineer III - Frontend", - "industry": "business analytics platform", - "cities": ["Greensboro", "Madison"], - "_id": { - "$oid": "6674c30595590f9fd945916c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "CBTS - CVS", - "name": "Chang Shuen Lee", - "email": "changshuen.lee@gmail.com", - "linkedIn": "https://www.linkedin.com/in/daveelee/", - "campus": "NYC", - "cohort": "16", - "jobTitle": "Frontend Software Engineer", - "industry": "Health", - "cities": ["Austin", "Oakland", "Durham"], - "_id": { - "$oid": "6674c30595590f9fd945916d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Cecelia Health", - "name": "Kwadwo Asamoah", - "email": "addoasa94@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kwadwoasamoah", - "campus": "NYC", - "cohort": "12", - "jobTitle": "Front End Engineer", - "industry": "Health", - "cities": ["Pittsburgh", "Santa Ana", "Saint Paul"], - "_id": { - "$oid": "6674c30595590f9fd945916e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Cedars-Sinai Cancer", - "name": "William Chu", - "email": "Williamchu9@gmail.com", - "linkedIn": "https://www.linkedin.com/in/williamchu9/", - "campus": "LA", - "cohort": "49", - "jobTitle": "Software Engineer/Programming Analyst", - "industry": "Healthcare", - "cities": ["Long Beach"], - "_id": { - "$oid": "6674c30595590f9fd945916f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.059Z" - }, - "__v": 0 - }, - { - "company": "Cenith Innovations", - "name": "Serena Amos", - "email": "amos.serena17@gmail.com", - "linkedIn": "https://www.linkedin.com/in/serena-amos/", - "campus": "NYC / ECRI", - "cohort": "35", - "jobTitle": "Software Engineer", - "industry": "Aerospace", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459170" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Centene", - "name": "Serena Romano", - "email": "serenahromano2000@gmail.com", - "linkedIn": "https://www.linkedin.com/in/srom1/", - "campus": "NYC / ECRI", - "cohort": "41", - "jobTitle": "Full Stack Developer", - "industry": "Healthtech/Healthcare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459171" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Cequint", - "name": "Carol Xia", - "email": "c.xia.98@gmail.com", - "linkedIn": "linkedin.com/in/carolxia2", - "campus": "LA / WCRI", - "cohort": "51", - "jobTitle": "Software Development Engineer", - "industry": "Telecommunications", - "cities": ["Oakland", "Colorado Springs"], - "_id": { - "$oid": "6674c30595590f9fd9459172" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Cerebral", - "name": "Irine Kang", - "email": "irine.kang@codesmith.io", - "linkedIn": "https://www.linkedin.com/in/irinekang/", - "campus": "FTRI", - "cohort": "6", - "jobTitle": "Full Stack Engineer II", - "industry": "Medicine", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459173" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "CH Robinson", - "name": "Joseph Cheng", - "email": "josephcheng.y@gmail.com", - "linkedIn": "https://www.linkedin.com/in/josephcheng-y/", - "campus": "LA", - "cohort": "39", - "jobTitle": "Software Engineer", - "industry": "Logistic", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459174" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Chainalysis", - "name": "Natalia Vargas-Caba", - "email": "nvargas@gm.slc.edu", - "linkedIn": "https://www.linkedin.com/in/nataliavargascaba", - "campus": "NYC", - "cohort": "17", - "jobTitle": "Technical Writer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459175" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Chainguard", - "name": "Felipe Ocampo", - "email": "felipe.aocampo@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ocampofelipe/", - "campus": "LA / WCRI", - "cohort": "56", - "jobTitle": "Web Developer", - "industry": "Marketing/Advertising", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459176" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Chainlink", - "name": "Finley Decker", - "email": "finleydecker@gmail.com", - "linkedIn": "https://www.linkedin.com/in/finleydecker/", - "campus": "LA / WCRI", - "cohort": "52", - "jobTitle": "Software Engineer", - "industry": "Blockchain/Web3", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459177" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Change Healthcare", - "name": "Bruce Wong", - "email": "dbrucewong@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dawong/", - "campus": "LA", - "cohort": "29", - "jobTitle": "Senior Software Engineer", - "industry": "Healthcare", - "cities": ["Albuquerque", "Chesapeake"], - "_id": { - "$oid": "6674c30595590f9fd9459178" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Change Healthcare", - "name": "Billy K Lee", - "email": "ucanfindbillie@gmail.com", - "linkedIn": "https://www.linkedin.com/in/billy-k-lee/", - "campus": "LA", - "cohort": "30", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459179" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Change Healthcare.", - "name": "Noah Lee", - "email": "no@hlee.me", - "linkedIn": "https://www.linkedin.com/in/justnoah/", - "campus": "LA", - "cohort": "27", - "jobTitle": "Software Engineer.", - "industry": "Healthcare.", - "cities": ["Jacksonville"], - "_id": { - "$oid": "6674c30595590f9fd945917a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Chargebacks911", - "name": "Chandni Patel", - "email": "chandnip6@gmail.com", - "linkedIn": "https://www.linkedin.com/in/chandnip6/", - "campus": "PTRI", - "cohort": "1", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Anaheim"], - "_id": { - "$oid": "6674c30595590f9fd945917b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Chargebee Retention", - "name": "Abhi Krishnan", - "email": "krabhishaken@gmail.com", - "linkedIn": "https://www.linkedin.com/in/krabhishaken/", - "campus": "NYC", - "cohort": "26", - "jobTitle": "Senior Software Engineer", - "industry": "Subscription Tech", - "cities": ["Norfolk"], - "_id": { - "$oid": "6674c30595590f9fd945917c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Chariot", - "name": "Weilan Cui", - "email": "weilanc@gmail.com", - "linkedIn": "https://www.linkedin.com/in/weilan-cui", - "campus": "NYC", - "cohort": "24", - "jobTitle": "Founding engineer", - "industry": "Software as a service", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945917d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Charles River", - "name": "Josh Howard", - "email": "JoshHoward.Dev@gmail.com", - "linkedIn": "https://www.linkedin.com/in/joshhowarddev/", - "campus": "FTRI / CTRI", - "cohort": "13", - "jobTitle": "Full Stack Developer", - "industry": "Software / Tech", - "cities": ["Scottsdale", "Mexico City"], - "_id": { - "$oid": "6674c30595590f9fd945917e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Charles Schwab", - "name": "Troy Witonsky", - "email": "troywitonsky@gmail.com", - "linkedIn": "https://www.linkedin.com/in/troy-witonsky", - "campus": "FTRI / CTRI", - "cohort": "13", - "jobTitle": "Enterprise Engineer", - "industry": "Fintech", - "cities": ["Santa Ana"], - "_id": { - "$oid": "6674c30595590f9fd945917f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Chattanooga Shooting Supplies", - "name": "Zach Hall", - "email": "zachh85@gmail.com", - "linkedIn": "linkedin.com/in/z-r-hall", - "campus": "NYC / ECRI", - "cohort": "37", - "jobTitle": "Senior Application Developer", - "industry": "Retail", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459180" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Cheddar Media", - "name": "David Neuhaus", - "email": "david@neuha.us", - "linkedIn": "https://www.linkedin.com/in/dneuhaus/", - "campus": "NYC", - "cohort": "13", - "jobTitle": "Sr Software Engineer", - "industry": "Media / News", - "cities": ["Dallas", "Paris"], - "_id": { - "$oid": "6674c30595590f9fd9459181" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Chegg, Inc", - "name": "Kate Matthews", - "email": "katesmatthews@gmail.com", - "linkedIn": "https://www.linkedin.com/in/katesmatthews/", - "campus": "NYC", - "cohort": "11", - "jobTitle": "Software Engineer", - "industry": "EdTech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459182" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Chewy", - "name": "Lucy Chi", - "email": "lucycchi@gmail.com", - "linkedIn": "https://www.linkedin.com/in/chilucy/", - "campus": "LA", - "cohort": "38", - "jobTitle": "Software Engineer", - "industry": "Tech Consulting, Client is in HealthTech", - "cities": ["Oakland", "Toronto", "Jacksonville"], - "_id": { - "$oid": "6674c30595590f9fd9459183" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Chewy", - "name": "Joseph Nagy", - "email": "nagyjoseph29@gmail.com", - "linkedIn": "https://www.linkedin.com/in/josephmnagy/", - "campus": "NYC", - "cohort": "29", - "jobTitle": "Software Engineer", - "industry": "E-commerce", - "cities": ["Tampa"], - "_id": { - "$oid": "6674c30595590f9fd9459184" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Chief", - "name": "Tim Ruszala", - "email": "truszala@gmail.com", - "linkedIn": "https://www.linkedin.com/in/timruszala/", - "campus": "NYC / ECRI", - "cohort": "32", - "jobTitle": "Fullstack Software Engineer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459185" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Chipper Cash", - "name": "Sean Lee", - "email": "lee.sw.sean@gmail.com", - "linkedIn": "https://www.linkedin.com/in/seanleesw", - "campus": "LA", - "cohort": "46", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Lincoln"], - "_id": { - "$oid": "6674c30595590f9fd9459186" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Choose Ketamine", - "name": "Eric Komatsu", - "email": "eric@cpgexperience.com", - "linkedIn": "https://www.linkedin.com/in/eric-komatsu/", - "campus": "LA / WCRI", - "cohort": "50", - "jobTitle": "Lead Engineer", - "industry": "Healthcare", - "cities": ["Las Vegas", "Atlanta"], - "_id": { - "$oid": "6674c30595590f9fd9459187" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Chopra Global", - "name": "Jonathon Gonzalez", - "email": "gonzalezjonathon55@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jonathon-gonzalez/", - "campus": "NYC", - "cohort": "16", - "jobTitle": "Backend Engineer", - "industry": "Health & Wellness", - "cities": ["Jersey City", "Toledo"], - "_id": { - "$oid": "6674c30595590f9fd9459188" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Chopra Global", - "name": "Josh Naso", - "email": "jnaso29@gmail.com", - "linkedIn": "https://www.linkedin.com/in/joshnaso/", - "campus": "NYC", - "cohort": "16", - "jobTitle": "Web Developer", - "industry": "Meditation/self-care", - "cities": ["Lubbock", "Oklahoma City"], - "_id": { - "$oid": "6674c30595590f9fd9459189" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "ChromaCode", - "name": "Edwin Menendez", - "email": "edwinjmenendez@gmail.com", - "linkedIn": "https://www.linkedin.com/in/edwinmenendez/", - "campus": "LA", - "cohort": "36", - "jobTitle": "Software Engineer", - "industry": "Bio-Tech", - "cities": ["Portland"], - "_id": { - "$oid": "6674c30595590f9fd945918a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Chubb insurance", - "name": "Robert Hernandez", - "email": "Rob23Hernandez@gmail.com", - "linkedIn": "https://www.linkedin.com/in/robhernandeznyc/", - "campus": "NYC", - "cohort": "26", - "jobTitle": "Software Engineer", - "industry": "Insurance", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945918b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Cigna", - "name": "JC Fernandez", - "email": "jorgecarlosfern@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jorge-carlos-fernandez/", - "campus": "LA", - "cohort": "42", - "jobTitle": "Full Stack Engineer", - "industry": "Health Care", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945918c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "CIMx", - "name": "Christian Springer", - "email": "christian@christianspringer.com", - "linkedIn": "https://www.linkedin.com/in/christian-springer0/", - "campus": "PTRI", - "cohort": "7", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945918d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "CircleCI", - "name": "Ai Mi Bui", - "email": "Aimibui22@gmail.com", - "linkedIn": "https://www.linkedin.com/in/aimibui/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Software Engineer", - "industry": "Software", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945918e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "CircleCI", - "name": "Jeff Chen", - "email": "contact.jeffchen@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jalexchen/", - "campus": "LA", - "cohort": "43", - "jobTitle": "Software Development Engineer", - "industry": "Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945918f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "CircleCI", - "name": "Tony Shen", - "email": "tshen815@live.com", - "linkedIn": "https://www.linkedin.com/in/tonyShen815/", - "campus": "LA", - "cohort": "35", - "jobTitle": "Software Engineer", - "industry": "Computer Software/Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459190" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "CircleCI", - "name": "Tyler Sullberg", - "email": "tysullberg@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tyler-sullberg/", - "campus": "LA", - "cohort": "36", - "jobTitle": "Software Engineer", - "industry": "Dev Ops", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459191" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Cisco", - "name": "Laura Llano", - "email": "ldllano@gmail.com", - "linkedIn": "https://www.linkedin.com/in/laura-llano", - "campus": "NYC", - "cohort": "26", - "jobTitle": "Software Engineering", - "industry": "Software / Tech", - "cities": ["Nashville", "Tokyo", "Garland"], - "_id": { - "$oid": "6674c30595590f9fd9459192" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Cisco Systems, Inc.", - "name": "Egon Levy", - "email": "egonlevy@gmail.com", - "linkedIn": "https://www.linkedin.com/in/egon-levy-8b62aa1b0/", - "campus": "NYC", - "cohort": "18", - "jobTitle": "Senior Software Engineer", - "industry": "Computer Engineering", - "cities": ["Scottsdale", "Saint Paul"], - "_id": { - "$oid": "6674c30595590f9fd9459193" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Citi", - "name": "Max Heubel", - "email": "maxhuebel@gmail.com", - "linkedIn": "https://www.linkedin.com/in/max-heubel/", - "campus": "NYC / ECRI", - "cohort": "37", - "jobTitle": "Sr. Programmer Analyst", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459194" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Citi (Citicorp Credit Services, Inc.)", - "name": "Reland Boyle", - "email": "reland.boyle@gmail.com", - "linkedIn": "https://www.linkedin.com/in/relandboyle/", - "campus": "FTRI", - "cohort": "4", - "jobTitle": "Digital Software Engineer / Senior Analyst - C12, Assistant Vice President of Matrix Reportingโ€‹", - "industry": "Fintech", - "cities": ["Cleveland", "Chesapeake"], - "_id": { - "$oid": "6674c30595590f9fd9459195" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Cityblock", - "name": "Oluwajomiloju Olaode", - "email": "jojuolaode@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jojuolaode/", - "campus": "NYC", - "cohort": "18", - "jobTitle": "Senior Software Engineer", - "industry": "Healthcare", - "cities": ["Phoenix"], - "_id": { - "$oid": "6674c30595590f9fd9459196" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Civera", - "name": "Hank McGill", - "email": "henrymcgill@gmail.com", - "linkedIn": "https://www.linkedin.com/in/hank-mcgill/", - "campus": "NYOI", - "cohort": "4", - "jobTitle": "Data Engineering Fellow", - "industry": "Government", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459197" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "CivilGrid", - "name": "Jack Moorman", - "email": "johnmoormaniii@gmail.com", - "linkedIn": "www.linkedin.com/in/jack-moorman", - "campus": "FTRI / CTRI", - "cohort": "14", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459198" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Classy", - "name": "Kim Spicer", - "email": "Kspicerny@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kimberleyspicer/", - "campus": "LA", - "cohort": "41", - "jobTitle": "Software Engineer", - "industry": "Software", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459199" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Clear", - "name": "Nate Adams", - "email": "NathanielBAdams@gmail.com", - "linkedIn": "https://www.linkedin.com/in/adamsnathaniel/", - "campus": "NYC", - "cohort": "21", - "jobTitle": "Software Engineer", - "industry": "Biometrics / Security services", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945919a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Clear Capital", - "name": "Sean Haverstock", - "email": "seanhaverstock@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sean-haverstock/", - "campus": "LA", - "cohort": "37", - "jobTitle": "Associate Software Engineer", - "industry": "Fintech, Real Estate", - "cities": ["Jacksonville"], - "_id": { - "$oid": "6674c30595590f9fd945919b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Clevyr", - "name": "Michael Watson", - "email": "mdwatson988@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mdwatson988/", - "campus": "FTRI / CTRI", - "cohort": "8", - "jobTitle": "Jr. Software Developer", - "industry": "Software / Tech", - "cities": ["Boston", "Durham"], - "_id": { - "$oid": "6674c30595590f9fd945919c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Clicktripz", - "name": "Bryan Bart", - "email": "bart.bryan.e@gmail.com", - "linkedIn": "https://www.linkedin.com/in/bryan-bart/", - "campus": "LA", - "cohort": "48", - "jobTitle": "Software Engineer", - "industry": "Travel Technology", - "cities": ["Durham"], - "_id": { - "$oid": "6674c30595590f9fd945919d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Clover", - "name": "Michael Trapani", - "email": "mtrapani27@gmail.com", - "linkedIn": "https://www.linkedin.com/in/michael-a-trapani/", - "campus": "NYC", - "cohort": "31", - "jobTitle": "Web Software Engineer", - "industry": "Software / Tech", - "cities": ["Toronto"], - "_id": { - "$oid": "6674c30595590f9fd945919e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "ClubLabs", - "name": "Natlyn Phomsavanh", - "email": "natlynp@gmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "28", - "jobTitle": "Software Engineer", - "industry": "Insurance/Travel", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945919f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "ClubLabs", - "name": "Talya Sasek", - "email": "talyaercag@gmail.com", - "linkedIn": "https://www.linkedin.com/in/talyasasek/", - "campus": "LA", - "cohort": "32", - "jobTitle": "Software Engineer", - "industry": "Insurance", - "cities": ["Lincoln", "Mesa"], - "_id": { - "$oid": "6674c30595590f9fd94591a0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "CoachEm", - "name": "Matthew Garza", - "email": "mattg614@gmail.com", - "linkedIn": "https://www.linkedin.com/in/garzamatte/", - "campus": "NYC / ECRI", - "cohort": "35", - "jobTitle": "Full Stack Software Engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591a1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Coates Group", - "name": "Paul Kim", - "email": "paulkim0209@gmail.com", - "linkedIn": "https://www.linkedin.com/in/paul-kim-37735b217", - "campus": "NYC / ECRI", - "cohort": "41", - "jobTitle": "Backend Engineer", - "industry": "Business Tech/Enterprise Tech", - "cities": ["Irving", "Madison", "Lincoln"], - "_id": { - "$oid": "6674c30595590f9fd94591a2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Cobalt.io", - "name": "Karl Richards", - "email": "krichards175@gmail.com", - "linkedIn": "https://www.linkedin.com/in/krichards175/", - "campus": "NYC / ECRI", - "cohort": "33", - "jobTitle": "Data Engineer", - "industry": "Security", - "cities": ["Tampa", "Durham"], - "_id": { - "$oid": "6674c30595590f9fd94591a3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Cobble", - "name": "Matt Peters", - "email": "matt@mpeters.io", - "linkedIn": "https://www.linkedin.com/in/mattgpeters", - "campus": "NYC", - "cohort": "16", - "jobTitle": "Frontend Engineer", - "industry": "Leisure, Travel & Tourism", - "cities": ["Tampa", "Cleveland"], - "_id": { - "$oid": "6674c30595590f9fd94591a4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Code Climate", - "name": "Margaret Ma", - "email": "margaretma00@gmail.com", - "linkedIn": "https://www.linkedin.com/in/margaret-ma/", - "campus": "NYC", - "cohort": "3", - "jobTitle": "Software Engineer", - "industry": "", - "cities": ["Atlanta", "Corpus Christi"], - "_id": { - "$oid": "6674c30595590f9fd94591a5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Coder", - "name": "Michael Smith", - "email": "throwawayclover@gmail.com", - "linkedIn": "www.linkedin.com/in/michael-eric-smith", - "campus": "NYC / ECRI", - "cohort": "33", - "jobTitle": "Software Engineer", - "industry": "Software Solutions/Developer Tools", - "cities": ["Aurora"], - "_id": { - "$oid": "6674c30595590f9fd94591a6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Codesmith", - "name": "Terry L. Tilley", - "email": "terryltilley@gmail.com", - "linkedIn": "https://www.linkedin.com/in/t-l-tilley/", - "campus": "LA", - "cohort": "44", - "jobTitle": "Instruction Training Manager", - "industry": "Software/Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591a7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Cofebe", - "name": "Seong Choi", - "email": "choies921003@gmail.com", - "linkedIn": "https://www.linkedin.com/in/seongchoi/", - "campus": "LA", - "cohort": "32", - "jobTitle": "Software Engineer", - "industry": "Computer Software", - "cities": ["Madison"], - "_id": { - "$oid": "6674c30595590f9fd94591a8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Cognizant", - "name": "Scott Burman", - "email": "Scottburs@gmail.com", - "linkedIn": "https://www.linkedin.com/in/scottburman847/", - "campus": "LA", - "cohort": "39", - "jobTitle": "Senior Developer", - "industry": "Technology", - "cities": ["Tulsa", "Milwaukee", "Cleveland"], - "_id": { - "$oid": "6674c30595590f9fd94591a9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Cohere AI", - "name": "Zahara Aviv", - "email": "zahara.aviv@gmail.com", - "linkedIn": "https://linkedIn.com/in/zahara-aviv", - "campus": "NYC / ECRI", - "cohort": "38", - "jobTitle": "Senior Full Stack Engineer", - "industry": "Artificial Intelligence", - "cities": ["Berlin", "San Francisco"], - "_id": { - "$oid": "6674c30595590f9fd94591aa" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "CoinCircle", - "name": "Andrew Fuselier", - "email": "theandewlarry@gmail.com", - "linkedIn": "https://www.linkedin.com/in/andrewfuselier/", - "campus": "LA", - "cohort": "19", - "jobTitle": "Software Engineer", - "industry": "", - "cities": ["Newark", "Chandler"], - "_id": { - "$oid": "6674c30595590f9fd94591ab" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Collective Health", - "name": "Daryl Foster", - "email": "dmafoster@gmail.com", - "linkedIn": "https://www.linkedin.com/in/darylfosterma/", - "campus": "LA", - "cohort": "42", - "jobTitle": "Senior Frontend Engineer", - "industry": "Health Tech (Healthplan Administration for 1000 plus employee companies)", - "cities": ["Oklahoma City"], - "_id": { - "$oid": "6674c30595590f9fd94591ac" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Colliers - Contract position through Hays", - "name": "Pauline Nguyen", - "email": "Paulinekpn@gmail.com", - "linkedIn": "https://www.linkedin.com/in/paulineknguyen/", - "campus": "LA / WCRI", - "cohort": "55", - "jobTitle": "Software Engineer", - "industry": "Real Estate", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591ad" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Comcast", - "name": "Brian Chiang", - "email": "brianchiang2008@gmail.com", - "linkedIn": "linkedin.com/in/brian-chiang4", - "campus": "LA / WCRI", - "cohort": "48", - "jobTitle": "Software Engineer", - "industry": "Media", - "cities": ["Beijing", "Miami", "Henderson"], - "_id": { - "$oid": "6674c30595590f9fd94591ae" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Comcast", - "name": "Darwin Sinchi", - "email": "dsinchi19@gmail.com", - "linkedIn": "https://www.linkedin.com/in/darwin-m-sinchi/", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Software Engineer", - "industry": "TeleCom", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591af" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Comcast", - "name": "Matthew Francis", - "email": "mbfrancis7@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mbfrancis7/", - "campus": "NYC", - "cohort": "7", - "jobTitle": "Software Developer", - "industry": "", - "cities": ["Fort Worth"], - "_id": { - "$oid": "6674c30595590f9fd94591b0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Comcast", - "name": "Yong-Nicholas Alexander Kim", - "email": "yongnicholaskim@gmail.com", - "linkedIn": "https://www.linkedin.com/in/yongnicholaskim/", - "campus": "NYC", - "cohort": "7", - "jobTitle": "Node.js Engineer", - "industry": "Commercial Services", - "cities": ["Sรฃo Paulo", "Corpus Christi", "Long Beach"], - "_id": { - "$oid": "6674c30595590f9fd94591b1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "CommonBond", - "name": "Nathan Bargers", - "email": "nbargers@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nathan-bargers/", - "campus": "PTRI", - "cohort": "1", - "jobTitle": "Software Engineer", - "industry": "Finance", - "cities": ["Chandler"], - "_id": { - "$oid": "6674c30595590f9fd94591b2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Community Attributes Inc", - "name": "Carter Long", - "email": "crlong7@gmail.com", - "linkedIn": "https://www.linkedin.com/in/carterrobertlong/", - "campus": "FTRI / CTRI", - "cohort": "15", - "jobTitle": "Full Stack Developer", - "industry": "Consulting", - "cities": ["Austin", "St. Louis"], - "_id": { - "$oid": "6674c30595590f9fd94591b3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Compass", - "name": "Casey Walker", - "email": "casey.e.walker@gmail.com", - "linkedIn": "https://www.linkedin.com/in/caseyewalker", - "campus": "LA", - "cohort": "38", - "jobTitle": "Software Engineer II", - "industry": "Real Estate", - "cities": ["Los Angeles", "Corpus Christi", "London"], - "_id": { - "$oid": "6674c30595590f9fd94591b4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Compass", - "name": "Liam McBride", - "email": "liameno16@gmail.com", - "linkedIn": "https://www.linkedin.com/in/liamemcbride/", - "campus": "LA", - "cohort": "36", - "jobTitle": "Software Engineer", - "industry": "Real Estate", - "cities": ["Cincinnati", "Houston"], - "_id": { - "$oid": "6674c30595590f9fd94591b5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Compass", - "name": "Sierra Swaby", - "email": "Sierra.swaby@gmail.com", - "linkedIn": "https://www.linkedin.com/in/Sierra-swaby", - "campus": "NYC", - "cohort": "12", - "jobTitle": "Creative Developer", - "industry": "Real Estate", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591b6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Compliancy Group", - "name": "Bruno Albero", - "email": "alberobruno@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alberobruno/", - "campus": "NYC / ECRI", - "cohort": "34", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591b7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Conagra Brands", - "name": "Scott Hallock", - "email": "scott.hallock@gmail.com", - "linkedIn": "https://www.linkedin.com/in/scottjhallock", - "campus": "FTRI / CTRI", - "cohort": "16", - "jobTitle": "Senior Software Engineer", - "industry": "Food/Beverage/Restaurant", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591b8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Concert Health", - "name": "Raubern Totanes", - "email": "rstotanes@g.ucla.edu", - "linkedIn": "https://www.linkedin.com/in/rauberntotanes/", - "campus": "NYC", - "cohort": "26", - "jobTitle": "Software Development Engineer", - "industry": "Health Tech", - "cities": ["St. Louis"], - "_id": { - "$oid": "6674c30595590f9fd94591b9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Contracting for Perspecta Labs via Roc Search via Precision Global Consulting", - "name": "Ben Mizel", - "email": "ben.mizel@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ben-mizel/", - "campus": "NYC", - "cohort": "15", - "jobTitle": "Back End Software Engineer", - "industry": "Defense", - "cities": ["Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd94591ba" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Core Business Technology", - "name": "Jason Hwang", - "email": "hwangja1019@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jason-jh-hwang/", - "campus": "NYC / ECRI", - "cohort": "37", - "jobTitle": "Associate Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591bb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Core Digital Media", - "name": "Edward Greenberg", - "email": "ed.w.greenberg@gmail.com", - "linkedIn": "https://www.linkedin.com/in/edwgreenberg/", - "campus": "NYC", - "cohort": "14", - "jobTitle": "Senior Web Developer", - "industry": "Software", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591bc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Cosm", - "name": "Shana Hoehn", - "email": "Shanahoehn@gmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "41", - "jobTitle": "Software Engineer", - "industry": "Entertainment technology", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591bd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Costa Farms LLC", - "name": "Ernesto Gonzalez", - "email": "egonzalez442@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ernesto-gonzalez123", - "campus": "FTRI / CTRI", - "cohort": "13", - "jobTitle": "Software Engineer", - "industry": "Agriculture Science", - "cities": ["Chula Vista", "Portland", "Irving"], - "_id": { - "$oid": "6674c30595590f9fd94591be" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "CoStar", - "name": "Prasad Pulaguntla", - "email": "prasad.pul@gmail.com", - "linkedIn": "https://www.linkedin.com/in/prasad-pulaguntla/", - "campus": "FTRI", - "cohort": "2", - "jobTitle": "Lead Software Engineer", - "industry": "Commercial Real Estate", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591bf" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "CoStar Group", - "name": "Alan Richardson", - "email": "alanrichardson723@gmail.com", - "linkedIn": "", - "campus": "NYC / ECRI", - "cohort": "29", - "jobTitle": "Associate Software Engineer", - "industry": "Real Estate", - "cities": ["Seattle"], - "_id": { - "$oid": "6674c30595590f9fd94591c0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "CoStar Group", - "name": "Julian Kang", - "email": "julianswkang@gmail.com", - "linkedIn": "https://www.linkedin.com/in/julianswkang", - "campus": "NYC / ECRI", - "cohort": "32", - "jobTitle": "Software Engineer II", - "industry": "Real Estate", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591c1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "CoStar Group", - "name": "Kevin Berlanga", - "email": "kvnberlanga@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kevinberlanga/", - "campus": "PTRI", - "cohort": "2", - "jobTitle": "Software Engineer II", - "industry": "Real Estate", - "cities": ["Miami", "Glendale", "Chula Vista"], - "_id": { - "$oid": "6674c30595590f9fd94591c2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "CoStar Group", - "name": "Ruzeb Chowdhury", - "email": "ruzeb1996@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ruzebchowdhury/", - "campus": "NYC", - "cohort": "30", - "jobTitle": "Frontend Engineer", - "industry": "Commercial Real Estate", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591c3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Coursetune", - "name": "John Maltese", - "email": "john.maltese@gmail.com", - "linkedIn": "https://www.linkedin.com/in/john-maltese/", - "campus": "NYC", - "cohort": "26", - "jobTitle": "Senior Software Engineer/Web App Architect", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591c4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Courted", - "name": "Sett Hein", - "email": "settnaing199@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sett-hein/", - "campus": "FTRI", - "cohort": "1", - "jobTitle": "Software Engineer", - "industry": "Real Estate", - "cities": ["Fresno", "Dallas"], - "_id": { - "$oid": "6674c30595590f9fd94591c5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Cox Automotive", - "name": "Tarik Mokhtech", - "email": "tarik.mokhtech@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tarik-mokhtech/", - "campus": "FTRI / CTRI", - "cohort": "9", - "jobTitle": "Software Engineer II", - "industry": "Automotive", - "cities": ["Milwaukee", "Mumbai", "Oakland"], - "_id": { - "$oid": "6674c30595590f9fd94591c6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Cox Automotive", - "name": "Tarik Mokhtech", - "email": "tarik.mokhtech@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tarik-mokhtech/", - "campus": "FTRI / CTRI", - "cohort": "9", - "jobTitle": "Software Engineer II", - "industry": "Automotive", - "cities": ["Mesa"], - "_id": { - "$oid": "6674c30595590f9fd94591c7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Credera", - "name": "Nisa Lintakoon", - "email": "nisa.lintakoon@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nisalintakoon", - "campus": "FTRI", - "cohort": "1", - "jobTitle": "Technology Solutions Consultant", - "industry": "Consulting", - "cities": ["Buffalo", "Stockton", "Greensboro"], - "_id": { - "$oid": "6674c30595590f9fd94591c8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Crescita", - "name": "Gordon Campbell", - "email": "gordonspencer.c@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "14", - "jobTitle": "Software Engineer", - "industry": "VC", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591c9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Cricket Health", - "name": "Lina Shin", - "email": "rxlina01@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rxlina/", - "campus": "LA", - "cohort": "45", - "jobTitle": "Fullstack Software Engineer", - "industry": "Healthcare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591ca" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Crisis Text Line", - "name": "Chan Choi", - "email": "chanychoi93@gmail.com", - "linkedIn": "https://www.linkedin.com/in/chan-choi/", - "campus": "NYC", - "cohort": "21", - "jobTitle": "Software Engineer", - "industry": "Mental Health Services", - "cities": ["Sacramento"], - "_id": { - "$oid": "6674c30595590f9fd94591cb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Crocs", - "name": "Mark Charles Smith", - "email": "markcharlessmith@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mark-charles-smith/", - "campus": "NYC / ECRI", - "cohort": "31", - "jobTitle": "Senior React Developer", - "industry": "Consumer Goods: Fashion", - "cities": ["Tulsa", "Henderson"], - "_id": { - "$oid": "6674c30595590f9fd94591cc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Crossbeam", - "name": "Harrison Cramer", - "email": "Harrisoncramer@gmail.com", - "linkedIn": "https://www.linkedin.com/in/harrison-cramer", - "campus": "NYC", - "cohort": "27", - "jobTitle": "Software engineer", - "industry": "SaaS", - "cities": ["Seattle", "Tulsa", "St. Louis"], - "_id": { - "$oid": "6674c30595590f9fd94591cd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Crossbeam", - "name": "Aryeh Kobrinsky", - "email": "shmaryeh@gmail.com", - "linkedIn": "https://www.linkedin.com/in/aryehkobrinsky/", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Software Engineer", - "industry": "Data Analytics", - "cities": ["Jersey City", "Lexington", "Atlanta"], - "_id": { - "$oid": "6674c30595590f9fd94591ce" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Crossover Health", - "name": "Heather Friedman", - "email": "hfried25@gmail.com", - "linkedIn": "https://www.linkedin.com/in/hgfriedman/", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Senior Software Engineer", - "industry": "Health", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591cf" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Crossover Health", - "name": "Taylor Riley Du", - "email": "taylor.r.du@gmail.com", - "linkedIn": "https://www.linkedin.com/in/taylordu/", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591d0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Crowdstrike", - "name": "yi bo (eddie) wang", - "email": "eddiewang12345@gmail.com", - "linkedIn": "https://www.linkedin.com/in/eddie-wang2/", - "campus": "NYC", - "cohort": "26", - "jobTitle": "Software Developer", - "industry": "Cybersecurity", - "cities": ["Orlando", "Lubbock"], - "_id": { - "$oid": "6674c30595590f9fd94591d1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Crowley", - "name": "Alina Gasperino", - "email": "alina.gasperino@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alinagasperino/", - "campus": "FTRI / CTRI", - "cohort": "9", - "jobTitle": "Software Engineer III", - "industry": "Other", - "cities": ["Toronto", "Norfolk"], - "_id": { - "$oid": "6674c30595590f9fd94591d2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.060Z" - }, - "__v": 0 - }, - { - "company": "Crown Sterling", - "name": "Shirin Davis", - "email": "Shirinlittle94@gmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "39", - "jobTitle": "Software engineer", - "industry": "Cryptography", - "cities": ["Atlanta", "Beijing"], - "_id": { - "$oid": "6674c30595590f9fd94591d3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "CrunchyBananas", - "name": "Corey Morrison", - "email": "corey.neil.morrison@gmail.com", - "linkedIn": "https://www.linkedin.com/in/corey-morrison", - "campus": "FTRI / CTRI", - "cohort": "8", - "jobTitle": "Software Engineer", - "industry": "Consulting", - "cities": ["El Paso", "Memphis", "Fort Worth"], - "_id": { - "$oid": "6674c30595590f9fd94591d4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Crunchyroll", - "name": "Brit Lim", - "email": "britsta92@gmail.com", - "linkedIn": "https://www.linkedin.com/in/brit-lim/", - "campus": "FTRI", - "cohort": "5", - "jobTitle": "Full Stack Software Engineer", - "industry": "Entertainment", - "cities": ["Cleveland", "Toledo", "Chesapeake"], - "_id": { - "$oid": "6674c30595590f9fd94591d5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "CSI Interfusion", - "name": "Snow Bai", - "email": "xueapp@gmail.com", - "linkedIn": "https://www.linkedin.com/in/xuebaiprofile/", - "campus": "LA / WCRI", - "cohort": "55", - "jobTitle": "Fullstack Engineer", - "industry": "Software / Tech", - "cities": ["Saint Paul"], - "_id": { - "$oid": "6674c30595590f9fd94591d6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Culture Biosciences", - "name": "Savitri Beaver", - "email": "savitribeaver@gmail.com", - "linkedIn": "https://www.linkedin.com/in/savitribeaver", - "campus": "FTRI", - "cohort": "3", - "jobTitle": "Software Engineer I", - "industry": "Biotech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591d7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Curia.ai", - "name": "Young Min Lee", - "email": "youngmineeh@gmail.com", - "linkedIn": "https://www.linkedin.com/in/youngminlee-/", - "campus": "LA", - "cohort": "48", - "jobTitle": "Senior Software Engineer", - "industry": "Healthcare, AI", - "cities": ["St. Petersburg", "Miami"], - "_id": { - "$oid": "6674c30595590f9fd94591d8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Currency", - "name": "Jason Wong", - "email": "jwaosnogn@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jwong1995/", - "campus": "LA", - "cohort": "25", - "jobTitle": "Full Stack Developer", - "industry": "", - "cities": ["Chesapeake", "Arlington", "San Francisco"], - "_id": { - "$oid": "6674c30595590f9fd94591d9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Cutover", - "name": "Paul Rhee", - "email": "youjun27@gmail.com", - "linkedIn": "https://www.linkedin.com/in/prheee", - "campus": "NYC", - "cohort": "13", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Greensboro", "Garland"], - "_id": { - "$oid": "6674c30595590f9fd94591da" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "CVS", - "name": "Mario Eldin", - "email": "marioeldin@gmail.com", - "linkedIn": "https://www.linkedin.com/in/marioeldin/", - "campus": "LA", - "cohort": "40", - "jobTitle": "Software Engineer", - "industry": "Health/Insurance", - "cities": ["Anchorage", "Jersey City"], - "_id": { - "$oid": "6674c30595590f9fd94591db" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "CVS", - "name": "Vinh Chau", - "email": "vchau511@gmail.com", - "linkedIn": "https://www.linkedin.com/in/vinh-chau/", - "campus": "NYC", - "cohort": "16", - "jobTitle": "Software Engineer", - "industry": "Pharmacy", - "cities": ["Buffalo", "Jersey City", "Beijing"], - "_id": { - "$oid": "6674c30595590f9fd94591dc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "CVS Health", - "name": "Connor Bovino", - "email": "connor.bovino@gmail.com", - "linkedIn": "https://www.linkedin.com/in/connor-bovino/", - "campus": "NYC", - "cohort": "16", - "jobTitle": "Fullstack Node.js Developer (Software Engineer)", - "industry": "Health", - "cities": ["Fort Worth", "North Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd94591dd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "CVS Health", - "name": "Satyam sheth", - "email": "Snsheth55@gmail.com", - "linkedIn": "https://www.linkedin.com/in/satyamsheth55/", - "campus": "NYC", - "cohort": "5", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": ["Riverside"], - "_id": { - "$oid": "6674c30595590f9fd94591de" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "CVS Health", - "name": "Windu Sayles", - "email": "Windu.Sayles@gmail.com", - "linkedIn": "https://www.linkedin.com/in/windusayles/", - "campus": "LA", - "cohort": "40", - "jobTitle": "Full Stack Node Developer", - "industry": "Health", - "cities": ["Detroit", "Cleveland"], - "_id": { - "$oid": "6674c30595590f9fd94591df" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "CVS Health/ Aetna", - "name": "Miklos Kertesz", - "email": "mikloslkertesz@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mikl%C3%B3s-kert%C3%A9sz/", - "campus": "PTRI", - "cohort": "3", - "jobTitle": "Data Engineer - Web UI Engineer", - "industry": "health", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591e0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Cyber Popup", - "name": "Stephen Fitzsimmons", - "email": "smf0211@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stephenfitzsimmons", - "campus": "NYC / ECRI", - "cohort": "36", - "jobTitle": "Lead Full Stack Engineer", - "industry": "Software / Tech", - "cities": ["Charlotte", "Raleigh", "Baltimore"], - "_id": { - "$oid": "6674c30595590f9fd94591e1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Cybereason", - "name": "Phoebe Ermert", - "email": "phoebeermert@gmail.com", - "linkedIn": "https://www.linkedin.com/in/phoebe-ermert/", - "campus": "NYC / ECRI", - "cohort": "36", - "jobTitle": "Full Stack Engineer", - "industry": "Other", - "cities": ["Memphis", "Oakland"], - "_id": { - "$oid": "6674c30595590f9fd94591e2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Cyborg, Inc", - "name": "Jim Armbruster", - "email": "JMArmbruster@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jim-armbruster/", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Full-Stack Engineer", - "industry": "Computer Software", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591e3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Cyderes", - "name": "Giovanni Flores-Lovo", - "email": "giovanniflores.l@gmail.com", - "linkedIn": "https://www.linkedin.com/in/giovanni-flores-lovo-11a288232/", - "campus": "LA / WCRI", - "cohort": "50", - "jobTitle": "Software Engineer", - "industry": "Security", - "cities": ["Oklahoma City", "Toronto"], - "_id": { - "$oid": "6674c30595590f9fd94591e4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Dandy", - "name": "Aram Krakirian", - "email": "aramkrakirian@gmail.com", - "linkedIn": "https://www.linkedin.com/in/aram-krakirian/", - "campus": "LA", - "cohort": "47", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": ["Reno", "Nashville", "London"], - "_id": { - "$oid": "6674c30595590f9fd94591e5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Data Intelligence", - "name": "Jimmy Mei", - "email": "Jimmy27mei@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jimmymei/", - "campus": "NYC", - "cohort": "16", - "jobTitle": "Full Stack Engineer", - "industry": "Tech consultant", - "cities": ["Phoenix", "Madison"], - "_id": { - "$oid": "6674c30595590f9fd94591e6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Data Surge LLC", - "name": "Hang Xu", - "email": "hxu009@gmail.com", - "linkedIn": "https://www.linkedin.com/in/hangxu09/", - "campus": "NYC", - "cohort": "18", - "jobTitle": "Data Engineer", - "industry": "Data solutions", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591e7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Databook", - "name": "Julie Wu", - "email": "scorp_only@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/yu-ting-w/", - "campus": "LA", - "cohort": "40", - "jobTitle": "Sr Software Engineer", - "industry": "Sales", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591e8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Datacoral", - "name": "Jae Park", - "email": "woojae.jay.park@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "8", - "jobTitle": "Software Engineer", - "industry": "Fashion/E-Commerce", - "cities": ["Mesa"], - "_id": { - "$oid": "6674c30595590f9fd94591e9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Datametrics", - "name": "Luis Navarro", - "email": "pozhiin@hotmail.com", - "linkedIn": "https://www.linkedin.com/in/luis-e-navarro/", - "campus": "NYC / ECRI", - "cohort": "35", - "jobTitle": "Frontend Developer", - "industry": "Software / Tech", - "cities": ["Washington", "Tucson"], - "_id": { - "$oid": "6674c30595590f9fd94591ea" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "DAZN", - "name": "Leonoor Rinke de Wit", - "email": "lrinkedewit@gmail.com", - "linkedIn": "https://www.linkedin.com/in/leonoorrinkedewit/", - "campus": "NYC", - "cohort": "31", - "jobTitle": "Backend Software Engineer", - "industry": "Media", - "cities": ["Virginia Beach", "Oakland", "New York"], - "_id": { - "$oid": "6674c30595590f9fd94591eb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "DealPath", - "name": "Huy Bui", - "email": "huybui.sj@gmail.com", - "linkedIn": "https://www.linkedin.com/in/huyqbui/", - "campus": "NYC", - "cohort": "30", - "jobTitle": "Software Engineer", - "industry": "Real Estate", - "cities": ["Tulsa"], - "_id": { - "$oid": "6674c30595590f9fd94591ec" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Decent Labs", - "name": "Julia Collins", - "email": "Julia.col@protonmail.com", - "linkedIn": "https://www.linkedin.com/in/julia-col", - "campus": "PTRI", - "cohort": "2", - "jobTitle": "Full Stack Web3 Engineer", - "industry": "Crypto", - "cities": ["Cincinnati"], - "_id": { - "$oid": "6674c30595590f9fd94591ed" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Deloitte", - "name": "Justin Buckner", - "email": "jwbprofessional@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jbuild/", - "campus": "FTRI", - "cohort": "3", - "jobTitle": "Consultant - front end developer", - "industry": "Consulting", - "cities": ["Fresno", "New York"], - "_id": { - "$oid": "6674c30595590f9fd94591ee" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Delta Air Lines", - "name": "Joal Kim", - "email": "joalkims@gmail.com", - "linkedIn": "https://www.linkedin.com/in/joal-kim", - "campus": "LA", - "cohort": "38", - "jobTitle": "Software Engineer", - "industry": "Airline", - "cities": ["Austin", "Indianapolis"], - "_id": { - "$oid": "6674c30595590f9fd94591ef" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "DeltaMath", - "name": "Hannah McDowell", - "email": "hannah.mcdowell1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/hannah-lisbeth-mcdowell/", - "campus": "LA / WCRI", - "cohort": "52", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": ["Tucson"], - "_id": { - "$oid": "6674c30595590f9fd94591f0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "DeMark Analytics LLC", - "name": "SEUNGHO BAEK", - "email": "shbaek115@gmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "37", - "jobTitle": "Software Engineer", - "industry": "Software & Tech services", - "cities": ["San Antonio", "Sydney"], - "_id": { - "$oid": "6674c30595590f9fd94591f1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Dematic", - "name": "Liang Wen (Rocky) Lin", - "email": "liangwen511@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rocky-lin/", - "campus": "NYC", - "cohort": "14", - "jobTitle": "Senior Software Engineer", - "industry": "Manufacturing and Distribution", - "cities": ["Henderson", "New York", "Memphis"], - "_id": { - "$oid": "6674c30595590f9fd94591f2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Dendi Software", - "name": "Ozair Ghulam", - "email": "Ozairghulam4@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ozair-ghulam", - "campus": "FTRI / CTRI", - "cohort": "9", - "jobTitle": "Forward deployed software engineer", - "industry": "Healthcare", - "cities": ["Lincoln"], - "_id": { - "$oid": "6674c30595590f9fd94591f3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Denizen", - "name": "Greg Domingue", - "email": "Greg.domingue1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/greg-domingue", - "campus": "LA", - "cohort": "23", - "jobTitle": "Full Stack Software Engineer", - "industry": "International Banking", - "cities": ["Fort Worth"], - "_id": { - "$oid": "6674c30595590f9fd94591f4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Density", - "name": "Timothy Weidinger", - "email": "timothy.weidinger@gmail.com", - "linkedIn": "https://www.linkedin.com/in/timweidinger/", - "campus": "NYC / ECRI", - "cohort": "41", - "jobTitle": "Senior Full Stack Software Engineer", - "industry": "Data/Analytics/Cloud", - "cities": ["Mumbai"], - "_id": { - "$oid": "6674c30595590f9fd94591f5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Derivco Sports", - "name": "Denny Temple", - "email": "denny.temple@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dentemple/", - "campus": "NYC", - "cohort": "6", - "jobTitle": "Software Engineer", - "industry": "", - "cities": ["Riverside", "Washington", "Anchorage"], - "_id": { - "$oid": "6674c30595590f9fd94591f6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Destination Pet", - "name": "Nicholas Jordan Brush", - "email": "njbrush@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nicholas-j-brush?trk=people-guest_people_search-card", - "campus": "LA", - "cohort": "42", - "jobTitle": "Software Engineer", - "industry": "Pet healthcare", - "cities": ["Detroit", "Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd94591f7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "DexCare", - "name": "Nhan Ly", - "email": "nhansense1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nhanly/", - "campus": "PTRI", - "cohort": "1", - "jobTitle": "Software Engineer", - "industry": "Healthtech", - "cities": ["Irvine"], - "_id": { - "$oid": "6674c30595590f9fd94591f8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Diamond Web Services", - "name": "Ben Gummelt", - "email": "Camaromelt@gmail.com", - "linkedIn": "https://www.linkedin.com/in/benjamingummelt", - "campus": "LA", - "cohort": "20", - "jobTitle": "Full stack software engineer", - "industry": "", - "cities": ["Oklahoma City", "Long Beach", "Winston-Salem"], - "_id": { - "$oid": "6674c30595590f9fd94591f9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Diamond Web Services", - "name": "Gregory Palasciano", - "email": "greg.palasciano@gmail.com", - "linkedIn": "https://www.linkedin.com/in/gregory-palasciano/", - "campus": "LA", - "cohort": "36", - "jobTitle": "Fullstack Engineer", - "industry": "Entertainment/Consulting", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591fa" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Diamond Web Services", - "name": "Jonathan Perera", - "email": "Jon.p@codesmith.io", - "linkedIn": "https://www.linkedin.com/in/japerera/", - "campus": "LA", - "cohort": "22", - "jobTitle": "Developer", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94591fb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Diana Health", - "name": "Jackson Dahl", - "email": "jacksondahl27@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jackson-dahl/", - "campus": "NYOI", - "cohort": "4", - "jobTitle": "Full Stack Software Engineer", - "industry": "Healthtech/Healthcare", - "cities": ["Washington", "Toledo"], - "_id": { - "$oid": "6674c30595590f9fd94591fc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Dick's Sporting Goods", - "name": "Brian Hon", - "email": "brianwhon@gmail.com", - "linkedIn": "https://www.linkedin.com/in/brianwhon/", - "campus": "NYC", - "cohort": "8", - "jobTitle": "Software Engineer", - "industry": "Retail", - "cities": ["New York"], - "_id": { - "$oid": "6674c30595590f9fd94591fd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "DigiCert", - "name": "James M Espy II", - "email": "jespy2@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jamesespy/", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Software Engineer", - "industry": "digital certificates / security", - "cities": ["Mumbai", "St. Louis"], - "_id": { - "$oid": "6674c30595590f9fd94591fe" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Digilock", - "name": "Aaron Yang", - "email": "aaronyang024@gmail.com", - "linkedIn": "https://www.linkedin.com/in/aaronyang24/", - "campus": "LA", - "cohort": "38", - "jobTitle": "Software Engineer", - "industry": "Electronic Manufacturing", - "cities": ["Fort Worth", "Fresno"], - "_id": { - "$oid": "6674c30595590f9fd94591ff" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Digital Position", - "name": "Joe Beger", - "email": "jtbeger@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jtbeger/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Developer", - "industry": "SEO", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459200" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "DigitalOcean", - "name": "Natalia Vargas-Caba", - "email": "nvargascaba@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nataliavargascaba", - "campus": "NYC", - "cohort": "17", - "jobTitle": "Technical Editor", - "industry": "Cloud service", - "cities": ["San Antonio"], - "_id": { - "$oid": "6674c30595590f9fd9459201" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Discord", - "name": "Jacob Richards", - "email": "jacob.richards33@gmail.com", - "linkedIn": "https://www.linkedin.com/in/palgorhythm/", - "campus": "LA", - "cohort": "29", - "jobTitle": "Senior Software Engineer", - "industry": "Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459202" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Discovery", - "name": "adele calvo", - "email": "adelecalvo@gmail.com", - "linkedIn": "https://www.linkedin.com/in/adelecalvo/", - "campus": "NYC", - "cohort": "9", - "jobTitle": "Software Engineer I, UI,", - "industry": "Blockchain", - "cities": ["Gilbert"], - "_id": { - "$oid": "6674c30595590f9fd9459203" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Discovery", - "name": "Sarah t Renshaw", - "email": "strenshaw@gmail.com", - "linkedIn": "https://linkedin.com/in/strenshaw/", - "campus": "NYC", - "cohort": "2", - "jobTitle": "Software Engineer I", - "industry": "Music", - "cities": ["Cincinnati", "Irvine"], - "_id": { - "$oid": "6674c30595590f9fd9459204" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Disney Streaming", - "name": "Daniel Palumbo", - "email": "Drpalumbo17@gmail.com", - "linkedIn": "https://www.linkedin.com/in/daniel-palumbo-735715137", - "campus": "NYC / ECRI", - "cohort": "32", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Phoenix", "Kansas City", "Cincinnati"], - "_id": { - "$oid": "6674c30595590f9fd9459205" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Disney Streaming", - "name": "Nat Heller", - "email": "nat.w.heller@gmail.com", - "linkedIn": "https://www.linkedin.com/in/natwheller/", - "campus": "FTRI / CTRI", - "cohort": "8", - "jobTitle": "Software Engineer", - "industry": "Entertainment", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459206" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Disney Streaming", - "name": "Frank Ma", - "email": "yurenfrankma@gmail.com", - "linkedIn": "https://www.linkedin.com/in/frankma2", - "campus": "LA", - "cohort": "25", - "jobTitle": "Sr Frontend and Fullstack Engineer", - "industry": "Entertainment", - "cities": ["Fort Worth", "Toronto", "Anchorage"], - "_id": { - "$oid": "6674c30595590f9fd9459207" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Disney Streaming Services", - "name": "Casey Escovedo", - "email": "caseyjescovedo@gmail.com", - "linkedIn": "https://www.linkedin.com/in/caseyescovedo/", - "campus": "LA", - "cohort": "38", - "jobTitle": "Associate Software Engineer", - "industry": "Entertainment", - "cities": ["Chicago", "Honolulu"], - "_id": { - "$oid": "6674c30595590f9fd9459208" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Disney Streaming Services", - "name": "Mark Marcelo", - "email": "markmarcelo@gmail.com", - "linkedIn": "https://www.linkedin.com/in/markmarcelo/", - "campus": "LA", - "cohort": "12", - "jobTitle": "Lead Software Engineer", - "industry": "Entertainment", - "cities": ["Colorado Springs"], - "_id": { - "$oid": "6674c30595590f9fd9459209" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Disney Streaming Services", - "name": "Rachel Farley", - "email": "rachyl.farley@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rachel-farley/", - "campus": "NYC", - "cohort": "24", - "jobTitle": "Associate Software Engineer", - "industry": "Entertainment", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945920a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Dispense", - "name": "Kerrianne Crawford", - "email": "kerriannercrawford@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kerriannercrawford/", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Senior Software Engineer", - "industry": "Software / Tech", - "cities": ["Santa Ana", "Chicago", "Toledo"], - "_id": { - "$oid": "6674c30595590f9fd945920b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Distributed Machines, Inc.", - "name": "William LeGate", - "email": "codesmith@legate.me", - "linkedIn": "https://www.linkedin.com/in/william-legate/", - "campus": "LA", - "cohort": "21", - "jobTitle": "CEO, Prediqt", - "industry": "Medical", - "cities": ["Reno", "Long Beach", "Henderson"], - "_id": { - "$oid": "6674c30595590f9fd945920c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "DistroKid", - "name": "Jackson Tong", - "email": "jacksonktong@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jacksonktong/", - "campus": "LA", - "cohort": "48", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": ["Baltimore", "San Francisco", "Aurora"], - "_id": { - "$oid": "6674c30595590f9fd945920d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "DMC Inc", - "name": "Shane Yao", - "email": "Shanexinyao@gmail.com", - "linkedIn": "https://www.linkedin.com/in/shanexinyao/", - "campus": "NYC", - "cohort": "3", - "jobTitle": "Senior Robotics Engineer", - "industry": "Crypto Fintech", - "cities": ["Dallas"], - "_id": { - "$oid": "6674c30595590f9fd945920e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Dollar Shave Club", - "name": "Vincent Nguyen", - "email": "gvincemail@gmail.com", - "linkedIn": "https://www.linkedin.com/in/vnguyenucla/", - "campus": "LA", - "cohort": "38", - "jobTitle": "Software Engineer(Contract)", - "industry": "Products", - "cities": ["Toledo"], - "_id": { - "$oid": "6674c30595590f9fd945920f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Dollar Shave Club", - "name": "Ryan Trontz", - "email": "rtrontz@gmail.com", - "linkedIn": "https://www.linkedin.com/in/trontz/", - "campus": "LA", - "cohort": "22", - "jobTitle": "Software Engineer, Backend", - "industry": "", - "cities": ["Indianapolis"], - "_id": { - "$oid": "6674c30595590f9fd9459210" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Domio", - "name": "Neftali Dominguez", - "email": "n.l.dominguez23@gmail.com", - "linkedIn": "https://www.linkedin.com/in/neftalildominguez/", - "campus": "LA", - "cohort": "30", - "jobTitle": "Back end engineer", - "industry": "apartment hotels", - "cities": ["Saint Paul", "Boston"], - "_id": { - "$oid": "6674c30595590f9fd9459211" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Doorcast", - "name": "James Bui", - "email": "Jamesmdang.bui@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jamesminhbui/", - "campus": "LA / WCRI", - "cohort": "51", - "jobTitle": "Senior Fullstack Engineer", - "industry": "Real Estate", - "cities": ["Milwaukee", "Irvine", "North Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd9459212" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Doorkee", - "name": "Jarred Jack-Harewood", - "email": "jackhajb@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jarred-jack-harewood/", - "campus": "NYC", - "cohort": "11", - "jobTitle": "Software Engineer", - "industry": "Real Estate", - "cities": ["Toronto", "Dallas"], - "_id": { - "$oid": "6674c30595590f9fd9459213" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Dottid", - "name": "Brian Grosso", - "email": "bgro63@gmail.com", - "linkedIn": "https://www.linkedin.com/in/newarkBG/", - "campus": "NYC", - "cohort": "27", - "jobTitle": "Senior Software Engineer", - "industry": "Fintech - Real Estate", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459214" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Dr Squatch", - "name": "Ben Cauffman", - "email": "Benjamincauffman@gmail.com", - "linkedIn": "https://www.linkedin.com/in/benjamin-cauffman", - "campus": "NYC / ECRI", - "cohort": "34", - "jobTitle": "Full Stack Engineer", - "industry": "Retail", - "cities": ["Greensboro"], - "_id": { - "$oid": "6674c30595590f9fd9459215" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "DraftKings", - "name": "Jonnie Oak", - "email": "jonathan.oak28@gmail.com", - "linkedIn": "https://www.linkedin.com/in/oakj28/", - "campus": "LA", - "cohort": "45", - "jobTitle": "Software Engineer", - "industry": "Fantasy Sports", - "cities": ["Dallas", "Irvine"], - "_id": { - "$oid": "6674c30595590f9fd9459216" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Dray Alliance", - "name": "Hayden Fithyan", - "email": "hayden@fithyan.com", - "linkedIn": "https://www.linkedin.com/in/fithyan/", - "campus": "LA", - "cohort": "23", - "jobTitle": "Software Developer II", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459217" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Dray Alliance", - "name": "Joshua Wright", - "email": "jwrightbluj@gmail.com", - "linkedIn": "https://www.linkedin.com/in/joshua-w-86758a121/", - "campus": "LA", - "cohort": "23", - "jobTitle": "Software Engineer II", - "industry": "", - "cities": ["New York", "Garland"], - "_id": { - "$oid": "6674c30595590f9fd9459218" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Dreambox Learning", - "name": "Pei-Yun Chu", - "email": "pchu2018@gmail.com", - "linkedIn": "https://www.linkedin.com/in/pei-yun-chu/", - "campus": "PTRI", - "cohort": "8", - "jobTitle": "Software Development Engineer - Frontend", - "industry": "Software / Tech", - "cities": ["Plano", "Phoenix", "Washington"], - "_id": { - "$oid": "6674c30595590f9fd9459219" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Driven Deliveries", - "name": "Adam Stover", - "email": "adam.jacob.stover@gmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "31", - "jobTitle": "Software Engineer", - "industry": "Supply Chain & Logistics", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945921a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Drizly", - "name": "Diego Vazquez", - "email": "diegovazquezny@gmail.com", - "linkedIn": "https://www.linkedin.com/in/diegovazquezny/", - "campus": "LA", - "cohort": "21", - "jobTitle": "Jr. Software Engineer", - "industry": "Food & Beverages", - "cities": ["Scottsdale"], - "_id": { - "$oid": "6674c30595590f9fd945921b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Dropbox", - "name": "Benjamin Kwak", - "email": "benjamin.h.kwak@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ben-kwak/", - "campus": "LA", - "cohort": "37", - "jobTitle": "Software Engineer, Product", - "industry": "Techonology Services", - "cities": ["Detroit"], - "_id": { - "$oid": "6674c30595590f9fd945921c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Dropbox", - "name": "Myounghan Chae", - "email": "chaekmh@gmail.com", - "linkedIn": "https://www.linkedin.com/in/chaekmh/", - "campus": "NYC", - "cohort": "24", - "jobTitle": "Software Engineer", - "industry": "Cloudtech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945921d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Dropbox", - "name": "Miguel Michel", - "email": "migmic93@gmail.com", - "linkedIn": "https://www.linkedin.com/in/miguel-michel/", - "campus": "LA", - "cohort": "38", - "jobTitle": "Software Engineer", - "industry": "Cloud Storage", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945921e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Dropps", - "name": "Sonny Nguyen", - "email": "sonnynguyen163@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sn163/", - "campus": "LA", - "cohort": "46", - "jobTitle": "Software Developer", - "industry": "Sustainable E-Commerce", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945921f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Dstillery", - "name": "Chai Lee", - "email": "imchai@gmail.com", - "linkedIn": "https://www.linkedin.com/in/chai-lee-5a064649/", - "campus": "NYC", - "cohort": "21", - "jobTitle": "Software Engineer", - "industry": "Adtech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459220" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Dun & Bradstreet", - "name": "Jack Hall", - "email": "jackvincenthall@gmail.com", - "linkedIn": "https://linkedin.com/in/jackvhall", - "campus": "PTRI", - "cohort": "4", - "jobTitle": "Senior Software Engineer", - "industry": "Fintech, Data Analytics", - "cities": ["Seattle", "Oklahoma City", "Riverside"], - "_id": { - "$oid": "6674c30595590f9fd9459221" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Dun & Bradstreet", - "name": "Scott Rosen", - "email": "scott.rosen14@gmail.com", - "linkedIn": "https://www.linkedin.com/in/scott-rosen/", - "campus": "LA", - "cohort": "17", - "jobTitle": "Software Engineer", - "industry": "", - "cities": ["Atlanta", "Austin"], - "_id": { - "$oid": "6674c30595590f9fd9459222" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "dv01", - "name": "Michelle Herrera", - "email": "mesherrera@aol.com", - "linkedIn": "https://www.linkedin.com/in/mherreradev/", - "campus": "NYC", - "cohort": "13", - "jobTitle": "Senior Fullstack Engineer I", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459223" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Dynamic benchmarking", - "name": "andres jaramillo", - "email": "andresj89@live.com", - "linkedIn": "https://www.linkedin.com/in/andresjaramillo210/", - "campus": "NYC / ECRI", - "cohort": "36", - "jobTitle": "Software engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459224" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Earnest", - "name": "Kai Rilliet", - "email": "kairilliet@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kairilliet/", - "campus": "LA / WCRI", - "cohort": "45", - "jobTitle": "Full Stack Software Engineer", - "industry": "Fintech", - "cities": ["Long Beach", "Honolulu", "Indianapolis"], - "_id": { - "$oid": "6674c30595590f9fd9459225" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "eBay", - "name": "Ryan Kim", - "email": "ryansukwookim@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tkdryan/", - "campus": "LA", - "cohort": "33", - "jobTitle": "Software Engineer", - "industry": "ECcmmerce", - "cities": ["Las Vegas", "Memphis", "San Diego"], - "_id": { - "$oid": "6674c30595590f9fd9459226" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "EBSCO", - "name": "Sankari Ayyaluru", - "email": "sankariayyaluru@gmail", - "linkedIn": "https://www.linkedin.com/in/sankari-ayyaluru/", - "campus": "LA / WCRI", - "cohort": "48", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459227" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Econify", - "name": "Jordan Kelly", - "email": "Jordan.w.kelly@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jordan-k-340257140/", - "campus": "NYC", - "cohort": "17", - "jobTitle": "Software Engineer", - "industry": "Consulting", - "cities": ["Santa Ana", "Memphis", "Tulsa"], - "_id": { - "$oid": "6674c30595590f9fd9459228" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Econify", - "name": "Jovan Kelly", - "email": "fakeEmail2@fakeEmail.com", - "linkedIn": "https://www.linkedin.com/in/jovankelly", - "campus": "NYC", - "cohort": "10", - "jobTitle": "Software developer", - "industry": "Media Consulting", - "cities": ["Gilbert"], - "_id": { - "$oid": "6674c30595590f9fd9459229" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Edify Labs", - "name": "Scott McInnis", - "email": "scottalyst@gmail.com", - "linkedIn": "https://www.linkedin.com/in/scott-mcinnis/", - "campus": "LA", - "cohort": "32", - "jobTitle": "Nodejs Developer", - "industry": "Customer Service", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945922a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Edify Labs", - "name": "Tony Lei", - "email": "tony.lei003@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tony-lei/", - "campus": "LA / WCRI", - "cohort": "50", - "jobTitle": "NodeJS Developer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945922b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "EDUrain", - "name": "Jacob Jurado", - "email": "jakejurado@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jakejurado", - "campus": "LA / WCRI", - "cohort": "52", - "jobTitle": "chief technology officer", - "industry": "Education/Edtech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945922c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Egen", - "name": "Jonathan Escamilla", - "email": "jonathanescamilla1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jon-escamilla/", - "campus": "LA", - "cohort": "36", - "jobTitle": "Associate Software Engineer", - "industry": "Tech (Builds solutions for companies - Typically Web Dev)", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945922d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Elder Research", - "name": "Ben Huang", - "email": "Byhuang4100@gmail.com", - "linkedIn": "byhuang4100", - "campus": "FTRI / CTRI", - "cohort": "14", - "jobTitle": "Data Engineer", - "industry": "Artificial Intelligence", - "cities": ["Lexington"], - "_id": { - "$oid": "6674c30595590f9fd945922e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Elder Research Inc", - "name": "Nick Reardon", - "email": "nickjreardon@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nickjreardon/", - "campus": "PTRI", - "cohort": "4", - "jobTitle": "Software Engineer", - "industry": "Consulting", - "cities": ["Dallas"], - "_id": { - "$oid": "6674c30595590f9fd945922f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Elder Tree", - "name": "Stormi Hashimoto", - "email": "stormikhashimoto@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stormikph/", - "campus": "NYC", - "cohort": "21", - "jobTitle": "Software Engineer", - "industry": "NA", - "cities": ["Riverside", "Seattle"], - "_id": { - "$oid": "6674c30595590f9fd9459230" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "eLink Design", - "name": "Tristan Krause", - "email": "yukiokrause@gmail.com", - "linkedIn": "https://www.linkedin.com/in/krausetristan/", - "campus": "FTRI / CTRI", - "cohort": "17", - "jobTitle": "Web / Mobile Developer", - "industry": "Design", - "cities": ["Lexington", "St. Petersburg", "Paris"], - "_id": { - "$oid": "6674c30595590f9fd9459231" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Elk Capital Markets", - "name": "Manuel Castro", - "email": "manuel.a.castro1992@gmail.com", - "linkedIn": "https://www.linkedin.com/in/manuel-castro-42466273", - "campus": "NYC", - "cohort": "5", - "jobTitle": "Software Engineer", - "industry": "Finance", - "cities": ["Paris", "Orlando", "Fort Worth"], - "_id": { - "$oid": "6674c30595590f9fd9459232" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.061Z" - }, - "__v": 0 - }, - { - "company": "Ellie Mae", - "name": "Karen Pinilla", - "email": "pinillakaren11@gmail.com", - "linkedIn": "https://www.linkedin.com/in/karen-pinilla/", - "campus": "LA", - "cohort": "28", - "jobTitle": "Software Engineer I", - "industry": "Computer Software", - "cities": ["Norfolk"], - "_id": { - "$oid": "6674c30595590f9fd9459233" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "eMoney", - "name": "Kenneth Hui", - "email": "kennethhui121@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kenneth-hui/", - "campus": "LA", - "cohort": "45", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Paris"], - "_id": { - "$oid": "6674c30595590f9fd9459234" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Empire Flippers", - "name": "Rob Wise", - "email": "robertwise1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/robertwise/", - "campus": "PTRI", - "cohort": "Beta", - "jobTitle": "Frontend Engineer", - "industry": "eCommerce", - "cities": ["San Jose", "Oklahoma City"], - "_id": { - "$oid": "6674c30595590f9fd9459235" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Empowered Buildings", - "name": "Kevin Dooley", - "email": "kjdooley1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kjdooley1/", - "campus": "NYOI", - "cohort": "1", - "jobTitle": "Full-Stack Software Developer", - "industry": "Real Estate", - "cities": ["Fresno", "Winston-Salem", "New York"], - "_id": { - "$oid": "6674c30595590f9fd9459236" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Enlighten", - "name": "Jonathon Garber", - "email": "jgarber2675@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jgarber2675/", - "campus": "NYC / ECRI", - "cohort": "34", - "jobTitle": "Front End Software Engineer", - "industry": "Security", - "cities": ["San Jose", "Raleigh", "Jacksonville"], - "_id": { - "$oid": "6674c30595590f9fd9459237" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Envoy", - "name": "Graham Pierce", - "email": "grahampiercenyc@gmail.com", - "linkedIn": "https://www.linkedin.com/in/graham-a-pierce/", - "campus": "FTRI", - "cohort": "3", - "jobTitle": "Software Engineer", - "industry": "Workplace tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459238" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Enzo Digital", - "name": "Johnny Bryan", - "email": "johnnybryan21@gmail.com", - "linkedIn": "https://www.linkedin.com/in/johnnybryan/", - "campus": "NYC", - "cohort": "29", - "jobTitle": "Backend/API Engineer", - "industry": "Fintech", - "cities": ["Berlin", "Columbus"], - "_id": { - "$oid": "6674c30595590f9fd9459239" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "EolianVR", - "name": "Henry Halse", - "email": "henryhalse@gmail.com", - "linkedIn": "https://www.linkedin.com/in/henryhalse/", - "campus": "PTRI", - "cohort": "8", - "jobTitle": "Backend Engineer", - "industry": "Other", - "cities": ["Long Beach", "Chula Vista"], - "_id": { - "$oid": "6674c30595590f9fd945923a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Epic Games", - "name": "Nahuel Arjona Tennerini", - "email": "nahuel.arjona.93@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nahuelarjonadev/", - "campus": "LA", - "cohort": "29", - "jobTitle": "Game Systems Programmer", - "industry": "Video Games", - "cities": ["Kansas City"], - "_id": { - "$oid": "6674c30595590f9fd945923b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Epic Games (Fortnite)", - "name": "Taylor T Morgan", - "email": "TaylorMorganTTM@gmail.com", - "linkedIn": "https://www.linkedin.com/in/taylormor77la/", - "campus": "LA", - "cohort": "39", - "jobTitle": "Software Developer", - "industry": "Gaming", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945923c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Eqengineered", - "name": "William Ramirez", - "email": "willramirez630@gmail.com", - "linkedIn": "https://www.linkedin.com/in/willramirez528/", - "campus": "LA", - "cohort": "43", - "jobTitle": "Senior Technical Consultant", - "industry": "Software Consulting Firm", - "cities": ["San Antonio", "Nashville"], - "_id": { - "$oid": "6674c30595590f9fd945923d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Erdos Miller", - "name": "Michael Collier Grant", - "email": "DragonZSG@aol.com", - "linkedIn": "https://www.linkedin.com/in/michaelcolliergrant/", - "campus": "PTRI", - "cohort": "7", - "jobTitle": "Firmware Developer", - "industry": "Other", - "cities": ["Detroit"], - "_id": { - "$oid": "6674c30595590f9fd945923e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Ernst & Young", - "name": "Eduardo Maรญllo Conesa", - "email": "eduardomaillo@gmail.com", - "linkedIn": "https://www.linkedin.com/in/eduardomaillo/", - "campus": "NYC", - "cohort": "2", - "jobTitle": "Senior Software Engineer", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945923f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Esri", - "name": "Gilbert Ramirez", - "email": "contemporarygil@gmail.com", - "linkedIn": "https://www.linkedin.com/in/gillramirez/", - "campus": "LA", - "cohort": "29", - "jobTitle": "Software Development Engineer", - "industry": "GIS", - "cities": ["Tokyo", "Washington", "Chandler"], - "_id": { - "$oid": "6674c30595590f9fd9459240" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "ESRI", - "name": "Evan Hilton", - "email": "ehilton1537@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ehilton1537/", - "campus": "LA", - "cohort": "33", - "jobTitle": "Software Development Engineer", - "industry": "Geographic Information System", - "cities": ["Seattle", "Jacksonville", "Wichita"], - "_id": { - "$oid": "6674c30595590f9fd9459241" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Esri", - "name": "Elena Conn", - "email": "elenakconn@gmail.com", - "linkedIn": "https://www.linkedin.com/in/elena-conn/", - "campus": "LA", - "cohort": "41", - "jobTitle": "Software Engineering Intern (end date 10/29/21)", - "industry": "Geospatial Engineering (GIS)", - "cities": ["Los Angeles", "Oakland"], - "_id": { - "$oid": "6674c30595590f9fd9459242" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Ethic", - "name": "Andrea Li", - "email": "andrea.li8341@hotmail.com", - "linkedIn": "https://www.linkedin.com/in/andrea-gli/", - "campus": "PTRI", - "cohort": "1", - "jobTitle": "Frontend Engineer", - "industry": "Fintech", - "cities": ["San Jose", "Washington", "Tucson"], - "_id": { - "$oid": "6674c30595590f9fd9459243" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Ethos Life", - "name": "Alan Lee", - "email": "lee.alan.c12@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alanlee12/", - "campus": "LA", - "cohort": "35", - "jobTitle": "Software Engineer, Test", - "industry": "Insurance", - "cities": ["Fort Worth", "Indianapolis", "Anchorage"], - "_id": { - "$oid": "6674c30595590f9fd9459244" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "etsy", - "name": "alfonso zamarripa", - "email": "alfonsozam93@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alfonsozamarripa/", - "campus": "NYC", - "cohort": "31", - "jobTitle": "software engineer", - "industry": "Retail", - "cities": ["Garland", "Long Beach"], - "_id": { - "$oid": "6674c30595590f9fd9459245" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Even", - "name": "Claudio Santos", - "email": "claudiohbsantos@gmail.com", - "linkedIn": "https://www.linkedin.com/in/claudio-santos-5b8134207/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Software Engineer I", - "industry": "Fintech", - "cities": ["Sรฃo Paulo", "Reno"], - "_id": { - "$oid": "6674c30595590f9fd9459246" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Even Financial", - "name": "Andy Wong", - "email": "andywong.ny@gmail.com", - "linkedIn": "https://www.linkedin.com/in/andywongdev", - "campus": "NYC", - "cohort": "13", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459247" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Eventbrite", - "name": "Ashley Pean", - "email": "pean.ashley@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ashley-pean/", - "campus": "PTRI", - "cohort": "2", - "jobTitle": "Software Engineer II", - "industry": "Entertainment", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459248" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "EventHound", - "name": "Greg Shamalta", - "email": "gregshamalta@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/gregory-shamalta/", - "campus": "LA", - "cohort": "23", - "jobTitle": "Founder", - "industry": "", - "cities": ["Indianapolis", "Miami"], - "_id": { - "$oid": "6674c30595590f9fd9459249" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "everest", - "name": "Will Hack", - "email": "will.j.hack@gmail.com", - "linkedIn": "https://www.linkedin.com/in/willhack/", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Full-Stack Engineer (Sr)", - "industry": "UX Design", - "cities": ["Arlington", "Mumbai", "Cleveland"], - "_id": { - "$oid": "6674c30595590f9fd945924a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Everest, AI", - "name": "Jordan Long", - "email": "jlong4159@gmail.com", - "linkedIn": "www.linkedin.com/jlongtlw", - "campus": "NYC / ECRI", - "cohort": "33", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945924b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Everfi", - "name": "Jacob Ory", - "email": "jacobtory@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/jacobory/", - "campus": "LA", - "cohort": "30", - "jobTitle": "Frontend Engineer", - "industry": "Ed Tech", - "cities": ["Stockton"], - "_id": { - "$oid": "6674c30595590f9fd945924c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Exabeam", - "name": "Lisa Tian", - "email": "lisatian8@gmail.com", - "linkedIn": "https://www.linkedin.com/in/lisatian-/", - "campus": "LA / WCRI", - "cohort": "53", - "jobTitle": "Software Engineer - UI", - "industry": "Security", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945924d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Exodus Movement Inc", - "name": "Lanre Makinde", - "email": "lanre.developer@gmail.com", - "linkedIn": "https://www.linkedin.com/in/lanre-mark/", - "campus": "PTRI", - "cohort": "Beta", - "jobTitle": "Sr. Software Engineer", - "industry": "blockchain/cryptocurrency", - "cities": ["St. Petersburg"], - "_id": { - "$oid": "6674c30595590f9fd945924e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Expedia Group", - "name": "Tang", - "email": "eytang8@gmail.com", - "linkedIn": "https://www.linkedin.com/mwlite/in/ttaanngg", - "campus": "LA", - "cohort": "27", - "jobTitle": "Software Development Engineer II", - "industry": "Travel", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945924f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Extend", - "name": "Diane Wu", - "email": "dianewudw@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "14", - "jobTitle": "Backend Software Engineer", - "industry": "Insurance", - "cities": ["El Paso", "Wichita", "Denver"], - "_id": { - "$oid": "6674c30595590f9fd9459250" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Extensis", - "name": "Daniel Chang", - "email": "dkchang213@gmail.com", - "linkedIn": "https://www.linkedin.com/in/daniel-k-chang/", - "campus": "LA / WCRI", - "cohort": "56", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Tampa", "Garland", "Columbus"], - "_id": { - "$oid": "6674c30595590f9fd9459251" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Facebook", - "name": "Ben Ray", - "email": "benray887@gmail.com", - "linkedIn": "https://www.linkedin.com/in/benray-/", - "campus": "NYC", - "cohort": "14", - "jobTitle": "Rotational Engineer", - "industry": "Tech", - "cities": ["Dallas", "Norfolk", "Paris"], - "_id": { - "$oid": "6674c30595590f9fd9459252" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Facebook", - "name": "Jason Lee", - "email": "jason.dongyul.lee@gmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "42", - "jobTitle": "Full-Stack Engineer", - "industry": "Social Media/Networking", - "cities": ["Kansas City"], - "_id": { - "$oid": "6674c30595590f9fd9459253" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Facebook", - "name": "Jonathan Calvo Ramirez", - "email": "jono.calvo@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jonathan-calvo", - "campus": "LA", - "cohort": "42", - "jobTitle": "Software Engineer", - "industry": "Social Media", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459254" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Facebook", - "name": "Rajeeb Banstola", - "email": "rajeebanstola@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rajeebbanstola/", - "campus": "NYC", - "cohort": "14", - "jobTitle": "Fullstack Developer - Contract", - "industry": "Internet", - "cities": ["Mesa"], - "_id": { - "$oid": "6674c30595590f9fd9459255" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Facebook", - "name": "Ricardo Cortez", - "email": "ricardodgers12@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rcortez88/", - "campus": "LA", - "cohort": "44", - "jobTitle": "Full Stack Software Engineer", - "industry": "Social Media", - "cities": ["Raleigh", "Oakland", "Dallas"], - "_id": { - "$oid": "6674c30595590f9fd9459256" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Facebook", - "name": "Sean Grace", - "email": "seanmgrace@gmail.com", - "linkedIn": "https://www.linkedin.com/in/seanmgrace/", - "campus": "LA", - "cohort": "44", - "jobTitle": "Full Stack Software Engineer", - "industry": "Tech", - "cities": ["London", "Oakland"], - "_id": { - "$oid": "6674c30595590f9fd9459257" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Facebook", - "name": "Shreshth Srivastava", - "email": "shreshthsrivastava2@gmail.com", - "linkedIn": "https://www.linkedin.com/in/shreshth-srivastava/", - "campus": "NYC", - "cohort": "21", - "jobTitle": "Software Engineer", - "industry": "Social Media", - "cities": ["Fort Worth"], - "_id": { - "$oid": "6674c30595590f9fd9459258" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Facebook (Meta)", - "name": "Eric Wilding", - "email": "eric.d.wilding@gmail.com", - "linkedIn": "https://www.linkedin.com/in/eric-wilding/", - "campus": "PTRI", - "cohort": "2", - "jobTitle": "Full Stack Software Engineer", - "industry": "Social Media", - "cities": ["Washington"], - "_id": { - "$oid": "6674c30595590f9fd9459259" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Facebook (via K2Partners)", - "name": "Thanh Doan", - "email": "tdoan35@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ty-thanh-doan/", - "campus": "LA", - "cohort": "42", - "jobTitle": "Full-Stack Engineer", - "industry": "Social Media", - "cities": ["Omaha"], - "_id": { - "$oid": "6674c30595590f9fd945925a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Facebook via TEK System", - "name": "Yoko Kawamoto", - "email": "yokokawamoto@gmail.com", - "linkedIn": "https://www.linkedin.com/in/yokokawamoto/", - "campus": "LA", - "cohort": "42", - "jobTitle": "Software Engineer", - "industry": "Social Media", - "cities": ["Mesa", "Anchorage", "Durham"], - "_id": { - "$oid": "6674c30595590f9fd945925b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Facebook/K2", - "name": "Charles Gutwirth", - "email": "charlesgutwirth@gmail.com", - "linkedIn": "https://www.linkedin.com/in/charles-gutwirth/", - "campus": "LA", - "cohort": "45", - "jobTitle": "Full Stack Engineer", - "industry": "Social media", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945925c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "FactSet", - "name": "Ethan Sclarsky", - "email": "esclarsky@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ethan-sclarsky/", - "campus": "NYC / ECRI", - "cohort": "32", - "jobTitle": "Senior Software Engineer", - "industry": "Fintech", - "cities": ["San Jose", "Mumbai"], - "_id": { - "$oid": "6674c30595590f9fd945925d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Fanatics, Inc", - "name": "Jonah Eidman", - "email": "jonah.eidman@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jonah-eidman/", - "campus": "NYC / ECRI", - "cohort": "32", - "jobTitle": "Software Engineer II", - "industry": "Entertainment", - "cities": ["Fort Worth"], - "_id": { - "$oid": "6674c30595590f9fd945925e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Fandango", - "name": "Ha-Rry Kim", - "email": "hari9497@gmail.com", - "linkedIn": "https://www.linkedin.com/in/hkim9497/", - "campus": "LA", - "cohort": "24", - "jobTitle": "Software Engineer I", - "industry": "", - "cities": ["Minneapolis"], - "_id": { - "$oid": "6674c30595590f9fd945925f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Fandango", - "name": "Ken Lam", - "email": "heiyeunl@gmail.com", - "linkedIn": "https://www.linkedin.com/in/heiyeunl/", - "campus": "LA", - "cohort": "27", - "jobTitle": "Front end software engineer", - "industry": "Entertainment?", - "cities": ["Greensboro"], - "_id": { - "$oid": "6674c30595590f9fd9459260" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "FanDuel", - "name": "Alex Haile", - "email": "ahaile923@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ahaile923/", - "campus": "FTRI", - "cohort": "7", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": ["Durham"], - "_id": { - "$oid": "6674c30595590f9fd9459261" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Fanfix", - "name": "Dylan Hensel", - "email": "dylan@hensel.com", - "linkedIn": "https://www.linkedin.com/in/dylanhensel/", - "campus": "LA", - "cohort": "38", - "jobTitle": "Senior Software Engineer", - "industry": "Entertainment", - "cities": ["Detroit"], - "_id": { - "$oid": "6674c30595590f9fd9459262" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Fanfix", - "name": "Jonathan Mavandi", - "email": "jonathan.mavandi@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jon-mavandi/", - "campus": "LA", - "cohort": "26", - "jobTitle": "Software Engineer", - "industry": "Entertainment", - "cities": ["North Las Vegas", "Honolulu"], - "_id": { - "$oid": "6674c30595590f9fd9459263" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Fannie Mae", - "name": "Abhi Gullapalli", - "email": "aubertlone@gmail.com", - "linkedIn": "https://www.linkedin.com/in/viswagullapalli/", - "campus": "FTRI / CTRI", - "cohort": "11", - "jobTitle": "Cloud Engineer", - "industry": "Cloud Services", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459264" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Fantoons", - "name": "Hank McGill", - "email": "henrymcgill@gmail.com", - "linkedIn": "https://www.linkedin.com/in/hank-mcgill/", - "campus": "NYOI", - "cohort": "4", - "jobTitle": "Founding Full-Stack Software Engineer", - "industry": "Entertainment", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459265" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Farm to People", - "name": "Katharine Angelopoulos", - "email": "katharine.angelopoulos@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kangelopoulos/", - "campus": "NYC / ECRI", - "cohort": "36", - "jobTitle": "Full Stack Developer", - "industry": "Restaurant, Food, and Beverage", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459266" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Fashionphile", - "name": "Amy Yee", - "email": "amyyee1998@gmail.com", - "linkedIn": "https://www.linkedin.com/in/amyyee98/", - "campus": "LA", - "cohort": "38", - "jobTitle": "Software Engineer", - "industry": "E-commerce", - "cities": ["Norfolk", "Memphis"], - "_id": { - "$oid": "6674c30595590f9fd9459267" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Fashionphile", - "name": "Gabriela Jardim Aquino", - "email": "gjardimaquino@gmail.com", - "linkedIn": "https://www.linkedin.com/in/aquinojardim/", - "campus": "LA", - "cohort": "36", - "jobTitle": "Software Engineer", - "industry": "Fashion", - "cities": ["Oklahoma City", "Dallas"], - "_id": { - "$oid": "6674c30595590f9fd9459268" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Fastly", - "name": "Angelo Chengcuenca", - "email": "amchengcuenca@gmail.com", - "linkedIn": "https://www.linkedin.com/in/angelotmchengcuenca/", - "campus": "FTRI / CTRI", - "cohort": "14", - "jobTitle": "Software Development Engineer", - "industry": "Software / Tech", - "cities": ["Lincoln", "Saint Paul", "Tokyo"], - "_id": { - "$oid": "6674c30595590f9fd9459269" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Fearless (fearless.tech)", - "name": "Faraz Akhtar", - "email": "fa8338@gmail.com", - "linkedIn": "https://www.linkedin.com/in/faraz22/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Software Engineer II", - "industry": "Government Consulting", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945926a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Feather", - "name": "Bryan Fong", - "email": "bryanfong.dev@gmail.com", - "linkedIn": "https://www.linkedin.com/in/bryanfong-dev/", - "campus": "NYC", - "cohort": "11", - "jobTitle": "Software Engineer", - "industry": "Furniture Subscription", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945926b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "FeatureBase", - "name": "David Kagan", - "email": "David.kagan07@gmail.com", - "linkedIn": "David-kagan07", - "campus": "NYC / ECRI", - "cohort": "34", - "jobTitle": "Jr Software Engineer, Cloud", - "industry": "Cloud Services", - "cities": ["Aurora"], - "_id": { - "$oid": "6674c30595590f9fd945926c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Federal Reserve Bank", - "name": "Robert McHalffey", - "email": "R.mchalffey@gmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "26", - "jobTitle": "Software Engineer 4", - "industry": "Government/Banking", - "cities": ["Tucson"], - "_id": { - "$oid": "6674c30595590f9fd945926d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Federal Reserve Bank of NY", - "name": "Anthony Lee", - "email": "anthonylee2797@gmail.com", - "linkedIn": "https://www.linkedin.com/in/anthony-lee27/", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Frontend Developer", - "industry": "Finance", - "cities": ["Reno", "Pittsburgh"], - "_id": { - "$oid": "6674c30595590f9fd945926e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Ferguson", - "name": "Eric Hagen", - "email": "ericjameshagen@gmail.com", - "linkedIn": "https://www.linkedin.com/in/hagenforhire/", - "campus": "NYC / ECRI", - "cohort": "32", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": ["Tucson", "Lubbock", "Toledo"], - "_id": { - "$oid": "6674c30595590f9fd945926f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Ferguson Enterprises", - "name": "James Ferrell", - "email": "James David.ferrell@ferguson.com", - "linkedIn": "https://www.linkedin.com/in/james-d-ferrell/", - "campus": "PTRI", - "cohort": "1", - "jobTitle": "Software Engineer", - "industry": "E-commerce", - "cities": ["El Paso"], - "_id": { - "$oid": "6674c30595590f9fd9459270" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Fictiv", - "name": "Cherie Zhong", - "email": "cheriemzhong@gmail.com", - "linkedIn": "https://www.linkedin.com/in/cheriezhong/", - "campus": "LA", - "cohort": "35", - "jobTitle": "Software Engineer", - "industry": "Manufacturing", - "cities": ["Corpus Christi"], - "_id": { - "$oid": "6674c30595590f9fd9459271" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Fidelity Investments", - "name": "Eli Muir", - "email": "eli.t.muir@gmail.com", - "linkedIn": "https://www.linkedin.com/in/eli-muir/", - "campus": "FTRI / CTRI", - "cohort": "10", - "jobTitle": "Full Stack Engineer", - "industry": "Fintech", - "cities": ["Mexico City", "Fresno", "Paris"], - "_id": { - "$oid": "6674c30595590f9fd9459272" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Fidelity Investments", - "name": "Christopher Jamali", - "email": "jamalichristopher@gmail.com", - "linkedIn": "https://www.linkedin.com/in/chrisjamali/", - "campus": "FTRI / CTRI", - "cohort": "10", - "jobTitle": "Senior Mobile Developer", - "industry": "Fintech", - "cities": ["Fort Worth", "Minneapolis", "Beijing"], - "_id": { - "$oid": "6674c30595590f9fd9459273" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Fin", - "name": "Matt Jiang", - "email": "mattljiang@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mattljiang/", - "campus": "LA", - "cohort": "40", - "jobTitle": "Product Engineer", - "industry": "SaaS", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459274" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Find my past", - "name": "Mitesh patel", - "email": "mit06@hotmail.com", - "linkedIn": "https://www.linkedin.com/in/miteshvjpatel", - "campus": "NYC", - "cohort": "21", - "jobTitle": "Mid software engineer", - "industry": "genealogy", - "cities": ["Sรฃo Paulo"], - "_id": { - "$oid": "6674c30595590f9fd9459275" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "FinDox Inc.", - "name": "Jhonatan Passalacqua", - "email": "jpascas@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jpassalacqua", - "campus": "PTRI", - "cohort": "Beta", - "jobTitle": "Senior Software Architect", - "industry": "Fintech", - "cities": ["Laredo", "Los Angeles", "Austin"], - "_id": { - "$oid": "6674c30595590f9fd9459276" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.062Z" - }, - "__v": 0 - }, - { - "company": "Finra", - "name": "Yankun Song", - "email": "yankun.L.song@gmail.com", - "linkedIn": "https://www.linkedin.com/in/yankunsong/", - "campus": "LA / WCRI", - "cohort": "49", - "jobTitle": "Data engineer", - "industry": "Fintech", - "cities": ["Honolulu"], - "_id": { - "$oid": "6674c30595590f9fd9459277" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "First American", - "name": "Jen Lee", - "email": "jenleesj@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jenleesj", - "campus": "FTRI / CTRI", - "cohort": "14", - "jobTitle": "Front End Software Engineer", - "industry": "Insurance", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459278" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "First Help Financial", - "name": "Juliana Morrelli", - "email": "julianamorrelli28@gmail.com", - "linkedIn": "https://www.linkedin.com/in/julianamorrelli/", - "campus": "NYC / ECRI", - "cohort": "37", - "jobTitle": "Frontend Software Engineer", - "industry": "Fintech", - "cities": ["Reno"], - "_id": { - "$oid": "6674c30595590f9fd9459279" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "First Republic Bank", - "name": "Nikhil Massand", - "email": "nikhil.massand@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nikhil-massand/", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Software Engineer", - "industry": "Banking", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945927a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "First Resonance", - "name": "Maxwell Reed", - "email": "mxjreed@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mxjrd/", - "campus": "LA", - "cohort": "41", - "jobTitle": "Frontend Engineer", - "industry": "Manufacturing", - "cities": ["Tokyo", "Fort Wayne", "Reno"], - "_id": { - "$oid": "6674c30595590f9fd945927b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Fiserv", - "name": "Ozi Oztourk", - "email": "oztrkgzhn@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ozi-oztourk", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Los Angeles"], - "_id": { - "$oid": "6674c30595590f9fd945927c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Fiserv.", - "name": "eddy zapata", - "email": "ecz001@live.com", - "linkedIn": "https://www.linkedin.com/in/eddy-zapata/", - "campus": "FTRI", - "cohort": "2", - "jobTitle": "Software Development Engineer IV", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945927d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Fitch Solutions", - "name": "Duane McFarlane", - "email": "Duanemcfarlane@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/duanemcfarlane/", - "campus": "NYC", - "cohort": "13", - "jobTitle": "Software Engineer", - "industry": "Entertainment", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945927e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Flash Scientific Technology", - "name": "William Howard", - "email": "willh91@msn.com", - "linkedIn": "https://www.linkedin.com/in/wph91/", - "campus": "LA", - "cohort": "21", - "jobTitle": "Lead Software Engineer", - "industry": "Meteorology/Environmental Science", - "cities": ["Anchorage"], - "_id": { - "$oid": "6674c30595590f9fd945927f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Flashpoint", - "name": "Robbie Gottlieb", - "email": "robbiegottlieb.dev@gmail.com", - "linkedIn": "https://www.linkedin.com/in/robbie-gottlieb/", - "campus": "NYC / ECRI", - "cohort": "1", - "jobTitle": "Security", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459280" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Flexion", - "name": "Cameron Walls", - "email": "cwalls45@gmail.com", - "linkedIn": "https://www.linkedin.com/in/cameron-walls45/", - "campus": "PTRI", - "cohort": "3", - "jobTitle": "Full Stack Software Developer", - "industry": "Consulting, the project I am working on is in the Education industry", - "cities": ["Memphis", "Sydney", "Norfolk"], - "_id": { - "$oid": "6674c30595590f9fd9459281" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "FlightAware", - "name": "Robert Yang", - "email": "rob.yang@gmail.com", - "linkedIn": "https://www.linkedin.com/in/robwyang/", - "campus": "NYC", - "cohort": "24", - "jobTitle": "Senior Software Engineer", - "industry": "Aviation", - "cities": ["Stockton", "Detroit", "Indianapolis"], - "_id": { - "$oid": "6674c30595590f9fd9459282" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Flock Safety", - "name": "Rocio Infante", - "email": "Rocio.infante417@gmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "38", - "jobTitle": "Software Engineer", - "industry": "Public Safety", - "cities": ["Arlington", "Minneapolis"], - "_id": { - "$oid": "6674c30595590f9fd9459283" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Flock Safety", - "name": "Hunter Shaw", - "email": "hu.shaw215@gmail.com", - "linkedIn": "https://www.linkedin.com/in/hshaw215/", - "campus": "NYC / ECRI", - "cohort": "40", - "jobTitle": "Software Engineer II", - "industry": "Other", - "cities": ["Indianapolis"], - "_id": { - "$oid": "6674c30595590f9fd9459284" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "FloQast", - "name": "Stephanie Chiu", - "email": "stephaniekchiu@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stephanie-chiu-/", - "campus": "LA", - "cohort": "32", - "jobTitle": "Software Engineer I", - "industry": "Fintech", - "cities": ["Chicago", "St. Louis"], - "_id": { - "$oid": "6674c30595590f9fd9459285" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "FloQast", - "name": "Khaile Tran", - "email": "khailetran94@gmail.com", - "linkedIn": "linkedin.com/in/khailetran", - "campus": "FTRI / CTRI", - "cohort": "16", - "jobTitle": "Software Engineer I", - "industry": "Other", - "cities": ["Lincoln"], - "_id": { - "$oid": "6674c30595590f9fd9459286" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Florence Healthcare", - "name": "Bill Greco", - "email": "wgreco13@gmail.com", - "linkedIn": "https://www.linkedin.com/in/bill-greco/", - "campus": "NYC", - "cohort": "32", - "jobTitle": "Senior Full Stack Software Engineer", - "industry": "Healthcare", - "cities": ["London"], - "_id": { - "$oid": "6674c30595590f9fd9459287" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "FNS, Inc.", - "name": "Shinhae Na", - "email": "shinhaena@gmail.com", - "linkedIn": "https://www.linkedin.com/in/shinhaena-stella/", - "campus": "LA / WCRI", - "cohort": "49", - "jobTitle": "Software Engineer", - "industry": "Retail", - "cities": ["Las Vegas", "Reno"], - "_id": { - "$oid": "6674c30595590f9fd9459288" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Foodpanda", - "name": "Josh Kim", - "email": "joshua940308@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sungtae/", - "campus": "NYC", - "cohort": "12", - "jobTitle": "Frontend software engineer", - "industry": "Food tech", - "cities": ["Minneapolis", "Indianapolis"], - "_id": { - "$oid": "6674c30595590f9fd9459289" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Forma", - "name": "Jay Lim", - "email": "jaymlim93@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jaylim218/", - "campus": "LA", - "cohort": "28", - "jobTitle": "Software Engineer", - "industry": "Human Resources", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945928a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Formation", - "name": "Stella Liao", - "email": "stellaliao.01@gmail.com", - "linkedIn": "https://www.linkedin.com/feed/", - "campus": "LA", - "cohort": "39", - "jobTitle": "Software Engineer", - "industry": "Education", - "cities": ["Chicago"], - "_id": { - "$oid": "6674c30595590f9fd945928b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Formidable", - "name": "Juan Hart", - "email": "juanhart1@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "12", - "jobTitle": "Software Engineer III", - "industry": "Consultancy", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945928c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Fortress Information Security", - "name": "Keith Lisiak", - "email": "bball.coach@icloud.com", - "linkedIn": "https://www.linkedin.com/in/keithlisiak/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Software Engineer", - "industry": "Security", - "cities": ["Dallas", "Virginia Beach"], - "_id": { - "$oid": "6674c30595590f9fd945928d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Forward Financing", - "name": "Shanon Lee", - "email": "shanonlee541@gmail.com", - "linkedIn": "https://www.linkedin.com/in/shanonlee541/", - "campus": "FTRI", - "cohort": "5", - "jobTitle": "Associate Software Engineer", - "industry": "Fintech", - "cities": ["Riverside"], - "_id": { - "$oid": "6674c30595590f9fd945928e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Forward Slope Inc.", - "name": "Ilija Bibic", - "email": "ibibic2@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ilija-bibic", - "campus": "LA / WCRI", - "cohort": "51", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945928f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Forward Slope, Inc.", - "name": "Thang Thai", - "email": "thaithangt@gmail.com", - "linkedIn": "https://www.linkedin.com/in/thang-thai/", - "campus": "LA / WCRI", - "cohort": "52", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": ["Gilbert", "Nashville"], - "_id": { - "$oid": "6674c30595590f9fd9459290" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "FourKites", - "name": "Anthony Stanislaus", - "email": "anthonystanislaus1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/anthonystanislaus/", - "campus": "NYC / ECRI", - "cohort": "32", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": ["Honolulu", "Toledo", "Stockton"], - "_id": { - "$oid": "6674c30595590f9fd9459291" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Fox Corporation", - "name": "James Edwards", - "email": "digitalmediapro7@gmail.com", - "linkedIn": "https://www.linkedin.com/in/digital9/", - "campus": "LA", - "cohort": "19", - "jobTitle": "Senior Full Stack Software Engineer (Frontend)", - "industry": "", - "cities": ["Raleigh", "Houston"], - "_id": { - "$oid": "6674c30595590f9fd9459292" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Freewheel", - "name": "Hubert Lin", - "email": "huberthflin@gmail.com", - "linkedIn": "https://www.linkedin.com/feed/", - "campus": "NYC", - "cohort": "9", - "jobTitle": "Software Engineer", - "industry": "IT", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459293" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Frontier Communications", - "name": "Josh Cretella", - "email": "jcrtll@protonmail.com", - "linkedIn": "https://www.linkedin.com/in/josh-cretella", - "campus": "LA", - "cohort": "45", - "jobTitle": "Backend Developer", - "industry": "Telecoms", - "cities": ["Laredo", "Washington", "Durham"], - "_id": { - "$oid": "6674c30595590f9fd9459294" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Frozen Dessert Supplies", - "name": "Ethan McRae", - "email": "ethanmcrae0@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ethanmcrae/", - "campus": "PTRI", - "cohort": "7", - "jobTitle": "Senior Developer", - "industry": "Consumer Goods: Retail (general)", - "cities": ["Toronto", "Reno"], - "_id": { - "$oid": "6674c30595590f9fd9459295" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Fulcrum", - "name": "Valerie Huang", - "email": "valeriewhuang@gmail.com", - "linkedIn": "https://www.linkedin.com/mwlite/in/valeriewhuang", - "campus": "PTRI", - "cohort": "2", - "jobTitle": "Software Engineer", - "industry": "Manufacturing", - "cities": ["Phoenix"], - "_id": { - "$oid": "6674c30595590f9fd9459296" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "fulcrumpro", - "name": "Nicole Du", - "email": "Nicoleduu@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Software Developer", - "industry": "Manufacturing", - "cities": ["Sรฃo Paulo", "Miami"], - "_id": { - "$oid": "6674c30595590f9fd9459297" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Full In Partners", - "name": "Kevin HoEun Lee", - "email": "kevin.hoeun.lee@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kevinhoeunlee/", - "campus": "LA", - "cohort": "50", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459298" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Funimation", - "name": "Justin Joseph", - "email": "jrayjoseph@gmail.com", - "linkedIn": "https://www.linkedin.com/mwlite/in/jrayjoseph", - "campus": "LA", - "cohort": "32", - "jobTitle": "Backend Software Engineer", - "industry": "Entertainment", - "cities": ["Chandler"], - "_id": { - "$oid": "6674c30595590f9fd9459299" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Fusion Medical Staffing", - "name": "Kelsey Graner", - "email": "Kels.graner@gmail.com", - "linkedIn": "LinkedIn.com/Kelsey-graner", - "campus": "LA / WCRI", - "cohort": "54", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": ["Mesa", "Cleveland"], - "_id": { - "$oid": "6674c30595590f9fd945929a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Fusion Medical Staffing", - "name": "Krisette Odegard", - "email": "kmodeg@gmail.com", - "linkedIn": "https://linkedin.com/in/krisette", - "campus": "LA / WCRI", - "cohort": "53", - "jobTitle": "Software Developer", - "industry": "Healthcare", - "cities": ["Chandler"], - "_id": { - "$oid": "6674c30595590f9fd945929b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Futuralis", - "name": "Rex Osariemen", - "email": "rexosariemen@gmail.com", - "linkedIn": "https://linkedin/in/rexosariemen", - "campus": "NYC", - "cohort": "15", - "jobTitle": "Software Engineer", - "industry": "IT", - "cities": ["Gilbert", "Denver"], - "_id": { - "$oid": "6674c30595590f9fd945929c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "G-Research", - "name": "Sigele Nickerson-Adams", - "email": "sigeleakosua@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sigelenickersonadams", - "campus": "PTRI", - "cohort": "6", - "jobTitle": "Software Engineer", - "industry": "Research", - "cities": ["Indianapolis", "Pittsburgh"], - "_id": { - "$oid": "6674c30595590f9fd945929d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Gaia Platform", - "name": "Jorge Fernandez", - "email": "jcferna1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jorge-carlos-fernandez", - "campus": "LA", - "cohort": "42", - "jobTitle": "Software Developer", - "industry": "Automation", - "cities": ["Garland"], - "_id": { - "$oid": "6674c30595590f9fd945929e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Gallery Media Group", - "name": "Kristiina Eelnurme", - "email": "kristiina.eelnurme@gmail.com", - "linkedIn": "https://www.linkedin.com/in/Kristiina-eelnurme/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Frontend Engineer", - "industry": "Media", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945929f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "GameOn Technology", - "name": "Jeffrey Kim", - "email": "kimjeffrey96@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jeffrey-kim-79810112a/", - "campus": "NYC", - "cohort": "6", - "jobTitle": "Frontend, Software Engineer", - "industry": "Tech", - "cities": ["Philadelphia"], - "_id": { - "$oid": "6674c30595590f9fd94592a0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "GAN Integrity", - "name": "Erik Larsen", - "email": "erik.w.larsen@gmail.com", - "linkedIn": "https://www.linkedin.com/in/erik-w-larsen", - "campus": "NYC", - "cohort": "3", - "jobTitle": "Software Engineer", - "industry": "", - "cities": ["Indianapolis", "Denver"], - "_id": { - "$oid": "6674c30595590f9fd94592a1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Gap", - "name": "Khayal Alasgarov", - "email": "alaskarov.khayal@gmail.com", - "linkedIn": "https://www.linkedin.com/in/khayal-alasgaroff", - "campus": "LA", - "cohort": "44", - "jobTitle": "React/JavaScript Developer", - "industry": "Clothing", - "cities": ["Greensboro", "Dallas"], - "_id": { - "$oid": "6674c30595590f9fd94592a2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Gap", - "name": "Wesley Appleget", - "email": "wesget182@gmail.com", - "linkedIn": "https://www.linkedin.com/in/wesley-appleget/", - "campus": "PTRI", - "cohort": "3", - "jobTitle": "Full Stack Engineer", - "industry": "Retail", - "cities": ["Chula Vista", "Norfolk", "North Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd94592a3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Gap Inc.", - "name": "Cole Redfearn", - "email": "coleredfearn@gmail.com", - "linkedIn": "https://www.linkedin.com/in/coleredfearn/", - "campus": "LA", - "cohort": "41", - "jobTitle": "UI Developer", - "industry": "Clothing/E-Commerce", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592a4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Gap inc.", - "name": "Nayan Parmar", - "email": "nparmar84@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nparmar1", - "campus": "LA", - "cohort": "44", - "jobTitle": "Software Engineer", - "industry": "eCommerce", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592a5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Gartner-L2", - "name": "Jonathan P Schwartz", - "email": "jonathanschwartz30@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jonathanpschwartz/", - "campus": "NYC", - "cohort": "7", - "jobTitle": "Front-End Lead", - "industry": "", - "cities": ["Tampa", "Atlanta"], - "_id": { - "$oid": "6674c30595590f9fd94592a6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Gatheround", - "name": "Andrew Widjaja", - "email": "andrewdwidjaja@gmail.com", - "linkedIn": "https://www.linkedin.com/in/andrew-widjaja/", - "campus": "FTRI / CTRI", - "cohort": "8", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Durham"], - "_id": { - "$oid": "6674c30595590f9fd94592a7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "GE Aviation", - "name": "Nathan Richardson", - "email": "nathan.richardson94@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nathan-p-richardson/", - "campus": "NYC", - "cohort": "24", - "jobTitle": "Fullstack Developer", - "industry": "Aerospace", - "cities": ["Cincinnati", "Garland", "Irvine"], - "_id": { - "$oid": "6674c30595590f9fd94592a8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Geneoscopy", - "name": "Steve Schlepphorst", - "email": "steve.schlepphorst@gmail.com", - "linkedIn": "https://www.linkedin.com/in/schlepphorst/", - "campus": "FTRI / CTRI", - "cohort": "17", - "jobTitle": "Senior Software Engineer I", - "industry": "Healthtech/Healthcare", - "cities": ["Indianapolis", "Mesa"], - "_id": { - "$oid": "6674c30595590f9fd94592a9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Genomic Prediction", - "name": "Rebecca Miller", - "email": "beemills@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rebeccamiller19/", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Frontend Engineer", - "industry": "Biotech", - "cities": ["Milwaukee", "Atlanta", "Tokyo"], - "_id": { - "$oid": "6674c30595590f9fd94592aa" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Ghostery", - "name": "Leury Rodriguez", - "email": "leuryr07@gmail.com", - "linkedIn": "https://www.linkedin.com/in/leury-rodriguez/", - "campus": "NYC", - "cohort": "8", - "jobTitle": "Jr. Software Engineer", - "industry": "Internet", - "cities": ["Albuquerque", "Jersey City", "Stockton"], - "_id": { - "$oid": "6674c30595590f9fd94592ab" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Giglabs, Inc.", - "name": "Tyler Pohn", - "email": "tylerpohn@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tylerpohn/", - "campus": "FTRI / CTRI", - "cohort": "5", - "jobTitle": "Software Engineer", - "industry": "Blockchain/Web3", - "cities": ["Atlanta", "Orlando", "Tulsa"], - "_id": { - "$oid": "6674c30595590f9fd94592ac" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Giglabs.io", - "name": "Daniel Nguyen", - "email": "dannguyen1191@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/danlord-nguyen/", - "campus": "FTRI", - "cohort": "5", - "jobTitle": "Software Engineer (Node)", - "industry": "Blockchain, Media and Entertainment", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592ad" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Github", - "name": "Sabrina Goldfarb", - "email": "s.goldfarb2@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sabrinagoldfarb/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Software Engineer II", - "industry": "Tech", - "cities": ["Irving", "Louisville", "St. Louis"], - "_id": { - "$oid": "6674c30595590f9fd94592ae" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "glimpse.ai", - "name": "Ryan Lim", - "email": "ryanlim301@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ryanlim3/", - "campus": "LA", - "cohort": "46", - "jobTitle": "Full Stack Engineer", - "industry": "Information Technology", - "cities": ["Phoenix"], - "_id": { - "$oid": "6674c30595590f9fd94592af" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Gluware", - "name": "Abid Ramay", - "email": "abidramay@gmail.com", - "linkedIn": "https://www.linkedin.com/in/aramay/", - "campus": "PTRI", - "cohort": "3", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592b0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "GOAT Group", - "name": "Jordan Deleon", - "email": "jordanscottdeleon@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jordan-deleon/", - "campus": "LA", - "cohort": "35", - "jobTitle": "Software Engineer II", - "industry": "E-commerce", - "cities": ["Indianapolis", "Newark", "Scottsdale"], - "_id": { - "$oid": "6674c30595590f9fd94592b1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "GoBolt", - "name": "Kyo Ku", - "email": "kyosan.ku34@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kyosan-ku/", - "campus": "FTRI", - "cohort": "4", - "jobTitle": "Software Developer II", - "industry": "Logistics Technology", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592b2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "GoDaddy", - "name": "Joyce Lo", - "email": "joycemanning@gmail.com", - "linkedIn": "https://www.linkedin.com/in/joycelo/", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Software Engineer", - "industry": "Internet", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592b3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "GoDaddy", - "name": "Kristina Wallen", - "email": "KristinaKWallen@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kristina-wallen/", - "campus": "LA", - "cohort": "46", - "jobTitle": "Senior Software Development Engineer", - "industry": "Software / Tech", - "cities": ["St. Louis"], - "_id": { - "$oid": "6674c30595590f9fd94592b4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "GoFundMe", - "name": "Colin McCarthy", - "email": "colinhmccarthy@gmail.com", - "linkedIn": "https://www.linkedin.com/in/colinhmccarthy/", - "campus": "LA", - "cohort": "21", - "jobTitle": "Software Engineer", - "industry": "Crowdfunding/fundraising", - "cities": ["Jersey City", "Plano"], - "_id": { - "$oid": "6674c30595590f9fd94592b5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Golden Hippo", - "name": "Mauricio Castro", - "email": "mauricio.a.castro7@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mauricioacastro/", - "campus": "FTRI / CTRI", - "cohort": "11", - "jobTitle": "Senior Full Stack Developer", - "industry": "Advertising", - "cities": ["Chesapeake", "Minneapolis"], - "_id": { - "$oid": "6674c30595590f9fd94592b6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Goldman Sachs", - "name": "Alfredo Alpizar", - "email": "fredo.alpizar@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alfredoalpizar/", - "campus": "NYC", - "cohort": "12", - "jobTitle": "Associate Software Engineer", - "industry": "Finance / Banking", - "cities": ["Irvine", "Las Vegas", "San Jose"], - "_id": { - "$oid": "6674c30595590f9fd94592b7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Goldman Sachs", - "name": "Peyton Pedersen", - "email": "pedersen0819@gmail.com", - "linkedIn": "https://www.linkedin.com/in/peyton-pedersen/", - "campus": "FTRI", - "cohort": "5", - "jobTitle": "Analyst", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592b8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Goldman Sachs", - "name": "Stephen Budarz", - "email": "sbudarz@gmail.com", - "linkedIn": "https://www.linkedin.com/in/steve-budarz/", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Vice President", - "industry": "Finance", - "cities": ["Washington"], - "_id": { - "$oid": "6674c30595590f9fd94592b9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Goldschmitt & Associates", - "name": "Kirk Shin", - "email": "shin.kirk@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kirkshin/", - "campus": "LA", - "cohort": "31", - "jobTitle": "Frontend Developer", - "industry": "Government contractor", - "cities": ["Reno", "Garland"], - "_id": { - "$oid": "6674c30595590f9fd94592ba" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "GoodPup", - "name": "Eric Wells", - "email": "epiqu1n@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ewells2275/", - "campus": "FTRI / CTRI", - "cohort": "9", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["El Paso", "San Jose", "Wichita"], - "_id": { - "$oid": "6674c30595590f9fd94592bb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "GoodRX", - "name": "Byron Jay Inocencio", - "email": "jay.byron@gmail.com", - "linkedIn": "https://www.linkedin.com/in/binocencio/", - "campus": "LA", - "cohort": "28", - "jobTitle": "Software Engineer", - "industry": "Healthcare, Med-tech, Telemedecine", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592bc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "GoodRx", - "name": "Mike Richards", - "email": "mike@madebymtr.com", - "linkedIn": "https://www.linkedin.com/in/madebymtr/", - "campus": "LA", - "cohort": "11", - "jobTitle": "Senior Frontend Engineer", - "industry": "Healthcare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592bd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Google", - "name": "Andie Ritter", - "email": "A.k.rittr@gmail.com", - "linkedIn": "https://www.linkedin.com/in/andieritter/", - "campus": "LA", - "cohort": "34", - "jobTitle": "Software Engineer", - "industry": "Business Intelligence", - "cities": ["Long Beach", "Baltimore", "Irving"], - "_id": { - "$oid": "6674c30595590f9fd94592be" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Google", - "name": "Ben Hawley", - "email": "benhawley0@gmail.com", - "linkedIn": "https://www.linkedin.com/in/benchawley/", - "campus": "NYC", - "cohort": "4", - "jobTitle": "Software Engineer", - "industry": "", - "cities": ["Honolulu", "Washington"], - "_id": { - "$oid": "6674c30595590f9fd94592bf" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Google", - "name": "Brett Beekley", - "email": "brettbeekley@gmail.com", - "linkedIn": "https://www.linkedin.com/in/brettbeekley/", - "campus": "LA", - "cohort": "15", - "jobTitle": "Senior Software Engineer, Site Reliability Engineering", - "industry": "Technology", - "cities": ["San Antonio", "Cleveland"], - "_id": { - "$oid": "6674c30595590f9fd94592c0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Google", - "name": "Cameron Greer", - "email": "camgreer01@gmail.com", - "linkedIn": "https://www.linkedin.com/in/cameron-greer/", - "campus": "LA", - "cohort": "38", - "jobTitle": "Software Engineer - Level 3", - "industry": "Technology", - "cities": ["Aurora"], - "_id": { - "$oid": "6674c30595590f9fd94592c1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Google", - "name": "Christian Padilla", - "email": "christianepadilla@gmail.com", - "linkedIn": "https://www.linkedin.com/in/christianedwardpadilla/", - "campus": "NYC", - "cohort": "10", - "jobTitle": "Software Engineer (L3)", - "industry": "Frontend Mobile Development", - "cities": ["Lexington", "Tampa"], - "_id": { - "$oid": "6674c30595590f9fd94592c2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Google", - "name": "Crystal Pederson", - "email": "crystalpederson88@gmail.com", - "linkedIn": "https://www.linkedin.com/in/crystalpederson/", - "campus": "PTRI", - "cohort": "5", - "jobTitle": "Software Engineer (Frontend III)", - "industry": "Software / Tech", - "cities": ["Mesa"], - "_id": { - "$oid": "6674c30595590f9fd94592c3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Google", - "name": "Edwin Lee", - "email": "edjl1289@gmail.com", - "linkedIn": "https://www.linkedin.com/in/edwinlee89/", - "campus": "LA", - "cohort": "45", - "jobTitle": "Software Engineer", - "industry": "Cloud Service", - "cities": ["Charlotte", "Beijing", "Stockton"], - "_id": { - "$oid": "6674c30595590f9fd94592c4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Google", - "name": "Ian Geckeler", - "email": "ikcgeckeler@gmail.com", - "linkedIn": "https://www.linkedin.com/in/iangeckeler/", - "campus": "NYC", - "cohort": "12", - "jobTitle": "Software Engineer", - "industry": "Adtech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592c5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Google", - "name": "Jeff Kang", - "email": "jeffreyrkang@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jeffreyrkang/", - "campus": "LA", - "cohort": "21", - "jobTitle": "Software Engineer", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592c6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Google", - "name": "Jenae Pennie", - "email": "jenaepen@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jenae-pennie/", - "campus": "NYC", - "cohort": "15", - "jobTitle": "Software Engineer", - "industry": "Tech", - "cities": ["North Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd94592c7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Google", - "name": "Jonathan Tam", - "email": "jktam336@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jktam/", - "campus": "LA", - "cohort": "47", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Portland", "Irvine", "Virginia Beach"], - "_id": { - "$oid": "6674c30595590f9fd94592c8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Google", - "name": "Miguel Gonzalez", - "email": "MiguelGonzalez@alumni.upenn.edu", - "linkedIn": "https://www.linkedin.com/in/miguel-gonzalez96/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Software Engineer - Search Engine Privacy", - "industry": "Tech", - "cities": ["St. Louis", "Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd94592c9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.063Z" - }, - "__v": 0 - }, - { - "company": "Google", - "name": "Nak Young Kim", - "email": "nydkim@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nak-young-kim/", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Software Engineer", - "industry": "Social Media", - "cities": ["Mesa", "Kansas City", "Newark"], - "_id": { - "$oid": "6674c30595590f9fd94592ca" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Google", - "name": "Patrick Liu", - "email": "patrickliu.hhs@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ptrkl/", - "campus": "PTRI", - "cohort": "2", - "jobTitle": "Software Engineer", - "industry": "Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592cb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Google", - "name": "Swetha Kunda", - "email": "swethakunda@gmail.com", - "linkedIn": "https://www.linkedin.com/in/swethakunda/", - "campus": "FTRI", - "cohort": "6", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Kansas City", "St. Louis"], - "_id": { - "$oid": "6674c30595590f9fd94592cc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Google", - "name": "Cecilia Yena Choi", - "email": "yenachoi95@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ceciliayenachoi/", - "campus": "LA", - "cohort": "34", - "jobTitle": "Software Engineer", - "industry": "Tech", - "cities": ["Henderson"], - "_id": { - "$oid": "6674c30595590f9fd94592cd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Google Cloud", - "name": "Sarah Heacock", - "email": "sarahheacock03@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sarah-heacock/", - "campus": "NYC", - "cohort": "2", - "jobTitle": "Software Engineer", - "industry": "Tech", - "cities": ["Fort Worth", "Arlington", "Denver"], - "_id": { - "$oid": "6674c30595590f9fd94592ce" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "GoSite", - "name": "Alexander Young", - "email": "youngalexj00@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alexander-young-7aabb7122/", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Full Stack Engineer", - "industry": "Digital Services", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592cf" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Govini", - "name": "Aaron Bumanglag", - "email": "aaron.k.bumanglag@gmail.com", - "linkedIn": "https://linkedin.com/akbuma", - "campus": "LA", - "cohort": "36", - "jobTitle": "Software Engineer", - "industry": "Decision Science", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592d0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Grailed", - "name": "Eugene Chen", - "email": "chen.eugene19@gmail.com", - "linkedIn": "https://www.linkedin.com/in/canopeia", - "campus": "NYC", - "cohort": "8", - "jobTitle": "Junior Software Engineer", - "industry": "HR tech", - "cities": ["Chula Vista"], - "_id": { - "$oid": "6674c30595590f9fd94592d1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Grailed", - "name": "Danni Ballena", - "email": "danni.ballena@gmail.com", - "linkedIn": "https://www.linkedin.com/in/danni-ballena/", - "campus": "LA", - "cohort": "25", - "jobTitle": "Software Engineer", - "industry": "Entertainment", - "cities": ["North Las Vegas", "Colorado Springs"], - "_id": { - "$oid": "6674c30595590f9fd94592d2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Granular", - "name": "Charles Ryu", - "email": "charles.ryu@gmail.com", - "linkedIn": "https://www.linkedin.com/in/charcharryu", - "campus": "LA", - "cohort": "43", - "jobTitle": "Software Engineer", - "industry": "Agriculture Tech", - "cities": ["Denver", "Durham"], - "_id": { - "$oid": "6674c30595590f9fd94592d3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Graphika", - "name": "Sam Carlile", - "email": "sam@samkc.me", - "linkedIn": "https://LinkedIn.com/in/samkcarlile", - "campus": "NYC", - "cohort": "21", - "jobTitle": "Full Stack Engineer", - "industry": "Research & Analytics", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592d4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Green Street Advisors", - "name": "Joshua Nordstrom", - "email": "joshua@jdnordstrom.com", - "linkedIn": "https://www.linkedin.com/in/jdnordy/", - "campus": "LA", - "cohort": "34", - "jobTitle": "Technology Associate", - "industry": "Real Estate", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592d5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Greenphire", - "name": "Nicholas Krug", - "email": "n.e.krug@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nicholas-e-krug", - "campus": "FTRI / CTRI", - "cohort": "10", - "jobTitle": "Application Developer III", - "industry": "Healthcare", - "cities": ["Cincinnati", "Charlotte", "Denver"], - "_id": { - "$oid": "6674c30595590f9fd94592d6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Greentech Financial Solutions", - "name": "Justin Hicks", - "email": "justinhickswork@gmail.com", - "linkedIn": "https://www.linkedin.com/in/justinlhicks/", - "campus": "LA / WCRI", - "cohort": "48", - "jobTitle": "Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592d7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Grid Networks", - "name": "Trine Medina", - "email": "trinemedina@gmail.com", - "linkedIn": "www.linkedin.com/in/trinemedina", - "campus": "FTRI / CTRI", - "cohort": "11", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Seattle", "Boston"], - "_id": { - "$oid": "6674c30595590f9fd94592d8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Gro Intelligence", - "name": "Damian Lim", - "email": "limd96@gmail.com", - "linkedIn": "https://www.linkedin.com/in/lim-damian/", - "campus": "FTRI", - "cohort": "9", - "jobTitle": "Software Engineer", - "industry": "Agriculture Science", - "cities": ["Raleigh"], - "_id": { - "$oid": "6674c30595590f9fd94592d9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Gro-Intelligence", - "name": "David Bernstein", - "email": "dxbernstein@gmail.com", - "linkedIn": "https://www.linkedin.com/in/davidsamuelbernstein/", - "campus": "NYC", - "cohort": "24", - "jobTitle": "Software Engineer (API/Data Visualization Team)", - "industry": "Agricultural Analytics", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592da" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Groove Jones", - "name": "Kristopher Sorensen", - "email": "Krismsorensen@gmail.com", - "linkedIn": "Linkedin/in/kris-sorensen", - "campus": "FTRI / CTRI", - "cohort": "7", - "jobTitle": "Senior WebXR Developer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592db" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "GuideMe Solutions", - "name": "David Nadler", - "email": "Davidnadler9637@gmail.com", - "linkedIn": "https://www.linkedin.com/in/davenads/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Technical Consultant", - "industry": "Digital Adoption Software", - "cities": ["Nashville", "Seattle", "San Francisco"], - "_id": { - "$oid": "6674c30595590f9fd94592dc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Gulfstream", - "name": "Chris Hicks", - "email": "chrishicks430@gmail.com", - "linkedIn": "Www.LinkedIn.com/in/chrishicks430", - "campus": "NYC / ECRI", - "cohort": "36", - "jobTitle": "Application Developer", - "industry": "Aerospace", - "cities": ["Oklahoma City", "San Antonio"], - "_id": { - "$oid": "6674c30595590f9fd94592dd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Guy Carpenter", - "name": "Dennis Palomo", - "email": "dennispalomo@icloud.com", - "linkedIn": "https://linkedin.com/in/dennispalomo", - "campus": "NYC", - "cohort": "27", - "jobTitle": "Developer", - "industry": "Insurance", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592de" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "HackerOne", - "name": "Catherine Chiu", - "email": "catherinechiuu@gmail.com", - "linkedIn": "https://www.linkedin.com/in/cchiu2/", - "campus": "LA", - "cohort": "37", - "jobTitle": "Software Engineer II", - "industry": "Cybersecurity", - "cities": ["Newark", "Las Vegas", "Stockton"], - "_id": { - "$oid": "6674c30595590f9fd94592df" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "HackerOne", - "name": "Serena Kuo", - "email": "hello@serenakuo.com", - "linkedIn": "https://www.linkedin.com/in/serenakuo/", - "campus": "LA", - "cohort": "37", - "jobTitle": "Senior Software Engineer", - "industry": "Computer Safety", - "cities": ["San Jose", "Pittsburgh", "El Paso"], - "_id": { - "$oid": "6674c30595590f9fd94592e0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "HackerOne", - "name": "Haejin Jo", - "email": "swe.haejin@gmail.com", - "linkedIn": "https://www.linkedin.com/in/haejinjo", - "campus": "LA", - "cohort": "37", - "jobTitle": "Software Engineer", - "industry": "Cybersecurity", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592e1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Halo Investing", - "name": "Gareth Leake", - "email": "gfleake@gmail.com", - "linkedIn": "https://www.linkedin.com/in/gareth-leake/", - "campus": "NYC", - "cohort": "13", - "jobTitle": "Software Engineer", - "industry": "Finance", - "cities": ["Irving", "Corpus Christi"], - "_id": { - "$oid": "6674c30595590f9fd94592e2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Handshake", - "name": "Annie Shin", - "email": "annieshin51@gmail.com", - "linkedIn": "https://www.linkedin.com/in/annieshinn/", - "campus": "LA", - "cohort": "41", - "jobTitle": "Software Engineer, Platform Services Team", - "industry": "Recruiting", - "cities": ["Minneapolis"], - "_id": { - "$oid": "6674c30595590f9fd94592e3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Handshake", - "name": "Chase Benjamin", - "email": "chasebenjamin6@gmail.com", - "linkedIn": "https://www.linkedin.com/in/chase-benjamin300/", - "campus": "NYC / ECRI", - "cohort": "37", - "jobTitle": "Growth Engineer", - "industry": "Other", - "cities": ["Kansas City"], - "_id": { - "$oid": "6674c30595590f9fd94592e4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Handshake", - "name": "Jeffrey Lu", - "email": "hi@jeffreyclu.com", - "linkedIn": "https://www.linkedin.com/in/jeffreyclu/", - "campus": "PTRI", - "cohort": "Beta", - "jobTitle": "Software Engineer", - "industry": "Education", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592e5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Handshake", - "name": "Joel Pratt", - "email": "pratt.joel@gmail.com", - "linkedIn": "https://www.linkedin.com/in/pratt-joel/", - "campus": "NYC", - "cohort": "8", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Irving", "Garland", "Cincinnati"], - "_id": { - "$oid": "6674c30595590f9fd94592e6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Harbor.ai", - "name": "Rodolfo Guzman", - "email": "Rodolfoguzman147@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rodolfo-guzman-59249594/", - "campus": "NYC", - "cohort": "11", - "jobTitle": "Full Stack Developer", - "industry": "Insurance Tech", - "cities": ["St. Louis", "Garland", "Detroit"], - "_id": { - "$oid": "6674c30595590f9fd94592e7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Harness Inc.", - "name": "Tran McFarland Nguyen", - "email": "tranviolin@me.com", - "linkedIn": "https://www.linkedin.com/in/tranmcfarlandnguyen/", - "campus": "LA / WCRI", - "cohort": "51", - "jobTitle": "Senior UX Designer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592e8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Harver", - "name": "Will Robinson", - "email": "wrobinson91@gmail.com", - "linkedIn": "https://www.linkedin.com/in/wrobinson91", - "campus": "NYC", - "cohort": "12", - "jobTitle": "Fullstack Engineer", - "industry": "Applicant Tracking Software", - "cities": ["Irvine", "Riverside", "Columbus"], - "_id": { - "$oid": "6674c30595590f9fd94592e9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Health Note", - "name": "Jeffrey Sul", - "email": "jeffsul97@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jsul/", - "campus": "LA", - "cohort": "46", - "jobTitle": "Software Engineer", - "industry": "Medical CRM", - "cities": ["Durham", "El Paso"], - "_id": { - "$oid": "6674c30595590f9fd94592ea" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Healthcare.com", - "name": "Stephen Jue", - "email": "steve.h.jue@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stephen-jue09/", - "campus": "NYC / ECRI", - "cohort": "32", - "jobTitle": "Software Engineer - Front End", - "industry": "Other", - "cities": ["Chesapeake", "New York", "Mesa"], - "_id": { - "$oid": "6674c30595590f9fd94592eb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Healthgrades", - "name": "Joel K. Perkins", - "email": "Joel.climbs@gmail.com", - "linkedIn": "https://www.linkedin.com/in/joelkperkins/", - "campus": "LA", - "cohort": "24", - "jobTitle": "Software Engineer", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592ec" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hearst", - "name": "Josh Roberts", - "email": "josh@quantumspot.io", - "linkedIn": "https://www.linkedin.com/in/joshrobertsv2/", - "campus": "PTRI", - "cohort": "2", - "jobTitle": "Lead Frontend Engineer", - "industry": "Media", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592ed" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hearst", - "name": "Rob Nobile", - "email": "robert.nobile@gmail.com", - "linkedIn": "https://www.linkedin.com/in/robnobile/", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Software Engineer", - "industry": "Media", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592ee" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hearst Newspaper", - "name": "Kevin Sarchi", - "email": "kevinsarchi@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/kevin-sarchi/", - "campus": "PTRI", - "cohort": "2", - "jobTitle": "Associate Software Engineer", - "industry": "Media", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592ef" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hearth", - "name": "Vince Ho", - "email": "vinceho022@gmail.com", - "linkedIn": "https://www.linkedin.com/in/vinceho022/", - "campus": "LA", - "cohort": "40", - "jobTitle": "Backend Engineer", - "industry": "Fintech", - "cities": ["Greensboro", "Orlando", "Chula Vista"], - "_id": { - "$oid": "6674c30595590f9fd94592f0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Heartland", - "name": "Lloyd Bistany", - "email": "lloydbistany@gmail.com", - "linkedIn": "https://www.linkedin.com/in/lloyd-bistany", - "campus": "NYOI", - "cohort": "3", - "jobTitle": "Software Developer", - "industry": "Business Tech/Enterprise Tech", - "cities": ["Baltimore", "Phoenix", "Charlotte"], - "_id": { - "$oid": "6674c30595590f9fd94592f1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Helix", - "name": "Robert Crocker", - "email": "robert@vizsimply.com", - "linkedIn": "https://www.linkedin.com/in/robertcrocker/", - "campus": "PTRI", - "cohort": "4", - "jobTitle": "Data Visualization Engineer", - "industry": "Bio Tech", - "cities": ["Milwaukee", "Tucson"], - "_id": { - "$oid": "6674c30595590f9fd94592f2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hertz", - "name": "Michael Costello", - "email": "mcostello91@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mcostello-swe/", - "campus": "FTRI / CTRI", - "cohort": "12", - "jobTitle": "Software Engineer", - "industry": "Automotive", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592f3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Highnote", - "name": "Trevor Carr", - "email": "trevor.a.carr@gmail.com", - "linkedIn": "https://www.linkedin.com/in/carr-trevor/", - "campus": "PTRI", - "cohort": "1", - "jobTitle": "Software Engineer", - "industry": "Software", - "cities": ["Milwaukee"], - "_id": { - "$oid": "6674c30595590f9fd94592f4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hilton", - "name": "Andrei Cabrera", - "email": "andrei.cabrera@gmail.com", - "linkedIn": "https://www.linkedin.com/in/andrei-cabrera/", - "campus": "PTRI", - "cohort": "1", - "jobTitle": "Backend Software Engineer", - "industry": "Entertainment", - "cities": ["Raleigh", "Virginia Beach", "Portland"], - "_id": { - "$oid": "6674c30595590f9fd94592f5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hilton", - "name": "Nick Andreala", - "email": "nandreala@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nickandreala/", - "campus": "PTRI", - "cohort": "3", - "jobTitle": "Front-End Software Engineer", - "industry": "Hospitality", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592f6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hilton", - "name": "Conor Sexton", - "email": "sextonc@me.com", - "linkedIn": "https://www.linkedin.com/in/sextonc/", - "campus": "NYC", - "cohort": "11", - "jobTitle": "Render Tier Engineer", - "industry": "Hospitality", - "cities": ["Anchorage", "Cleveland", "Oakland"], - "_id": { - "$oid": "6674c30595590f9fd94592f7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hinge Health", - "name": "Ahsan Rao", - "email": "ahsan.ijaz.rao@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ahsan-rao/", - "campus": "NYC / ECRI", - "cohort": "34", - "jobTitle": "Software Engineer - Full-Stack", - "industry": "Healthcare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592f8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hinge Health", - "name": "Evan King", - "email": "evanking112@gmail.com", - "linkedIn": "https://www.linkedin.com/in/evanking11/", - "campus": "LA", - "cohort": "32", - "jobTitle": "Software Engineer", - "industry": "Healthcare Technology", - "cities": ["Colorado Springs", "Gilbert", "Philadelphia"], - "_id": { - "$oid": "6674c30595590f9fd94592f9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hinge Health", - "name": "Vanessa Lutz", - "email": "vanessayplutz@gmail.com", - "linkedIn": "https://www.linkedin.com/in/vanessa-lutz", - "campus": "FTRI", - "cohort": "2", - "jobTitle": "Software Engineer", - "industry": "Health", - "cities": ["Glendale", "Toronto", "Irving"], - "_id": { - "$oid": "6674c30595590f9fd94592fa" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hireology", - "name": "Stella Baek", - "email": "seungyeon1008@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stellabaek/", - "campus": "LA / WCRI", - "cohort": "54", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592fb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "HiTactics/ ZH Solutions Inc.", - "name": "Sidhi Gosain", - "email": "sidhigosain@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sidhi-gosain/", - "campus": "LA", - "cohort": "22", - "jobTitle": "Software Engineer", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94592fc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "HiThrive", - "name": "Zack Daniels", - "email": "Zackdanielsnyc@gmail.com", - "linkedIn": "https://www.linkedin.com/in/zackdanielsnyc/", - "campus": "LA", - "cohort": "49", - "jobTitle": "Full stack software engineer", - "industry": "Other", - "cities": ["Philadelphia", "El Paso"], - "_id": { - "$oid": "6674c30595590f9fd94592fd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hive", - "name": "Max Latoche", - "email": "max.latoche@gmail.com", - "linkedIn": "https://www.linkedin.com/in/maxlatoche/", - "campus": "NYC", - "cohort": "2", - "jobTitle": "Senior Software Engineer", - "industry": "Tech", - "cities": ["Cleveland", "London"], - "_id": { - "$oid": "6674c30595590f9fd94592fe" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hive Technologies Inc", - "name": "Lilah August", - "email": "lilahraeaugust@gmail.com", - "linkedIn": "https://www.linkedin.com/lilahaugust", - "campus": "NYC / ECRI", - "cohort": "35", - "jobTitle": "Software Engineer", - "industry": "Automotive", - "cities": ["Albuquerque", "Chandler"], - "_id": { - "$oid": "6674c30595590f9fd94592ff" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "HOF Capital", - "name": "Frank Hu", - "email": "frank.junhu@gmail.com", - "linkedIn": "https://www.linkedin.com/in/frankjunhu/", - "campus": "NYC", - "cohort": "2", - "jobTitle": "Venture Analyst", - "industry": "", - "cities": ["Atlanta"], - "_id": { - "$oid": "6674c30595590f9fd9459300" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Home Depot", - "name": "Hannah Santoyo", - "email": "hannah.santoyo7@gmail.com", - "linkedIn": "linkedin.com/in/hannah-santoyo", - "campus": "LA / WCRI", - "cohort": "50", - "jobTitle": "Fullstack Software Engineer", - "industry": "Retail", - "cities": ["Louisville", "Baltimore"], - "_id": { - "$oid": "6674c30595590f9fd9459301" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Honey (PayPal)", - "name": "Jenny Hai", - "email": "jenny.hai420@gmail.com", - "linkedIn": "https://www.linkedin.com/in/Jenny-hai/", - "campus": "LA", - "cohort": "41", - "jobTitle": "Software Engineer II", - "industry": "Fintech / Ecommerce", - "cities": ["Beijing", "Honolulu", "Chandler"], - "_id": { - "$oid": "6674c30595590f9fd9459302" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hooray Agency", - "name": "Aris Razuri", - "email": "arazuli4@gmail.com", - "linkedIn": "https://www.linkedin.com/in/aris-razuri/", - "campus": "LA", - "cohort": "34", - "jobTitle": "Junior Frontend Developer", - "industry": "Marketing & Advertising", - "cities": ["Reno"], - "_id": { - "$oid": "6674c30595590f9fd9459303" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hopin", - "name": "Linda Wishingrad", - "email": "linda.wishingrad@gmail.com", - "linkedIn": "https://www.linkedin.com/in/lindawishingrad/", - "campus": "LA", - "cohort": "33", - "jobTitle": "Front End Engineer", - "industry": "Tech", - "cities": ["Sรฃo Paulo"], - "_id": { - "$oid": "6674c30595590f9fd9459304" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hopin", - "name": "Rachel Yoo", - "email": "yoo.rache@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rachel-yoo/", - "campus": "LA", - "cohort": "33", - "jobTitle": "Frontend Engineer", - "industry": "Online Events Platform", - "cities": ["Baltimore", "Houston", "Atlanta"], - "_id": { - "$oid": "6674c30595590f9fd9459305" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hopkins", - "name": "Nicole Abramowski", - "email": "nabramow@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nicoleabramowski/", - "campus": "NYC", - "cohort": "16", - "jobTitle": "Senior Full Stack Engineer", - "industry": "Law", - "cities": ["Greensboro", "Detroit", "Plano"], - "_id": { - "$oid": "6674c30595590f9fd9459306" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "HotPyp", - "name": "Kendall Lu", - "email": "kendall.luu@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kendall-lu/", - "campus": "LA", - "cohort": "31", - "jobTitle": "Front End Software Engineer", - "industry": "Cyber Security", - "cities": ["Long Beach", "Louisville", "Winston-Salem"], - "_id": { - "$oid": "6674c30595590f9fd9459307" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Howl", - "name": "Adam Allison", - "email": "allisonadam81@gmail.com", - "linkedIn": "https://www.linkedin.com/in/allisonadam81/", - "campus": "LA / WCRI", - "cohort": "49", - "jobTitle": "Full Stack Software Engineer", - "industry": "Other", - "cities": ["El Paso", "Honolulu", "London"], - "_id": { - "$oid": "6674c30595590f9fd9459308" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Howl", - "name": "Ryan Wallace", - "email": "ryanwallace1396@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rwallie/", - "campus": "LA / WCRI", - "cohort": "49", - "jobTitle": "Software Engineer", - "industry": "Media", - "cities": ["Laredo", "Stockton", "St. Petersburg"], - "_id": { - "$oid": "6674c30595590f9fd9459309" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hoylu", - "name": "Judy Song", - "email": "judysongg@gmail.com", - "linkedIn": "https://www.linkedin.com/in/judysongg/", - "campus": "LA / WCRI", - "cohort": "49", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["San Antonio"], - "_id": { - "$oid": "6674c30595590f9fd945930a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "HqO", - "name": "Shadman Khan", - "email": "shadmankhan.825@gmail.com", - "linkedIn": "https://www.linkedin.com/in/shadmanmkhan/", - "campus": "NYC", - "cohort": "24", - "jobTitle": "Senior Software Engineer", - "industry": "Tenant Experience Platform/Commercial Real Estate", - "cities": ["Jersey City", "Lexington"], - "_id": { - "$oid": "6674c30595590f9fd945930b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "HubSpot", - "name": "Michael Caballero", - "email": "caballeromichaelus@gmail.com", - "linkedIn": "https://www.linkedin.com/in/michael-caballero-a48b0b211/", - "campus": "LA", - "cohort": "42", - "jobTitle": "Senior Software Engineer I", - "industry": "Software", - "cities": ["Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd945930c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Human Interest", - "name": "Paulo Choi", - "email": "Paulinho@hey.com", - "linkedIn": "https://www.linkedin.com/in/paulochoi", - "campus": "PTRI", - "cohort": "2", - "jobTitle": "Senior Software Engineer", - "industry": "Fintech", - "cities": ["Dallas"], - "_id": { - "$oid": "6674c30595590f9fd945930d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Humana", - "name": "Jeffery Richardson", - "email": "Jeffery.erichardson03@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jefferyrichardsonii", - "campus": "FTRI / CTRI", - "cohort": "12", - "jobTitle": "Senior Software Engineer", - "industry": "Insurance", - "cities": ["Winston-Salem", "Lubbock"], - "_id": { - "$oid": "6674c30595590f9fd945930e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "HumanQ", - "name": "Aya Moosa", - "email": "ayamoosa1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ayamoosa/", - "campus": "LA / WCRI", - "cohort": "55", - "jobTitle": "Full Stack Developer", - "industry": "Other", - "cities": ["Corpus Christi", "Raleigh"], - "_id": { - "$oid": "6674c30595590f9fd945930f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hunter Strategy", - "name": "Rankin Draa", - "email": "rankindraa@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rankin-draa/", - "campus": "LA / WCRI", - "cohort": "49", - "jobTitle": "Application Developer", - "industry": "IT Services", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459310" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hy-Vee", - "name": "Daniel An", - "email": "da568@georgetown.edu", - "linkedIn": "https://www.linkedin.com/in/d-an96/", - "campus": "NYC / ECRI", - "cohort": "36", - "jobTitle": "Software Engineer", - "industry": "Restaurant, Food, and Beverage", - "cities": ["Orlando", "San Diego", "Oklahoma City"], - "_id": { - "$oid": "6674c30595590f9fd9459311" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hy-Vee", - "name": "Paul Perez", - "email": "pau.per92@gmail.com", - "linkedIn": "https://www.linkedin.com/in/perezp92", - "campus": "NYC / ECRI", - "cohort": "31", - "jobTitle": "Software Engineer II", - "industry": "Restaurant, Food, and Beverage", - "cities": ["Anchorage"], - "_id": { - "$oid": "6674c30595590f9fd9459312" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hyliion", - "name": "Gordon Yu", - "email": "gordon@gordonyu.com", - "linkedIn": "https://www.linkedin.com/in/gordonu/", - "campus": "LA", - "cohort": "16", - "jobTitle": "Senior Full Stack Engineer", - "industry": "Electric Vehicles", - "cities": ["Pittsburgh", "Milwaukee", "Atlanta"], - "_id": { - "$oid": "6674c30595590f9fd9459313" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hypergiant", - "name": "Abu Fofanah", - "email": "Bubakarrr@gmail.com", - "linkedIn": "https://www.linkedin.com/in/Abu-Fofanah/", - "campus": "LA", - "cohort": "41", - "jobTitle": "Senior Frontend Developer", - "industry": "Technology", - "cities": ["London"], - "_id": { - "$oid": "6674c30595590f9fd9459314" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hyperproof", - "name": "Tai Nguyen", - "email": "ndhuutai1@gmail.com", - "linkedIn": "", - "campus": "PTRI", - "cohort": "Beta", - "jobTitle": "Software Engineer", - "industry": "Compliance Operations", - "cities": ["Mumbai", "Los Angeles"], - "_id": { - "$oid": "6674c30595590f9fd9459315" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Hyster-Yale Group", - "name": "Patrick Mojica", - "email": "patrickmojica@gmail.com", - "linkedIn": "https://www.linkedin.com/in/patrick-mojica/", - "campus": "LA / WCRI", - "cohort": "49", - "jobTitle": "Software Engineer II - Emerging Technology", - "industry": "Automotive", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459316" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "IAPP", - "name": "Wanlu Ding", - "email": "wanlu.ding@gmail.com", - "linkedIn": "https://www.linkedin.com/in/wanlu-ding/", - "campus": "NYC / ECRI", - "cohort": "42", - "jobTitle": "Fullstack software engineer (Contractor)", - "industry": "Consulting", - "cities": ["Portland"], - "_id": { - "$oid": "6674c30595590f9fd9459317" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "IBI Group", - "name": "wisdom liu", - "email": "wliu1290@gmail.com", - "linkedIn": "https://www.linkedin.com/in/wisdom-liu/", - "campus": "LA", - "cohort": "27", - "jobTitle": "Software Developer", - "industry": "Architectural Services", - "cities": ["New York", "Sรฃo Paulo"], - "_id": { - "$oid": "6674c30595590f9fd9459318" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "IBM", - "name": "Annette Lin", - "email": "al261310@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alin10/", - "campus": "NYC", - "cohort": "9", - "jobTitle": "Software engineer, backend", - "industry": "IT", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459319" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "IBM", - "name": "Jimmy Deng", - "email": "Jdeng619@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/zhijimmydeng/", - "campus": "LA", - "cohort": "30", - "jobTitle": "Software Developer - Cloud Software Developer", - "industry": "Sales? Tbh idk", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945931a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "IBM", - "name": "Kyle Jurassic", - "email": "kjurassic@protonmail.com", - "linkedIn": "https://www.linkedin.com/in/kylejurassic/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Cloud Engineer", - "industry": "Technology", - "cities": ["Arlington", "Santa Ana"], - "_id": { - "$oid": "6674c30595590f9fd945931b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "IBM", - "name": "Nader Almogazy", - "email": "nader73107@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nader-almogazy-97603080/", - "campus": "NYC", - "cohort": "30", - "jobTitle": "Software Engineer", - "industry": "Tech", - "cities": ["Fort Worth"], - "_id": { - "$oid": "6674c30595590f9fd945931c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "IBM", - "name": "Brian Bui", - "email": "umius.brian@gmail.com", - "linkedIn": "https://www.linkedin.com/in/umius-brian/", - "campus": "LA", - "cohort": "35", - "jobTitle": "Cloud Engineer", - "industry": "Information Technology & Services", - "cities": ["Atlanta", "New York", "Anaheim"], - "_id": { - "$oid": "6674c30595590f9fd945931d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "IBM", - "name": "Vessy Shestorkina", - "email": "v.shestorkina@gmail.com", - "linkedIn": "https://www.linkedin.com/in/shestorkina/", - "campus": "NYC", - "cohort": "15", - "jobTitle": "Full Stack Developer", - "industry": "Technology & Consulting", - "cities": ["Bakersfield"], - "_id": { - "$oid": "6674c30595590f9fd945931e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Icetec Energy Services", - "name": "Nicholas Ly", - "email": "lynick14@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nicholasly/", - "campus": "FTRI / CTRI", - "cohort": "15", - "jobTitle": "Senior Applications Engineer", - "industry": "Other", - "cities": ["Columbus"], - "_id": { - "$oid": "6674c30595590f9fd945931f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "ICF", - "name": "David Cheng", - "email": "davidzcheng@protonmail.com", - "linkedIn": "https://www.linkedin.com/in/davidzcheng/", - "campus": "FTRI / CTRI", - "cohort": "11", - "jobTitle": "Software Engineer", - "industry": "Consulting", - "cities": ["Orlando"], - "_id": { - "$oid": "6674c30595590f9fd9459320" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "ICF", - "name": "Gwen Phillips", - "email": "gwen.phil@gmail.com", - "linkedIn": "https://www.linkedin.com/in/gwen-phillips/", - "campus": "PTRI", - "cohort": "6", - "jobTitle": "Frontend Developer", - "industry": "Consulting", - "cities": ["Fort Worth", "Tulsa"], - "_id": { - "$oid": "6674c30595590f9fd9459321" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "IDEMIA", - "name": "David Conrad Friesen", - "email": "conrad.friesen@pm.me", - "linkedIn": "https://www.linkedin.com/in/conrad-friesen/", - "campus": "FTRI", - "cohort": "4", - "jobTitle": "Software Engineer I", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459322" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Idemia", - "name": "Tommy Edmunds", - "email": "tommyedmunds5@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tommy-edmunds-a91aa41a9/", - "campus": "FTRI", - "cohort": "2", - "jobTitle": "Software Engineer", - "industry": "Security", - "cities": ["Arlington", "Portland", "Henderson"], - "_id": { - "$oid": "6674c30595590f9fd9459323" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "iHeartMedia", - "name": "Genevieve Annable", - "email": "genevieveannable@gmail.com", - "linkedIn": "https://www.linkedin.com/in/genevieveannable/", - "campus": "LA", - "cohort": "47", - "jobTitle": "Full-Stack Engineer", - "industry": "Entertainment", - "cities": ["Omaha", "Lubbock"], - "_id": { - "$oid": "6674c30595590f9fd9459324" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "iHeartMedia", - "name": "Alexa Nunes", - "email": "alexaraenunes@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alexanunes/", - "campus": "NYC / ECRI", - "cohort": "33", - "jobTitle": "Software Engineer", - "industry": "News/Entertainment/Streaming Platforms", - "cities": ["Memphis", "Aurora", "Nashville"], - "_id": { - "$oid": "6674c30595590f9fd9459325" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "iHeartRadio", - "name": "Serhii Kaistrenko", - "email": "skaistrenko@gmail.com", - "linkedIn": "https://www.linkedin.com/in/skaistrenko/", - "campus": "NYC", - "cohort": "9", - "jobTitle": "Software Engineer", - "industry": "Hospitality", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459326" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Impending Bloom", - "name": "William Magee", - "email": "wmagee03@gmail.com", - "linkedIn": "https://www.linkedin.com/in/william-magee-22a677181/", - "campus": "NYC", - "cohort": "13", - "jobTitle": "Data Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459327" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Inari", - "name": "Kelly Dekitani", - "email": "kellydekitani@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kelly-dekitani/", - "campus": "LA", - "cohort": "33", - "jobTitle": "Full Stack Engineer", - "industry": "Biotech/Agriculture", - "cities": ["Sรฃo Paulo", "Dallas", "Charlotte"], - "_id": { - "$oid": "6674c30595590f9fd9459328" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Inbrace", - "name": "Jim Yoon", - "email": "jimyoon90@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jimkyoon", - "campus": "LA", - "cohort": "25", - "jobTitle": "Software Engineer", - "industry": "Health", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459329" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Industrious", - "name": "Bryan Li", - "email": "Bryan.li@foxmail.com", - "linkedIn": "https://www.linkedin.com/in/bbbryan14/", - "campus": "NYC", - "cohort": "8", - "jobTitle": "Software Engineer", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945932a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Infinite Computer Solutions", - "name": "Brianna Sookhoo", - "email": "brianna.sookhoo24@gmail.com", - "linkedIn": "https://www.linkedin.com/in/brianna-sookhoo/", - "campus": "LA", - "cohort": "35", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945932b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Influent", - "name": "Adam Berri", - "email": "adamberri123@gmail.com", - "linkedIn": "https://www.linkedin.com/in/adamberri/", - "campus": "NYC", - "cohort": "29", - "jobTitle": "Software Engineer 1", - "industry": "Social Media", - "cities": ["Albuquerque", "Columbus"], - "_id": { - "$oid": "6674c30595590f9fd945932c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "Influx Data", - "name": "Grace Spletzer", - "email": "gracespletzer05@gmail.com", - "linkedIn": "https://www.linkedin.com/in/grace-spletzer/", - "campus": "LA", - "cohort": "36", - "jobTitle": "Engineer I", - "industry": "Database service", - "cities": ["Long Beach"], - "_id": { - "$oid": "6674c30595590f9fd945932d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.064Z" - }, - "__v": 0 - }, - { - "company": "InfluxData", - "name": "Bill OConnell", - "email": "wdoconnell@gmail.com", - "linkedIn": "https://www.linkedin.com/in/bill-oconnell/", - "campus": "NYC", - "cohort": "30", - "jobTitle": "Software Engineer", - "industry": "SaaS", - "cities": ["Long Beach", "Sydney", "Louisville"], - "_id": { - "$oid": "6674c30595590f9fd945932e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Infor", - "name": "Olga Naumova", - "email": "leliknaum@gmail.com", - "linkedIn": "https://www.linkedin.com/in/onaumova/", - "campus": "NYC", - "cohort": "13", - "jobTitle": "Software Engineer", - "industry": "software", - "cities": ["London"], - "_id": { - "$oid": "6674c30595590f9fd945932f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Infosys", - "name": "Honghao Sun", - "email": "ilovepuffseven@gmail.com", - "linkedIn": "https://www.linkedin.com/in/honghaosunmichael/", - "campus": "LA / WCRI", - "cohort": "52", - "jobTitle": "Technical lead", - "industry": "IT Services", - "cities": ["Dallas"], - "_id": { - "$oid": "6674c30595590f9fd9459330" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Infosys", - "name": "Reuben Kirsh", - "email": "reubenakirsh@gmail.com", - "linkedIn": "https://www.linkedin.com/in/reubenkirsh/", - "campus": "LA", - "cohort": "41", - "jobTitle": "Technology Analyst", - "industry": "Tech", - "cities": ["Mesa", "San Antonio", "Louisville"], - "_id": { - "$oid": "6674c30595590f9fd9459331" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Infosys", - "name": "Samuel Ratemo", - "email": "Sratemo@gmail.com", - "linkedIn": "https://www.linkedin.com/in/samuelratemo/", - "campus": "LA", - "cohort": "24", - "jobTitle": "Technology lead -US", - "industry": "Entertainment", - "cities": ["Miami", "Toledo", "Henderson"], - "_id": { - "$oid": "6674c30595590f9fd9459332" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Inhance Digital", - "name": "Brian Chiang", - "email": "chiangbri@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ch-brian/", - "campus": "LA", - "cohort": "34", - "jobTitle": "Software Engineer", - "industry": "Marketing", - "cities": ["Milwaukee", "Sacramento", "Toronto"], - "_id": { - "$oid": "6674c30595590f9fd9459333" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Initiative", - "name": "Brian Cheng", - "email": "Chengbrian24@gmail.com", - "linkedIn": "https://www.linkedin.com/in/brian-cheng24/", - "campus": "LA", - "cohort": "45", - "jobTitle": "Full Stack Developer", - "industry": "Media Agency", - "cities": ["Sydney", "Virginia Beach"], - "_id": { - "$oid": "6674c30595590f9fd9459334" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "INLT", - "name": "Andrew Wong", - "email": "andwong91@gmail.com", - "linkedIn": "https://www.linkedin.com/in/andwong91/", - "campus": "LA", - "cohort": "23", - "jobTitle": "Full Stack Developer", - "industry": "", - "cities": ["Chicago"], - "_id": { - "$oid": "6674c30595590f9fd9459335" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Inman", - "name": "David Kim", - "email": "scriptura7773@gmail.com", - "linkedIn": "https://www.linkedin.com/in/davidkim7773/", - "campus": "LA / WCRI", - "cohort": "50", - "jobTitle": "Software Developer", - "industry": "Real Estate", - "cities": ["Jacksonville", "Indianapolis"], - "_id": { - "$oid": "6674c30595590f9fd9459336" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Innovative Defense Technologies", - "name": "Daniel Pietsch", - "email": "drpietsch14@gmail.com", - "linkedIn": "https://www.linkedin.com/in/danielpietsch14/", - "campus": "NYOI", - "cohort": "1", - "jobTitle": "Associate Software Engineer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459337" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "InRhythm", - "name": "Altai Chiang", - "email": "altai.chiang@gmail.com", - "linkedIn": "https://www.linkedin.com/in/altaic/", - "campus": "NYC", - "cohort": "8", - "jobTitle": "Senior Software Engineer", - "industry": "Consulting", - "cities": ["Mexico City", "Oakland", "Charlotte"], - "_id": { - "$oid": "6674c30595590f9fd9459338" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "InRhythm", - "name": "Eric Marcatoma", - "email": "ericmarc159@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ericmarc159/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Software Engineer", - "industry": "Information Technology & Services", - "cities": ["Austin", "San Diego"], - "_id": { - "$oid": "6674c30595590f9fd9459339" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "InRhythm", - "name": "Benjamin Johnson", - "email": "johnsben002@gmail.com", - "linkedIn": "https://www.linkedin.com/in/johnsben002/", - "campus": "NYC", - "cohort": "16", - "jobTitle": "Software Engineer: Web Accessibility", - "industry": "Consulting", - "cities": ["San Antonio", "Sydney"], - "_id": { - "$oid": "6674c30595590f9fd945933a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "InRhythm", - "name": "Johnson Che", - "email": "Johnson.Che01@gmail.com", - "linkedIn": "https://www.linkedin.com/in/johnsonche/", - "campus": "NYC", - "cohort": "30", - "jobTitle": "Software Engineer", - "industry": "Consulting", - "cities": ["Anchorage", "Mesa", "Bakersfield"], - "_id": { - "$oid": "6674c30595590f9fd945933b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "InRhythm", - "name": "Wai Fai Lau", - "email": "wlau8088@gmail.com", - "linkedIn": "https://www.linkedin.com/in/wai-fai-lau/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Software Engineer", - "industry": "Software Consulting", - "cities": ["Orlando", "Portland"], - "_id": { - "$oid": "6674c30595590f9fd945933c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Insider, Inc.", - "name": "Michael Lauri", - "email": "michael.lauri@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mlauri/", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Software Engineer II", - "industry": "Online Media", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945933d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Insider, Inc.", - "name": "Mitchel Severe", - "email": "mitchelsevere@gmail.com", - "linkedIn": "https://www.linkedin.com/in/misevere/", - "campus": "NYC", - "cohort": "16", - "jobTitle": "Software Engineer III", - "industry": "Digital Media", - "cities": ["El Paso"], - "_id": { - "$oid": "6674c30595590f9fd945933e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Insight Global", - "name": "Lucas Mobley", - "email": "Lucas.W.Mobley@Gmail.com", - "linkedIn": "https://www.linkedin.com/in/lucasmobley/", - "campus": "LA", - "cohort": "41", - "jobTitle": "Front End Developer", - "industry": "Entertainment", - "cities": ["Riverside", "Sydney", "San Francisco"], - "_id": { - "$oid": "6674c30595590f9fd945933f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Insight Global (contract for Nike)", - "name": "Dave Franz", - "email": "davefranz@me.com", - "linkedIn": "https://www.linkedin.com/in/dave-franz/", - "campus": "LA", - "cohort": "33", - "jobTitle": "Senior Full-Stack Automation Developer", - "industry": "athletic footwear and apparel", - "cities": ["Pittsburgh"], - "_id": { - "$oid": "6674c30595590f9fd9459340" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Insight Global Consulting", - "name": "Andrew Kessinger", - "email": "andrew.kessinger@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "27", - "jobTitle": "React developer", - "industry": "Consulting", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459341" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Instride", - "name": "Jayvee Aspa", - "email": "jayvee.aspa@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jayveeaspa/", - "campus": "LA", - "cohort": "29", - "jobTitle": "Software Engineer", - "industry": "Education", - "cities": ["Riverside"], - "_id": { - "$oid": "6674c30595590f9fd9459342" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Integral", - "name": "Anna Larouche", - "email": "alarouche@gmail.com", - "linkedIn": "https://www.linkedin.com/in/anna-larouche/", - "campus": "NYC / ECRI", - "cohort": "36", - "jobTitle": "Full-stack Engineer", - "industry": "Healthcare", - "cities": ["Phoenix", "St. Petersburg"], - "_id": { - "$oid": "6674c30595590f9fd9459343" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Intelepeer", - "name": "Colton Robbins", - "email": "coltondr@gmail.com", - "linkedIn": "https://www.linkedin.com/in/c-robbins/", - "campus": "FTRI / CTRI", - "cohort": "8", - "jobTitle": "Developer", - "industry": "Other", - "cities": ["Chandler"], - "_id": { - "$oid": "6674c30595590f9fd9459344" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Intellective", - "name": "Dennis Lopez", - "email": "dnnis.lpz@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dennis-lopezsb/", - "campus": "LA", - "cohort": "40", - "jobTitle": "Full-Stack Developer", - "industry": "Internet", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459345" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Intent Media", - "name": "Denali DeMots", - "email": "denali.demots@gmail.com", - "linkedIn": "https://www.linkedin.com/in/denali-demots/", - "campus": "NYC", - "cohort": "3", - "jobTitle": "Software Engineer", - "industry": "", - "cities": ["Fort Worth", "Anchorage"], - "_id": { - "$oid": "6674c30595590f9fd9459346" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Interactive Brokers", - "name": "Luke McInerney", - "email": "mciluke@gmail.com", - "linkedIn": "https://www.linkedin.com/in/luke-mcinerney/", - "campus": "NYC / ECRI", - "cohort": "35", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459347" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Intercom", - "name": "Michael Colley", - "email": "michael.e.colley@googlemail.com", - "linkedIn": "https://www.linkedin.com/in/michaelecolley/", - "campus": "NYC", - "cohort": "27", - "jobTitle": "Product Engineer", - "industry": "SaaS, business creation services", - "cities": ["Stockton", "San Jose", "Columbus"], - "_id": { - "$oid": "6674c30595590f9fd9459348" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "International association of the better business bureau", - "name": "Giovanni Rodriguez", - "email": "Gjrod16@gmail.com", - "linkedIn": "https://www.linkedin.com/in/giovanni-rodriguez2?trk=public_profile_browsemap&challengeId=AQFtoT_NoFD3KAAAAYkntGZKTiNfC60o4v2Z4zYAnz_4_KDTQUBD7ql40SFHKBenfzE9c6FBwiMar6V09FHeEqmjVS1EAfJ7Ag&submissionId=3cc6cd5a-1812-6f17-7ceb-2e5c0f6f3658&challengeSource=AgFf2bVUVWWRnwAAAYkntJ9Q3ysytHHh91YXaw8gQiFJEKewOYeYX6rLjYNFhlQ&challegeType=AgGCPMxM5AqqqwAAAYkntJ9TeXuuC8zmVgvrjuLxi773fqd8_2_50rU&memberId=AgFbJ9qnK0duCgAAAYkntJ9WYBoUAlgShMkO190TrWZI9XA&recognizeDevice=AgGnKEfL32RWyAAAAYkntJ9aHRqgkhTAzFQoMuIEWQbDY5Tac0sU", - "campus": "NYC / ECRI", - "cohort": "33", - "jobTitle": "Full Stack Developer", - "industry": "Other", - "cities": ["London", "Anaheim", "Baltimore"], - "_id": { - "$oid": "6674c30595590f9fd9459349" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "International Business Machines", - "name": "Michael Evans", - "email": "amike.evans@gmail.com", - "linkedIn": "https://www.linkedin.com/in/michael-evans-8278b865/", - "campus": "NYC", - "cohort": "14", - "jobTitle": "Lead Full Stack Developer", - "industry": "Computer Software", - "cities": ["New York", "Newark", "Chandler"], - "_id": { - "$oid": "6674c30595590f9fd945934a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Intrinsic Enterprises", - "name": "Jasmine A Gonzalez", - "email": "jasminezalez@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jasminezalez/", - "campus": "PTRI", - "cohort": "7", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Anchorage", "Detroit", "Phoenix"], - "_id": { - "$oid": "6674c30595590f9fd945934b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Intuit", - "name": "Daria Bondarenko", - "email": "dan4ik18@gmail.com", - "linkedIn": "https://www.linkedin.com/in/daria-b/", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Software Engineer", - "industry": "Enterprise Software", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945934c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Intuit", - "name": "Davide Molino", - "email": "davidemmolino@gmail.com", - "linkedIn": "https://www.linkedin.com/in/davide-molino/", - "campus": "LA", - "cohort": "38", - "jobTitle": "Software Engineer III", - "industry": "Technology", - "cities": ["Irving", "Boston", "El Paso"], - "_id": { - "$oid": "6674c30595590f9fd945934d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Intuit", - "name": "Manjeet Kaur", - "email": "manjeet175@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kaurmanjeet/", - "campus": "NYC", - "cohort": "5", - "jobTitle": "Senior Frontend Engineer", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945934e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Intuit", - "name": "Matthew Marchand", - "email": "matthew.marchand.93@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mnmarchand/", - "campus": "LA", - "cohort": "40", - "jobTitle": "Software Engineer II", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945934f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "intuit", - "name": "Yevgeniy Skroznikov", - "email": "yevskro@gmail.com", - "linkedIn": "https://www.linkedin.com/in/yevgeniyskroznikov/", - "campus": "NYC", - "cohort": "18", - "jobTitle": "Software Engineer II", - "industry": "Enterprise software", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459350" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "InvestCloud", - "name": "Curtis Lovrak", - "email": "curtislovrak@gmail.com", - "linkedIn": "https://www.linkedin.com/in/curtislovrak/", - "campus": "NYOI", - "cohort": "4", - "jobTitle": "UI Developer", - "industry": "Fintech", - "cities": ["Tampa", "New York"], - "_id": { - "$oid": "6674c30595590f9fd9459351" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Invisory", - "name": "Thomas Kady", - "email": "thomas.kady@gmail.com", - "linkedIn": "https://www.linkedin.com/in/thomas-kady/", - "campus": "FTRI / CTRI", - "cohort": "14", - "jobTitle": "Software Developer", - "industry": "Cloud Services", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459352" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "IP.com", - "name": "Matthew Miller", - "email": "matthewjohnmiller2020@gmail.com", - "linkedIn": "https://www.linkedin.com/in/matthew-miller2020/", - "campus": "FTRI", - "cohort": "5", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Sacramento", "Albuquerque"], - "_id": { - "$oid": "6674c30595590f9fd9459353" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Iridium Satellite LLC", - "name": "Lyam Hunt", - "email": "lyamnhunt@gmail.com", - "linkedIn": "https://www.linkedin.com/in/lyamhunt/", - "campus": "NYC / ECRI", - "cohort": "34", - "jobTitle": "Software Developer II", - "industry": "Telecommunications", - "cities": ["Corpus Christi", "Long Beach"], - "_id": { - "$oid": "6674c30595590f9fd9459354" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "IronNet Cybersecurity", - "name": "Daniel Stein", - "email": "danlikesbikes@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dangineer/", - "campus": "LA", - "cohort": "33", - "jobTitle": "Senior UI/UX Developer", - "industry": "Computer and Network Security", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459355" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "ISAT Total Support", - "name": "Anthony Le", - "email": "anthonyle910@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/anthonyle910/", - "campus": "LA / WCRI", - "cohort": "58", - "jobTitle": "Full Stack Developer", - "industry": "Other", - "cities": ["Irvine"], - "_id": { - "$oid": "6674c30595590f9fd9459356" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Isobar", - "name": "Anthony Torrero", - "email": "Anthonyduarteee@gmail.com", - "linkedIn": "https://www.linkedin.com/in/anthony-duarte-4b8798159/", - "campus": "LA", - "cohort": "41", - "jobTitle": "Frontend Developer", - "industry": "Creative Agency", - "cities": ["Berlin", "Garland"], - "_id": { - "$oid": "6674c30595590f9fd9459357" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Isobar", - "name": "James Gary", - "email": "jim@jamesgary.com", - "linkedIn": "https://www.linkedin.com/in/james-gary/", - "campus": "NYC", - "cohort": "15", - "jobTitle": "Senior Front End Developer", - "industry": "Media", - "cities": ["Oklahoma City", "Boston", "Colorado Springs"], - "_id": { - "$oid": "6674c30595590f9fd9459358" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "iStrategyLabs", - "name": "Brittany Miltenberger", - "email": "brittany.miltenberger@gmail.com", - "linkedIn": "https://www.linkedin.com/in/brittanywm/", - "campus": "LA", - "cohort": "23", - "jobTitle": "Senior Web Developer", - "industry": "", - "cities": ["El Paso"], - "_id": { - "$oid": "6674c30595590f9fd9459359" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Itential", - "name": "Chao Zhong Yu", - "email": "ChaoY91@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/czyu/", - "campus": "NYC", - "cohort": "28", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Bakersfield", "Garland"], - "_id": { - "$oid": "6674c30595590f9fd945935a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Ivy Energy", - "name": "Gavin Crews", - "email": "Gcrews1894@gmail.com", - "linkedIn": "https://www.linkedin.com/in/gavincrews/", - "campus": "LA", - "cohort": "39", - "jobTitle": "Frontend Engineer", - "industry": "Solar", - "cities": ["Riverside", "Dallas", "Paris"], - "_id": { - "$oid": "6674c30595590f9fd945935b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Ivy Energy", - "name": "Nicolas Pita", - "email": "pitanicolase@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nicolaspita/", - "campus": "LA", - "cohort": "37", - "jobTitle": "Software Developer", - "industry": "Clean Energy", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945935c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Jam City", - "name": "Tony Ito-Cole", - "email": "tonyitocole@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tony-ito-cole/", - "campus": "LA", - "cohort": "34", - "jobTitle": "Platform Engineer", - "industry": "Mobile Gaming", - "cities": ["Fort Wayne", "Reno"], - "_id": { - "$oid": "6674c30595590f9fd945935d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Janus Health", - "name": "Benjamin Michareune", - "email": "ben.michareune@Gmail.com", - "linkedIn": "https://www.linkedin.com/in/benmichareune", - "campus": "FTRI / CTRI", - "cohort": "7", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": ["San Diego"], - "_id": { - "$oid": "6674c30595590f9fd945935e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Janus Healthcare", - "name": "Simon Lee", - "email": "simonlee1125@gmail.com", - "linkedIn": "https://www.linkedin.com/in/simonhlee/", - "campus": "FTRI / CTRI", - "cohort": "8", - "jobTitle": "Software Engineer II", - "industry": "Healthcare", - "cities": ["Pittsburgh"], - "_id": { - "$oid": "6674c30595590f9fd945935f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Jasper (AI)", - "name": "Marcellies Pettiford", - "email": "marcellies@pettifords.xyz", - "linkedIn": "https://www.linkedin.com/in/marcellies-pettiford/", - "campus": "LA / WCRI", - "cohort": "49", - "jobTitle": "Software Engineer II", - "industry": "Software / Tech", - "cities": ["Atlanta"], - "_id": { - "$oid": "6674c30595590f9fd9459360" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Jogg", - "name": "Alex Kolb", - "email": "akolb981@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alexanderjkolb/", - "campus": "LA / WCRI", - "cohort": "50", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459361" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "JP Morgan", - "name": "jonathan k coe", - "email": "jon.coe@codesmith.io", - "linkedIn": "https://www.linkedin.com/in/jonathan-k-coe/", - "campus": "NYC", - "cohort": "4", - "jobTitle": "Software Engineer", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459362" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "JP Morgan", - "name": "Jimmy Tran", - "email": "jvtran48@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jimmytran48/", - "campus": "NYC / ECRI", - "cohort": "40", - "jobTitle": "Senior Software Engineer", - "industry": "Fintech", - "cities": ["Jacksonville"], - "_id": { - "$oid": "6674c30595590f9fd9459363" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "JP Morgan / Chase", - "name": "Wayne Wilcox", - "email": "wilcox_wayne@hotmail.com", - "linkedIn": "https://www.linkedin.com/in/wayne-wilcox/", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Junior Developer Associate", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459364" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "JP Morgan Chase", - "name": "David Behmoaras", - "email": "dbehmoaras@gmail.com", - "linkedIn": "https://www.linkedin.com/in/david-behmoaras/", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Lincoln"], - "_id": { - "$oid": "6674c30595590f9fd9459365" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "JP Morgan Chase", - "name": "Howard Na", - "email": "howardna317@gmail.com", - "linkedIn": "https://www.linkedin.com/in/howard-na-jr/", - "campus": "LA", - "cohort": "26", - "jobTitle": "Software Engineer", - "industry": "Media", - "cities": ["Sacramento"], - "_id": { - "$oid": "6674c30595590f9fd9459366" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "JP Morgan Chase", - "name": "Stewart Elmore", - "email": "stewart.elmore@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stewart-elmore/", - "campus": "NYC / ECRI", - "cohort": "31", - "jobTitle": "Associate Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459367" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "JP Morgan Chase & Co", - "name": "Parker Steinberg", - "email": "parker.s52@gmail.com", - "linkedIn": "https://www.linkedin.com/in/parker-steinberg/", - "campus": "LA / WCRI", - "cohort": "52", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Long Beach", "New York", "Jacksonville"], - "_id": { - "$oid": "6674c30595590f9fd9459368" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "JP Morgan Chase & Co.", - "name": "Jimmy Chen", - "email": "jimmychen12249@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jimchn/", - "campus": "NYC", - "cohort": "17", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459369" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "JP Morgan Chase & Co.", - "name": "Mike Oโ€™Donnell", - "email": "michaelodonnell18@gmail.com", - "linkedIn": "https://www.linkedin.com/in/michaelodonnell18", - "campus": "NYC", - "cohort": "28", - "jobTitle": "Full Stack Developer", - "industry": "Banking", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945936a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "JPMChase", - "name": "Adam Wilson", - "email": "aswilson87@gmail.com", - "linkedIn": "https://www.linkedin.com/in/aswilson87/", - "campus": "PTRI", - "cohort": "1", - "jobTitle": "Associate Engineer", - "industry": "Finance", - "cities": ["Pittsburgh", "Riverside"], - "_id": { - "$oid": "6674c30595590f9fd945936b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "JPMorgan", - "name": "Winford Lin", - "email": "linwinford@gmail.com", - "linkedIn": "https://www.linkedin.com/in/winfordlin/", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Software Engineer II", - "industry": "Fintech", - "cities": ["Beijing", "Columbus", "Irvine"], - "_id": { - "$oid": "6674c30595590f9fd945936c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "JPMorgan Chase", - "name": "Adam White", - "email": "adamkarnwhite@gmail.com", - "linkedIn": "https://www.linkedin.com/in/adam-karn-white", - "campus": "NYC / ECRI", - "cohort": "31", - "jobTitle": "Senior Associate Software Engineer", - "industry": "Fintech", - "cities": ["Charlotte", "Aurora", "Tulsa"], - "_id": { - "$oid": "6674c30595590f9fd945936d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "JPMorgan Chase", - "name": "Adrian Uesugui", - "email": "auesugui@gmail.com", - "linkedIn": "https://www.linkedin.com/in/auesugui/", - "campus": "LA", - "cohort": "46", - "jobTitle": "Associate Software Engineer", - "industry": "Fintech", - "cities": ["Reno", "Denver"], - "_id": { - "$oid": "6674c30595590f9fd945936e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "JPMorgan Chase", - "name": "John Donovan", - "email": "jodonovan845@gmail.com", - "linkedIn": "https://www.linkedin.com/in/john-d-donovan", - "campus": "NYC / ECRI", - "cohort": "37", - "jobTitle": "Software Engineer - Associate II", - "industry": "Software / Tech", - "cities": ["Jacksonville", "Cleveland", "Miami"], - "_id": { - "$oid": "6674c30595590f9fd945936f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "JPMorgan Chase & Co", - "name": "Jo Huang", - "email": "johuangx@gmail.com", - "linkedIn": "https://www.linkedin.com/in/johuangx/", - "campus": "NYOI", - "cohort": "1", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Nashville", "Gilbert"], - "_id": { - "$oid": "6674c30595590f9fd9459370" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "JPMorgan Chase & Co.", - "name": "Stanley Huang", - "email": "iamstanleyhuang@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stanleyhuang16/", - "campus": "PTRI", - "cohort": "1", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459371" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "JPMorgan Chase & Co.", - "name": "Terence Petersen", - "email": "robo.terence@gmail.com", - "linkedIn": "https://www.linkedin.com/in/terence-petersen/", - "campus": "NYC", - "cohort": "29", - "jobTitle": "Associate Software Engineer", - "industry": "Merchant Services", - "cities": ["Kansas City"], - "_id": { - "$oid": "6674c30595590f9fd9459372" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Juniper Behavioral Health", - "name": "Kelvin Cuesta", - "email": "kelvinscuesta@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kelvinscuesta/", - "campus": "NYC", - "cohort": "16", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": ["Lexington", "Norfolk"], - "_id": { - "$oid": "6674c30595590f9fd9459373" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Justworks", - "name": "Shelby Neuman", - "email": "shelbydneuman@gmail.com", - "linkedIn": "https://www.linkedin.com/in/shelbyneuman/", - "campus": "LA / WCRI", - "cohort": "50", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459374" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "JustWorks Labs", - "name": "Sophia Huttner", - "email": "sophjean@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sophia-huttner/", - "campus": "NYC", - "cohort": "16", - "jobTitle": "Frontend Software Engineer", - "industry": "HR Suite", - "cities": ["Paris", "Milwaukee", "Toronto"], - "_id": { - "$oid": "6674c30595590f9fd9459375" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Karr Barth Administrators", - "name": "Loralyn Milcarek", - "email": "loralyn.milcarek@gmail.com", - "linkedIn": "https://www.linkedin.com/in/loralyn-milcarek/", - "campus": "LA / WCRI", - "cohort": "50", - "jobTitle": "Software Developer", - "industry": "Other", - "cities": ["Jacksonville"], - "_id": { - "$oid": "6674c30595590f9fd9459376" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Keller Williams Realty, Inc", - "name": "Brent Speight", - "email": "brentjosephspeight@gmail.com", - "linkedIn": "https://www.linkedin.com/in/brent-speight/", - "campus": "LA", - "cohort": "44", - "jobTitle": "Software Engineer", - "industry": "Realty", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459377" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Kelley Blue Book (Cox Automotive)", - "name": "Ryan Bender", - "email": "rdbender@me.com", - "linkedIn": "https://www.linkedin.com/in/rdbender", - "campus": "LA", - "cohort": "46", - "jobTitle": "Software Engineer I", - "industry": "Automotive", - "cities": ["Philadelphia", "New Orleans", "Colorado Springs"], - "_id": { - "$oid": "6674c30595590f9fd9459378" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Kevel", - "name": "Adam Joesten", - "email": "adamjoesten@gmail.com", - "linkedIn": "https://www.linkedin.com/in/adamjoesten/", - "campus": "LA", - "cohort": "40", - "jobTitle": "Senior Software Engineer (SDE II)", - "industry": "Adtech", - "cities": ["Tampa", "Berlin"], - "_id": { - "$oid": "6674c30595590f9fd9459379" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Key Bank (Laurel Road)", - "name": "Eric Pham", - "email": "ericpham36@gmail.com", - "linkedIn": "https://www.linkedin.com/in/epstylesoflife/", - "campus": "NYC", - "cohort": "12", - "jobTitle": "Senior Full Stack Engineer", - "industry": "Fintech", - "cities": ["Anaheim", "Oklahoma City", "Fort Worth"], - "_id": { - "$oid": "6674c30595590f9fd945937a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Kibanx", - "name": "Celeste Knopf", - "email": "celesteknopf@gmail.com", - "linkedIn": "https://www.linkedin.com/in/celesteknopf/", - "campus": "NYC / ECRI", - "cohort": "32", - "jobTitle": "Front End Engineer", - "industry": "Real Estate", - "cities": ["Saint Paul"], - "_id": { - "$oid": "6674c30595590f9fd945937b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Kin + Carta", - "name": "Eric Olaya", - "email": "ericolaya@gmail.com", - "linkedIn": "https://www.linkedin.com/in/eric-olaya/", - "campus": "FTRI", - "cohort": "3", - "jobTitle": "Software Engineer", - "industry": "Tech Consulting", - "cities": ["Riverside"], - "_id": { - "$oid": "6674c30595590f9fd945937c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Kindo", - "name": "Hannah Bernstein", - "email": "hbern00@gmail.com", - "linkedIn": "https://www.linkedin.com/in/bernstein-hannah/", - "campus": "LA / WCRI", - "cohort": "53", - "jobTitle": "Software Engineer", - "industry": "Artificial Intelligence", - "cities": ["Long Beach", "Scottsdale", "Mesa"], - "_id": { - "$oid": "6674c30595590f9fd945937d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Kitman Labs", - "name": "Gregory Levine-Rozenvayn", - "email": "Grisha617@gmail.com", - "linkedIn": "https://www.linkedin.com/in/gregory-levine-rozenvayn", - "campus": "NYC", - "cohort": "24", - "jobTitle": "Senior Software Engineer, Frontend", - "industry": "Sports data science", - "cities": ["Irvine"], - "_id": { - "$oid": "6674c30595590f9fd945937e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Klarna", - "name": "Natalie Vick", - "email": "vicknatalie@gmail.com", - "linkedIn": "https://www.linkedin.com/in/vicknatalie/", - "campus": "NYC", - "cohort": "16", - "jobTitle": "Senior Frontend Engineer", - "industry": "Ecommerce", - "cities": ["Fort Worth", "Austin", "Dallas"], - "_id": { - "$oid": "6674c30595590f9fd945937f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Klaviyo", - "name": "Amy Chen", - "email": "aechen46@gmail.com", - "linkedIn": "https://www.linkedin.com/in/amyechen/", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Software Engineer", - "industry": "Marketing Technology", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459380" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Klaviyo", - "name": "Elinor Weissberg", - "email": "elinorthw@gmail.com", - "linkedIn": "https://www.linkedin.com/in/elinorweissberg/", - "campus": "NYOI", - "cohort": "5", - "jobTitle": "Software Engineer II", - "industry": "Marketing/Advertising", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459381" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Knotel", - "name": "Rocky Liao", - "email": "rliao3613@gmail.com", - "linkedIn": "https://linkedin.com/in/seemsrocky", - "campus": "NYC", - "cohort": "12", - "jobTitle": "Software engineer", - "industry": "Real Estate", - "cities": ["Memphis", "London"], - "_id": { - "$oid": "6674c30595590f9fd9459382" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Knowable", - "name": "Alex Sanhueza", - "email": "alexrsanhueza@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alex-sanhueza/", - "campus": "LA", - "cohort": "37", - "jobTitle": "Software Development Engineer II (Front end)", - "industry": "Legal Services", - "cities": ["Gilbert"], - "_id": { - "$oid": "6674c30595590f9fd9459383" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Komodo Health", - "name": "Ju Kim", - "email": "juhyuns98@gmail.com", - "linkedIn": "", - "campus": "LA / WCRI", - "cohort": "50", - "jobTitle": "Software Engineer, Applications", - "industry": "Healthcare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459384" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Konami Gaming", - "name": "Aidan Noble-Goodman", - "email": "anoblegoodman@gmail.com", - "linkedIn": "www.linkedin.com/anoblegoodman", - "campus": "LA", - "cohort": "28", - "jobTitle": "Software Engineer II", - "industry": "Gaming/casino management software", - "cities": ["Reno", "Boston"], - "_id": { - "$oid": "6674c30595590f9fd9459385" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Kroger", - "name": "John Wong", - "email": "johnwong4150@gmail.com", - "linkedIn": "https://www.linkedin.com/in/john-wong-fongching/", - "campus": "LA / WCRI", - "cohort": "43", - "jobTitle": "Web Platform Engineer", - "industry": "Retail", - "cities": ["Oklahoma City"], - "_id": { - "$oid": "6674c30595590f9fd9459386" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Kroger", - "name": "Jason Seidler", - "email": "jsonseidler@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jason-seidler/", - "campus": "NYC", - "cohort": "15", - "jobTitle": "Senior Front End Developer", - "industry": "Retail", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459387" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Kroger", - "name": "Kevin MacCoy", - "email": "kmaccoy@fau.edu", - "linkedIn": "https://www.linkedin.com/in/kevin-maccoy/", - "campus": "FTRI", - "cohort": "1", - "jobTitle": "Backend Engineer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459388" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Kroger", - "name": "Elise McConnell", - "email": "elisemcconnell11@gmail.com", - "linkedIn": "www.linkedin.com/in/elisemcconnell", - "campus": "FTRI / CTRI", - "cohort": "12", - "jobTitle": "Software Engineer", - "industry": "Retail", - "cities": ["Washington", "Newark", "Philadelphia"], - "_id": { - "$oid": "6674c30595590f9fd9459389" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Kryptowire", - "name": "Michael Ross", - "email": "michaelalross@gmail.com", - "linkedIn": "https://linkedin.com/in/michaelalross", - "campus": "LA", - "cohort": "45", - "jobTitle": "Software Engineer II", - "industry": "DevSecOps", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945938a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "KyckGlobal", - "name": "Joseph Lee", - "email": "josephemlee@gmail.com", - "linkedIn": "https://www.linkedin.com/in/josephjslee/", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Durham", "Toledo"], - "_id": { - "$oid": "6674c30595590f9fd945938b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Kyte Dynamics, Inc.", - "name": "Lawrence Yeh", - "email": "lawyeh391@gmail.com", - "linkedIn": "linkedin.com/in/lawyeh", - "campus": "FTRI / CTRI", - "cohort": "9", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945938c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "LA County", - "name": "Vu Duong", - "email": "vthanhd@gmail.com", - "linkedIn": "www.linkedin.com/in/vu-duong", - "campus": "FTRI / CTRI", - "cohort": "11", - "jobTitle": "Application Developer II", - "industry": "Government", - "cities": ["San Francisco", "Fresno", "Fort Wayne"], - "_id": { - "$oid": "6674c30595590f9fd945938d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "LaaSie.ai", - "name": "Tyler Sayles", - "email": "saylestyler@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tylersayles/", - "campus": "NYC", - "cohort": "11", - "jobTitle": "Full stack Engineer", - "industry": "Marketing", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945938e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Lab49", - "name": "Eric Tacher", - "email": "erictacher@gmail.com", - "linkedIn": "https://www.linkedin.com/in/erictacher/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Web UI Engineer", - "industry": "Fintech Consulting", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945938f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Lasso Marketing", - "name": "Andy Tsou", - "email": "tsou.andy@gmail.com", - "linkedIn": "https://www.linkedin.com/in/andy-tsou/", - "campus": "LA", - "cohort": "45", - "jobTitle": "Integration Engineer", - "industry": "Health Care Marketing", - "cities": ["Sacramento", "Cleveland", "Baltimore"], - "_id": { - "$oid": "6674c30595590f9fd9459390" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "LastPass", - "name": "E Kathuria", - "email": "e@kathuria.dev", - "linkedIn": "https://www.linkedin.com/in/ekathuria", - "campus": "NYC", - "cohort": "32", - "jobTitle": "Front End Engineer", - "industry": "Software / Tech", - "cities": ["Sรฃo Paulo"], - "_id": { - "$oid": "6674c30595590f9fd9459391" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Lattitude", - "name": "Carolyn Zheng", - "email": "ruxinzheng01@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ruxinzhengswe/", - "campus": "LA / WCRI", - "cohort": "57", - "jobTitle": "Software Engineer", - "industry": "Marketing/Advertising", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459392" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Launch Darkly", - "name": "Samuel Kim", - "email": "samuyyy@gmail.com", - "linkedIn": "https://www.linkedin.com/in/samuy/", - "campus": "NYC", - "cohort": "21", - "jobTitle": "Software Engineer (Backend)", - "industry": "Developer Tools", - "cities": ["Long Beach", "Arlington", "Tucson"], - "_id": { - "$oid": "6674c30595590f9fd9459393" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Lawmatics", - "name": "Omar Rana", - "email": "omar_rana93@hotmail.com", - "linkedIn": "https://www.linkedin.com/in/orana1/", - "campus": "LA", - "cohort": "45", - "jobTitle": "Full Stack Engineer", - "industry": "CRM for law firms", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459394" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Leadpages", - "name": "Evan McNeely", - "email": "evanmcneely@me.com", - "linkedIn": "https://www.linkedin.com/in/evanmcneely/", - "campus": "PTRI", - "cohort": "6", - "jobTitle": "Software Engineer II", - "industry": "Marketing", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459395" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "Leaf Group (Society6)", - "name": "Oliver Roldan", - "email": "oproldan01@gmail.com", - "linkedIn": "", - "campus": "LA / WCRI", - "cohort": "40", - "jobTitle": "Frontend Engineer", - "industry": "Other", - "cities": ["Oklahoma City", "Colorado Springs"], - "_id": { - "$oid": "6674c30595590f9fd9459396" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "LeaseLock", - "name": "Kara Chisholm", - "email": "kkchisholm@gmail.com", - "linkedIn": "https://www.linkedin.com/in/karachisholm/", - "campus": "NYC / ECRI", - "cohort": "35", - "jobTitle": "Software Engineer", - "industry": "Real Estate", - "cities": ["El Paso"], - "_id": { - "$oid": "6674c30595590f9fd9459397" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "LedgerX", - "name": "Abaas Khorrami", - "email": "abaas.khorrami@gmail.com", - "linkedIn": "https://www.linkedin.com/in/abaas-khorrami/", - "campus": "NYC", - "cohort": "16", - "jobTitle": "Senior Frontend Engineer", - "industry": "Fintech", - "cities": ["Indianapolis", "Las Vegas", "Arlington"], - "_id": { - "$oid": "6674c30595590f9fd9459398" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "LegacyScape", - "name": "Cassidy Johnson", - "email": "cassidyrose56@gmail.com", - "linkedIn": "https://www.linkedin.com/in/cassidy-r-johnson/", - "campus": "NYC / ECRI", - "cohort": "36", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": ["Irvine"], - "_id": { - "$oid": "6674c30595590f9fd9459399" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.065Z" - }, - "__v": 0 - }, - { - "company": "LegalZoom", - "name": "Henry Park", - "email": "codedenma@gmail.com", - "linkedIn": "https://www.linkedin.com/in/henrytpark/", - "campus": "LA / WCRI", - "cohort": "52", - "jobTitle": "Software Engineer II, Product Experiences", - "industry": "Other", - "cities": ["Charlotte"], - "_id": { - "$oid": "6674c30595590f9fd945939a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Lendbuzz Inc.", - "name": "Quoc Do", - "email": "dlaquoc1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dlaquoc/", - "campus": "NYC / ECRI", - "cohort": "34", - "jobTitle": "Full Stack Engineer Co-op (Internship)", - "industry": "Automotive", - "cities": ["Anchorage", "Raleigh"], - "_id": { - "$oid": "6674c30595590f9fd945939b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Lessen Inc", - "name": "Davette Bryan", - "email": "davettejones11@gmail.com", - "linkedIn": "https://www.linkedin.com/in/davette-bryan/", - "campus": "NYC", - "cohort": "26", - "jobTitle": "Jr. Software Engineer", - "industry": "Real Estate", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945939c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Lever", - "name": "Aiden Blinn", - "email": "apblinn@gmail.com", - "linkedIn": "https://www.linkedin.com/in/aidenblinn/", - "campus": "FTRI", - "cohort": "7", - "jobTitle": "Integrations Engineer", - "industry": "IT Services", - "cities": ["Lubbock", "Austin"], - "_id": { - "$oid": "6674c30595590f9fd945939d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Lever", - "name": "Jae Lee", - "email": "jaelee213@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jaelee213/", - "campus": "LA", - "cohort": "25", - "jobTitle": "Software Engineer", - "industry": "Recruiting", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945939e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Lever", - "name": "Sophia Sam", - "email": "sophia.sam96@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sophia-sam", - "campus": "FTRI", - "cohort": "7", - "jobTitle": "Software Engineer II", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945939f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Lexis Nexis", - "name": "Danny Martinez", - "email": "codesmith@jdanielmartinez.com", - "linkedIn": "https://www.linkedin.com/in/jdanielmartinez/", - "campus": "LA", - "cohort": "42", - "jobTitle": "GraphQL Full Stack Developer", - "industry": "Paralegal", - "cities": ["Oakland"], - "_id": { - "$oid": "6674c30595590f9fd94593a0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "LexisNexis", - "name": "Graham Albachten", - "email": "albachteng@gmail.com", - "linkedIn": "https://www.linkedin.com/in/graham-albachten-00162a52/", - "campus": "FTRI", - "cohort": "1", - "jobTitle": "GraphQL Full Stack Developer", - "industry": "Legal", - "cities": ["Nashville", "Honolulu", "Mumbai"], - "_id": { - "$oid": "6674c30595590f9fd94593a1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Lexmark", - "name": "Luke Roberts", - "email": "luke.roberts089@gmail.com", - "linkedIn": "https://www.linkedin.com/in/luke-roberts0/", - "campus": "FTRI / CTRI", - "cohort": "10", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["St. Louis"], - "_id": { - "$oid": "6674c30595590f9fd94593a2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Liberty Maritime", - "name": "Garrett Layden", - "email": "garlayden@gmail.com", - "linkedIn": "https://linkedin.com/in/garrett-layden", - "campus": "NYC / ECRI", - "cohort": "33", - "jobTitle": "Full Stack Developer", - "industry": "Other", - "cities": ["Minneapolis"], - "_id": { - "$oid": "6674c30595590f9fd94593a3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Liberty Mutual", - "name": "Bryan Kim", - "email": "bkim0826@gmail.com", - "linkedIn": "https://www.linkedin.com/in/bkimmm/", - "campus": "FTRI / CTRI", - "cohort": "8", - "jobTitle": "Software Engineer", - "industry": "Insurance", - "cities": ["New Orleans"], - "_id": { - "$oid": "6674c30595590f9fd94593a4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Liberty Mutual", - "name": "Cristian De Los Rios", - "email": "Cris2595@gmail.com", - "linkedIn": "https://www.linkedin.com/in/cristian-dlr/", - "campus": "FTRI", - "cohort": "5", - "jobTitle": "Software Engineer", - "industry": "Insurance", - "cities": ["Atlanta", "Mesa", "Aurora"], - "_id": { - "$oid": "6674c30595590f9fd94593a5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Liberty Mutual", - "name": "Patrick Sullivan", - "email": "patrick@jsullivan.org", - "linkedIn": "https://www.linkedin.com/in/patrick-j-m-sullivan/", - "campus": "LA", - "cohort": "43", - "jobTitle": "Software Engineer", - "industry": "Insurance", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593a6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Liberty Mutual", - "name": "Robert Tipton", - "email": "robbytiptontol@gmail.com", - "linkedIn": "https://www.linkedin.com/in/robert-tipton/", - "campus": "LA / WCRI", - "cohort": "50", - "jobTitle": "Software Engineer", - "industry": "Insurance", - "cities": ["Fort Worth", "Long Beach", "Detroit"], - "_id": { - "$oid": "6674c30595590f9fd94593a7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Liberty Mutual", - "name": "Tyler Jameson Martinez", - "email": "tm6002005@gmail.com", - "linkedIn": "https://www.linkedin.com/mwlite/in/tylerjamesonmartinez", - "campus": "LA", - "cohort": "43", - "jobTitle": "Software engineer", - "industry": "Insurance", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593a8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "LifeOmic", - "name": "Chloe Courtois", - "email": "crc.courtois@gmail.com", - "linkedIn": "https://www.linkedin.com/in/chloe-courtois-3337a210b/", - "campus": "FTRI", - "cohort": "7", - "jobTitle": "Associate Software Engineer", - "industry": "Healthcare", - "cities": ["San Jose", "Irving"], - "_id": { - "$oid": "6674c30595590f9fd94593a9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Limble CMMS", - "name": "Josh Merrell", - "email": "joshmerrell.us@gmail.com", - "linkedIn": "https://www.linkedin.com/in/joshmerrell/", - "campus": "PTRI", - "cohort": "6", - "jobTitle": "Software Developer III", - "industry": "Software / Tech", - "cities": ["North Las Vegas", "Paris"], - "_id": { - "$oid": "6674c30595590f9fd94593aa" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Linguabee", - "name": "Connor Gillis", - "email": "connoregillis@gmail.com", - "linkedIn": "https://www.linkedin.com/in/connor-gillis/", - "campus": "NYC", - "cohort": "29", - "jobTitle": "Front End Software Engineer", - "industry": "Interpreting", - "cities": ["Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd94593ab" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "LinkedIn", - "name": "Ethan Yeh", - "email": "Ethanhwyeh@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ethanhwyeh/", - "campus": "PTRI", - "cohort": "2", - "jobTitle": "Full Stack Software Engineer", - "industry": "Professional Networking", - "cities": ["Fort Worth"], - "_id": { - "$oid": "6674c30595590f9fd94593ac" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "LinkedIn", - "name": "Douglas Yao", - "email": "doug.yao@gmail.com", - "linkedIn": "https://www.linkedin.com/in/douglas-yao/", - "campus": "FTRI / CTRI", - "cohort": "16", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593ad" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Linus Health", - "name": "Tommy Song", - "email": "Tommysong123@gmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "38", - "jobTitle": "Software Engineer", - "industry": "Health tech", - "cities": ["Jersey City", "Honolulu", "Sรฃo Paulo"], - "_id": { - "$oid": "6674c30595590f9fd94593ae" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "LiquidPixels", - "name": "Christian Looff", - "email": "ctnguy10@gmail.com", - "linkedIn": "https://www.linkedin.com/in/christian-looff/", - "campus": "FTRI / CTRI", - "cohort": "11", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Tulsa"], - "_id": { - "$oid": "6674c30595590f9fd94593af" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Literably", - "name": "Tiffany Wong", - "email": "Wongt1227@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tiffanywong149", - "campus": "NYC / ECRI", - "cohort": "42", - "jobTitle": "Junior Software Engineer", - "industry": "Education/Edtech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593b0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Little Cinema", - "name": "Kenny Ma", - "email": "Kennyjjma@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "15", - "jobTitle": "Front End Engineer", - "industry": "Entertainment", - "cities": ["Jersey City"], - "_id": { - "$oid": "6674c30595590f9fd94593b1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Littlebits", - "name": "Jinsung Park", - "email": "js.lia.park@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jsliapark/", - "campus": "NYC", - "cohort": "9", - "jobTitle": "Software Engineer", - "industry": "Beauty/Cosmetic", - "cities": ["Lubbock"], - "_id": { - "$oid": "6674c30595590f9fd94593b2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Live Nation", - "name": "Colin Gibson", - "email": "colingibs@gmail.com", - "linkedIn": "https://www.linkedin.com/in/colin--gibson/", - "campus": "LA", - "cohort": "44", - "jobTitle": "Software Development Engineer", - "industry": "Real Estate", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593b3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Lively Video", - "name": "Mark Miller", - "email": "markmmiller825@gmail.com", - "linkedIn": "https://www.linkedin.com/in/markmanuelmiller/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Senior Software Engineer", - "industry": "Entertainment/education", - "cities": ["Fresno", "Mumbai"], - "_id": { - "$oid": "6674c30595590f9fd94593b4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "LivePerson", - "name": "Geoffrey Lin", - "email": "geoffrey.s.lin@gmail.com", - "linkedIn": "https://www.linkedin.com/in/geoff-lin/", - "campus": "NYC", - "cohort": "13", - "jobTitle": "Software Engineer", - "industry": "Computer Software", - "cities": ["Buffalo"], - "_id": { - "$oid": "6674c30595590f9fd94593b5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "LivePerson", - "name": "Taihyun (Ray) Lee", - "email": "taihyun.ray.lee@gmail.com", - "linkedIn": "https://www.linkedin.com/in/taihyun-ray-lee/", - "campus": "NYC", - "cohort": "8", - "jobTitle": "Software Development Engineer", - "industry": "Software (SAAS)", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593b6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "LivePerson", - "name": "Taihyun Lee", - "email": "th9061@gmail.com", - "linkedIn": "https://www.linkedin.com/in/taihyun-ray-lee", - "campus": "NYC", - "cohort": "8", - "jobTitle": "Software Development Engineer", - "industry": "Entertainment", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593b7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "LogicMonitor", - "name": "Jessica Vaughan", - "email": "jessicavaughan820@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jessicavaughan820/", - "campus": "LA", - "cohort": "30", - "jobTitle": "frontend developer", - "industry": "SaaS", - "cities": ["Mesa", "Kansas City", "Fresno"], - "_id": { - "$oid": "6674c30595590f9fd94593b8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Lokavant", - "name": "Eric Peng", - "email": "tzerpeng@gmail.com", - "linkedIn": "https://www.linkedin.com/in/eric-peng-jojo/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Software Engineer", - "industry": "Information Technology & Services", - "cities": ["Raleigh", "Charlotte"], - "_id": { - "$oid": "6674c30595590f9fd94593b9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Lonesdale Invest", - "name": "Coral Fussman", - "email": "coralfussman@gmail.com", - "linkedIn": "https://www.linkedin.com/in/coral-fussman-21721538/", - "campus": "FTRI", - "cohort": "1", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593ba" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Longtail Studios", - "name": "Daniel Steinbrook", - "email": "steinbrookdaniel@gmail.com", - "linkedIn": "https://www.linkedin.com/in/daniel-steinbrook/", - "campus": "LA / WCRI", - "cohort": "52", - "jobTitle": "Developer - AI Models Integration", - "industry": "Software / Tech", - "cities": ["St. Louis"], - "_id": { - "$oid": "6674c30595590f9fd94593bb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Loop", - "name": "Olivia Hodel", - "email": "ohodel16@gmail.com", - "linkedIn": "https://www.linkedin.com/in/olivia-hodel/", - "campus": "NYC / ECRI", - "cohort": "39", - "jobTitle": "Associate Software Engineer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593bc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Lord, Abbett & Co. LLC", - "name": "Vince Chin", - "email": "vincech@gmail.com", - "linkedIn": "https://www.linkedin.com/in/vincech/", - "campus": "PTRI", - "cohort": "5", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Washington"], - "_id": { - "$oid": "6674c30595590f9fd94593bd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Los Alamos National Laboratory", - "name": "James Howat", - "email": "james@howat.dev", - "linkedIn": "LinkedIn.com/in/jamesbhowat", - "campus": "FTRI / CTRI", - "cohort": "12", - "jobTitle": "Software Developer 2", - "industry": "Security", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593be" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Lotic AI", - "name": "Adam Blackwell", - "email": "blackwell.ada@gmail.com", - "linkedIn": "https://www.linkedin.com/in/adam-blackwell-85918595/", - "campus": "PTRI", - "cohort": "3", - "jobTitle": "Software Engineer", - "industry": "Mental Health", - "cities": ["Washington", "Cleveland"], - "_id": { - "$oid": "6674c30595590f9fd94593bf" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Low Associates", - "name": "William Robson", - "email": "will.robson19@gmail.com", - "linkedIn": "https://www.linkedin.com/in/william-k-robson/", - "campus": "LA / WCRI", - "cohort": "50", - "jobTitle": "Full Stack Developer", - "industry": "Software / Tech", - "cities": ["Indianapolis"], - "_id": { - "$oid": "6674c30595590f9fd94593c0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Lowes", - "name": "Joshuah Edwards", - "email": "joshuah.edwards@proton.me", - "linkedIn": "linkedin.com/in/joshuah-edwards/", - "campus": "FTRI / CTRI", - "cohort": "13", - "jobTitle": "Software Engineer", - "industry": "Retail", - "cities": ["Honolulu", "Beijing"], - "_id": { - "$oid": "6674c30595590f9fd94593c1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Lumi AI", - "name": "Ryan Hastings", - "email": "rhaasti@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rhaasti/", - "campus": "NYOI", - "cohort": "4", - "jobTitle": "Front-End Engineer (six month contract-to-hire)", - "industry": "Artificial Intelligence/Machine Learning", - "cities": ["Sรฃo Paulo", "Memphis", "Paris"], - "_id": { - "$oid": "6674c30595590f9fd94593c2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Lumifi", - "name": "Ryan Gause", - "email": "Ryan.g.gause.3@gmail.com", - "linkedIn": "LinkedIn.com/in/ryangause", - "campus": "PTRI", - "cohort": "9", - "jobTitle": "Software Developer II", - "industry": "Security", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593c3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Lunchbox", - "name": "Judy Tan", - "email": "judytan86@gmail.com", - "linkedIn": "https://www.linkedin.com/in/judy-tan93/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Frontend Engineer", - "industry": "Food Industry", - "cities": ["Newark", "Cleveland", "Beijing"], - "_id": { - "$oid": "6674c30595590f9fd94593c4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "LVRG", - "name": "Gary Slootskiy", - "email": "garyslootskiy@gmail.com", - "linkedIn": "https://linkedin.com/in/garyslootskiy", - "campus": "NYC", - "cohort": "21", - "jobTitle": "Senior Software Engineer", - "industry": "Supply Chain Management", - "cities": ["Baltimore"], - "_id": { - "$oid": "6674c30595590f9fd94593c5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Lytx", - "name": "Miller Johnston", - "email": "miller.johnston17@gmail.com", - "linkedIn": "linkedin.com/in/miller-johnston", - "campus": "FTRI / CTRI", - "cohort": "6", - "jobTitle": "Software Engineer II", - "industry": "Automotive", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593c6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "M Science", - "name": "Celena Chan", - "email": "celenachan@gmail.com", - "linkedIn": "https://www.linkedin.com/in/celenachan", - "campus": "NYC / ECRI", - "cohort": "33", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Miami"], - "_id": { - "$oid": "6674c30595590f9fd94593c7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Madison Logic", - "name": "Richie Edwards", - "email": "richie00edwards@gmail.com", - "linkedIn": "https://www.linkedin.com/in/richieedwards/", - "campus": "NYC", - "cohort": "21", - "jobTitle": "Full Stack Engineer", - "industry": "Marketing", - "cities": ["Aurora"], - "_id": { - "$oid": "6674c30595590f9fd94593c8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Maestro", - "name": "Jacob Banks", - "email": "jacobjeffreybanks@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jacobjbanks/", - "campus": "LA", - "cohort": "30", - "jobTitle": "Software Engineer", - "industry": "Media/Entertainment", - "cities": ["Detroit", "Washington", "Fort Worth"], - "_id": { - "$oid": "6674c30595590f9fd94593c9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Magic Leap", - "name": "Randy Reyes", - "email": "rqreyes@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rqreyes/", - "campus": "LA", - "cohort": "31", - "jobTitle": "Front-End Software Engineer", - "industry": "Augmented Reality", - "cities": ["Detroit"], - "_id": { - "$oid": "6674c30595590f9fd94593ca" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "MagMutual", - "name": "Mark Yencheske", - "email": "markyencheske@gmail.com", - "linkedIn": "https://www.linkedin.com/in/markyencheske/", - "campus": "NYC / ECRI", - "cohort": "32", - "jobTitle": "Software Engineer", - "industry": "Insurance", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593cb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Magnite", - "name": "John Madrigal", - "email": "johnmadrigal17@gmail.com", - "linkedIn": "https://www.linkedin.com/in/john-r-madrigal/", - "campus": "LA", - "cohort": "37", - "jobTitle": "Front End Software Development Engineer", - "industry": "Adtech", - "cities": ["Newark", "Mumbai", "New York"], - "_id": { - "$oid": "6674c30595590f9fd94593cc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Mailchimp/Intuit", - "name": "Albert Han", - "email": "albert.h1231@gmail.com", - "linkedIn": "https://www.linkedin.com/in/albert-han1", - "campus": "LA", - "cohort": "47", - "jobTitle": "SWE II", - "industry": "Marketing/financial management", - "cities": ["San Jose"], - "_id": { - "$oid": "6674c30595590f9fd94593cd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Mailchimp/Intuit", - "name": "Gerry Bong", - "email": "ggbong734@gmail.com", - "linkedIn": "https://www.linkedin.com/in/gerry-bong/", - "campus": "PTRI", - "cohort": "6", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": ["Corpus Christi", "Reno", "Toronto"], - "_id": { - "$oid": "6674c30595590f9fd94593ce" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Maisonette", - "name": "Heidi Kim", - "email": "heidiyoora@gmail.com", - "linkedIn": "https://www.linkedin.com/in/heidiykim/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Software Engineer", - "industry": "E-commerce", - "cities": ["San Antonio", "Jacksonville"], - "_id": { - "$oid": "6674c30595590f9fd94593cf" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Major League Baseball", - "name": "Steven Rosas", - "email": "srosas20@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rosassteven/", - "campus": "NYC", - "cohort": "9", - "jobTitle": "Software Engineer", - "industry": "Sports", - "cities": ["Santa Ana"], - "_id": { - "$oid": "6674c30595590f9fd94593d0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "MakerBot", - "name": "Anthony R Toreson", - "email": "anthony.toreson@gmail.com", - "linkedIn": "https://www.linkedin.com/in/atoreson/", - "campus": "NYC", - "cohort": "13", - "jobTitle": "Senior Software Engineer", - "industry": "Hardware manufacturer (3d printers)", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593d1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "ManageGo", - "name": "Bo Peng", - "email": "bopeng95@gmail.com", - "linkedIn": "https://www.linkedin.com/in/bopeng95/", - "campus": "NYC", - "cohort": "10", - "jobTitle": "Software Developer", - "industry": "Real Estate", - "cities": ["San Francisco", "Scottsdale", "Raleigh"], - "_id": { - "$oid": "6674c30595590f9fd94593d2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Manatee", - "name": "Raivyno Sutrisno", - "email": "yessysutter@gmail.com", - "linkedIn": "https://www.linkedin.com/in/raivyno-sutrisno/", - "campus": "LA / WCRI", - "cohort": "52", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": ["San Jose", "Washington"], - "_id": { - "$oid": "6674c30595590f9fd94593d3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Mantium", - "name": "Steve Hong", - "email": "swe.stevehong@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stevehong-swe/", - "campus": "PTRI", - "cohort": "1", - "jobTitle": "Software Engineer", - "industry": "Artificial Intelligence", - "cities": ["Kansas City"], - "_id": { - "$oid": "6674c30595590f9fd94593d4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "MANTL", - "name": "Lourent Flores", - "email": "lourent.flores@gmail.com", - "linkedIn": "https://www.linkedin.com/in/lourent-flores/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Full stack Engineer", - "industry": "Fintech", - "cities": ["Dallas"], - "_id": { - "$oid": "6674c30595590f9fd94593d5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "MANTL", - "name": "TJ Wetmore", - "email": "Thomas.j.wetmore@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tjwetmore/", - "campus": "PTRI", - "cohort": "1", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Paris", "Mesa"], - "_id": { - "$oid": "6674c30595590f9fd94593d6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Mantra Health", - "name": "Konrad Kopko", - "email": "konradkopko1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/konradkopko/", - "campus": "PTRI", - "cohort": "1", - "jobTitle": "Software Engineer", - "industry": "HealthTech", - "cities": ["Miami", "Sacramento"], - "_id": { - "$oid": "6674c30595590f9fd94593d7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Maple.Finance", - "name": "Thomas Harper", - "email": "tommyrharper@gmail.com", - "linkedIn": "https://www.linkedin.com/in/thomas-robert-harper/", - "campus": "PTRI", - "cohort": "2", - "jobTitle": "Senior Software Engineer", - "industry": "Blockchain/Web3", - "cities": ["Sรฃo Paulo"], - "_id": { - "$oid": "6674c30595590f9fd94593d8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Mariana Tek", - "name": "Owen Eldridge", - "email": "oweneldridge7@gmail.com", - "linkedIn": "https://www.LinkedIn.com/in/owen-eldridge", - "campus": "NYC", - "cohort": "29", - "jobTitle": "Software Engineer", - "industry": "Fitness Center Saas", - "cities": ["Fort Worth", "Tampa", "Columbus"], - "_id": { - "$oid": "6674c30595590f9fd94593d9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "MarineSitu", - "name": "Emily Paine", - "email": "erpaine@gmail.com", - "linkedIn": "https://www.linkedin.com/in/emily-paine1/", - "campus": "FTRI / CTRI", - "cohort": "12", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593da" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Mark43", - "name": "Kadir Gundogdu", - "email": "kadirgund@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kadirgund/", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Software Engineer", - "industry": "Law Enforcement", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593db" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Mark43", - "name": "Sophie Nye", - "email": "sophie.nye@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "12", - "jobTitle": "Software engineer", - "industry": "Itโ€™s software for first responders, not sure what industry that is", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593dc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Marsh Mclennan", - "name": "Mina Koo", - "email": "minalunakoo@gmail.com", - "linkedIn": "linkedin.com/in/minakoo", - "campus": "NYC / ECRI", - "cohort": "30", - "jobTitle": "Developer", - "industry": "Insurance", - "cities": ["Stockton", "Tampa", "Phoenix"], - "_id": { - "$oid": "6674c30595590f9fd94593dd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "MAS Medical Staffing", - "name": "Jeffrey Schrock", - "email": "rhythmmagi@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jmschrock/", - "campus": "NYC", - "cohort": "4", - "jobTitle": "React Software Engineer", - "industry": "FinTech", - "cities": ["Corpus Christi", "Seattle"], - "_id": { - "$oid": "6674c30595590f9fd94593de" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "MassMutual", - "name": "Ausar English", - "email": "ausareenglish@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ausarenglish/", - "campus": "NYC", - "cohort": "24", - "jobTitle": "Fullstack Developer", - "industry": "Financial Services/Insurance", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593df" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "MassMutual", - "name": "Bryanna DeJesus", - "email": "bryanna.dejesus@gmail.com", - "linkedIn": "https://www.linkedin.com/in/bryannadejesus/", - "campus": "NYC", - "cohort": "30", - "jobTitle": "Full Stack Developer", - "industry": "Insurance", - "cities": ["Las Vegas", "Corpus Christi", "Tucson"], - "_id": { - "$oid": "6674c30595590f9fd94593e0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "MasterCard", - "name": "Abigail Gerig", - "email": "abigail.gerig@gmail.com", - "linkedIn": "https://www.linkedin.com/in/abigail-gerig/", - "campus": "FTRI / CTRI", - "cohort": "11", - "jobTitle": "Senior Software Engineer", - "industry": "Fintech", - "cities": ["Stockton", "Toronto", "Greensboro"], - "_id": { - "$oid": "6674c30595590f9fd94593e1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Mastercard", - "name": "Edwin Lin", - "email": "Edwinlim@gmail.com", - "linkedIn": "https://www.linkedin.com/in/edwinlin/", - "campus": "NYC", - "cohort": "14", - "jobTitle": "JavaScript Engineer", - "industry": "Payment card", - "cities": ["Cleveland", "Scottsdale"], - "_id": { - "$oid": "6674c30595590f9fd94593e2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Mavis", - "name": "Aalayah-Lynn Olaes", - "email": "olaesaalayah@gmail.com", - "linkedIn": "linkedin.com/in/aalayaholaes", - "campus": "NYC / ECRI", - "cohort": "40", - "jobTitle": "Software Engineer", - "industry": "Automotive", - "cities": ["Santa Ana", "Reno", "Fresno"], - "_id": { - "$oid": "6674c30595590f9fd94593e3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Mavis Tire", - "name": "Peter Kennedy", - "email": "Ptkennedy9@gmail.com", - "linkedIn": "https://www.linkedin.com/peter-kennedy", - "campus": "FTRI / CTRI", - "cohort": "9", - "jobTitle": "Full Stack Software Engineer", - "industry": "Automotive", - "cities": ["San Francisco"], - "_id": { - "$oid": "6674c30595590f9fd94593e4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Mavis Tires", - "name": "Jessica Davila", - "email": "jdav92@gmail.com", - "linkedIn": "https://www.linkedin.com/feed/", - "campus": "PTRI", - "cohort": "7", - "jobTitle": "Senior Full Stack Engineer", - "industry": "Automotive", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593e5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Maya Health", - "name": "Danny Byrne", - "email": "danny.byrne.dev@gmail.com", - "linkedIn": "https://www.linkedin.com/in/danny-byrne-la/", - "campus": "LA", - "cohort": "30", - "jobTitle": "Front End Engineer", - "industry": "Psychedelic Health", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593e6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Maze", - "name": "Henry Black", - "email": "blackhaj@gmail.com", - "linkedIn": "https://www.linkedin.com/in/henryblack1/", - "campus": "NYC", - "cohort": "18", - "jobTitle": "Full Stack Engineer", - "industry": "Design", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593e7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "McGraw Hill", - "name": "Kristin Green", - "email": "kngreen@umich.edu", - "linkedIn": "https://www.linkedin.com/in/kristin-green-101902a4/", - "campus": "NYC / ECRI", - "cohort": "34", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593e8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Mcgraw Hill", - "name": "Richard Guo", - "email": "richardguo11@gmail.com", - "linkedIn": "https://www.linkedin.com/in/richardyguo/", - "campus": "LA / WCRI", - "cohort": "46", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": ["Los Angeles", "Portland"], - "_id": { - "$oid": "6674c30595590f9fd94593e9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "McGraw-Hill Education", - "name": "Victor Wang", - "email": "vwang4536@gmail.com", - "linkedIn": "https://www.linkedin.com/in/vwang4536", - "campus": "LA", - "cohort": "25", - "jobTitle": "Software Engineer", - "industry": "Consulting and technology services", - "cities": ["Columbus", "Anchorage", "Tucson"], - "_id": { - "$oid": "6674c30595590f9fd94593ea" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "McKinsey & Company", - "name": "Em Podhorcer", - "email": "epithe@gmail.com", - "linkedIn": "https://www.linkedin.com/feed/", - "campus": "FTRI / CTRI", - "cohort": "8", - "jobTitle": "Engineer I", - "industry": "Consulting", - "cities": ["Lexington"], - "_id": { - "$oid": "6674c30595590f9fd94593eb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "McKinsey & Company", - "name": "Matthew Yeon", - "email": "yeon34387@gmail.com", - "linkedIn": "https://www.linkedin.com/in/matthew-yeon/", - "campus": "LA / WCRI", - "cohort": "51", - "jobTitle": "Software Engineer", - "industry": "Consulting", - "cities": ["Denver", "Stockton", "Lubbock"], - "_id": { - "$oid": "6674c30595590f9fd94593ec" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "MDCalc", - "name": "Jonah Wilkof", - "email": "wilkof.jonah@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jonahwilkof/", - "campus": "NYC", - "cohort": "7", - "jobTitle": "Software Engineer", - "industry": "Fintech, Payment Processing", - "cities": ["Irving"], - "_id": { - "$oid": "6674c30595590f9fd94593ed" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Medal.tv", - "name": "Joseph Heinz", - "email": "joeheinz99@gmail.com", - "linkedIn": "https://www.linkedin.com/in/joseph-heinz1/", - "campus": "NYC / ECRI", - "cohort": "33", - "jobTitle": "Full Stack Engineer", - "industry": "Gaming", - "cities": ["Oakland", "Toledo"], - "_id": { - "$oid": "6674c30595590f9fd94593ee" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "MediaMonks NYC", - "name": "Case Simmons", - "email": "casesimmons@pm.me", - "linkedIn": "https://www.linkedin.com/mwlite/in/case-simmons", - "campus": "LA", - "cohort": "38", - "jobTitle": "Creative Technologist", - "industry": "Digital Production", - "cities": ["Tokyo", "Oakland", "Chesapeake"], - "_id": { - "$oid": "6674c30595590f9fd94593ef" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.066Z" - }, - "__v": 0 - }, - { - "company": "Mediaocean", - "name": "Parker Keller", - "email": "parkerkeller@gmail.com", - "linkedIn": "https://www.linkedin.com/in/parkerkeller/", - "campus": "LA", - "cohort": "28", - "jobTitle": "Senior Software Engineer", - "industry": "Advertising & Marketing", - "cities": ["Phoenix", "Beijing"], - "_id": { - "$oid": "6674c30595590f9fd94593f0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Medical Informatics Engineering", - "name": "Keifer Alan Beck", - "email": "keiferbeck@gmail.com", - "linkedIn": "https://www.linkedin.com/in/k-alan-beck", - "campus": "FTRI / CTRI", - "cohort": "16", - "jobTitle": "Fullstack Developer", - "industry": "Healthtech/Healthcare", - "cities": ["Chandler", "Tulsa", "Los Angeles"], - "_id": { - "$oid": "6674c30595590f9fd94593f1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Medidata", - "name": "Wontae Han", - "email": "wontaeh@gmail.com", - "linkedIn": "https://www.linkedin.com/in/wontaeh/", - "campus": "NYC", - "cohort": "4", - "jobTitle": "Frontend Engineer", - "industry": "", - "cities": ["Detroit", "New York"], - "_id": { - "$oid": "6674c30595590f9fd94593f2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Medium", - "name": "Keiran Carpen", - "email": "keirancarpen@gmail.com", - "linkedIn": "https://www.linkedin.com/in/keirancarpen/", - "campus": "NYC", - "cohort": "18", - "jobTitle": "Senior Full Stack Engineer, Trust & Safety", - "industry": "Online publishing platform", - "cities": ["Tampa"], - "_id": { - "$oid": "6674c30595590f9fd94593f3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Medly Pharmacy", - "name": "Austin Ruby", - "email": "austinjruby@gmail.com", - "linkedIn": "https://www.linkedin.com/in/austinjruby/", - "campus": "NYC", - "cohort": "14", - "jobTitle": "Software Engineer I", - "industry": "Healthcare", - "cities": ["Buffalo", "Henderson"], - "_id": { - "$oid": "6674c30595590f9fd94593f4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "MedMen", - "name": "Brendan Morrell", - "email": "brendanmorrell@gmail.com", - "linkedIn": "https://linkedin.com/in/brendanmorrell", - "campus": "LA", - "cohort": "22", - "jobTitle": "Software Engineer", - "industry": "", - "cities": ["Portland", "Columbus"], - "_id": { - "$oid": "6674c30595590f9fd94593f5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Meltwater", - "name": "Richard Lam", - "email": "rlam108994@gmail.com", - "linkedIn": "https://www.linkedin.com/in/richardlam108/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Software Engineer", - "industry": "Digital Media Intelligence", - "cities": ["Corpus Christi", "Minneapolis"], - "_id": { - "$oid": "6674c30595590f9fd94593f6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "MeltWater", - "name": "Sebastian Damazo", - "email": "sebastiandamazo1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ernesto-sebastian-damazo", - "campus": "LA", - "cohort": "42", - "jobTitle": "Backend software engineer level 2", - "industry": "Software as a Service", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593f7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Memorial Sloan Kettering", - "name": "David Zhang", - "email": "davidzhang8828@gmail.com", - "linkedIn": "https://www.linkedin.com/in/davdjz/", - "campus": "NYC", - "cohort": "17", - "jobTitle": "Advanced Software Developer", - "industry": "Healthcare", - "cities": ["Miami"], - "_id": { - "$oid": "6674c30595590f9fd94593f8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Memorial Sloan Kettering", - "name": "Phillip Yoo", - "email": "phillipyoo.218@gmail.com", - "linkedIn": "https://www.linkedin.com/in/phillipyoo218/", - "campus": "FTRI", - "cohort": "5", - "jobTitle": "Bioinformatics Software Engineer I", - "industry": "Healthcare", - "cities": ["Phoenix"], - "_id": { - "$oid": "6674c30595590f9fd94593f9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Memorial Sloan Kettering Cancer Center", - "name": "Raymond Kwan", - "email": "kwanvm@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rkwn/", - "campus": "NYC", - "cohort": "16", - "jobTitle": "Frontend Software Engineer", - "industry": "Health", - "cities": ["Indianapolis", "Irvine"], - "_id": { - "$oid": "6674c30595590f9fd94593fa" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Memorial Sloan Kettering Cancer Center", - "name": "Natsuki Wada", - "email": "wachka06@gmail.com", - "linkedIn": "https://www.linkedin.com/in/natsukiwada/", - "campus": "FTRI", - "cohort": "3", - "jobTitle": "Software Engineer II", - "industry": "Healthcare", - "cities": ["Plano"], - "_id": { - "$oid": "6674c30595590f9fd94593fb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Mento", - "name": "James Highsmith", - "email": "me@jameshighsmith.com", - "linkedIn": "https://www.linkedin.com/in/jameshighsmith/", - "campus": "NYC", - "cohort": "15", - "jobTitle": "Lead Fullstack Engineer", - "industry": "HR", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94593fc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Mentorcam", - "name": "Stephen Rivas", - "email": "Stephen.Anthony.rivas@gmail.com", - "linkedIn": "https://linkedin.com/in/stephenscript", - "campus": "NYOI", - "cohort": "1", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Memphis"], - "_id": { - "$oid": "6674c30595590f9fd94593fd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Mentra", - "name": "Mathew Hultquist", - "email": "mathew.j.hultquist@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mjhult/", - "campus": "PTRI", - "cohort": "9", - "jobTitle": "Senior Full Stack Engineer", - "industry": "Software / Tech", - "cities": ["Santa Ana", "Kansas City"], - "_id": { - "$oid": "6674c30595590f9fd94593fe" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Merck", - "name": "Jin Yoo", - "email": "iyoojin@gmail.com", - "linkedIn": "https://www.linkedin.com/in/iyoojin/", - "campus": "FTRI / CTRI", - "cohort": "9", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": ["Phoenix"], - "_id": { - "$oid": "6674c30595590f9fd94593ff" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Meredith", - "name": "Kai Evans", - "email": "kaijosefevans@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jonathan-jim-ramirez/", - "campus": "LA", - "cohort": "42", - "jobTitle": "Software Engineer", - "industry": "Media Agency", - "cities": ["London", "Mumbai", "Seattle"], - "_id": { - "$oid": "6674c30595590f9fd9459400" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Mess", - "name": "Anne-lise Emig", - "email": "anneliseemig@gmail.com", - "linkedIn": "linkedin.com/in/anneliseemig", - "campus": "FTRI / CTRI", - "cohort": "15", - "jobTitle": "Junior Web Developer", - "industry": "Marketing", - "cities": ["Las Vegas", "Phoenix", "New Orleans"], - "_id": { - "$oid": "6674c30595590f9fd9459401" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Meta", - "name": "Carlos Lovera", - "email": "Calovera@bu.edu", - "linkedIn": "", - "campus": "PTRI", - "cohort": "2", - "jobTitle": "Partner Engineer", - "industry": "Fintech", - "cities": ["Mesa"], - "_id": { - "$oid": "6674c30595590f9fd9459402" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Meta", - "name": "Jonathan Jim Ramirez", - "email": "jramirezor.91@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jonathan-jim-ramirez/", - "campus": "PTRI", - "cohort": "0", - "jobTitle": "Data Engineer", - "industry": "Social Media + VR", - "cities": ["Santa Ana", "Newark", "Irving"], - "_id": { - "$oid": "6674c30595590f9fd9459403" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Meta", - "name": "Karandeep Ahluwalia", - "email": "karandeepahluwalia@gmail.com", - "linkedIn": "https://www.linkedin.com/in/karandeepahluwalia97/", - "campus": "NYC", - "cohort": "16", - "jobTitle": "Software Engineer", - "industry": "Technology", - "cities": ["London", "Oakland", "Bakersfield"], - "_id": { - "$oid": "6674c30595590f9fd9459404" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Meta", - "name": "Tom Herrmann", - "email": "Tomherrmannd@gmail.com", - "linkedIn": "https://www.linkedin.com/in/thomasherrmann1/", - "campus": "NYC", - "cohort": "14", - "jobTitle": "Software engineer - E4", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459405" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Metecs", - "name": "Justin Lee Kirk", - "email": "justinleekirk@gmail.com", - "linkedIn": "https://www.linkedin.com/in/justinleekirk/", - "campus": "LA", - "cohort": "48", - "jobTitle": "Software Engineer", - "industry": "Research", - "cities": ["Sacramento"], - "_id": { - "$oid": "6674c30595590f9fd9459406" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Metric5", - "name": "Alex Kang", - "email": "akang0408@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alex-kang/", - "campus": "NYC", - "cohort": "16", - "jobTitle": "Software Engineer", - "industry": "Information Technology & Services", - "cities": ["Arlington"], - "_id": { - "$oid": "6674c30595590f9fd9459407" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Metrolina Greenhouses", - "name": "Stefan Jordan", - "email": "sjordan2010@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stefan-w-jordan", - "campus": "FTRI / CTRI", - "cohort": "13", - "jobTitle": "Frontend Software Engineer", - "industry": "Agriculture Science", - "cities": ["Las Vegas", "Atlanta", "Oakland"], - "_id": { - "$oid": "6674c30595590f9fd9459408" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Microsoft", - "name": "Alonso Garza", - "email": "alonsogarza6@gmail.com", - "linkedIn": "https://www.linkedin.com/in/e-alonso-garza/", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Software Engineer II", - "industry": "Software", - "cities": ["Milwaukee", "Plano", "Toledo"], - "_id": { - "$oid": "6674c30595590f9fd9459409" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Microsoft", - "name": "Bernie Green", - "email": "bgreen280@gmail.com", - "linkedIn": "https://www.linkedin.com/in/berniegreen/", - "campus": "NYC", - "cohort": "28", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Riverside", "Chula Vista", "Gilbert"], - "_id": { - "$oid": "6674c30595590f9fd945940a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Microsoft", - "name": "Brad Morgan", - "email": "bkmorgan3@gmail.com", - "linkedIn": "https://www.linkedin.com/in/bkmorgan3/", - "campus": "LA", - "cohort": "31", - "jobTitle": "UI Engineer", - "industry": "Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945940b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Microsoft", - "name": "Brandi Richardson", - "email": "brandi.jrichardson@gmail.com", - "linkedIn": "https://www.linkedin.com/in/brandi-richardson-28295158/", - "campus": "LA", - "cohort": "40", - "jobTitle": "Software Engineer ll", - "industry": "Computer Software", - "cities": ["Mumbai", "North Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd945940c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Microsoft", - "name": "Brian Hong", - "email": "brianhhong96@gmail.com", - "linkedIn": "https://www.linkedin.com/in/brianhhong", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Software Engineer", - "industry": "Cloud", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945940d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Microsoft", - "name": "Georgina Carr", - "email": "carre.georgina@gmail.com", - "linkedIn": "https://www.linkedin.com/in/georginacarr/", - "campus": "NYC", - "cohort": "15", - "jobTitle": "Software Engineer, Contract", - "industry": "tech", - "cities": ["Raleigh", "Los Angeles", "Atlanta"], - "_id": { - "$oid": "6674c30595590f9fd945940e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Microsoft", - "name": "Andrew Dunne", - "email": "Drewdunne88@gmail.com", - "linkedIn": "https://www.linkedin.com/in/andrew-dunne-7620bb84", - "campus": "LA / WCRI", - "cohort": "53", - "jobTitle": "Senior Automation Engineer", - "industry": "Gaming", - "cities": ["Berlin", "Memphis"], - "_id": { - "$oid": "6674c30595590f9fd945940f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Microsoft", - "name": "Griffin Roger Mccartney Silver", - "email": "griffinrogersilver@gmail.com", - "linkedIn": "https://www.linkedin.com/in/griffin-silver/", - "campus": "LA / WCRI", - "cohort": "43", - "jobTitle": "Cloud Support Engineer", - "industry": "IT Services", - "cities": ["Irving"], - "_id": { - "$oid": "6674c30595590f9fd9459410" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Microsoft", - "name": "Rella Cruz", - "email": "rellas.email@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rella/", - "campus": "NYC", - "cohort": "15", - "jobTitle": "Software Engineer Apprentice (LEAP Program)", - "industry": "Computer Technology", - "cities": ["Norfolk"], - "_id": { - "$oid": "6674c30595590f9fd9459411" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Microsoft", - "name": "Silvia Kemp Miranda", - "email": "silvia.kemp@gmail.com", - "linkedIn": "https://www.linkedin.com/in/silviakmiranda/", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Technical Program Manager", - "industry": "Technology", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459412" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Microsoft", - "name": "Timothy Jung", - "email": "timjj92@gmail.com", - "linkedIn": "www.linkedin.com/in/timjj92", - "campus": "LA", - "cohort": "32", - "jobTitle": "Software Development Engineer", - "industry": "Cloud computing", - "cities": ["Fort Worth", "Fresno"], - "_id": { - "$oid": "6674c30595590f9fd9459413" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Microsoft", - "name": "Tjolanda \"Sully\" Sullivan", - "email": "tjolanda.sullivan@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tjolanda-sullivan/", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Software Engineer", - "industry": "Cloud Storage", - "cities": ["Tucson", "Long Beach"], - "_id": { - "$oid": "6674c30595590f9fd9459414" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Microsoft", - "name": "William kencel", - "email": "Wkencel1@gmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "40", - "jobTitle": "React/react native/full stack engineer", - "industry": "Device payment system", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459415" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Microsoft Leap Apprenticeship Program (via Aerotek)", - "name": "Roseanne Damasco", - "email": "rosedamasco@gmail.com", - "linkedIn": "https://www.linkedin.com/in/roseannedamasco/", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Software Engineer", - "industry": "Computer Software", - "cities": ["Garland", "Arlington"], - "_id": { - "$oid": "6674c30595590f9fd9459416" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Mighty", - "name": "Jakob Kousholt", - "email": "jakobjk@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jakobjk/", - "campus": "NYC", - "cohort": "12", - "jobTitle": "Software Engineer", - "industry": "Consumer Services", - "cities": ["Fort Worth", "Chesapeake"], - "_id": { - "$oid": "6674c30595590f9fd9459417" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "MightyHive", - "name": "Alyso Swerdloff", - "email": "alysonswerdloff@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alyson-swerdloff/", - "campus": "NYC", - "cohort": "8", - "jobTitle": "Technical Solutions Engineer", - "industry": "Insurance/ cybersecurity", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459418" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Mimecast", - "name": "Tim Ruszala", - "email": "truszala@gmail.com", - "linkedIn": "https://www.linkedin.com/in/timruszala/", - "campus": "NYC", - "cohort": "32", - "jobTitle": "Senior Software Engineer", - "industry": "Security", - "cities": ["Los Angeles", "New York", "Columbus"], - "_id": { - "$oid": "6674c30595590f9fd9459419" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "MindBody", - "name": "Charlie Malave", - "email": "malavecharles@gmail.com", - "linkedIn": "https://www.linkedin.com/in/charlesmalave/", - "campus": "PTRI", - "cohort": "3", - "jobTitle": "Software Engineer", - "industry": "Fitness Tech", - "cities": ["Austin", "Anaheim", "Jacksonville"], - "_id": { - "$oid": "6674c30595590f9fd945941a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Mindbody ClassPass", - "name": "Christina Son", - "email": "christinason17@gmail.com", - "linkedIn": "https://www.linkedin.com/in/christinason17/", - "campus": "FTRI / CTRI", - "cohort": "7", - "jobTitle": "Software Engineer I", - "industry": "Fitness/Wellness", - "cities": ["Orlando"], - "_id": { - "$oid": "6674c30595590f9fd945941b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "MindCloud", - "name": "Emily Chu", - "email": "lin.emily.chu@gmail.com", - "linkedIn": "https://www.linkedin.com/in/lin-chu/", - "campus": "NYC / ECRI", - "cohort": "36", - "jobTitle": "Junior Software Engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945941c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Mindstrong", - "name": "Chon Hou Ho", - "email": "chonhouh@gmail.com", - "linkedIn": "https://www.linkedin.com/mwlite/in/chon-hou-ho", - "campus": "FTRI", - "cohort": "6", - "jobTitle": "Software Engineer I, Full Stack", - "industry": "Healthcare", - "cities": ["Long Beach", "Durham", "Nashville"], - "_id": { - "$oid": "6674c30595590f9fd945941d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Mirror.xyz", - "name": "Nathaniel Grossman", - "email": "nathanielbensongrossman@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nathanielgrossman/", - "campus": "LA", - "cohort": "22", - "jobTitle": "Software Engineer", - "industry": "Education", - "cities": ["Madison"], - "_id": { - "$oid": "6674c30595590f9fd945941e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Mission Lane", - "name": "Ali Elhawary", - "email": "Alielhawary123@gmail.com", - "linkedIn": "", - "campus": "FTRI", - "cohort": "4", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945941f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Mission Lane", - "name": "Esther Cho", - "email": "xesthercho@gmail.com", - "linkedIn": "https://www.linkedin.com/in/esther-cho/", - "campus": "LA", - "cohort": "49", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Orlando", "Fort Worth"], - "_id": { - "$oid": "6674c30595590f9fd9459420" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Mitchell Martin", - "name": "Jonathan Barenboim", - "email": "Jonathan.Barenboim@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jonathan-barenboim/", - "campus": "NYC", - "cohort": "21", - "jobTitle": "Software Engineer", - "industry": "Real Estate", - "cities": ["Raleigh"], - "_id": { - "$oid": "6674c30595590f9fd9459421" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "MJH Life Sciences", - "name": "Arthur Sato", - "email": "swatto12@gmail.com", - "linkedIn": "https://www.linkedin.com/in/arthursato", - "campus": "NYC", - "cohort": "25", - "jobTitle": "React Developer", - "industry": "Health Care Media", - "cities": ["Orlando", "Kansas City", "Tokyo"], - "_id": { - "$oid": "6674c30595590f9fd9459422" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "MKTG", - "name": "Garrett Lee", - "email": "geewai.lee@gmail.com", - "linkedIn": "https://www.linkedin.com/in/geewailee/", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Senior Software Developer", - "industry": "Marketing", - "cities": ["Cincinnati", "Chicago"], - "_id": { - "$oid": "6674c30595590f9fd9459423" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "MNTN", - "name": "Chris Franz", - "email": "chrisfranz@mac.com", - "linkedIn": "https://www.linkedin.com/in/chris--franz/", - "campus": "LA", - "cohort": "25", - "jobTitle": "Software Engineer", - "industry": "Advertising", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459424" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "MNTN", - "name": "Timothy Kachler", - "email": "kachler@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tkachler", - "campus": "LA", - "cohort": "25", - "jobTitle": "Software Engineer", - "industry": "Advertising", - "cities": ["Chicago", "Anaheim", "Lubbock"], - "_id": { - "$oid": "6674c30595590f9fd9459425" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "MNTN", - "name": "Bryan Trang", - "email": "bryanltrang@gmail.com", - "linkedIn": "https://www.linkedin.com/in/bryanltrang/", - "campus": "LA / WCRI", - "cohort": "58", - "jobTitle": "Fullstack Software Engineer", - "industry": "Other", - "cities": ["Irvine", "Nashville", "Charlotte"], - "_id": { - "$oid": "6674c30595590f9fd9459426" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Moment House", - "name": "Hoon Choi", - "email": "vhchoi@gmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "10", - "jobTitle": "Sr. Software eng", - "industry": "Entertainment", - "cities": ["Mesa"], - "_id": { - "$oid": "6674c30595590f9fd9459427" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "MongoDB", - "name": "Cris Newsome", - "email": "crisnewsome@outlook.com", - "linkedIn": "https://linkedin.com/in/crisnewsome", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Software Engineer II", - "industry": "Tech?", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459428" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Monument", - "name": "Midori Yang", - "email": "midoki.yang@gmail.com", - "linkedIn": "https://www.linkedin.com/in/midori-yang/", - "campus": "NYC", - "cohort": "19", - "jobTitle": "", - "industry": "Healthcare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459429" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Moody's Analytics", - "name": "Alan Ye", - "email": "alye13@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alan-ye-008/", - "campus": "PTRI", - "cohort": "4", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945942a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Moody's Analytics", - "name": "Cara Dibdin", - "email": "cdibdin@gmail.com", - "linkedIn": "https://www.linkedin.com/in/cara-dibdin/", - "campus": "PTRI", - "cohort": "1", - "jobTitle": "Senior Software Engineer", - "industry": "Finance", - "cities": ["Oakland"], - "_id": { - "$oid": "6674c30595590f9fd945942b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Morgan Stanley", - "name": "Jackie Lin", - "email": "jackie.lin128@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jackielin12/", - "campus": "NYC", - "cohort": "13", - "jobTitle": "Software Developer", - "industry": "Finance", - "cities": ["Tucson"], - "_id": { - "$oid": "6674c30595590f9fd945942c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Morning Consult", - "name": "Lucas Lima Taffo", - "email": "lucas.taffo@gmail.com", - "linkedIn": "https://www.linkedin.com/in/lucastaffo/", - "campus": "NYC", - "cohort": "27", - "jobTitle": "Software Engineer II", - "industry": "Decision Intelligence", - "cities": ["Toledo", "Raleigh", "Indianapolis"], - "_id": { - "$oid": "6674c30595590f9fd945942d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Mothership", - "name": "Carlos Perez", - "email": "crperez@gmail.com", - "linkedIn": "https://www.linkedin.com/in/cpereztoro/", - "campus": "LA", - "cohort": "36", - "jobTitle": "Software Engineer", - "industry": "Freight", - "cities": ["Corpus Christi", "Los Angeles", "Riverside"], - "_id": { - "$oid": "6674c30595590f9fd945942e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Motion Intelligence", - "name": "Russell F Hayward", - "email": "russdawg44@gmail.com", - "linkedIn": "https://www.linkedin.com/in/russell-hayward/", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Cloud Developer", - "industry": "Automotive", - "cities": ["Glendale", "Garland"], - "_id": { - "$oid": "6674c30595590f9fd945942f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "mPulse Mobile", - "name": "Devon Vaccarino", - "email": "devonev92@gmail.com", - "linkedIn": "https://www.linkedin.com/in/devon-vaccarino/", - "campus": "LA", - "cohort": "30", - "jobTitle": "Mid Software Engineer", - "industry": "Health Communications", - "cities": ["Plano"], - "_id": { - "$oid": "6674c30595590f9fd9459430" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "MRI-Simmons", - "name": "Dan Lin", - "email": "dannlin91@gmail.com", - "linkedIn": "https://www.linkedin.com/in/danlin91/", - "campus": "NYC", - "cohort": "20", - "jobTitle": "UI Developer", - "industry": "Data Consumer", - "cities": ["Bakersfield", "Buffalo", "Paris"], - "_id": { - "$oid": "6674c30595590f9fd9459431" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "MUFG", - "name": "Parker Hutcheson", - "email": "pdhutcheson@gmail.com", - "linkedIn": "https://www.linkedin.com/in/parkerhutcheson/", - "campus": "FTRI / CTRI", - "cohort": "4", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Paris", "Detroit", "Plano"], - "_id": { - "$oid": "6674c30595590f9fd9459432" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Mulberry Technology", - "name": "Mia Kang", - "email": "fakeEmail3@fakeEmail.com", - "linkedIn": "https://www.linkedin.com/in/mia-kang/", - "campus": "PTRI", - "cohort": "5", - "jobTitle": "Associate Engineer", - "industry": "Fintech", - "cities": ["Houston", "Chicago"], - "_id": { - "$oid": "6674c30595590f9fd9459433" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Multi Media, LLC", - "name": "Cameron Fitz", - "email": "hellocameronfitz@gmail.com", - "linkedIn": "https://www.linkedin.com/in/cameron-lee-fitz/", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Product Manager, Growth", - "industry": "Entertainment", - "cities": ["Corpus Christi", "Scottsdale", "Albuquerque"], - "_id": { - "$oid": "6674c30595590f9fd9459434" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Munera", - "name": "Yuehao Wong", - "email": "yuehaowong@gmail.com", - "linkedIn": "https://www.linkedin.com/in/yuehaowong/", - "campus": "NYC / ECRI", - "cohort": "35", - "jobTitle": "Full Stack Developer", - "industry": "Other", - "cities": ["Irvine", "Beijing"], - "_id": { - "$oid": "6674c30595590f9fd9459435" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Musee Archives", - "name": "Walter David DeVault", - "email": "wdd4services@outlook.com", - "linkedIn": "https://www.linkedin.com/in/walter-devault", - "campus": "FTRI / CTRI", - "cohort": "9", - "jobTitle": "Full-Stack Software Engineer", - "industry": "Media", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459436" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "MX", - "name": "Harlan Evans", - "email": "harlanevans5@gmail.com", - "linkedIn": "https://www.linkedin.com/mwlite/in/harlan-evans", - "campus": "LA", - "cohort": "40", - "jobTitle": "Front end Software engineer (mid-sr)", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459437" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "MX", - "name": "Mike Coker", - "email": "mbcoker100@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mike-coker/", - "campus": "LA", - "cohort": "35", - "jobTitle": "Backend JavaScript Engineer", - "industry": "Fintech", - "cities": ["Winston-Salem", "Oklahoma City", "St. Petersburg"], - "_id": { - "$oid": "6674c30595590f9fd9459438" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Naked Development", - "name": "Cayla Co", - "email": "caylasco@gmail.com", - "linkedIn": "https://www.linkedin.com/in/cayla-co/", - "campus": "FTRI", - "cohort": "6", - "jobTitle": "Senior Full Stack Developer", - "industry": "Digital Advertising", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459439" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Namely", - "name": "Yujin kang", - "email": "ykang7858@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "13", - "jobTitle": "Software Engineer", - "industry": "SaaS / HR startup", - "cities": ["Long Beach"], - "_id": { - "$oid": "6674c30595590f9fd945943a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Narmi", - "name": "Derek Lam", - "email": "derekquoc@gmail.com", - "linkedIn": "https://www.linkedin.com/in/derekqlam/", - "campus": "LA", - "cohort": "40", - "jobTitle": "Solutions Engineer", - "industry": "Fintech", - "cities": ["Nashville", "Chandler", "Mumbai"], - "_id": { - "$oid": "6674c30595590f9fd945943b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Narrativ", - "name": "Lisa Han", - "email": "jjlisahan@gmail.com", - "linkedIn": "https://www.linkedin.com/in/lisajjhan/", - "campus": "NYC", - "cohort": "17", - "jobTitle": "Software Engineer", - "industry": "E-commerce", - "cities": ["Indianapolis"], - "_id": { - "$oid": "6674c30595590f9fd945943c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "National Grid", - "name": "Edward Deng", - "email": "edeng4237@gmail.com", - "linkedIn": "https://www.linkedin.com/in/edwarddeng-/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Software Engineer", - "industry": "Utilities", - "cities": ["Norfolk", "Orlando", "Corpus Christi"], - "_id": { - "$oid": "6674c30595590f9fd945943d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Navitus", - "name": "Young Kim", - "email": "young.kim770@gmail.com", - "linkedIn": "https://www.linkedin.com/in/young-j-kim", - "campus": "FTRI / CTRI", - "cohort": "12", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": ["Glendale", "Washington"], - "_id": { - "$oid": "6674c30595590f9fd945943e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "NBA", - "name": "Cecily Jansen", - "email": "cecilyjansen@gmail.com", - "linkedIn": "https://www.linkedin.com/in/cecily-j/", - "campus": "NYC", - "cohort": "29", - "jobTitle": "Associate Front-End Engineer", - "industry": "Sports & Entertainment Media", - "cities": ["Beijing"], - "_id": { - "$oid": "6674c30595590f9fd945943f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "NBCUniversal", - "name": "Sam Arnold", - "email": "sam.arnold72@gmail.com", - "linkedIn": "https://www.linkedin.com/in/samarnold723/", - "campus": "PTRI", - "cohort": "3", - "jobTitle": "Software Engineer II", - "industry": "Entertainment", - "cities": ["Detroit", "Irvine", "Sacramento"], - "_id": { - "$oid": "6674c30595590f9fd9459440" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "NBCUniversal Media", - "name": "Jimmy Phong", - "email": "jayacados@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jphongmph/", - "campus": "LA", - "cohort": "35", - "jobTitle": "Senior Software Engineer", - "industry": "Media and Entertainment", - "cities": ["Lexington"], - "_id": { - "$oid": "6674c30595590f9fd9459441" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "NCR", - "name": "Bryan Chau", - "email": "chaubryan@hotmail.com", - "linkedIn": "https://www.linkedin.com/in/chaubryan1", - "campus": "LA / WCRI", - "cohort": "47", - "jobTitle": "SW Engineer III", - "industry": "IT Services", - "cities": ["Beijing", "Corpus Christi", "Aurora"], - "_id": { - "$oid": "6674c30595590f9fd9459442" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "NEC", - "name": "Stacey Lee", - "email": "staceyjlee18@gmail.com", - "linkedIn": "https://www.linkedin.com/in/staceyjhlee/", - "campus": "FTRI / CTRI", - "cohort": "16", - "jobTitle": "Full Stack Engineer", - "industry": "Business Tech/Enterprise Tech", - "cities": ["Long Beach", "Cleveland", "Aurora"], - "_id": { - "$oid": "6674c30595590f9fd9459443" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Neiro AI", - "name": "Daria Mordvinov", - "email": "daria.mordvinov@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dariamordvinov/", - "campus": "NYOI", - "cohort": "1", - "jobTitle": "Frontend Engineer", - "industry": "Artificial Intelligence", - "cities": ["North Las Vegas", "Berlin", "Winston-Salem"], - "_id": { - "$oid": "6674c30595590f9fd9459444" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Nelnet", - "name": "Zach Brucker", - "email": "zach.brucker@gmail.com", - "linkedIn": "https://www.linkedin.com/in/zachbrucker/", - "campus": "LA", - "cohort": "41", - "jobTitle": "Full-Stack Developer", - "industry": "Fintech", - "cities": ["Memphis", "Gilbert"], - "_id": { - "$oid": "6674c30595590f9fd9459445" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Neo.Tax", - "name": "Lindsay Baird", - "email": "lindsay.a.baird@gmail.com", - "linkedIn": "https://www.linkedin.com/in/lindsaybaird/", - "campus": "LA", - "cohort": "45", - "jobTitle": "Full-Stack Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459446" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Neo.tax", - "name": "Miguel Hernandez", - "email": "miguelh72@outlook.com", - "linkedIn": "https://www.linkedin.com/in/miguelh72/", - "campus": "FTRI", - "cohort": "4", - "jobTitle": "Senior Full-Stack Software Engineer", - "industry": "Fintech", - "cities": ["Boston", "San Francisco", "San Antonio"], - "_id": { - "$oid": "6674c30595590f9fd9459447" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Nespresso", - "name": "Raymond Huang", - "email": "raymond.huang1011@gmail.com", - "linkedIn": "https://www.linkedin.com/in/raymondhuang95/", - "campus": "NYC / ECRI", - "cohort": "31", - "jobTitle": "Associate Front-End Developer", - "industry": "Other", - "cities": ["Winston-Salem", "Irvine", "Los Angeles"], - "_id": { - "$oid": "6674c30595590f9fd9459448" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Netflix", - "name": "Josie Glore", - "email": "Josieglore@gmail.com", - "linkedIn": "https://www.linkedin.com/in/josie-glore/", - "campus": "LA", - "cohort": "25", - "jobTitle": "Technologist", - "industry": "Fashion", - "cities": ["Sydney", "Pittsburgh", "Raleigh"], - "_id": { - "$oid": "6674c30595590f9fd9459449" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Netflix", - "name": "Sagar Velagala", - "email": "sagar.velagala@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sagarvelagala/", - "campus": "NYC / ECRI", - "cohort": "35", - "jobTitle": "Sr. Analytics Engineer", - "industry": "Software / Tech", - "cities": ["Oakland"], - "_id": { - "$oid": "6674c30595590f9fd945944a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Netflix", - "name": "Victoria Adnet", - "email": "victoria.adnet@gmail.com", - "linkedIn": "https://www.linkedin.com/in/victoria-lellis/", - "campus": "LA", - "cohort": "29", - "jobTitle": "Technologist", - "industry": "Entertainment", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945944b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Netskope", - "name": "Mariya Eyges", - "email": "mariya.sf@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mariya-eyges-8511131/", - "campus": "PTRI", - "cohort": "Beta", - "jobTitle": "Software Engineer", - "industry": "Security Cloud", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945944c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Neulion", - "name": "Myles Green", - "email": "mylescorygreen@gmail.com", - "linkedIn": "https://www.linkedin.com/in/myles-c-green/", - "campus": "NYC", - "cohort": "4", - "jobTitle": "Software Engineer", - "industry": "", - "cities": ["Kansas City", "Madison", "Cleveland"], - "_id": { - "$oid": "6674c30595590f9fd945944d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "New York Institute of Technology College of Osteopathic Medicine", - "name": "Justin Ribarich", - "email": "jribarich98@gmail.com", - "linkedIn": "https://www.linkedin.com/in/justin-ribarich", - "campus": "NYOI", - "cohort": "2", - "jobTitle": "Full Stack Developer", - "industry": "Education/Edtech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945944e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Newsela", - "name": "Anthony Terruso", - "email": "aterruso@gmail.com", - "linkedIn": "https://www.linkedin.com/in/anthony-w-terruso/", - "campus": "NYC", - "cohort": "7", - "jobTitle": "Senior Web Application Developer", - "industry": "", - "cities": ["Sรฃo Paulo", "Omaha", "San Diego"], - "_id": { - "$oid": "6674c30595590f9fd945944f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Nexient", - "name": "James Kolotouros", - "email": "dkolotouros1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jameskolotouros", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Software Developer II", - "industry": "Tech", - "cities": ["Sacramento", "Sydney"], - "_id": { - "$oid": "6674c30595590f9fd9459450" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Nexient", - "name": "Gaber Mowiena", - "email": "gaber.abouelsoud@gmail.com", - "linkedIn": "https://www.linkedin.com/in/gabermowiena/", - "campus": "NYC", - "cohort": "9", - "jobTitle": "Frontend Developer", - "industry": "Tech products", - "cities": ["Chula Vista", "Riverside", "Oklahoma City"], - "_id": { - "$oid": "6674c30595590f9fd9459451" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Nexstar Media Group", - "name": "Beckett Hanan", - "email": "beckett.hanan@gmail.com", - "linkedIn": "https://www.linkedin.com/in/becketthanan/", - "campus": "PTRI", - "cohort": "Beta", - "jobTitle": "Front End Software Engineer", - "industry": "Media", - "cities": ["Detroit"], - "_id": { - "$oid": "6674c30595590f9fd9459452" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "NextGen Healthcare", - "name": "Samuel Tran", - "email": "samwell.tran@gmail.com", - "linkedIn": "https://www.linkedin.com/in/samuel-tran-836448231/", - "campus": "FTRI / CTRI", - "cohort": "11", - "jobTitle": "Software Engineer II", - "industry": "Healthcare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459453" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "NextME", - "name": "Linh Tran", - "email": "linhtanl51@gmail.com", - "linkedIn": "https://www.linkedin.com/in/linhatran", - "campus": "LA", - "cohort": "40", - "jobTitle": "Senior Software Engineer", - "industry": "Management", - "cities": ["San Diego", "North Las Vegas", "Scottsdale"], - "_id": { - "$oid": "6674c30595590f9fd9459454" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "NFL", - "name": "Michael Blanchard", - "email": "michael.james.blanchard@gmail.com", - "linkedIn": "https://www.linkedin.com/in/miblanchard12/", - "campus": "LA", - "cohort": "7", - "jobTitle": "Director of Engineering - Platform", - "industry": "Media / Sports", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459455" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Niantic", - "name": "Oliver Zhang", - "email": "zezang@gmail.com", - "linkedIn": "https://www.linkedin.com/in/oliver-zhang91", - "campus": "PTRI", - "cohort": "8", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Greensboro"], - "_id": { - "$oid": "6674c30595590f9fd9459456" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Nielsen", - "name": "Alexander Tu", - "email": "alexandertu95@gmail.com", - "linkedIn": "https://www.linkedin.com/in/atu816", - "campus": "FTRI / CTRI", - "cohort": "12", - "jobTitle": "Senior Software Engineer", - "industry": "Business Analytics", - "cities": ["Atlanta", "Milwaukee"], - "_id": { - "$oid": "6674c30595590f9fd9459457" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Nielsen", - "name": "Diana Kim", - "email": "ruslanovna.kim@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ruslanovna/", - "campus": "NYC / ECRI", - "cohort": "31", - "jobTitle": "Software Engineer II", - "industry": "Business Analytics", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459458" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Nielsen Sports", - "name": "Karina Illesova", - "email": "karin.illesova@gmail.com", - "linkedIn": "https://www.linkedin.com/in/karin-illesova/", - "campus": "LA", - "cohort": "41", - "jobTitle": "Sr Software Engineer", - "industry": "Information Technology & Services", - "cities": ["Houston", "Fort Wayne"], - "_id": { - "$oid": "6674c30595590f9fd9459459" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Nike", - "name": "adrian Sun", - "email": "Adriansun2@gmail.com", - "linkedIn": "https://www.linkedin.com/in/adrian-sun", - "campus": "LA", - "cohort": "25", - "jobTitle": "Software Engineer", - "industry": "Travel", - "cities": ["Cincinnati", "Gilbert"], - "_id": { - "$oid": "6674c30595590f9fd945945a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Nimble", - "name": "Zachary Daniels", - "email": "Zackdanielsnyc@gmail.com", - "linkedIn": "LinkedIn.com/in/zackdanielsnyc", - "campus": "LA / WCRI", - "cohort": "49", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": ["Beijing", "Austin"], - "_id": { - "$oid": "6674c30595590f9fd945945b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Nobel.AI", - "name": "Kate Chanthakaew", - "email": "kubkate@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kate-chanthakaew/", - "campus": "LA", - "cohort": "36", - "jobTitle": "Full Stack Engineer", - "industry": "Scientist R&D", - "cities": ["Mexico City"], - "_id": { - "$oid": "6674c30595590f9fd945945c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Noblr Insurance", - "name": "Brian Taylor", - "email": "brian.taylor818@gmail.com", - "linkedIn": "https://www.linkedin.com/in/brianwtaylor/", - "campus": "LA", - "cohort": "22", - "jobTitle": "Software Engineer", - "industry": "Health", - "cities": ["Chesapeake", "Phoenix", "Irvine"], - "_id": { - "$oid": "6674c30595590f9fd945945d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.067Z" - }, - "__v": 0 - }, - { - "company": "Nomad Health", - "name": "Julia Bakerink", - "email": "juliabakerink@gmail.com", - "linkedIn": "https://www.linkedin.com/in/juliabakerink/", - "campus": "LA", - "cohort": "48", - "jobTitle": "Fullstack Software Engineer", - "industry": "Healthcare", - "cities": ["Mesa", "New York"], - "_id": { - "$oid": "6674c30595590f9fd945945e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Nomad Health", - "name": "Neftali Dominguez", - "email": "n.l.dominguez23@gmail.com", - "linkedIn": "https://www.linkedin.com/in/neftalildominguez/", - "campus": "LA", - "cohort": "30", - "jobTitle": "Senior Software Engineer", - "industry": "Health", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945945f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Nordstrom", - "name": "Vicki Lee", - "email": "leevicki01@gmail.com", - "linkedIn": "https://www.linkedin.com/in/vlee022/", - "campus": "LA", - "cohort": "41", - "jobTitle": "Software Engineer", - "industry": "E-Commerce / Fashion", - "cities": ["Reno", "Mumbai", "Norfolk"], - "_id": { - "$oid": "6674c30595590f9fd9459460" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Nordstrom", - "name": "Sohee Lee", - "email": "soheelee1985@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sohee419/", - "campus": "LA", - "cohort": "46", - "jobTitle": "Engineer 2", - "industry": "Fintech", - "cities": ["Stockton"], - "_id": { - "$oid": "6674c30595590f9fd9459461" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Nordstrom Rack | HauteLook", - "name": "Robb Eastman", - "email": "ereastman@gmail.com", - "linkedIn": "https://www.linkedin.com/in/robbeastman/", - "campus": "LA", - "cohort": "31", - "jobTitle": "Software Engineer I, Web", - "industry": "Fashion", - "cities": ["Laredo"], - "_id": { - "$oid": "6674c30595590f9fd9459462" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Noria Water Technologies", - "name": "Umair Shafiq", - "email": "umairshafiqprof@gmail.com", - "linkedIn": "https://www.linkedin.com/in/umair-w-shafiq/", - "campus": "FTRI / CTRI", - "cohort": "13", - "jobTitle": "Associate Developer", - "industry": "Other", - "cities": ["Mumbai"], - "_id": { - "$oid": "6674c30595590f9fd9459463" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "North American Bancard", - "name": "Edward Chow", - "email": "Pdphybrid@gmail.com", - "linkedIn": "https://www.linkedin.com/in/edkchow/", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Full Stack Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459464" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Northflank", - "name": "Emma Genesen", - "email": "genesen.emma@gmail.com", - "linkedIn": "https://www.linkedin.com/in/emma-genesen/", - "campus": "LA / WCRI", - "cohort": "52", - "jobTitle": "Head of Developer Marketing", - "industry": "Cloud Services", - "cities": ["Chandler", "San Antonio"], - "_id": { - "$oid": "6674c30595590f9fd9459465" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Northrop Grumman", - "name": "David Lopez", - "email": "d7lopez@gmail.com", - "linkedIn": "https://www.linkedin.com/in/david-michael-lopez/", - "campus": "NYC / ECRI", - "cohort": "30", - "jobTitle": "Software Engineer", - "industry": "Aerospace", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459466" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Northrop Grumman", - "name": "Michael Way", - "email": "mjway01@gmail.com", - "linkedIn": "https://www.linkedin.com/in/michaeljway/", - "campus": "PTRI", - "cohort": "10", - "jobTitle": "Cognitive Software Engineer", - "industry": "Aerospace", - "cities": ["Glendale", "Riverside", "Madison"], - "_id": { - "$oid": "6674c30595590f9fd9459467" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Northspyre", - "name": "Vaughn Sulit", - "email": "bvaughnsulit@gmail.com", - "linkedIn": "https://www.linkedin.com/in/bvaughnsulit/", - "campus": "LA / WCRI", - "cohort": "52", - "jobTitle": "Full Stack Engineer", - "industry": "Real Estate", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459468" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Northwestern Mutual", - "name": "Hussein Hamade", - "email": "hamade.hussein00@gmail.com", - "linkedIn": "https://www.linkedin.com/in/husseinhamade1/", - "campus": "NYC", - "cohort": "30", - "jobTitle": "Software Engineer (P2 - Midlevel)", - "industry": "Fintech", - "cities": ["Scottsdale", "Jersey City"], - "_id": { - "$oid": "6674c30595590f9fd9459469" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Northwestern Mutual", - "name": "Jake Policano", - "email": "jdpolicano@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jacob-policano/", - "campus": "NYC / ECRI", - "cohort": "33", - "jobTitle": "Software Engineer", - "industry": "Insurance", - "cities": ["Houston", "Fort Wayne", "London"], - "_id": { - "$oid": "6674c30595590f9fd945946a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Northwestern Mutual", - "name": "Max Lee", - "email": "maxolee23@gmail.com", - "linkedIn": "https://www.linkedin.com/in/max-lee1", - "campus": "FTRI", - "cohort": "5", - "jobTitle": "Full Stack Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945946b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Northwestern Mutual", - "name": "Vince Nguyen", - "email": "vince.g.nguyen@gmail.com", - "linkedIn": "https://www.linkedin.com/in/vince-nguyen/", - "campus": "FTRI", - "cohort": "4", - "jobTitle": "Full Stack Software Engineer", - "industry": "Fintech/Insurance", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945946c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Northwestern Mutual", - "name": "Warren Harrison Tait", - "email": "warrenhtait@gmail.com", - "linkedIn": "https://www.linkedin.com/in/warrenhtait/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Full Stack Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945946d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Not currently employed in tech/as a dev", - "name": "Evan Deam", - "email": "ebdeam@gmail.com", - "linkedIn": "https://www.linkedin.com/in/evandeam/", - "campus": "FTRI / CTRI", - "cohort": "11", - "jobTitle": "Registered Nurse", - "industry": "Healthtech/Healthcare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945946e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Notion", - "name": "Marissa Lafontant", - "email": "marissa.lafontant@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mlafontant/", - "campus": "NYC", - "cohort": "2", - "jobTitle": "Software Engineer", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945946f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Nousot", - "name": "Winslow Taylor", - "email": "winslow.benjamin.taylor@gmail.com", - "linkedIn": "https://www.linkedin.com/in/winslow-taylor/", - "campus": "FTRI", - "cohort": "6", - "jobTitle": "Advance Associate", - "industry": "IT, SaaS", - "cities": ["Jacksonville", "Anaheim", "Gilbert"], - "_id": { - "$oid": "6674c30595590f9fd9459470" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Noyo", - "name": "Jonathan Mendoza", - "email": "j.d.mendoza415@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jonathan-mendoza1", - "campus": "LA", - "cohort": "41", - "jobTitle": "L1 Engineer", - "industry": "Heath care", - "cities": ["Fresno"], - "_id": { - "$oid": "6674c30595590f9fd9459471" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "NPR", - "name": "Alex Mannix", - "email": "alexleemannix@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alex-mannix-53015668/", - "campus": "NYC", - "cohort": "5", - "jobTitle": "Junior Software Engineer", - "industry": "", - "cities": ["Irving", "Oklahoma City"], - "_id": { - "$oid": "6674c30595590f9fd9459472" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "NPR", - "name": "Jordan Grubb", - "email": "imjordangrubb@gmail.com", - "linkedIn": "https://www.linkedin.com/in/j-grubb/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Software Engineer", - "industry": "Subscriptions", - "cities": ["Newark", "Sรฃo Paulo", "Fresno"], - "_id": { - "$oid": "6674c30595590f9fd9459473" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "NPR", - "name": "Samantha Wessel", - "email": "samantha.n.wessel@gmail.com", - "linkedIn": "https://www.linkedin.com/in/samantha-wessel/", - "campus": "LA", - "cohort": "30", - "jobTitle": "Software Engineer", - "industry": "News Media", - "cities": ["Chandler", "Sydney", "Stockton"], - "_id": { - "$oid": "6674c30595590f9fd9459474" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "NU Borders", - "name": "Ryan Tumel", - "email": "rtumel123@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ryan-tumel/", - "campus": "LA", - "cohort": "38", - "jobTitle": "Software Engineer", - "industry": "Information Technology & Services", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459475" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "NWEA", - "name": "Celene Chang", - "email": "Celene Chang", - "linkedIn": "https://www.linkedin.com/in/celenecchang/", - "campus": "LA", - "cohort": "48", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Boston", "Chula Vista", "Cincinnati"], - "_id": { - "$oid": "6674c30595590f9fd9459476" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "NYU Langone Health", - "name": "Alexander Lin", - "email": "alexanderlin164@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alexander-lin-8aab79167/", - "campus": "NYC / ECRI", - "cohort": "37", - "jobTitle": "Developer 1", - "industry": "Healthtech/Healthcare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459477" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "O POSITIV", - "name": "Jonah Lin", - "email": "jjonah.lin@gmail.com", - "linkedIn": "https://www.linkedin.com/in/linjonah/", - "campus": "LA", - "cohort": "33", - "jobTitle": "Software Engineer (eCommerce)", - "industry": "E-commerce", - "cities": ["Cleveland", "Stockton", "Long Beach"], - "_id": { - "$oid": "6674c30595590f9fd9459478" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "ObvioHealth", - "name": "Joshua Jordan", - "email": "josh.r.jordan@gmail.com", - "linkedIn": "https://www.linkedin.com/in/josh-r-jordan/", - "campus": "NYC / ECRI", - "cohort": "29", - "jobTitle": "Software Engineer", - "industry": "Biotech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459479" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "OceanX", - "name": "Jun Lee", - "email": "jushuworld@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jushuworld/", - "campus": "LA", - "cohort": "29", - "jobTitle": "Full Stack Developer", - "industry": "E-commerce", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945947a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Ocrolus", - "name": "Daniel Shu", - "email": "shudaniel95@gmail.com", - "linkedIn": "https://www.linkedin.com/in/danielshu/", - "campus": "NYC", - "cohort": "9", - "jobTitle": "Software Engineer", - "industry": "Blockchain", - "cities": ["Tokyo"], - "_id": { - "$oid": "6674c30595590f9fd945947b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Octane Lending", - "name": "Christian Paul Ejercito", - "email": "chris.paul.ejercito@gmail.com", - "linkedIn": "https://www.linkedin.com/in/christian-paul-ejercito/", - "campus": "LA", - "cohort": "42", - "jobTitle": "Software Engineer II", - "industry": "Fintech", - "cities": ["Henderson", "Reno"], - "_id": { - "$oid": "6674c30595590f9fd945947c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Odie Pet Insurance", - "name": "Nicholas Echols", - "email": "nechols87@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nickechols87/", - "campus": "FTRI", - "cohort": "5", - "jobTitle": "Senior Software Engineer", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945947d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "ODME Solutions", - "name": "Jackqueline Nguyen", - "email": "jackquelineanguyen@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jackquelinenguyen/", - "campus": "LA / WCRI", - "cohort": "54", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": ["Winston-Salem"], - "_id": { - "$oid": "6674c30595590f9fd945947e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Okta", - "name": "Sterling Deng", - "email": "sterlingdeng@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sterling-deng/", - "campus": "LA", - "cohort": "27", - "jobTitle": "Software Engineer", - "industry": "SaaS - Security", - "cities": ["Beijing"], - "_id": { - "$oid": "6674c30595590f9fd945947f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Olive AI", - "name": "Saejin Kang", - "email": "saejin.kang1004@gmail.com", - "linkedIn": "https://www.linkedin.com/in/saejinkang1004/", - "campus": "LA", - "cohort": "36", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": ["Oklahoma City", "North Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd9459480" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Olivine Inc", - "name": "Yirou Chen", - "email": "yirou.zm@gmail.com", - "linkedIn": "https://www.linkedin.com/in/yirouchen/", - "campus": "PTRI", - "cohort": "8", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459481" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Ollie", - "name": "Brynn Sakell", - "email": "brynnsakell@gmail.com", - "linkedIn": "www.linkedin.com/in/brynnsakell", - "campus": "NYOI", - "cohort": "1", - "jobTitle": "Software Engineer, Front End", - "industry": "Other", - "cities": ["Gilbert"], - "_id": { - "$oid": "6674c30595590f9fd9459482" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Omaze", - "name": "Rachel Kim", - "email": "rayykim323@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rayykim/", - "campus": "LA", - "cohort": "31", - "jobTitle": "Software Engineer", - "industry": "Fundraising", - "cities": ["Honolulu"], - "_id": { - "$oid": "6674c30595590f9fd9459483" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "OneSignal", - "name": "Dean Ohashi", - "email": "d.n.ohashi@gmail.com", - "linkedIn": "https://www.linkedin.com/in/deanohashi/", - "campus": "LA", - "cohort": "29", - "jobTitle": "Software Engineer", - "industry": "MarTech", - "cities": ["Norfolk", "Nashville", "Santa Ana"], - "_id": { - "$oid": "6674c30595590f9fd9459484" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "OneTrack.AI", - "name": "Alexander Martinez", - "email": "alexmartinez7184@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alexander-martinez415/", - "campus": "LA / WCRI", - "cohort": "53", - "jobTitle": "Implementation Support Engineer", - "industry": "Artificial Intelligence", - "cities": ["Plano", "Long Beach", "Winston-Salem"], - "_id": { - "$oid": "6674c30595590f9fd9459485" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "OneView", - "name": "Sean Yoo", - "email": "yooys87@gmail.com", - "linkedIn": "https://www.linkedin.com/in/seanyyoo/", - "campus": "LA", - "cohort": "43", - "jobTitle": "Full Stack Developer", - "industry": "ECommerce", - "cities": ["North Las Vegas", "Tokyo"], - "_id": { - "$oid": "6674c30595590f9fd9459486" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Onyx Team at JP Morgan Chase", - "name": "Dwayne Richards", - "email": "dwaynerichards@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dnkrichards", - "campus": "NYC / ECRI", - "cohort": "24", - "jobTitle": "Senior Blockchain Engineer", - "industry": "Blockchain/Web3", - "cities": ["Sรฃo Paulo", "Fort Worth"], - "_id": { - "$oid": "6674c30595590f9fd9459487" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Oomph", - "name": "Rob Mosher", - "email": "rob@robmosher.com", - "linkedIn": "https://www.linkedin.com/in/rob-mosher-it/", - "campus": "NYOI", - "cohort": "1", - "jobTitle": "Senior Software Engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459488" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "OpenFin", - "name": "Elliott Burr", - "email": "elliottnburr@gmail.com", - "linkedIn": "https://www.linkedin.com/in/elliott-burr/", - "campus": "LA / WCRI", - "cohort": "51", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459489" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Openfin", - "name": "Hina Khalid", - "email": "k.hinaa87@gmail.com", - "linkedIn": "", - "campus": "NYC / ECRI", - "cohort": "35", - "jobTitle": "Software engineer", - "industry": "Fintech", - "cities": ["St. Petersburg"], - "_id": { - "$oid": "6674c30595590f9fd945948a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Opentrons", - "name": "Geovanni Alarcon", - "email": "geovannialarcon92@gmail.com", - "linkedIn": "https://www.linkedin.com/in/geo-alarcon/", - "campus": "PTRI", - "cohort": "1", - "jobTitle": "Software Engineer", - "industry": "Biotech, Robotics", - "cities": ["Reno", "St. Louis"], - "_id": { - "$oid": "6674c30595590f9fd945948b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Opentrons", - "name": "Jamey Huffnagle", - "email": "mjhuffnagle@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jamey-huffnagle/", - "campus": "NYOI", - "cohort": "3", - "jobTitle": "Senior Software Engineer", - "industry": "Biotech", - "cities": ["Toledo", "Nashville", "San Francisco"], - "_id": { - "$oid": "6674c30595590f9fd945948c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Optimize Health", - "name": "Kim Mai Nguyen", - "email": "kim.mai.e.nguyen@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nkmai/", - "campus": "LA", - "cohort": "39", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": ["Irvine", "Newark", "Philadelphia"], - "_id": { - "$oid": "6674c30595590f9fd945948d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Optum", - "name": "Austin Johnson", - "email": "austinlovesworking@gmail.com", - "linkedIn": "https://www.linkedin.com/in/lovesworking/", - "campus": "NYC / ECRI", - "cohort": "33", - "jobTitle": "Full stack dev", - "industry": "Healthcare", - "cities": ["Oklahoma City", "Fresno"], - "_id": { - "$oid": "6674c30595590f9fd945948e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Oscar Health", - "name": "Brian Kang", - "email": "brkang1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/thebriankang/", - "campus": "NYC", - "cohort": "28", - "jobTitle": "Software Engineer (E2)", - "industry": "Health", - "cities": ["Riverside", "Kansas City"], - "_id": { - "$oid": "6674c30595590f9fd945948f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Oscar Health", - "name": "Brian Kang", - "email": "brkang1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/thebriankang/", - "campus": "NYC", - "cohort": "28", - "jobTitle": "Software Engineer (E2)", - "industry": "Health", - "cities": ["Tulsa", "Virginia Beach", "Miami"], - "_id": { - "$oid": "6674c30595590f9fd9459490" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Oscar Health", - "name": "Sergey Zeygerman", - "email": "sergey@zeygerman.com", - "linkedIn": "https://www.linkedin.com/in/sergey-zeygerman/", - "campus": "PTRI", - "cohort": "3", - "jobTitle": "Software Engineer, Web & Mobile", - "industry": "Insurance", - "cities": ["Cincinnati", "Anaheim"], - "_id": { - "$oid": "6674c30595590f9fd9459491" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "OTG Experience", - "name": "Chang Cai", - "email": "Chang.Cai@pm.me", - "linkedIn": "https://www.linkedin.com/in/chang-c-cai/", - "campus": "NYC", - "cohort": "29", - "jobTitle": "Typescript NodeJS Senior Engineer", - "industry": "Hospitality", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459492" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Other World Computing", - "name": "Miles Wright", - "email": "mileswright818@gmail.com", - "linkedIn": "https://www.linkedin.com/in/miles-m-wright/", - "campus": "LA / WCRI", - "cohort": "45", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Fresno", "Irvine", "Sydney"], - "_id": { - "$oid": "6674c30595590f9fd9459493" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Ouraring", - "name": "Jenna Hamza", - "email": "jennashamza@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jennahamza", - "campus": "NYC / ECRI", - "cohort": "33", - "jobTitle": "Full Stack Developer", - "industry": "Other", - "cities": ["Charlotte"], - "_id": { - "$oid": "6674c30595590f9fd9459494" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Outside Analytics", - "name": "Timeo Williams", - "email": "timeo.j.williams@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "24", - "jobTitle": "FullStack Software Engineer", - "industry": "Analytics, Defense", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459495" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Ovis Technologies", - "name": "Andrew Lovato", - "email": "andrew.lovato@gmail.com", - "linkedIn": "https://www.linkedin.com/in/andrew-lovato/", - "campus": "NYC", - "cohort": "21", - "jobTitle": "Senior Full Stack Developer", - "industry": "Fintech", - "cities": ["Miami", "Columbus"], - "_id": { - "$oid": "6674c30595590f9fd9459496" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Ovis Technologies", - "name": "David Soerensen", - "email": "Dsoerensen28@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "18", - "jobTitle": "Senior Fullstack Developer", - "industry": "Fintech", - "cities": ["Stockton", "Reno", "Seattle"], - "_id": { - "$oid": "6674c30595590f9fd9459497" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "OwnerIQ Inc.", - "name": "Alejandro Romero", - "email": "alexrom789@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alejandromromero/", - "campus": "NYC", - "cohort": "4", - "jobTitle": "Software Engineer", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459498" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Ownet", - "name": "Ari bengiyat", - "email": "ari@aribengiyat.com", - "linkedIn": "https://www.linkedin.com/in/ari-bengiyat", - "campus": "NYOI", - "cohort": "2", - "jobTitle": "Senior Software Engineer", - "industry": "Media", - "cities": ["North Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd9459499" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Palmetto", - "name": "Fan Shao", - "email": "fanny.shao18@gmail.com", - "linkedIn": "https://www.linkedin.com/in/fan-shao/", - "campus": "NYC", - "cohort": "18", - "jobTitle": "Software Engineer", - "industry": "Renewable Energy", - "cities": ["Milwaukee", "Boston", "Saint Paul"], - "_id": { - "$oid": "6674c30595590f9fd945949a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Panda Express", - "name": "Krystal Chen", - "email": "Kcrystalchen@gmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "31", - "jobTitle": "Software developer", - "industry": "Restaurant", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945949b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Paperless Parts", - "name": "Scott Campbell", - "email": "thisisscottcampbell@gmail.com", - "linkedIn": "https://www.linkedin.com/in/thisisscottcampbell/", - "campus": "PTRI", - "cohort": "1", - "jobTitle": "Software Engineer", - "industry": "Contract Manufacturing", - "cities": ["Orlando", "Paris", "Minneapolis"], - "_id": { - "$oid": "6674c30595590f9fd945949c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Paragon Application Systems", - "name": "Autumn Wallen", - "email": "mymail1269@gmail.com", - "linkedIn": "https://www.linkedin.com/in/autumn-wallen/", - "campus": "LA / WCRI", - "cohort": "52", - "jobTitle": "Software Engineer II", - "industry": "Fintech", - "cities": ["Memphis"], - "_id": { - "$oid": "6674c30595590f9fd945949d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Paramount+", - "name": "Todd Alexander", - "email": "todd.alexander@me.com", - "linkedIn": "https://www.linkedin.com/in/toddalex/", - "campus": "LA", - "cohort": "35", - "jobTitle": "Senior SWE", - "industry": "Entertainment", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945949e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Paramount++", - "name": "Evan Emenegger", - "email": "evanemenegger@gmail.com", - "linkedIn": "https://www.linkedin.com/in/evan-emenegger/", - "campus": "NYC / ECRI", - "cohort": "35", - "jobTitle": "Software Engineer, Frontend", - "industry": "Entertainment", - "cities": ["Durham", "Wichita"], - "_id": { - "$oid": "6674c30595590f9fd945949f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Parative", - "name": "Mariko Iwata", - "email": "mariko.iwata@gmail.com", - "linkedIn": "https://www.linkedin.com/in/marikoiwata/", - "campus": "PTRI", - "cohort": "9", - "jobTitle": "Senior Front End Engineer", - "industry": "Sales", - "cities": ["Anchorage"], - "_id": { - "$oid": "6674c30595590f9fd94594a0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Passage.io", - "name": "Yusuf Nevruz Olmez", - "email": "nvrz@windowslive.com", - "linkedIn": "https://www.linkedin.com/in/nevruzolmez", - "campus": "NYC / ECRI", - "cohort": "33", - "jobTitle": "Full Stack Developer", - "industry": "Blockchain/Web3", - "cities": ["Mumbai", "North Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd94594a1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "PassiveLogic", - "name": "Tanner Hesterman", - "email": "tannerhesterman@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tannerhesterman/", - "campus": "FTRI / CTRI", - "cohort": "11", - "jobTitle": "Junior Software Engineer", - "industry": "Software / Tech", - "cities": ["Los Angeles"], - "_id": { - "$oid": "6674c30595590f9fd94594a2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "PavCon", - "name": "Bradley Woolf", - "email": "bradleymwoolf@gmail.com", - "linkedIn": "https://www.linkedin.com/in/bradley-woolf/", - "campus": "LA", - "cohort": "32", - "jobTitle": "Software Engineer", - "industry": "Federal Defense", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594a3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Pavemint", - "name": "Vivian Cermeno", - "email": "vcermeno6@gmail.com", - "linkedIn": "https://www.linkedin.com/in/viviancermeno/", - "campus": "LA", - "cohort": "36", - "jobTitle": "Software Engineer", - "industry": "Parking", - "cities": ["Washington"], - "_id": { - "$oid": "6674c30595590f9fd94594a4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Pax8", - "name": "Steve Frend", - "email": "stevefrend1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stevefrend/", - "campus": "LA", - "cohort": "35", - "jobTitle": "Software Engineer II", - "industry": "Cloud services", - "cities": ["Memphis"], - "_id": { - "$oid": "6674c30595590f9fd94594a5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Paypal", - "name": "Cynthia Franqui", - "email": "cynthiafranqui@gmail.com", - "linkedIn": "https://www.linkedin.com/in/cynthiafranqui/", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Software Engineer II", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594a6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Paypal", - "name": "Stanley Huang", - "email": "Huang.stan@icloud.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Software Engineer II (T23)", - "industry": "electronic Payment/ financial services", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594a7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "PayPal", - "name": "Jason Yu", - "email": "jasonyu@hotmail.com", - "linkedIn": "https://www.linkedin.com/in/json-yu/", - "campus": "LA", - "cohort": "32", - "jobTitle": "Software Engineer 2", - "industry": "Fintech", - "cities": ["Sacramento"], - "_id": { - "$oid": "6674c30595590f9fd94594a8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "PayPal", - "name": "Jorge Espinoza", - "email": "jorge.e.espinoza.57@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jorge-e-espinoza1/", - "campus": "FTRI", - "cohort": "3", - "jobTitle": "Software Engineer I", - "industry": "Fintech", - "cities": ["Laredo"], - "_id": { - "$oid": "6674c30595590f9fd94594a9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "PayPal", - "name": "Qwen Ballard", - "email": "qwen.ballard@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mqballard/", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Full Stack Developer", - "industry": "Fintech", - "cities": ["Glendale", "Los Angeles"], - "_id": { - "$oid": "6674c30595590f9fd94594aa" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "PayPal (Happy Returns)", - "name": "Lawrence Han", - "email": "lawrencehan3@gmail.com", - "linkedIn": "https://www.linkedin.com/in/lawrence-han/", - "campus": "LA", - "cohort": "43", - "jobTitle": "Software Engineer", - "industry": "Logistics", - "cities": ["St. Louis", "New Orleans"], - "_id": { - "$oid": "6674c30595590f9fd94594ab" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "PayPal Inc.", - "name": "Darryl Amour", - "email": "darryl.amour@gmail.com", - "linkedIn": "https://www.linkedin.com/in/darryl-amour/", - "campus": "LA", - "cohort": "25", - "jobTitle": "Engineering Manager, Software Development 2", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594ac" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Payscale", - "name": "Truett Davis", - "email": "truett.davis@gmail.com", - "linkedIn": "https://www.linkedin.com/in/truett-davis", - "campus": "NYOI", - "cohort": "3", - "jobTitle": "Software Engineer II", - "industry": "Software / Tech", - "cities": ["Chicago", "Tucson", "Colorado Springs"], - "_id": { - "$oid": "6674c30595590f9fd94594ad" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Peacock", - "name": "Eli Gallipoli", - "email": "eligallipoli317@gmail.com", - "linkedIn": "https://www.linkedin.com/in/eli-gallipoli/", - "campus": "NYC", - "cohort": "16", - "jobTitle": "Fullstack Developer - Video Software Engineering", - "industry": "Video Streaming", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594ae" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Peatix", - "name": "Yula Ko", - "email": "larkspury.k@gmail.com", - "linkedIn": "https://www.linkedin.com/in/yulako/", - "campus": "NYC", - "cohort": "17", - "jobTitle": "Software Engineer", - "industry": "Entertainment", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594af" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Peloton", - "name": "Lorenzo Guevara", - "email": "joselorenzo.guevara@gmail.com", - "linkedIn": "https://www.linkedin.com/in/lorenzoguevara/", - "campus": "LA", - "cohort": "43", - "jobTitle": "Software Engineer", - "industry": "Tech/Health & Wellness", - "cities": ["Toronto"], - "_id": { - "$oid": "6674c30595590f9fd94594b0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Penny Mac", - "name": "Edward Roh", - "email": "eroh@rubiconproject.com", - "linkedIn": "https://www.linkedin.com/in/edwardroh/", - "campus": "LA", - "cohort": "24", - "jobTitle": "Front End Lead Engineer", - "industry": "Sports?", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594b1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "PennyMac", - "name": "Cornelius Phanthanh", - "email": "corneliusphanthanh@gmail.com", - "linkedIn": "www.linkedin.com/in/corneliusphanthanh", - "campus": "LA", - "cohort": "33", - "jobTitle": "Full Stack (UI/UX) Senior Application Developer", - "industry": "Loan/Mortgage", - "cities": ["Dallas"], - "_id": { - "$oid": "6674c30595590f9fd94594b2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Penumbra", - "name": "Abigail Gjurich", - "email": "amgjurich@gmail.com", - "linkedIn": "https://www.linkedin.com/in/abigail-gjurich/", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Front End Engineer", - "industry": "Medical", - "cities": ["Sรฃo Paulo", "Irving"], - "_id": { - "$oid": "6674c30595590f9fd94594b3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Penumbra, Inc.", - "name": "Junaid Ahmed", - "email": "junaid7ahmed96@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ahmedjnd/", - "campus": "NYOI", - "cohort": "3", - "jobTitle": "Full Stack Engineer", - "industry": "Healthtech/Healthcare", - "cities": ["Arlington", "Beijing"], - "_id": { - "$oid": "6674c30595590f9fd94594b4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Peraton", - "name": "Andrew Jung", - "email": "andrewjung89@icloud.com", - "linkedIn": "https://www.linkedin.com/in/sjung80/", - "campus": "FTRI / CTRI", - "cohort": "10", - "jobTitle": "Cyber Software Engineer", - "industry": "Public Safety", - "cities": ["Jersey City"], - "_id": { - "$oid": "6674c30595590f9fd94594b5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "PGA Tour", - "name": "Rami Abdelghafar", - "email": "ramabdel12@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ramiabdelghafar/", - "campus": "NYC / ECRI", - "cohort": "35", - "jobTitle": "Software Engineer", - "industry": "Digital", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594b6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "PGi", - "name": "Zi Hao He", - "email": "germanychinaaustralia@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/zi-hao-he/", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Software Engineer I", - "industry": "Video", - "cities": ["Irvine", "Tokyo", "Sacramento"], - "_id": { - "$oid": "6674c30595590f9fd94594b7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "PGS", - "name": "Yi Sun", - "email": "timyisun@gmail.com", - "linkedIn": "https://www.linkedin.com/in/yi-sun-swe/", - "campus": "PTRI", - "cohort": "10", - "jobTitle": "Senior Software Engineer", - "industry": "Energy/Cleantech/Greentech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594b8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "PhotoShelter", - "name": "Julia Ieshtokina", - "email": "julia.ieshtokina@gmail.com", - "linkedIn": "https://www.linkedin.com/in/julia-ieshtokina/", - "campus": "NYC", - "cohort": "5", - "jobTitle": "Software Automation Engineer", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594b9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Picarro", - "name": "Sรฉbastien Fauque", - "email": "Sbfauque@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sebastienfauque", - "campus": "FTRI", - "cohort": "4", - "jobTitle": "Software engineer", - "industry": "Green tech", - "cities": ["Toledo", "San Jose", "Gilbert"], - "_id": { - "$oid": "6674c30595590f9fd94594ba" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Pie Insurance", - "name": "Alex Wolinsky", - "email": "alexwolinsky1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alex-wolinsky/", - "campus": "LA", - "cohort": "40", - "jobTitle": "Software Engineer", - "industry": "Insurance", - "cities": ["Honolulu", "Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd94594bb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Pima County", - "name": "Jake Kazi", - "email": "kazijake@gmail.com", - "linkedIn": "linkedin.com/in/jakekazi", - "campus": "PTRI", - "cohort": "7", - "jobTitle": "IT Applications Engineer", - "industry": "Other", - "cities": ["Paris", "Stockton", "Sacramento"], - "_id": { - "$oid": "6674c30595590f9fd94594bc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Pinterest", - "name": "Edar Liu", - "email": "liuedar@gmail.com", - "linkedIn": "https://www.linkedin.com/in/liuedar/", - "campus": "LA", - "cohort": "46", - "jobTitle": "Software Engineer L4", - "industry": "Social Media", - "cities": ["Denver", "Jersey City"], - "_id": { - "$oid": "6674c30595590f9fd94594bd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Pitzer College", - "name": "Kurt Crandall", - "email": "kcrandall67@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kurtcrandall", - "campus": "LA / WCRI", - "cohort": "47", - "jobTitle": "Web Developer", - "industry": "Other", - "cities": ["Washington"], - "_id": { - "$oid": "6674c30595590f9fd94594be" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Place Exchange", - "name": "Wesley Jia", - "email": "wesleyjia34@gmail.com", - "linkedIn": "https://www.linkedin.com/in/wesleyjia/", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Software Engineer", - "industry": "Advertising", - "cities": ["New York"], - "_id": { - "$oid": "6674c30595590f9fd94594bf" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Plaid", - "name": "Nicolas Ferretti", - "email": "nf96@cornell.edu", - "linkedIn": "https://www.linkedin.com/in/nicolas-ferretti/", - "campus": "NYC", - "cohort": "13", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Anaheim", "San Antonio"], - "_id": { - "$oid": "6674c30595590f9fd94594c0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Platform Science", - "name": "Daniel Aurand", - "email": "Daurand303@gmail.com", - "linkedIn": "https://www.linkedin.com/in/daniel-aurand/", - "campus": "PTRI", - "cohort": "7", - "jobTitle": "software development engineer - FMS", - "industry": "Automotive", - "cities": ["Pittsburgh", "San Antonio", "Tokyo"], - "_id": { - "$oid": "6674c30595590f9fd94594c1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Playstation", - "name": "Bryan Santos", - "email": "brymsantos@gmail.com", - "linkedIn": "https://www.linkedin.com/in/bryan-santos/", - "campus": "LA", - "cohort": "49", - "jobTitle": "Software Engineer II", - "industry": "Gaming", - "cities": ["Omaha", "Baltimore"], - "_id": { - "$oid": "6674c30595590f9fd94594c2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "PlayStation", - "name": "Jackqueline Nguyen", - "email": "jackquelineanguyen@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jackquelinenguyen/", - "campus": "LA / WCRI", - "cohort": "54", - "jobTitle": "Senior Software Engineer", - "industry": "Gaming", - "cities": ["Henderson", "St. Louis"], - "_id": { - "$oid": "6674c30595590f9fd94594c3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "PlayVs", - "name": "Alyvia Moss", - "email": "alyvialmoss@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alyviam/", - "campus": "LA", - "cohort": "28", - "jobTitle": "Software Engineer", - "industry": "E-Sports", - "cities": ["Colorado Springs", "Dallas", "Mumbai"], - "_id": { - "$oid": "6674c30595590f9fd94594c4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Plum", - "name": "Nattie Chan", - "email": "nattie.chan@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nattiechan/", - "campus": "LA / WCRI", - "cohort": "56", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": ["Beijing", "Tulsa"], - "_id": { - "$oid": "6674c30595590f9fd94594c5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Pluralsight", - "name": "Ronak Hirpara", - "email": "ronakh130@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ronak-hirpara/", - "campus": "NYC", - "cohort": "30", - "jobTitle": "Software Engineer", - "industry": "Education", - "cities": ["Laredo"], - "_id": { - "$oid": "6674c30595590f9fd94594c6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Pluralsight", - "name": "Stephanie Wood", - "email": "wood.steph@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stephaniewood22/", - "campus": "LA", - "cohort": "36", - "jobTitle": "Software Engineer", - "industry": "EdTech", - "cities": ["Greensboro"], - "_id": { - "$oid": "6674c30595590f9fd94594c7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Plutoshift", - "name": "Alex Bednarek", - "email": "alexbednarek4@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alex-bednarek/", - "campus": "NYC", - "cohort": "16", - "jobTitle": "Backend Engineer", - "industry": "Internet/AI/Energy", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594c8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Podsights", - "name": "Emily Krebs", - "email": "erkrebs@gmail.com", - "linkedIn": "https://www.linkedin.com/in/emilyrkrebs/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Software Engineer", - "industry": "Podcast Analytics", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594c9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "PointsBet", - "name": "Joseph Eisele", - "email": "eisele.joseph1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/joseph-eisele/", - "campus": "LA", - "cohort": "29", - "jobTitle": "Front-end Engineering Consultant", - "industry": "Sports Betting", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594ca" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "PokerAtlas", - "name": "Patrick S. Young", - "email": "patrick.shaffer.young@gmail.com", - "linkedIn": "https://www.linkedin.com/in/patrick-s-young/", - "campus": "LA", - "cohort": "31", - "jobTitle": "Frontend Engineer", - "industry": "Entertainment", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594cb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Policygenius", - "name": "Christopher Bosserman", - "email": "christopherpbosserman@gmail.com", - "linkedIn": "https://www.linkedin.com/in/christopherpbosserman/", - "campus": "NYC", - "cohort": "24", - "jobTitle": "Software Engineer", - "industry": "Insurance", - "cities": ["Columbus"], - "_id": { - "$oid": "6674c30595590f9fd94594cc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Policygenius", - "name": "Kelly Porter", - "email": "kporter101@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kporter101/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Software Engineer", - "industry": "Insurance", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594cd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Poll Everywhere", - "name": "Samuel Filip", - "email": "samjfilip@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sam-filip/", - "campus": "PTRI", - "cohort": "2", - "jobTitle": "Full Stack Integrations Engineer", - "industry": "IT Services", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594ce" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Poloniex", - "name": "Sunit Bhalotia", - "email": "sunit.bh@gmail.com", - "linkedIn": "linkedin.com/in/sunitb/", - "campus": "FTRI / CTRI", - "cohort": "8", - "jobTitle": "Senior Software Engineer, Web", - "industry": "Blockchain/Web3", - "cities": ["Colorado Springs"], - "_id": { - "$oid": "6674c30595590f9fd94594cf" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Polyture", - "name": "Dieu Huynh", - "email": "dieu@dieuhuynh.com", - "linkedIn": "https://www.linkedin.com/in/dieu-huynh", - "campus": "LA", - "cohort": "42", - "jobTitle": "Software Engineer", - "industry": "Data Analytics", - "cities": ["San Diego"], - "_id": { - "$oid": "6674c30595590f9fd94594d0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Polyture", - "name": "Evan Grobar", - "email": "egrobar@gmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "33", - "jobTitle": "Software Engineer", - "industry": "Data Analysis", - "cities": ["North Las Vegas", "Chicago"], - "_id": { - "$oid": "6674c30595590f9fd94594d1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Pondurance", - "name": "Nancy Dao", - "email": "nancyddao@gmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "33", - "jobTitle": "Front End Software Engineer", - "industry": "Security", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594d2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Postman", - "name": "Jonathan Haviv", - "email": "jonathandhaviv@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jonathanhaviv/", - "campus": "PTRI", - "cohort": "6", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["New York", "Honolulu", "Tulsa"], - "_id": { - "$oid": "6674c30595590f9fd94594d3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Potato", - "name": "Kiril Christov", - "email": "kiril.christov@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kchristov/", - "campus": "LA", - "cohort": "32", - "jobTitle": "Full stack engineer", - "industry": "Technology", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594d4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Power Digital", - "name": "Feiyi Wu", - "email": "freyawu10@gmail.com", - "linkedIn": "https://www.linkedin.com/in/freya-wu/", - "campus": "LA", - "cohort": "45", - "jobTitle": "Jr. Software Engineer", - "industry": "Marketing", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594d5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Prescriptive Data", - "name": "Nathan Le Master", - "email": "nlemaster47@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nathan-le-master/", - "campus": "NYC", - "cohort": "11", - "jobTitle": "Frontend Developer", - "industry": "Building Management", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594d6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Priceline", - "name": "Tommy Liang", - "email": "tommyliangsays@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mrtommyliang/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Software Engineer - Frontend", - "industry": "Travel", - "cities": ["Tucson", "Detroit"], - "_id": { - "$oid": "6674c30595590f9fd94594d7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "PRIME", - "name": "Andrew Park", - "email": "andrewchanwonpark@gmail.com", - "linkedIn": "https://www.linkedin.com/in/andrew-c-park/", - "campus": "LA / WCRI", - "cohort": "50", - "jobTitle": "Shopify Developer", - "industry": "Restaurant, Food, and Beverage", - "cities": ["North Las Vegas", "Saint Paul", "Irvine"], - "_id": { - "$oid": "6674c30595590f9fd94594d8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Prime Therapeutics", - "name": "Dennis Cheung", - "email": "dennis.kh.cheung@gmail.com", - "linkedIn": "https://www.linkedin.com/in/denniskhcheung/", - "campus": "NYC / ECRI", - "cohort": "37", - "jobTitle": "Senior Software Engineer", - "industry": "Healthcare", - "cities": ["Riverside", "Nashville", "Kansas City"], - "_id": { - "$oid": "6674c30595590f9fd94594d9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.068Z" - }, - "__v": 0 - }, - { - "company": "Principal Financial Group", - "name": "Stephen Lee", - "email": "stphn.l.nyc@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stphnl/", - "campus": "NYOI", - "cohort": "2", - "jobTitle": "Software Engineer II", - "industry": "Insurance", - "cities": ["Irving"], - "_id": { - "$oid": "6674c30595590f9fd94594da" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "ProdataKey", - "name": "William Murphy", - "email": "w.williamjmurphy@gmail.com", - "linkedIn": "https://www.linkedin.com/in/w-william-j-murphy/", - "campus": "FTRI / CTRI", - "cohort": "15", - "jobTitle": "Software Engineer", - "industry": "Business Tech/Enterprise Tech", - "cities": ["Tucson"], - "_id": { - "$oid": "6674c30595590f9fd94594db" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Proov (MFB Fertility)", - "name": "Brian Pham", - "email": "br.pham13@gmail.com", - "linkedIn": "https://www.linkedin.com/in/brpham13/", - "campus": "LA / WCRI", - "cohort": "53", - "jobTitle": "Frontend Engineer", - "industry": "Healthcare", - "cities": ["London"], - "_id": { - "$oid": "6674c30595590f9fd94594dc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Prosper Marketplace", - "name": "David Levien", - "email": "david.levien1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dlev01/", - "campus": "LA", - "cohort": "28", - "jobTitle": "Senior Software Engineer", - "industry": "", - "cities": ["Minneapolis", "Irving"], - "_id": { - "$oid": "6674c30595590f9fd94594dd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Providence Health & Services", - "name": "Jared Weiss", - "email": "weissjmw@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jaredmweiss/", - "campus": "NYC", - "cohort": "2", - "jobTitle": "Software Engineer", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594de" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Prudential Financial", - "name": "Michael Lam", - "email": "mlamchamkee@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mlamchamkee/", - "campus": "NYC / ECRI", - "cohort": "35", - "jobTitle": "Director, Tech Lead", - "industry": "Insurance", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594df" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Prudential Financial", - "name": "Perla Royer", - "email": "perlaroyerc@gmail.com", - "linkedIn": "https://www.linkedin.com/in/perlaroyerc/", - "campus": "FTRI / CTRI", - "cohort": "9", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Lincoln"], - "_id": { - "$oid": "6674c30595590f9fd94594e0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Purpose Investments", - "name": "Anika Mustafiz", - "email": "munikamustafiz89@gmail.com", - "linkedIn": "https://www.linkedin.com/in/anikamustafiz-lillies/", - "campus": "PTRI", - "cohort": "1", - "jobTitle": "Full Stack Developer", - "industry": "Fintech/Insurance software", - "cities": ["Henderson", "Beijing", "Aurora"], - "_id": { - "$oid": "6674c30595590f9fd94594e1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Q2", - "name": "Justin Poirier", - "email": "poirierj94@gmail.com", - "linkedIn": "https://www.linkedin.com/in/justincpoirier", - "campus": "NYC / ECRI", - "cohort": "40", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Bakersfield", "Mesa", "Mexico City"], - "_id": { - "$oid": "6674c30595590f9fd94594e2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "QLogic LLC.", - "name": "Joe Cervino", - "email": "jciv.public@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "6", - "jobTitle": "Senior Associate - Node Engineer", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594e3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Qrypt", - "name": "Vinit Patel", - "email": "za.vinit@gmail.com", - "linkedIn": "https://www.linkedin.com/in/vinit-za/", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Software Engineer", - "industry": "Cryptography", - "cities": ["Saint Paul"], - "_id": { - "$oid": "6674c30595590f9fd94594e4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Qualleta Inc / StartPlaying.Games", - "name": "Brian Hayashi", - "email": "BrianMHayashi@gmail.com", - "linkedIn": "https://www.linkedin.com/in/brianmakiohayashi/", - "campus": "LA", - "cohort": "38", - "jobTitle": "Software Engineer", - "industry": "Entertainment", - "cities": ["Irvine"], - "_id": { - "$oid": "6674c30595590f9fd94594e5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Quantgene", - "name": "Peter Fasula", - "email": "peter.fasula@gmail.com", - "linkedIn": "https://www.linkedin.com/in/petefasula/", - "campus": "NYC", - "cohort": "3", - "jobTitle": "Sr. Full Stack Software Engineer", - "industry": "", - "cities": ["Miami", "Philadelphia"], - "_id": { - "$oid": "6674c30595590f9fd94594e6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Quantiphi, Inc", - "name": "Alura Chung-Mehdi", - "email": "aluracm@gmail.com", - "linkedIn": "linkedin.com/alura-chungmehdi", - "campus": "FTRI", - "cohort": "1", - "jobTitle": "Software Developer", - "industry": "Conversational AI", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594e7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Quantum Metric", - "name": "Justin Blalock", - "email": "justin.m.blalock@gmail.com", - "linkedIn": "https://www.linkedin.com/in/justinmblalock/", - "campus": "FTRI", - "cohort": "5", - "jobTitle": "Customer Success Engineer", - "industry": "Technology", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594e8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Railbird", - "name": "Justin Paige", - "email": "justinpaige3@gmail.com", - "linkedIn": "https://www.linkedin.com/in/justin-paige/", - "campus": "LA / WCRI", - "cohort": "52", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594e9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Rainmaker Games", - "name": "Julia Collins", - "email": "Julia.col@protonmail.com", - "linkedIn": "", - "campus": "PTRI", - "cohort": "2", - "jobTitle": "Lead Frontend Engineer (Web3)", - "industry": "Blockchain baby", - "cities": ["Los Angeles", "Oakland", "Aurora"], - "_id": { - "$oid": "6674c30595590f9fd94594ea" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Rally Health", - "name": "Stefan Pougatchev", - "email": "Stefan.Pougatchev@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stefanpougatchev/", - "campus": "LA", - "cohort": "38", - "jobTitle": "Software Engineer II", - "industry": "Health/Insurance", - "cities": ["Plano"], - "_id": { - "$oid": "6674c30595590f9fd94594eb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Raytheon Technologies", - "name": "Troy Prejusa", - "email": "prejusa.troy@gmail.com", - "linkedIn": "https://www.linkedin.com/in/troyprejusa/", - "campus": "LA / WCRI", - "cohort": "54", - "jobTitle": "Software Engineer II", - "industry": "Aerospace", - "cities": ["Tucson"], - "_id": { - "$oid": "6674c30595590f9fd94594ec" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Ready Responders", - "name": "Joel Rivera", - "email": "realjoelrivera@gmail.com", - "linkedIn": "https://www.linkedin.com/in/RealJoelRivera", - "campus": "NYC", - "cohort": "11", - "jobTitle": "React Developer", - "industry": "Healthcare", - "cities": ["Long Beach"], - "_id": { - "$oid": "6674c30595590f9fd94594ed" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Record360", - "name": "Abby Chao", - "email": "abigail.chao@gmail.com", - "linkedIn": "https://www.linkedin.com/in/abbychao/", - "campus": "NYC", - "cohort": "12", - "jobTitle": "CEO", - "industry": "Rental Inspection", - "cities": ["Kansas City", "Albuquerque"], - "_id": { - "$oid": "6674c30595590f9fd94594ee" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Recurate", - "name": "PJ Bannon", - "email": "bannon.pj@gmail.com", - "linkedIn": "https://www.linkedin.com/in/paulbannon/", - "campus": "NYOI", - "cohort": "3", - "jobTitle": "Frontend Engineer", - "industry": "Retail", - "cities": ["Denver", "Chandler", "Milwaukee"], - "_id": { - "$oid": "6674c30595590f9fd94594ef" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Recurate", - "name": "Andrew Altman", - "email": "andrewaltman@outlook.com", - "linkedIn": "https://www.linkedin.com/in/andrewaltman1/", - "campus": "NYOI", - "cohort": "3", - "jobTitle": "Lead Frontend Engineer", - "industry": "Business Tech/Enterprise Tech", - "cities": ["Washington", "Denver"], - "_id": { - "$oid": "6674c30595590f9fd94594f0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Red Bull North America", - "name": "Catherine Larcheveque", - "email": "clarcheveque14@gmail.com", - "linkedIn": "https://www.linkedin.com/in/clarcheveque", - "campus": "LA", - "cohort": "43", - "jobTitle": "Software Automation Engineer", - "industry": "Restaurant, Food, and Beverage", - "cities": ["Bakersfield", "St. Petersburg", "Riverside"], - "_id": { - "$oid": "6674c30595590f9fd94594f1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Reddit", - "name": "Jessikeรฉ Campbell-Walker", - "email": "jessikeecw@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jessikeecampbellwalker/", - "campus": "LA", - "cohort": "34", - "jobTitle": "Junior Front End Engineer", - "industry": "Internet Media", - "cities": ["El Paso", "Oakland"], - "_id": { - "$oid": "6674c30595590f9fd94594f2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Redox", - "name": "Jacquelyn Whitworth", - "email": "jackie.whitworth@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jackiewhitworth/", - "campus": "FTRI", - "cohort": "4", - "jobTitle": "Full Stack Engineer", - "industry": "Healthcare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594f3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Redwood Coding Academy", - "name": "Alexander Landeros", - "email": "Alexander.Landeros1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alexander-landeros/", - "campus": "LA", - "cohort": "38", - "jobTitle": "Software Dev Instructor", - "industry": "Edtech", - "cities": ["Berlin", "Toronto", "Tokyo"], - "_id": { - "$oid": "6674c30595590f9fd94594f4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "REEF", - "name": "Linda Everswick", - "email": "lindaeverswick@gmail.com", - "linkedIn": "https://www.linkedin.com/linda-everswick/", - "campus": "NYC", - "cohort": "18", - "jobTitle": "Front end engineer", - "industry": "Real Estate", - "cities": ["Buffalo", "Tulsa"], - "_id": { - "$oid": "6674c30595590f9fd94594f5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Remine", - "name": "JJ Friedman", - "email": "friedmanjarred@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jj-friedman/", - "campus": "LA", - "cohort": "33", - "jobTitle": "Software Engineer II - Web/Mobile", - "industry": "PropTech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594f6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Remote", - "name": "Bianca Picasso", - "email": "bianca.picasso@gmail.com", - "linkedIn": "https://www.linkedin.com/in/bianca-picasso/", - "campus": "LA / WCRI", - "cohort": "50", - "jobTitle": "Software Engineer I", - "industry": "Research", - "cities": ["Greensboro", "Norfolk"], - "_id": { - "$oid": "6674c30595590f9fd94594f7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Rent the Runway", - "name": "Rebecca Schell", - "email": "Rebeccaschell503@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rschelly/", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Senior Front End Engineer", - "industry": "Fashion", - "cities": ["Portland", "Saint Paul"], - "_id": { - "$oid": "6674c30595590f9fd94594f8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Republic Services", - "name": "Lauren Acrich", - "email": "acrich.lauren@gmail.com", - "linkedIn": "https://www.linkedin.com/in/laurenacrich/", - "campus": "PTRI", - "cohort": "6", - "jobTitle": "Full Stack Software Engineer", - "industry": "Other", - "cities": ["Austin", "San Diego", "North Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd94594f9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Republic Services", - "name": "Nicholas Smith", - "email": "nicktsmith7@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nicholastaylorsmith/", - "campus": "LA", - "cohort": "23", - "jobTitle": "Senior Front End Developer", - "industry": "", - "cities": ["Toledo", "San Jose"], - "_id": { - "$oid": "6674c30595590f9fd94594fa" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Rescale", - "name": "Kushal Talele", - "email": "kushal.talele@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kushaltalele/", - "campus": "NYC", - "cohort": "24", - "jobTitle": "Software Engineer", - "industry": "Cloud computing", - "cities": ["Albuquerque", "Reno"], - "_id": { - "$oid": "6674c30595590f9fd94594fb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Research Corporation of the University of Hawaii", - "name": "Chris Fryer", - "email": "chris@hifryer.com", - "linkedIn": "linkedin.com/in/cjfryer", - "campus": "LA / WCRI", - "cohort": "51", - "jobTitle": "Software Engineer Apprentice", - "industry": "Other", - "cities": ["Durham", "Seattle"], - "_id": { - "$oid": "6674c30595590f9fd94594fc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "ResMed", - "name": "Jackie He", - "email": "jackie.he98@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jackie-he/", - "campus": "LA / WCRI", - "cohort": "53", - "jobTitle": "Fullstack App SWE", - "industry": "Healthcare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94594fd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Restaurant Brand International (RBI)", - "name": "Christian Niedermayer", - "email": "sdchrisn@gmail.com", - "linkedIn": "https://www.linkedin.com/in/christian-niedermayer/", - "campus": "LA", - "cohort": "27", - "jobTitle": "Full Stack Software Engineer", - "industry": "Food", - "cities": ["Raleigh"], - "_id": { - "$oid": "6674c30595590f9fd94594fe" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Resy (AMEX)", - "name": "Jonathan Cespedes", - "email": "jmilescespedes@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jonathancespedes/", - "campus": "NYC", - "cohort": "7", - "jobTitle": "Senior Front-End Engineer", - "industry": "Restaurant, Food, Beverage", - "cities": ["Indianapolis"], - "_id": { - "$oid": "6674c30595590f9fd94594ff" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Reveel Group", - "name": "Jin Soo (John) Lim", - "email": "jinsoolim1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jinsoolim", - "campus": "NYC", - "cohort": "21", - "jobTitle": "Frontend Developer", - "industry": "Logistics & Supply Chain", - "cities": ["Buffalo"], - "_id": { - "$oid": "6674c30595590f9fd9459500" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Revel", - "name": "Kayliegh Hill", - "email": "kayliegh.hill@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kayliegh-hill/", - "campus": "NYC", - "cohort": "31", - "jobTitle": "Full Stack Engineer", - "industry": "Renewables & Environment", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459501" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Reverb", - "name": "Grace Park", - "email": "gracepark01@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "20", - "jobTitle": "software engineer", - "industry": "ecommerce", - "cities": ["Austin"], - "_id": { - "$oid": "6674c30595590f9fd9459502" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Revolution Prep", - "name": "Max Weisenberger", - "email": "germanbluemax@gmail.com", - "linkedIn": "https://www.linkedin.com/in/maxweisen/", - "campus": "LA", - "cohort": "42", - "jobTitle": "Software Engineer", - "industry": "Education", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459503" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "RF-Smart", - "name": "Michael Snyder", - "email": "msnyder1992@gmail.com", - "linkedIn": "https://www.linkedin.com/in/michaelcharlessnyder/", - "campus": "PTRI", - "cohort": "6", - "jobTitle": "JavaScript Applications Developer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459504" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Rice University", - "name": "Thasanee Puttamadilok", - "email": "meow3525@gmail.com", - "linkedIn": "https://www.linkedin.com/in/thasanee-p-686125243/", - "campus": "PTRI", - "cohort": "7", - "jobTitle": "Front End Software Engineer", - "industry": "Research", - "cities": ["Sacramento"], - "_id": { - "$oid": "6674c30595590f9fd9459505" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Rightway", - "name": "Dylan Feldman", - "email": "dfeldman24@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dylan-feldman/", - "campus": "LA", - "cohort": "45", - "jobTitle": "Software engineer", - "industry": "Healthcare navigation", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459506" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Riot Games", - "name": "Pauline Chang", - "email": "paulseonchang@gmail.com", - "linkedIn": "https://www.linkedin.com/in/pskchang/", - "campus": "LA", - "cohort": "22", - "jobTitle": "Associate Software Engineer", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459507" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "RIPL", - "name": "Jared Veltsos", - "email": "Veltsos.jared@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jaredveltsos/", - "campus": "LA / WCRI", - "cohort": "51", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Riverside", "Scottsdale"], - "_id": { - "$oid": "6674c30595590f9fd9459508" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Rivian", - "name": "Luis Lo", - "email": "kwun.man.lo@gmail.com", - "linkedIn": "https://www.linkedin.com/in/luis-lo/", - "campus": "LA", - "cohort": "37", - "jobTitle": "Software Engineer", - "industry": "Electric Vehicle", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459509" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Rivian", - "name": "Matthew Salvador", - "email": "matthew.jsalvador@gmail.com", - "linkedIn": "https://www.linkedin.com/in/matthewsalvador/", - "campus": "NYC", - "cohort": "24", - "jobTitle": "Full Stack Software Engineer II", - "industry": "Automotive", - "cities": ["Sรฃo Paulo", "Portland", "Riverside"], - "_id": { - "$oid": "6674c30595590f9fd945950a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Rivian", - "name": "Stacy Learn", - "email": "sslearn07@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stacy-learn/", - "campus": "NYC", - "cohort": "24", - "jobTitle": "Software Engineer II", - "industry": "Automotive", - "cities": ["Portland"], - "_id": { - "$oid": "6674c30595590f9fd945950b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Rivian", - "name": "Thomas Lutz", - "email": "tlutz65@gmail.com", - "linkedIn": "https://www.linkedin.com/in/thomas-j-lutz/", - "campus": "LA", - "cohort": "36", - "jobTitle": "Software Engineer", - "industry": "Automotive", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945950c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Rocket Auto", - "name": "Tommy Han", - "email": "tommy.han.cs@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tommy-han-cs/", - "campus": "NYC", - "cohort": "18", - "jobTitle": "Senior Javascript Software Engineer", - "industry": "Fintech", - "cities": ["Corpus Christi", "Oklahoma City", "Fort Wayne"], - "_id": { - "$oid": "6674c30595590f9fd945950d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Rocksbox", - "name": "Ece Isenbike Ozalp", - "email": "eceiozalp@gmail.com", - "linkedIn": "https://www.linkedin.com/in/eceiozalp", - "campus": "PTRI", - "cohort": "4", - "jobTitle": "Software Engineer", - "industry": "Jewelry Ecommerce", - "cities": ["Fresno", "Bakersfield"], - "_id": { - "$oid": "6674c30595590f9fd945950e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "RockStep Solutions", - "name": "Matthew McGowan", - "email": "matthew.c.mcgowan@gmail.com", - "linkedIn": "https://www.linkedin.com/in/matthewcharlesmcgowan/", - "campus": "FTRI / CTRI", - "cohort": "11", - "jobTitle": "Software Release Manager", - "industry": "Software / Tech", - "cities": ["Baltimore", "Berlin"], - "_id": { - "$oid": "6674c30595590f9fd945950f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Rohirrim", - "name": "Alex Corlin", - "email": "alex.corlin6@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alex-corlin/", - "campus": "FTRI / CTRI", - "cohort": "7", - "jobTitle": "Full Stack Engineer", - "industry": "Artificial Intelligence", - "cities": ["Long Beach", "Pittsburgh"], - "_id": { - "$oid": "6674c30595590f9fd9459510" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Rohirrim", - "name": "Simon Chen", - "email": "simonchn160@gmail.com", - "linkedIn": "https://www.linkedin.com/in/simonchen7/", - "campus": "FTRI / CTRI", - "cohort": "7", - "jobTitle": "Full Stack Engineer", - "industry": "Artificial Intelligence", - "cities": ["Tampa"], - "_id": { - "$oid": "6674c30595590f9fd9459511" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Roivant", - "name": "Jamie Schiff", - "email": "jamie.abrams.schiff@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jamie-schiff/", - "campus": "NYC / ECRI", - "cohort": "1", - "jobTitle": "Technology Analyst", - "industry": "Biotech", - "cities": ["Buffalo", "Durham"], - "_id": { - "$oid": "6674c30595590f9fd9459512" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Rokt", - "name": "Michael Hoang", - "email": "michaelhoang781@gmail.com", - "linkedIn": "https://www.linkedin.com/in/michaelhoang1/", - "campus": "NYC", - "cohort": "29", - "jobTitle": "Frontend Software Engineer", - "industry": "Digital Advertising/E-commerce", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459513" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Roll", - "name": "Eric Choy", - "email": "echoy20@gmail.com", - "linkedIn": "https://www.linkedin.com/in/silly-turtle/", - "campus": "NYC", - "cohort": "8", - "jobTitle": "Software Engineer", - "industry": "Real Estate", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459514" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Roll", - "name": "Marlon Wiprud", - "email": "Marlonwiprud1@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "8", - "jobTitle": "Software engineer", - "industry": "Entertainment", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459515" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Roll", - "name": "Marlon Wiprud", - "email": "Marlonwiprud1@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "8", - "jobTitle": "Software Engineer", - "industry": "Search and ads", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459516" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Rose Digital", - "name": "Chet (ChetBABY!) Hay", - "email": "chet.hay@gmail.com", - "linkedIn": "https://www.linkedin.com/in/chethay/", - "campus": "LA", - "cohort": "28", - "jobTitle": "Jr. Frontend Engineer", - "industry": "Digital Agency/Client Services", - "cities": ["Tampa", "Kansas City"], - "_id": { - "$oid": "6674c30595590f9fd9459517" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Rose Digital", - "name": "Linda Harrison", - "email": "lindafaithharrison@gmail.com", - "linkedIn": "https://linkedin.com/in/lindafharrison/", - "campus": "NYC", - "cohort": "3", - "jobTitle": "Junior Software Engineer", - "industry": "", - "cities": ["Raleigh", "Gilbert", "Newark"], - "_id": { - "$oid": "6674c30595590f9fd9459518" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Ruggable", - "name": "Benjamin Lee Morrison", - "email": "newben.hd@gmail.com", - "linkedIn": "https://www.linkedin.com/in/hdlmorrison/", - "campus": "LA", - "cohort": "31", - "jobTitle": "Sr. Software Engineer", - "industry": "Commerce", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459519" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Ruggable", - "name": "Andrew Nguyen", - "email": "nguyen.andrewkh@gmail.com", - "linkedIn": "https://www.linkedin.com/in/andrew-knguyen/", - "campus": "LA", - "cohort": "29", - "jobTitle": "Sr. Front-End Engineer", - "industry": "E-Commerce", - "cities": ["Houston"], - "_id": { - "$oid": "6674c30595590f9fd945951a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Ruggable", - "name": "Steven Jung", - "email": "stehyjung@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stehyjung/", - "campus": "LA", - "cohort": "28", - "jobTitle": "Front End Engineer", - "industry": "E-Commerce", - "cities": ["Columbus", "Milwaukee"], - "_id": { - "$oid": "6674c30595590f9fd945951b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Rush Enterprises", - "name": "Eric Saldivar", - "email": "esaldivar1214@gmail.com", - "linkedIn": "https://www.linkedin.com/in/esaldivar1214/", - "campus": "PTRI", - "cohort": "3", - "jobTitle": "Software Engineer", - "industry": "Automative", - "cities": ["New Orleans", "Henderson"], - "_id": { - "$oid": "6674c30595590f9fd945951c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "S&P Global", - "name": "Samantha Warrick", - "email": "samanthawarrick@gmail.com", - "linkedIn": "www.linkedin.com/samantha-warrick", - "campus": "LA / WCRI", - "cohort": "54", - "jobTitle": "Front End Software Engineer", - "industry": "Marketing", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945951d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Saggezza", - "name": "Albert Chen", - "email": "albert.chen@nyu.edu", - "linkedIn": "https://www.linkedin.com/in/albert-m-chen/", - "campus": "NYC", - "cohort": "2", - "jobTitle": "Full-stack Analytics Engineer", - "industry": "Big Data, Analytics", - "cities": ["Orlando", "Atlanta"], - "_id": { - "$oid": "6674c30595590f9fd945951e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Salesforce", - "name": "Jennifer Courtner", - "email": "jmichele.courtner@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jcourtner/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Full Stack Engineer", - "industry": "B2B", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945951f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "San Francisco State University", - "name": "Paul Valderama", - "email": "pvalderama@gmail.com", - "linkedIn": "https://www.linkedin.com/in/paulvalderama/", - "campus": "LA / WCRI", - "cohort": "22", - "jobTitle": "Senior Web and Mobile Developer", - "industry": "Software / Tech", - "cities": ["Mesa", "Arlington", "Laredo"], - "_id": { - "$oid": "6674c30595590f9fd9459520" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "SAP", - "name": "Charlie Maloney", - "email": "charliemaloney200@gmail.com", - "linkedIn": "https://www.linkedin.com/in/charlie-maloney/", - "campus": "LA", - "cohort": "35", - "jobTitle": "Front End Developer", - "industry": "Enterprise Software", - "cities": ["Stockton", "Durham"], - "_id": { - "$oid": "6674c30595590f9fd9459521" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "SAP", - "name": "Sylvia Liu", - "email": "sylvs.liu@gmail.com", - "linkedIn": "https://www.linkedin.com/in/liusylvia949/", - "campus": "LA", - "cohort": "46", - "jobTitle": "Frontend Software Engineer", - "industry": "Business Software", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459522" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Sayari", - "name": "SEAN YALDA", - "email": "seanyalda@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sean-yalda/", - "campus": "PTRI", - "cohort": "2", - "jobTitle": "Senior Full Stack Developer", - "industry": "Data Intelligence", - "cities": ["Oklahoma City"], - "_id": { - "$oid": "6674c30595590f9fd9459523" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Sayari Labs", - "name": "Michael Gower", - "email": "GowerMikey@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mikeygower/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Senior Full Stack Engineer", - "industry": "Financial Data", - "cities": ["Milwaukee"], - "_id": { - "$oid": "6674c30595590f9fd9459524" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Scale Computing", - "name": "Jason Charles de vera", - "email": "jasoncdevera@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jason-charles-de-vera/", - "campus": "FTRI", - "cohort": "1", - "jobTitle": "Software Engineer", - "industry": "Cloud Technology", - "cities": ["Garland"], - "_id": { - "$oid": "6674c30595590f9fd9459525" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Scale Computing", - "name": "Connor Dillon", - "email": "connordillon06@gmail.com", - "linkedIn": "https://www.linkedin.com/in/connor-dillon/", - "campus": "FTRI / CTRI", - "cohort": "16", - "jobTitle": "Software Development Engineer", - "industry": "Business Tech/Enterprise Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459526" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Science", - "name": "Michelle Leong", - "email": "leong.michellew@gmail.com", - "linkedIn": "https://www.linkedin.com/in/michelle-w-leong/", - "campus": "LA / WCRI", - "cohort": "56", - "jobTitle": "Software Engineer", - "industry": "Biotech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459527" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Science 37", - "name": "Tristan Schoenfeld", - "email": "tristans7@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tristan-schoenfeld/", - "campus": "LA", - "cohort": "26", - "jobTitle": "Sr. Frontend Engineer", - "industry": "Research", - "cities": ["El Paso", "Mesa", "San Jose"], - "_id": { - "$oid": "6674c30595590f9fd9459528" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "ScienceLogic", - "name": "Nick Kruckenberg", - "email": "nkruckenberg@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nicholaskruckenberg/", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Engineer", - "industry": "AIOps, IT monitoring and automation", - "cities": ["Glendale", "Mesa", "Honolulu"], - "_id": { - "$oid": "6674c30595590f9fd9459529" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "SciTec", - "name": "Forest Everest Leigh", - "email": "theforestleigh@gmail.com", - "linkedIn": "https://www.linkedin.com/in/forestleigh/", - "campus": "LA / WCRI", - "cohort": "53", - "jobTitle": "Senior Software Engineer", - "industry": "Other", - "cities": ["Tokyo", "Anchorage", "Laredo"], - "_id": { - "$oid": "6674c30595590f9fd945952a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "SDL", - "name": "Jamar Dawson", - "email": "Dawsonjamar@gmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "30", - "jobTitle": "Front End Engineer (Mid Level)", - "industry": "Translation", - "cities": ["Chicago", "Bakersfield"], - "_id": { - "$oid": "6674c30595590f9fd945952b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "SEAT:CODE", - "name": "Andrรฉs Gutiรฉrrez Ramรญrez", - "email": "agfeynman@gmail.com", - "linkedIn": "https://www.linkedin.com/in/andresgutierrezramirez/", - "campus": "PTRI", - "cohort": "5", - "jobTitle": "Senior Fullstack Engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945952c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Second Wave Technologies", - "name": "Nicholas Suzuki", - "email": "nicholassuzuki@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/nicholas-j-suzuki/", - "campus": "FTRI / CTRI", - "cohort": "5", - "jobTitle": "Software Engineer", - "industry": "Consulting", - "cities": ["Saint Paul", "Baltimore"], - "_id": { - "$oid": "6674c30595590f9fd945952d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "SecureSeniorConnections", - "name": "Timothy", - "email": "tim.atapagra@gmail.com", - "linkedIn": "https://www.linkedin.com/in/timpagra/", - "campus": "NYC", - "cohort": "15", - "jobTitle": "Software Developer", - "industry": "Hospitals", - "cities": ["Memphis"], - "_id": { - "$oid": "6674c30595590f9fd945952e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Seed Health", - "name": "John SaeHwan Lee", - "email": "john.saehwan.lee@gmail.com", - "linkedIn": "https://www.linkedin.com/in/john-saehwan-lee/", - "campus": "NYC / ECRI", - "cohort": "39", - "jobTitle": "Fullstack Software Engineer I", - "industry": "Fitness/Wellness", - "cities": ["San Diego"], - "_id": { - "$oid": "6674c30595590f9fd945952f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "SeedFi", - "name": "Peter Millspaugh", - "email": "peterdgmillspaugh@gmail.com", - "linkedIn": "https://www.linkedin.com/in/peter-millspaugh/", - "campus": "NYC", - "cohort": "26", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Mumbai", "Colorado Springs", "Denver"], - "_id": { - "$oid": "6674c30595590f9fd9459530" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Seedfi", - "name": "Stephen Grable", - "email": "stephengrable@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stephen-grable/", - "campus": "NYC", - "cohort": "3", - "jobTitle": "Senior Software Engineer", - "industry": "Finance", - "cities": ["El Paso"], - "_id": { - "$oid": "6674c30595590f9fd9459531" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "SEL", - "name": "Jace Crowe", - "email": "jace.crowe@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jacecrowe/", - "campus": "LA / WCRI", - "cohort": "51", - "jobTitle": "Software Engineer - Front End", - "industry": "Energy/Cleantech/Greentech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459532" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Send Out Carda", - "name": "Chris romano", - "email": "Chrispaulromano@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "15", - "jobTitle": "Front end engineer", - "industry": "Not sure: itโ€™s a subscription service for designing hallmark style cards", - "cities": ["Beijing", "Fort Wayne", "Plano"], - "_id": { - "$oid": "6674c30595590f9fd9459533" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "SENSE Chat", - "name": "Donte Nall", - "email": "donte.nall@gmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "25", - "jobTitle": "Senior Mobile Developer", - "industry": "Consulting", - "cities": ["Riverside", "Virginia Beach"], - "_id": { - "$oid": "6674c30595590f9fd9459534" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Sensei", - "name": "Kevin Fey", - "email": "kevinfey@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kevin-fey/", - "campus": "LA", - "cohort": "37", - "jobTitle": "Senior Frontend Engineer", - "industry": "Wellness", - "cities": ["Atlanta", "Santa Ana"], - "_id": { - "$oid": "6674c30595590f9fd9459535" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "SequinAR", - "name": "Wyatt Bell", - "email": "wcbell51@gmail.com", - "linkedIn": "https://www.linkedin.com/in/wyatt-bell1/", - "campus": "LA", - "cohort": "37", - "jobTitle": "Software Engineer", - "industry": "Augmented Reality, Entertainment", - "cities": ["Los Angeles", "Omaha"], - "_id": { - "$oid": "6674c30595590f9fd9459536" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "ServiceTrade", - "name": "Robert Beier", - "email": "robert.f.beier@gmail.com", - "linkedIn": "https://www.linkedin.com/in/robert-f-beier/", - "campus": "NYC", - "cohort": "31", - "jobTitle": "Software Engineer II", - "industry": "Contractor Software", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459537" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Setsail Marketing", - "name": "Kirsten Milic", - "email": "kirsten.milic@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kirsten-milic/", - "campus": "LA / WCRI", - "cohort": "57", - "jobTitle": "Software Engineer", - "industry": "Marketing/Advertising", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459538" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Sev1Tech", - "name": "Adam Vanek", - "email": "atvanek@gmail.com", - "linkedIn": "https://www.linkedin.com/in/atvanek/", - "campus": "FTRI / CTRI", - "cohort": "15", - "jobTitle": "Full Stack Developer", - "industry": "Government", - "cities": ["Winston-Salem"], - "_id": { - "$oid": "6674c30595590f9fd9459539" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Shadow Health", - "name": "Khandker Islam", - "email": "khandker.islam46@gmail.com", - "linkedIn": "https://www.linkedin.com/in/khandkerislam/", - "campus": "FTRI", - "cohort": "4", - "jobTitle": "Software Engineer II", - "industry": "Virtual Reality Education", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945953a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "SharpenCX", - "name": "Anu Sharma", - "email": "anu.le.pau@gmail.com", - "linkedIn": "https://www.linkedin.com/in/anulepau", - "campus": "FTRI / CTRI", - "cohort": "8", - "jobTitle": "Senior Full Stack Developer", - "industry": "Software / Tech", - "cities": ["Plano", "Saint Paul"], - "_id": { - "$oid": "6674c30595590f9fd945953b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Sherwin Williams", - "name": "Seamus Ryan", - "email": "d.seamus.ryan@outlook.com", - "linkedIn": "https://www.linkedin.com/in/dseamusryan/", - "campus": "LA", - "cohort": "39", - "jobTitle": "React Developer", - "industry": "Consumer", - "cities": ["Virginia Beach", "Fort Worth", "Fort Wayne"], - "_id": { - "$oid": "6674c30595590f9fd945953c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Shift", - "name": "Ralph Salazar", - "email": "ralph.slzr@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ralph-salazar", - "campus": "NYC", - "cohort": "2", - "jobTitle": "Software Engineer", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945953d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Showtime", - "name": "Dan Teng", - "email": "danwteng@gmail.com", - "linkedIn": "https://www.linkedin.com/feed/", - "campus": "NYC", - "cohort": "32", - "jobTitle": "Software Engineer", - "industry": "Entertainment", - "cities": ["Omaha", "Paris", "Tulsa"], - "_id": { - "$oid": "6674c30595590f9fd945953e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Shut Up & Write!", - "name": "Anthony Al-Rifai", - "email": "anthonyalrifai@gmail.com", - "linkedIn": "https://www.linkedin.com/in/anthony-al-rifai/", - "campus": "FTRI / CTRI", - "cohort": "11", - "jobTitle": "Full Stack Developer", - "industry": "Events", - "cities": ["Stockton", "Indianapolis", "Dallas"], - "_id": { - "$oid": "6674c30595590f9fd945953f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Shutterstock", - "name": "Ari Shoham", - "email": "arishoham@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ari-shoham/", - "campus": "NYC", - "cohort": "31", - "jobTitle": "Software Engineer III", - "industry": "Photography", - "cities": ["Columbus"], - "_id": { - "$oid": "6674c30595590f9fd9459540" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Shutterstock", - "name": "Eli Davis", - "email": "eli.davis42@gmail.com", - "linkedIn": "https://www.linkedin.com/in/elidavis42/", - "campus": "NYC", - "cohort": "31", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459541" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Shutterstock", - "name": "Michael Pay", - "email": "michael.edward.pay@gmail.com", - "linkedIn": "https://www.linkedin.com/in/michael-edward-pay/", - "campus": "LA", - "cohort": "46", - "jobTitle": "SDET III", - "industry": "Entertainment", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459542" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Shutterstock, Inc.", - "name": "Jake B Douglas", - "email": "jbrandondouglas@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "11", - "jobTitle": "Software Engineer, Projects", - "industry": "Tech? stock photography?", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459543" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Sidecar Health", - "name": "Sumin Kim", - "email": "ppsm920@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ppsm920/", - "campus": "LA", - "cohort": "41", - "jobTitle": "Software Engineer", - "industry": "Healthcare / insurance", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459544" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Sierra Nevada Corporation", - "name": "Matthew Xing", - "email": "matthew.xing@gmail.com", - "linkedIn": "https://www.linkedin.com/in/matthew-xing/", - "campus": "PTRI", - "cohort": "6", - "jobTitle": "Software Engineer II - Space Systems", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459545" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Signos", - "name": "Rebecca Anderson", - "email": "randersonviolin@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rebecca--anderson/", - "campus": "NYC / ECRI", - "cohort": "38", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": ["Tokyo", "Oakland", "Lincoln"], - "_id": { - "$oid": "6674c30595590f9fd9459546" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "SigTech", - "name": "Robert Howton", - "email": "robert.f.howton@gmail.com", - "linkedIn": "https://www.linkedin.com/in/roberthowton/", - "campus": "NYC", - "cohort": "29", - "jobTitle": "Fullstack Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459547" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "SimpliSafe", - "name": "Cindy Chau", - "email": "cindychau38@gmail.com", - "linkedIn": "https://www.linkedin.com/in/cindychau38/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Software Engineer II", - "industry": "Security", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459548" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Simplr", - "name": "Grigor Minasyan", - "email": "grigorminasyan1998@gmail.com", - "linkedIn": "https://www.linkedin.com/in/grigor-minasyan", - "campus": "FTRI", - "cohort": "1", - "jobTitle": "Front end engineer", - "industry": "Customer service software", - "cities": ["Scottsdale", "Cincinnati"], - "_id": { - "$oid": "6674c30595590f9fd9459549" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "SimplyWise", - "name": "Justin Jaeger", - "email": "jjustinjaeger@gmail.com", - "linkedIn": "https://www.linkedin.com/in/justin-jaeger/", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Software Engineer", - "industry": "Cloud storage", - "cities": ["Los Angeles"], - "_id": { - "$oid": "6674c30595590f9fd945954a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.069Z" - }, - "__v": 0 - }, - { - "company": "Sinclair Broadcast Group", - "name": "Michael Filoramo", - "email": "mlfiloramo@gmail.com", - "linkedIn": "linkedin.com/in/michael-filoramo/", - "campus": "PTRI", - "cohort": "6", - "jobTitle": "Full Stack Software Engineer III", - "industry": "Media", - "cities": ["Denver"], - "_id": { - "$oid": "6674c30595590f9fd945954b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Sinclair Broadcast Group", - "name": "David Beame", - "email": "dbeame291@gmail.com", - "linkedIn": "https://www.linkedin.com/in/david-beame/", - "campus": "LA / WCRI", - "cohort": "55", - "jobTitle": "Associate Software Developer", - "industry": "Media", - "cities": ["Laredo"], - "_id": { - "$oid": "6674c30595590f9fd945954c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Sinclair Broadcasting", - "name": "Joshua Reed", - "email": "joshreed104@gmail.com", - "linkedIn": "https://www.linkedin.com/in/josh-a-reed/", - "campus": "LA / WCRI", - "cohort": "54", - "jobTitle": "Associate Development Engineer", - "industry": "Telecommunications", - "cities": ["Kansas City"], - "_id": { - "$oid": "6674c30595590f9fd945954d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Singa", - "name": "Paul Kassar", - "email": "p.kassar@hotmail.com", - "linkedIn": "https://www.linkedin.com/in/paulkassar/", - "campus": "NYC", - "cohort": "3", - "jobTitle": "Engineer", - "industry": "Outdoor Recreation", - "cities": ["Philadelphia", "Bakersfield"], - "_id": { - "$oid": "6674c30595590f9fd945954e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "SiriusXM", - "name": "Ben Brower", - "email": "Bbrower1293@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ben-brower-80660073", - "campus": "NYC", - "cohort": "21", - "jobTitle": "Software Engineer III", - "industry": "Entertainment", - "cities": ["Paris", "Dallas", "Indianapolis"], - "_id": { - "$oid": "6674c30595590f9fd945954f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Skechers", - "name": "Christopher Saavedra", - "email": "cssaavedra56@gmail.com", - "linkedIn": "https://www.linkedin.com/in/chrisssaavedra/", - "campus": "LA", - "cohort": "22", - "jobTitle": "Front end engineer", - "industry": "Retail/Manufacturing", - "cities": ["Omaha"], - "_id": { - "$oid": "6674c30595590f9fd9459550" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Skematic", - "name": "Christina Or", - "email": "OR.CHRISTINA27@GMAIL.COM", - "linkedIn": "https://www.linkedin.com/in/christina-or", - "campus": "FTRI / CTRI", - "cohort": "9", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459551" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Sketch and Etch", - "name": "Kenny Lee", - "email": "kenkiblee@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kennethkiboklee/", - "campus": "LA / WCRI", - "cohort": "46", - "jobTitle": "Founding Engineer", - "industry": "Retail", - "cities": ["Durham", "Madison"], - "_id": { - "$oid": "6674c30595590f9fd9459552" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "SKF USA", - "name": "Steve Canavan", - "email": "stevenrosscanavan@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stevencanavan/", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Front End Developer", - "industry": "Manufacturing", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459553" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Skillshare Inc.", - "name": "Chris Lung", - "email": "c.lung95@gmail.com", - "linkedIn": "https://www.linkedin.com/in/chris-lung-5b69b2ba/", - "campus": "PTRI", - "cohort": "1", - "jobTitle": "Software Engineer", - "industry": "Edtech", - "cities": ["Cincinnati"], - "_id": { - "$oid": "6674c30595590f9fd9459554" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Skillstorm, contracting at Bank of America", - "name": "Adam Singer", - "email": "Spincycle01@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/adsing/", - "campus": "NYC", - "cohort": "10", - "jobTitle": "Application Programmer", - "industry": "Fintech", - "cities": ["Baltimore", "San Jose", "Memphis"], - "_id": { - "$oid": "6674c30595590f9fd9459555" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Skout Cybersecurity", - "name": "Garrett James", - "email": "garrettjames55@gmail.com", - "linkedIn": "https://www.linkedin.com/in/garrett-lamar-james/", - "campus": "NYC", - "cohort": "21", - "jobTitle": "Senior Software Engineer", - "industry": "Cybersecurity", - "cities": ["Paris", "Scottsdale"], - "_id": { - "$oid": "6674c30595590f9fd9459556" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Sky Betting and Gaming / Flutter Entertainment", - "name": "Robert Drake", - "email": "rmdrake8@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rmdrake8/", - "campus": "NYC / ECRI", - "cohort": "38", - "jobTitle": "Software Engineer", - "industry": "Sports/Sports betting", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459557" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Skylark Travel", - "name": "Giuseppe Valentino", - "email": "zepvalue@gmail.com", - "linkedIn": "https://www.linkedin.com/in/zepvalue/", - "campus": "NYC", - "cohort": "12", - "jobTitle": "Senior Full Stack Developer", - "industry": "Travel", - "cities": ["Cincinnati", "London", "Garland"], - "_id": { - "$oid": "6674c30595590f9fd9459558" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Skylight", - "name": "Michael Lu", - "email": "michaellu213@gmail.com", - "linkedIn": "https://www.linkedin.com/in/michael-lu/", - "campus": "LA", - "cohort": "27", - "jobTitle": "Full Stack Engineer", - "industry": "Consumer Goods", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459559" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Slalom", - "name": "Angela Franco", - "email": "angelajfranco18@gmail.com", - "linkedIn": "https://www.linkedin.com/in/angela-j-franco", - "campus": "LA", - "cohort": "43", - "jobTitle": "Software Engineer (Consultant)", - "industry": "Consulting", - "cities": ["Corpus Christi", "Oakland", "Columbus"], - "_id": { - "$oid": "6674c30595590f9fd945955a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "slalom", - "name": "Sara Kivikas", - "email": "sarakivikas@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sara-kivikas/", - "campus": "LA", - "cohort": "49", - "jobTitle": "Software Engineer", - "industry": "Consulting", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945955b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Slang.ai", - "name": "Kevin Luo", - "email": "luokev1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kevinluo117/", - "campus": "NYC", - "cohort": "17", - "jobTitle": "Software Engineer", - "industry": "Customer Service", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945955c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "SlyEco", - "name": "Nicolas Jackson", - "email": "nicolasljax@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nicjax/", - "campus": "NYOI", - "cohort": "2", - "jobTitle": "Lead Software Engineer", - "industry": "Energy/Cleantech/Greentech", - "cities": ["Oklahoma City"], - "_id": { - "$oid": "6674c30595590f9fd945955d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Smarkets", - "name": "Nicholas Healy", - "email": "nickrhealy@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nick-r-healy", - "campus": "LA", - "cohort": "36", - "jobTitle": "Frontend Engineer", - "industry": "Fintech", - "cities": ["Arlington"], - "_id": { - "$oid": "6674c30595590f9fd945955e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Smartbiz", - "name": "Dennis Lopez", - "email": "dnnis.lpz@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dennis-lopezsb/", - "campus": "LA", - "cohort": "40", - "jobTitle": "Frontend Engineer", - "industry": "Fintech", - "cities": ["Tampa"], - "_id": { - "$oid": "6674c30595590f9fd945955f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Smartrr", - "name": "Jeffrey Zheng", - "email": "zhengj98@outlook.com", - "linkedIn": "https://www.linkedin.com/in/jefzheng/", - "campus": "NYC", - "cohort": "26", - "jobTitle": "Software Developer", - "industry": "SaaS", - "cities": ["Mumbai", "Buffalo"], - "_id": { - "$oid": "6674c30595590f9fd9459560" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "SmartSheet", - "name": "Isaiah Delgado", - "email": "Isaiah.del621@gmail.com", - "linkedIn": "https://www.linkedin.com/in/isaiahdel/", - "campus": "FTRI", - "cohort": "4", - "jobTitle": "Software Engineer I", - "industry": "Computer Hardware & Software", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459561" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "SmartThings", - "name": "Samuel Carrasco", - "email": "Samhcarrasco@gmail.com", - "linkedIn": "https://www.linkedin.com/in/samuelhcarrasco", - "campus": "NYC", - "cohort": "31", - "jobTitle": "Associate Software Engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459562" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Snag Films", - "name": "Muhammad Sheikh", - "email": "muhammad.sheikh93@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/mhsheikh/", - "campus": "NYC", - "cohort": "3", - "jobTitle": "Software Developer", - "industry": "", - "cities": ["Philadelphia", "Portland", "Sรฃo Paulo"], - "_id": { - "$oid": "6674c30595590f9fd9459563" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Snap eHealth", - "name": "Jordan Hisel", - "email": "hiseljm@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jordan-h-3b7686121/", - "campus": "LA", - "cohort": "45", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": ["Anaheim", "Sydney", "San Antonio"], - "_id": { - "$oid": "6674c30595590f9fd9459564" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Snap Inc", - "name": "Christopher Guizzetti", - "email": "guizzettic@gmail.com", - "linkedIn": "https://www.linkedin.com/in/christopherguizzetti", - "campus": "LA", - "cohort": "38", - "jobTitle": "Software Engineer", - "industry": "Entertainment", - "cities": ["Norfolk"], - "_id": { - "$oid": "6674c30595590f9fd9459565" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Snap Inc", - "name": "Madeline Doctor", - "email": "madelinemdoctor@gmail.com", - "linkedIn": "https://www.linkedin.com/in/madeline-doctor/", - "campus": "NYOI", - "cohort": "1", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Detroit", "Charlotte", "Miami"], - "_id": { - "$oid": "6674c30595590f9fd9459566" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Snap Inc.", - "name": "Kirsten Yoon", - "email": "kirstenyoon@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kirstenyoon", - "campus": "LA", - "cohort": "42", - "jobTitle": "Software Engineer", - "industry": "camera, social media", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459567" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Socialive", - "name": "Alexander Infante", - "email": "alexinfante17@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alexander-infante/", - "campus": "LA", - "cohort": "35", - "jobTitle": "Platform Engineer", - "industry": "Video Streaming", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459568" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "SoftWriters", - "name": "Jane You", - "email": "janeyou94@gmail.com", - "linkedIn": "linkedin.com/in/janeyou94", - "campus": "LA / WCRI", - "cohort": "52", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459569" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Sojo", - "name": "Irina Khafizova", - "email": "irinakhafi@gmail.com", - "linkedIn": "https://www.linkedin.com/in/irina-khafizova/", - "campus": "NYC / ECRI", - "cohort": "38", - "jobTitle": "Frontend software engineer", - "industry": "Hospitality", - "cities": ["Sรฃo Paulo", "Atlanta", "Los Angeles"], - "_id": { - "$oid": "6674c30595590f9fd945956a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Solera Health", - "name": "Joel Park", - "email": "Joelpark97@gmail.com", - "linkedIn": "https://www.linkedin.com/in/joelprkk/", - "campus": "NYC", - "cohort": "28", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": ["Los Angeles"], - "_id": { - "$oid": "6674c30595590f9fd945956b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Solid State Scientific Corporation", - "name": "Tadd LeRocque", - "email": "t.lerocque@gmail.com", - "linkedIn": "https://www.linkedin.com/in/taddlerocque/", - "campus": "NYC / ECRI", - "cohort": "40", - "jobTitle": "DevOps Software Developer", - "industry": "Data/Analytics/Cloud", - "cities": ["Houston", "Phoenix", "Fresno"], - "_id": { - "$oid": "6674c30595590f9fd945956c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Solo", - "name": "Carly Yarnell", - "email": "carly.yarnell21@gmail.com", - "linkedIn": "https://www.linkedin.com/in/carly-yarnell/", - "campus": "NYC / ECRI", - "cohort": "32", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Lincoln", "Anaheim", "Madison"], - "_id": { - "$oid": "6674c30595590f9fd945956d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Solvent", - "name": "Adam Seery", - "email": "acseery@gmail.com", - "linkedIn": "www.linkedin.com/in/adam-seery", - "campus": "NYC / ECRI", - "cohort": "35", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Virginia Beach"], - "_id": { - "$oid": "6674c30595590f9fd945956e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "SOMA Global", - "name": "Adam Moore", - "email": "moore76sc@gmail.com", - "linkedIn": "https://www.linkedin.com/in/adam-moore-se/", - "campus": "FTRI", - "cohort": "6", - "jobTitle": "Platform Engineer", - "industry": "Public Safety", - "cities": ["Newark", "Laredo", "San Antonio"], - "_id": { - "$oid": "6674c30595590f9fd945956f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Sonos", - "name": "Austin Andrews", - "email": "austinandrews@berkeley.edu", - "linkedIn": "https://www.linkedin.com/in/austinandrews17", - "campus": "FTRI", - "cohort": "7", - "jobTitle": "Release Engineer", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459570" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Sonos", - "name": "Alexander Nance", - "email": "balexn@gmail.com", - "linkedIn": "https://www.linkedin.com/in/balexandernance", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Senior Software Engineer", - "industry": "Consumer Electronics", - "cities": ["Tucson", "Louisville", "Corpus Christi"], - "_id": { - "$oid": "6674c30595590f9fd9459571" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Sonr", - "name": "Ian Judd", - "email": "Iankimjudd@gmail.com", - "linkedIn": "https://www.linkedin.com/in/iankjudd/", - "campus": "PTRI", - "cohort": "3", - "jobTitle": "Full Stack Developer", - "industry": "Web3", - "cities": ["Indianapolis"], - "_id": { - "$oid": "6674c30595590f9fd9459572" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Sourcepoint Technologies", - "name": "Adam straus", - "email": "a.straus1@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "18", - "jobTitle": "Software Engineer", - "industry": "SaaS", - "cities": ["Tokyo", "Paris", "Arlington"], - "_id": { - "$oid": "6674c30595590f9fd9459573" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Southern California Edison (via Sharp Decisions)", - "name": "Jie Yun (Catherine) Cheng", - "email": "chengjieyun59@gmail.com", - "linkedIn": "https://www.linkedin.com/in/cat-cheng/", - "campus": "LA", - "cohort": "33", - "jobTitle": "Sr. Full Stack Developer", - "industry": "Energy", - "cities": ["Raleigh"], - "_id": { - "$oid": "6674c30595590f9fd9459574" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "SparkCognition", - "name": "Harvey Nguyen", - "email": "harveynwynn@gmail.com", - "linkedIn": "https://www.linkedin.com/in/harveynwynn/", - "campus": "LA", - "cohort": "47", - "jobTitle": "Software Engineer II", - "industry": "Artificial intelligence", - "cities": ["Glendale", "Buffalo", "Kansas City"], - "_id": { - "$oid": "6674c30595590f9fd9459575" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "SparrowFi", - "name": "Alex Barbazan", - "email": "Agbarbazan@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "29", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Sacramento"], - "_id": { - "$oid": "6674c30595590f9fd9459576" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Spatial Data Logic", - "name": "Thomas Lukasiewicz", - "email": "tlukasiewicz89@gmail.com", - "linkedIn": "https://www.linkedin.com/feed/", - "campus": "NYC / ECRI", - "cohort": "34", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": ["Jersey City", "Oklahoma City", "San Jose"], - "_id": { - "$oid": "6674c30595590f9fd9459577" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Spearmint", - "name": "Chloe Aribo", - "email": "chloearibo92@gmail.com", - "linkedIn": "https://www.linkedin.com/in/chloe-aribo/", - "campus": "LA", - "cohort": "33", - "jobTitle": "Senior Software Engineer", - "industry": "Security", - "cities": ["Glendale", "Sรฃo Paulo"], - "_id": { - "$oid": "6674c30595590f9fd9459578" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "SpecTrust", - "name": "Tehya Rassman", - "email": "tehyaarassman@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tehya-rassman/", - "campus": "FTRI", - "cohort": "5", - "jobTitle": "Software Engineer", - "industry": "Cybercrime", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459579" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Specturm", - "name": "Sanjay Lavingia", - "email": "SanjayLavingia@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sanjay-lavingia/", - "campus": "LA", - "cohort": "38", - "jobTitle": "Software Engineer", - "industry": "Telecom", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945957a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Spirent Communications", - "name": "Dylan Bury", - "email": "dylanbury@protonmail.com", - "linkedIn": "https://www.linkedin.com/in/dylanbury/", - "campus": "LA", - "cohort": "42", - "jobTitle": "Software Engineer", - "industry": "Telecommunications", - "cities": ["Arlington", "Saint Paul"], - "_id": { - "$oid": "6674c30595590f9fd945957b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Splash Financial", - "name": "Bahram Bagherzadeh", - "email": "bjbagher@gmail.com", - "linkedIn": "https://www.linkedin.com/in/bbagher/", - "campus": "NYC", - "cohort": "15", - "jobTitle": "Senior Software Engineer", - "industry": "Finance", - "cities": ["Arlington"], - "_id": { - "$oid": "6674c30595590f9fd945957c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Splunk", - "name": "Caroline Kimball", - "email": "kimballcaroline@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kimballcaroline/", - "campus": "NYC / ECRI", - "cohort": "37", - "jobTitle": "Software Engineer", - "industry": "Security/Data Privacy", - "cities": ["Newark", "Los Angeles", "Stockton"], - "_id": { - "$oid": "6674c30595590f9fd945957d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Spotify", - "name": "Aaron Bart-Addison", - "email": "abaddison16@gmail.com", - "linkedIn": "https://www.linkedin.com/in/abaddison16/", - "campus": "NYC", - "cohort": "6", - "jobTitle": "Web Engineer II", - "industry": "", - "cities": ["Toledo", "Orlando", "Santa Ana"], - "_id": { - "$oid": "6674c30595590f9fd945957e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Spotify", - "name": "Amanda Flink", - "email": "avflinkette@gmail.com", - "linkedIn": "https://www.linkedin.com/in/amandaflink/", - "campus": "NYC", - "cohort": "12", - "jobTitle": "Senior Web Engineer", - "industry": "Entertainment", - "cities": ["Toledo", "Lincoln", "Fort Wayne"], - "_id": { - "$oid": "6674c30595590f9fd945957f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Spotify", - "name": "Chris Kopcow", - "email": "ckopcow@gmail.com", - "linkedIn": "https://www.linkedin.com/in/christopherkopcow/", - "campus": "NYC", - "cohort": "21", - "jobTitle": "Technical Writer", - "industry": "Entertainment", - "cities": ["Mexico City", "London"], - "_id": { - "$oid": "6674c30595590f9fd9459580" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Spotify", - "name": "Trevor Gray", - "email": "trevor.m.gray@outlook.com", - "linkedIn": "https://www.linkedin.com/mwlite/in/trev-gray", - "campus": "FTRI", - "cohort": "7", - "jobTitle": "Frontend Engineer", - "industry": "Entertainment", - "cities": ["Tucson", "Tulsa"], - "_id": { - "$oid": "6674c30595590f9fd9459581" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Spring Health", - "name": "Kassandra Meyer", - "email": "kassandram022@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kassandram/", - "campus": "LA", - "cohort": "31", - "jobTitle": "Frontend Engineer", - "industry": "Healthcare", - "cities": ["El Paso", "Chicago"], - "_id": { - "$oid": "6674c30595590f9fd9459582" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "SpringHealth", - "name": "Matthew Huang", - "email": "matthewhuang24@gmail.com", - "linkedIn": "https://www.linkedin.com/in/matthew-huang/", - "campus": "LA", - "cohort": "46", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": ["Miami", "Cincinnati"], - "_id": { - "$oid": "6674c30595590f9fd9459583" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Spruce", - "name": "Edward Ryan", - "email": "15ryane@gmail.com", - "linkedIn": "https://www.linkedin.com/in/edward-ryan/", - "campus": "LA", - "cohort": "27", - "jobTitle": "Software Engineer", - "industry": "Hospitality Services", - "cities": ["Lincoln", "Norfolk", "San Francisco"], - "_id": { - "$oid": "6674c30595590f9fd9459584" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "SPS Health", - "name": "Mark Teets", - "email": "markteets@gmail.com", - "linkedIn": "https://www.linkedin.com/in/markteets/", - "campus": "FTRI / CTRI", - "cohort": "15", - "jobTitle": "Application Developer", - "industry": "Healthtech/Healthcare", - "cities": ["Chandler", "Chesapeake"], - "_id": { - "$oid": "6674c30595590f9fd9459585" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Spur Reply", - "name": "Jeffrey Pettis", - "email": "jeffrey.pettis@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jeffreypettis/", - "campus": "PTRI", - "cohort": "9", - "jobTitle": "Senior Software Engineer", - "industry": "Fintech", - "cities": ["Glendale", "Oakland", "San Antonio"], - "_id": { - "$oid": "6674c30595590f9fd9459586" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Square", - "name": "Christopher Akinrinade", - "email": "chris.akinrinade@gmail.com", - "linkedIn": "https://www.linkedin.com/in/christopher-akinrinade/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Glendale", "Louisville"], - "_id": { - "$oid": "6674c30595590f9fd9459587" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Square", - "name": "Juan Espinoza", - "email": "espinozajuan562@gmail.com", - "linkedIn": "https://www.linkedin.com/in/espinoza-juan/", - "campus": "LA", - "cohort": "30", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["St. Louis", "Chula Vista", "Miami"], - "_id": { - "$oid": "6674c30595590f9fd9459588" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Square Root, Inc.", - "name": "Angel Vega", - "email": "angelvega85@gmail.com", - "linkedIn": "https://www.linkedin.com/in/angel-e-vega", - "campus": "LA", - "cohort": "29", - "jobTitle": "Software Engineer", - "industry": "Information Technology", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459589" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "STA Group", - "name": "Gabriel Machado", - "email": "bielchristo@hotmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "42", - "jobTitle": "UI Engineer", - "industry": "Consulting", - "cities": ["San Jose", "Los Angeles", "Norfolk"], - "_id": { - "$oid": "6674c30595590f9fd945958a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Stacked Invest", - "name": "Ross Lamerson", - "email": "ross.lamerson@gmail.com", - "linkedIn": "https://www.linkedin.com/in/lamerson28/", - "campus": "FTRI", - "cohort": "5", - "jobTitle": "Software Engineer - Front End", - "industry": "Cryptocurrency / Fintech", - "cities": ["Jersey City", "Gilbert", "Laredo"], - "_id": { - "$oid": "6674c30595590f9fd945958b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Standard Bots", - "name": "Arshia Masih", - "email": "arshia.masih@gmail.com", - "linkedIn": "https://www.linkedin.com/in/arshiamasih/", - "campus": "LA", - "cohort": "29", - "jobTitle": "Software Engineer", - "industry": "Robotics / Industrial Automation", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945958c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Starbucks", - "name": "Sam Carter", - "email": "sammahcarter@gmail.com", - "linkedIn": "https://linkedin.com/in/cartersamj", - "campus": "LA / WCRI", - "cohort": "50", - "jobTitle": "Software Engineer", - "industry": "Restaurant, Food, and Beverage", - "cities": ["Seattle"], - "_id": { - "$oid": "6674c30595590f9fd945958d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Stardust", - "name": "James Tu", - "email": "tu.james@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jamestu2000/", - "campus": "LA", - "cohort": "21", - "jobTitle": "Full Stack Engineer", - "industry": "", - "cities": ["Buffalo", "Columbus"], - "_id": { - "$oid": "6674c30595590f9fd945958e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "State Farm", - "name": "James Manahan", - "email": "manahanjames@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/jamesmanahan/", - "campus": "LA", - "cohort": "34", - "jobTitle": "Software Developer", - "industry": "Insurance", - "cities": ["Oklahoma City"], - "_id": { - "$oid": "6674c30595590f9fd945958f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Steel Perlot", - "name": "Morris Kolman", - "email": "morristskolman@gmail.com", - "linkedIn": "linkedin.com/in/morrykolman", - "campus": "NYOI", - "cohort": "2", - "jobTitle": "Initiative Lead: Social Media", - "industry": "Software / Tech", - "cities": ["Pittsburgh", "St. Petersburg"], - "_id": { - "$oid": "6674c30595590f9fd9459590" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "SteelHouse", - "name": "Jordan Betzer", - "email": "jordanbetzer@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jordanbetzer/", - "campus": "LA", - "cohort": "26", - "jobTitle": "Software Engineer - Backend", - "industry": "Healthcare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459591" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "SteelHouse", - "name": "Taylor Burrington", - "email": "taylor.burrington@gmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "30", - "jobTitle": "Software Engineer", - "industry": "Ad Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459592" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Stem Disintermedia Inc.", - "name": "Mia Huynh", - "email": "mia@stem.is", - "linkedIn": "https://www.linkedin.com/in/miamyhuynh/", - "campus": "LA", - "cohort": "22", - "jobTitle": "Software Engineer", - "industry": "", - "cities": ["Columbus", "Miami"], - "_id": { - "$oid": "6674c30595590f9fd9459593" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Storyblocks", - "name": "Eric Gomez", - "email": "Ergomez0201@gmail.com", - "linkedIn": "https://www.linkedin.com/in/eric-gomez", - "campus": "LA / WCRI", - "cohort": "48", - "jobTitle": "Senior Software Engineer", - "industry": "Software / Tech", - "cities": ["Jacksonville", "Long Beach"], - "_id": { - "$oid": "6674c30595590f9fd9459594" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Streamlit", - "name": "Sam Haar", - "email": "samhaar@gmail.com", - "linkedIn": "https://www.linkedin.com/in/samhaar/", - "campus": "NYC", - "cohort": "21", - "jobTitle": "Software Engineer", - "industry": "ML / Data / Open Source", - "cities": ["Aurora"], - "_id": { - "$oid": "6674c30595590f9fd9459595" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Stride", - "name": "Kaitlin Zhang", - "email": "Kaitlin.Zhang@owasp.org", - "linkedIn": "https://www.linkedin.com/in/kaizengrowth/", - "campus": "FTRI", - "cohort": "9", - "jobTitle": "Software Engineer, Writer/Instructor", - "industry": "Software / Tech", - "cities": ["Oakland", "Houston", "San Francisco"], - "_id": { - "$oid": "6674c30595590f9fd9459596" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Stride Health, Inc.", - "name": "Ben Kwak", - "email": "benjamin.h.kwak@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ben-kwak/", - "campus": "LA", - "cohort": "37", - "jobTitle": "Software Engineer, Full Stack", - "industry": "Insurance", - "cities": ["Tokyo", "St. Petersburg"], - "_id": { - "$oid": "6674c30595590f9fd9459597" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Strider Technologies", - "name": "Timothy Chang", - "email": "timchang87@gmail.com", - "linkedIn": "https://www.linkedin.com/in/timchang87", - "campus": "PTRI", - "cohort": "9", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": ["Anchorage"], - "_id": { - "$oid": "6674c30595590f9fd9459598" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Stroz Friedberg", - "name": "Madalyn Baehre", - "email": "mmbaehre@gmail.com", - "linkedIn": "https://www.linkedin.com/in/madalynbaehre/", - "campus": "LA", - "cohort": "20", - "jobTitle": "Full-Stack Software Developer", - "industry": "", - "cities": ["Colorado Springs", "Buffalo", "Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd9459599" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Stuff", - "name": "Joseph Toledano", - "email": "joseph.a.toledano@gmail.com", - "linkedIn": "https://www.linkedin.com/in/joetoledano/", - "campus": "NYC", - "cohort": "23", - "jobTitle": "Software Developer", - "industry": "On-Demand Work", - "cities": ["Chula Vista"], - "_id": { - "$oid": "6674c30595590f9fd945959a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Stuller, Inc.", - "name": "Sarah Moosa", - "email": "14sbethm@gmail.com", - "linkedIn": "https://linkedin.com/in/sarah-e-moosa", - "campus": "FTRI / CTRI", - "cohort": "11", - "jobTitle": "Full Stack Developer", - "industry": "Retail", - "cities": ["Tampa", "San Jose", "El Paso"], - "_id": { - "$oid": "6674c30595590f9fd945959b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Stylitics", - "name": "Tania Lind", - "email": "tania.o.lind@gmail.com", - "linkedIn": "https://www.linkedin.com/in/lind-tania/", - "campus": "LA", - "cohort": "39", - "jobTitle": "Senior Frontend Engineer", - "industry": "Fashion", - "cities": ["Fort Worth"], - "_id": { - "$oid": "6674c30595590f9fd945959c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Suki AI", - "name": "Edward Shei", - "email": "edwardshei@gmail.com", - "linkedIn": "https://www.linkedin.com/in/edwardshei/", - "campus": "LA", - "cohort": "39", - "jobTitle": "Software Engineer", - "industry": "Medical Transcription", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945959d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Surfside", - "name": "Alec Below", - "email": "alecbelow@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "17", - "jobTitle": "Software Engineer - Platform Integration", - "industry": "Advertising", - "cities": ["Lubbock"], - "_id": { - "$oid": "6674c30595590f9fd945959e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Suuchi.com", - "name": "David Kim", - "email": "davidkim024@gmail.com", - "linkedIn": "https://www.linkedin.com/in/davidkim024/", - "campus": "NYC", - "cohort": "11", - "jobTitle": "Senior Full Stack Engineer", - "industry": "Manufacturing", - "cities": ["Saint Paul", "Stockton", "Mexico City"], - "_id": { - "$oid": "6674c30595590f9fd945959f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Sweetgreen", - "name": "Emilia Brizuela-Nothaft", - "email": "emiliacarmel@gmail.com", - "linkedIn": "https://www.linkedin.com/in/emilia-brizuela-nothaft/", - "campus": "LA", - "cohort": "26", - "jobTitle": "Software Engineer", - "industry": "Food", - "cities": ["Albuquerque", "St. Petersburg"], - "_id": { - "$oid": "6674c30595590f9fd94595a0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Sweetgreen", - "name": "Melody Chai", - "email": "melodychai2@gmail.com", - "linkedIn": "https://www.linkedin.com/in/melodychai/", - "campus": "LA", - "cohort": "26", - "jobTitle": "Engineer I", - "industry": "Fast Casual Dining", - "cities": ["Cincinnati", "Columbus"], - "_id": { - "$oid": "6674c30595590f9fd94595a1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Swisher International, Inc", - "name": "John Howell", - "email": "tsjohnnyh@gmail.com", - "linkedIn": "https://www.linkedin.com/in/johnny-r-howell/", - "campus": "FTRI / CTRI", - "cohort": "13", - "jobTitle": "eCommerce Development Supervisor", - "industry": "Other", - "cities": ["Aurora", "Tampa"], - "_id": { - "$oid": "6674c30595590f9fd94595a2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Swoon", - "name": "Tyler Wilson", - "email": "wilsontyler95@gmail.com", - "linkedIn": "https://www.linkedin.com/in/twilsontech", - "campus": "FTRI / CTRI", - "cohort": "10", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": ["Henderson", "Jersey City"], - "_id": { - "$oid": "6674c30595590f9fd94595a3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Synapse FI", - "name": "Mike Huynh", - "email": "mhuynh517@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mikehuynh28/", - "campus": "LA", - "cohort": "28", - "jobTitle": "Front-End Engineer II", - "industry": "Fintech", - "cities": ["Sacramento", "Colorado Springs", "Chandler"], - "_id": { - "$oid": "6674c30595590f9fd94595a4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "T-Mobile", - "name": "Khang Sabre-Nguyen", - "email": "Klsabren.7@gmail.com", - "linkedIn": "https://www.linkedin.com/in/khang-sabre-nguyen/", - "campus": "PTRI", - "cohort": "7", - "jobTitle": "Software Engineer", - "industry": "Telecommunications", - "cities": ["St. Louis", "Glendale"], - "_id": { - "$oid": "6674c30595590f9fd94595a5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "T-mobile", - "name": "Miaowen Zeng", - "email": "zmw0525@gmail.com", - "linkedIn": "www.linkedin.com/in/miaowen-zeng", - "campus": "FTRI / CTRI", - "cohort": "7", - "jobTitle": "Associate Software Engineer", - "industry": "Telecommunications", - "cities": ["Portland", "New Orleans", "Lincoln"], - "_id": { - "$oid": "6674c30595590f9fd94595a6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "T. Rowe Price", - "name": "Liam Fontes", - "email": "liamfontes1244@gmail.com", - "linkedIn": "https://www.linkedin.com/in/liam-fontes/", - "campus": "NYC", - "cohort": "28", - "jobTitle": "Associate Software Engineer", - "industry": "Fintech", - "cities": ["Orlando", "Tokyo"], - "_id": { - "$oid": "6674c30595590f9fd94595a7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "T. Rowe Price", - "name": "Robert Du", - "email": "robert.c.du@gmail.com", - "linkedIn": "https://www.linkedin.com/in/robert-du/", - "campus": "NYC", - "cohort": "26", - "jobTitle": "Mid-Level Software Engineer (contract-to-hire)", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595a8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Tailored Brands", - "name": "Viet Nguyen", - "email": "n.vietqb@gmail.com", - "linkedIn": "https://www.linkedin.com/in/viet-nguyen-2280491b2/", - "campus": "LA", - "cohort": "45", - "jobTitle": "UI Engineer", - "industry": "Retail", - "cities": ["Sรฃo Paulo", "Tucson"], - "_id": { - "$oid": "6674c30595590f9fd94595a9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Take Command Health", - "name": "Katie Janzen", - "email": "katiekennerjanzen@gmail.com", - "linkedIn": "https://www.linkedin.com/in/katie-janzen/", - "campus": "NYC", - "cohort": "32", - "jobTitle": "Front End Developer", - "industry": "Insurance", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595aa" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Talage", - "name": "Parker Hutcheson", - "email": "pdhutcheson@gmail.com", - "linkedIn": "https://www.linkedin.com/in/parkerhutcheson/", - "campus": "FTRI", - "cohort": "4", - "jobTitle": "Senior Software Engineer", - "industry": "Insurtech", - "cities": ["Austin"], - "_id": { - "$oid": "6674c30595590f9fd94595ab" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Tallied", - "name": "Abeer Faizan", - "email": "abeerfaizan@gmail.com", - "linkedIn": "https://www.linkedin.com/in/abeerfaizan/", - "campus": "LA", - "cohort": "47", - "jobTitle": "Software Engineer 2", - "industry": "Financial Services & Digital Payments", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595ac" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Tandem Chat (Tandem Communications Inc.)", - "name": "John Jongsun Suh", - "email": "john.jongsun.suh@pm.me", - "linkedIn": "https://linkedin.com/in/john-jongsun-suh", - "campus": "LA", - "cohort": "44", - "jobTitle": "Software Engineer", - "industry": "Communication/Productivity Software", - "cities": ["San Francisco", "Winston-Salem"], - "_id": { - "$oid": "6674c30595590f9fd94595ad" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Tapestry", - "name": "Natalie Umanzor", - "email": "umanzor2949@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nmczormick/", - "campus": "NYC", - "cohort": "13", - "jobTitle": "Software Engineer", - "industry": "E-Commerce", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595ae" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Target", - "name": "Courtney Doss", - "email": "777.catalyst@gmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "40", - "jobTitle": "Software Engineer", - "industry": "Retail", - "cities": ["Omaha", "Laredo"], - "_id": { - "$oid": "6674c30595590f9fd94595af" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Tatari", - "name": "Natalie Klein", - "email": "natklein3@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nataliesklein/", - "campus": "LA", - "cohort": "28", - "jobTitle": "Software Engineer", - "industry": "TV ads", - "cities": ["Mexico City"], - "_id": { - "$oid": "6674c30595590f9fd94595b0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "TaxNow", - "name": "Tanner Lyon", - "email": "Tannerhlyon@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tannerhlyon", - "campus": "LA / WCRI", - "cohort": "51", - "jobTitle": "Software Engineer", - "industry": "Business Tech/Enterprise Tech", - "cities": ["St. Louis"], - "_id": { - "$oid": "6674c30595590f9fd94595b1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "TaxSlayer", - "name": "Katherine Marrow", - "email": "kmcromer1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/katherine-marrow/", - "campus": "PTRI", - "cohort": "9", - "jobTitle": "Full Stack Developer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595b2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Teachers Pay Teachers", - "name": "Courtney Kwong", - "email": "cwkwong95@gmail.com", - "linkedIn": "https://www.linkedin.com/in/courtneywkwong/", - "campus": "NYC", - "cohort": "13", - "jobTitle": "Full Stack Engineer", - "industry": "Media", - "cities": ["El Paso", "Newark", "Fort Worth"], - "_id": { - "$oid": "6674c30595590f9fd94595b3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Tech Holding", - "name": "Pablo Lee", - "email": "lee.pablo.e@gmail.com", - "linkedIn": "https://linkedin.com/in/pablo-lee/", - "campus": "LA", - "cohort": "24", - "jobTitle": "Software Engineer", - "industry": "Media & Advertisement", - "cities": ["Scottsdale"], - "_id": { - "$oid": "6674c30595590f9fd94595b4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "TechEmpower", - "name": "Nick Stillman", - "email": "nick.edward.stillman@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nick-e-stillman/", - "campus": "NYC", - "cohort": "24", - "jobTitle": "Programmer I", - "industry": "Software Development/Consulting", - "cities": ["Wichita", "Miami"], - "_id": { - "$oid": "6674c30595590f9fd94595b5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Technergetics", - "name": "Cody Schexnider", - "email": "codydschexnider@gmail.com", - "linkedIn": "https://www.linkedin.com/in/schexnider/", - "campus": "FTRI / CTRI", - "cohort": "8", - "jobTitle": "Junior Software Engineer", - "industry": "Software / Tech", - "cities": ["Austin", "St. Petersburg", "San Francisco"], - "_id": { - "$oid": "6674c30595590f9fd94595b6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Technergetics", - "name": "Angel Giron", - "email": "angel.c.giron1@gmail.con", - "linkedIn": "https://www.linkedin.com/in/acgiron/", - "campus": "FTRI / CTRI", - "cohort": "9", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": ["Newark", "St. Petersburg", "Virginia Beach"], - "_id": { - "$oid": "6674c30595590f9fd94595b7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "TEKsystems for AMEX", - "name": "Connor Rose Delisle", - "email": "connorrose.delisle@gmail.com", - "linkedIn": "https://www.linkedin.com/in/connorrosedelisle/", - "campus": "LA", - "cohort": "37", - "jobTitle": "Developer", - "industry": "Banking", - "cities": ["Long Beach", "Nashville", "Toledo"], - "_id": { - "$oid": "6674c30595590f9fd94595b8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Teleport", - "name": "Cole Styron", - "email": "colestyron@gmail.com", - "linkedIn": "https://www.linkedin.com/in/cole-styron/", - "campus": "LA", - "cohort": "40", - "jobTitle": "Software Engineer II", - "industry": "Tech", - "cities": ["Albuquerque"], - "_id": { - "$oid": "6674c30595590f9fd94595b9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Tempus", - "name": "Eterna tsai", - "email": "One.eternity@gmail.com", - "linkedIn": "https://www.linkedin.com/in/eterna/", - "campus": "NYC", - "cohort": "7", - "jobTitle": "Software engineer", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595ba" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Tend", - "name": "Christopher Johnson", - "email": "cjbeats@gmail.com", - "linkedIn": "https://www.linkedin.com/in/thecjjohnson/", - "campus": "LA", - "cohort": "39", - "jobTitle": "Junior Software Developer", - "industry": "Dentistry", - "cities": ["Cleveland"], - "_id": { - "$oid": "6674c30595590f9fd94595bb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "Terminus", - "name": "Jonathan Ascencio", - "email": "Jonascencio1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jonascencio/", - "campus": "LA", - "cohort": "39", - "jobTitle": "Software Engineer", - "industry": "Marketing Tevh", - "cities": ["Omaha", "Norfolk"], - "_id": { - "$oid": "6674c30595590f9fd94595bc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "The Action Network", - "name": "Diana Li", - "email": "dianalicarrasco@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dianalicarrasco/", - "campus": "NYC", - "cohort": "31", - "jobTitle": "Software Engineer II", - "industry": "Entertainment", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595bd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "The Action Network", - "name": "Mahmoud Hmaidi", - "email": "mhmaidi789@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mahmoud-hmaidi-mo/", - "campus": "LA", - "cohort": "42", - "jobTitle": "Software Engineer II", - "industry": "Entertainment", - "cities": ["Toronto"], - "_id": { - "$oid": "6674c30595590f9fd94595be" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "The Charles Stark Draper Laboratory, Inc.", - "name": "Kelsey Flynn", - "email": "flynn.kelseyelizabeth@gmail.com", - "linkedIn": "www.linkedin.com/in/kelseyeflynn/", - "campus": "PTRI", - "cohort": "3", - "jobTitle": "Member of Technical Staff in Fullstack Web Group", - "industry": "Research", - "cities": ["Lincoln"], - "_id": { - "$oid": "6674c30595590f9fd94595bf" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "The Coates Group", - "name": "Brandon Tran", - "email": "btran140@gmail.com", - "linkedIn": "https://www.linkedin.com/in/btran140", - "campus": "FTRI / CTRI", - "cohort": "13", - "jobTitle": "Typescript Full Stack Engineer", - "industry": "Software / Tech", - "cities": ["Chula Vista", "Fort Worth"], - "_id": { - "$oid": "6674c30595590f9fd94595c0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "The Cru", - "name": "Brooke Luro", - "email": "lurob@me.com", - "linkedIn": "https://www.linkedin.com/in/brooke-luro-4413046a/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Software Engineer", - "industry": "Professional Training & Coaching", - "cities": ["Louisville", "Cleveland", "Orlando"], - "_id": { - "$oid": "6674c30595590f9fd94595c1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "The Edge Treatment Center", - "name": "Joey Ma", - "email": "joeyma@gmail.com", - "linkedIn": "https://www.linkedin.com/in/joeyma/", - "campus": "LA / WCRI", - "cohort": "47", - "jobTitle": "Web Developer", - "industry": "Healthcare", - "cities": ["Santa Ana"], - "_id": { - "$oid": "6674c30595590f9fd94595c2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "The Farm Project", - "name": "Quoc Bui", - "email": "quocbui@gmail.com", - "linkedIn": "https://www.linkedin.com/in/buiquoc/", - "campus": "LA", - "cohort": "26", - "jobTitle": "Lead Web UI Engineer?", - "industry": "Telecommunications", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595c3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "The Farmerโ€™s Dog", - "name": "Willem Rosenthal", - "email": "willemrosenthal@gmail.com", - "linkedIn": "https://www.linkedin.com/in/willem-rosenthal", - "campus": "NYOI", - "cohort": "1", - "jobTitle": "Software Engineer III", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595c4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "the guarantors", - "name": "Dmitriy Levy", - "email": "dmitriylevy01@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dmitriy-levy/", - "campus": "NYC", - "cohort": "12", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595c5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "The Home Depot", - "name": "Eric Han", - "email": "eric.j.h92@gmail.com", - "linkedIn": "https://www.linkedin.com/in/eric-j-han/", - "campus": "LA / WCRI", - "cohort": "48", - "jobTitle": "Front-End Developer", - "industry": "Retail", - "cities": ["Saint Paul"], - "_id": { - "$oid": "6674c30595590f9fd94595c6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "The Home Depot", - "name": "Max Nikitin", - "email": "teachandtravelcn@gmail.com", - "linkedIn": "https://www.linkedin.com/in/maxnikitin23/", - "campus": "LA", - "cohort": "40", - "jobTitle": "Full Stack Software Engineer", - "industry": "Construction/retail", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595c7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "The New York Times", - "name": "Karl Eden", - "email": "karl94e@gmail.com", - "linkedIn": "www.linkedin.com/in/karleden", - "campus": "FTRI / CTRI", - "cohort": "10", - "jobTitle": "Software Engineer", - "industry": "News/Entertainment/Streaming Platforms", - "cities": ["Indianapolis", "Mexico City"], - "_id": { - "$oid": "6674c30595590f9fd94595c8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "The New Yorker", - "name": "Julien Devlin", - "email": "juliendevlin@gmail.com", - "linkedIn": "https://www.linkedin.com/in/juliendevlin/", - "campus": "NYC / ECRI", - "cohort": "38", - "jobTitle": "Software Developer", - "industry": "News/Entertainment/Streaming Platforms", - "cities": ["Saint Paul", "Mexico City", "Cleveland"], - "_id": { - "$oid": "6674c30595590f9fd94595c9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "The Perlman Clinic", - "name": "Louis Sheid", - "email": "louisxsheid@gmail.com", - "linkedIn": "https://www.linkedin.com/in/louisxsheid/", - "campus": "LA", - "cohort": "36", - "jobTitle": "Full Stack Developer", - "industry": "Healthcare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595ca" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "The Prospector Theater", - "name": "Kelly Cuevas", - "email": "cuev73@live.com", - "linkedIn": "https://www.linkedin.com/in/kelly-cuevas/", - "campus": "NYC / ECRI", - "cohort": "36", - "jobTitle": "Lead Frontend Engineer", - "industry": "Social Impact/Nonprofit", - "cities": ["Philadelphia", "Wichita"], - "_id": { - "$oid": "6674c30595590f9fd94595cb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "The Trevor Project / Tecnolochicas Pro", - "name": "Miranda Jaramillo Morales", - "email": "mirandajaramillomorales@gmail.com", - "linkedIn": "https://www.linkedin.com/in/miranda-jaramillo/", - "campus": "FTRI / CTRI", - "cohort": "9", - "jobTitle": "Software Engineer II / Software Engineering Mentor", - "industry": "Software / Tech", - "cities": ["Madison", "Sydney"], - "_id": { - "$oid": "6674c30595590f9fd94595cc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "The Walt Disney Company", - "name": "Gabriel Machado", - "email": "bielchristo@hotmail.com", - "linkedIn": "https://www.linkedin.com/in/bielchristo/", - "campus": "LA", - "cohort": "41", - "jobTitle": "Software Engineer", - "industry": "Entertainment", - "cities": ["Detroit", "Kansas City"], - "_id": { - "$oid": "6674c30595590f9fd94595cd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.070Z" - }, - "__v": 0 - }, - { - "company": "The Walt Disney Company", - "name": "Ryan London", - "email": "ryel590@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ryanlondon/", - "campus": "LA", - "cohort": "18", - "jobTitle": "Senior Software Engineer", - "industry": "IT", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595ce" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "The Walt Disney Company", - "name": "Shane Taylor", - "email": "shaneallantaylor@gmail.com", - "linkedIn": "https://www.linkedin.com/in/shane-allan-taylor/", - "campus": "LA", - "cohort": "27", - "jobTitle": "Software Engineer", - "industry": "Entertainment/Media", - "cities": ["Irving", "Cincinnati", "Arlington"], - "_id": { - "$oid": "6674c30595590f9fd94595cf" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "The Walt Disney Company", - "name": "Yurii Shchyrba", - "email": "yurashchyrba@gmail.com", - "linkedIn": "https://www.linkedin.com/in/yuriishchyrba/", - "campus": "NYC", - "cohort": "31", - "jobTitle": "Software Engineer II", - "industry": "Software / Tech", - "cities": ["Scottsdale"], - "_id": { - "$oid": "6674c30595590f9fd94595d0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "The Washington Post", - "name": "Christelle Desire", - "email": "Cdesire20@gmail.com", - "linkedIn": "https://www.linkedin.com/in/christelle-desire/", - "campus": "LA", - "cohort": "39", - "jobTitle": "Full stack engineer", - "industry": "Newsroom", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595d1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "The Wing", - "name": "Xaria Kirtikar", - "email": "xariak91@gmail.com", - "linkedIn": "https://www.linkedin.com/in/xaria/", - "campus": "NYC", - "cohort": "13", - "jobTitle": "Software Engineer", - "industry": "Co-working spaces", - "cities": ["Bakersfield", "Long Beach", "Tokyo"], - "_id": { - "$oid": "6674c30595590f9fd94595d2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "The X Company", - "name": "Roy Quintana", - "email": "rolandquintana1991@gmail.com", - "linkedIn": "https://www.linkedin.com/in/royquintana/", - "campus": "LA", - "cohort": "28", - "jobTitle": "Senior Software Engineer", - "industry": "Real Estate", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595d3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "TheMuse", - "name": "Franklin pinnock", - "email": "pinnockf@gmail.com", - "linkedIn": "https://www.linkedin.com/in/pinnockf/", - "campus": "NYC", - "cohort": "9", - "jobTitle": "Full-Stack Engineer", - "industry": "Robotics", - "cities": ["San Jose", "Beijing"], - "_id": { - "$oid": "6674c30595590f9fd94595d4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Thomson Reuters", - "name": "Li Cheng", - "email": "lilybearcheng@gmail.com", - "linkedIn": "https://www.linkedin.com/in/li-cheng-76890540/", - "campus": "LA / WCRI", - "cohort": "50", - "jobTitle": "Integration Engineer", - "industry": "IT Services", - "cities": ["Detroit"], - "_id": { - "$oid": "6674c30595590f9fd94595d5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "ThreeKit", - "name": "Alison Fay", - "email": "aliglass13@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alison-fay/", - "campus": "NYC", - "cohort": "31", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Tucson"], - "_id": { - "$oid": "6674c30595590f9fd94595d6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Thriveworks", - "name": "Alma Eyre", - "email": "aselunar@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alma-eyre/", - "campus": "NYC / ECRI", - "cohort": "30", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": ["Omaha"], - "_id": { - "$oid": "6674c30595590f9fd94595d7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Thriveworks", - "name": "Charissa Ramirez", - "email": "chawissa@gmail.com", - "linkedIn": "https://linkedin.com/in/chawissa", - "campus": "NYC / ECRI", - "cohort": "32", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595d8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Ticket Bridge", - "name": "Travis Frank", - "email": "travis@travismfrank.com", - "linkedIn": "https://www.linkedin.com/in/travis-m-frank/", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Founder", - "industry": "Live Events", - "cities": ["Anaheim", "Las Vegas", "Scottsdale"], - "_id": { - "$oid": "6674c30595590f9fd94595d9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "TikTok", - "name": "James Cross", - "email": "jamespvcross@gmail.com", - "linkedIn": "https://www.linkedin.com/in/james-p-cross1/", - "campus": "NYC", - "cohort": "28", - "jobTitle": "Software Engineer", - "industry": "Social Media", - "cities": ["Cleveland", "Tucson"], - "_id": { - "$oid": "6674c30595590f9fd94595da" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "TikTok", - "name": "Jason Speare", - "email": "jcspeare@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jason-speare", - "campus": "LA", - "cohort": "41", - "jobTitle": "Site Reliability Engineer", - "industry": "Video Social Networking", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595db" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Tinder", - "name": "Harrison Nam", - "email": "harrison.j.nam@gmail.com", - "linkedIn": "https://www.linkedin.com/in/harrison-nam/", - "campus": "LA", - "cohort": "46", - "jobTitle": "Software Engineer", - "industry": "Social", - "cities": ["Laredo", "Tulsa", "Winston-Salem"], - "_id": { - "$oid": "6674c30595590f9fd94595dc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Tinder", - "name": "Harrison Nam", - "email": "harrison.j.nam@gmail.com", - "linkedIn": "https://www.linkedin.com/in/harrison-nam/", - "campus": "LA", - "cohort": "46", - "jobTitle": "Software Engineer II, Web Development", - "industry": "Dating", - "cities": ["Lincoln", "Bakersfield"], - "_id": { - "$oid": "6674c30595590f9fd94595dd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Tinder", - "name": "Serge Vartanov", - "email": "vartanov.s@gmail.com", - "linkedIn": "https://www.linkedin.com/in/svartanov/", - "campus": "LA", - "cohort": "24", - "jobTitle": "Senior Backend Engineer", - "industry": "", - "cities": ["Mexico City"], - "_id": { - "$oid": "6674c30595590f9fd94595de" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Tixologi", - "name": "Mark Nichting", - "email": "mtnichting@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mark-nichting/", - "campus": "LA / WCRI", - "cohort": "53", - "jobTitle": "Frontend Engineer", - "industry": "Blockchain/Web3", - "cities": ["Irvine", "North Las Vegas", "Fort Worth"], - "_id": { - "$oid": "6674c30595590f9fd94595df" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Toast Inc", - "name": "Denys Dekhtiarenko", - "email": "dekhtiarenko.d@gmail.com", - "linkedIn": "https://www.linkedin.com/in/denysdekhtiarenko/", - "campus": "NYC", - "cohort": "18", - "jobTitle": "Software Engineer II", - "industry": "Restaurant software", - "cities": ["Greensboro"], - "_id": { - "$oid": "6674c30595590f9fd94595e0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "TodayTix Group", - "name": "Xiao Li", - "email": "lixtong@gmail.com", - "linkedIn": "https://www.linkedin.com/in/lixiaotong/", - "campus": "PTRI", - "cohort": "2", - "jobTitle": "Associate Software Engineer", - "industry": "Entertainment", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595e1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "TomoCredit", - "name": "Ramtin Khoee", - "email": "Ramtin.khoee@gmail.com", - "linkedIn": "https://www.linkedin.com/mwlite/in/ramtinkhoee", - "campus": "LA", - "cohort": "41", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Toledo", "Atlanta"], - "_id": { - "$oid": "6674c30595590f9fd94595e2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Topologe (working with the Air Force)", - "name": "Joseph Michael Corrado", - "email": "joeyycorrss@gmail.com", - "linkedIn": "https://www.linkedin.com/in/josephmichaelcorrado/", - "campus": "NYC", - "cohort": "15", - "jobTitle": "Senior Software Engineer", - "industry": "Web Dev for Air Force", - "cities": ["Cleveland", "Honolulu"], - "_id": { - "$oid": "6674c30595590f9fd94595e3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Tortus", - "name": "Victor To", - "email": "victorto123@gmail.com", - "linkedIn": "https://www.linkedin.com/in/victorto1/", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Software Engineer", - "industry": "Real Estate Tech", - "cities": ["Dallas", "Albuquerque", "Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd94595e4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Toucan", - "name": "Isaac Durand", - "email": "isaac.durand@gmail.com", - "linkedIn": "https://www.linkedin.com/in/isaacdurand", - "campus": "LA", - "cohort": "5", - "jobTitle": "Senior Engineer II", - "industry": "", - "cities": ["Greensboro"], - "_id": { - "$oid": "6674c30595590f9fd94595e5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Toucan", - "name": "Jane Kim", - "email": "jane.minhyung.kim@gmail.com", - "linkedIn": "https://www.linkedin.com/in/janeminhyungkim/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Software Engineer", - "industry": "Education tools", - "cities": ["Honolulu", "Reno"], - "_id": { - "$oid": "6674c30595590f9fd94595e6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Toyota", - "name": "Melanie Forbes", - "email": "mforbes12@gmail.com", - "linkedIn": "https://www.linkedin.com/in/melanie-forbes-/", - "campus": "FTRI / CTRI", - "cohort": "12", - "jobTitle": "Software Engineer", - "industry": "Automotive", - "cities": ["Lubbock", "Glendale"], - "_id": { - "$oid": "6674c30595590f9fd94595e7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Toyota", - "name": "Emily Hoang", - "email": "ethlin4@gmail.com", - "linkedIn": "https://www.linkedin.com/in/emilyhoang", - "campus": "FTRI / CTRI", - "cohort": "14", - "jobTitle": "Software Engineer", - "industry": "Automotive", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595e8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "TradeAlly", - "name": "Adepeju Orefejo", - "email": "adepeju.kayode@gmail.com", - "linkedIn": "https://www.linkedin.com/adepeju-orefejo", - "campus": "PTRI", - "cohort": "7", - "jobTitle": "Backend Engineer", - "industry": "Software / Tech", - "cities": ["Orlando", "Jersey City"], - "_id": { - "$oid": "6674c30595590f9fd94595e9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Travelers Companies Inc.", - "name": "Dylan Li", - "email": "dyli797@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dli107/", - "campus": "PTRI", - "cohort": "2", - "jobTitle": "Software Engineer", - "industry": "Insurance", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595ea" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Trend micro", - "name": "Daniel Balistocky", - "email": "thestinx@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dannyb1983", - "campus": "LA", - "cohort": "41", - "jobTitle": "Software engineer", - "industry": "Web security", - "cities": ["Dallas", "Durham"], - "_id": { - "$oid": "6674c30595590f9fd94595eb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "TreviPay", - "name": "Utkarsh Uppal", - "email": "utkarshuppal@gmial.com", - "linkedIn": "https://www.linkedin.com/in/utkarshuppal/", - "campus": "LA / WCRI", - "cohort": "55", - "jobTitle": "Senior Software Engineer", - "industry": "Fintech", - "cities": ["Corpus Christi", "Washington", "Philadelphia"], - "_id": { - "$oid": "6674c30595590f9fd94595ec" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Tribe Labs Inc.", - "name": "Alexander Landeros", - "email": "alexander.landeros1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alexander-landeros/", - "campus": "LA", - "cohort": "38", - "jobTitle": "Frontend Software Engineer", - "industry": "Communication Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595ed" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Trineo", - "name": "Rebecca Viner", - "email": "rtviner@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rtviner/", - "campus": "LA", - "cohort": "39", - "jobTitle": "Software Engineer II", - "industry": "Software Consultancy", - "cities": ["Mesa"], - "_id": { - "$oid": "6674c30595590f9fd94595ee" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Tripadvisor", - "name": "Jake Bradbeer", - "email": "jakebradbeer@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jacobbradbeer/", - "campus": "LA", - "cohort": "49", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595ef" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "TripleLift", - "name": "Arron Nestor", - "email": "arronnestor@gmail.com", - "linkedIn": "https://www.linkedin.com/in/arron-nestor/", - "campus": "PTRI", - "cohort": "2", - "jobTitle": "Cloud Infrastructure Engineer", - "industry": "Ad-Tech", - "cities": ["Lexington", "Boston"], - "_id": { - "$oid": "6674c30595590f9fd94595f0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Triplelift", - "name": "Kia Colbert", - "email": "colber16@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kiacolbert/", - "campus": "NYC", - "cohort": "9", - "jobTitle": "Engineer I", - "industry": "Social Impact", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595f1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "True Tickets", - "name": "Alesi-Andreya Ladas", - "email": "alesiladas@gmail.com", - "linkedIn": "https://www.linkedin.com/in/alesiladas/", - "campus": "NYC", - "cohort": "3", - "jobTitle": "Software Engineer", - "industry": "", - "cities": ["Madison"], - "_id": { - "$oid": "6674c30595590f9fd94595f2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "TrueCar", - "name": "Calvin Cao", - "email": "jtcao430@gmail.com", - "linkedIn": "https://www.linkedin.com/in/calvincao9/", - "campus": "LA", - "cohort": "48", - "jobTitle": "Software Engineer II", - "industry": "Marketing", - "cities": ["San Francisco", "St. Louis", "Mexico City"], - "_id": { - "$oid": "6674c30595590f9fd94595f3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "TrueCar", - "name": "Zac Haluza", - "email": "zac.haluza@gmail.com", - "linkedIn": "https://www.linkedin.com/in/zhaluza/", - "campus": "NYC", - "cohort": "17", - "jobTitle": "Software Engineer", - "industry": "Automotive", - "cities": ["St. Louis"], - "_id": { - "$oid": "6674c30595590f9fd94595f4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "trueface.ai", - "name": "Sam Siye Yu", - "email": "yudataguy@gmail.com", - "linkedIn": "https://www.linkedin.com/in/yusiye/", - "campus": "LA", - "cohort": "27", - "jobTitle": "full stack developer", - "industry": "computer vision", - "cities": ["Plano", "Glendale"], - "_id": { - "$oid": "6674c30595590f9fd94595f5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Truepill", - "name": "Justin Baik", - "email": "bij3377@gmail.com", - "linkedIn": "https://www.linkedin.com/in/justin-baik/", - "campus": "LA", - "cohort": "42", - "jobTitle": "Associate Software Engineer", - "industry": "Health Tech", - "cities": ["Albuquerque"], - "_id": { - "$oid": "6674c30595590f9fd94595f6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Truepill", - "name": "Jonah Stewart", - "email": "jonahlstewart@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jonahlstewart/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Associate Software Engineer - Backend", - "industry": "Healthtech", - "cities": ["Lexington"], - "_id": { - "$oid": "6674c30595590f9fd94595f7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Turbonomic", - "name": "Tyler Hurtt", - "email": "TylerAdamHurtt@gmail.com", - "linkedIn": "https://www.linkedin.com/in/TylerHurtt/", - "campus": "LA", - "cohort": "34", - "jobTitle": "Senior Software Engineer", - "industry": "Cloud & Network Monitoring", - "cities": ["Colorado Springs", "Madison"], - "_id": { - "$oid": "6674c30595590f9fd94595f8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Twilio", - "name": "Christopher Docuyanan", - "email": "Christophejd@gmail.com", - "linkedIn": "https://www.linkedin.com/in/cjdocuyanan/", - "campus": "LA", - "cohort": "40", - "jobTitle": "Software Engineer (Personas R&D)", - "industry": "Communications", - "cities": ["Denver"], - "_id": { - "$oid": "6674c30595590f9fd94595f9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Twitch", - "name": "Alice Wong", - "email": "alice.sky.wong@gmail.com", - "linkedIn": "https://www.linkedin.com/in/wong-alice/", - "campus": "NYC", - "cohort": "11", - "jobTitle": "Frontend Engineer", - "industry": "IoT", - "cities": ["Sรฃo Paulo", "Toronto", "Columbus"], - "_id": { - "$oid": "6674c30595590f9fd94595fa" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Two Barrels LLC", - "name": "Ryan Rambaran", - "email": "ryanrambaran.fl@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ryan-rambaran/", - "campus": "PTRI", - "cohort": "4", - "jobTitle": "Front End Developer", - "industry": "Software / Tech", - "cities": ["Nashville"], - "_id": { - "$oid": "6674c30595590f9fd94595fb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Two Six Labs", - "name": "Kevin Nam", - "email": "Kevinjnam@gmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "31", - "jobTitle": "Software Engineer - Front End", - "industry": "Cybersecurity", - "cities": ["Memphis", "Irving", "Saint Paul"], - "_id": { - "$oid": "6674c30595590f9fd94595fc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "TwoSix Labs", - "name": "Darren Napier", - "email": "darren.napier5@gmail.com", - "linkedIn": "https://www.linkedin.com/in/darrencnapier/", - "campus": "LA", - "cohort": "31", - "jobTitle": "Jr. Frontend Developer", - "industry": "Government", - "cities": ["Columbus", "Oakland"], - "_id": { - "$oid": "6674c30595590f9fd94595fd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "TwoThirtySix Labs", - "name": "Tayvon Wright", - "email": "tayvonwright@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tayvon-wright/", - "campus": "NYC", - "cohort": "10", - "jobTitle": "Backend Engineer", - "industry": "Crypto", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd94595fe" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Uber", - "name": "Michael Noah", - "email": "mnoah1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mnoah/", - "campus": "NYC", - "cohort": "31", - "jobTitle": "Software Engineer II", - "industry": "Transportation", - "cities": ["Houston", "Pittsburgh", "Lincoln"], - "_id": { - "$oid": "6674c30595590f9fd94595ff" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "UiPath", - "name": "Eric Rodgers", - "email": "ericerodgers@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/erodgers/", - "campus": "NYC", - "cohort": "31", - "jobTitle": "Software Engineer (SE1)", - "industry": "Software / Tech", - "cities": ["Long Beach", "Lexington"], - "_id": { - "$oid": "6674c30595590f9fd9459600" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Umbra", - "name": "Joey Friedman", - "email": "friedman.joey@gmail.com", - "linkedIn": "https://www.linkedin.com/in/joseph-friedman-803803149/", - "campus": "NYC / ECRI", - "cohort": "34", - "jobTitle": "Software Engineer", - "industry": "Aerospace", - "cities": ["Baltimore"], - "_id": { - "$oid": "6674c30595590f9fd9459601" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Uncommon Schools", - "name": "Taryn A Cunha", - "email": "taryn.cunha@gmail.com", - "linkedIn": "LinkedIn.com/in/taryncunha", - "campus": "NYC / ECRI", - "cohort": "34", - "jobTitle": "Integrationโ€™s Developer", - "industry": "Other", - "cities": ["Mexico City", "Austin"], - "_id": { - "$oid": "6674c30595590f9fd9459602" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Unify Consulting", - "name": "Gibran Haq", - "email": "gibran.haq57@gmail.com", - "linkedIn": "https://www.linkedin.com/in/gibran-haq/", - "campus": "FTRI", - "cohort": "5", - "jobTitle": "Senior Consultant", - "industry": "Consulting", - "cities": ["New York", "Bakersfield"], - "_id": { - "$oid": "6674c30595590f9fd9459603" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Uniphore", - "name": "Vince Vu", - "email": "vince.hvu@gmail.com", - "linkedIn": "https://www.linkedin.com/in/vin-vu/", - "campus": "LA", - "cohort": "42", - "jobTitle": "Full Stack Developer", - "industry": "Conversational Service Automation", - "cities": ["Columbus", "Fort Worth", "Colorado Springs"], - "_id": { - "$oid": "6674c30595590f9fd9459604" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Unit21", - "name": "Nicole Ip", - "email": "nicole@unit21.ai", - "linkedIn": "", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Software Engineer", - "industry": "AI / ML", - "cities": ["Tampa"], - "_id": { - "$oid": "6674c30595590f9fd9459605" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "United Airlines", - "name": "Jordan Jeter", - "email": "jeter.education@gmail.com", - "linkedIn": "linkedin.com/in/jordanrjeter", - "campus": "NYC / ECRI", - "cohort": "36", - "jobTitle": "Developer - IT", - "industry": "Aerospace", - "cities": ["Tampa"], - "_id": { - "$oid": "6674c30595590f9fd9459606" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "United Power", - "name": "Clifford Harvey", - "email": "cliffharvey06@gmail.com", - "linkedIn": "https://www.linkedin.com/in/clifford-harvey/", - "campus": "LA", - "cohort": "16", - "jobTitle": "Sr Fullstack Developer", - "industry": "", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459607" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "United States Cold Storage Inc", - "name": "Glen Kasoff", - "email": "glen.kasoff@gmail.com", - "linkedIn": "https://www.linkedin.com/in/glen-kasoff", - "campus": "PTRI", - "cohort": "7", - "jobTitle": "Software Developer ERP", - "industry": "Other", - "cities": ["Denver", "Cincinnati", "Portland"], - "_id": { - "$oid": "6674c30595590f9fd9459608" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "University of California", - "name": "Justin Wouters", - "email": "justinwouters@gmail.com", - "linkedIn": "Https://www.linkedin.com/in/justinwouters", - "campus": "FTRI / CTRI", - "cohort": "9", - "jobTitle": "Junior application developer", - "industry": "Other", - "cities": ["Minneapolis", "St. Louis", "Chandler"], - "_id": { - "$oid": "6674c30595590f9fd9459609" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "University of Chicago, Center for the Art of East Asia", - "name": "Greg Panciera", - "email": "gregpanciera@gmail.com", - "linkedIn": "https://www.linkedin.com/in/gregpanciera", - "campus": "LA", - "cohort": "36", - "jobTitle": "Web Developer", - "industry": "Art", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945960a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Unqork", - "name": "Donald Blanc", - "email": "Donaldblanc1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/donald-b/", - "campus": "NYC", - "cohort": "11", - "jobTitle": "Senior Software Engineer", - "industry": "Tech", - "cities": ["Chicago", "Buffalo", "Denver"], - "_id": { - "$oid": "6674c30595590f9fd945960b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Unum ID", - "name": "Allison Roderiques", - "email": "aeroderiques@gmail.com", - "linkedIn": "https://www.linkedin.com/in/allison-roderiques/", - "campus": "LA / WCRI", - "cohort": "51", - "jobTitle": "Full Stack Developer", - "industry": "Other", - "cities": ["Gilbert", "Sydney"], - "_id": { - "$oid": "6674c30595590f9fd945960c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Uphold", - "name": "Chelsea Harris", - "email": "chelseaharris137@gmail.com", - "linkedIn": "https://www.linkedin.com/in/chelseaharris23/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Frontend Engineer", - "industry": "Crypto", - "cities": ["Cincinnati", "Fort Wayne"], - "_id": { - "$oid": "6674c30595590f9fd945960d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Upkeep", - "name": "Elie Baik", - "email": "semsemm810@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sae-min-baik", - "campus": "LA", - "cohort": "34", - "jobTitle": "Software Engineer", - "industry": "CRM", - "cities": ["Chesapeake", "Beijing", "Bakersfield"], - "_id": { - "$oid": "6674c30595590f9fd945960e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "UST", - "name": "Dhruv Thota", - "email": "dthota8@gmail.com", - "linkedIn": "https://linkedin.com/in/dhruv-thota", - "campus": "NYC / ECRI", - "cohort": "36", - "jobTitle": "Software Engineer", - "industry": "Software Solutions/Developer Tools", - "cities": ["Detroit", "Durham", "Norfolk"], - "_id": { - "$oid": "6674c30595590f9fd945960f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "VacationRenter", - "name": "Michele Moody", - "email": "moody.lillian@gmail.com", - "linkedIn": "https://www.linkedin.com/in/milmoody/", - "campus": "LA", - "cohort": "30", - "jobTitle": "Software Engineer", - "industry": "Travel", - "cities": ["Greensboro", "Colorado Springs", "San Francisco"], - "_id": { - "$oid": "6674c30595590f9fd9459610" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Valor Performance", - "name": "Marco Tulio Gonzalez", - "email": "marco.t.gonzalez15@gmail.com", - "linkedIn": "https://www.linkedin.com/in/marcogonzalez2015/", - "campus": "NYC / ECRI", - "cohort": "35", - "jobTitle": "Senior Software Engineer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459611" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "VanGo", - "name": "Nicolas Venegas", - "email": "nicolasvenegasparker@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nicolas-venegas-parker/", - "campus": "LA", - "cohort": "30", - "jobTitle": "Mobile Software Engineer", - "industry": "Consumer / Transportation", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459612" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Vanguard", - "name": "Ian Kila", - "email": "ian.nie.kila@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ian-kila", - "campus": "NYC / ECRI", - "cohort": "35", - "jobTitle": "Application Developer", - "industry": "Software / Tech", - "cities": ["Henderson"], - "_id": { - "$oid": "6674c30595590f9fd9459613" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Vanguard", - "name": "Carolina Bonitatis", - "email": "carolina@bonitat.is", - "linkedIn": "https://www.linkedin.com/in/carolina-bonitatis/", - "campus": "NYC / ECRI", - "cohort": "42", - "jobTitle": "Application Developer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459614" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Vantage Point Consulting, Inc.", - "name": "Constance Cho", - "email": "chcho87@gmail.com", - "linkedIn": "https://www.linkedin.com/in/chcho2/", - "campus": "NYC", - "cohort": "21", - "jobTitle": "Full Stack Engineer", - "industry": "Consulting", - "cities": ["Mesa", "Santa Ana", "Arlington"], - "_id": { - "$oid": "6674c30595590f9fd9459615" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Vaulted Oak", - "name": "Alfred Sta. Iglesia", - "email": "a.sta.iglesia@gmail.com", - "linkedIn": "https://www.linkedin.com/in/astaiglesia/", - "campus": "LA", - "cohort": "41", - "jobTitle": "Software Engineer + Solutions Architect", - "industry": "E-Commerce", - "cities": ["Raleigh", "Sรฃo Paulo"], - "_id": { - "$oid": "6674c30595590f9fd9459616" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "VedaPointe", - "name": "Michelle Chang", - "email": "michelle.kelly.chang@gmail.com", - "linkedIn": "https://www.linkedin.com/in/michellekchang/", - "campus": "LA / WCRI", - "cohort": "49", - "jobTitle": "Software Developer", - "industry": "Healthcare", - "cities": ["Chula Vista"], - "_id": { - "$oid": "6674c30595590f9fd9459617" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Vercel", - "name": "Jueun Grace Yun", - "email": "graceyunn@gmail.com", - "linkedIn": "https://www.linkedin.com/in/gracejueunyun/", - "campus": "NYC", - "cohort": "29", - "jobTitle": "Software Engineer", - "industry": "Gaming hardware", - "cities": ["Toronto"], - "_id": { - "$oid": "6674c30595590f9fd9459618" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Verily Life Sciences", - "name": "Michael Geismar", - "email": "mikelafobe@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/michael-geismar/", - "campus": "FTRI", - "cohort": "2", - "jobTitle": "Software Engineer", - "industry": "Life Sciences", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459619" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Veritext", - "name": "Shawn Convery", - "email": "shawnmconvery@gmail.com", - "linkedIn": "https://www.linkedin.com/in/shawnconvery1/", - "campus": "NYC", - "cohort": "27", - "jobTitle": "Software Engineer", - "industry": "Law", - "cities": ["Greensboro", "Seattle"], - "_id": { - "$oid": "6674c30595590f9fd945961a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Veritext", - "name": "Storm Ross", - "email": "stormaross@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stormaross/", - "campus": "NYC", - "cohort": "27", - "jobTitle": "Backend Developer", - "industry": "Legal", - "cities": ["Seattle"], - "_id": { - "$oid": "6674c30595590f9fd945961b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Verizon Media Platform", - "name": "Leonard Kee", - "email": "leonardwkee@gmail.com", - "linkedIn": "https://www.linkedin.com/in/thiskeeword/", - "campus": "LA", - "cohort": "4", - "jobTitle": "Software Development Engineer II", - "industry": "Media", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945961c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Vertalo", - "name": "Phillip Bannister", - "email": "phillip.kbannister@Gmail.com", - "linkedIn": "https://www.linkedin.com/in/phillipkekoabannister/", - "campus": "LA", - "cohort": "41", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945961d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Verys", - "name": "Ray Yao", - "email": "rocaray51@gmail.com", - "linkedIn": "https://www.linkedin.com/in/raymondyao51/", - "campus": "LA", - "cohort": "27", - "jobTitle": "Software Developer", - "industry": "Consulting/Contracting Agency", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945961e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Verys", - "name": "Ted Min", - "email": "tedtaemin@gmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "41", - "jobTitle": "Senior Software Engineer", - "industry": "Consulting", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945961f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "View, Inc.", - "name": "Eric Lee", - "email": "emlee54@gmail.com", - "linkedIn": "https://www.linkedin.com/in/errc-lee/", - "campus": "LA", - "cohort": "45", - "jobTitle": "Software Engineer, Front-End", - "industry": "Software / Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459620" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Violet", - "name": "Johanna Merluza", - "email": "johanna.merluza@gmail.com", - "linkedIn": "https://www.linkedin.com/in/johannamerluza/", - "campus": "FTRI / CTRI", - "cohort": "13", - "jobTitle": "Senior Full Stack Engineer", - "industry": "Software / Tech", - "cities": ["Phoenix", "Honolulu", "Reno"], - "_id": { - "$oid": "6674c30595590f9fd9459621" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Virga Labs", - "name": "Vance McGrady", - "email": "vancemcgrady@gmail.com", - "linkedIn": "https://www.linkedin.com/in/vancemcgrady/", - "campus": "LA / WCRI", - "cohort": "52", - "jobTitle": "Application Developer", - "industry": "Data Analytics", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459622" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Virgin Hyperloop One", - "name": "Justin Fung", - "email": "justincaseyfung@gmail.com", - "linkedIn": "https://www.linkedin.com/in/citrusvanilla/", - "campus": "LA", - "cohort": "30", - "jobTitle": "Front-End Developer", - "industry": "Transportation", - "cities": ["Durham", "Fort Worth", "Kansas City"], - "_id": { - "$oid": "6674c30595590f9fd9459623" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Virgin Orbit", - "name": "Arkadiy Nigay", - "email": "ark234@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ark234", - "campus": "LA", - "cohort": "23", - "jobTitle": "Full Stack Developer", - "industry": "Aerospace", - "cities": ["Atlanta"], - "_id": { - "$oid": "6674c30595590f9fd9459624" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Virgin Orbit", - "name": "Eric McCorkle", - "email": "ericm.mccorkle@gmail.com", - "linkedIn": "https://www.linkedin.com/in/eric-mccorkle/", - "campus": "LA", - "cohort": "48", - "jobTitle": "Full Stack Developer", - "industry": "Aerospace", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459625" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Virtru", - "name": "Jake Van Vorhis", - "email": "vanvorhisjake@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jakedoublev/", - "campus": "PTRI", - "cohort": "5", - "jobTitle": "Senior Full Stack Engineer", - "industry": "Security", - "cities": ["Kansas City"], - "_id": { - "$oid": "6674c30595590f9fd9459626" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Visa", - "name": "Bryan Mooyeong Lee", - "email": "mylee1995@gmail.com", - "linkedIn": "https://www.linkedin.com/bryanm-lee", - "campus": "NYC", - "cohort": "12", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": ["Bakersfield"], - "_id": { - "$oid": "6674c30595590f9fd9459627" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "VMware", - "name": "Maureen Onchiri", - "email": "onchirimaureen1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/maureenonchiri/", - "campus": "NYC", - "cohort": "24", - "jobTitle": "Software Engineer", - "industry": "Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459628" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Volta Charging", - "name": "Maximilian Gonzalez", - "email": "thamaxlg@gmail.com", - "linkedIn": "https://www.linkedin.com/in/maximiliangonzalez/", - "campus": "LA", - "cohort": "29", - "jobTitle": "Full Stack Software Engineer, Cloud Platform", - "industry": "Transportation", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459629" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "VS Media Inc", - "name": "Patrick Hu", - "email": "patrickhu91@gmail.com", - "linkedIn": "https://www.LinkedIn.com/in/patrickhu91", - "campus": "LA / WCRI", - "cohort": "52", - "jobTitle": "JavaScript Developer", - "industry": "Entertainment", - "cities": ["Plano", "Omaha"], - "_id": { - "$oid": "6674c30595590f9fd945962a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "VTS", - "name": "Andy Koh", - "email": "yk567@cornell.edu", - "linkedIn": "https://www.linkedin.com/in/andersonkoh/", - "campus": "LA", - "cohort": "39", - "jobTitle": "Software Engineer, Platform", - "industry": "Commercial Real Estate", - "cities": ["Washington", "North Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd945962b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "W.L. Gore & Associates", - "name": "Amir Marcel", - "email": "amirmarcel@yahoo.com", - "linkedIn": "https://www.linkedin.com/in/amir-marcel", - "campus": "LA", - "cohort": "39", - "jobTitle": "Backend Developer", - "industry": "Manufacturing", - "cities": ["Virginia Beach", "North Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd945962c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Wag Labs Inc", - "name": "William Adamowicz", - "email": "william.adamowicz@gmail.com", - "linkedIn": "https://www.linkedin.com/in/williamadamowicz/", - "campus": "LA", - "cohort": "24", - "jobTitle": "Software Engineer", - "industry": "Pet Care", - "cities": ["Tulsa"], - "_id": { - "$oid": "6674c30595590f9fd945962d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Walgreens", - "name": "Ed Cho", - "email": "edcho720@gmail.com", - "linkedIn": "https://www.linkedin.com/in/edcho720/", - "campus": "FTRI / CTRI", - "cohort": "12", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945962e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Walmart", - "name": "ChunHao Zheng", - "email": "chz062009@gmail.com", - "linkedIn": "https://www.linkedin.com/in/chunhz/", - "campus": "NYC / ECRI", - "cohort": "35", - "jobTitle": "Software Engineer II", - "industry": "Marketing", - "cities": ["Orlando"], - "_id": { - "$oid": "6674c30595590f9fd945962f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Walmart", - "name": "Eddy Kwon", - "email": "eddykwon0@gmail.com", - "linkedIn": "https://www.linkedin.com/in/eddykwon/", - "campus": "NYC", - "cohort": "29", - "jobTitle": "Software Engineer", - "industry": "Retail", - "cities": ["North Las Vegas", "Mumbai", "Oakland"], - "_id": { - "$oid": "6674c30595590f9fd9459630" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Walmart - Store No. 8", - "name": "Starvon Washington", - "email": "staronejazz@yahoo.com", - "linkedIn": "", - "campus": "LA", - "cohort": "19", - "jobTitle": "Software Engineer", - "industry": "", - "cities": ["Cincinnati", "Colorado Springs"], - "_id": { - "$oid": "6674c30595590f9fd9459631" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Walmart Global Tech", - "name": "Tao Chen", - "email": "xtc2008@gmail.com", - "linkedIn": "https://www.linkedin.com/in/xtc2008", - "campus": "NYC", - "cohort": "31", - "jobTitle": "Senior Software Engineer", - "industry": "Health and Wellness", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459632" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Walmart Labs", - "name": "Brian Barr", - "email": "Brian.Barr23@gmail.com", - "linkedIn": "https://www.linkedin.com/in/barrbrian/", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Senior Backend Engineer (Node)", - "industry": "FinTech (?)", - "cities": ["Buffalo"], - "_id": { - "$oid": "6674c30595590f9fd9459633" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Walmart Labs", - "name": "Stephanie Fong", - "email": "stfongg@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stephaniefong08/", - "campus": "LA", - "cohort": "24", - "jobTitle": "Software Engineer", - "industry": "", - "cities": ["Lubbock", "Mexico City", "Beijing"], - "_id": { - "$oid": "6674c30595590f9fd9459634" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Warby Parker", - "name": "Sanaya Mirpuri", - "email": "ssmirpuri@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sanayamirpuri/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "BackendSoftware Engineer II", - "industry": "Retail", - "cities": ["Omaha"], - "_id": { - "$oid": "6674c30595590f9fd9459635" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Warner Bros Discovery", - "name": "Mark Shin (Shino)", - "email": "pe.markshin@gmail.com", - "linkedIn": "https://www.linkedin.com/in/markshins/", - "campus": "NYC", - "cohort": "13", - "jobTitle": "Software Development Engineer II", - "industry": "Entertainment", - "cities": ["Baltimore", "Honolulu", "Memphis"], - "_id": { - "$oid": "6674c30595590f9fd9459636" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "WASH", - "name": "Kevin Park", - "email": "xkevinpark@gmail.com", - "linkedIn": "https://www.linkedin.com/in/xkevinpark/", - "campus": "LA", - "cohort": "42", - "jobTitle": "Software UI Engineer", - "industry": "Electronics", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459637" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Wash Laundry Systems", - "name": "Harmon Huynh", - "email": "harmon.huynh@outlook.com", - "linkedIn": "https://www.linkedin.com/in/harmon-huynh/", - "campus": "LA", - "cohort": "26", - "jobTitle": "Senior Software Engineer", - "industry": "Consumer Services", - "cities": ["Denver", "New York", "Mesa"], - "_id": { - "$oid": "6674c30595590f9fd9459638" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Watsco", - "name": "Romelo Gilbert", - "email": "romelogilbert@gmail.com", - "linkedIn": "https://www.linkedin.com/in/romelo-gilbert", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Software Engineer", - "industry": "HVAC distributor", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459639" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Wayfair", - "name": "Dylan Bergstrom", - "email": "contact.dylanbergstrom@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dylan-bergstrom", - "campus": "LA", - "cohort": "23", - "jobTitle": "Software Engineer L1", - "industry": "E-Commerce", - "cities": ["Sydney"], - "_id": { - "$oid": "6674c30595590f9fd945963a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Wayfair", - "name": "Jay Cogen", - "email": "jaycog44@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jaycogen/", - "campus": "LA", - "cohort": "26", - "jobTitle": "Software Engineer II", - "industry": "Fintech", - "cities": ["Fort Worth"], - "_id": { - "$oid": "6674c30595590f9fd945963b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Wayfair", - "name": "Bryan Lee", - "email": "mylee1995@gmail.com", - "linkedIn": "https://www.linkedin.com/in/bryanm-lee/", - "campus": "NYC", - "cohort": "12", - "jobTitle": "Software Engineer Intern", - "industry": "E-Commerce", - "cities": ["Houston", "Cleveland", "Virginia Beach"], - "_id": { - "$oid": "6674c30595590f9fd945963c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "WayScript", - "name": "Bren Yamaguchi", - "email": "Yamaguchibren@gmail.com", - "linkedIn": "https://www.linkedin.com/in/brenyamaguchi/", - "campus": "LA", - "cohort": "36", - "jobTitle": "Front End Software Engineer", - "industry": "Developer Tools", - "cities": ["Atlanta", "Bakersfield"], - "_id": { - "$oid": "6674c30595590f9fd945963d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "WayUp", - "name": "Angela Scerbo", - "email": "amscerbo@gmail.com", - "linkedIn": "https://www.linkedin.com/in/angelascerbo/", - "campus": "NYC", - "cohort": "2", - "jobTitle": "Frontend Software Engineer", - "industry": "", - "cities": ["Fresno"], - "_id": { - "$oid": "6674c30595590f9fd945963e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Weill Cornell Medicine", - "name": "Zoew McGrath", - "email": "Zoewmcgrath@outlook.com", - "linkedIn": "", - "campus": "FTRI", - "cohort": "5", - "jobTitle": "Web Developer", - "industry": "Healthcare", - "cities": ["Memphis", "Paris", "Philadelphia"], - "_id": { - "$oid": "6674c30595590f9fd945963f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "WELL Health", - "name": "Elise Bare", - "email": "elisebare@gmail.com", - "linkedIn": "https://www.linkedin.com/in/elisebare/", - "campus": "LA", - "cohort": "39", - "jobTitle": "Software Engineer, Front End", - "industry": "Healtchare", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459640" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Well Health", - "name": "Janis Hernandez", - "email": "Janis11546@gmail.com", - "linkedIn": "https://www.linkedin.com/in/janis-h/", - "campus": "LA", - "cohort": "39", - "jobTitle": "Mid-level Frontend Engineer", - "industry": "Health", - "cities": ["El Paso"], - "_id": { - "$oid": "6674c30595590f9fd9459641" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Well Health", - "name": "Jesus Vargas", - "email": "jmodestov@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jesusmvargas/", - "campus": "LA", - "cohort": "38", - "jobTitle": "Frontend Software Engineer", - "industry": "Health Tech", - "cities": ["Long Beach", "Henderson"], - "_id": { - "$oid": "6674c30595590f9fd9459642" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Well Health", - "name": "Michael Wang", - "email": "michaelwawang@gmail.com", - "linkedIn": "https://www.linkedin.com/in/michael--wang/", - "campus": "LA", - "cohort": "36", - "jobTitle": "Software Engineer (Backend)", - "industry": "Health Tech", - "cities": ["Cincinnati"], - "_id": { - "$oid": "6674c30595590f9fd9459643" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Well Health", - "name": "Eric Stallings", - "email": "stallings.eric@gmail.com", - "linkedIn": "https://www.linkedin.com/in/EricStallings/", - "campus": "LA", - "cohort": "30", - "jobTitle": "Software Engineer", - "industry": "Healthcare", - "cities": ["Tucson", "Scottsdale"], - "_id": { - "$oid": "6674c30595590f9fd9459644" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Wellio", - "name": "Rachel Park", - "email": "rachelpark.dev@gmail.com", - "linkedIn": "https://www.linkedin.com/in/rachelparkdev/", - "campus": "NYC", - "cohort": "13", - "jobTitle": "Senior Software Engineer", - "industry": "Foodtech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459645" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Wells Fargo", - "name": "Taylor Davis", - "email": "Taylor.davis7@live.com", - "linkedIn": "https://www.linkedin.com/in/taylordavis7", - "campus": "LA", - "cohort": "41", - "jobTitle": "Software Engineer", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459646" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Western Psychological Services (WPS)", - "name": "Justin Stoddard", - "email": "jgstoddard@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jgstoddard/", - "campus": "FTRI", - "cohort": "4", - "jobTitle": "Microservices Engineer", - "industry": "Health Tech", - "cities": ["Indianapolis", "Phoenix", "Gilbert"], - "_id": { - "$oid": "6674c30595590f9fd9459647" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "WeWork", - "name": "Maung Maung Lay (Raphael Ram)", - "email": "ramraphael@gmail.com", - "linkedIn": "https://www.linkedin.com/in/raphaelram/", - "campus": "NYC", - "cohort": "8", - "jobTitle": "Software Engineer", - "industry": "Real Estate / Hospitality", - "cities": ["Bakersfield"], - "_id": { - "$oid": "6674c30595590f9fd9459648" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Whisper", - "name": "Kevin Mui", - "email": "kmui.work@gmail.com", - "linkedIn": "https://www.linkedin.com/in/kevin-mui1/", - "campus": "LA", - "cohort": "24", - "jobTitle": "Server Developer", - "industry": "", - "cities": ["Arlington", "Orlando", "Indianapolis"], - "_id": { - "$oid": "6674c30595590f9fd9459649" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "William Hill", - "name": "Chris Flannery", - "email": "chriswillsflannery@gmail.com", - "linkedIn": "https://www.linkedin.com/in/chriswillsflannery/", - "campus": "NYC", - "cohort": "14", - "jobTitle": "Frontend Software Engineer", - "industry": "Sports/Entertainment", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945964a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "William Hill", - "name": "Matt Greenberg", - "email": "mattagreenberg1@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mattagreenberg/", - "campus": "NYC", - "cohort": "24", - "jobTitle": "front end software engineer", - "industry": "casino", - "cities": ["Berlin", "Oakland"], - "_id": { - "$oid": "6674c30595590f9fd945964b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Willow Servicing", - "name": "Ian Grepo", - "email": "iangrapeo@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ian-grepo/", - "campus": "LA / WCRI", - "cohort": "51", - "jobTitle": "Software Engineer", - "industry": "Real Estate", - "cities": ["Indianapolis", "Plano", "Lexington"], - "_id": { - "$oid": "6674c30595590f9fd945964c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Windfall Data", - "name": "Bruno Portela", - "email": "bportela@pm.me", - "linkedIn": "https://www.linkedin.com/in/bgp/", - "campus": "LA", - "cohort": "42", - "jobTitle": "Senior Full Stack Engineer", - "industry": "Fintech, ML, AI", - "cities": ["Las Vegas"], - "_id": { - "$oid": "6674c30595590f9fd945964d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.071Z" - }, - "__v": 0 - }, - { - "company": "Windhover Labs", - "name": "Alex McPhail", - "email": "mcphail.alex@gmail.com", - "linkedIn": "www.linkedin.com/in/mcphail-alex", - "campus": "LA / WCRI", - "cohort": "53", - "jobTitle": "Software Engineer", - "industry": "Aerospace", - "cities": ["San Francisco", "Chula Vista", "Santa Ana"], - "_id": { - "$oid": "6674c30595590f9fd945964e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Wiselayer", - "name": "Eric Lemay", - "email": "ericrogerlemay@gmail.com", - "linkedIn": "", - "campus": "NYC / ECRI", - "cohort": "31", - "jobTitle": "Software Engineer", - "industry": "Business Analytics", - "cities": ["Mumbai"], - "_id": { - "$oid": "6674c30595590f9fd945964f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Wiser Solutions", - "name": "Alex Hersler", - "email": "alex@alexhersler.com", - "linkedIn": "https://www.linkedin.com/in/alex-hersler/", - "campus": "LA / WCRI", - "cohort": "48", - "jobTitle": "Software Engineer II", - "industry": "Data Analytics", - "cities": ["Miami"], - "_id": { - "$oid": "6674c30595590f9fd9459650" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Wix.com", - "name": "Kenny shen", - "email": "kenny.shen313@gmail.com", - "linkedIn": "", - "campus": "NYC", - "cohort": "27", - "jobTitle": "Solutions Engineer", - "industry": "Software / Tech", - "cities": ["Stockton", "Toronto", "Buffalo"], - "_id": { - "$oid": "6674c30595590f9fd9459651" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Wizely Finance", - "name": "Erik Cox", - "email": "erikbcox@gmail.com", - "linkedIn": "https://www.linkedin.com/in/erikbcox/", - "campus": "LA", - "cohort": "22", - "jobTitle": "Senior Full Stack Developer", - "industry": "", - "cities": ["Jacksonville", "Wichita", "Albuquerque"], - "_id": { - "$oid": "6674c30595590f9fd9459652" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "WorkDay", - "name": "Tu Pham", - "email": "toopham@gmail.com", - "linkedIn": "https://www.linkedin.com/in/toopham/", - "campus": "LA", - "cohort": "46", - "jobTitle": "Software Development Engineer", - "industry": "FinTech, HR", - "cities": ["Seattle"], - "_id": { - "$oid": "6674c30595590f9fd9459653" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "WorkFusion", - "name": "Matt Meigs", - "email": "mattmeigs@gmail.com", - "linkedIn": "https://www.linkedin.com/in/matt-meigs/", - "campus": "NYC", - "cohort": "20", - "jobTitle": "Front-End Developer", - "industry": "Intelligent Automation", - "cities": ["Atlanta", "Milwaukee", "Baltimore"], - "_id": { - "$oid": "6674c30595590f9fd9459654" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "WorkRamp", - "name": "Lex Choi", - "email": "lexchoi3@gmail.com", - "linkedIn": "https://www.linkedin.com/in/lexchoi3/", - "campus": "LA", - "cohort": "40", - "jobTitle": "Internal Tools/Customer Support Engineer", - "industry": "SaaS", - "cities": ["Scottsdale"], - "_id": { - "$oid": "6674c30595590f9fd9459655" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "World Wide Technology", - "name": "Christopher Davis", - "email": "chdavis0917@gmail.com", - "linkedIn": "https://www.linkedin.com/in/chris-davis0917", - "campus": "FTRI / CTRI", - "cohort": "11", - "jobTitle": "JavaScript Developer - Material Planning", - "industry": "IT Services", - "cities": ["St. Petersburg", "Arlington"], - "_id": { - "$oid": "6674c30595590f9fd9459656" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "World Wide Technology", - "name": "Crystal Agoncillo", - "email": "crystal.agoncillo@gmail.com", - "linkedIn": "https://www.linkedin.com/in/agoncillo/", - "campus": "FTRI / CTRI", - "cohort": "10", - "jobTitle": "Full Stack Developer", - "industry": "IT Services", - "cities": ["Oklahoma City", "San Jose"], - "_id": { - "$oid": "6674c30595590f9fd9459657" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "World Wide Technology", - "name": "Stephanie Page", - "email": "stephanieelainepage@gmail.com", - "linkedIn": "https://www.linkedin.com/in/stephanie-page-atx/", - "campus": "FTRI / CTRI", - "cohort": "11", - "jobTitle": "Associate Developer", - "industry": "Consulting", - "cities": ["Chandler"], - "_id": { - "$oid": "6674c30595590f9fd9459658" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "World Wide Technology", - "name": "Brett Guidry", - "email": "guidry.brett@gmail.com", - "linkedIn": "https://www.linkedin.com/in/brett-guidry504/", - "campus": "FTRI / CTRI", - "cohort": "10", - "jobTitle": "Software Engineer", - "industry": "IT Services", - "cities": ["Lubbock"], - "_id": { - "$oid": "6674c30595590f9fd9459659" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "WPROMOTE", - "name": "Nay Linn", - "email": "naylinn.pkv@gmail.com", - "linkedIn": "https://www.linkedin.com/in/nay-linn/", - "campus": "NYC", - "cohort": "19", - "jobTitle": "Software Engineer", - "industry": "Digital Marketing", - "cities": ["Tokyo", "San Antonio"], - "_id": { - "$oid": "6674c30595590f9fd945965a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "WQA", - "name": "Victor Martins", - "email": "martinsvictor287@gmail.com", - "linkedIn": "https://www.linkedin.com/in/victormartinsfemi", - "campus": "LA / WCRI", - "cohort": "59", - "jobTitle": "Software Develooper", - "industry": "Consulting", - "cities": ["Garland", "Sรฃo Paulo"], - "_id": { - "$oid": "6674c30595590f9fd945965b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "WW(formally Weight Watchers)", - "name": "Mika Todd", - "email": "mikataressatodd@gmail.com", - "linkedIn": "https://www.linkedin.com/in/mika-todd", - "campus": "LA", - "cohort": "43", - "jobTitle": "Software Engineer", - "industry": "Health and Wellness", - "cities": ["St. Louis", "Miami"], - "_id": { - "$oid": "6674c30595590f9fd945965c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Wyze", - "name": "Jason Victor", - "email": "jason.victor26@gmail.com", - "linkedIn": "", - "campus": "LA", - "cohort": "38", - "jobTitle": "Jr. Front End Engineer", - "industry": "IoT", - "cities": ["Chesapeake", "Virginia Beach"], - "_id": { - "$oid": "6674c30595590f9fd945965d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Xandr", - "name": "Billy Hepfinger", - "email": "bhepfing@gmail.com", - "linkedIn": "https://www.linkedin.com/in/billy-hepfinger", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Software Engineer II", - "industry": "Advertising / Telecom", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945965e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Xandr", - "name": "Whit Rooke", - "email": "whit.rooke@gmail.com", - "linkedIn": "https://www.linkedin.com/in/whit-rooke/", - "campus": "NYC", - "cohort": "25", - "jobTitle": "Software Engineer", - "industry": "Adtech", - "cities": ["San Francisco", "Cincinnati"], - "_id": { - "$oid": "6674c30595590f9fd945965f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Xinova", - "name": "Clariz Mariano", - "email": "clariz.mariano@gmail.com", - "linkedIn": "https://www.linkedin.com/in/clarmariano/", - "campus": "LA", - "cohort": "22", - "jobTitle": "Software Engineer 2", - "industry": "", - "cities": ["Oakland", "Atlanta"], - "_id": { - "$oid": "6674c30595590f9fd9459660" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Xtivia", - "name": "Anthony Lo", - "email": "87.anthonylo@gmail.com", - "linkedIn": "https://www.linkedin.com/in/anthonyelo/", - "campus": "LA / WCRI", - "cohort": "52", - "jobTitle": "Jr. UI Developer", - "industry": "IT Services", - "cities": ["Colorado Springs", "Mumbai", "Fort Wayne"], - "_id": { - "$oid": "6674c30595590f9fd9459661" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Yahoo", - "name": "DeriAnte Sinclair", - "email": "deriante.sinclair@gmail.com", - "linkedIn": "https://www.linkedin.com/in/deriante-sinclair/", - "campus": "LA / WCRI", - "cohort": "49", - "jobTitle": "Software Apps Engineer I", - "industry": "Software / Tech", - "cities": ["Philadelphia"], - "_id": { - "$oid": "6674c30595590f9fd9459662" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Yahoo", - "name": "Tom Curtin", - "email": "thisistomcurtin@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tfcurtin/", - "campus": "PTRI", - "cohort": "3", - "jobTitle": "Software Engineer", - "industry": "Other", - "cities": ["Minneapolis"], - "_id": { - "$oid": "6674c30595590f9fd9459663" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Yale New Haven Health", - "name": "Aileen Chan Miranda", - "email": "aileenchany@gmail.com", - "linkedIn": "https://www.linkedin.com/in/aileen-chanmiranda/", - "campus": "FTRI / CTRI", - "cohort": "8", - "jobTitle": "Web Developer", - "industry": "Healthtech/Healthcare", - "cities": ["San Francisco", "Newark", "Indianapolis"], - "_id": { - "$oid": "6674c30595590f9fd9459664" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Yext", - "name": "Allen Xie", - "email": "axie0320@gmail.com", - "linkedIn": "https://www.linkedin.com/in/axie0320/", - "campus": "PTRI", - "cohort": "4", - "jobTitle": "Software Engineer", - "industry": "Software / Tech", - "cities": ["Santa Ana", "Los Angeles", "Dallas"], - "_id": { - "$oid": "6674c30595590f9fd9459665" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "YMCA Retirement Fund", - "name": "Anna Konstantinovich", - "email": "anna@anreko.design", - "linkedIn": "https://www.linkedin.com/in/anna-konstantinovich/", - "campus": "NYC", - "cohort": "15", - "jobTitle": "UX Designer & Developer (It's complicated - let me know if you want more details)", - "industry": "Financial Services", - "cities": ["Newark", "Fresno"], - "_id": { - "$oid": "6674c30595590f9fd9459666" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Zeal", - "name": "Jason Lee", - "email": "jasonmlee1020@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jasonjml/", - "campus": "PTRI", - "cohort": "1", - "jobTitle": "Software Engineer II", - "industry": "Fintech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd9459667" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Zealthy", - "name": "Kennan Budnik", - "email": "kobudnik@gmail.com", - "linkedIn": "https://linkedin.com/in/kobudnik", - "campus": "NYOI", - "cohort": "2", - "jobTitle": "Software Engineer II", - "industry": "Healthtech/Healthcare", - "cities": ["Albuquerque", "Santa Ana"], - "_id": { - "$oid": "6674c30595590f9fd9459668" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "ZenBusiness", - "name": "Adam Sheff", - "email": "adamisheff@gmail.com", - "linkedIn": "https://www.linkedin.com/in/adam-sheff/", - "campus": "FTRI", - "cohort": "4", - "jobTitle": "Software Engineer", - "industry": "Entrepreneurship", - "cities": ["Raleigh"], - "_id": { - "$oid": "6674c30595590f9fd9459669" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "ZenBusiness", - "name": "Christie Herring", - "email": "clherring@gmail.com", - "linkedIn": "https://www.linkedin.com/in/christie-herring/", - "campus": "LA", - "cohort": "46", - "jobTitle": "Software Engineer II", - "industry": "SaaS, business creation services", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945966a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Zenefits", - "name": "Tobey Forsman", - "email": "tobeyforsman@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tobeyforsman/", - "campus": "LA", - "cohort": "42", - "jobTitle": "Senior Software Engineer", - "industry": "Software/Tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945966b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "zephyrx", - "name": "Brian Haller", - "email": "brian@brianhaller.com", - "linkedIn": "https://www.linkedin.com/in/brianjhaller/", - "campus": "NYC", - "cohort": "14", - "jobTitle": "Software Engineer", - "industry": "med tech", - "cities": [], - "_id": { - "$oid": "6674c30595590f9fd945966c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "ZeroPW", - "name": "Tammy Tan", - "email": "tammytan1912@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tammytan1/", - "campus": "NYC", - "cohort": "15", - "jobTitle": "Frontend Engineer", - "industry": "Computer & Network Security", - "cities": ["Norfolk", "London", "Mexico City"], - "_id": { - "$oid": "6674c30595590f9fd945966d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Zest AI", - "name": "Ronelle Caguioa", - "email": "ronelle.caguioa@gmail.com", - "linkedIn": "https://www.linkedin.com/in/ronellecaguioa/", - "campus": "LA", - "cohort": "36", - "jobTitle": "Senior Software Engineer", - "industry": "Fintech", - "cities": ["Saint Paul", "Los Angeles"], - "_id": { - "$oid": "6674c30595590f9fd945966e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Zeta Global", - "name": "Chris Tang", - "email": "chrisjtang@gmail.com", - "linkedIn": "https://www.linkedin.com/in/chrisjtang", - "campus": "LA", - "cohort": "46", - "jobTitle": "Software Engineer", - "industry": "Data", - "cities": ["Saint Paul", "Wichita"], - "_id": { - "$oid": "6674c30595590f9fd945966f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Zillow", - "name": "Cary L Chan", - "email": "caryLchan@gmail.com", - "linkedIn": "https://www.linkedin.com/in/carylchan/", - "campus": "LA", - "cohort": "35", - "jobTitle": "Full Stack Engineer", - "industry": "Entertainment", - "cities": ["Bakersfield", "Henderson", "Durham"], - "_id": { - "$oid": "6674c30595590f9fd9459670" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Zillow", - "name": "Hien Nguyen", - "email": "hien.qqnguyen@gmail.com", - "linkedIn": "https://www.linkedin.com/in/hienqn/", - "campus": "LA", - "cohort": "37", - "jobTitle": "Software Engineer", - "industry": "Entertainment", - "cities": ["Mesa", "San Jose"], - "_id": { - "$oid": "6674c30595590f9fd9459671" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Zillow Group", - "name": "Logan Thies", - "email": "logan.thies@icloud.com", - "linkedIn": "https://www.linkedin.com/in/loganthies137/", - "campus": "PTRI", - "cohort": "1", - "jobTitle": "Software Development Engineer", - "industry": "Real Estate", - "cities": [], - "_id": { - "$oid": "6674c30695590f9fd9459672" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Zip", - "name": "Chase Walters", - "email": "cwwalters@fastmail.com", - "linkedIn": "https://www.linkedin.com/in/charleswwalters/", - "campus": "FTRI / CTRI", - "cohort": "10", - "jobTitle": "Founding Software Engineer", - "industry": "Security", - "cities": ["Philadelphia", "Saint Paul", "Dallas"], - "_id": { - "$oid": "6674c30695590f9fd9459673" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Zipcar", - "name": "Sean Smith", - "email": "smith.seanm17@gmail.com", - "linkedIn": "https://www.linkedin.com/in/sean-smith17/", - "campus": "LA", - "cohort": "36", - "jobTitle": "Software Engineer (Front End)", - "industry": "Transportation", - "cities": [], - "_id": { - "$oid": "6674c30695590f9fd9459674" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Zipdrug", - "name": "Tolga Mizrakci", - "email": "tolgamizrakci@gmail.com", - "linkedIn": "https://www.linkedin.com/in/tolga-mizrakci/", - "campus": "NYC", - "cohort": "10", - "jobTitle": "Senior Software Engineer", - "industry": "Health Care", - "cities": ["Atlanta", "New York"], - "_id": { - "$oid": "6674c30695590f9fd9459675" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "ZipRecruiter", - "name": "Ryan Lee", - "email": "rynklee@gmail.com", - "linkedIn": "https://linkedin.com/in/rynklee", - "campus": "LA", - "cohort": "46", - "jobTitle": "Software Engineer III", - "industry": "Other", - "cities": ["Newark", "Anchorage"], - "_id": { - "$oid": "6674c30695590f9fd9459676" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Zoetis", - "name": "Eileen Cho", - "email": "eileenaracho@gmail.com", - "linkedIn": "https://www.linkedin.com/in/eileenaracho/", - "campus": "LA / WCRI", - "cohort": "56", - "jobTitle": "Data Systems Engineer", - "industry": "Other", - "cities": ["Corpus Christi"], - "_id": { - "$oid": "6674c30695590f9fd9459677" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Zogo Finance", - "name": "Derek Miller", - "email": "dsymiller@gmail.com", - "linkedIn": "https://www.linkedin.com/in/dsymiller/", - "campus": "NYC", - "cohort": "22", - "jobTitle": "Full Stack Engineer", - "industry": "education, financial services, banking", - "cities": ["Milwaukee", "Mesa"], - "_id": { - "$oid": "6674c30695590f9fd9459678" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Zoom Video Communications", - "name": "Jason Jones", - "email": "Jasonroyjones@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jasonroyjones", - "campus": "LA", - "cohort": "33", - "jobTitle": "Software Development Engineer", - "industry": "Telecommunications", - "cities": [], - "_id": { - "$oid": "6674c30695590f9fd9459679" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - }, - { - "company": "Zywave", - "name": "Jacob Davis", - "email": "jacob.drew.davis@gmail.com", - "linkedIn": "https://www.linkedin.com/in/jacob-drew-davis/", - "campus": "FTRI", - "cohort": "4", - "jobTitle": "Senior DevSecOps Engineer", - "industry": "Software / Tech", - "cities": ["Memphis"], - "_id": { - "$oid": "6674c30695590f9fd945967a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:14.072Z" - }, - "__v": 0 - } -] diff --git a/scripts/db/mongo-dev-init/MOCK_FORUMS.json b/scripts/db/mongo-dev-init/MOCK_FORUMS.json deleted file mode 100644 index 334ed3bd..00000000 --- a/scripts/db/mongo-dev-init/MOCK_FORUMS.json +++ /dev/null @@ -1,72 +0,0 @@ -[ - { - "title": "Code Crunch & Job Hunt: Battle Logs", - "description": "Share your epic (or tragic) tales from the job search battlefield. Did you bravely conquer the coding test, or did it conquer you?", - "_id": { - "$oid": "6674c31e95590f9fd9459e59" - }, - "createdAt": { - "$date": "2024-06-21T00:02:38.535Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:38.535Z" - }, - "__v": 0 - }, - { - "title": "Debugging My Resume", - "description": "Need help squashing those pesky resume bugs? Post your CV here and let the community help you refactor it into a job offer magnet.", - "_id": { - "$oid": "6674c31e95590f9fd9459e5a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:38.536Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:38.536Z" - }, - "__v": 0 - }, - { - "title": "Interview Nightmares & Dream Jobs", - "description": "Spill the beans on your worst interview disasters and celebrate those rare moments when it actually went well. Misery loves company, and so do success stories!", - "_id": { - "$oid": "6674c31e95590f9fd9459e5b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:38.536Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:38.536Z" - }, - "__v": 0 - }, - { - "title": "HR: Humans or Robots?", - "description": "Ever wonder if that HR person was a cleverly disguised bot? Share your weirdest and most robotic interactions with hiring departments.", - "_id": { - "$oid": "6674c31e95590f9fd9459e5c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:38.536Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:38.536Z" - }, - "__v": 0 - }, - { - "title": "Salary Negotiation: The Boss Fight", - "description": "Tips, tricks, and epic fails from the final boss battle of job hunting: salary negotiations. Did you get the loot or just a consolation prize?", - "_id": { - "$oid": "6674c31e95590f9fd9459e5d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:38.536Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:38.536Z" - }, - "__v": 0 - } -] diff --git a/scripts/db/mongo-dev-init/MOCK_GRADUATE_INVITATIONS.json b/scripts/db/mongo-dev-init/MOCK_GRADUATE_INVITATIONS.json deleted file mode 100644 index be2dee54..00000000 --- a/scripts/db/mongo-dev-init/MOCK_GRADUATE_INVITATIONS.json +++ /dev/null @@ -1,2402 +0,0 @@ -[ - { - "email": "acarradice0@gravatar.com", - "token": "541658530c351ab19011dc5a1cc7f796eb9fd388", - "tokenExpiry": { - "$date": "1970-01-20T20:13:06.955Z" - }, - "isRegistered": true, - "firstName": "Alonso", - "lastName": "Carradice", - "cohort": "ECRI 96", - "registeredAt": { - "$date": "1970-01-20T09:52:04.950Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cc8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.845Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.845Z" - }, - "__v": 0 - }, - { - "email": "wbleaden1@usgs.gov", - "token": "8ce87b99dc305ef8272b2261a73539156a2a4b11", - "tokenExpiry": { - "$date": "1970-01-20T17:04:07.259Z" - }, - "isRegistered": false, - "firstName": "Wilton", - "lastName": "Bleaden", - "cohort": "ECRI 89", - "registeredAt": { - "$date": "1970-01-20T19:09:48.748Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cc9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.845Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.845Z" - }, - "__v": 0 - }, - { - "email": "ghalso2@jalbum.net", - "token": "19e7fd479b1310e00940ac610b6d3731699224b3", - "tokenExpiry": { - "$date": "1970-01-20T18:28:45.337Z" - }, - "isRegistered": true, - "firstName": "Gannon", - "lastName": "Halso", - "cohort": "WCRI 8", - "registeredAt": { - "$date": "1970-01-20T12:18:04.782Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cca" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.845Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.845Z" - }, - "__v": 0 - }, - { - "email": "dgrinter3@amazon.com", - "token": "15639748a71a12b6c5b2a9e715aca9ff092877ae", - "tokenExpiry": { - "$date": "1970-01-20T21:40:55.502Z" - }, - "isRegistered": false, - "firstName": "Doralynn", - "lastName": "Grinter", - "cohort": "ECRI 84", - "registeredAt": { - "$date": "1970-01-20T14:33:07.127Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459ccb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.845Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.845Z" - }, - "__v": 0 - }, - { - "email": "wweatherley4@phoca.cz", - "token": "bc2b71d4fbd3ed3de0a0022aa21bbed4f851c755", - "tokenExpiry": { - "$date": "1970-01-20T16:08:07.351Z" - }, - "isRegistered": true, - "firstName": "Winn", - "lastName": "Weatherley", - "cohort": "ECRI 74", - "registeredAt": { - "$date": "1970-01-20T19:01:06.414Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459ccc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.846Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.846Z" - }, - "__v": 0 - }, - { - "email": "hregis5@dailymail.co.uk", - "token": "01aa9782932b7772770b0c4eae54787dea5f9638", - "tokenExpiry": { - "$date": "1970-01-20T21:42:28.549Z" - }, - "isRegistered": true, - "firstName": "Hermon", - "lastName": "Regis", - "cohort": "PTRI 22", - "registeredAt": { - "$date": "1970-01-20T14:35:42.909Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459ccd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.846Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.846Z" - }, - "__v": 0 - }, - { - "email": "crousby6@apache.org", - "token": "22ce1f16d86aa9b601a6bd044d3bbc455b4f36e2", - "tokenExpiry": { - "$date": "1970-01-20T22:11:05.604Z" - }, - "isRegistered": false, - "firstName": "Cordie", - "lastName": "Rousby", - "cohort": "CTRI 71", - "registeredAt": { - "$date": "1970-01-20T11:13:45.913Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cce" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.846Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.846Z" - }, - "__v": 0 - }, - { - "email": "mriseborough7@clickbank.net", - "token": "3fad65274e7439c2c0a35200295c46977020885f", - "tokenExpiry": { - "$date": "1970-01-20T17:54:29.183Z" - }, - "isRegistered": false, - "firstName": "Maureene", - "lastName": "Riseborough", - "cohort": "CTRI 92", - "registeredAt": { - "$date": "1970-01-20T12:21:32.791Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459ccf" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.846Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.846Z" - }, - "__v": 0 - }, - { - "email": "olawson8@washington.edu", - "token": "39b226afbd4282124dd31b9dd3243cb7e0b1f596", - "tokenExpiry": { - "$date": "1970-01-20T17:25:07.416Z" - }, - "isRegistered": false, - "firstName": "Orelle", - "lastName": "Lawson", - "cohort": "WCRI 84", - "registeredAt": { - "$date": "1970-01-20T13:15:33.880Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cd0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.846Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.846Z" - }, - "__v": 0 - }, - { - "email": "jemer9@constantcontact.com", - "token": "dbc7e41297546ad0d7a437abc4573ad5ac36dd2c", - "tokenExpiry": { - "$date": "1970-01-20T19:06:22.524Z" - }, - "isRegistered": false, - "firstName": "Jess", - "lastName": "Emer", - "cohort": "LA 74", - "registeredAt": { - "$date": "1970-01-20T13:02:37.374Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cd1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.846Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.846Z" - }, - "__v": 0 - }, - { - "email": "mtubblesa@nifty.com", - "token": "a664d8ee7cd56a9ce2963eae874da9c65fcd2361", - "tokenExpiry": { - "$date": "1970-01-20T21:34:46.527Z" - }, - "isRegistered": true, - "firstName": "Mariel", - "lastName": "Tubbles", - "cohort": "PTRI 50", - "registeredAt": { - "$date": "1970-01-20T10:33:43.674Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cd2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.846Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.846Z" - }, - "__v": 0 - }, - { - "email": "pkeightleyb@webnode.com", - "token": "3c78dccda8c878bb7dea64431e5811b2a75af184", - "tokenExpiry": { - "$date": "1970-01-20T20:11:18.643Z" - }, - "isRegistered": true, - "firstName": "Perice", - "lastName": "Keightley", - "cohort": "FTRI 82", - "registeredAt": { - "$date": "1970-01-20T13:31:16.231Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cd3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.846Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.846Z" - }, - "__v": 0 - }, - { - "email": "efalcusc@mapy.cz", - "token": "184efd9e68dbe020111734f78303742a65c1fd15", - "tokenExpiry": { - "$date": "1970-01-20T21:21:11.384Z" - }, - "isRegistered": false, - "firstName": "Eula", - "lastName": "Falcus", - "cohort": "ECRI 12", - "registeredAt": { - "$date": "1970-01-20T18:29:02.836Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cd4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.847Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.847Z" - }, - "__v": 0 - }, - { - "email": "jbaldinid@simplemachines.org", - "token": "26f1e984850651b64779d36d31af27602c8e714b", - "tokenExpiry": { - "$date": "1970-01-20T17:28:00.185Z" - }, - "isRegistered": true, - "firstName": "Jacqui", - "lastName": "Baldini", - "cohort": "LA 96", - "registeredAt": { - "$date": "1970-01-20T14:11:21.038Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cd5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.847Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.847Z" - }, - "__v": 0 - }, - { - "email": "snorthridgee@macromedia.com", - "token": "801d95108e35ccce2fe3b290803de8637d65959e", - "tokenExpiry": { - "$date": "1970-01-20T20:26:40.469Z" - }, - "isRegistered": true, - "firstName": "Scottie", - "lastName": "Northridge", - "cohort": "LA 61", - "registeredAt": { - "$date": "1970-01-20T13:47:43.603Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cd6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.847Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.847Z" - }, - "__v": 0 - }, - { - "email": "dhedgerf@shareasale.com", - "token": "d681aa42bf9f2371c60c05754a93fd1dc860fec8", - "tokenExpiry": { - "$date": "1970-01-20T23:53:00.488Z" - }, - "isRegistered": false, - "firstName": "Dorie", - "lastName": "Hedger", - "cohort": "LA 66", - "registeredAt": { - "$date": "1970-01-20T12:40:26.473Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cd7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.847Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.847Z" - }, - "__v": 0 - }, - { - "email": "nskeeng@yellowbook.com", - "token": "fadb33e7532fdce703106043931f2a6f15f88bc3", - "tokenExpiry": { - "$date": "1970-01-20T22:11:49.297Z" - }, - "isRegistered": false, - "firstName": "Nadia", - "lastName": "Skeen", - "cohort": "WCRI 68", - "registeredAt": { - "$date": "1970-01-20T14:58:04.577Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cd8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.847Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.847Z" - }, - "__v": 0 - }, - { - "email": "mgroomh@samsung.com", - "token": "8df1430be1cc296c94155b06a79a1e24d12b16ad", - "tokenExpiry": { - "$date": "1970-01-20T15:48:51.018Z" - }, - "isRegistered": true, - "firstName": "Mickie", - "lastName": "Groom", - "cohort": "WCRI 23", - "registeredAt": { - "$date": "1970-01-20T13:47:19.049Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cd9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.847Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.847Z" - }, - "__v": 0 - }, - { - "email": "lkupiszi@liveinternet.ru", - "token": "1740f0be8a449176d15c33a65a5c3bc011cc0f07", - "tokenExpiry": { - "$date": "1970-01-20T18:13:43.534Z" - }, - "isRegistered": true, - "firstName": "Leticia", - "lastName": "Kupisz", - "cohort": "PTRI 96", - "registeredAt": { - "$date": "1970-01-20T11:33:31.294Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cda" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.847Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.847Z" - }, - "__v": 0 - }, - { - "email": "bdeanj@mlb.com", - "token": "7f27fa69908e6aa17e28f425de5fcc57f0eeedc0", - "tokenExpiry": { - "$date": "1970-01-20T21:09:58.784Z" - }, - "isRegistered": false, - "firstName": "Babb", - "lastName": "Dean", - "cohort": "LA 73", - "registeredAt": { - "$date": "1970-01-20T12:25:42.997Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cdb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.847Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.847Z" - }, - "__v": 0 - }, - { - "email": "blilleyk@blogs.com", - "token": "7fb8c075412d11bebc0ba1aeca86bb08393f136b", - "tokenExpiry": { - "$date": "1970-01-20T22:12:31.606Z" - }, - "isRegistered": false, - "firstName": "Burtie", - "lastName": "Lilley", - "cohort": "NYC 10", - "registeredAt": { - "$date": "1970-01-20T10:38:22.087Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cdc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.847Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.847Z" - }, - "__v": 0 - }, - { - "email": "dwoodlandl@dailymotion.com", - "token": "774c9ed5bf04f259139e1c14b9446c818f83ec2a", - "tokenExpiry": { - "$date": "1970-01-20T22:18:36.987Z" - }, - "isRegistered": true, - "firstName": "Dorelle", - "lastName": "Woodland", - "cohort": "CTRI 79", - "registeredAt": { - "$date": "1970-01-20T21:05:10.004Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cdd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.847Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.847Z" - }, - "__v": 0 - }, - { - "email": "bdunlapm@dropbox.com", - "token": "0ddfcd5aee883c68ff7a7a704a406998d3b95a64", - "tokenExpiry": { - "$date": "1970-01-20T15:31:46.453Z" - }, - "isRegistered": false, - "firstName": "Burk", - "lastName": "Dunlap", - "cohort": "ECRI 1", - "registeredAt": { - "$date": "1970-01-20T10:46:36.642Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cde" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.848Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.848Z" - }, - "__v": 0 - }, - { - "email": "cdarreln@newyorker.com", - "token": "53488dd01c43dfa1d596c7964a4d2f534dc8ead5", - "tokenExpiry": { - "$date": "1970-01-20T23:03:27.931Z" - }, - "isRegistered": false, - "firstName": "Cecilius", - "lastName": "Darrel", - "cohort": "NYC 45", - "registeredAt": { - "$date": "1970-01-20T18:04:03.899Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cdf" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.848Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.848Z" - }, - "__v": 0 - }, - { - "email": "bbudcocko@va.gov", - "token": "efb168a15a3096e53d12ae9f80569d8d557c4493", - "tokenExpiry": { - "$date": "1970-01-20T16:41:58.041Z" - }, - "isRegistered": true, - "firstName": "Brod", - "lastName": "Budcock", - "cohort": "ECRI 94", - "registeredAt": { - "$date": "1970-01-20T09:40:43.900Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459ce0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.848Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.848Z" - }, - "__v": 0 - }, - { - "email": "bthickinp@ibm.com", - "token": "8e4af5f631de12544c44ed442d50aafb83204a44", - "tokenExpiry": { - "$date": "1970-01-20T19:31:28.928Z" - }, - "isRegistered": false, - "firstName": "Bayard", - "lastName": "Thickin", - "cohort": "PTRI 17", - "registeredAt": { - "$date": "1970-01-20T14:59:50.750Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459ce1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.848Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.848Z" - }, - "__v": 0 - }, - { - "email": "llarringtonq@sakura.ne.jp", - "token": "9951ab34e301c226be2b63b1e3f6b61e7ca6f178", - "tokenExpiry": { - "$date": "1970-01-20T18:09:03.537Z" - }, - "isRegistered": true, - "firstName": "Lorenza", - "lastName": "Larrington", - "cohort": "ECRI 92", - "registeredAt": { - "$date": "1970-01-20T11:34:38.978Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459ce2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.848Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.848Z" - }, - "__v": 0 - }, - { - "email": "rstantonr@mashable.com", - "token": "e5cd7ddfdfb812f47184272328b5510c9d8887b9", - "tokenExpiry": { - "$date": "1970-01-20T18:26:21.578Z" - }, - "isRegistered": true, - "firstName": "Ranna", - "lastName": "Stanton", - "cohort": "FTRI 42", - "registeredAt": { - "$date": "1970-01-20T14:35:02.332Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459ce3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.848Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.848Z" - }, - "__v": 0 - }, - { - "email": "scowdroys@umich.edu", - "token": "43315d4d9b75715104ee90104db03bf430b78fb1", - "tokenExpiry": { - "$date": "1970-01-20T17:51:20.075Z" - }, - "isRegistered": false, - "firstName": "Silvan", - "lastName": "Cowdroy", - "cohort": "PTRI 38", - "registeredAt": { - "$date": "1970-01-20T15:46:38.807Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459ce4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.848Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.848Z" - }, - "__v": 0 - }, - { - "email": "pskirlingt@4shared.com", - "token": "85d7af1fdd70f8fd165a014e08b7a4b3963ac044", - "tokenExpiry": { - "$date": "1970-01-20T20:53:47.794Z" - }, - "isRegistered": false, - "firstName": "Pepita", - "lastName": "Skirling", - "cohort": "FTRI 75", - "registeredAt": { - "$date": "1970-01-20T17:04:37.019Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459ce5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.848Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.848Z" - }, - "__v": 0 - }, - { - "email": "bspensleyu@indiatimes.com", - "token": "597d4be98c6ed3ab97f2301c6da3ee55d69033ed", - "tokenExpiry": { - "$date": "1970-01-20T20:38:19.465Z" - }, - "isRegistered": true, - "firstName": "Brinna", - "lastName": "Spensley", - "cohort": "LA 15", - "registeredAt": { - "$date": "1970-01-20T13:33:35.190Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459ce6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.848Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.848Z" - }, - "__v": 0 - }, - { - "email": "lblaisv@networksolutions.com", - "token": "b7502e54d2a16983c2ffab259798841eec4e8272", - "tokenExpiry": { - "$date": "1970-01-20T17:41:25.133Z" - }, - "isRegistered": true, - "firstName": "Leta", - "lastName": "Blais", - "cohort": "PTRI 42", - "registeredAt": { - "$date": "1970-01-20T17:20:30.885Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459ce7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.849Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.849Z" - }, - "__v": 0 - }, - { - "email": "olehuquetw@privacy.gov.au", - "token": "d368e4882e0e66e2c93020c54534bb56ff2d9d52", - "tokenExpiry": { - "$date": "1970-01-20T22:09:02.625Z" - }, - "isRegistered": true, - "firstName": "Onfre", - "lastName": "Le Huquet", - "cohort": "LA 15", - "registeredAt": { - "$date": "1970-01-20T16:24:15.434Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459ce8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.849Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.849Z" - }, - "__v": 0 - }, - { - "email": "cedworthiex@yelp.com", - "token": "8cb9209121c6007c214e4d7bc010190ee2bdd22a", - "tokenExpiry": { - "$date": "1970-01-20T16:43:23.096Z" - }, - "isRegistered": false, - "firstName": "Cairistiona", - "lastName": "Edworthie", - "cohort": "ECRI 17", - "registeredAt": { - "$date": "1970-01-20T14:57:07.010Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459ce9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.849Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.849Z" - }, - "__v": 0 - }, - { - "email": "jchongy@cpanel.net", - "token": "239edcea2ff7a2c73af428692f85be9b2ffab43f", - "tokenExpiry": { - "$date": "1970-01-20T23:11:47.146Z" - }, - "isRegistered": true, - "firstName": "Jonas", - "lastName": "Chong", - "cohort": "WCRI 34", - "registeredAt": { - "$date": "1970-01-20T16:23:24.074Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cea" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.849Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.849Z" - }, - "__v": 0 - }, - { - "email": "emintoz@statcounter.com", - "token": "4fdd3aae97ec4a7d44202cbfe5034517d0f00ebc", - "tokenExpiry": { - "$date": "1970-01-20T21:48:55.279Z" - }, - "isRegistered": true, - "firstName": "Ezra", - "lastName": "Minto", - "cohort": "WCRI 42", - "registeredAt": { - "$date": "1970-01-20T16:45:04.952Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459ceb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.849Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.849Z" - }, - "__v": 0 - }, - { - "email": "vlicari10@businessweek.com", - "token": "752025d65cc509ae58038fa039654c7c5ccff278", - "tokenExpiry": { - "$date": "1970-01-20T21:18:55.874Z" - }, - "isRegistered": false, - "firstName": "Virgina", - "lastName": "Licari", - "cohort": "CTRI 93", - "registeredAt": { - "$date": "1970-01-20T18:31:24.774Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cec" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.849Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.849Z" - }, - "__v": 0 - }, - { - "email": "rlambrick11@netscape.com", - "token": "38e604f9dd47c6468ab3d4104d8dbc9f6968bfd8", - "tokenExpiry": { - "$date": "1970-01-20T20:19:16.935Z" - }, - "isRegistered": true, - "firstName": "Rickert", - "lastName": "Lambrick", - "cohort": "LA 63", - "registeredAt": { - "$date": "1970-01-20T10:22:28.854Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459ced" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.849Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.849Z" - }, - "__v": 0 - }, - { - "email": "jmadner12@boston.com", - "token": "6f81c343c0ee4efec0c7d3359ec562dfdd26bdfd", - "tokenExpiry": { - "$date": "1970-01-20T20:28:16.843Z" - }, - "isRegistered": true, - "firstName": "Jesselyn", - "lastName": "Madner", - "cohort": "ECRI 55", - "registeredAt": { - "$date": "1970-01-20T12:18:09.400Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cee" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.849Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.849Z" - }, - "__v": 0 - }, - { - "email": "ptest13@ovh.net", - "token": "81d623ebdd75de31900eaeefd2f8f6d82e5de0f8", - "tokenExpiry": { - "$date": "1970-01-20T18:28:28.205Z" - }, - "isRegistered": false, - "firstName": "Peirce", - "lastName": "Test", - "cohort": "CTRI 50", - "registeredAt": { - "$date": "1970-01-20T10:10:01.051Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cef" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.849Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.850Z" - }, - "__v": 0 - }, - { - "email": "swalcher14@hc360.com", - "token": "824b906fd32c063d19ac0413a25ed88b366b400c", - "tokenExpiry": { - "$date": "1970-01-20T18:02:15.307Z" - }, - "isRegistered": true, - "firstName": "Saraann", - "lastName": "Walcher", - "cohort": "PTRI 74", - "registeredAt": { - "$date": "1970-01-20T19:08:59.027Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cf0" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.850Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.850Z" - }, - "__v": 0 - }, - { - "email": "gbank15@live.com", - "token": "0e265dea03b6dd81279caee70688ffc3e4aac84d", - "tokenExpiry": { - "$date": "1970-01-20T18:49:10.549Z" - }, - "isRegistered": true, - "firstName": "Giff", - "lastName": "Bank", - "cohort": "FTRI 42", - "registeredAt": { - "$date": "1970-01-20T12:07:22.746Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cf1" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.850Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.850Z" - }, - "__v": 0 - }, - { - "email": "rallmen16@ask.com", - "token": "ed6593ece367f7a7dc24f97bd2f6f0842f14c0c4", - "tokenExpiry": { - "$date": "1970-01-20T21:25:07.719Z" - }, - "isRegistered": false, - "firstName": "Ronny", - "lastName": "Allmen", - "cohort": "LA 89", - "registeredAt": { - "$date": "1970-01-20T12:51:39.673Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cf2" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.850Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.850Z" - }, - "__v": 0 - }, - { - "email": "kyarrow17@fastcompany.com", - "token": "d7cf565a92803a64d2cee30653696e1d1a6378b9", - "tokenExpiry": { - "$date": "1970-01-20T16:40:02.996Z" - }, - "isRegistered": true, - "firstName": "Kimmi", - "lastName": "Yarrow", - "cohort": "WCRI 10", - "registeredAt": { - "$date": "1970-01-20T13:45:24.672Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cf3" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.850Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.850Z" - }, - "__v": 0 - }, - { - "email": "pshepard18@fc2.com", - "token": "9210e18a7553812264f0de3dc1dfdfd149a98b78", - "tokenExpiry": { - "$date": "1970-01-20T22:04:47.332Z" - }, - "isRegistered": false, - "firstName": "Portia", - "lastName": "Shepard", - "cohort": "PTRI 16", - "registeredAt": { - "$date": "1970-01-20T08:36:25.642Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cf4" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.850Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.850Z" - }, - "__v": 0 - }, - { - "email": "egook19@yale.edu", - "token": "bb6e13b3f037f856d1bb9608fd0c621d6a2a91de", - "tokenExpiry": { - "$date": "1970-01-20T21:56:17.150Z" - }, - "isRegistered": false, - "firstName": "Emlen", - "lastName": "Gook", - "cohort": "WCRI 34", - "registeredAt": { - "$date": "1970-01-20T11:42:55.506Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cf5" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.850Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.850Z" - }, - "__v": 0 - }, - { - "email": "drocks1a@yandex.ru", - "token": "e8a818868eba93a6c8ec66475111de0443dc1bb9", - "tokenExpiry": { - "$date": "1970-01-20T17:03:32.938Z" - }, - "isRegistered": false, - "firstName": "Debee", - "lastName": "Rocks", - "cohort": "PTRI 17", - "registeredAt": { - "$date": "1970-01-20T17:53:43.454Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cf6" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.850Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.850Z" - }, - "__v": 0 - }, - { - "email": "vdhennin1b@webmd.com", - "token": "a38dcb44964ee25e8a6dec9154038d5d9938a87a", - "tokenExpiry": { - "$date": "1970-01-20T16:06:27.212Z" - }, - "isRegistered": false, - "firstName": "Valina", - "lastName": "Dhennin", - "cohort": "NYC 1", - "registeredAt": { - "$date": "1970-01-20T10:57:45.096Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cf7" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.850Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.850Z" - }, - "__v": 0 - }, - { - "email": "dcheasman1c@123-reg.co.uk", - "token": "94b64ff354e2f9fa7c8a037923bfa8b2dd866eeb", - "tokenExpiry": { - "$date": "1970-01-20T15:38:53.422Z" - }, - "isRegistered": false, - "firstName": "Dwayne", - "lastName": "Cheasman", - "cohort": "WCRI 63", - "registeredAt": { - "$date": "1970-01-20T11:36:58.150Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cf8" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.850Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.850Z" - }, - "__v": 0 - }, - { - "email": "ngladhill1d@bravesites.com", - "token": "d1e4e372f411f9b7078f2a40a97c922e29cc77d7", - "tokenExpiry": { - "$date": "1970-01-20T21:28:38.519Z" - }, - "isRegistered": false, - "firstName": "Nellie", - "lastName": "Gladhill", - "cohort": "WCRI 33", - "registeredAt": { - "$date": "1970-01-20T13:09:23.480Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cf9" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.851Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.851Z" - }, - "__v": 0 - }, - { - "email": "elivzey1e@yandex.ru", - "token": "2b1e273101fd6f2762a922de2b5da38bcc106e0a", - "tokenExpiry": { - "$date": "1970-01-20T18:47:00.017Z" - }, - "isRegistered": true, - "firstName": "Eziechiele", - "lastName": "Livzey", - "cohort": "NYC 85", - "registeredAt": { - "$date": "1970-01-20T11:12:55.403Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cfa" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.851Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.851Z" - }, - "__v": 0 - }, - { - "email": "smingasson1f@geocities.jp", - "token": "11b06aee7ad84b24658444456a578d207869e512", - "tokenExpiry": { - "$date": "1970-01-21T00:04:52.948Z" - }, - "isRegistered": true, - "firstName": "Sallyanne", - "lastName": "Mingasson", - "cohort": "NYC 12", - "registeredAt": { - "$date": "1970-01-20T11:45:13.073Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cfb" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.851Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.851Z" - }, - "__v": 0 - }, - { - "email": "hpattullo1g@cocolog-nifty.com", - "token": "f2006654fe52c91bb6953933346a297da119c8c5", - "tokenExpiry": { - "$date": "1970-01-20T23:09:00.391Z" - }, - "isRegistered": true, - "firstName": "Heall", - "lastName": "Pattullo", - "cohort": "LA 75", - "registeredAt": { - "$date": "1970-01-20T10:34:33.540Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cfc" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.851Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.851Z" - }, - "__v": 0 - }, - { - "email": "ascarlan1h@businessinsider.com", - "token": "9cff46cacb3a30c7b3b3b54f277e0aab630d45c4", - "tokenExpiry": { - "$date": "1970-01-20T22:11:04.700Z" - }, - "isRegistered": true, - "firstName": "Amaleta", - "lastName": "Scarlan", - "cohort": "ECRI 52", - "registeredAt": { - "$date": "1970-01-20T19:45:01.940Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cfd" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.851Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.851Z" - }, - "__v": 0 - }, - { - "email": "zlawlance1i@gmpg.org", - "token": "bcb5ce7157e175a16358d596e508c2db76cfc1bc", - "tokenExpiry": { - "$date": "1970-01-20T22:23:28.526Z" - }, - "isRegistered": true, - "firstName": "Zonda", - "lastName": "Lawlance", - "cohort": "CTRI 27", - "registeredAt": { - "$date": "1970-01-20T16:45:24.480Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cfe" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.851Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.851Z" - }, - "__v": 0 - }, - { - "email": "lromney1j@independent.co.uk", - "token": "b85fe93921acfd5cf8d12b574dd3b47e4018e436", - "tokenExpiry": { - "$date": "1970-01-20T19:58:24.543Z" - }, - "isRegistered": false, - "firstName": "Livvy", - "lastName": "Romney", - "cohort": "ECRI 32", - "registeredAt": { - "$date": "1970-01-20T17:22:54.160Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459cff" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.851Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.851Z" - }, - "__v": 0 - }, - { - "email": "ballardyce1k@dell.com", - "token": "0f8a9aac15a71fa742c39d3096542281589366b8", - "tokenExpiry": { - "$date": "1970-01-20T21:26:02.499Z" - }, - "isRegistered": true, - "firstName": "Brockie", - "lastName": "Allardyce", - "cohort": "PTRI 65", - "registeredAt": { - "$date": "1970-01-20T10:24:01.128Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d00" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.851Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.851Z" - }, - "__v": 0 - }, - { - "email": "jatthowe1l@omniture.com", - "token": "aca52ba0413382dde47301aeadf43a363e9997ba", - "tokenExpiry": { - "$date": "1970-01-20T15:42:46.033Z" - }, - "isRegistered": false, - "firstName": "Jaquelyn", - "lastName": "Atthowe", - "cohort": "ECRI 71", - "registeredAt": { - "$date": "1970-01-20T18:20:08.705Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d01" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.851Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.851Z" - }, - "__v": 0 - }, - { - "email": "bguerre1m@ftc.gov", - "token": "7b1dd8462dbfad6cea9dad31f7261fef4ec8be95", - "tokenExpiry": { - "$date": "1970-01-20T21:15:30.214Z" - }, - "isRegistered": true, - "firstName": "Barn", - "lastName": "Guerre", - "cohort": "WCRI 86", - "registeredAt": { - "$date": "1970-01-20T20:43:22.221Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d02" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.852Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.852Z" - }, - "__v": 0 - }, - { - "email": "cmillions1n@domainmarket.com", - "token": "5f6819ad846a8ea3e0880dd7fd17c7e1e2b55d90", - "tokenExpiry": { - "$date": "1970-01-20T18:00:26.083Z" - }, - "isRegistered": false, - "firstName": "Carina", - "lastName": "Millions", - "cohort": "CTRI 9", - "registeredAt": { - "$date": "1970-01-20T15:50:36.752Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d03" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.852Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.852Z" - }, - "__v": 0 - }, - { - "email": "mgrigorini1o@pinterest.com", - "token": "355d05a947933941c88073a12e6787e4e3199b2d", - "tokenExpiry": { - "$date": "1970-01-20T21:30:08.606Z" - }, - "isRegistered": true, - "firstName": "Micaela", - "lastName": "Grigorini", - "cohort": "WCRI 48", - "registeredAt": { - "$date": "1970-01-20T09:06:40.482Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d04" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.852Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.852Z" - }, - "__v": 0 - }, - { - "email": "fredwin1p@lulu.com", - "token": "dd3f9f8550968f560e0beddeeb22e6ed345b66f3", - "tokenExpiry": { - "$date": "1970-01-20T22:00:47.163Z" - }, - "isRegistered": false, - "firstName": "Fran", - "lastName": "Redwin", - "cohort": "PTRI 0", - "registeredAt": { - "$date": "1970-01-20T13:29:42.467Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d05" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.852Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.852Z" - }, - "__v": 0 - }, - { - "email": "kfirmager1q@vistaprint.com", - "token": "dc439fab416b534d3f1691e2b5afa1cb67879d76", - "tokenExpiry": { - "$date": "1970-01-20T18:51:41.604Z" - }, - "isRegistered": true, - "firstName": "Kalina", - "lastName": "Firmager", - "cohort": "PTRI 67", - "registeredAt": { - "$date": "1970-01-20T15:14:33.707Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d06" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.852Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.852Z" - }, - "__v": 0 - }, - { - "email": "lblyth1r@dion.ne.jp", - "token": "a10da796c88d8b7cf9fb78132bf8ec674f2ccf6e", - "tokenExpiry": { - "$date": "1970-01-20T16:58:29.120Z" - }, - "isRegistered": true, - "firstName": "Lurline", - "lastName": "Blyth", - "cohort": "LA 15", - "registeredAt": { - "$date": "1970-01-20T14:18:34.651Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d07" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.852Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.852Z" - }, - "__v": 0 - }, - { - "email": "jstowte1s@pbs.org", - "token": "f1f937e0689f1bc5c2c2c586282f591e7f65d53b", - "tokenExpiry": { - "$date": "1970-01-20T23:09:52.951Z" - }, - "isRegistered": true, - "firstName": "Julianne", - "lastName": "Stowte", - "cohort": "LA 39", - "registeredAt": { - "$date": "1970-01-20T10:56:05.284Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d08" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.852Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.852Z" - }, - "__v": 0 - }, - { - "email": "tpatrie1t@economist.com", - "token": "650aaa0e6787da810abff83ac7745809a1cda53f", - "tokenExpiry": { - "$date": "1970-01-20T21:13:25.232Z" - }, - "isRegistered": true, - "firstName": "Tierney", - "lastName": "Patrie", - "cohort": "PTRI 8", - "registeredAt": { - "$date": "1970-01-20T16:53:05.719Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d09" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.852Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.852Z" - }, - "__v": 0 - }, - { - "email": "gsherborne1u@ustream.tv", - "token": "37cfac40e6796b28a9f5887a0f7ce0bfc8ac4ecb", - "tokenExpiry": { - "$date": "1970-01-20T20:05:43.470Z" - }, - "isRegistered": false, - "firstName": "Gerladina", - "lastName": "Sherborne", - "cohort": "ECRI 28", - "registeredAt": { - "$date": "1970-01-20T19:28:48.496Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d0a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.852Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.852Z" - }, - "__v": 0 - }, - { - "email": "pfarress1v@amazonaws.com", - "token": "bf080b5bb70d6c0a44ce68a8ab8a88e042b19cc1", - "tokenExpiry": { - "$date": "1970-01-20T19:31:56.219Z" - }, - "isRegistered": true, - "firstName": "Phil", - "lastName": "Farress", - "cohort": "FTRI 49", - "registeredAt": { - "$date": "1970-01-20T14:30:52.128Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d0b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.852Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.852Z" - }, - "__v": 0 - }, - { - "email": "eallsop1w@deviantart.com", - "token": "1a5bea6e3a65ac46f6e21680ca0ba34f5e2122f2", - "tokenExpiry": { - "$date": "1970-01-20T16:31:34.713Z" - }, - "isRegistered": false, - "firstName": "Elisha", - "lastName": "Allsop", - "cohort": "ECRI 53", - "registeredAt": { - "$date": "1970-01-20T20:03:21.737Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d0c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.853Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.853Z" - }, - "__v": 0 - }, - { - "email": "cskipton1x@4shared.com", - "token": "45278d736abab31f911da7c843e62b524b65c4f4", - "tokenExpiry": { - "$date": "1970-01-20T22:34:36.760Z" - }, - "isRegistered": false, - "firstName": "Carline", - "lastName": "Skipton", - "cohort": "PTRI 49", - "registeredAt": { - "$date": "1970-01-20T16:49:15.150Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d0d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.853Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.853Z" - }, - "__v": 0 - }, - { - "email": "mnorthridge1y@google.com.au", - "token": "62f61c162c2ccffc5edcbdfdd02ec45cf1c39376", - "tokenExpiry": { - "$date": "1970-01-20T18:03:15.173Z" - }, - "isRegistered": false, - "firstName": "Mia", - "lastName": "Northridge", - "cohort": "LA 84", - "registeredAt": { - "$date": "1970-01-20T11:07:10.387Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d0e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.853Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.853Z" - }, - "__v": 0 - }, - { - "email": "ifriedenbach1z@last.fm", - "token": "bd680ad939d973c3e0010ec7a2a2f1921fecc19d", - "tokenExpiry": { - "$date": "1970-01-20T21:23:43.836Z" - }, - "isRegistered": true, - "firstName": "Isaiah", - "lastName": "Friedenbach", - "cohort": "WCRI 44", - "registeredAt": { - "$date": "1970-01-20T16:50:30.245Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d0f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.853Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.853Z" - }, - "__v": 0 - }, - { - "email": "tdulton20@sitemeter.com", - "token": "f2f3b6b7c83a606cf8cbef085140c25683e80a46", - "tokenExpiry": { - "$date": "1970-01-20T23:13:00.112Z" - }, - "isRegistered": true, - "firstName": "Tallulah", - "lastName": "Dulton", - "cohort": "ECRI 91", - "registeredAt": { - "$date": "1970-01-20T13:17:09.264Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d10" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.853Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.853Z" - }, - "__v": 0 - }, - { - "email": "besherwood21@amazon.com", - "token": "c3beb14a7cd4e9fd4834cdf6594413ed971c01f3", - "tokenExpiry": { - "$date": "1970-01-20T17:54:39.008Z" - }, - "isRegistered": false, - "firstName": "Bel", - "lastName": "Esherwood", - "cohort": "CTRI 86", - "registeredAt": { - "$date": "1970-01-20T19:40:17.366Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d11" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.853Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.853Z" - }, - "__v": 0 - }, - { - "email": "akiley22@cpanel.net", - "token": "d2b06ea8d9e4a572cee6d4e2681f67f00894ad56", - "tokenExpiry": { - "$date": "1970-01-20T23:09:01.587Z" - }, - "isRegistered": true, - "firstName": "Anatol", - "lastName": "Kiley", - "cohort": "ECRI 60", - "registeredAt": { - "$date": "1970-01-20T20:15:39.754Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d12" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.853Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.853Z" - }, - "__v": 0 - }, - { - "email": "cmeth23@zimbio.com", - "token": "8c4a90e9eb572a8dcfb306cc5c26d30387590e28", - "tokenExpiry": { - "$date": "1970-01-20T23:49:56.000Z" - }, - "isRegistered": true, - "firstName": "Corabel", - "lastName": "Meth", - "cohort": "WCRI 33", - "registeredAt": { - "$date": "1970-01-20T11:26:24.205Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d13" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.853Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.853Z" - }, - "__v": 0 - }, - { - "email": "sterrill24@behance.net", - "token": "03eddbc6485cdd42c8f5cac45e249f6cdb7400eb", - "tokenExpiry": { - "$date": "1970-01-20T22:46:26.241Z" - }, - "isRegistered": false, - "firstName": "Shae", - "lastName": "Terrill", - "cohort": "LA 64", - "registeredAt": { - "$date": "1970-01-20T12:46:02.944Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d14" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.854Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.854Z" - }, - "__v": 0 - }, - { - "email": "dmahedy25@wix.com", - "token": "ce05349faa503dc55d9038773796038a7c8df560", - "tokenExpiry": { - "$date": "1970-01-20T21:12:02.995Z" - }, - "isRegistered": false, - "firstName": "Dotty", - "lastName": "Mahedy", - "cohort": "PTRI 59", - "registeredAt": { - "$date": "1970-01-20T17:04:00.599Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d15" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.854Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.854Z" - }, - "__v": 0 - }, - { - "email": "sattiwill26@wsj.com", - "token": "a09c0f90af57af5b39b94cd83d208ffb25111ccb", - "tokenExpiry": { - "$date": "1970-01-20T22:49:09.405Z" - }, - "isRegistered": false, - "firstName": "Salaidh", - "lastName": "Attiwill", - "cohort": "FTRI 89", - "registeredAt": { - "$date": "1970-01-20T19:08:51.917Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d16" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.854Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.854Z" - }, - "__v": 0 - }, - { - "email": "bbomb27@cmu.edu", - "token": "a196221355ed403ad250ccebf4b4019028b1de19", - "tokenExpiry": { - "$date": "1970-01-20T20:50:26.869Z" - }, - "isRegistered": true, - "firstName": "Billi", - "lastName": "Bomb", - "cohort": "NYC 64", - "registeredAt": { - "$date": "1970-01-20T17:13:38.131Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d17" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.854Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.854Z" - }, - "__v": 0 - }, - { - "email": "bbedells28@lycos.com", - "token": "31d50e34784504d1ed2ba0fe979c98c64beaf408", - "tokenExpiry": { - "$date": "1970-01-20T22:14:17.038Z" - }, - "isRegistered": true, - "firstName": "Burty", - "lastName": "Bedells", - "cohort": "PTRI 23", - "registeredAt": { - "$date": "1970-01-20T17:08:45.382Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d18" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.854Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.854Z" - }, - "__v": 0 - }, - { - "email": "dlemin29@nhs.uk", - "token": "b3f374ec819cae31abc03d8d4fd606182994b61c", - "tokenExpiry": { - "$date": "1970-01-20T23:33:14.947Z" - }, - "isRegistered": false, - "firstName": "De", - "lastName": "Lemin", - "cohort": "CTRI 82", - "registeredAt": { - "$date": "1970-01-20T19:38:34.981Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d19" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.854Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.854Z" - }, - "__v": 0 - }, - { - "email": "mdraco2a@shinystat.com", - "token": "106220c3f67863ec7b60efa5d818a9615f1f6ae8", - "tokenExpiry": { - "$date": "1970-01-20T18:50:23.735Z" - }, - "isRegistered": true, - "firstName": "Morgen", - "lastName": "Draco", - "cohort": "LA 61", - "registeredAt": { - "$date": "1970-01-20T11:40:37.999Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d1a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.854Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.854Z" - }, - "__v": 0 - }, - { - "email": "ugrassin2b@ucoz.com", - "token": "0bfe9f83752600b459f9299ef15aeff6e2403feb", - "tokenExpiry": { - "$date": "1970-01-20T18:22:05.381Z" - }, - "isRegistered": true, - "firstName": "Urban", - "lastName": "Grassin", - "cohort": "ECRI 13", - "registeredAt": { - "$date": "1970-01-20T19:01:11.474Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d1b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.855Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.855Z" - }, - "__v": 0 - }, - { - "email": "aatto2c@va.gov", - "token": "d918b6a21507a3b203a595b174084d1bcbfd8643", - "tokenExpiry": { - "$date": "1970-01-20T20:20:45.693Z" - }, - "isRegistered": false, - "firstName": "Archy", - "lastName": "Atto", - "cohort": "LA 25", - "registeredAt": { - "$date": "1970-01-20T19:34:03.526Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d1c" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.855Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.855Z" - }, - "__v": 0 - }, - { - "email": "lmurfill2d@earthlink.net", - "token": "1cfa1580520273a41a6101c1c40d9387a8240e15", - "tokenExpiry": { - "$date": "1970-01-20T23:01:11.765Z" - }, - "isRegistered": true, - "firstName": "Lothaire", - "lastName": "Murfill", - "cohort": "CTRI 51", - "registeredAt": { - "$date": "1970-01-20T17:22:13.684Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d1d" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.855Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.855Z" - }, - "__v": 0 - }, - { - "email": "aocrigan2e@ezinearticles.com", - "token": "7c84c138aaea08c8478456fe062b6026922c6bb0", - "tokenExpiry": { - "$date": "1970-01-20T22:51:40.980Z" - }, - "isRegistered": true, - "firstName": "Anne", - "lastName": "O'Crigan", - "cohort": "FTRI 93", - "registeredAt": { - "$date": "1970-01-20T09:36:48.159Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d1e" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.855Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.855Z" - }, - "__v": 0 - }, - { - "email": "nmeacher2f@barnesandnoble.com", - "token": "fe1032812102bf0930a52971a39da65b9d92be03", - "tokenExpiry": { - "$date": "1970-01-20T19:17:13.160Z" - }, - "isRegistered": true, - "firstName": "Nisse", - "lastName": "Meacher", - "cohort": "ECRI 97", - "registeredAt": { - "$date": "1970-01-20T11:07:19.572Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d1f" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.855Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.855Z" - }, - "__v": 0 - }, - { - "email": "dtraill2g@tamu.edu", - "token": "356be8cf14a78b06cb741c6c1082a5b2639dc100", - "tokenExpiry": { - "$date": "1970-01-20T22:23:15.575Z" - }, - "isRegistered": false, - "firstName": "Dix", - "lastName": "Traill", - "cohort": "WCRI 45", - "registeredAt": { - "$date": "1970-01-20T13:00:41.678Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d20" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.855Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.855Z" - }, - "__v": 0 - }, - { - "email": "vproske2h@newsvine.com", - "token": "674dfc2ddb23a74b43373f5d42b23d29016408c2", - "tokenExpiry": { - "$date": "1970-01-20T20:04:02.238Z" - }, - "isRegistered": false, - "firstName": "Verla", - "lastName": "Proske", - "cohort": "FTRI 40", - "registeredAt": { - "$date": "1970-01-20T13:09:03.295Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d21" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.855Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.855Z" - }, - "__v": 0 - }, - { - "email": "pdahmke2i@diigo.com", - "token": "d165ca490f364a0c81f1c3cf44f7bc5bd314c483", - "tokenExpiry": { - "$date": "1970-01-20T19:48:05.460Z" - }, - "isRegistered": false, - "firstName": "Pennie", - "lastName": "Dahmke", - "cohort": "FTRI 14", - "registeredAt": { - "$date": "1970-01-20T17:46:08.448Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d22" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.855Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.855Z" - }, - "__v": 0 - }, - { - "email": "akilroy2j@elpais.com", - "token": "651b1e2b34363ee9eaeb35d884cacce571bb20d3", - "tokenExpiry": { - "$date": "1970-01-20T19:10:47.532Z" - }, - "isRegistered": true, - "firstName": "Anestassia", - "lastName": "Kilroy", - "cohort": "CTRI 32", - "registeredAt": { - "$date": "1970-01-20T18:12:42.650Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d23" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.856Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.856Z" - }, - "__v": 0 - }, - { - "email": "rvanelli2k@xing.com", - "token": "362b7aeeb1b86eeeeb751f0feb30446f38b3551a", - "tokenExpiry": { - "$date": "1970-01-20T16:23:31.810Z" - }, - "isRegistered": true, - "firstName": "Remus", - "lastName": "Vanelli", - "cohort": "CTRI 7", - "registeredAt": { - "$date": "1970-01-20T13:01:08.428Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d24" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.856Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.856Z" - }, - "__v": 0 - }, - { - "email": "gtarbert2l@discovery.com", - "token": "47b989b8ef9a9640e1301246469e90468b0409b4", - "tokenExpiry": { - "$date": "1970-01-21T00:06:07.924Z" - }, - "isRegistered": true, - "firstName": "Gil", - "lastName": "Tarbert", - "cohort": "ECRI 69", - "registeredAt": { - "$date": "1970-01-20T12:06:31.965Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d25" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.856Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.856Z" - }, - "__v": 0 - }, - { - "email": "ysmelley2m@twitpic.com", - "token": "d9a8b41e99f1fc724641283b275b61141086ecef", - "tokenExpiry": { - "$date": "1970-01-20T19:45:33.227Z" - }, - "isRegistered": true, - "firstName": "Yulma", - "lastName": "Smelley", - "cohort": "FTRI 4", - "registeredAt": { - "$date": "1970-01-20T20:28:53.795Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d26" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.856Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.856Z" - }, - "__v": 0 - }, - { - "email": "tlongworth2n@engadget.com", - "token": "5261c5b65c8539a3affa90614190fcedb77f1fac", - "tokenExpiry": { - "$date": "1970-01-21T00:04:10.140Z" - }, - "isRegistered": false, - "firstName": "Timmy", - "lastName": "Longworth", - "cohort": "LA 56", - "registeredAt": { - "$date": "1970-01-20T18:47:58.351Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d27" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.856Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.856Z" - }, - "__v": 0 - }, - { - "email": "amollatt2o@printfriendly.com", - "token": "4019b03e69e2362fbd1a10fce561eb60bdc16b99", - "tokenExpiry": { - "$date": "1970-01-20T22:59:36.365Z" - }, - "isRegistered": true, - "firstName": "Arthur", - "lastName": "Mollatt", - "cohort": "WCRI 89", - "registeredAt": { - "$date": "1970-01-20T18:28:04.127Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d28" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.856Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.856Z" - }, - "__v": 0 - }, - { - "email": "gtaylor2p@nps.gov", - "token": "16ce55d2ccf612dc3285cfdee894fb8064453a4b", - "tokenExpiry": { - "$date": "1970-01-20T23:53:37.372Z" - }, - "isRegistered": false, - "firstName": "Griffin", - "lastName": "Taylor", - "cohort": "LA 99", - "registeredAt": { - "$date": "1970-01-20T18:10:31.385Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d29" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.856Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.856Z" - }, - "__v": 0 - }, - { - "email": "ostudholme2q@pcworld.com", - "token": "9d62938833da712a578ade3e54cb627996a5464e", - "tokenExpiry": { - "$date": "1970-01-20T16:54:11.012Z" - }, - "isRegistered": true, - "firstName": "Odelinda", - "lastName": "Studholme", - "cohort": "CTRI 22", - "registeredAt": { - "$date": "1970-01-20T09:11:35.487Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d2a" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.856Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.856Z" - }, - "__v": 0 - }, - { - "email": "aduffill2r@nbcnews.com", - "token": "8ccc9ddb9f92b0ee6848dd20ca7f3fab1d98fbb0", - "tokenExpiry": { - "$date": "1970-01-20T18:16:57.687Z" - }, - "isRegistered": true, - "firstName": "Ardith", - "lastName": "Duffill", - "cohort": "CTRI 86", - "registeredAt": { - "$date": "1970-01-20T14:21:35.088Z" - }, - "_id": { - "$oid": "6674c31595590f9fd9459d2b" - }, - "createdAt": { - "$date": "2024-06-21T00:02:29.856Z" - }, - "lastEmailSent": { - "$date": "2024-06-21T00:02:29.856Z" - }, - "__v": 0 - } -] diff --git a/scripts/db/mongo-dev-init/MOCK_POSTS.json b/scripts/db/mongo-dev-init/MOCK_POSTS.json deleted file mode 100644 index 1ac5fcd6..00000000 --- a/scripts/db/mongo-dev-init/MOCK_POSTS.json +++ /dev/null @@ -1,990 +0,0 @@ -[ - { - "thread": { - "$oid": "6674c31f95590f9fd945a20e" - }, - "user": { - "$oid": "66723da68f368f285d304ac9" - }, - "content": "Discussing the evolution of programming languages and their impact on software development practices.", - "createdAt": { - "$date": "2024-06-21T00:02:39.606Z" - }, - "updatedAt": { - "$date": "2027-04-08T20:49:14.678Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a223" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a20d" - }, - "user": { - "$oid": "66723da68f368f285d304acd" - }, - "content": "What are your thoughts on the future of cybersecurity in the era of AI and automation?", - "createdAt": { - "$date": "2024-06-21T00:02:39.606Z" - }, - "updatedAt": { - "$date": "2024-08-04T07:32:13.537Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a224" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a20e" - }, - "user": { - "$oid": "6644c7f7515c654def9b2b18" - }, - "content": "Tips for managing technical debt in software projects. How do you prioritize and refactor?", - "createdAt": { - "$date": "2024-06-21T00:02:39.606Z" - }, - "updatedAt": { - "$date": "2027-06-03T21:57:17.677Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a225" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a212" - }, - "user": { - "$oid": "6644c602515c654def9b2ae7" - }, - "content": "What are the key factors to consider when choosing a tech stack for a new startup project?", - "createdAt": { - "$date": "2024-06-21T00:02:39.607Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.607Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a226" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a211" - }, - "user": { - "$oid": "6644c602515c654def9b2ae7" - }, - "content": "Discussing the challenges and benefits of implementing blockchain technology in supply chain management.", - "createdAt": { - "$date": "2024-06-21T00:02:39.606Z" - }, - "updatedAt": { - "$date": "2025-03-04T04:00:32.084Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a227" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a207" - }, - "user": { - "$oid": "6644c602515c654def9b2ae7" - }, - "content": "Discussing the benefits of adopting agile methodologies in non-software development teams.", - "createdAt": { - "$date": "2024-06-21T00:02:39.607Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.607Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a228" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a20c" - }, - "user": { - "$oid": "6644c602515c654def9b2ae7" - }, - "content": "Tips for building scalable and maintainable frontend architectures. How do you structure your codebase?", - "createdAt": { - "$date": "2024-06-21T00:02:39.607Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.607Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a229" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a20d" - }, - "user": { - "$oid": "66723da68f368f285d304acd" - }, - "content": "Tips for optimizing database performance in high-traffic web applications. Best practices?", - "createdAt": { - "$date": "2024-06-21T00:02:39.607Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.607Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a22a" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a204" - }, - "user": { - "$oid": "6644c768515c654def9b2b09" - }, - "content": "Seeking advice on transitioning from academia to industry as a software engineer. What are the challenges?", - "createdAt": { - "$date": "2024-06-21T00:02:39.608Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.608Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a22b" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a20f" - }, - "user": { - "$oid": "66723da68f368f285d304acd" - }, - "content": "How can developers contribute to open-source projects? Discussing the impact of community contributions.", - "createdAt": { - "$date": "2024-06-21T00:02:39.608Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.608Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a22c" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a210" - }, - "user": { - "$oid": "6644c7f7515c654def9b2b18" - }, - "content": "Tips for managing technical debt in software projects. How do you prioritize and refactor?", - "createdAt": { - "$date": "2024-06-21T00:02:39.608Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.608Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a22d" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a210" - }, - "user": { - "$oid": "6644c7f7515c654def9b2b18" - }, - "content": "Exploring the challenges of scaling applications globally. How do you design for international users?", - "createdAt": { - "$date": "2024-06-21T00:02:39.606Z" - }, - "updatedAt": { - "$date": "2026-12-23T02:32:10.434Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a22e" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a20d" - }, - "user": { - "$oid": "66723da68f368f285d304acd" - }, - "content": "Tips for optimizing frontend performance in large-scale web applications? What techniques do you use?", - "createdAt": { - "$date": "2024-06-21T00:02:39.606Z" - }, - "updatedAt": { - "$date": "2024-08-24T01:18:00.754Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a22f" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a208" - }, - "user": { - "$oid": "6644c602515c654def9b2ae7" - }, - "content": "What are your thoughts on the future of cybersecurity in the era of AI and automation?", - "createdAt": { - "$date": "2024-06-21T00:02:39.606Z" - }, - "updatedAt": { - "$date": "2026-08-16T10:47:30.615Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a230" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a20e" - }, - "user": { - "$oid": "6644c768515c654def9b2b09" - }, - "content": "How can AI and machine learning be leveraged to enhance personalized user experiences in applications?", - "createdAt": { - "$date": "2024-06-21T00:02:39.608Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.608Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a231" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a209" - }, - "user": { - "$oid": "66723da68f368f285d304acd" - }, - "content": "Exploring the challenges of implementing AI-driven chatbots in customer service applications.", - "createdAt": { - "$date": "2024-06-21T00:02:39.608Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.608Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a232" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a206" - }, - "user": { - "$oid": "6644c768515c654def9b2b09" - }, - "content": "How do you balance feature development with technical debt reduction in agile development?", - "createdAt": { - "$date": "2024-06-21T00:02:39.606Z" - }, - "updatedAt": { - "$date": "2026-02-16T20:31:19.075Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a233" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a20b" - }, - "user": { - "$oid": "6644c768515c654def9b2b09" - }, - "content": "Seeking advice on building a personal brand as a software engineer. How can networking help career growth?", - "createdAt": { - "$date": "2024-06-21T00:02:39.606Z" - }, - "updatedAt": { - "$date": "2025-09-12T07:12:51.482Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a234" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a20a" - }, - "user": { - "$oid": "6644c768515c654def9b2b09" - }, - "content": "Discussing the best practices for securing RESTful APIs. How do you protect against common vulnerabilities?", - "createdAt": { - "$date": "2024-06-21T00:02:39.608Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.608Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a235" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a20b" - }, - "user": { - "$oid": "6644c7f7515c654def9b2b18" - }, - "content": "What are the key factors to consider when choosing a tech stack for a new startup project?", - "createdAt": { - "$date": "2024-06-21T00:02:39.608Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.608Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a236" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a208" - }, - "user": { - "$oid": "6644c602515c654def9b2ae7" - }, - "content": "Tips for managing technical debt in software projects. How do you prioritize and refactor?", - "createdAt": { - "$date": "2024-06-21T00:02:39.608Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.608Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a237" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a20a" - }, - "user": { - "$oid": "6674c31695590f9fd9459dcf" - }, - "content": "Discussing the impact of IoT on everyday life and its implications for software developers.", - "createdAt": { - "$date": "2024-06-21T00:02:39.609Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.609Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a238" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a203" - }, - "user": { - "$oid": "6674c31695590f9fd9459d98" - }, - "content": "How do you approach designing intuitive user interfaces? Share your UX/UI design principles.", - "createdAt": { - "$date": "2024-06-21T00:02:39.609Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.609Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a239" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a205" - }, - "user": { - "$oid": "6674c31695590f9fd9459de4" - }, - "content": "How do you approach code reviews in your team? Share your process for constructive feedback and improvement.", - "createdAt": { - "$date": "2024-06-21T00:02:39.607Z" - }, - "updatedAt": { - "$date": "2027-01-06T07:43:18.087Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a23a" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a20c" - }, - "user": { - "$oid": "6674c31695590f9fd9459d9f" - }, - "content": "Discussing the impact of IoT on everyday life and its implications for software developers.", - "createdAt": { - "$date": "2024-06-21T00:02:39.609Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.609Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a23b" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a204" - }, - "user": { - "$oid": "6674c31695590f9fd9459dd8" - }, - "content": "Seeking advice on transitioning from frontend to full-stack development. What skills should I focus on?", - "createdAt": { - "$date": "2024-06-21T00:02:39.607Z" - }, - "updatedAt": { - "$date": "2024-09-26T05:33:01.963Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a23c" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a20f" - }, - "user": { - "$oid": "6674c31695590f9fd9459daa" - }, - "content": "Seeking advice on preparing for technical interviews at top tech companies. What are common interview questions?", - "createdAt": { - "$date": "2024-06-21T00:02:39.607Z" - }, - "updatedAt": { - "$date": "2025-03-30T04:18:29.802Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a23d" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a205" - }, - "user": { - "$oid": "6674c31695590f9fd9459dcf" - }, - "content": "Tips for managing technical debt in software projects. How do you prioritize and refactor?", - "createdAt": { - "$date": "2024-06-21T00:02:39.607Z" - }, - "updatedAt": { - "$date": "2026-08-15T02:48:35.524Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a23e" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a209" - }, - "user": { - "$oid": "6674c31695590f9fd9459d99" - }, - "content": "Exploring the challenges of implementing AI-driven chatbots in customer service applications.", - "createdAt": { - "$date": "2024-06-21T00:02:39.609Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.609Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a23f" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a209" - }, - "user": { - "$oid": "6674c31695590f9fd9459db8" - }, - "content": "Share your favorite resources for staying updated with the latest tech trends and industry news.", - "createdAt": { - "$date": "2024-06-21T00:02:39.607Z" - }, - "updatedAt": { - "$date": "2026-02-19T11:17:05.581Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a240" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a20c" - }, - "user": { - "$oid": "6674c31695590f9fd9459db1" - }, - "content": "Exploring the benefits of adopting a microservices architecture over monolithic applications.", - "createdAt": { - "$date": "2024-06-21T00:02:39.609Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.609Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a241" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a20b" - }, - "user": { - "$oid": "6674c31695590f9fd9459da8" - }, - "content": "How do you handle software architecture design in agile development? Share your strategies and experiences.", - "createdAt": { - "$date": "2024-06-21T00:02:39.607Z" - }, - "updatedAt": { - "$date": "2025-02-10T14:27:50.834Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a242" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a20b" - }, - "user": { - "$oid": "6674c31695590f9fd9459db7" - }, - "content": "Discussing the adoption of serverless architecture in enterprise applications. What are the use cases?", - "createdAt": { - "$date": "2024-06-21T00:02:39.609Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.609Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a243" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a203" - }, - "user": { - "$oid": "6674c31695590f9fd9459df2" - }, - "content": "Tips for effective project management in software development teams. How do you ensure deadlines are met?", - "createdAt": { - "$date": "2024-06-21T00:02:39.609Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.609Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a244" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a20b" - }, - "user": { - "$oid": "6674c31695590f9fd9459dd8" - }, - "content": "Seeking advice on preparing for technical interviews at top tech companies. What are common interview questions?", - "createdAt": { - "$date": "2024-06-21T00:02:39.610Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.610Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a245" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a203" - }, - "user": { - "$oid": "6674c31695590f9fd9459d97" - }, - "content": "I'm new to web development. Can anyone recommend a good beginner-friendly JavaScript framework?", - "createdAt": { - "$date": "2024-06-21T00:02:39.607Z" - }, - "updatedAt": { - "$date": "2028-06-17T04:45:49.087Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a246" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a205" - }, - "user": { - "$oid": "6674c31695590f9fd9459db9" - }, - "content": "How can AI and machine learning be leveraged to enhance personalized user experiences in applications?", - "createdAt": { - "$date": "2024-06-21T00:02:39.607Z" - }, - "updatedAt": { - "$date": "2026-08-14T08:18:55.620Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a247" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a20b" - }, - "user": { - "$oid": "6674c31695590f9fd9459da5" - }, - "content": "Share your favorite resources for staying updated with the latest tech trends and industry news.", - "createdAt": { - "$date": "2024-06-21T00:02:39.610Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.610Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a248" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a20a" - }, - "user": { - "$oid": "6674c31695590f9fd9459dc2" - }, - "content": "Exploring the benefits of using TypeScript in large-scale JavaScript applications. Is it worth the learning curve?", - "createdAt": { - "$date": "2024-06-21T00:02:39.610Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.610Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a249" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a20a" - }, - "user": { - "$oid": "6674c31695590f9fd9459daf" - }, - "content": "How do you approach refactoring legacy codebases? Share your strategies for modernization.", - "createdAt": { - "$date": "2024-06-21T00:02:39.610Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.610Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a24a" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a210" - }, - "user": { - "$oid": "6644c602515c654def9b2ae7" - }, - "content": "Tips for effective project management in software development teams. How do you ensure deadlines are met?", - "createdAt": { - "$date": "2024-06-21T00:02:39.610Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.610Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a24b" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a207" - }, - "user": { - "$oid": "6644c768515c654def9b2b09" - }, - "content": "What are the key factors to consider when choosing a tech stack for a new startup project?", - "createdAt": { - "$date": "2024-06-21T00:02:39.610Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.610Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a24c" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a211" - }, - "user": { - "$oid": "6674c31695590f9fd9459dc6" - }, - "content": "Discussing the impact of IoT on everyday life and its implications for software developers.", - "createdAt": { - "$date": "2024-06-21T00:02:39.607Z" - }, - "updatedAt": { - "$date": "2027-05-25T08:49:22.671Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a24d" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a210" - }, - "user": { - "$oid": "6674c31695590f9fd9459da5" - }, - "content": "Share your insights on DevOps culture and its impact on software development teams.", - "createdAt": { - "$date": "2024-06-21T00:02:39.607Z" - }, - "updatedAt": { - "$date": "2025-09-08T07:26:08.375Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a24e" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a211" - }, - "user": { - "$oid": "6674c31695590f9fd9459da5" - }, - "content": "What are the essential skills for a successful software engineering career in the next decade?", - "createdAt": { - "$date": "2024-06-21T00:02:39.610Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.610Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a24f" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a208" - }, - "user": { - "$oid": "6674c31695590f9fd9459dae" - }, - "content": "How can developers contribute to open-source projects? Discussing the impact of community contributions.", - "createdAt": { - "$date": "2024-06-21T00:02:39.610Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.610Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a250" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a207" - }, - "user": { - "$oid": "6674c31695590f9fd9459de2" - }, - "content": "Debating the future of AI and its potential impact on industries like healthcare and finance.", - "createdAt": { - "$date": "2024-06-21T00:02:39.610Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.610Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a251" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a205" - }, - "user": { - "$oid": "6674c31695590f9fd9459dee" - }, - "content": "Exploring the benefits of adopting a microservices architecture over monolithic applications.", - "createdAt": { - "$date": "2024-06-21T00:02:39.611Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.611Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a252" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a209" - }, - "user": { - "$oid": "6674c31695590f9fd9459dc5" - }, - "content": "What are the emerging trends in mobile app development? Discussing technologies like Flutter and React Native.", - "createdAt": { - "$date": "2024-06-21T00:02:39.611Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.611Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a253" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a204" - }, - "user": { - "$oid": "6674c31695590f9fd9459dae" - }, - "content": "Seeking advice on transitioning from frontend to full-stack development. What skills should I focus on?", - "createdAt": { - "$date": "2024-06-21T00:02:39.611Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.611Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a254" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a206" - }, - "user": { - "$oid": "6674c31695590f9fd9459da0" - }, - "content": "Seeking advice on preparing for technical interviews at top tech companies. What are common interview questions?", - "createdAt": { - "$date": "2024-06-21T00:02:39.611Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.611Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a255" - }, - "__v": 0 - }, - { - "thread": { - "$oid": "6674c31f95590f9fd945a20c" - }, - "user": { - "$oid": "6674c31695590f9fd9459df2" - }, - "content": "How important is unit testing in your development workflow? Discussing the impact on code quality.", - "createdAt": { - "$date": "2024-06-21T00:02:39.611Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.611Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a256" - }, - "__v": 0 - } -] diff --git a/scripts/db/mongo-dev-init/MOCK_PROFILES.json b/scripts/db/mongo-dev-init/MOCK_PROFILES.json deleted file mode 100644 index ca441496..00000000 --- a/scripts/db/mongo-dev-init/MOCK_PROFILES.json +++ /dev/null @@ -1,12304 +0,0 @@ -[ - { - "user": { - "$oid": "66723da68f368f285d304ac9" - }, - "firstName": "Testy", - "lastName": "McTesterson", - "profilePhoto": "https://www.codesmith.io/hubfs/Screen%20Shot%202024-06-10%20at%2010.46.24%20AM.png", - "cohort": "PTRI 19", - "graduationYear": 2024, - "email": "tester@codehammers.com", - "linkedInProfile": "https://www.linkedin.com/in/Testy-McTesterson-fake", - "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", - "skills": ["Software Architecture", "Containerization"], - "specializations": [ - "WebSockets", - "Performance Optimization", - "Integration Testing", - "Deep Learning", - "Code Review", - "Containerization", - "React", - "Azure" - ], - "careerInformation": { - "currentPosition": { "title": "Cloud Engineer", "company": "Cisco" }, - "pastPositions": [ - { - "title": "Mobile Developer", - "company": "Dropbox", - "startDate": { - "$date": "2024-06-21T00:02:38.628Z" - }, - "endDate": { - "$date": "2027-10-10T03:09:26.750Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459e64" - } - }, - { - "title": "Lead Software Engineer", - "company": "Square", - "startDate": { - "$date": "2024-06-21T00:02:38.628Z" - }, - "endDate": { - "$date": "2027-12-11T16:42:53.446Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459e65" - } - }, - { - "title": "Machine Learning Engineer", - "company": "Apple", - "startDate": { - "$date": "2024-06-21T00:02:38.628Z" - }, - "endDate": { - "$date": "2024-07-12T03:29:40.355Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459e66" - } - }, - { - "title": "Security Engineer", - "company": "NVIDIA", - "startDate": { - "$date": "2024-06-21T00:02:38.628Z" - }, - "endDate": { - "$date": "2026-11-28T07:29:13.216Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459e67" - } - }, - { - "title": "Site Reliability Engineer", - "company": "Asana", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2026-03-20T05:16:50.298Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459e68" - } - } - ] - }, - "education": [], - "projects": [ - { - "name": "VirtualMarket", - "description": "Virtual reality shopping experience allowing users to browse and buy products online.", - "link": "https://github.com/username/virtualmarket", - "_id": { - "$oid": "6674c31e95590f9fd9459e69" - } - }, - { - "name": "CloudGuard", - "description": "Advanced cloud security suite ensuring data protection and compliance.", - "link": "https://github.com/username/cloudguard", - "_id": { - "$oid": "6674c31e95590f9fd9459e6a" - } - }, - { - "name": "SmartCarPark", - "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", - "link": "https://github.com/username/smartcarpark", - "_id": { - "$oid": "6674c31e95590f9fd9459e6b" - } - }, - { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", - "_id": { - "$oid": "6674c31e95590f9fd9459e6c" - } - } - ], - "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", - "testimonials": [ - { - "from": "Noah Rodriguez", - "relation": "Product Owner at AgileSoft", - "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", - "_id": { - "$oid": "6674c31e95590f9fd9459e6d" - } - }, - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd9459e6e" - } - }, - { - "from": "Aiden Walker", - "relation": "CTO at Innovate Solutions", - "text": "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", - "_id": { - "$oid": "6674c31e95590f9fd9459e6f" - } - } - ], - "socialMediaLinks": { "blog": "https://www.Testy-McTesterson-fake-blog.com", "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "Kenzie Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459e63" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6644c768515c654def9b2b09" - }, - "firstName": "Jane", - "lastName": "Doe", - "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "cohort": "LA 22", - "graduationYear": 2024, - "email": "jane@codehammers.com", - "linkedInProfile": "https://www.linkedin.com/in/Jane-Doe-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": [ - "React", - "Deep Learning", - "Python", - "Big Data", - "Automated Testing", - "HTML", - "Refactoring", - "Docker" - ], - "specializations": [], - "careerInformation": { - "currentPosition": { "title": "Engineering Manager", "company": "Stripe" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "Johns Hopkins University", - "degree": "Bachelor of Engineering (BE)", - "fieldOfStudy": "Marketing", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2027-11-18T07:45:56.863Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459e71" - } - }, - { - "institution": "University of Washington", - "degree": "Doctor of Education (EdD)", - "fieldOfStudy": "Mathematics", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2028-06-14T22:44:00.693Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459e72" - } - } - ], - "projects": [ - { - "name": "SecureBackup", - "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", - "link": "https://github.com/username/securebackup", - "_id": { - "$oid": "6674c31e95590f9fd9459e73" - } - }, - { - "name": "FoodDelivery", - "description": "Online food delivery platform connecting restaurants with customers for food ordering.", - "link": "https://github.com/username/fooddelivery", - "_id": { - "$oid": "6674c31e95590f9fd9459e74" - } - }, - { - "name": "TourismApp", - "description": "Mobile application for tourists providing travel guides and local recommendations.", - "link": "https://github.com/username/tourismapp", - "_id": { - "$oid": "6674c31e95590f9fd9459e75" - } - }, - { - "name": "RecruitmentAI", - "description": "AI-powered recruitment platform for matching candidates with job opportunities.", - "link": "https://github.com/username/recruitmentai", - "_id": { - "$oid": "6674c31e95590f9fd9459e76" - } - }, - { - "name": "VirtualAssistant", - "description": "Virtual assistant software for voice command-based tasks and personal assistance.", - "link": "https://github.com/username/virtualassistant", - "_id": { - "$oid": "6674c31e95590f9fd9459e77" - } - } - ], - "personalBio": "Skilled in working with cross-functional teams to deliver innovative software solutions that exceed expectations.", - "testimonials": [ - { - "from": "Sophie Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "6674c31e95590f9fd9459e78" - } - }, - { - "from": "Lucas Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", - "_id": { - "$oid": "6674c31e95590f9fd9459e79" - } - }, - { - "from": "Noah Rodriguez", - "relation": "Product Owner at AgileSoft", - "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", - "_id": { - "$oid": "6674c31e95590f9fd9459e7a" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Jane-Doe-fake", - "blog": "https://www.Jane-Doe-fake-blog.com", - "other": [] - }, - "availabilityForNetworking": false, - "bootcampExperience": "Kenzie Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459e70" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6644c602515c654def9b2ae7" - }, - "firstName": "John", - "lastName": "Dough", - "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "cohort": "PTRI 79", - "graduationYear": 2024, - "email": "john@codehammers.com", - "linkedInProfile": "https://www.linkedin.com/in/John-Dough-fake", - "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", - "skills": [ - "Continuous Deployment", - "CSS", - "Legacy Code Management", - "API Development", - "Technical Writing", - "Laravel", - "Robotic Process Automation", - "Code Review", - "SaaS (Software as a Service)", - "User Interface (UI) Design", - "Angular", - "API Integration" - ], - "specializations": [ - "AR/VR (Augmented/Virtual Reality)", - "Google Cloud Platform", - "Machine Learning", - "IoT (Internet of Things)", - "AWS", - "Containerization", - "C#", - "CI/CD", - "Reactive Programming", - "Cybersecurity", - "Node.js", - "Deep Learning", - "Mobile Development" - ], - "careerInformation": { - "currentPosition": { "title": "Android Developer", "company": "Intel" }, - "pastPositions": [ - { - "title": "Software Developer", - "company": "Uber", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2027-09-09T07:07:12.937Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459e7c" - } - }, - { - "title": "AI Engineer", - "company": "Twitter", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2027-12-02T21:47:59.011Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459e7d" - } - } - ] - }, - "education": [], - "projects": [], - "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", - "testimonials": [ - { - "from": "Emily Brown", - "relation": "Client at GlobalSoft Solutions", - "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd9459e7e" - } - }, - { - "from": "Noah Rodriguez", - "relation": "Product Owner at AgileSoft", - "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", - "_id": { - "$oid": "6674c31e95590f9fd9459e7f" - } - }, - { - "from": "Lucas Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", - "_id": { - "$oid": "6674c31e95590f9fd9459e80" - } - }, - { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - "_id": { - "$oid": "6674c31e95590f9fd9459e81" - } - }, - { - "from": "Sophie Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "6674c31e95590f9fd9459e82" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/John-Dough-fake", - "blog": "https://www.John-Dough-fake-blog.com", - "other": ["https://www.instagram.com/John-Dough-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Hack Reactor", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459e7b" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6644c7f7515c654def9b2b18" - }, - "firstName": "Jaime", - "lastName": "Doh", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "WCRI 12", - "graduationYear": 2024, - "email": "jaime@codehammers.com", - "linkedInProfile": "https://www.linkedin.com/in/Jaime-Doh-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": [ - "Data Science", - "Performance Optimization", - "System Design", - "Parallel Computing", - "Vue.js" - ], - "specializations": [ - "Docker", - "API Development", - "Software Architecture", - "SQL", - "Blockchain", - "Natural Language Processing", - "Mobile Development", - "Event-Driven Architecture", - "Quantum Computing", - "Version Control", - "IoT (Internet of Things)", - "Object-Oriented Programming", - "Python", - "Laravel", - "TDD (Test-Driven Development)", - "RESTful APIs", - "Git", - "ASP.NET" - ], - "careerInformation": { - "currentPosition": { "title": "Principal Software Engineer", "company": "IBM" }, - "pastPositions": [ - { - "title": "Data Scientist", - "company": "Facebook", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2028-03-11T07:42:22.722Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459e84" - } - }, - { - "title": "Software Developer", - "company": "Snapchat", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2026-05-04T04:30:26.274Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459e85" - } - } - ] - }, - "education": [], - "projects": [ - { - "name": "SmartCarPark", - "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", - "link": "https://github.com/username/smartcarpark", - "_id": { - "$oid": "6674c31e95590f9fd9459e86" - } - }, - { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", - "_id": { - "$oid": "6674c31e95590f9fd9459e87" - } - }, - { - "name": "SmartCarPark", - "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", - "link": "https://github.com/username/smartcarpark", - "_id": { - "$oid": "6674c31e95590f9fd9459e88" - } - }, - { - "name": "RoboVision", - "description": "AI-powered computer vision system for object detection and recognition.", - "link": "https://github.com/username/robovision", - "_id": { - "$oid": "6674c31e95590f9fd9459e89" - } - } - ], - "personalBio": "Innovative thinker with a track record of proposing and implementing creative solutions to technical challenges.", - "testimonials": [ - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "6674c31e95590f9fd9459e8a" - } - }, - { - "from": "Sophie Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "6674c31e95590f9fd9459e8b" - } - }, - { - "from": "David Smith", - "relation": "Colleague at InnovateTech Ltd.", - "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", - "_id": { - "$oid": "6674c31e95590f9fd9459e8c" - } - }, - { - "from": "Alice Johnson", - "relation": "Manager at TechSolutions Inc.", - "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", - "_id": { - "$oid": "6674c31e95590f9fd9459e8d" - } - }, - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "6674c31e95590f9fd9459e8e" - } - } - ], - "socialMediaLinks": { - "blog": "https://www.Jaime-Doh-fake-blog.com", - "other": ["https://www.instagram.com/Jaime-Doh-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "DevMountain", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459e83" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304acd" - }, - "firstName": "Homer", - "lastName": "Simpson", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "ECRI 33", - "graduationYear": 2024, - "email": "homer@donuts.com", - "linkedInProfile": "https://www.linkedin.com/in/Homer-Simpson-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", - "skills": ["Data Warehousing", "Java", "Object-Oriented Programming", "CI/CD", "Deep Learning"], - "specializations": [ - "Project Management", - "Containerization", - "NoSQL", - "Big Data", - "Performance Optimization", - "Robotic Process Automation", - "Technical Writing", - "Deep Learning", - "Parallel Computing", - "RESTful APIs", - "Database Design", - "Laravel", - "Cybersecurity", - "User Experience (UX) Design", - "Scrum", - "Django" - ], - "careerInformation": { - "currentPosition": { "title": "Android Developer", "company": "Intel" }, - "pastPositions": [ - { - "title": "Senior Software Engineer", - "company": "PayPal", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2025-04-12T21:27:36.733Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459e90" - } - }, - { - "title": "Software Developer", - "company": "HubSpot", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2028-03-20T10:24:49.358Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459e91" - } - }, - { - "title": "AI Engineer", - "company": "Coinbase", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2028-06-18T18:44:44.418Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459e92" - } - } - ] - }, - "education": [], - "projects": [ - { - "name": "VirtualAssistant", - "description": "Virtual assistant software for voice command-based tasks and personal assistance.", - "link": "https://github.com/username/virtualassistant", - "_id": { - "$oid": "6674c31e95590f9fd9459e93" - } - }, - { - "name": "TourismApp", - "description": "Mobile application for tourists providing travel guides and local recommendations.", - "link": "https://github.com/username/tourismapp", - "_id": { - "$oid": "6674c31e95590f9fd9459e94" - } - }, - { - "name": "RoboVision", - "description": "AI-powered computer vision system for object detection and recognition.", - "link": "https://github.com/username/robovision", - "_id": { - "$oid": "6674c31e95590f9fd9459e95" - } - } - ], - "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", - "testimonials": [ - { - "from": "Liam Harris", - "relation": "Lead Developer at CloudTech", - "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd9459e96" - } - }, - { - "from": "Emma Thompson", - "relation": "Manager at DataTech Solutions", - "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", - "_id": { - "$oid": "6674c31e95590f9fd9459e97" - } - }, - { - "from": "Emma Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd9459e98" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd9459e99" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Homer-Simpson-fake", - "blog": "https://www.Homer-Simpson-fake-blog.com", - "other": [] - }, - "availabilityForNetworking": false, - "bootcampExperience": "Flatiron School", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459e8f" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459d95" - }, - "firstName": "Corine", - "lastName": "Tugwell", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "ECRI 59", - "graduationYear": 2024, - "email": "ctugwell0@ovh.net", - "linkedInProfile": "https://www.linkedin.com/in/Corine-Tugwell-fake", - "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", - "skills": [ - "WebSockets", - "Deep Learning", - "Python", - "Project Management", - "Cybersecurity", - "Agile Development", - "Event-Driven Architecture", - "C#" - ], - "specializations": [ - "Integration Testing", - "Graph Theory", - "Natural Language Processing", - "Flask" - ], - "careerInformation": { - "currentPosition": { "title": "Full Stack Developer", "company": "Uber" }, - "pastPositions": [ - { - "title": "AI Engineer", - "company": "Snowflake", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2026-01-21T23:56:05.245Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459e9b" - } - }, - { - "title": "Lead Software Engineer", - "company": "Intel", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2026-11-09T16:01:14.054Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459e9c" - } - } - ] - }, - "education": [ - { - "institution": "University of Pennsylvania", - "degree": "Postdoctoral Research", - "fieldOfStudy": "Accounting", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2027-07-25T03:58:24.891Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459e9d" - } - } - ], - "projects": [], - "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", - "testimonials": [], - "socialMediaLinks": { - "twitter": "https://x.com/Corine-Tugwell-fake", - "blog": "https://www.Corine-Tugwell-fake-blog.com", - "other": [] - }, - "availabilityForNetworking": false, - "bootcampExperience": "Springboard", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459e9a" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459d96" - }, - "firstName": "Brody", - "lastName": "Cumpton", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "cohort": "LA 53", - "graduationYear": 2024, - "email": "bcumpton1@bluehost.com", - "linkedInProfile": "https://www.linkedin.com/in/Brody-Cumpton-fake", - "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", - "skills": [ - "Cybersecurity", - "Functional Programming", - "Continuous Deployment", - "BDD (Behavior-Driven Development)", - "Code Review", - "C#", - "ASP.NET", - "System Design", - "Serverless Architecture", - "Node.js", - "Leadership", - "Refactoring" - ], - "specializations": ["Design Patterns", "ASP.NET", "Data Science"], - "careerInformation": { - "currentPosition": { "title": "Automation Engineer", "company": "DoorDash" }, - "pastPositions": [ - { - "title": "AI Engineer", - "company": "Activision Blizzard", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2024-07-19T16:33:45.483Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459e9f" - } - }, - { - "title": "Data Engineer", - "company": "Cisco", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2027-11-18T15:54:33.828Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459ea0" - } - } - ] - }, - "education": [ - { - "institution": "University of Hong Kong (HKU)", - "degree": "Doctor of Veterinary Medicine (DVM)", - "fieldOfStudy": "Fine Arts", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2026-04-20T15:00:38.622Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459ea1" - } - }, - { - "institution": "Rice University", - "degree": "Doctoral Degree", - "fieldOfStudy": "Electrical Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2027-04-09T18:24:08.544Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459ea2" - } - }, - { - "institution": "Emory University", - "degree": "Associate Degree", - "fieldOfStudy": "Fine Arts", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2024-08-25T01:25:26.296Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459ea3" - } - } - ], - "projects": [ - { - "name": "HealthLink", - "description": "Telemedicine platform connecting patients with healthcare providers remotely.", - "link": "https://github.com/username/healthlink", - "_id": { - "$oid": "6674c31e95590f9fd9459ea4" - } - }, - { - "name": "VirtualMarket", - "description": "Virtual reality shopping experience allowing users to browse and buy products online.", - "link": "https://github.com/username/virtualmarket", - "_id": { - "$oid": "6674c31e95590f9fd9459ea5" - } - }, - { - "name": "CodeAnalyzer", - "description": "Static code analysis tool for detecting bugs and code quality improvements.", - "link": "https://github.com/username/codeanalyzer", - "_id": { - "$oid": "6674c31e95590f9fd9459ea6" - } - }, - { - "name": "ARNavigation", - "description": "Augmented reality navigation app for real-time directions and location-based information.", - "link": "https://github.com/username/arnavigation", - "_id": { - "$oid": "6674c31e95590f9fd9459ea7" - } - }, - { - "name": "NetPlanner", - "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", - "link": "https://github.com/username/netplanner", - "_id": { - "$oid": "6674c31e95590f9fd9459ea8" - } - } - ], - "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", - "testimonials": [ - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd9459ea9" - } - }, - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "6674c31e95590f9fd9459eaa" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Brody-Cumpton-fake", - "blog": "https://www.Brody-Cumpton-fake-blog.com", - "other": [] - }, - "availabilityForNetworking": true, - "bootcampExperience": "App Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459e9e" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459d97" - }, - "firstName": "Moselle", - "lastName": "Duro", - "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "cohort": "ECRI 35", - "graduationYear": 2024, - "email": "mduro2@technorati.com", - "linkedInProfile": "https://www.linkedin.com/in/Moselle-Duro-fake", - "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", - "skills": [], - "specializations": [ - "Critical Thinking", - "Performance Optimization", - "Graph Theory", - "Python", - "WebSockets", - "Parallel Computing", - "Project Management", - "Reactive Programming", - "Data Science" - ], - "careerInformation": { - "currentPosition": { "title": "Data Scientist", "company": "Adobe" }, - "pastPositions": [ - { - "title": "Software Engineer", - "company": "Intel", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2024-08-04T07:39:44.239Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459eac" - } - }, - { - "title": "Automation Engineer", - "company": "ServiceNow", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2028-04-12T13:00:51.922Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459ead" - } - } - ] - }, - "education": [ - { - "institution": "Carnegie Mellon University", - "degree": "Trade School Certification", - "fieldOfStudy": "Dentistry", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2026-10-05T23:54:03.085Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459eae" - } - }, - { - "institution": "University of British Columbia", - "degree": "Master of Public Administration (MPA)", - "fieldOfStudy": "Nursing", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2027-09-30T00:54:06.572Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459eaf" - } - } - ], - "projects": [ - { - "name": "SmartLearning", - "description": "AI-driven personalized learning platform with adaptive learning algorithms.", - "link": "https://github.com/username/smartlearning", - "_id": { - "$oid": "6674c31e95590f9fd9459eb0" - } - }, - { - "name": "HealthMonitor", - "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", - "link": "https://github.com/username/healthmonitor", - "_id": { - "$oid": "6674c31e95590f9fd9459eb1" - } - }, - { - "name": "CodeAnalyzer", - "description": "Static code analysis tool for detecting bugs and code quality improvements.", - "link": "https://github.com/username/codeanalyzer", - "_id": { - "$oid": "6674c31e95590f9fd9459eb2" - } - }, - { - "name": "CryptoTrack", - "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", - "link": "https://github.com/username/cryptotrack", - "_id": { - "$oid": "6674c31e95590f9fd9459eb3" - } - }, - { - "name": "SmartLearning", - "description": "AI-driven personalized learning platform with adaptive learning algorithms.", - "link": "https://github.com/username/smartlearning", - "_id": { - "$oid": "6674c31e95590f9fd9459eb4" - } - } - ], - "personalBio": "Committed to writing clean, maintainable code that meets rigorous performance standards.", - "testimonials": [ - { - "from": "Noah Rodriguez", - "relation": "Product Owner at AgileSoft", - "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", - "_id": { - "$oid": "6674c31e95590f9fd9459eb5" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd9459eb6" - } - }, - { - "from": "Sophie Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "6674c31e95590f9fd9459eb7" - } - }, - { - "from": "Daniel Lee", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd9459eb8" - } - } - ], - "socialMediaLinks": { "blog": "https://www.Moselle-Duro-fake-blog.com", "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "Lambda School", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459eab" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459d98" - }, - "firstName": "Winifred", - "lastName": "Carnelley", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "CTRI 43", - "graduationYear": 2024, - "email": "wcarnelley3@ucsd.edu", - "linkedInProfile": "https://www.linkedin.com/in/Winifred-Carnelley-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": [], - "specializations": ["SQL", "Event-Driven Architecture", "Java", "Automated Testing"], - "careerInformation": { - "currentPosition": { "title": "Cloud Engineer", "company": "Stripe" }, - "pastPositions": [ - { - "title": "Principal Software Engineer", - "company": "Stripe", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2026-10-28T00:27:58.801Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459eba" - } - }, - { - "title": "Site Reliability Engineer", - "company": "Zoom", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2027-04-07T05:12:43.621Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459ebb" - } - }, - { - "title": "Automation Engineer", - "company": "Slack", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2027-05-20T18:04:40.281Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459ebc" - } - } - ] - }, - "education": [ - { - "institution": "University of Arizona", - "degree": "Bachelor of Arts (BA)", - "fieldOfStudy": "Civil Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2026-10-24T16:15:27.252Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459ebd" - } - }, - { - "institution": "California Institute of Technology (Caltech)", - "degree": "Doctor of Medicine (MD)", - "fieldOfStudy": "Mechanical Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2027-05-18T20:43:41.258Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459ebe" - } - }, - { - "institution": "Columbia University", - "degree": "Bachelor of Technology (BTech)", - "fieldOfStudy": "Biology", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2026-10-21T01:23:24.583Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459ebf" - } - } - ], - "projects": [ - { - "name": "SmartWatch", - "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", - "link": "https://github.com/username/smartwatch", - "_id": { - "$oid": "6674c31e95590f9fd9459ec0" - } - }, - { - "name": "SecureBackup", - "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", - "link": "https://github.com/username/securebackup", - "_id": { - "$oid": "6674c31e95590f9fd9459ec1" - } - }, - { - "name": "SecureBackup", - "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", - "link": "https://github.com/username/securebackup", - "_id": { - "$oid": "6674c31e95590f9fd9459ec2" - } - } - ], - "personalBio": "Skilled in UX/UI design principles, with a focus on creating intuitive and visually appealing interfaces.", - "testimonials": [ - { - "from": "Liam Harris", - "relation": "Lead Developer at CloudTech", - "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd9459ec3" - } - }, - { - "from": "Sophie Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "6674c31e95590f9fd9459ec4" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "6674c31e95590f9fd9459ec5" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "6674c31e95590f9fd9459ec6" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd9459ec7" - } - } - ], - "socialMediaLinks": { - "blog": "https://www.Winifred-Carnelley-fake-blog.com", - "other": ["https://www.instagram.com/Winifred-Carnelley-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Lambda School", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459eb9" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459d99" - }, - "firstName": "Marchelle", - "lastName": "Truin", - "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "cohort": "ECRI 75", - "graduationYear": 2024, - "email": "mtruin4@stumbleupon.com", - "linkedInProfile": "https://www.linkedin.com/in/Marchelle-Truin-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": [ - "User Interface (UI) Design", - "GraphQL", - "Refactoring", - "Deep Learning", - "Problem-Solving", - "Pair Programming", - "Database Design", - "Parallel Computing", - "Reactive Programming", - "BDD (Behavior-Driven Development)", - "Graph Theory", - "NoSQL", - "Machine Learning", - "Spring Boot", - "Big Data", - "Blockchain", - "iOS Development", - "Node.js" - ], - "specializations": [ - "Edge Computing", - "Flask", - "RESTful APIs", - "Functional Programming", - "Event-Driven Architecture", - "Google Cloud Platform", - "Communication Skills", - "Docker" - ], - "careerInformation": { - "currentPosition": { "title": "DevOps Engineer", "company": "Snapchat" }, - "pastPositions": [ - { - "title": "Test Engineer", - "company": "Lyft", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2025-09-25T10:44:24.021Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459ec9" - } - }, - { - "title": "Data Scientist", - "company": "Facebook", - "startDate": { - "$date": "2024-06-21T00:02:38.629Z" - }, - "endDate": { - "$date": "2026-07-19T22:19:39.735Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459eca" - } - } - ] - }, - "education": [], - "projects": [], - "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", - "testimonials": [ - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd9459ecb" - } - }, - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", - "_id": { - "$oid": "6674c31e95590f9fd9459ecc" - } - }, - { - "from": "Emma Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd9459ecd" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Marchelle-Truin-fake", - "blog": "https://www.Marchelle-Truin-fake-blog.com", - "other": [] - }, - "availabilityForNetworking": false, - "bootcampExperience": "The Tech Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459ec8" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459d9a" - }, - "firstName": "Cally", - "lastName": "Gisbey", - "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "cohort": "WCRI 47", - "graduationYear": 2024, - "email": "cgisbey5@squarespace.com", - "linkedInProfile": "https://www.linkedin.com/in/Cally-Gisbey-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", - "skills": [ - "Continuous Deployment", - "Quantum Computing", - "Cybersecurity", - "C#", - "C++", - "Graph Databases", - "RESTful APIs", - "SaaS (Software as a Service)", - "Android Development", - "Machine Learning", - "Collaboration", - "Data Science", - "Data Visualization", - "Event-Driven Architecture" - ], - "specializations": [ - "FaaS (Function as a Service)", - "Refactoring", - "Data Visualization", - "Kubernetes", - "Cloud Computing", - "Software Architecture", - "Android Development", - "Flask", - "API Development" - ], - "careerInformation": { - "currentPosition": { "title": "Software Engineer", "company": "Red Hat" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "Chinese University of Hong Kong (CUHK)", - "degree": "Executive Education", - "fieldOfStudy": "Biomedical Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-03-26T12:16:39.146Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459ecf" - } - } - ], - "projects": [ - { - "name": "CodeAnalyzer", - "description": "Static code analysis tool for detecting bugs and code quality improvements.", - "link": "https://github.com/username/codeanalyzer", - "_id": { - "$oid": "6674c31e95590f9fd9459ed0" - } - }, - { - "name": "EcoTech", - "description": "Environmental monitoring and conservation app with real-time data visualization.", - "link": "https://github.com/username/ecotech", - "_id": { - "$oid": "6674c31e95590f9fd9459ed1" - } - }, - { - "name": "AIChatbot", - "description": "AI-powered chatbot for customer support and interactive communication.", - "link": "https://github.com/username/aichatbot", - "_id": { - "$oid": "6674c31e95590f9fd9459ed2" - } - } - ], - "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", - "testimonials": [ - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd9459ed3" - } - }, - { - "from": "Daniel Lee", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd9459ed4" - } - }, - { - "from": "David Smith", - "relation": "Colleague at InnovateTech Ltd.", - "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", - "_id": { - "$oid": "6674c31e95590f9fd9459ed5" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd9459ed6" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd9459ed7" - } - } - ], - "socialMediaLinks": { - "blog": "https://www.Cally-Gisbey-fake-blog.com", - "other": ["https://www.instagram.com/Cally-Gisbey-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Kenzie Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459ece" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459d9b" - }, - "firstName": "Arlina", - "lastName": "Moodie", - "cohort": "CTRI 90", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459ed8" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459d9c" - }, - "firstName": "Shurlock", - "lastName": "Tytcomb", - "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "cohort": "FTRI 96", - "graduationYear": 2024, - "email": "stytcomb8@google.it", - "linkedInProfile": "https://www.linkedin.com/in/Shurlock-Tytcomb-fake", - "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", - "skills": [ - "Mobile Development", - "Python", - "Serverless Architecture", - "Microservices", - "Technical Writing", - "Database Design", - "React", - "Data Visualization", - "Android Development", - "Project Management" - ], - "specializations": [ - "Pair Programming", - "BDD (Behavior-Driven Development)", - "SaaS (Software as a Service)", - "Performance Optimization", - "Continuous Deployment", - "Automated Testing", - "Deep Learning", - "Critical Thinking", - "SQL", - "Flask", - "Azure", - "CI/CD", - "User Interface (UI) Design", - "Reactive Programming", - "Android Development" - ], - "careerInformation": { - "currentPosition": { "title": "Software Developer", "company": "Epic Games" }, - "pastPositions": [ - { - "title": "Web Developer", - "company": "Spotify", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-06-10T04:49:57.630Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459eda" - } - }, - { - "title": "Product Manager", - "company": "Google", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-11-17T20:23:24.793Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459edb" - } - }, - { - "title": "Engineering Manager", - "company": "Square", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-03-23T21:47:04.450Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459edc" - } - }, - { - "title": "iOS Developer", - "company": "ServiceNow", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-04-29T03:55:53.606Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459edd" - } - } - ] - }, - "education": [ - { - "institution": "McGill University", - "degree": "Master of Education (MEd)", - "fieldOfStudy": "Biology", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-12-11T12:31:47.006Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459ede" - } - } - ], - "projects": [ - { - "name": "CloudGuard", - "description": "Advanced cloud security suite ensuring data protection and compliance.", - "link": "https://github.com/username/cloudguard", - "_id": { - "$oid": "6674c31e95590f9fd9459edf" - } - }, - { - "name": "AugmentWorks", - "description": "Augmented reality application for enhancing workplace productivity and training.", - "link": "https://github.com/username/augmentworks", - "_id": { - "$oid": "6674c31e95590f9fd9459ee0" - } - }, - { - "name": "VirtualAssistant", - "description": "Virtual assistant software for voice command-based tasks and personal assistance.", - "link": "https://github.com/username/virtualassistant", - "_id": { - "$oid": "6674c31e95590f9fd9459ee1" - } - } - ], - "personalBio": "Experienced in rapid prototyping and iterative development methodologies.", - "testimonials": [ - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "6674c31e95590f9fd9459ee2" - } - }, - { - "from": "Liam Harris", - "relation": "Lead Developer at CloudTech", - "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd9459ee3" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd9459ee4" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd9459ee5" - } - }, - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd9459ee6" - } - } - ], - "socialMediaLinks": { - "blog": "https://www.Shurlock-Tytcomb-fake-blog.com", - "other": ["https://www.instagram.com/Shurlock-Tytcomb-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "General Assembly", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459ed9" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459d9d" - }, - "firstName": "Ermina", - "lastName": "Guyton", - "cohort": "NYC 50", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459ee7" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459d9e" - }, - "firstName": "Shelton", - "lastName": "Halwood", - "cohort": "FTRI 75", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459ee8" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459d9f" - }, - "firstName": "Nigel", - "lastName": "Clemenzo", - "cohort": "NYC 28", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459ee9" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459da0" - }, - "firstName": "Colver", - "lastName": "Oswell", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "NYC 47", - "graduationYear": 2024, - "email": "coswellc@wsj.com", - "linkedInProfile": "https://www.linkedin.com/in/Colver-Oswell-fake", - "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", - "skills": [], - "specializations": [ - "Parallel Computing", - "Graph Theory", - "Project Management", - "Django", - "User Interface (UI) Design", - "Problem-Solving", - "Flask", - "Cybersecurity", - "Serverless Architecture", - "Event-Driven Architecture" - ], - "careerInformation": { - "currentPosition": { "title": "Product Manager", "company": "Intel" }, - "pastPositions": [ - { - "title": "Data Engineer", - "company": "VMware", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-09-17T01:01:15.666Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459eeb" - } - }, - { - "title": "Web Developer", - "company": "EA (Electronic Arts)", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-12-30T14:55:19.349Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459eec" - } - }, - { - "title": "Machine Learning Engineer", - "company": "Asana", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-04-26T04:30:20.219Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459eed" - } - }, - { - "title": "Full Stack Developer", - "company": "Google", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-07-19T04:15:17.275Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459eee" - } - } - ] - }, - "education": [], - "projects": [ - { - "name": "ARNavigation", - "description": "Augmented reality navigation app for real-time directions and location-based information.", - "link": "https://github.com/username/arnavigation", - "_id": { - "$oid": "6674c31e95590f9fd9459eef" - } - }, - { - "name": "JobFinder", - "description": "Job search and application management platform with personalized recommendations.", - "link": "https://github.com/username/jobfinder", - "_id": { - "$oid": "6674c31e95590f9fd9459ef0" - } - }, - { - "name": "AIChatbot", - "description": "AI-powered chatbot for customer support and interactive communication.", - "link": "https://github.com/username/aichatbot", - "_id": { - "$oid": "6674c31e95590f9fd9459ef1" - } - }, - { - "name": "SmartHomeHub", - "description": "Centralized home automation system integrating IoT devices for smart living.", - "link": "https://github.com/username/smarthomehub", - "_id": { - "$oid": "6674c31e95590f9fd9459ef2" - } - }, - { - "name": "HomeSecurity", - "description": "Home security system with video surveillance, motion detection, and alarm integration.", - "link": "https://github.com/username/homesecurity", - "_id": { - "$oid": "6674c31e95590f9fd9459ef3" - } - } - ], - "personalBio": "Passionate about leveraging data-driven insights to optimize software performance and user engagement.", - "testimonials": [ - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd9459ef4" - } - }, - { - "from": "Lucas Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", - "_id": { - "$oid": "6674c31e95590f9fd9459ef5" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd9459ef6" - } - } - ], - "socialMediaLinks": { "other": ["https://www.instagram.com/Colver-Oswell-fake"] }, - "availabilityForNetworking": true, - "bootcampExperience": "Codesmith", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459eea" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459da1" - }, - "firstName": "Saundra", - "lastName": "Normabell", - "cohort": "ECRI 9", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459ef7" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459da2" - }, - "firstName": "Grant", - "lastName": "Chasney", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "PTRI 61", - "graduationYear": 2024, - "email": "gchasneye@mediafire.com", - "linkedInProfile": "https://www.linkedin.com/in/Grant-Chasney-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": [ - "User Experience (UX) Design", - "Event-Driven Architecture", - "Kubernetes", - "ASP.NET", - "Pair Programming", - "RESTful APIs", - "PaaS (Platform as a Service)", - "C#", - "Automated Testing", - "Android Development" - ], - "specializations": [ - "Azure", - "BDD (Behavior-Driven Development)", - "NoSQL", - "Pair Programming", - "ASP.NET", - "Cloud Computing", - "DevOps", - "Kubernetes", - "FaaS (Function as a Service)", - "System Design", - "Big Data", - "Integration Testing", - "Critical Thinking", - "Legacy Code Management", - "Data Warehousing", - "RESTful APIs", - "Performance Optimization", - "Graph Theory" - ], - "careerInformation": { - "currentPosition": { "title": "Cloud Engineer", "company": "Okta" }, - "pastPositions": [ - { - "title": "Automation Engineer", - "company": "Workday", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-08-09T03:12:20.218Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459ef9" - } - }, - { - "title": "Principal Software Engineer", - "company": "Stripe", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-09-10T06:11:20.217Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459efa" - } - }, - { - "title": "Security Engineer", - "company": "Stripe", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-07-27T23:16:44.438Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459efb" - } - }, - { - "title": "Cloud Engineer", - "company": "Microsoft", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-11-09T09:02:05.622Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459efc" - } - } - ] - }, - "education": [], - "projects": [ - { - "name": "HomeSecurity", - "description": "Home security system with video surveillance, motion detection, and alarm integration.", - "link": "https://github.com/username/homesecurity", - "_id": { - "$oid": "6674c31e95590f9fd9459efd" - } - }, - { - "name": "SmartCarPark", - "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", - "link": "https://github.com/username/smartcarpark", - "_id": { - "$oid": "6674c31e95590f9fd9459efe" - } - }, - { - "name": "SmartCity", - "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", - "link": "https://github.com/username/smartcity", - "_id": { - "$oid": "6674c31e95590f9fd9459eff" - } - } - ], - "personalBio": "Devoted to fostering a collaborative team environment and mentoring junior developers.", - "testimonials": [], - "socialMediaLinks": { "other": ["https://www.instagram.com/Grant-Chasney-fake"] }, - "availabilityForNetworking": false, - "bootcampExperience": "Galvanize", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459ef8" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459da3" - }, - "firstName": "Franni", - "lastName": "Chance", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "CTRI 85", - "graduationYear": 2024, - "email": "fchancef@ted.com", - "linkedInProfile": "https://www.linkedin.com/in/Franni-Chance-fake", - "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", - "skills": [ - "Project Management", - "Django", - "Continuous Deployment", - "CSS", - "User Interface (UI) Design", - "System Design" - ], - "specializations": [ - "Kubernetes", - "Spring Boot", - "Agile Development", - "API Integration", - "Event-Driven Architecture", - "Object-Oriented Programming", - "Continuous Deployment", - "Infrastructure as Code" - ], - "careerInformation": { - "currentPosition": { "title": "QA Engineer", "company": "Dropbox" }, - "pastPositions": [ - { - "title": "Mobile Developer", - "company": "Google", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-12-13T17:16:15.422Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f01" - } - }, - { - "title": "Data Scientist", - "company": "VMware", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-12-28T19:30:31.838Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f02" - } - } - ] - }, - "education": [ - { - "institution": "Purdue University", - "degree": "Bachelor of Arts (BA)", - "fieldOfStudy": "Mechanical Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-04-18T05:46:51.645Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f03" - } - }, - { - "institution": "University of Hong Kong (HKU)", - "degree": "Trade School Certification", - "fieldOfStudy": "Environmental Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-11-18T10:57:20.759Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f04" - } - }, - { - "institution": "University of Oregon", - "degree": "Doctor of Dental Medicine (DMD)", - "fieldOfStudy": "Journalism", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-02-03T22:47:47.085Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f05" - } - } - ], - "projects": [ - { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", - "_id": { - "$oid": "6674c31e95590f9fd9459f06" - } - }, - { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", - "_id": { - "$oid": "6674c31e95590f9fd9459f07" - } - } - ], - "personalBio": "Experienced in deploying and maintaining applications on cloud platforms like AWS and Azure.", - "testimonials": [ - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd9459f08" - } - }, - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd9459f09" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Franni-Chance-fake", - "other": ["https://www.instagram.com/Franni-Chance-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Nucamp", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f00" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459da4" - }, - "firstName": "Clarance", - "lastName": "Meecher", - "cohort": "WCRI 68", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f0a" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459da5" - }, - "firstName": "Katharine", - "lastName": "Lancett", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "NYC 34", - "graduationYear": 2024, - "email": "klancetth@sfgate.com", - "linkedInProfile": "https://www.linkedin.com/in/Katharine-Lancett-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": [ - "Project Management", - "C++", - "Microservices", - "Agile Development", - "Code Review", - "Data Science", - "Ruby", - "Communication Skills", - "Django", - "Automated Testing", - "Scrum", - "Flask", - "JavaScript", - "Leadership", - "DevOps", - "Laravel", - "Docker" - ], - "specializations": [ - "Software Architecture", - "Concurrency", - "NoSQL", - "DevOps", - "AWS", - "SaaS (Software as a Service)", - "Ruby", - "Collaboration", - "Data Science" - ], - "careerInformation": { - "currentPosition": { "title": "DevOps Engineer", "company": "Tesla" }, - "pastPositions": [ - { - "title": "Full Stack Developer", - "company": "Google", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-10-19T00:08:30.372Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f0c" - } - }, - { - "title": "Product Manager", - "company": "Microsoft", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-04-19T22:36:45.486Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f0d" - } - } - ] - }, - "education": [ - { - "institution": "Pennsylvania State University", - "degree": "Master of Education (MEd)", - "fieldOfStudy": "English Literature", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-04-18T16:33:23.851Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f0e" - } - }, - { - "institution": "University of Melbourne", - "degree": "Doctor of Philosophy (PhD)", - "fieldOfStudy": "Urban Planning", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-03-28T07:33:55.340Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f0f" - } - }, - { - "institution": "Stanford University", - "degree": "Doctor of Veterinary Medicine (DVM)", - "fieldOfStudy": "Architecture", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-07-05T20:19:04.001Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f10" - } - } - ], - "projects": [ - { - "name": "CloudStorage", - "description": "Cloud storage service with file synchronization and sharing capabilities.", - "link": "https://github.com/username/cloudstorage", - "_id": { - "$oid": "6674c31e95590f9fd9459f11" - } - }, - { - "name": "CloudStorage", - "description": "Cloud storage service with file synchronization and sharing capabilities.", - "link": "https://github.com/username/cloudstorage", - "_id": { - "$oid": "6674c31e95590f9fd9459f12" - } - }, - { - "name": "RoboVision", - "description": "AI-powered computer vision system for object detection and recognition.", - "link": "https://github.com/username/robovision", - "_id": { - "$oid": "6674c31e95590f9fd9459f13" - } - }, - { - "name": "LearnHub", - "description": "Online learning platform offering courses on various subjects with interactive content.", - "link": "https://github.com/username/learnhub", - "_id": { - "$oid": "6674c31e95590f9fd9459f14" - } - }, - { - "name": "CryptoTrack", - "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", - "link": "https://github.com/username/cryptotrack", - "_id": { - "$oid": "6674c31e95590f9fd9459f15" - } - } - ], - "personalBio": "Driven by a curiosity for innovation and a commitment to delivering high-quality software solutions.", - "testimonials": [ - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd9459f16" - } - }, - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd9459f17" - } - }, - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd9459f18" - } - }, - { - "from": "Emma Thompson", - "relation": "Manager at DataTech Solutions", - "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", - "_id": { - "$oid": "6674c31e95590f9fd9459f19" - } - } - ], - "socialMediaLinks": { "twitter": "https://x.com/Katharine-Lancett-fake", "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "BrainStation", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f0b" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459da6" - }, - "firstName": "Margaret", - "lastName": "Dubber", - "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "cohort": "LA 40", - "graduationYear": 2024, - "email": "mdubberi@dropbox.com", - "linkedInProfile": "https://www.linkedin.com/in/Margaret-Dubber-fake", - "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", - "skills": [ - "Spring Boot", - "ETL (Extract, Transform, Load)", - "Cybersecurity", - "Time Management", - "Scrum", - "Mobile Development", - "Version Control", - "Object-Oriented Programming", - "Critical Thinking", - "Java", - "ASP.NET", - "Machine Learning", - "React", - "Data Warehousing", - "Reactive Programming", - "TDD (Test-Driven Development)" - ], - "specializations": [ - "Event-Driven Architecture", - "Scrum", - "DevOps", - "Code Review", - "Project Management", - "Technical Writing", - "API Integration", - "AWS", - "Graph Databases", - "Design Patterns", - "Kubernetes", - "Python", - "Blockchain" - ], - "careerInformation": { - "currentPosition": { "title": "Data Scientist", "company": "Apple" }, - "pastPositions": [ - { - "title": "Software Architect", - "company": "Asana", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-10-19T10:40:24.254Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f1b" - } - }, - { - "title": "Full Stack Developer", - "company": "EA (Electronic Arts)", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-07-30T14:54:00.461Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f1c" - } - }, - { - "title": "Web Developer", - "company": "Qualcomm", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-04-29T10:23:36.926Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f1d" - } - }, - { - "title": "Data Scientist", - "company": "Square", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-04-14T05:53:06.043Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f1e" - } - } - ] - }, - "education": [], - "projects": [], - "personalBio": "Adaptable problem solver who thrives in dynamic, fast-paced environments.", - "testimonials": [ - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd9459f1f" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd9459f20" - } - }, - { - "from": "Daniel Lee", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd9459f21" - } - }, - { - "from": "Olivia White", - "relation": "Tech Lead at Cloud Innovations", - "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", - "_id": { - "$oid": "6674c31e95590f9fd9459f22" - } - }, - { - "from": "Emma Thompson", - "relation": "Manager at DataTech Solutions", - "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", - "_id": { - "$oid": "6674c31e95590f9fd9459f23" - } - } - ], - "socialMediaLinks": { "other": ["https://www.instagram.com/Margaret-Dubber-fake"] }, - "availabilityForNetworking": true, - "bootcampExperience": "BrainStation", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f1a" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459da7" - }, - "firstName": "Addy", - "lastName": "Fass", - "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "cohort": "LA 84", - "graduationYear": 2024, - "email": "afassj@vistaprint.com", - "linkedInProfile": "https://www.linkedin.com/in/Addy-Fass-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": ["Quantum Computing"], - "specializations": [ - "Problem-Solving", - "System Design", - "Unit Testing", - "Agile Development", - "API Development" - ], - "careerInformation": { - "currentPosition": { "title": "Embedded Systems Engineer", "company": "Red Hat" }, - "pastPositions": [] - }, - "education": [], - "projects": [ - { - "name": "JobFinder", - "description": "Job search and application management platform with personalized recommendations.", - "link": "https://github.com/username/jobfinder", - "_id": { - "$oid": "6674c31e95590f9fd9459f25" - } - }, - { - "name": "CloudGuard", - "description": "Advanced cloud security suite ensuring data protection and compliance.", - "link": "https://github.com/username/cloudguard", - "_id": { - "$oid": "6674c31e95590f9fd9459f26" - } - }, - { - "name": "EventPlanner", - "description": "Event management and planning software for organizing and coordinating events.", - "link": "https://github.com/username/eventplanner", - "_id": { - "$oid": "6674c31e95590f9fd9459f27" - } - }, - { - "name": "JobFinder", - "description": "Job search and application management platform with personalized recommendations.", - "link": "https://github.com/username/jobfinder", - "_id": { - "$oid": "6674c31e95590f9fd9459f28" - } - }, - { - "name": "CloudGuard", - "description": "Advanced cloud security suite ensuring data protection and compliance.", - "link": "https://github.com/username/cloudguard", - "_id": { - "$oid": "6674c31e95590f9fd9459f29" - } - } - ], - "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", - "testimonials": [ - { - "from": "Daniel Lee", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd9459f2a" - } - }, - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", - "_id": { - "$oid": "6674c31e95590f9fd9459f2b" - } - }, - { - "from": "Isabella Clark", - "relation": "HR Manager at TechFusion", - "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", - "_id": { - "$oid": "6674c31e95590f9fd9459f2c" - } - }, - { - "from": "Liam Harris", - "relation": "Lead Developer at CloudTech", - "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd9459f2d" - } - }, - { - "from": "Lucas Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", - "_id": { - "$oid": "6674c31e95590f9fd9459f2e" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Addy-Fass-fake", - "other": ["https://www.instagram.com/Addy-Fass-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Fullstack Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f24" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459da8" - }, - "firstName": "Sollie", - "lastName": "Puckinghorne", - "cohort": "ECRI 14", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f2f" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459da9" - }, - "firstName": "Xena", - "lastName": "Tomczynski", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "ECRI 41", - "graduationYear": 2024, - "email": "xtomczynskil@ted.com", - "linkedInProfile": "https://www.linkedin.com/in/Xena-Tomczynski-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": ["Blockchain", "Big Data", "Microservices", "API Development", "Database Design"], - "specializations": [ - "Java", - "Performance Optimization", - "Graph Theory", - "Collaboration", - "Quantum Computing", - "Scrum", - "Project Management" - ], - "careerInformation": { - "currentPosition": { "title": "Machine Learning Engineer", "company": "Apple" }, - "pastPositions": [ - { - "title": "Technical Program Manager", - "company": "Uber", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-10-03T01:40:09.199Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f31" - } - }, - { - "title": "AI Engineer", - "company": "DocuSign", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-08-06T10:43:42.175Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f32" - } - }, - { - "title": "Software Engineer", - "company": "Okta", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-10-20T22:12:20.349Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f33" - } - }, - { - "title": "Senior Software Engineer", - "company": "Microsoft", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-09-01T08:25:07.264Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f34" - } - }, - { - "title": "Full Stack Developer", - "company": "Uber", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-08-30T04:25:40.078Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f35" - } - } - ] - }, - "education": [ - { - "institution": "EPFL - ร‰cole Polytechnique Fรฉdรฉrale de Lausanne", - "degree": "Master of Business Administration (MBA)", - "fieldOfStudy": "Biochemistry", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-10-02T22:34:11.517Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f36" - } - }, - { - "institution": "ETH Zurich - Swiss Federal Institute of Technology", - "degree": "Doctor of Pharmacy (PharmD)", - "fieldOfStudy": "Economics", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-10-17T09:05:36.803Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f37" - } - } - ], - "projects": [ - { - "name": "SocialConnect", - "description": "Social media integration platform for managing multiple social accounts.", - "link": "https://github.com/username/socialconnect", - "_id": { - "$oid": "6674c31e95590f9fd9459f38" - } - }, - { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", - "_id": { - "$oid": "6674c31e95590f9fd9459f39" - } - }, - { - "name": "EventPlanner", - "description": "Event management and planning software for organizing and coordinating events.", - "link": "https://github.com/username/eventplanner", - "_id": { - "$oid": "6674c31e95590f9fd9459f3a" - } - }, - { - "name": "EduTech", - "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", - "link": "https://github.com/username/edutech", - "_id": { - "$oid": "6674c31e95590f9fd9459f3b" - } - } - ], - "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", - "testimonials": [], - "socialMediaLinks": { - "twitter": "https://x.com/Xena-Tomczynski-fake", - "blog": "https://www.Xena-Tomczynski-fake-blog.com", - "other": [] - }, - "availabilityForNetworking": false, - "bootcampExperience": "Lambda School", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f30" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459daa" - }, - "firstName": "Harmonie", - "lastName": "Karpinski", - "cohort": "NYC 84", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f3c" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dab" - }, - "firstName": "Marielle", - "lastName": "Crocket", - "cohort": "FTRI 96", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f3d" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dac" - }, - "firstName": "Ulrick", - "lastName": "Blasing", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "ECRI 65", - "graduationYear": 2024, - "email": "ublasingo@yahoo.com", - "linkedInProfile": "https://www.linkedin.com/in/Ulrick-Blasing-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", - "skills": [ - "FaaS (Function as a Service)", - "NoSQL", - "Legacy Code Management", - "GraphQL", - "Infrastructure as Code", - "API Integration", - "Refactoring", - "Pair Programming", - "Concurrency", - "TDD (Test-Driven Development)", - "Code Review", - "User Interface (UI) Design", - "Laravel", - "Unit Testing", - "Machine Learning" - ], - "specializations": [ - "Graph Databases", - "Quantum Computing", - "Functional Programming", - "Cybersecurity", - "Natural Language Processing", - "Code Review", - "Robotic Process Automation", - "IoT (Internet of Things)", - "CSS", - "GraphQL", - "Software Architecture" - ], - "careerInformation": { - "currentPosition": { "title": "Mobile Developer", "company": "Twilio" }, - "pastPositions": [ - { - "title": "Full Stack Developer", - "company": "Zoom", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-01-19T04:56:18.411Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f3f" - } - }, - { - "title": "Product Manager", - "company": "Netflix", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-09-06T23:25:33.104Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f40" - } - } - ] - }, - "education": [ - { - "institution": "University of Georgia", - "degree": "Postdoctoral Research", - "fieldOfStudy": "Film Studies", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-10-17T05:12:44.626Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f41" - } - } - ], - "projects": [ - { - "name": "HealthMonitor", - "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", - "link": "https://github.com/username/healthmonitor", - "_id": { - "$oid": "6674c31e95590f9fd9459f42" - } - }, - { - "name": "EcoTech", - "description": "Environmental monitoring and conservation app with real-time data visualization.", - "link": "https://github.com/username/ecotech", - "_id": { - "$oid": "6674c31e95590f9fd9459f43" - } - } - ], - "personalBio": "Experienced in deploying and maintaining applications on cloud platforms like AWS and Azure.", - "testimonials": [ - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd9459f44" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd9459f45" - } - }, - { - "from": "Isabella Clark", - "relation": "HR Manager at TechFusion", - "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", - "_id": { - "$oid": "6674c31e95590f9fd9459f46" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "6674c31e95590f9fd9459f47" - } - } - ], - "socialMediaLinks": { "other": ["https://www.instagram.com/Ulrick-Blasing-fake"] }, - "availabilityForNetworking": true, - "bootcampExperience": "BrainStation", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f3e" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dad" - }, - "firstName": "Cheri", - "lastName": "Danielsson", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "FTRI 83", - "graduationYear": 2024, - "email": "cdanielssonp@example.com", - "linkedInProfile": "https://www.linkedin.com/in/Cheri-Danielsson-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": [ - "Continuous Deployment", - "Critical Thinking", - "Node.js", - "Graph Databases", - "C#", - "Collaboration", - "Pair Programming", - "Mobile Development", - "Robotic Process Automation", - "Infrastructure as Code" - ], - "specializations": [ - "AR/VR (Augmented/Virtual Reality)", - "Algorithm Design", - "User Interface (UI) Design", - "Object-Oriented Programming", - "Design Patterns", - "Angular", - "User Experience (UX) Design", - "iOS Development", - "Cybersecurity", - "WebSockets", - "Continuous Deployment", - "Event-Driven Architecture", - "Functional Programming", - "C#", - "Unit Testing", - "Software Architecture", - "RESTful APIs", - "Pair Programming" - ], - "careerInformation": { - "currentPosition": { "title": "Technical Lead", "company": "Robinhood" }, - "pastPositions": [ - { - "title": "Data Engineer", - "company": "Netflix", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-11-06T10:07:15.640Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f49" - } - }, - { - "title": "Engineering Manager", - "company": "Oracle", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-01-09T18:06:13.047Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f4a" - } - } - ] - }, - "education": [ - { - "institution": "Michigan State University", - "degree": "Master's Degree", - "fieldOfStudy": "Anthropology", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-07-07T16:04:30.604Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f4b" - } - }, - { - "institution": "University of Houston", - "degree": "Bachelor of Technology (BTech)", - "fieldOfStudy": "Veterinary Medicine", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-12-05T22:10:00.055Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f4c" - } - } - ], - "projects": [ - { - "name": "DataCrunch", - "description": "Real-time data analytics platform for extracting insights from big data.", - "link": "https://github.com/username/datacrunch", - "_id": { - "$oid": "6674c31e95590f9fd9459f4d" - } - }, - { - "name": "SmartWatch", - "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", - "link": "https://github.com/username/smartwatch", - "_id": { - "$oid": "6674c31e95590f9fd9459f4e" - } - } - ], - "personalBio": "Experienced in both frontend and backend development, with a focus on creating elegant and efficient solutions.", - "testimonials": [], - "socialMediaLinks": { "twitter": "https://x.com/Cheri-Danielsson-fake", "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "Tech Elevator", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f48" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dae" - }, - "firstName": "Durand", - "lastName": "Joron", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "FTRI 21", - "graduationYear": 2024, - "email": "djoronq@google.cn", - "linkedInProfile": "https://www.linkedin.com/in/Durand-Joron-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", - "skills": ["Scrum"], - "specializations": [ - "Kubernetes", - "Ruby", - "Code Review", - "Legacy Code Management", - "Functional Programming", - "Cybersecurity", - "Python", - "ASP.NET", - "Automated Testing", - "Git", - "Node.js" - ], - "careerInformation": { - "currentPosition": { "title": "Full Stack Developer", "company": "IBM" }, - "pastPositions": [ - { - "title": "Automation Engineer", - "company": "Spotify", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-08-27T10:52:03.251Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f50" - } - }, - { - "title": "Test Engineer", - "company": "Square", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-11-24T00:39:08.044Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f51" - } - }, - { - "title": "Technical Program Manager", - "company": "Tesla", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-12-27T20:45:18.643Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f52" - } - }, - { - "title": "Android Developer", - "company": "Datadog", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-05-22T15:31:48.350Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f53" - } - }, - { - "title": "Full Stack Developer", - "company": "Coinbase", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-01-17T07:27:43.232Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f54" - } - } - ] - }, - "education": [ - { - "institution": "Chinese University of Hong Kong (CUHK)", - "degree": "Executive Education", - "fieldOfStudy": "Finance", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-10-02T22:45:53.438Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f55" - } - }, - { - "institution": "University of New South Wales (UNSW Sydney)", - "degree": "Postdoctoral Research", - "fieldOfStudy": "Chemistry", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-03-03T07:32:31.390Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f56" - } - }, - { - "institution": "Carnegie Mellon University", - "degree": "Bachelor of Fine Arts (BFA)", - "fieldOfStudy": "Data Science", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-04-16T23:18:10.615Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f57" - } - } - ], - "projects": [], - "personalBio": "Driven by a curiosity for innovation and a commitment to delivering high-quality software solutions.", - "testimonials": [ - { - "from": "Emma Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd9459f58" - } - }, - { - "from": "Noah Rodriguez", - "relation": "Product Owner at AgileSoft", - "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", - "_id": { - "$oid": "6674c31e95590f9fd9459f59" - } - } - ], - "socialMediaLinks": { "blog": "https://www.Durand-Joron-fake-blog.com", "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "Le Wagon", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f4f" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459daf" - }, - "firstName": "Kristien", - "lastName": "Burgett", - "cohort": "PTRI 30", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f5a" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459db0" - }, - "firstName": "Kaia", - "lastName": "Fassmann", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "cohort": "NYC 96", - "graduationYear": 2024, - "email": "kfassmanns@ted.com", - "linkedInProfile": "https://www.linkedin.com/in/Kaia-Fassmann-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", - "skills": [ - "Pair Programming", - "ETL (Extract, Transform, Load)", - "Critical Thinking", - "Integration Testing", - "Infrastructure as Code", - "Graph Theory", - "API Development", - "Design Patterns", - "Natural Language Processing", - "ASP.NET", - "Data Visualization" - ], - "specializations": ["Refactoring"], - "careerInformation": { - "currentPosition": { "title": "Mobile Developer", "company": "Google" }, - "pastPositions": [ - { - "title": "Junior Software Engineer", - "company": "Intel", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-08-28T20:05:59.474Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f5c" - } - }, - { - "title": "Technical Program Manager", - "company": "PayPal", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-09-17T17:42:19.864Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f5d" - } - }, - { - "title": "Technical Lead", - "company": "Snapchat", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-07-04T00:13:05.498Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f5e" - } - }, - { - "title": "QA Engineer", - "company": "Robinhood", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-01-18T03:47:17.187Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f5f" - } - }, - { - "title": "Android Developer", - "company": "Red Hat", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-04-11T16:04:51.159Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f60" - } - } - ] - }, - "education": [], - "projects": [ - { - "name": "NetPlanner", - "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", - "link": "https://github.com/username/netplanner", - "_id": { - "$oid": "6674c31e95590f9fd9459f61" - } - }, - { - "name": "SmartFarm", - "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", - "link": "https://github.com/username/smartfarm", - "_id": { - "$oid": "6674c31e95590f9fd9459f62" - } - }, - { - "name": "CryptoWallet", - "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", - "link": "https://github.com/username/cryptowallet", - "_id": { - "$oid": "6674c31e95590f9fd9459f63" - } - } - ], - "personalBio": "Experienced in building scalable microservices architectures and integrating third-party APIs.", - "testimonials": [ - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd9459f64" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd9459f65" - } - }, - { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - "_id": { - "$oid": "6674c31e95590f9fd9459f66" - } - } - ], - "socialMediaLinks": { "blog": "https://www.Kaia-Fassmann-fake-blog.com", "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "Kenzie Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f5b" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459db1" - }, - "firstName": "Lockwood", - "lastName": "Moxham", - "cohort": "FTRI 1", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f67" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459db2" - }, - "firstName": "Tessie", - "lastName": "Sugden", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "ECRI 10", - "graduationYear": 2024, - "email": "tsugdenu@npr.org", - "linkedInProfile": "https://www.linkedin.com/in/Tessie-Sugden-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", - "skills": [ - "SaaS (Software as a Service)", - "Java", - "HTML", - "Collaboration", - "Cybersecurity", - "Code Review", - "Blockchain", - "Docker", - "CI/CD", - "Git", - "Laravel", - "Containerization", - "Event-Driven Architecture" - ], - "specializations": [ - "Java", - "WebSockets", - "JavaScript", - "Data Science", - "Deep Learning", - "Time Management", - "Algorithm Design", - "AR/VR (Augmented/Virtual Reality)", - "SaaS (Software as a Service)", - "Legacy Code Management", - "Android Development", - "React", - "Django", - "System Design" - ], - "careerInformation": { - "currentPosition": { "title": "Cloud Engineer", "company": "Robinhood" }, - "pastPositions": [ - { - "title": "Data Scientist", - "company": "Oracle", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-10-29T17:13:59.076Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f69" - } - }, - { - "title": "Software Developer", - "company": "Uber", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-02-24T07:29:45.493Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f6a" - } - }, - { - "title": "Mobile Developer", - "company": "GitHub", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-11-15T07:17:37.297Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f6b" - } - }, - { - "title": "Security Engineer", - "company": "Facebook", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-07-17T20:29:26.535Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f6c" - } - }, - { - "title": "DevOps Engineer", - "company": "DocuSign", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-05-02T02:56:04.337Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f6d" - } - } - ] - }, - "education": [], - "projects": [ - { - "name": "AIChatbot", - "description": "AI-powered chatbot for customer support and interactive communication.", - "link": "https://github.com/username/aichatbot", - "_id": { - "$oid": "6674c31e95590f9fd9459f6e" - } - }, - { - "name": "RoboTrader", - "description": "Algorithmic trading platform for automated stock market analysis and trading.", - "link": "https://github.com/username/robotrader", - "_id": { - "$oid": "6674c31e95590f9fd9459f6f" - } - } - ], - "personalBio": "Passionate about contributing to the tech community through open-source projects and knowledge sharing.", - "testimonials": [ - { - "from": "Sophie Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "6674c31e95590f9fd9459f70" - } - }, - { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - "_id": { - "$oid": "6674c31e95590f9fd9459f71" - } - }, - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd9459f72" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd9459f73" - } - }, - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", - "_id": { - "$oid": "6674c31e95590f9fd9459f74" - } - } - ], - "socialMediaLinks": { "other": ["https://www.instagram.com/Tessie-Sugden-fake"] }, - "availabilityForNetworking": false, - "bootcampExperience": "Fullstack Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f68" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459db3" - }, - "firstName": "Rea", - "lastName": "Jeremiah", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "PTRI 29", - "graduationYear": 2024, - "email": "rjeremiahv@wikispaces.com", - "linkedInProfile": "https://www.linkedin.com/in/Rea-Jeremiah-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", - "skills": [ - "BDD (Behavior-Driven Development)", - "Serverless Architecture", - "Vue.js", - "Android Development", - "Mobile Development", - "HTML" - ], - "specializations": [ - "iOS Development", - "Problem-Solving", - "Big Data", - "Serverless Architecture", - "Flask", - "Mobile Development", - "Project Management", - "FaaS (Function as a Service)", - "Legacy Code Management", - "Algorithm Design", - "Database Design", - "Code Review", - "Cloud Computing", - "CSS", - "Containerization", - "Google Cloud Platform", - "Data Warehousing" - ], - "careerInformation": { - "currentPosition": { "title": "iOS Developer", "company": "Apple" }, - "pastPositions": [ - { - "title": "Automation Engineer", - "company": "DoorDash", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-09-10T06:01:52.379Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f76" - } - }, - { - "title": "Software Engineer", - "company": "Oracle", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-12-03T13:44:43.262Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f77" - } - }, - { - "title": "Test Engineer", - "company": "HubSpot", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-03-26T12:07:31.221Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f78" - } - }, - { - "title": "Android Developer", - "company": "Stripe", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-12-31T15:34:26.525Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f79" - } - } - ] - }, - "education": [ - { - "institution": "Tsinghua University", - "degree": "Bachelor of Arts (BA)", - "fieldOfStudy": "Music", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-05-12T02:19:48.507Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f7a" - } - }, - { - "institution": "University of Tennessee", - "degree": "Doctoral Degree", - "fieldOfStudy": "Theater", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-08-14T09:49:48.680Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f7b" - } - } - ], - "projects": [], - "personalBio": "Adaptable problem solver who thrives in dynamic, fast-paced environments.", - "testimonials": [], - "socialMediaLinks": { "other": ["https://www.instagram.com/Rea-Jeremiah-fake"] }, - "availabilityForNetworking": true, - "bootcampExperience": "Codesmith", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f75" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459db4" - }, - "firstName": "Cassie", - "lastName": "Meadows", - "cohort": "FTRI 97", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f7c" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459db5" - }, - "firstName": "Kelci", - "lastName": "Bastide", - "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "cohort": "NYC 55", - "graduationYear": 2024, - "email": "kbastidex@latimes.com", - "linkedInProfile": "https://www.linkedin.com/in/Kelci-Bastide-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", - "skills": [ - "Cloud Computing", - "NoSQL", - "Python", - "DevOps", - "Algorithm Design", - "Event-Driven Architecture", - "IoT (Internet of Things)", - "Scrum", - "Git", - "Edge Computing", - "ETL (Extract, Transform, Load)", - "Ruby", - "Data Visualization", - "Problem-Solving", - "BDD (Behavior-Driven Development)", - "Node.js" - ], - "specializations": [ - "Collaboration", - "C++", - "AWS", - "Microservices", - "SaaS (Software as a Service)", - "WebSockets", - "Pair Programming", - "API Development", - "ETL (Extract, Transform, Load)", - "GraphQL", - "ASP.NET", - "Time Management", - "RESTful APIs", - "Agile Development", - "CI/CD", - "Machine Learning", - "Python" - ], - "careerInformation": { - "currentPosition": { "title": "DevOps Engineer", "company": "Red Hat" }, - "pastPositions": [ - { - "title": "Full Stack Developer", - "company": "Oracle", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-04-03T06:50:10.796Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f7e" - } - }, - { - "title": "Software Engineer", - "company": "Activision Blizzard", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-07-08T00:13:47.187Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f7f" - } - } - ] - }, - "education": [], - "projects": [], - "personalBio": "Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.", - "testimonials": [ - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", - "_id": { - "$oid": "6674c31e95590f9fd9459f80" - } - }, - { - "from": "Noah Rodriguez", - "relation": "Product Owner at AgileSoft", - "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", - "_id": { - "$oid": "6674c31e95590f9fd9459f81" - } - }, - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", - "_id": { - "$oid": "6674c31e95590f9fd9459f82" - } - }, - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", - "_id": { - "$oid": "6674c31e95590f9fd9459f83" - } - } - ], - "socialMediaLinks": { "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "Makers Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f7d" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459db6" - }, - "firstName": "Thurston", - "lastName": "Speechly", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "LA 41", - "graduationYear": 2024, - "email": "tspeechlyy@plala.or.jp", - "linkedInProfile": "https://www.linkedin.com/in/Thurston-Speechly-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", - "skills": [ - "Time Management", - "Java", - "Machine Learning", - "Project Management", - "Parallel Computing", - "Concurrency", - "Critical Thinking", - "Leadership", - "User Interface (UI) Design", - "Google Cloud Platform", - "CSS", - "AWS" - ], - "specializations": [ - "AWS", - "GraphQL", - "Quantum Computing", - "Refactoring", - "Natural Language Processing", - "Functional Programming", - "Scrum", - "Python", - "ETL (Extract, Transform, Load)", - "Unit Testing", - "Laravel", - "SaaS (Software as a Service)", - "Performance Optimization", - "Mobile Development" - ], - "careerInformation": { - "currentPosition": { "title": "Mobile Developer", "company": "IBM" }, - "pastPositions": [ - { - "title": "Site Reliability Engineer", - "company": "EA (Electronic Arts)", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-07-17T16:33:06.515Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f85" - } - }, - { - "title": "Cloud Engineer", - "company": "Dropbox", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-01-21T09:48:13.207Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f86" - } - }, - { - "title": "AI Engineer", - "company": "Okta", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-02-25T15:24:38.854Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f87" - } - }, - { - "title": "Test Engineer", - "company": "Adobe", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-02-04T17:12:44.698Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f88" - } - }, - { - "title": "Lead Software Engineer", - "company": "Activision Blizzard", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-10-10T02:51:10.141Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f89" - } - } - ] - }, - "education": [ - { - "institution": "University of Sydney", - "degree": "Technical School Certification", - "fieldOfStudy": "Education", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-10-22T18:25:20.293Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f8a" - } - }, - { - "institution": "University of Vermont", - "degree": "Associate Degree", - "fieldOfStudy": "Psychology", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-02-24T16:32:24.701Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f8b" - } - } - ], - "projects": [ - { - "name": "AIAssistant", - "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", - "link": "https://github.com/username/aiassistant", - "_id": { - "$oid": "6674c31e95590f9fd9459f8c" - } - }, - { - "name": "HomeSecurity", - "description": "Home security system with video surveillance, motion detection, and alarm integration.", - "link": "https://github.com/username/homesecurity", - "_id": { - "$oid": "6674c31e95590f9fd9459f8d" - } - }, - { - "name": "SmartLearning", - "description": "AI-driven personalized learning platform with adaptive learning algorithms.", - "link": "https://github.com/username/smartlearning", - "_id": { - "$oid": "6674c31e95590f9fd9459f8e" - } - }, - { - "name": "EcoTech", - "description": "Environmental monitoring and conservation app with real-time data visualization.", - "link": "https://github.com/username/ecotech", - "_id": { - "$oid": "6674c31e95590f9fd9459f8f" - } - } - ], - "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", - "testimonials": [ - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "6674c31e95590f9fd9459f90" - } - }, - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd9459f91" - } - } - ], - "socialMediaLinks": { - "blog": "https://www.Thurston-Speechly-fake-blog.com", - "other": ["https://www.instagram.com/Thurston-Speechly-fake"] - }, - "availabilityForNetworking": false, - "bootcampExperience": "App Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f84" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459db7" - }, - "firstName": "Silas", - "lastName": "Reyes", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "CTRI 95", - "graduationYear": 2024, - "email": "sreyesz@google.co.jp", - "linkedInProfile": "https://www.linkedin.com/in/Silas-Reyes-fake", - "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", - "skills": [ - "Algorithm Design", - "Android Development", - "ETL (Extract, Transform, Load)", - "RESTful APIs", - "Data Visualization", - "Scrum", - "User Experience (UX) Design", - "SaaS (Software as a Service)", - "Git", - "Problem-Solving", - "Refactoring", - "Functional Programming" - ], - "specializations": [ - "React", - "Kubernetes", - "Machine Learning", - "SaaS (Software as a Service)", - "Pair Programming", - "Software Architecture", - "C++", - "Laravel", - "iOS Development", - "Functional Programming", - "Data Warehousing", - "Parallel Computing", - "User Experience (UX) Design", - "PaaS (Platform as a Service)" - ], - "careerInformation": { - "currentPosition": { "title": "Security Engineer", "company": "Cisco" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "University of Oxford", - "degree": "Master of Social Work (MSW)", - "fieldOfStudy": "Linguistics", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-04-12T07:41:52.089Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f93" - } - } - ], - "projects": [ - { - "name": "DataCrunch", - "description": "Real-time data analytics platform for extracting insights from big data.", - "link": "https://github.com/username/datacrunch", - "_id": { - "$oid": "6674c31e95590f9fd9459f94" - } - }, - { - "name": "MediCare", - "description": "Medical appointment scheduling and patient management system for healthcare providers.", - "link": "https://github.com/username/medicare", - "_id": { - "$oid": "6674c31e95590f9fd9459f95" - } - }, - { - "name": "DataCrunch", - "description": "Real-time data analytics platform for extracting insights from big data.", - "link": "https://github.com/username/datacrunch", - "_id": { - "$oid": "6674c31e95590f9fd9459f96" - } - }, - { - "name": "CodeReview", - "description": "Collaborative code review platform with annotations and feedback features.", - "link": "https://github.com/username/codereview", - "_id": { - "$oid": "6674c31e95590f9fd9459f97" - } - } - ], - "personalBio": "Skilled in UX/UI design principles, with a focus on creating intuitive and visually appealing interfaces.", - "testimonials": [ - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd9459f98" - } - }, - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", - "_id": { - "$oid": "6674c31e95590f9fd9459f99" - } - }, - { - "from": "Emma Thompson", - "relation": "Manager at DataTech Solutions", - "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", - "_id": { - "$oid": "6674c31e95590f9fd9459f9a" - } - }, - { - "from": "Emma Thompson", - "relation": "Manager at DataTech Solutions", - "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", - "_id": { - "$oid": "6674c31e95590f9fd9459f9b" - } - }, - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", - "_id": { - "$oid": "6674c31e95590f9fd9459f9c" - } - } - ], - "socialMediaLinks": { "blog": "https://www.Silas-Reyes-fake-blog.com", "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "Hack Reactor", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f92" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459db8" - }, - "firstName": "Marley", - "lastName": "Boshard", - "cohort": "PTRI 10", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f9d" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459db9" - }, - "firstName": "Eb", - "lastName": "Dargie", - "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "cohort": "LA 10", - "graduationYear": 2024, - "email": "edargie11@artisteer.com", - "linkedInProfile": "https://www.linkedin.com/in/Eb-Dargie-fake", - "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", - "skills": [ - "HTML", - "AR/VR (Augmented/Virtual Reality)", - "Parallel Computing", - "Graph Theory", - "Laravel", - "Version Control" - ], - "specializations": [ - "Problem-Solving", - "Quantum Computing", - "C#", - "Database Design", - "iOS Development", - "Continuous Deployment", - "Laravel", - "Machine Learning", - "Data Warehousing", - "Spring Boot", - "Concurrency", - "Automated Testing" - ], - "careerInformation": { - "currentPosition": { "title": "Engineering Manager", "company": "Twitter" }, - "pastPositions": [ - { - "title": "Mobile Developer", - "company": "Facebook", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-06-07T11:35:53.822Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459f9f" - } - }, - { - "title": "Cloud Engineer", - "company": "Microsoft", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-08-18T18:04:23.853Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fa0" - } - }, - { - "title": "Data Scientist", - "company": "Airbnb", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-07-24T16:40:21.338Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fa1" - } - } - ] - }, - "education": [ - { - "institution": "University of Massachusetts Amherst", - "degree": "Bachelor's Degree", - "fieldOfStudy": "Statistics", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-06-03T05:34:00.391Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fa2" - } - }, - { - "institution": "University of Missouri", - "degree": "Juris Doctor (JD)", - "fieldOfStudy": "Environmental Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-10-08T09:12:19.626Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fa3" - } - } - ], - "projects": [ - { - "name": "VoiceAssistant", - "description": "Voice-controlled personal assistant using natural language processing.", - "link": "https://github.com/username/voiceassistant", - "_id": { - "$oid": "6674c31e95590f9fd9459fa4" - } - }, - { - "name": "AIChatbot", - "description": "AI-powered chatbot for customer support and interactive communication.", - "link": "https://github.com/username/aichatbot", - "_id": { - "$oid": "6674c31e95590f9fd9459fa5" - } - }, - { - "name": "SmartInventory", - "description": "Inventory management system with RFID and IoT integration for tracking assets.", - "link": "https://github.com/username/smartinventory", - "_id": { - "$oid": "6674c31e95590f9fd9459fa6" - } - }, - { - "name": "EventPlanner", - "description": "Event management and planning software for organizing and coordinating events.", - "link": "https://github.com/username/eventplanner", - "_id": { - "$oid": "6674c31e95590f9fd9459fa7" - } - } - ], - "personalBio": "Proven ability to lead technical projects from inception to successful deployment and maintenance.", - "testimonials": [ - { - "from": "Aiden Walker", - "relation": "CTO at Innovate Solutions", - "text": "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", - "_id": { - "$oid": "6674c31e95590f9fd9459fa8" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "6674c31e95590f9fd9459fa9" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd9459faa" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd9459fab" - } - } - ], - "socialMediaLinks": { "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "Lambda School", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459f9e" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dba" - }, - "firstName": "Dian", - "lastName": "Dackombe", - "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "cohort": "WCRI 17", - "graduationYear": 2024, - "email": "ddackombe13@ihg.com", - "linkedInProfile": "https://www.linkedin.com/in/Dian-Dackombe-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": ["Design Patterns", "Technical Writing", "Algorithm Design"], - "specializations": ["NoSQL"], - "careerInformation": { - "currentPosition": { "title": "Principal Software Engineer", "company": "Stripe" }, - "pastPositions": [ - { - "title": "Automation Engineer", - "company": "Facebook", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-07-07T20:11:19.983Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fad" - } - }, - { - "title": "Web Developer", - "company": "Cisco", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-07-14T11:45:14.760Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fae" - } - }, - { - "title": "Data Engineer", - "company": "Atlassian", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-02-22T07:55:58.115Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459faf" - } - } - ] - }, - "education": [ - { - "institution": "University of California, Los Angeles (UCLA)", - "degree": "Technical School Certification", - "fieldOfStudy": "Film Studies", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-04-10T04:17:41.900Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fb0" - } - } - ], - "projects": [], - "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", - "testimonials": [ - { - "from": "Aiden Walker", - "relation": "CTO at Innovate Solutions", - "text": "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", - "_id": { - "$oid": "6674c31e95590f9fd9459fb1" - } - }, - { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - "_id": { - "$oid": "6674c31e95590f9fd9459fb2" - } - } - ], - "socialMediaLinks": { "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "General Assembly", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459fac" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dbb" - }, - "firstName": "Freedman", - "lastName": "Scrafton", - "cohort": "PTRI 56", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459fb3" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dbc" - }, - "firstName": "Tabbitha", - "lastName": "Jolliffe", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "FTRI 23", - "graduationYear": 2024, - "email": "tjolliffe15@bbb.org", - "linkedInProfile": "https://www.linkedin.com/in/Tabbitha-Jolliffe-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": ["PaaS (Platform as a Service)", "Version Control"], - "specializations": ["Flask", "Performance Optimization"], - "careerInformation": { - "currentPosition": { "title": "Technical Lead", "company": "Zoom" }, - "pastPositions": [ - { - "title": "Security Engineer", - "company": "Microsoft", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-01-27T02:34:31.023Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fb5" - } - }, - { - "title": "Frontend Developer", - "company": "Netflix", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-02-09T15:33:23.807Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fb6" - } - }, - { - "title": "Software Architect", - "company": "LinkedIn", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-12-03T04:14:07.527Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fb7" - } - }, - { - "title": "Junior Software Engineer", - "company": "Snowflake", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-08-21T03:24:16.343Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fb8" - } - }, - { - "title": "Web Developer", - "company": "PayPal", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-09-08T02:33:13.154Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fb9" - } - } - ] - }, - "education": [], - "projects": [ - { - "name": "HomeSecurity", - "description": "Home security system with video surveillance, motion detection, and alarm integration.", - "link": "https://github.com/username/homesecurity", - "_id": { - "$oid": "6674c31e95590f9fd9459fba" - } - }, - { - "name": "SmartHomeHub", - "description": "Centralized home automation system integrating IoT devices for smart living.", - "link": "https://github.com/username/smarthomehub", - "_id": { - "$oid": "6674c31e95590f9fd9459fbb" - } - }, - { - "name": "HomeSecurity", - "description": "Home security system with video surveillance, motion detection, and alarm integration.", - "link": "https://github.com/username/homesecurity", - "_id": { - "$oid": "6674c31e95590f9fd9459fbc" - } - }, - { - "name": "CloudStorage", - "description": "Cloud storage service with file synchronization and sharing capabilities.", - "link": "https://github.com/username/cloudstorage", - "_id": { - "$oid": "6674c31e95590f9fd9459fbd" - } - }, - { - "name": "RoboVision", - "description": "AI-powered computer vision system for object detection and recognition.", - "link": "https://github.com/username/robovision", - "_id": { - "$oid": "6674c31e95590f9fd9459fbe" - } - } - ], - "personalBio": "Experienced in rapid prototyping and iterative development methodologies.", - "testimonials": [ - { - "from": "Sophie Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "6674c31e95590f9fd9459fbf" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "6674c31e95590f9fd9459fc0" - } - }, - { - "from": "Liam Harris", - "relation": "Lead Developer at CloudTech", - "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd9459fc1" - } - } - ], - "socialMediaLinks": { "other": ["https://www.instagram.com/Tabbitha-Jolliffe-fake"] }, - "availabilityForNetworking": true, - "bootcampExperience": "Flatiron School", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459fb4" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dbd" - }, - "firstName": "Jordon", - "lastName": "Ganley", - "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "cohort": "CTRI 49", - "graduationYear": 2024, - "email": "jganley16@geocities.jp", - "linkedInProfile": "https://www.linkedin.com/in/Jordon-Ganley-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": [ - "Cybersecurity", - "API Integration", - "PaaS (Platform as a Service)", - "User Experience (UX) Design", - "NoSQL", - "Ruby", - "Pair Programming", - "Version Control", - "User Interface (UI) Design", - "Agile Development", - "Python" - ], - "specializations": ["Django", "Object-Oriented Programming"], - "careerInformation": { - "currentPosition": { "title": "Security Engineer", "company": "Stripe" }, - "pastPositions": [ - { - "title": "Technical Lead", - "company": "Red Hat", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-12-05T22:49:54.439Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fc3" - } - }, - { - "title": "QA Engineer", - "company": "Twitter", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-03-24T15:39:33.464Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fc4" - } - }, - { - "title": "Automation Engineer", - "company": "Netflix", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-10-01T00:44:40.237Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fc5" - } - }, - { - "title": "Full Stack Developer", - "company": "LinkedIn", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-09-11T07:50:27.027Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fc6" - } - } - ] - }, - "education": [ - { - "institution": "University College London (UCL)", - "degree": "Doctor of Pharmacy (PharmD)", - "fieldOfStudy": "Veterinary Medicine", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-07-03T23:09:55.258Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fc7" - } - }, - { - "institution": "University of New South Wales (UNSW Sydney)", - "degree": "Executive Education", - "fieldOfStudy": "Mechanical Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-02-13T15:55:05.842Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fc8" - } - }, - { - "institution": "University of California, Los Angeles (UCLA)", - "degree": "Doctor of Dental Medicine (DMD)", - "fieldOfStudy": "Biology", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-02-21T18:23:24.863Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fc9" - } - } - ], - "projects": [ - { - "name": "HealthLink", - "description": "Telemedicine platform connecting patients with healthcare providers remotely.", - "link": "https://github.com/username/healthlink", - "_id": { - "$oid": "6674c31e95590f9fd9459fca" - } - }, - { - "name": "HealthLink", - "description": "Telemedicine platform connecting patients with healthcare providers remotely.", - "link": "https://github.com/username/healthlink", - "_id": { - "$oid": "6674c31e95590f9fd9459fcb" - } - } - ], - "personalBio": "Passionate about leveraging data-driven insights to optimize software performance and user engagement.", - "testimonials": [ - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", - "_id": { - "$oid": "6674c31e95590f9fd9459fcc" - } - }, - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd9459fcd" - } - }, - { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", - "_id": { - "$oid": "6674c31e95590f9fd9459fce" - } - }, - { - "from": "Daniel Lee", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd9459fcf" - } - }, - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd9459fd0" - } - } - ], - "socialMediaLinks": { "twitter": "https://x.com/Jordon-Ganley-fake", "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "Thinkful", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459fc2" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dbe" - }, - "firstName": "Annora", - "lastName": "Brigge", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "FTRI 30", - "graduationYear": 2024, - "email": "abrigge17@joomla.org", - "linkedInProfile": "https://www.linkedin.com/in/Annora-Brigge-fake", - "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", - "skills": [ - "Functional Programming", - "Django", - "Concurrency", - "Containerization", - "Performance Optimization", - "C#", - "iOS Development", - "ETL (Extract, Transform, Load)", - "System Design", - "Technical Writing", - "Blockchain", - "Infrastructure as Code", - "PaaS (Platform as a Service)", - "Cloud Computing" - ], - "specializations": ["Python", "Leadership", "User Interface (UI) Design"], - "careerInformation": { - "currentPosition": { "title": "Web Developer", "company": "Uber" }, - "pastPositions": [ - { - "title": "Technical Program Manager", - "company": "Netflix", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-01-24T17:38:22.450Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fd2" - } - }, - { - "title": "AI Engineer", - "company": "Pinterest", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-04-02T07:53:35.280Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fd3" - } - } - ] - }, - "education": [ - { - "institution": "Peking University", - "degree": "Diploma Program", - "fieldOfStudy": "Communication Studies", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-01-17T23:58:52.901Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fd4" - } - }, - { - "institution": "University of Oxford", - "degree": "Bachelor of Engineering (BE)", - "fieldOfStudy": "Finance", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-06-16T20:05:00.691Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fd5" - } - } - ], - "projects": [ - { - "name": "RoboVision", - "description": "AI-powered computer vision system for object detection and recognition.", - "link": "https://github.com/username/robovision", - "_id": { - "$oid": "6674c31e95590f9fd9459fd6" - } - }, - { - "name": "CodeAnalyzer", - "description": "Static code analysis tool for detecting bugs and code quality improvements.", - "link": "https://github.com/username/codeanalyzer", - "_id": { - "$oid": "6674c31e95590f9fd9459fd7" - } - }, - { - "name": "EduTech", - "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", - "link": "https://github.com/username/edutech", - "_id": { - "$oid": "6674c31e95590f9fd9459fd8" - } - }, - { - "name": "VirtualTour", - "description": "Virtual reality tour application for immersive travel experiences.", - "link": "https://github.com/username/virtualtour", - "_id": { - "$oid": "6674c31e95590f9fd9459fd9" - } - } - ], - "personalBio": "Devoted to fostering a collaborative team environment and mentoring junior developers.", - "testimonials": [ - { - "from": "Emily Brown", - "relation": "Client at GlobalSoft Solutions", - "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd9459fda" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd9459fdb" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "6674c31e95590f9fd9459fdc" - } - }, - { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - "_id": { - "$oid": "6674c31e95590f9fd9459fdd" - } - } - ], - "socialMediaLinks": { - "blog": "https://www.Annora-Brigge-fake-blog.com", - "other": ["https://www.instagram.com/Annora-Brigge-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "The Tech Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459fd1" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dbf" - }, - "firstName": "Bethanne", - "lastName": "Osband", - "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "cohort": "PTRI 61", - "graduationYear": 2024, - "email": "bosband18@blinklist.com", - "linkedInProfile": "https://www.linkedin.com/in/Bethanne-Osband-fake", - "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", - "skills": [ - "Object-Oriented Programming", - "Microservices", - "ASP.NET", - "Docker", - "Graph Theory", - "Mobile Development", - "Edge Computing", - "Leadership", - "API Development", - "Data Warehousing", - "Node.js", - "GraphQL", - "PaaS (Platform as a Service)" - ], - "specializations": [ - "Machine Learning", - "Quantum Computing", - "Cloud Computing", - "Ruby", - "Kubernetes", - "DevOps", - "Project Management", - "Blockchain", - "Concurrency", - "PaaS (Platform as a Service)", - "Database Design", - "User Interface (UI) Design", - "Robotic Process Automation", - "Code Review", - "Technical Writing" - ], - "careerInformation": { - "currentPosition": { "title": "Technical Program Manager", "company": "Oracle" }, - "pastPositions": [ - { - "title": "Lead Software Engineer", - "company": "Uber", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-08-18T06:12:30.684Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fdf" - } - }, - { - "title": "Senior Software Engineer", - "company": "Microsoft", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-03-25T00:09:23.283Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fe0" - } - }, - { - "title": "Site Reliability Engineer", - "company": "Netflix", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-01-18T08:51:14.764Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fe1" - } - }, - { - "title": "Automation Engineer", - "company": "Zoom", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-02-11T05:16:46.443Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fe2" - } - } - ] - }, - "education": [ - { - "institution": "University of Oxford", - "degree": "Bachelor of Science (BS)", - "fieldOfStudy": "Nursing", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-12-19T01:51:50.569Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fe3" - } - } - ], - "projects": [], - "personalBio": "Skilled in UX/UI design principles, with a focus on creating intuitive and visually appealing interfaces.", - "testimonials": [ - { - "from": "Emma Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd9459fe4" - } - }, - { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", - "_id": { - "$oid": "6674c31e95590f9fd9459fe5" - } - }, - { - "from": "Noah Rodriguez", - "relation": "Product Owner at AgileSoft", - "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", - "_id": { - "$oid": "6674c31e95590f9fd9459fe6" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Bethanne-Osband-fake", - "other": ["https://www.instagram.com/Bethanne-Osband-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Flatiron School", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459fde" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dc0" - }, - "firstName": "Hedda", - "lastName": "Tallquist", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "PTRI 62", - "graduationYear": 2024, - "email": "htallquist19@cisco.com", - "linkedInProfile": "https://www.linkedin.com/in/Hedda-Tallquist-fake", - "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", - "skills": [ - "Project Management", - "IoT (Internet of Things)", - "SaaS (Software as a Service)", - "Continuous Deployment", - "Docker", - "Node.js", - "HTML", - "C#", - "Event-Driven Architecture", - "FaaS (Function as a Service)" - ], - "specializations": ["Scrum"], - "careerInformation": { - "currentPosition": { "title": "Product Manager", "company": "Google" }, - "pastPositions": [ - { - "title": "AI Engineer", - "company": "Stripe", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-03-30T13:55:51.212Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fe8" - } - }, - { - "title": "Automation Engineer", - "company": "Atlassian", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-11-28T06:24:48.112Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fe9" - } - }, - { - "title": "Junior Software Engineer", - "company": "Coinbase", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-05-14T22:10:59.957Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fea" - } - }, - { - "title": "Software Developer", - "company": "Qualcomm", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-12-10T14:12:12.482Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459feb" - } - } - ] - }, - "education": [ - { - "institution": "Kyoto University", - "degree": "Master of Business Administration (MBA)", - "fieldOfStudy": "Music", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-10-11T09:35:59.934Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fec" - } - }, - { - "institution": "Emory University", - "degree": "Juris Doctor (JD)", - "fieldOfStudy": "Theater", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-07-26T20:35:42.060Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459fed" - } - } - ], - "projects": [ - { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", - "_id": { - "$oid": "6674c31e95590f9fd9459fee" - } - }, - { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", - "_id": { - "$oid": "6674c31e95590f9fd9459fef" - } - }, - { - "name": "HomeSecurity", - "description": "Home security system with video surveillance, motion detection, and alarm integration.", - "link": "https://github.com/username/homesecurity", - "_id": { - "$oid": "6674c31e95590f9fd9459ff0" - } - } - ], - "personalBio": "Passionate about leveraging data-driven insights to optimize software performance and user engagement.", - "testimonials": [ - { - "from": "Ethan Taylor", - "relation": "Co-founder at StartupX", - "text": "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", - "_id": { - "$oid": "6674c31e95590f9fd9459ff1" - } - }, - { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - "_id": { - "$oid": "6674c31e95590f9fd9459ff2" - } - }, - { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", - "_id": { - "$oid": "6674c31e95590f9fd9459ff3" - } - }, - { - "from": "Alice Johnson", - "relation": "Manager at TechSolutions Inc.", - "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", - "_id": { - "$oid": "6674c31e95590f9fd9459ff4" - } - }, - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "6674c31e95590f9fd9459ff5" - } - } - ], - "socialMediaLinks": { "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "Fullstack Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459fe7" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dc1" - }, - "firstName": "Lynelle", - "lastName": "Grosvener", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "NYC 60", - "graduationYear": 2024, - "email": "lgrosvener1a@google.cn", - "linkedInProfile": "https://www.linkedin.com/in/Lynelle-Grosvener-fake", - "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", - "skills": [ - "C#", - "Big Data", - "NoSQL", - "Quantum Computing", - "GraphQL", - "Deep Learning", - "Continuous Deployment", - "Mobile Development", - "Serverless Architecture", - "IoT (Internet of Things)", - "AR/VR (Augmented/Virtual Reality)", - "Scrum", - "Java", - "API Development" - ], - "specializations": ["React", "JavaScript"], - "careerInformation": { - "currentPosition": { "title": "Data Engineer", "company": "EA (Electronic Arts)" }, - "pastPositions": [ - { - "title": "Principal Software Engineer", - "company": "EA (Electronic Arts)", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-05-19T12:40:43.020Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459ff7" - } - }, - { - "title": "Senior Software Engineer", - "company": "Qualcomm", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-07-06T15:37:06.023Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459ff8" - } - }, - { - "title": "Web Developer", - "company": "Oracle", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-02-01T18:10:39.392Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459ff9" - } - }, - { - "title": "Technical Lead", - "company": "Tesla", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-11-24T07:49:00.151Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459ffa" - } - }, - { - "title": "Software Developer", - "company": "Shopify", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-12-01T21:55:36.660Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459ffb" - } - } - ] - }, - "education": [ - { - "institution": "University of Oklahoma", - "degree": "Doctor of Business Administration (DBA)", - "fieldOfStudy": "Urban Planning", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-05-24T07:14:51.319Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459ffc" - } - }, - { - "institution": "Ohio State University", - "degree": "Master of Social Work (MSW)", - "fieldOfStudy": "Medicine", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-02-05T17:27:17.667Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd9459ffd" - } - } - ], - "projects": [ - { - "name": "DataCrunch", - "description": "Real-time data analytics platform for extracting insights from big data.", - "link": "https://github.com/username/datacrunch", - "_id": { - "$oid": "6674c31e95590f9fd9459ffe" - } - }, - { - "name": "SmartHomeHub", - "description": "Centralized home automation system integrating IoT devices for smart living.", - "link": "https://github.com/username/smarthomehub", - "_id": { - "$oid": "6674c31e95590f9fd9459fff" - } - }, - { - "name": "AIChatbot", - "description": "AI-powered chatbot for customer support and interactive communication.", - "link": "https://github.com/username/aichatbot", - "_id": { - "$oid": "6674c31e95590f9fd945a000" - } - } - ], - "personalBio": "Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.", - "testimonials": [], - "socialMediaLinks": { "blog": "https://www.Lynelle-Grosvener-fake-blog.com", "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "Ironhack", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd9459ff6" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dc2" - }, - "firstName": "Lenee", - "lastName": "Pethybridge", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "CTRI 4", - "graduationYear": 2024, - "email": "lpethybridge1b@chron.com", - "linkedInProfile": "https://www.linkedin.com/in/Lenee-Pethybridge-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", - "skills": ["Object-Oriented Programming"], - "specializations": [ - "Automated Testing", - "Python", - "RESTful APIs", - "Google Cloud Platform", - "Git" - ], - "careerInformation": { - "currentPosition": { "title": "Frontend Developer", "company": "Zoom" }, - "pastPositions": [ - { - "title": "Software Engineer", - "company": "Zoom", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-07-06T08:37:31.567Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a002" - } - }, - { - "title": "Test Engineer", - "company": "Airbnb", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-01-17T03:38:29.737Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a003" - } - } - ] - }, - "education": [ - { - "institution": "Ohio State University", - "degree": "Bachelor of Technology (BTech)", - "fieldOfStudy": "Information Technology", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-06-11T15:20:44.462Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a004" - } - }, - { - "institution": "University of Southern California", - "degree": "Bachelor of Business Administration (BBA)", - "fieldOfStudy": "Finance", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-12-07T23:04:24.439Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a005" - } - }, - { - "institution": "Nanyang Technological University (NTU)", - "degree": "Doctor of Medicine (MD)", - "fieldOfStudy": "Journalism", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-01-05T19:28:12.287Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a006" - } - } - ], - "projects": [ - { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", - "_id": { - "$oid": "6674c31e95590f9fd945a007" - } - }, - { - "name": "LearnHub", - "description": "Online learning platform offering courses on various subjects with interactive content.", - "link": "https://github.com/username/learnhub", - "_id": { - "$oid": "6674c31e95590f9fd945a008" - } - }, - { - "name": "LearnHub", - "description": "Online learning platform offering courses on various subjects with interactive content.", - "link": "https://github.com/username/learnhub", - "_id": { - "$oid": "6674c31e95590f9fd945a009" - } - }, - { - "name": "TravelGuide", - "description": "Interactive travel guide application providing travel tips and destination insights.", - "link": "https://github.com/username/travelguide", - "_id": { - "$oid": "6674c31e95590f9fd945a00a" - } - } - ], - "personalBio": "Adept at optimizing SQL and NoSQL databases for performance and scalability.", - "testimonials": [ - { - "from": "Isabella Clark", - "relation": "HR Manager at TechFusion", - "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", - "_id": { - "$oid": "6674c31e95590f9fd945a00b" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "6674c31e95590f9fd945a00c" - } - }, - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", - "_id": { - "$oid": "6674c31e95590f9fd945a00d" - } - }, - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd945a00e" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Lenee-Pethybridge-fake", - "blog": "https://www.Lenee-Pethybridge-fake-blog.com", - "other": [] - }, - "availabilityForNetworking": false, - "bootcampExperience": "DevMountain", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a001" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dc3" - }, - "firstName": "Ninnette", - "lastName": "Maden", - "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "cohort": "PTRI 72", - "graduationYear": 2024, - "email": "nmaden1c@sciencedirect.com", - "linkedInProfile": "https://www.linkedin.com/in/Ninnette-Maden-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", - "skills": [ - "Graph Theory", - "API Development", - "Data Science", - "HTML", - "Critical Thinking", - "Machine Learning", - "TDD (Test-Driven Development)", - "Communication Skills", - "Design Patterns", - "IoT (Internet of Things)", - "Project Management", - "Deep Learning", - "Blockchain", - "Cloud Computing" - ], - "specializations": [ - "Containerization", - "Django", - "Flask", - "Problem-Solving", - "User Interface (UI) Design", - "Scrum", - "Robotic Process Automation", - "Design Patterns", - "AWS", - "ASP.NET", - "CI/CD", - "Functional Programming", - "RESTful APIs" - ], - "careerInformation": { - "currentPosition": { "title": "Senior Software Engineer", "company": "Activision Blizzard" }, - "pastPositions": [ - { - "title": "Data Engineer", - "company": "Datadog", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-04-29T06:54:43.698Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a010" - } - }, - { - "title": "iOS Developer", - "company": "Square", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-06-04T12:47:17.988Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a011" - } - }, - { - "title": "Software Developer", - "company": "Cisco", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-08-22T00:10:19.352Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a012" - } - }, - { - "title": "DevOps Engineer", - "company": "Epic Games", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-08-25T03:19:22.871Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a013" - } - } - ] - }, - "education": [ - { - "institution": "Chinese University of Hong Kong (CUHK)", - "degree": "Diploma Program", - "fieldOfStudy": "Data Science", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-10-09T15:55:00.595Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a014" - } - }, - { - "institution": "Cornell University", - "degree": "Master of Arts (MA)", - "fieldOfStudy": "Mathematics", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-11-12T07:55:35.690Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a015" - } - } - ], - "projects": [ - { - "name": "VirtualAssistant", - "description": "Virtual assistant software for voice command-based tasks and personal assistance.", - "link": "https://github.com/username/virtualassistant", - "_id": { - "$oid": "6674c31e95590f9fd945a016" - } - }, - { - "name": "EduTech", - "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", - "link": "https://github.com/username/edutech", - "_id": { - "$oid": "6674c31e95590f9fd945a017" - } - }, - { - "name": "SmartFarm", - "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", - "link": "https://github.com/username/smartfarm", - "_id": { - "$oid": "6674c31e95590f9fd945a018" - } - }, - { - "name": "SmartCarPark", - "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", - "link": "https://github.com/username/smartcarpark", - "_id": { - "$oid": "6674c31e95590f9fd945a019" - } - }, - { - "name": "RoboVision", - "description": "AI-powered computer vision system for object detection and recognition.", - "link": "https://github.com/username/robovision", - "_id": { - "$oid": "6674c31e95590f9fd945a01a" - } - } - ], - "personalBio": "Experienced in Agile methodologies, with a track record of delivering projects on time and within budget.", - "testimonials": [ - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "6674c31e95590f9fd945a01b" - } - }, - { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - "_id": { - "$oid": "6674c31e95590f9fd945a01c" - } - }, - { - "from": "Liam Harris", - "relation": "Lead Developer at CloudTech", - "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd945a01d" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "6674c31e95590f9fd945a01e" - } - } - ], - "socialMediaLinks": { - "blog": "https://www.Ninnette-Maden-fake-blog.com", - "other": ["https://www.instagram.com/Ninnette-Maden-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Tech Elevator", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a00f" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dc4" - }, - "firstName": "Jolynn", - "lastName": "Catenot", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "cohort": "LA 14", - "graduationYear": 2024, - "email": "jcatenot1d@oakley.com", - "linkedInProfile": "https://www.linkedin.com/in/Jolynn-Catenot-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", - "skills": ["PaaS (Platform as a Service)", "C++", "Python"], - "specializations": [ - "Machine Learning", - "Python", - "Unit Testing", - "API Integration", - "Git", - "iOS Development", - "Django", - "Containerization", - "Refactoring", - "Flask", - "Legacy Code Management", - "Data Warehousing", - "DevOps", - "Software Architecture", - "NoSQL", - "GraphQL", - "Cloud Computing" - ], - "careerInformation": { - "currentPosition": { "title": "Lead Software Engineer", "company": "Cisco" }, - "pastPositions": [ - { - "title": "Full Stack Developer", - "company": "IBM", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-02-10T09:21:35.479Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a020" - } - }, - { - "title": "Software Engineer", - "company": "Tesla", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-08-01T22:00:04.487Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a021" - } - }, - { - "title": "Technical Program Manager", - "company": "IBM", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-10-14T21:58:46.948Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a022" - } - }, - { - "title": "Technical Lead", - "company": "Shopify", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-08-26T07:06:21.567Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a023" - } - }, - { - "title": "Mobile Developer", - "company": "Red Hat", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-01-02T04:26:04.032Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a024" - } - } - ] - }, - "education": [ - { - "institution": "University of Tennessee", - "degree": "Master of Public Health (MPH)", - "fieldOfStudy": "Pharmacy", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-10-31T10:30:20.021Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a025" - } - }, - { - "institution": "University of Hong Kong (HKU)", - "degree": "Master of Education (MEd)", - "fieldOfStudy": "Civil Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-02-18T07:24:48.461Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a026" - } - }, - { - "institution": "Shanghai Jiao Tong University", - "degree": "Master of Public Health (MPH)", - "fieldOfStudy": "Mechanical Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-05-23T21:43:37.385Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a027" - } - } - ], - "projects": [ - { - "name": "NetPlanner", - "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", - "link": "https://github.com/username/netplanner", - "_id": { - "$oid": "6674c31e95590f9fd945a028" - } - }, - { - "name": "HomeSecurity", - "description": "Home security system with video surveillance, motion detection, and alarm integration.", - "link": "https://github.com/username/homesecurity", - "_id": { - "$oid": "6674c31e95590f9fd945a029" - } - } - ], - "personalBio": "Adept at optimizing SQL and NoSQL databases for performance and scalability.", - "testimonials": [ - { - "from": "Olivia White", - "relation": "Tech Lead at Cloud Innovations", - "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", - "_id": { - "$oid": "6674c31e95590f9fd945a02a" - } - }, - { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - "_id": { - "$oid": "6674c31e95590f9fd945a02b" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd945a02c" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Jolynn-Catenot-fake", - "other": ["https://www.instagram.com/Jolynn-Catenot-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Le Wagon", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a01f" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dc5" - }, - "firstName": "Marabel", - "lastName": "Puleston", - "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "cohort": "WCRI 77", - "graduationYear": 2024, - "email": "mpuleston1e@utexas.edu", - "linkedInProfile": "https://www.linkedin.com/in/Marabel-Puleston-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", - "skills": ["SaaS (Software as a Service)", "Node.js"], - "specializations": [ - "Django", - "FaaS (Function as a Service)", - "Graph Databases", - "Pair Programming", - "HTML", - "Communication Skills", - "Data Warehousing", - "Natural Language Processing", - "Data Visualization", - "C#", - "Code Review", - "PaaS (Platform as a Service)", - "CSS", - "Blockchain" - ], - "careerInformation": { - "currentPosition": { "title": "Cloud Engineer", "company": "Tesla" }, - "pastPositions": [ - { - "title": "Data Scientist", - "company": "Stripe", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-09-10T10:52:39.879Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a02e" - } - }, - { - "title": "QA Engineer", - "company": "Activision Blizzard", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-03-09T13:59:50.810Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a02f" - } - }, - { - "title": "Principal Software Engineer", - "company": "VMware", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-02-18T22:10:01.529Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a030" - } - }, - { - "title": "Data Engineer", - "company": "Facebook", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-01-05T06:12:18.497Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a031" - } - } - ] - }, - "education": [ - { - "institution": "Chinese University of Hong Kong (CUHK)", - "degree": "Master of Fine Arts (MFA)", - "fieldOfStudy": "Biomedical Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-10-13T18:40:39.654Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a032" - } - }, - { - "institution": "University of California, Santa Barbara (UCSB)", - "degree": "Doctoral Degree", - "fieldOfStudy": "Film Studies", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-05-23T07:34:50.851Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a033" - } - }, - { - "institution": "Harvard University", - "degree": "Master of Education (MEd)", - "fieldOfStudy": "Biomedical Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-03-27T09:59:16.444Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a034" - } - } - ], - "projects": [ - { - "name": "SmartFarm", - "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", - "link": "https://github.com/username/smartfarm", - "_id": { - "$oid": "6674c31e95590f9fd945a035" - } - }, - { - "name": "SocialConnect", - "description": "Social media integration platform for managing multiple social accounts.", - "link": "https://github.com/username/socialconnect", - "_id": { - "$oid": "6674c31e95590f9fd945a036" - } - }, - { - "name": "VirtualMarket", - "description": "Virtual reality shopping experience allowing users to browse and buy products online.", - "link": "https://github.com/username/virtualmarket", - "_id": { - "$oid": "6674c31e95590f9fd945a037" - } - } - ], - "personalBio": "Driven by a curiosity for innovation and a commitment to delivering high-quality software solutions.", - "testimonials": [ - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "6674c31e95590f9fd945a038" - } - }, - { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - "_id": { - "$oid": "6674c31e95590f9fd945a039" - } - }, - { - "from": "Emily Brown", - "relation": "Client at GlobalSoft Solutions", - "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd945a03a" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd945a03b" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Marabel-Puleston-fake", - "blog": "https://www.Marabel-Puleston-fake-blog.com", - "other": [] - }, - "availabilityForNetworking": false, - "bootcampExperience": "CareerFoundry", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a02d" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dc6" - }, - "firstName": "Bryn", - "lastName": "Arias", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "WCRI 15", - "graduationYear": 2024, - "email": "barias1f@flavors.me", - "linkedInProfile": "https://www.linkedin.com/in/Bryn-Arias-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", - "skills": [], - "specializations": [ - "React", - "GraphQL", - "Vue.js", - "Edge Computing", - "Machine Learning", - "C++", - "ASP.NET", - "Java", - "Parallel Computing", - "Deep Learning", - "Reactive Programming", - "FaaS (Function as a Service)", - "Containerization", - "Laravel", - "Collaboration", - "TDD (Test-Driven Development)" - ], - "careerInformation": { - "currentPosition": { "title": "Mobile Developer", "company": "HubSpot" }, - "pastPositions": [ - { - "title": "Lead Software Engineer", - "company": "Palantir", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-02-17T11:31:02.577Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a03d" - } - }, - { - "title": "Data Scientist", - "company": "Atlassian", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-06-08T03:27:57.500Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a03e" - } - }, - { - "title": "Principal Software Engineer", - "company": "Okta", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-01-01T21:05:23.832Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a03f" - } - }, - { - "title": "Lead Software Engineer", - "company": "Slack", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-07-03T03:29:23.194Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a040" - } - } - ] - }, - "education": [ - { - "institution": "University of Virginia", - "degree": "Master of Education (MEd)", - "fieldOfStudy": "Civil Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-12-08T22:16:04.526Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a041" - } - }, - { - "institution": "University of New South Wales (UNSW Sydney)", - "degree": "Master of Business Administration (MBA)", - "fieldOfStudy": "Aerospace Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-02-02T21:17:41.626Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a042" - } - } - ], - "projects": [ - { - "name": "RoboVision", - "description": "AI-powered computer vision system for object detection and recognition.", - "link": "https://github.com/username/robovision", - "_id": { - "$oid": "6674c31e95590f9fd945a043" - } - }, - { - "name": "CloudStorage", - "description": "Cloud storage service with file synchronization and sharing capabilities.", - "link": "https://github.com/username/cloudstorage", - "_id": { - "$oid": "6674c31e95590f9fd945a044" - } - }, - { - "name": "EventPlanner", - "description": "Event management and planning software for organizing and coordinating events.", - "link": "https://github.com/username/eventplanner", - "_id": { - "$oid": "6674c31e95590f9fd945a045" - } - }, - { - "name": "EcoTech", - "description": "Environmental monitoring and conservation app with real-time data visualization.", - "link": "https://github.com/username/ecotech", - "_id": { - "$oid": "6674c31e95590f9fd945a046" - } - } - ], - "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", - "testimonials": [ - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd945a047" - } - }, - { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", - "_id": { - "$oid": "6674c31e95590f9fd945a048" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd945a049" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "6674c31e95590f9fd945a04a" - } - } - ], - "socialMediaLinks": { "blog": "https://www.Bryn-Arias-fake-blog.com", "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "Lambda School", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a03c" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dc7" - }, - "firstName": "Arni", - "lastName": "Jertz", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "NYC 0", - "graduationYear": 2024, - "email": "ajertz1g@tuttocitta.it", - "linkedInProfile": "https://www.linkedin.com/in/Arni-Jertz-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", - "skills": [ - "Serverless Architecture", - "SQL", - "Event-Driven Architecture", - "Robotic Process Automation", - "Agile Development", - "Natural Language Processing", - "Technical Writing", - "Continuous Deployment", - "Quantum Computing", - "Node.js", - "Mobile Development" - ], - "specializations": [ - "Unit Testing", - "SaaS (Software as a Service)", - "Angular", - "Deep Learning", - "Java", - "RESTful APIs", - "JavaScript", - "PaaS (Platform as a Service)", - "Agile Development", - "Serverless Architecture", - "React", - "Algorithm Design", - "User Interface (UI) Design", - "Project Management", - "API Development", - "Edge Computing" - ], - "careerInformation": { - "currentPosition": { "title": "Cloud Engineer", "company": "VMware" }, - "pastPositions": [ - { - "title": "DevOps Engineer", - "company": "GitHub", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-10-31T20:05:15.306Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a04c" - } - }, - { - "title": "Test Engineer", - "company": "Datadog", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-09-23T14:34:12.246Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a04d" - } - }, - { - "title": "Mobile Developer", - "company": "Netflix", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-01-23T12:58:28.212Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a04e" - } - } - ] - }, - "education": [ - { - "institution": "University of Pittsburgh", - "degree": "Master of Technology (MTech)", - "fieldOfStudy": "Economics", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-12-25T13:39:41.095Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a04f" - } - } - ], - "projects": [ - { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", - "_id": { - "$oid": "6674c31e95590f9fd945a050" - } - }, - { - "name": "TourismApp", - "description": "Mobile application for tourists providing travel guides and local recommendations.", - "link": "https://github.com/username/tourismapp", - "_id": { - "$oid": "6674c31e95590f9fd945a051" - } - }, - { - "name": "SmartFarm", - "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", - "link": "https://github.com/username/smartfarm", - "_id": { - "$oid": "6674c31e95590f9fd945a052" - } - } - ], - "personalBio": "Passionate about building inclusive and accessible software that improves people's lives.", - "testimonials": [ - { - "from": "Alice Johnson", - "relation": "Manager at TechSolutions Inc.", - "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", - "_id": { - "$oid": "6674c31e95590f9fd945a053" - } - }, - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd945a054" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "6674c31e95590f9fd945a055" - } - }, - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", - "_id": { - "$oid": "6674c31e95590f9fd945a056" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd945a057" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Arni-Jertz-fake", - "blog": "https://www.Arni-Jertz-fake-blog.com", - "other": ["https://www.instagram.com/Arni-Jertz-fake"] - }, - "availabilityForNetworking": false, - "bootcampExperience": "Ironhack", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a04b" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dc8" - }, - "firstName": "Maegan", - "lastName": "Mulhall", - "cohort": "FTRI 66", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a058" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dc9" - }, - "firstName": "Nicolai", - "lastName": "Brugsma", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "FTRI 15", - "graduationYear": 2024, - "email": "nbrugsma1i@4shared.com", - "linkedInProfile": "https://www.linkedin.com/in/Nicolai-Brugsma-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", - "skills": ["ASP.NET", "Reactive Programming"], - "specializations": [ - "C#", - "DevOps", - "Algorithm Design", - "Ruby", - "Software Architecture", - "Pair Programming" - ], - "careerInformation": { - "currentPosition": { "title": "Security Engineer", "company": "Uber" }, - "pastPositions": [ - { - "title": "Data Scientist", - "company": "Okta", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-12-04T10:55:57.499Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a05a" - } - }, - { - "title": "DevOps Engineer", - "company": "Salesforce", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-04-03T09:31:01.690Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a05b" - } - }, - { - "title": "Data Scientist", - "company": "Amazon", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-06-30T20:15:13.373Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a05c" - } - }, - { - "title": "Test Engineer", - "company": "Atlassian", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-02-09T14:31:05.409Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a05d" - } - }, - { - "title": "Data Scientist", - "company": "Atlassian", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-05-30T17:58:48.506Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a05e" - } - } - ] - }, - "education": [ - { - "institution": "Georgetown University", - "degree": "Doctor of Medicine (MD)", - "fieldOfStudy": "Urban Planning", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-01-16T14:13:42.065Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a05f" - } - }, - { - "institution": "Princeton University", - "degree": "Doctor of Philosophy (PhD)", - "fieldOfStudy": "Biomedical Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-12-23T10:39:27.798Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a060" - } - }, - { - "institution": "Yale University", - "degree": "Master of Public Administration (MPA)", - "fieldOfStudy": "Management", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-02-22T09:35:08.922Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a061" - } - } - ], - "projects": [], - "personalBio": "Driven by a passion for problem-solving and a commitment to continuous professional development.", - "testimonials": [ - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd945a062" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd945a063" - } - }, - { - "from": "Liam Harris", - "relation": "Lead Developer at CloudTech", - "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd945a064" - } - } - ], - "socialMediaLinks": { "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "General Assembly", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a059" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dca" - }, - "firstName": "Bryan", - "lastName": "Heffy", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "FTRI 65", - "graduationYear": 2024, - "email": "bheffy1j@cbsnews.com", - "linkedInProfile": "https://www.linkedin.com/in/Bryan-Heffy-fake", - "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", - "skills": [ - "ASP.NET", - "Ruby", - "Infrastructure as Code", - "Serverless Architecture", - "Graph Databases", - "Code Review", - "Flask", - "Cloud Computing", - "DevOps", - "CI/CD", - "Version Control", - "Communication Skills", - "Java", - "Laravel", - "SaaS (Software as a Service)", - "User Experience (UX) Design", - "Agile Development", - "Event-Driven Architecture" - ], - "specializations": [ - "API Development", - "Natural Language Processing", - "Object-Oriented Programming", - "User Interface (UI) Design", - "HTML", - "Android Development", - "Deep Learning", - "Edge Computing", - "Node.js", - "C++", - "Mobile Development", - "Performance Optimization", - "NoSQL" - ], - "careerInformation": { - "currentPosition": { "title": "Data Scientist", "company": "Adobe" }, - "pastPositions": [ - { - "title": "DevOps Engineer", - "company": "Okta", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-05-29T06:11:23.758Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a066" - } - }, - { - "title": "Machine Learning Engineer", - "company": "Twitter", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-11-07T19:52:47.058Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a067" - } - }, - { - "title": "Technical Lead", - "company": "Lyft", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-11-23T10:55:18.338Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a068" - } - }, - { - "title": "Product Manager", - "company": "Salesforce", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-02-06T21:25:18.499Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a069" - } - } - ] - }, - "education": [], - "projects": [], - "personalBio": "Focused on delivering user-centric solutions that address real-world needs and challenges.", - "testimonials": [ - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "6674c31e95590f9fd945a06a" - } - }, - { - "from": "David Smith", - "relation": "Colleague at InnovateTech Ltd.", - "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", - "_id": { - "$oid": "6674c31e95590f9fd945a06b" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Bryan-Heffy-fake", - "other": ["https://www.instagram.com/Bryan-Heffy-fake"] - }, - "availabilityForNetworking": false, - "bootcampExperience": "Nucamp", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a065" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dcb" - }, - "firstName": "Donavon", - "lastName": "Osichev", - "cohort": "FTRI 50", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a06c" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dcc" - }, - "firstName": "Kennan", - "lastName": "Dugget", - "cohort": "ECRI 79", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a06d" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dcd" - }, - "firstName": "Paton", - "lastName": "Climance", - "cohort": "WCRI 70", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a06e" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dce" - }, - "firstName": "Caitrin", - "lastName": "McAllister", - "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "cohort": "PTRI 27", - "graduationYear": 2024, - "email": "cmcallister1n@ft.com", - "linkedInProfile": "https://www.linkedin.com/in/Caitrin-McAllister-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", - "skills": ["Technical Writing"], - "specializations": [ - "GraphQL", - "Edge Computing", - "ETL (Extract, Transform, Load)", - "Docker", - "FaaS (Function as a Service)", - "iOS Development", - "Mobile Development" - ], - "careerInformation": { - "currentPosition": { "title": "Frontend Developer", "company": "GitHub" }, - "pastPositions": [ - { - "title": "Software Engineer", - "company": "Shopify", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-07-16T05:39:06.444Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a070" - } - }, - { - "title": "Frontend Developer", - "company": "Robinhood", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-02-25T18:42:37.000Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a071" - } - }, - { - "title": "Technical Lead", - "company": "Shopify", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-09-11T06:52:56.908Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a072" - } - }, - { - "title": "DevOps Engineer", - "company": "DoorDash", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-06-07T18:28:46.924Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a073" - } - } - ] - }, - "education": [], - "projects": [], - "personalBio": "Skilled in working with cross-functional teams to deliver innovative software solutions that exceed expectations.", - "testimonials": [ - { - "from": "David Smith", - "relation": "Colleague at InnovateTech Ltd.", - "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", - "_id": { - "$oid": "6674c31e95590f9fd945a074" - } - }, - { - "from": "Emma Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd945a075" - } - } - ], - "socialMediaLinks": { "twitter": "https://x.com/Caitrin-McAllister-fake", "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "The Tech Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a06f" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dcf" - }, - "firstName": "Sephira", - "lastName": "Kaming", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "LA 65", - "graduationYear": 2024, - "email": "skaming1o@about.me", - "linkedInProfile": "https://www.linkedin.com/in/Sephira-Kaming-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", - "skills": [ - "Machine Learning", - "Cybersecurity", - "ETL (Extract, Transform, Load)", - "SaaS (Software as a Service)", - "Spring Boot", - "RESTful APIs" - ], - "specializations": [ - "Project Management", - "HTML", - "Vue.js", - "WebSockets", - "User Interface (UI) Design", - "Quantum Computing", - "Data Visualization", - "iOS Development", - "AWS", - "BDD (Behavior-Driven Development)", - "Java", - "ETL (Extract, Transform, Load)", - "Google Cloud Platform", - "Mobile Development", - "Time Management" - ], - "careerInformation": { - "currentPosition": { "title": "Cloud Engineer", "company": "Intel" }, - "pastPositions": [ - { - "title": "Data Scientist", - "company": "EA (Electronic Arts)", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-10-02T14:00:59.331Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a077" - } - }, - { - "title": "Data Scientist", - "company": "Google", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-12-02T07:51:37.339Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a078" - } - }, - { - "title": "Software Engineer", - "company": "Twilio", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-11-09T07:14:41.105Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a079" - } - } - ] - }, - "education": [ - { - "institution": "University of Wisconsin-Madison", - "degree": "Doctor of Veterinary Medicine (DVM)", - "fieldOfStudy": "Philosophy", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-02-05T05:37:23.289Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a07a" - } - }, - { - "institution": "Northwestern University", - "degree": "Bachelor of Business Administration (BBA)", - "fieldOfStudy": "Mechanical Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-04-29T03:04:16.105Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a07b" - } - }, - { - "institution": "Harvard University", - "degree": "Doctor of Business Administration (DBA)", - "fieldOfStudy": "Graphic Design", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-08-23T07:33:21.887Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a07c" - } - } - ], - "projects": [ - { - "name": "DataCrunch", - "description": "Real-time data analytics platform for extracting insights from big data.", - "link": "https://github.com/username/datacrunch", - "_id": { - "$oid": "6674c31e95590f9fd945a07d" - } - }, - { - "name": "VoiceAssistant", - "description": "Voice-controlled personal assistant using natural language processing.", - "link": "https://github.com/username/voiceassistant", - "_id": { - "$oid": "6674c31e95590f9fd945a07e" - } - }, - { - "name": "CryptoTrack", - "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", - "link": "https://github.com/username/cryptotrack", - "_id": { - "$oid": "6674c31e95590f9fd945a07f" - } - }, - { - "name": "HealthLink", - "description": "Telemedicine platform connecting patients with healthcare providers remotely.", - "link": "https://github.com/username/healthlink", - "_id": { - "$oid": "6674c31e95590f9fd945a080" - } - } - ], - "personalBio": "Detail-oriented developer with a strong foundation in algorithms and data structures.", - "testimonials": [ - { - "from": "Emma Thompson", - "relation": "Manager at DataTech Solutions", - "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", - "_id": { - "$oid": "6674c31e95590f9fd945a081" - } - }, - { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", - "_id": { - "$oid": "6674c31e95590f9fd945a082" - } - }, - { - "from": "Alice Johnson", - "relation": "Manager at TechSolutions Inc.", - "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", - "_id": { - "$oid": "6674c31e95590f9fd945a083" - } - }, - { - "from": "Emma Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd945a084" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd945a085" - } - } - ], - "socialMediaLinks": { - "blog": "https://www.Sephira-Kaming-fake-blog.com", - "other": ["https://www.instagram.com/Sephira-Kaming-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "DevMountain", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a076" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dd0" - }, - "firstName": "Fraser", - "lastName": "Londsdale", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "PTRI 34", - "graduationYear": 2024, - "email": "flondsdale1p@freewebs.com", - "linkedInProfile": "https://www.linkedin.com/in/Fraser-Londsdale-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", - "skills": ["Time Management", "Azure", "Spring Boot"], - "specializations": [ - "Deep Learning", - "Flask", - "Robotic Process Automation", - "Python", - "Ruby", - "Mobile Development", - "Infrastructure as Code", - "AWS", - "SaaS (Software as a Service)", - "TDD (Test-Driven Development)", - "Java" - ], - "careerInformation": { - "currentPosition": { "title": "Mobile Developer", "company": "DocuSign" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "California Institute of Technology (Caltech)", - "degree": "Bachelor of Fine Arts (BFA)", - "fieldOfStudy": "Biomedical Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-01-22T21:22:55.014Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a087" - } - } - ], - "projects": [ - { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", - "_id": { - "$oid": "6674c31e95590f9fd945a088" - } - }, - { - "name": "VirtualMarket", - "description": "Virtual reality shopping experience allowing users to browse and buy products online.", - "link": "https://github.com/username/virtualmarket", - "_id": { - "$oid": "6674c31e95590f9fd945a089" - } - }, - { - "name": "SecureBackup", - "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", - "link": "https://github.com/username/securebackup", - "_id": { - "$oid": "6674c31e95590f9fd945a08a" - } - }, - { - "name": "CryptoWallet", - "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", - "link": "https://github.com/username/cryptowallet", - "_id": { - "$oid": "6674c31e95590f9fd945a08b" - } - } - ], - "personalBio": "Innovative thinker with a track record of proposing and implementing creative solutions to technical challenges.", - "testimonials": [ - { - "from": "Noah Rodriguez", - "relation": "Product Owner at AgileSoft", - "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", - "_id": { - "$oid": "6674c31e95590f9fd945a08c" - } - }, - { - "from": "Noah Rodriguez", - "relation": "Product Owner at AgileSoft", - "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", - "_id": { - "$oid": "6674c31e95590f9fd945a08d" - } - }, - { - "from": "Noah Rodriguez", - "relation": "Product Owner at AgileSoft", - "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", - "_id": { - "$oid": "6674c31e95590f9fd945a08e" - } - }, - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd945a08f" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd945a090" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Fraser-Londsdale-fake", - "blog": "https://www.Fraser-Londsdale-fake-blog.com", - "other": [] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Nucamp", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a086" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dd1" - }, - "firstName": "Alyssa", - "lastName": "Bangham", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "cohort": "CTRI 96", - "graduationYear": 2024, - "email": "abangham1q@usgs.gov", - "linkedInProfile": "https://www.linkedin.com/in/Alyssa-Bangham-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": [ - "Google Cloud Platform", - "Automated Testing", - "Flask", - "API Development", - "Laravel", - "Python", - "FaaS (Function as a Service)" - ], - "specializations": [ - "JavaScript", - "Containerization", - "Design Patterns", - "Data Warehousing", - "User Interface (UI) Design", - "CI/CD", - "Graph Theory", - "Big Data", - "Code Review" - ], - "careerInformation": { - "currentPosition": { "title": "QA Engineer", "company": "Robinhood" }, - "pastPositions": [ - { - "title": "Backend Developer", - "company": "Red Hat", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-03-21T17:46:34.279Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a092" - } - }, - { - "title": "Security Engineer", - "company": "Dropbox", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-05-07T03:33:06.274Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a093" - } - } - ] - }, - "education": [ - { - "institution": "University of California, Los Angeles (UCLA)", - "degree": "Bachelor of Fine Arts (BFA)", - "fieldOfStudy": "Statistics", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-02-17T22:44:31.250Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a094" - } - }, - { - "institution": "Fudan University", - "degree": "Master of Technology (MTech)", - "fieldOfStudy": "Sociology", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-08-29T21:15:35.972Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a095" - } - } - ], - "projects": [ - { - "name": "DataCrunch", - "description": "Real-time data analytics platform for extracting insights from big data.", - "link": "https://github.com/username/datacrunch", - "_id": { - "$oid": "6674c31e95590f9fd945a096" - } - }, - { - "name": "DataCrunch", - "description": "Real-time data analytics platform for extracting insights from big data.", - "link": "https://github.com/username/datacrunch", - "_id": { - "$oid": "6674c31e95590f9fd945a097" - } - }, - { - "name": "VoiceAssistant", - "description": "Voice-controlled personal assistant using natural language processing.", - "link": "https://github.com/username/voiceassistant", - "_id": { - "$oid": "6674c31e95590f9fd945a098" - } - }, - { - "name": "TravelGuide", - "description": "Interactive travel guide application providing travel tips and destination insights.", - "link": "https://github.com/username/travelguide", - "_id": { - "$oid": "6674c31e95590f9fd945a099" - } - } - ], - "personalBio": "Experienced in international collaboration and remote work, with a strong appreciation for cultural diversity.", - "testimonials": [ - { - "from": "Emma Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd945a09a" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd945a09b" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "6674c31e95590f9fd945a09c" - } - }, - { - "from": "Noah Rodriguez", - "relation": "Product Owner at AgileSoft", - "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", - "_id": { - "$oid": "6674c31e95590f9fd945a09d" - } - }, - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "6674c31e95590f9fd945a09e" - } - } - ], - "socialMediaLinks": { "other": ["https://www.instagram.com/Alyssa-Bangham-fake"] }, - "availabilityForNetworking": true, - "bootcampExperience": "Flatiron School", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a091" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dd2" - }, - "firstName": "Clarette", - "lastName": "Alcock", - "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "cohort": "FTRI 32", - "graduationYear": 2024, - "email": "calcock1r@amazonaws.com", - "linkedInProfile": "https://www.linkedin.com/in/Clarette-Alcock-fake", - "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", - "skills": [ - "System Design", - "Android Development", - "Natural Language Processing", - "GraphQL", - "Refactoring" - ], - "specializations": [ - "TDD (Test-Driven Development)", - "Problem-Solving", - "Natural Language Processing", - "Software Architecture", - "Blockchain", - "Microservices", - "Robotic Process Automation", - "System Design", - "Azure", - "Performance Optimization", - "Quantum Computing", - "Data Science", - "Algorithm Design", - "iOS Development", - "Spring Boot" - ], - "careerInformation": { - "currentPosition": { "title": "Product Manager", "company": "Asana" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "Pennsylvania State University", - "degree": "High School Diploma", - "fieldOfStudy": "Sociology", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-12-27T23:03:27.760Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0a0" - } - }, - { - "institution": "Fudan University", - "degree": "Certificate Program", - "fieldOfStudy": "Business Administration", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-12-10T07:09:04.166Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0a1" - } - }, - { - "institution": "University of Vermont", - "degree": "Master's Degree", - "fieldOfStudy": "History", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-05-06T12:08:45.479Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0a2" - } - } - ], - "projects": [ - { - "name": "EventPlanner", - "description": "Event management and planning software for organizing and coordinating events.", - "link": "https://github.com/username/eventplanner", - "_id": { - "$oid": "6674c31e95590f9fd945a0a3" - } - }, - { - "name": "EcoTech", - "description": "Environmental monitoring and conservation app with real-time data visualization.", - "link": "https://github.com/username/ecotech", - "_id": { - "$oid": "6674c31e95590f9fd945a0a4" - } - }, - { - "name": "TravelGuide", - "description": "Interactive travel guide application providing travel tips and destination insights.", - "link": "https://github.com/username/travelguide", - "_id": { - "$oid": "6674c31e95590f9fd945a0a5" - } - } - ], - "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", - "testimonials": [ - { - "from": "Emily Brown", - "relation": "Client at GlobalSoft Solutions", - "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd945a0a6" - } - }, - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd945a0a7" - } - } - ], - "socialMediaLinks": { - "blog": "https://www.Clarette-Alcock-fake-blog.com", - "other": ["https://www.instagram.com/Clarette-Alcock-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Thinkful", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a09f" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dd3" - }, - "firstName": "Lizbeth", - "lastName": "France", - "cohort": "FTRI 61", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a0a8" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dd4" - }, - "firstName": "Abramo", - "lastName": "Sparkwell", - "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "cohort": "NYC 26", - "graduationYear": 2024, - "email": "asparkwell1t@berkeley.edu", - "linkedInProfile": "https://www.linkedin.com/in/Abramo-Sparkwell-fake", - "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", - "skills": ["Leadership"], - "specializations": [ - "Big Data", - "CI/CD", - "Mobile Development", - "Scrum", - "AWS", - "Cloud Computing", - "Collaboration", - "Data Visualization", - "Java", - "Containerization", - "Ruby", - "AR/VR (Augmented/Virtual Reality)", - "SQL", - "User Interface (UI) Design" - ], - "careerInformation": { - "currentPosition": { "title": "Principal Software Engineer", "company": "Dropbox" }, - "pastPositions": [] - }, - "education": [ - { - "institution": "University of Colorado Boulder", - "degree": "Bachelor's Degree", - "fieldOfStudy": "Fine Arts", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-05-22T16:36:53.382Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0aa" - } - }, - { - "institution": "University of Houston", - "degree": "Bachelor of Arts (BA)", - "fieldOfStudy": "Fine Arts", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-02-12T00:31:55.296Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0ab" - } - } - ], - "projects": [ - { - "name": "HomeSecurity", - "description": "Home security system with video surveillance, motion detection, and alarm integration.", - "link": "https://github.com/username/homesecurity", - "_id": { - "$oid": "6674c31e95590f9fd945a0ac" - } - }, - { - "name": "CodeAnalyzer", - "description": "Static code analysis tool for detecting bugs and code quality improvements.", - "link": "https://github.com/username/codeanalyzer", - "_id": { - "$oid": "6674c31e95590f9fd945a0ad" - } - }, - { - "name": "EcoTech", - "description": "Environmental monitoring and conservation app with real-time data visualization.", - "link": "https://github.com/username/ecotech", - "_id": { - "$oid": "6674c31e95590f9fd945a0ae" - } - } - ], - "personalBio": "Focused on delivering user-centric solutions that address real-world needs and challenges.", - "testimonials": [], - "socialMediaLinks": { - "twitter": "https://x.com/Abramo-Sparkwell-fake", - "blog": "https://www.Abramo-Sparkwell-fake-blog.com", - "other": ["https://www.instagram.com/Abramo-Sparkwell-fake"] - }, - "availabilityForNetworking": false, - "bootcampExperience": "App Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a0a9" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dd5" - }, - "firstName": "Darb", - "lastName": "Coen", - "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "cohort": "ECRI 37", - "graduationYear": 2024, - "email": "dcoen1u@prlog.org", - "linkedInProfile": "https://www.linkedin.com/in/Darb-Coen-fake", - "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", - "skills": [ - "Edge Computing", - "Refactoring", - "User Interface (UI) Design", - "AWS", - "Problem-Solving", - "Kubernetes", - "Vue.js" - ], - "specializations": ["C++", "User Experience (UX) Design", "CI/CD", "Algorithm Design", "Git"], - "careerInformation": { - "currentPosition": { "title": "QA Engineer", "company": "DoorDash" }, - "pastPositions": [ - { - "title": "Software Architect", - "company": "Spotify", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-09-20T08:51:23.231Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0b0" - } - }, - { - "title": "Software Architect", - "company": "Robinhood", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-07-19T23:28:24.625Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0b1" - } - } - ] - }, - "education": [ - { - "institution": "Georgetown University", - "degree": "Master of Technology (MTech)", - "fieldOfStudy": "Sociology", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-10-21T03:54:18.247Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0b2" - } - }, - { - "institution": "University of Utah", - "degree": "Doctor of Veterinary Medicine (DVM)", - "fieldOfStudy": "Biochemistry", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-03-02T07:29:31.284Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0b3" - } - }, - { - "institution": "University of Texas at Austin", - "degree": "Doctor of Philosophy (PhD)", - "fieldOfStudy": "Accounting", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-08-12T17:24:30.841Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0b4" - } - } - ], - "projects": [ - { - "name": "ARNavigation", - "description": "Augmented reality navigation app for real-time directions and location-based information.", - "link": "https://github.com/username/arnavigation", - "_id": { - "$oid": "6674c31e95590f9fd945a0b5" - } - }, - { - "name": "VirtualTour", - "description": "Virtual reality tour application for immersive travel experiences.", - "link": "https://github.com/username/virtualtour", - "_id": { - "$oid": "6674c31e95590f9fd945a0b6" - } - }, - { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", - "_id": { - "$oid": "6674c31e95590f9fd945a0b7" - } - }, - { - "name": "SmartCity", - "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", - "link": "https://github.com/username/smartcity", - "_id": { - "$oid": "6674c31e95590f9fd945a0b8" - } - } - ], - "personalBio": "Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.", - "testimonials": [ - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd945a0b9" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd945a0ba" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Darb-Coen-fake", - "other": ["https://www.instagram.com/Darb-Coen-fake"] - }, - "availabilityForNetworking": false, - "bootcampExperience": "Flatiron School", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a0af" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dd6" - }, - "firstName": "Gusty", - "lastName": "Besnardeau", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "cohort": "CTRI 30", - "graduationYear": 2024, - "email": "gbesnardeau1v@themeforest.net", - "linkedInProfile": "https://www.linkedin.com/in/Gusty-Besnardeau-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", - "skills": [], - "specializations": [], - "careerInformation": { - "currentPosition": { "title": "Data Engineer", "company": "Atlassian" }, - "pastPositions": [ - { - "title": "Software Developer", - "company": "Facebook", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-12-24T10:46:01.539Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0bc" - } - }, - { - "title": "Backend Developer", - "company": "Activision Blizzard", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-07-28T03:02:03.937Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0bd" - } - }, - { - "title": "Cloud Engineer", - "company": "Stripe", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-09-07T19:01:30.142Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0be" - } - } - ] - }, - "education": [ - { - "institution": "Columbia University", - "degree": "Bachelor of Arts (BA)", - "fieldOfStudy": "Pharmacy", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-08-03T21:23:08.155Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0bf" - } - } - ], - "projects": [ - { - "name": "HealthMonitor", - "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", - "link": "https://github.com/username/healthmonitor", - "_id": { - "$oid": "6674c31e95590f9fd945a0c0" - } - }, - { - "name": "AIChatbot", - "description": "AI-powered chatbot for customer support and interactive communication.", - "link": "https://github.com/username/aichatbot", - "_id": { - "$oid": "6674c31e95590f9fd945a0c1" - } - }, - { - "name": "AIAssistant", - "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", - "link": "https://github.com/username/aiassistant", - "_id": { - "$oid": "6674c31e95590f9fd945a0c2" - } - }, - { - "name": "VirtualAssistant", - "description": "Virtual assistant software for voice command-based tasks and personal assistance.", - "link": "https://github.com/username/virtualassistant", - "_id": { - "$oid": "6674c31e95590f9fd945a0c3" - } - } - ], - "personalBio": "Committed to writing clean, maintainable code that meets rigorous performance standards.", - "testimonials": [ - { - "from": "Oliver Jackson", - "relation": "HR Manager at TechFusion", - "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", - "_id": { - "$oid": "6674c31e95590f9fd945a0c4" - } - }, - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", - "_id": { - "$oid": "6674c31e95590f9fd945a0c5" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd945a0c6" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Gusty-Besnardeau-fake", - "blog": "https://www.Gusty-Besnardeau-fake-blog.com", - "other": ["https://www.instagram.com/Gusty-Besnardeau-fake"] - }, - "availabilityForNetworking": false, - "bootcampExperience": "App Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a0bb" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dd7" - }, - "firstName": "Randy", - "lastName": "Verriour", - "cohort": "LA 41", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a0c7" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dd8" - }, - "firstName": "Israel", - "lastName": "Canti", - "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "cohort": "FTRI 66", - "graduationYear": 2024, - "email": "icanti1x@businesswire.com", - "linkedInProfile": "https://www.linkedin.com/in/Israel-Canti-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": [ - "Software Architecture", - "Flask", - "Algorithm Design", - "Legacy Code Management", - "Laravel", - "Java", - "NoSQL", - "GraphQL", - "AWS", - "Node.js", - "Concurrency", - "DevOps", - "Docker", - "Performance Optimization", - "React", - "User Interface (UI) Design", - "IoT (Internet of Things)", - "Edge Computing" - ], - "specializations": [ - "Spring Boot", - "API Development", - "WebSockets", - "Node.js", - "Kubernetes", - "Object-Oriented Programming", - "Algorithm Design", - "Machine Learning", - "Mobile Development", - "Critical Thinking", - "Angular", - "FaaS (Function as a Service)", - "Big Data", - "Integration Testing", - "Natural Language Processing", - "Automated Testing" - ], - "careerInformation": { - "currentPosition": { "title": "Lead Software Engineer", "company": "IBM" }, - "pastPositions": [ - { - "title": "QA Engineer", - "company": "Activision Blizzard", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-10-01T04:30:19.856Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0c9" - } - }, - { - "title": "Principal Software Engineer", - "company": "PayPal", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-02-07T08:04:25.685Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0ca" - } - } - ] - }, - "education": [ - { - "institution": "California Institute of Technology (Caltech)", - "degree": "Bachelor of Fine Arts (BFA)", - "fieldOfStudy": "Marketing", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-06-19T23:24:51.463Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0cb" - } - } - ], - "projects": [ - { - "name": "SmartGrid", - "description": "Smart grid technology for efficient energy distribution and consumption.", - "link": "https://github.com/username/smartgrid", - "_id": { - "$oid": "6674c31e95590f9fd945a0cc" - } - }, - { - "name": "AIAssistant", - "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", - "link": "https://github.com/username/aiassistant", - "_id": { - "$oid": "6674c31e95590f9fd945a0cd" - } - }, - { - "name": "HomeSecurity", - "description": "Home security system with video surveillance, motion detection, and alarm integration.", - "link": "https://github.com/username/homesecurity", - "_id": { - "$oid": "6674c31e95590f9fd945a0ce" - } - }, - { - "name": "SecureChat", - "description": "End-to-end encrypted messaging app ensuring user privacy and security.", - "link": "https://github.com/username/securechat", - "_id": { - "$oid": "6674c31e95590f9fd945a0cf" - } - }, - { - "name": "EventPlanner", - "description": "Event management and planning software for organizing and coordinating events.", - "link": "https://github.com/username/eventplanner", - "_id": { - "$oid": "6674c31e95590f9fd945a0d0" - } - } - ], - "personalBio": "Experienced in rapid prototyping and iterative development methodologies.", - "testimonials": [], - "socialMediaLinks": { - "twitter": "https://x.com/Israel-Canti-fake", - "other": ["https://www.instagram.com/Israel-Canti-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Makers Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a0c8" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dd9" - }, - "firstName": "Micky", - "lastName": "Dunseath", - "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "cohort": "PTRI 74", - "graduationYear": 2024, - "email": "mdunseath1y@miibeian.gov.cn", - "linkedInProfile": "https://www.linkedin.com/in/Micky-Dunseath-fake", - "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", - "skills": [ - "Communication Skills", - "Automated Testing", - "Ruby", - "Code Review", - "Concurrency", - "SaaS (Software as a Service)", - "React", - "Scrum" - ], - "specializations": [ - "C#", - "API Development", - "ASP.NET", - "Python", - "Deep Learning", - "Google Cloud Platform", - "User Interface (UI) Design", - "Collaboration", - "Natural Language Processing", - "Infrastructure as Code" - ], - "careerInformation": { - "currentPosition": { "title": "Android Developer", "company": "Workday" }, - "pastPositions": [ - { - "title": "Site Reliability Engineer", - "company": "Twitter", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-08-14T16:26:09.484Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0d2" - } - }, - { - "title": "Principal Software Engineer", - "company": "Facebook", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-06-27T21:34:27.658Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0d3" - } - }, - { - "title": "Software Engineer", - "company": "VMware", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-02-11T21:12:00.811Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0d4" - } - }, - { - "title": "Technical Program Manager", - "company": "Zoom", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-05-31T15:46:28.271Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0d5" - } - }, - { - "title": "DevOps Engineer", - "company": "Robinhood", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-06-23T11:20:45.983Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0d6" - } - } - ] - }, - "education": [ - { - "institution": "California Institute of Technology (Caltech)", - "degree": "Master of Public Health (MPH)", - "fieldOfStudy": "Statistics", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-11-24T04:15:28.305Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0d7" - } - } - ], - "projects": [ - { - "name": "AIChatbot", - "description": "AI-powered chatbot for customer support and interactive communication.", - "link": "https://github.com/username/aichatbot", - "_id": { - "$oid": "6674c31e95590f9fd945a0d8" - } - }, - { - "name": "JobFinder", - "description": "Job search and application management platform with personalized recommendations.", - "link": "https://github.com/username/jobfinder", - "_id": { - "$oid": "6674c31e95590f9fd945a0d9" - } - } - ], - "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", - "testimonials": [], - "socialMediaLinks": { - "twitter": "https://x.com/Micky-Dunseath-fake", - "other": ["https://www.instagram.com/Micky-Dunseath-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Springboard", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a0d1" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dda" - }, - "firstName": "Gabi", - "lastName": "Hardcastle", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "LA 66", - "graduationYear": 2024, - "email": "ghardcastle1z@weebly.com", - "linkedInProfile": "https://www.linkedin.com/in/Gabi-Hardcastle-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", - "skills": ["Design Patterns", "User Experience (UX) Design", "SaaS (Software as a Service)"], - "specializations": ["CI/CD", "iOS Development"], - "careerInformation": { - "currentPosition": { "title": "Lead Software Engineer", "company": "Stripe" }, - "pastPositions": [ - { - "title": "Software Developer", - "company": "PayPal", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-09-02T10:15:10.021Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0db" - } - }, - { - "title": "Data Engineer", - "company": "Cisco", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-06-12T06:58:29.263Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0dc" - } - }, - { - "title": "Software Developer", - "company": "HubSpot", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-06-07T02:51:43.401Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0dd" - } - }, - { - "title": "Backend Developer", - "company": "Shopify", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-10-22T16:04:43.723Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0de" - } - } - ] - }, - "education": [ - { - "institution": "University of Alberta", - "degree": "Associate Degree", - "fieldOfStudy": "Civil Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-01-28T16:03:38.497Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0df" - } - } - ], - "projects": [ - { - "name": "AIAssistant", - "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", - "link": "https://github.com/username/aiassistant", - "_id": { - "$oid": "6674c31e95590f9fd945a0e0" - } - }, - { - "name": "DataCrunch", - "description": "Real-time data analytics platform for extracting insights from big data.", - "link": "https://github.com/username/datacrunch", - "_id": { - "$oid": "6674c31e95590f9fd945a0e1" - } - }, - { - "name": "GenomeQuest", - "description": "Genomic data analysis tool for researchers and bioinformaticians.", - "link": "https://github.com/username/genomequest", - "_id": { - "$oid": "6674c31e95590f9fd945a0e2" - } - } - ], - "personalBio": "Adept at optimizing SQL and NoSQL databases for performance and scalability.", - "testimonials": [ - { - "from": "Emma Thompson", - "relation": "Manager at DataTech Solutions", - "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", - "_id": { - "$oid": "6674c31e95590f9fd945a0e3" - } - }, - { - "from": "Lucas Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", - "_id": { - "$oid": "6674c31e95590f9fd945a0e4" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd945a0e5" - } - } - ], - "socialMediaLinks": { "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "The Tech Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a0da" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459ddb" - }, - "firstName": "Rakel", - "lastName": "Scothron", - "cohort": "FTRI 9", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a0e6" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459ddc" - }, - "firstName": "Gretel", - "lastName": "Sitford", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "NYC 80", - "graduationYear": 2024, - "email": "gsitford21@tinyurl.com", - "linkedInProfile": "https://www.linkedin.com/in/Gretel-Sitford-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": [ - "Flask", - "Communication Skills", - "Software Architecture", - "Microservices", - "Scrum", - "Django", - "Graph Databases", - "Critical Thinking", - "React", - "ASP.NET", - "Agile Development", - "IoT (Internet of Things)", - "DevOps", - "Big Data", - "Angular" - ], - "specializations": ["IoT (Internet of Things)", "JavaScript", "Code Review", "Time Management"], - "careerInformation": { - "currentPosition": { "title": "Backend Developer", "company": "Apple" }, - "pastPositions": [ - { - "title": "Test Engineer", - "company": "EA (Electronic Arts)", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-06-28T04:55:04.606Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0e8" - } - }, - { - "title": "Technical Lead", - "company": "DoorDash", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-09-12T18:13:38.404Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0e9" - } - }, - { - "title": "Embedded Systems Engineer", - "company": "Qualcomm", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-12-02T03:42:55.342Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0ea" - } - }, - { - "title": "Mobile Developer", - "company": "Red Hat", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-11-08T14:43:26.248Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0eb" - } - }, - { - "title": "Security Engineer", - "company": "Microsoft", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-08-12T02:21:12.750Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0ec" - } - } - ] - }, - "education": [ - { - "institution": "Princeton University", - "degree": "Master of Social Work (MSW)", - "fieldOfStudy": "Statistics", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-09-19T00:16:47.113Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0ed" - } - }, - { - "institution": "University of Vermont", - "degree": "Master of Technology (MTech)", - "fieldOfStudy": "Architecture", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-02-01T16:38:39.986Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0ee" - } - }, - { - "institution": "Purdue University", - "degree": "Bachelor of Fine Arts (BFA)", - "fieldOfStudy": "Biomedical Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-03-04T22:02:55.858Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0ef" - } - } - ], - "projects": [ - { - "name": "CodeBot", - "description": "Automated code generation tool using AI for faster development cycles.", - "link": "https://github.com/username/codebot", - "_id": { - "$oid": "6674c31e95590f9fd945a0f0" - } - }, - { - "name": "CryptoTrack", - "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", - "link": "https://github.com/username/cryptotrack", - "_id": { - "$oid": "6674c31e95590f9fd945a0f1" - } - } - ], - "personalBio": "Proactive learner constantly exploring emerging technologies and trends in the software industry.", - "testimonials": [ - { - "from": "Lucas Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", - "_id": { - "$oid": "6674c31e95590f9fd945a0f2" - } - }, - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "6674c31e95590f9fd945a0f3" - } - }, - { - "from": "Emma Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd945a0f4" - } - } - ], - "socialMediaLinks": { "other": ["https://www.instagram.com/Gretel-Sitford-fake"] }, - "availabilityForNetworking": true, - "bootcampExperience": "CareerFoundry", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a0e7" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459ddd" - }, - "firstName": "Rosalinda", - "lastName": "Naisby", - "cohort": "LA 50", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a0f5" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dde" - }, - "firstName": "Thaddus", - "lastName": "Waddell", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "ECRI 12", - "graduationYear": 2024, - "email": "twaddell23@nymag.com", - "linkedInProfile": "https://www.linkedin.com/in/Thaddus-Waddell-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": [], - "specializations": [ - "Node.js", - "CSS", - "Mobile Development", - "GraphQL", - "Machine Learning", - "ETL (Extract, Transform, Load)", - "Cloud Computing", - "Blockchain", - "Flask", - "User Experience (UX) Design", - "Refactoring", - "Edge Computing", - "Docker", - "Problem-Solving", - "Quantum Computing", - "iOS Development", - "Vue.js", - "SaaS (Software as a Service)" - ], - "careerInformation": { - "currentPosition": { "title": "DevOps Engineer", "company": "Pinterest" }, - "pastPositions": [ - { - "title": "Cloud Engineer", - "company": "Palantir", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-09-25T01:10:57.865Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0f7" - } - }, - { - "title": "Software Engineer", - "company": "Pinterest", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-04-23T18:23:25.033Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0f8" - } - }, - { - "title": "Software Developer", - "company": "VMware", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-09-28T23:10:05.316Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0f9" - } - }, - { - "title": "Principal Software Engineer", - "company": "Robinhood", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-07-27T04:48:06.829Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0fa" - } - } - ] - }, - "education": [ - { - "institution": "University of Oregon", - "degree": "Doctor of Dental Surgery (DDS)", - "fieldOfStudy": "Linguistics", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-07-23T21:06:32.270Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0fb" - } - }, - { - "institution": "University of Massachusetts Amherst", - "degree": "Doctor of Veterinary Medicine (DVM)", - "fieldOfStudy": "Electrical Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-12-10T03:54:17.766Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0fc" - } - }, - { - "institution": "Australian National University", - "degree": "Master of Business Administration (MBA)", - "fieldOfStudy": "Psychology", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2025-06-09T16:17:29.620Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a0fd" - } - } - ], - "projects": [ - { - "name": "SmartMirror", - "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", - "link": "https://github.com/username/smartmirror", - "_id": { - "$oid": "6674c31e95590f9fd945a0fe" - } - }, - { - "name": "CodeReview", - "description": "Collaborative code review platform with annotations and feedback features.", - "link": "https://github.com/username/codereview", - "_id": { - "$oid": "6674c31e95590f9fd945a0ff" - } - }, - { - "name": "CodeOptimizer", - "description": "AI-driven code optimization tool for improving software performance and efficiency.", - "link": "https://github.com/username/codeoptimizer", - "_id": { - "$oid": "6674c31e95590f9fd945a100" - } - }, - { - "name": "SmartFarm", - "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", - "link": "https://github.com/username/smartfarm", - "_id": { - "$oid": "6674c31e95590f9fd945a101" - } - }, - { - "name": "TourismApp", - "description": "Mobile application for tourists providing travel guides and local recommendations.", - "link": "https://github.com/username/tourismapp", - "_id": { - "$oid": "6674c31e95590f9fd945a102" - } - } - ], - "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", - "testimonials": [ - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "6674c31e95590f9fd945a103" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd945a104" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "6674c31e95590f9fd945a105" - } - }, - { - "from": "Liam Harris", - "relation": "Lead Developer at CloudTech", - "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd945a106" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Thaddus-Waddell-fake", - "blog": "https://www.Thaddus-Waddell-fake-blog.com", - "other": ["https://www.instagram.com/Thaddus-Waddell-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Galvanize", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a0f6" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459ddf" - }, - "firstName": "Nadia", - "lastName": "Zeale", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "PTRI 95", - "graduationYear": 2024, - "email": "nzeale24@google.ru", - "linkedInProfile": "https://www.linkedin.com/in/Nadia-Zeale-fake", - "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", - "skills": [ - "DevOps", - "Infrastructure as Code", - "Cybersecurity", - "Edge Computing", - "Design Patterns", - "Unit Testing", - "Object-Oriented Programming", - "Serverless Architecture", - "Event-Driven Architecture" - ], - "specializations": [ - "TDD (Test-Driven Development)", - "User Interface (UI) Design", - "Design Patterns", - "Microservices", - "Infrastructure as Code", - "C#", - "IoT (Internet of Things)", - "Communication Skills", - "Flask" - ], - "careerInformation": { - "currentPosition": { "title": "Product Manager", "company": "Robinhood" }, - "pastPositions": [ - { - "title": "Machine Learning Engineer", - "company": "Coinbase", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2028-05-10T20:01:14.354Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a108" - } - }, - { - "title": "Machine Learning Engineer", - "company": "ServiceNow", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2026-08-01T09:08:05.300Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a109" - } - }, - { - "title": "AI Engineer", - "company": "Slack", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2027-09-01T10:08:57.547Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a10a" - } - }, - { - "title": "iOS Developer", - "company": "Twilio", - "startDate": { - "$date": "2024-06-21T00:02:38.630Z" - }, - "endDate": { - "$date": "2024-12-01T15:54:53.771Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a10b" - } - } - ] - }, - "education": [], - "projects": [ - { - "name": "TourismApp", - "description": "Mobile application for tourists providing travel guides and local recommendations.", - "link": "https://github.com/username/tourismapp", - "_id": { - "$oid": "6674c31e95590f9fd945a10c" - } - }, - { - "name": "EventPlanner", - "description": "Event management and planning software for organizing and coordinating events.", - "link": "https://github.com/username/eventplanner", - "_id": { - "$oid": "6674c31e95590f9fd945a10d" - } - }, - { - "name": "AIAssistant", - "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", - "link": "https://github.com/username/aiassistant", - "_id": { - "$oid": "6674c31e95590f9fd945a10e" - } - } - ], - "personalBio": "Detail-oriented developer with a strong foundation in algorithms and data structures.", - "testimonials": [ - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd945a10f" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd945a110" - } - }, - { - "from": "Sophie Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "6674c31e95590f9fd945a111" - } - } - ], - "socialMediaLinks": { "blog": "https://www.Nadia-Zeale-fake-blog.com", "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "CareerFoundry", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a107" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459de0" - }, - "firstName": "Emmett", - "lastName": "Buckell", - "cohort": "NYC 73", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a112" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459de1" - }, - "firstName": "Lavinia", - "lastName": "Baume", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "cohort": "PTRI 21", - "graduationYear": 2024, - "email": "lbaume26@tinyurl.com", - "linkedInProfile": "https://www.linkedin.com/in/Lavinia-Baume-fake", - "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", - "skills": [ - "API Integration", - "Critical Thinking", - "Natural Language Processing", - "Collaboration", - "React", - "Mobile Development" - ], - "specializations": [ - "Collaboration", - "Kubernetes", - "Cybersecurity", - "AWS", - "Data Science", - "GraphQL", - "Pair Programming", - "Git", - "Docker", - "Version Control", - "PaaS (Platform as a Service)", - "Data Warehousing", - "Scrum", - "Big Data", - "JavaScript", - "Android Development" - ], - "careerInformation": { - "currentPosition": { "title": "Software Architect", "company": "Airbnb" }, - "pastPositions": [ - { - "title": "Security Engineer", - "company": "Salesforce", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2027-08-18T08:32:29.217Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a114" - } - }, - { - "title": "Backend Developer", - "company": "Lyft", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2026-12-18T21:02:19.297Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a115" - } - }, - { - "title": "Backend Developer", - "company": "NVIDIA", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2025-12-31T08:36:41.646Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a116" - } - }, - { - "title": "AI Engineer", - "company": "Activision Blizzard", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2027-11-22T15:08:23.241Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a117" - } - } - ] - }, - "education": [], - "projects": [], - "personalBio": "Experienced in deploying and maintaining applications on cloud platforms like AWS and Azure.", - "testimonials": [], - "socialMediaLinks": { "twitter": "https://x.com/Lavinia-Baume-fake", "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "Nucamp", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a113" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459de2" - }, - "firstName": "Janine", - "lastName": "Kitt", - "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "cohort": "CTRI 29", - "graduationYear": 2024, - "email": "jkitt27@wsj.com", - "linkedInProfile": "https://www.linkedin.com/in/Janine-Kitt-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": [ - "Software Architecture", - "Object-Oriented Programming", - "GraphQL", - "Android Development", - "Node.js", - "User Interface (UI) Design" - ], - "specializations": [ - "Blockchain", - "PaaS (Platform as a Service)", - "Google Cloud Platform", - "Docker", - "Data Science", - "Data Visualization", - "System Design", - "Natural Language Processing" - ], - "careerInformation": { - "currentPosition": { "title": "AI Engineer", "company": "Lyft" }, - "pastPositions": [ - { - "title": "Embedded Systems Engineer", - "company": "Spotify", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2027-04-10T02:15:26.718Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a119" - } - }, - { - "title": "Software Engineer", - "company": "Twilio", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2027-03-31T19:36:09.662Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a11a" - } - }, - { - "title": "Engineering Manager", - "company": "NVIDIA", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2025-12-31T05:13:13.584Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a11b" - } - }, - { - "title": "Frontend Developer", - "company": "Netflix", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2026-04-12T07:00:33.800Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a11c" - } - }, - { - "title": "iOS Developer", - "company": "Amazon", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2026-09-12T11:20:39.389Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a11d" - } - } - ] - }, - "education": [ - { - "institution": "Washington University in St. Louis", - "degree": "Master of Engineering (ME)", - "fieldOfStudy": "Fine Arts", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2027-03-19T18:16:31.744Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a11e" - } - }, - { - "institution": "University of Florida", - "degree": "Master of Arts (MA)", - "fieldOfStudy": "Mechanical Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2027-07-13T12:44:06.611Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a11f" - } - }, - { - "institution": "Clemson University", - "degree": "Trade School Certification", - "fieldOfStudy": "History", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2026-05-26T08:00:09.398Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a120" - } - } - ], - "projects": [ - { - "name": "VirtualMarket", - "description": "Virtual reality shopping experience allowing users to browse and buy products online.", - "link": "https://github.com/username/virtualmarket", - "_id": { - "$oid": "6674c31e95590f9fd945a121" - } - }, - { - "name": "CryptoTrack", - "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", - "link": "https://github.com/username/cryptotrack", - "_id": { - "$oid": "6674c31e95590f9fd945a122" - } - }, - { - "name": "SecureBackup", - "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", - "link": "https://github.com/username/securebackup", - "_id": { - "$oid": "6674c31e95590f9fd945a123" - } - } - ], - "personalBio": "Experienced in Agile methodologies, with a track record of delivering projects on time and within budget.", - "testimonials": [], - "socialMediaLinks": { "twitter": "https://x.com/Janine-Kitt-fake", "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "General Assembly", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a118" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459de3" - }, - "firstName": "Beatrix", - "lastName": "Healey", - "cohort": "WCRI 59", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a124" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459de4" - }, - "firstName": "Simone", - "lastName": "Buske", - "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "cohort": "PTRI 21", - "graduationYear": 2024, - "email": "sbuske29@soundcloud.com", - "linkedInProfile": "https://www.linkedin.com/in/Simone-Buske-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": ["React", "Parallel Computing", "HTML"], - "specializations": [ - "Django", - "IoT (Internet of Things)", - "TDD (Test-Driven Development)", - "Scrum" - ], - "careerInformation": { - "currentPosition": { "title": "Software Developer", "company": "DocuSign" }, - "pastPositions": [ - { - "title": "Automation Engineer", - "company": "Square", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2024-07-13T21:23:49.439Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a126" - } - }, - { - "title": "Backend Developer", - "company": "NVIDIA", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2025-06-06T00:08:59.975Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a127" - } - }, - { - "title": "Data Engineer", - "company": "Cisco", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2027-08-14T20:26:46.133Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a128" - } - }, - { - "title": "Web Developer", - "company": "Microsoft", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2026-09-06T10:50:59.060Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a129" - } - }, - { - "title": "Security Engineer", - "company": "PayPal", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2026-01-24T09:23:47.436Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a12a" - } - } - ] - }, - "education": [ - { - "institution": "University of Georgia", - "degree": "Technical School Certification", - "fieldOfStudy": "Data Science", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2025-04-05T22:00:42.086Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a12b" - } - }, - { - "institution": "University of Utah", - "degree": "Bachelor of Science (BS)", - "fieldOfStudy": "Linguistics", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2027-06-30T13:59:59.387Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a12c" - } - }, - { - "institution": "National University of Singapore (NUS)", - "degree": "Master of Education (MEd)", - "fieldOfStudy": "Biochemistry", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2026-02-22T23:48:00.997Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a12d" - } - } - ], - "projects": [], - "personalBio": "Experienced in rapid prototyping and iterative development methodologies.", - "testimonials": [ - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "6674c31e95590f9fd945a12e" - } - }, - { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", - "_id": { - "$oid": "6674c31e95590f9fd945a12f" - } - } - ], - "socialMediaLinks": { - "blog": "https://www.Simone-Buske-fake-blog.com", - "other": ["https://www.instagram.com/Simone-Buske-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Springboard", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a125" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459de5" - }, - "firstName": "Cristine", - "lastName": "Gaddesby", - "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "cohort": "WCRI 18", - "graduationYear": 2024, - "email": "cgaddesby2a@senate.gov", - "linkedInProfile": "https://www.linkedin.com/in/Cristine-Gaddesby-fake", - "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", - "skills": [ - "GraphQL", - "Software Architecture", - "React", - "Azure", - "Natural Language Processing", - "RESTful APIs", - "System Design", - "SaaS (Software as a Service)", - "Concurrency", - "Angular", - "Android Development" - ], - "specializations": [ - "Parallel Computing", - "Docker", - "Leadership", - "C++", - "Natural Language Processing" - ], - "careerInformation": { - "currentPosition": { "title": "Embedded Systems Engineer", "company": "Netflix" }, - "pastPositions": [ - { - "title": "Backend Developer", - "company": "DoorDash", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2026-09-04T07:05:54.992Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a131" - } - }, - { - "title": "Software Engineer", - "company": "Salesforce", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2025-09-15T02:08:09.362Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a132" - } - }, - { - "title": "Data Engineer", - "company": "Twitter", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2026-11-20T01:56:53.417Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a133" - } - }, - { - "title": "Engineering Manager", - "company": "DocuSign", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2025-02-21T18:46:14.557Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a134" - } - } - ] - }, - "education": [], - "projects": [ - { - "name": "SmartCarPark", - "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", - "link": "https://github.com/username/smartcarpark", - "_id": { - "$oid": "6674c31e95590f9fd945a135" - } - }, - { - "name": "SmartCarPark", - "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", - "link": "https://github.com/username/smartcarpark", - "_id": { - "$oid": "6674c31e95590f9fd945a136" - } - }, - { - "name": "SmartFarm", - "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", - "link": "https://github.com/username/smartfarm", - "_id": { - "$oid": "6674c31e95590f9fd945a137" - } - }, - { - "name": "VirtualMarket", - "description": "Virtual reality shopping experience allowing users to browse and buy products online.", - "link": "https://github.com/username/virtualmarket", - "_id": { - "$oid": "6674c31e95590f9fd945a138" - } - } - ], - "personalBio": "Driven by a curiosity for innovation and a commitment to delivering high-quality software solutions.", - "testimonials": [], - "socialMediaLinks": { - "twitter": "https://x.com/Cristine-Gaddesby-fake", - "blog": "https://www.Cristine-Gaddesby-fake-blog.com", - "other": ["https://www.instagram.com/Cristine-Gaddesby-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Makers Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a130" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459de6" - }, - "firstName": "Marta", - "lastName": "Daveren", - "cohort": "PTRI 41", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a139" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459de7" - }, - "firstName": "Nanon", - "lastName": "Gligoraci", - "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "cohort": "FTRI 70", - "graduationYear": 2024, - "email": "ngligoraci2c@addthis.com", - "linkedInProfile": "https://www.linkedin.com/in/Nanon-Gligoraci-fake", - "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", - "skills": [], - "specializations": [ - "Graph Databases", - "Critical Thinking", - "Spring Boot", - "C++", - "Software Architecture", - "ETL (Extract, Transform, Load)", - "CI/CD", - "Big Data", - "ASP.NET", - "DevOps", - "NoSQL", - "IoT (Internet of Things)" - ], - "careerInformation": { - "currentPosition": { "title": "Senior Software Engineer", "company": "DocuSign" }, - "pastPositions": [ - { - "title": "Security Engineer", - "company": "Asana", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2025-08-15T22:23:35.491Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a13b" - } - }, - { - "title": "Embedded Systems Engineer", - "company": "Square", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2028-03-07T20:37:26.329Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a13c" - } - } - ] - }, - "education": [ - { - "institution": "Fudan University", - "degree": "Diploma Program", - "fieldOfStudy": "Journalism", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2026-03-05T01:38:36.714Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a13d" - } - }, - { - "institution": "University of Vermont", - "degree": "Continuing Education", - "fieldOfStudy": "Biomedical Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2026-09-01T03:06:28.903Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a13e" - } - }, - { - "institution": "California Institute of Technology (Caltech)", - "degree": "Master of Engineering (ME)", - "fieldOfStudy": "History", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2025-01-26T14:03:35.938Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a13f" - } - } - ], - "projects": [ - { - "name": "EventPlanner", - "description": "Event management and planning software for organizing and coordinating events.", - "link": "https://github.com/username/eventplanner", - "_id": { - "$oid": "6674c31e95590f9fd945a140" - } - }, - { - "name": "LearnHub", - "description": "Online learning platform offering courses on various subjects with interactive content.", - "link": "https://github.com/username/learnhub", - "_id": { - "$oid": "6674c31e95590f9fd945a141" - } - }, - { - "name": "SmartWatch", - "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", - "link": "https://github.com/username/smartwatch", - "_id": { - "$oid": "6674c31e95590f9fd945a142" - } - }, - { - "name": "EcoTech", - "description": "Environmental monitoring and conservation app with real-time data visualization.", - "link": "https://github.com/username/ecotech", - "_id": { - "$oid": "6674c31e95590f9fd945a143" - } - } - ], - "personalBio": "Proven ability to lead technical projects from inception to successful deployment and maintenance.", - "testimonials": [ - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "6674c31e95590f9fd945a144" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd945a145" - } - } - ], - "socialMediaLinks": { - "blog": "https://www.Nanon-Gligoraci-fake-blog.com", - "other": ["https://www.instagram.com/Nanon-Gligoraci-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Thinkful", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a13a" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459de8" - }, - "firstName": "Donall", - "lastName": "Frapwell", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "WCRI 37", - "graduationYear": 2024, - "email": "dfrapwell2d@hostgator.com", - "linkedInProfile": "https://www.linkedin.com/in/Donall-Frapwell-fake", - "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", - "skills": [ - "Software Architecture", - "Performance Optimization", - "BDD (Behavior-Driven Development)", - "Android Development", - "Robotic Process Automation", - "Design Patterns", - "Reactive Programming", - "Kubernetes", - "API Development", - "Legacy Code Management", - "CI/CD", - "Leadership", - "System Design", - "C++", - "GraphQL", - "Docker" - ], - "specializations": [ - "Unit Testing", - "BDD (Behavior-Driven Development)", - "Containerization", - "Quantum Computing", - "Data Science", - "Event-Driven Architecture", - "Concurrency" - ], - "careerInformation": { - "currentPosition": { "title": "Principal Software Engineer", "company": "Robinhood" }, - "pastPositions": [ - { - "title": "Full Stack Developer", - "company": "Atlassian", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2027-05-25T22:51:17.486Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a147" - } - }, - { - "title": "Automation Engineer", - "company": "Workday", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2027-03-16T17:12:48.556Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a148" - } - }, - { - "title": "Software Developer", - "company": "Epic Games", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2026-12-14T14:18:10.787Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a149" - } - } - ] - }, - "education": [ - { - "institution": "University of Texas at Austin", - "degree": "Master of Fine Arts (MFA)", - "fieldOfStudy": "Civil Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2027-08-31T07:03:56.697Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a14a" - } - }, - { - "institution": "Rice University", - "degree": "Professional Development", - "fieldOfStudy": "Law", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2028-04-07T03:57:09.726Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a14b" - } - }, - { - "institution": "National University of Singapore (NUS)", - "degree": "Master of Public Health (MPH)", - "fieldOfStudy": "Statistics", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2027-05-13T21:05:41.999Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a14c" - } - } - ], - "projects": [ - { - "name": "GenomeQuest", - "description": "Genomic data analysis tool for researchers and bioinformaticians.", - "link": "https://github.com/username/genomequest", - "_id": { - "$oid": "6674c31e95590f9fd945a14d" - } - }, - { - "name": "SmartFarm", - "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", - "link": "https://github.com/username/smartfarm", - "_id": { - "$oid": "6674c31e95590f9fd945a14e" - } - }, - { - "name": "HomeSecurity", - "description": "Home security system with video surveillance, motion detection, and alarm integration.", - "link": "https://github.com/username/homesecurity", - "_id": { - "$oid": "6674c31e95590f9fd945a14f" - } - } - ], - "personalBio": "Passionate about contributing to the tech community through open-source projects and knowledge sharing.", - "testimonials": [ - { - "from": "Sophie Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "6674c31e95590f9fd945a150" - } - }, - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "6674c31e95590f9fd945a151" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd945a152" - } - } - ], - "socialMediaLinks": { "blog": "https://www.Donall-Frapwell-fake-blog.com", "other": [] }, - "availabilityForNetworking": true, - "bootcampExperience": "Kenzie Academy", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a146" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459de9" - }, - "firstName": "Beverlee", - "lastName": "Bangham", - "cohort": "FTRI 79", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a153" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dea" - }, - "firstName": "Englebert", - "lastName": "Bancroft", - "cohort": "LA 21", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a154" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459deb" - }, - "firstName": "Siegfried", - "lastName": "Castillou", - "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "cohort": "ECRI 74", - "graduationYear": 2024, - "email": "scastillou2g@reddit.com", - "linkedInProfile": "https://www.linkedin.com/in/Siegfried-Castillou-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": [ - "PaaS (Platform as a Service)", - "C#", - "Quantum Computing", - "Performance Optimization", - "Azure", - "React", - "IoT (Internet of Things)", - "Event-Driven Architecture" - ], - "specializations": ["Angular"], - "careerInformation": { - "currentPosition": { "title": "Data Scientist", "company": "Pinterest" }, - "pastPositions": [ - { - "title": "Software Architect", - "company": "Robinhood", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2027-07-03T20:18:11.511Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a156" - } - }, - { - "title": "Data Engineer", - "company": "Pinterest", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2025-11-09T09:16:13.647Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a157" - } - } - ] - }, - "education": [ - { - "institution": "University of Melbourne", - "degree": "Master of Public Administration (MPA)", - "fieldOfStudy": "Accounting", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2025-01-19T13:01:57.412Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a158" - } - }, - { - "institution": "Brigham Young University", - "degree": "Executive Education", - "fieldOfStudy": "Physics", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2027-11-01T12:04:48.118Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a159" - } - }, - { - "institution": "Massachusetts Institute of Technology (MIT)", - "degree": "Master of Public Administration (MPA)", - "fieldOfStudy": "Electrical Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2028-05-15T12:46:37.883Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a15a" - } - } - ], - "projects": [ - { - "name": "HomeSecurity", - "description": "Home security system with video surveillance, motion detection, and alarm integration.", - "link": "https://github.com/username/homesecurity", - "_id": { - "$oid": "6674c31e95590f9fd945a15b" - } - }, - { - "name": "AIAssistant", - "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", - "link": "https://github.com/username/aiassistant", - "_id": { - "$oid": "6674c31e95590f9fd945a15c" - } - }, - { - "name": "CloudGuard", - "description": "Advanced cloud security suite ensuring data protection and compliance.", - "link": "https://github.com/username/cloudguard", - "_id": { - "$oid": "6674c31e95590f9fd945a15d" - } - }, - { - "name": "HealthLink", - "description": "Telemedicine platform connecting patients with healthcare providers remotely.", - "link": "https://github.com/username/healthlink", - "_id": { - "$oid": "6674c31e95590f9fd945a15e" - } - } - ], - "personalBio": "Adept at optimizing SQL and NoSQL databases for performance and scalability.", - "testimonials": [ - { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", - "_id": { - "$oid": "6674c31e95590f9fd945a15f" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd945a160" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Siegfried-Castillou-fake", - "blog": "https://www.Siegfried-Castillou-fake-blog.com", - "other": ["https://www.instagram.com/Siegfried-Castillou-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "General Assembly", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a155" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dec" - }, - "firstName": "Marvin", - "lastName": "Cranke", - "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "cohort": "FTRI 63", - "graduationYear": 2024, - "email": "mcranke2h@marketwatch.com", - "linkedInProfile": "https://www.linkedin.com/in/Marvin-Cranke-fake", - "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", - "skills": [ - "Leadership", - "WebSockets", - "Agile Development", - "Design Patterns", - "API Integration", - "ETL (Extract, Transform, Load)", - "Project Management", - "ASP.NET", - "SaaS (Software as a Service)", - "Edge Computing", - "Refactoring", - "Event-Driven Architecture", - "User Experience (UX) Design", - "FaaS (Function as a Service)", - "Legacy Code Management" - ], - "specializations": [], - "careerInformation": { - "currentPosition": { "title": "Software Architect", "company": "Twitter" }, - "pastPositions": [ - { - "title": "Engineering Manager", - "company": "HubSpot", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2025-03-26T22:50:57.371Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a162" - } - }, - { - "title": "Security Engineer", - "company": "DocuSign", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2027-11-17T05:44:42.229Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a163" - } - }, - { - "title": "Principal Software Engineer", - "company": "DoorDash", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2027-01-08T21:44:21.040Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a164" - } - }, - { - "title": "Lead Software Engineer", - "company": "Oracle", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2024-12-12T19:35:33.596Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a165" - } - } - ] - }, - "education": [ - { - "institution": "National University of Singapore (NUS)", - "degree": "Professional Development", - "fieldOfStudy": "International Relations", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2028-03-04T12:59:16.867Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a166" - } - }, - { - "institution": "Chinese University of Hong Kong (CUHK)", - "degree": "Master of Social Work (MSW)", - "fieldOfStudy": "Biomedical Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2026-10-15T05:42:13.448Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a167" - } - } - ], - "projects": [ - { - "name": "HomeSecurity", - "description": "Home security system with video surveillance, motion detection, and alarm integration.", - "link": "https://github.com/username/homesecurity", - "_id": { - "$oid": "6674c31e95590f9fd945a168" - } - }, - { - "name": "HealthLink", - "description": "Telemedicine platform connecting patients with healthcare providers remotely.", - "link": "https://github.com/username/healthlink", - "_id": { - "$oid": "6674c31e95590f9fd945a169" - } - }, - { - "name": "SmartCity", - "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", - "link": "https://github.com/username/smartcity", - "_id": { - "$oid": "6674c31e95590f9fd945a16a" - } - }, - { - "name": "SmartInventory", - "description": "Inventory management system with RFID and IoT integration for tracking assets.", - "link": "https://github.com/username/smartinventory", - "_id": { - "$oid": "6674c31e95590f9fd945a16b" - } - } - ], - "personalBio": "Experienced in building scalable microservices architectures and integrating third-party APIs.", - "testimonials": [ - { - "from": "Ava Miller", - "relation": "CTO at InnovateTech Ltd.", - "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", - "_id": { - "$oid": "6674c31e95590f9fd945a16c" - } - }, - { - "from": "Sophia Martinez", - "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", - "_id": { - "$oid": "6674c31e95590f9fd945a16d" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd945a16e" - } - }, - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd945a16f" - } - }, - { - "from": "Sophia Brown", - "relation": "Product Owner at AgileSoft", - "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", - "_id": { - "$oid": "6674c31e95590f9fd945a170" - } - } - ], - "socialMediaLinks": { "twitter": "https://x.com/Marvin-Cranke-fake", "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "Hack Reactor", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a161" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459ded" - }, - "firstName": "Arne", - "lastName": "Rummin", - "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "cohort": "WCRI 64", - "graduationYear": 2024, - "email": "arummin2i@is.gd", - "linkedInProfile": "https://www.linkedin.com/in/Arne-Rummin-fake", - "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", - "skills": [ - "Scrum", - "C#", - "Version Control", - "Laravel", - "Data Science", - "Object-Oriented Programming", - "Project Management", - "Graph Databases", - "Edge Computing", - "Communication Skills" - ], - "specializations": ["Ruby", "Robotic Process Automation"], - "careerInformation": { - "currentPosition": { "title": "Software Developer", "company": "Square" }, - "pastPositions": [ - { - "title": "QA Engineer", - "company": "Coinbase", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2027-10-29T17:31:32.272Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a172" - } - }, - { - "title": "Full Stack Developer", - "company": "Salesforce", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2027-08-13T22:52:33.420Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a173" - } - }, - { - "title": "Embedded Systems Engineer", - "company": "Snapchat", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2027-01-26T23:35:06.537Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a174" - } - }, - { - "title": "AI Engineer", - "company": "Square", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2026-11-27T06:17:35.283Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a175" - } - }, - { - "title": "Security Engineer", - "company": "Adobe", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2025-12-26T05:47:48.960Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a176" - } - } - ] - }, - "education": [ - { - "institution": "University of Pittsburgh", - "degree": "Bachelor of Engineering (BE)", - "fieldOfStudy": "Linguistics", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2026-09-25T21:02:20.545Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a177" - } - } - ], - "projects": [], - "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", - "testimonials": [], - "socialMediaLinks": { "other": ["https://www.instagram.com/Arne-Rummin-fake"] }, - "availabilityForNetworking": true, - "bootcampExperience": "Codesmith", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a171" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dee" - }, - "firstName": "Seumas", - "lastName": "Feldberger", - "cohort": "PTRI 1", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a178" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459def" - }, - "firstName": "Hilda", - "lastName": "Worham", - "cohort": "ECRI 50", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a179" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459df0" - }, - "firstName": "Winny", - "lastName": "O'Glessane", - "cohort": "PTRI 76", - "skills": [], - "specializations": [], - "careerInformation": { "pastPositions": [] }, - "socialMediaLinks": { "other": [] }, - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a17a" - }, - "education": [], - "projects": [], - "testimonials": [], - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459df1" - }, - "firstName": "Gwenora", - "lastName": "Agge", - "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "cohort": "NYC 13", - "graduationYear": 2024, - "email": "gagge2m@unesco.org", - "linkedInProfile": "https://www.linkedin.com/in/Gwenora-Agge-fake", - "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", - "skills": ["Ruby", "IoT (Internet of Things)", "GraphQL", "ETL (Extract, Transform, Load)"], - "specializations": ["AWS", "Cloud Computing", "Containerization"], - "careerInformation": { - "currentPosition": { "title": "Software Engineer", "company": "Asana" }, - "pastPositions": [ - { - "title": "Mobile Developer", - "company": "PayPal", - "startDate": { - "$date": "2024-06-21T00:02:38.631Z" - }, - "endDate": { - "$date": "2027-05-18T21:06:08.772Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a17c" - } - }, - { - "title": "Software Architect", - "company": "NVIDIA", - "startDate": { - "$date": "2024-06-21T00:02:38.632Z" - }, - "endDate": { - "$date": "2027-02-10T14:16:43.381Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a17d" - } - }, - { - "title": "Junior Software Engineer", - "company": "ServiceNow", - "startDate": { - "$date": "2024-06-21T00:02:38.632Z" - }, - "endDate": { - "$date": "2025-05-03T06:52:04.928Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a17e" - } - } - ] - }, - "education": [], - "projects": [ - { - "name": "VirtualTour", - "description": "Virtual reality tour application for immersive travel experiences.", - "link": "https://github.com/username/virtualtour", - "_id": { - "$oid": "6674c31e95590f9fd945a17f" - } - }, - { - "name": "CodeReview", - "description": "Collaborative code review platform with annotations and feedback features.", - "link": "https://github.com/username/codereview", - "_id": { - "$oid": "6674c31e95590f9fd945a180" - } - }, - { - "name": "RoboVision", - "description": "AI-powered computer vision system for object detection and recognition.", - "link": "https://github.com/username/robovision", - "_id": { - "$oid": "6674c31e95590f9fd945a181" - } - } - ], - "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", - "testimonials": [ - { - "from": "Ella Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd945a182" - } - }, - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", - "_id": { - "$oid": "6674c31e95590f9fd945a183" - } - }, - { - "from": "Sophia Turner", - "relation": "Project Manager at Digital Dynamics", - "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", - "_id": { - "$oid": "6674c31e95590f9fd945a184" - } - }, - { - "from": "Alice Johnson", - "relation": "Manager at TechSolutions Inc.", - "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", - "_id": { - "$oid": "6674c31e95590f9fd945a185" - } - }, - { - "from": "Emma Thompson", - "relation": "Manager at DataTech Solutions", - "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", - "_id": { - "$oid": "6674c31e95590f9fd945a186" - } - } - ], - "socialMediaLinks": { - "twitter": "https://x.com/Gwenora-Agge-fake", - "other": ["https://www.instagram.com/Gwenora-Agge-fake"] - }, - "availabilityForNetworking": true, - "bootcampExperience": "Lambda School", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a17b" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459df2" - }, - "firstName": "Piggy", - "lastName": "Torrisi", - "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "cohort": "WCRI 38", - "graduationYear": 2024, - "email": "ptorrisi2n@goodreads.com", - "linkedInProfile": "https://www.linkedin.com/in/Piggy-Torrisi-fake", - "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", - "skills": [ - "Natural Language Processing", - "Java", - "Angular", - "Scrum", - "Version Control", - "Communication Skills", - "Data Science", - "Collaboration", - "Software Architecture", - "Node.js", - "JavaScript", - "ASP.NET", - "Machine Learning" - ], - "specializations": [ - "Algorithm Design", - "User Interface (UI) Design", - "Edge Computing", - "NoSQL", - "Flask", - "System Design", - "DevOps", - "Legacy Code Management" - ], - "careerInformation": { - "currentPosition": { "title": "QA Engineer", "company": "Coinbase" }, - "pastPositions": [ - { - "title": "Full Stack Developer", - "company": "Activision Blizzard", - "startDate": { - "$date": "2024-06-21T00:02:38.632Z" - }, - "endDate": { - "$date": "2024-08-21T11:31:42.978Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a188" - } - }, - { - "title": "Engineering Manager", - "company": "Palantir", - "startDate": { - "$date": "2024-06-21T00:02:38.632Z" - }, - "endDate": { - "$date": "2025-10-18T04:48:27.892Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a189" - } - }, - { - "title": "Software Engineer", - "company": "Adobe", - "startDate": { - "$date": "2024-06-21T00:02:38.632Z" - }, - "endDate": { - "$date": "2025-02-16T22:50:41.982Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a18a" - } - } - ] - }, - "education": [ - { - "institution": "Fudan University", - "degree": "Doctor of Business Administration (DBA)", - "fieldOfStudy": "Mechanical Engineering", - "startDate": { - "$date": "2024-06-21T00:02:38.632Z" - }, - "endDate": { - "$date": "2024-11-03T01:08:34.011Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a18b" - } - }, - { - "institution": "University of California, Berkeley", - "degree": "Technical School Certification", - "fieldOfStudy": "Management", - "startDate": { - "$date": "2024-06-21T00:02:38.632Z" - }, - "endDate": { - "$date": "2027-04-22T07:09:15.120Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a18c" - } - }, - { - "institution": "Yale University", - "degree": "Professional Development", - "fieldOfStudy": "Communication Studies", - "startDate": { - "$date": "2024-06-21T00:02:38.632Z" - }, - "endDate": { - "$date": "2025-07-24T12:38:14.563Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a18d" - } - } - ], - "projects": [], - "personalBio": "Dedicated to upholding best practices in software engineering, including testing, code reviews, and version control.", - "testimonials": [ - { - "from": "Sophia Martinez", - "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", - "_id": { - "$oid": "6674c31e95590f9fd945a18e" - } - }, - { - "from": "Ethan Green", - "relation": "CTO at Innovate Solutions", - "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", - "_id": { - "$oid": "6674c31e95590f9fd945a18f" - } - }, - { - "from": "Mia Davis", - "relation": "Lead Developer at CloudTech", - "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", - "_id": { - "$oid": "6674c31e95590f9fd945a190" - } - }, - { - "from": "Noah Rodriguez", - "relation": "Product Owner at AgileSoft", - "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", - "_id": { - "$oid": "6674c31e95590f9fd945a191" - } - } - ], - "socialMediaLinks": { "blog": "https://www.Piggy-Torrisi-fake-blog.com", "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "Codesmith", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a187" - }, - "blogOrWriting": [], - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459df3" - }, - "firstName": "Niki", - "lastName": "Glaysher", - "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "cohort": "CTRI 99", - "graduationYear": 2024, - "email": "nglaysher2o@kickstarter.com", - "linkedInProfile": "https://www.linkedin.com/in/Niki-Glaysher-fake", - "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", - "skills": [ - "Scrum", - "Reactive Programming", - "System Design", - "SaaS (Software as a Service)", - "Graph Databases" - ], - "specializations": [ - "Parallel Computing", - "Leadership", - "Data Science", - "Azure", - "WebSockets", - "Event-Driven Architecture", - "Data Warehousing", - "Android Development", - "Big Data", - "iOS Development", - "Containerization" - ], - "careerInformation": { - "currentPosition": { "title": "Site Reliability Engineer", "company": "Adobe" }, - "pastPositions": [ - { - "title": "Mobile Developer", - "company": "Zoom", - "startDate": { - "$date": "2024-06-21T00:02:38.632Z" - }, - "endDate": { - "$date": "2028-04-18T14:26:05.342Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a193" - } - }, - { - "title": "Android Developer", - "company": "GitHub", - "startDate": { - "$date": "2024-06-21T00:02:38.632Z" - }, - "endDate": { - "$date": "2028-01-11T11:38:10.734Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a194" - } - }, - { - "title": "Test Engineer", - "company": "Slack", - "startDate": { - "$date": "2024-06-21T00:02:38.632Z" - }, - "endDate": { - "$date": "2025-11-16T14:33:54.691Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a195" - } - }, - { - "title": "Senior Software Engineer", - "company": "Stripe", - "startDate": { - "$date": "2024-06-21T00:02:38.632Z" - }, - "endDate": { - "$date": "2027-09-12T14:00:10.608Z" - }, - "_id": { - "$oid": "6674c31e95590f9fd945a196" - } - } - ] - }, - "education": [], - "projects": [ - { - "name": "FoodDelivery", - "description": "Online food delivery platform connecting restaurants with customers for food ordering.", - "link": "https://github.com/username/fooddelivery", - "_id": { - "$oid": "6674c31e95590f9fd945a197" - } - }, - { - "name": "MediCare", - "description": "Medical appointment scheduling and patient management system for healthcare providers.", - "link": "https://github.com/username/medicare", - "_id": { - "$oid": "6674c31e95590f9fd945a198" - } - }, - { - "name": "SmartCity", - "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", - "link": "https://github.com/username/smartcity", - "_id": { - "$oid": "6674c31e95590f9fd945a199" - } - }, - { - "name": "MediCare", - "description": "Medical appointment scheduling and patient management system for healthcare providers.", - "link": "https://github.com/username/medicare", - "_id": { - "$oid": "6674c31e95590f9fd945a19a" - } - }, - { - "name": "SmartInventory", - "description": "Inventory management system with RFID and IoT integration for tracking assets.", - "link": "https://github.com/username/smartinventory", - "_id": { - "$oid": "6674c31e95590f9fd945a19b" - } - } - ], - "personalBio": "Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.", - "testimonials": [ - { - "from": "Noah Wilson", - "relation": "Manager at DataTech Solutions", - "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", - "_id": { - "$oid": "6674c31e95590f9fd945a19c" - } - }, - { - "from": "Emma Watson", - "relation": "Director of Engineering at FutureTech", - "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", - "_id": { - "$oid": "6674c31e95590f9fd945a19d" - } - }, - { - "from": "Sophia Martinez", - "relation": "Director of Engineering at FutureTech", - "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", - "_id": { - "$oid": "6674c31e95590f9fd945a19e" - } - } - ], - "socialMediaLinks": { "twitter": "https://x.com/Niki-Glaysher-fake", "other": [] }, - "availabilityForNetworking": false, - "bootcampExperience": "Codesmith", - "achievementsAndCertifications": [], - "volunteerWork": [], - "eventParticipation": [], - "gallery": [], - "_id": { - "$oid": "6674c31e95590f9fd945a192" - }, - "blogOrWriting": [], - "__v": 0 - } -] diff --git a/scripts/db/mongo-dev-init/MOCK_THREADS.json b/scripts/db/mongo-dev-init/MOCK_THREADS.json deleted file mode 100644 index b17269de..00000000 --- a/scripts/db/mongo-dev-init/MOCK_THREADS.json +++ /dev/null @@ -1,322 +0,0 @@ -[ - { - "user": { - "$oid": "66723da68f368f285d304acd" - }, - "forum": { - "$oid": "6674c31e95590f9fd9459e5c" - }, - "title": "Full Stack Development: Best Practices", - "content": "Best practices, tools, and frameworks for mastering full-stack development. How do you balance frontend and backend development responsibilities?", - "createdAt": { - "$date": "2024-06-21T00:02:39.500Z" - }, - "updatedAt": { - "$date": "2025-01-08T07:19:52.111Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a203" - }, - "__v": 0 - }, - { - "user": { - "$oid": "6644c602515c654def9b2ae7" - }, - "forum": { - "$oid": "6674c31e95590f9fd9459e5c" - }, - "title": "AI Ethics: Bias, Accountability, and Transparency", - "content": "Exploring ethical considerations in AI development, including bias mitigation, accountability frameworks, and transparency practices.", - "createdAt": { - "$date": "2024-06-21T00:02:39.500Z" - }, - "updatedAt": { - "$date": "2027-08-22T12:54:42.090Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a204" - }, - "__v": 0 - }, - { - "user": { - "$oid": "6644c768515c654def9b2b09" - }, - "forum": { - "$oid": "6674c31e95590f9fd9459e5c" - }, - "title": "JavaScript Frameworks Comparison", - "content": "Comparing popular JavaScript frameworks like React, Angular, and Vue.js. Share your experiences, strengths, and weaknesses of each framework.", - "createdAt": { - "$date": "2024-06-21T00:02:39.500Z" - }, - "updatedAt": { - "$date": "2028-03-07T02:35:36.257Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a205" - }, - "__v": 0 - }, - { - "user": { - "$oid": "66723da68f368f285d304acd" - }, - "forum": { - "$oid": "6674c31e95590f9fd9459e5a" - }, - "title": "Cybersecurity Threats: Prevention and Response", - "content": "Discussing common cybersecurity threats and strategies for prevention and incident response. How do you secure your applications and data?", - "createdAt": { - "$date": "2024-06-21T00:02:39.501Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.501Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a206" - }, - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dc4" - }, - "forum": { - "$oid": "6674c31e95590f9fd9459e5b" - }, - "title": "Interview Preparation Tips", - "content": "Preparing for software engineering interviews? Discussing strategies, common interview questions, and resources to ace technical interviews.", - "createdAt": { - "$date": "2024-06-21T00:02:39.500Z" - }, - "updatedAt": { - "$date": "2028-01-03T07:43:52.724Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a207" - }, - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dde" - }, - "forum": { - "$oid": "6674c31e95590f9fd9459e5b" - }, - "title": "Open Source Projects: Contributions and Impact", - "content": "Discussing the impact of open-source projects on the tech industry and society. How can open-source initiatives drive innovation and collaboration?", - "createdAt": { - "$date": "2024-06-21T00:02:39.501Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.501Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a208" - }, - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459de7" - }, - "forum": { - "$oid": "6674c31e95590f9fd9459e59" - }, - "title": "API Design: Best Practices and Guidelines", - "content": "Exploring best practices, design patterns, and guidelines for designing robust and developer-friendly APIs. What makes a good API?", - "createdAt": { - "$date": "2024-06-21T00:02:39.500Z" - }, - "updatedAt": { - "$date": "2024-12-28T14:26:53.154Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a209" - }, - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dbd" - }, - "forum": { - "$oid": "6674c31e95590f9fd9459e59" - }, - "title": "How to Improve Code Review Process?", - "content": "Seeking advice on optimizing our team's code review process. What tools and practices do you use to ensure effective code reviews and maintain code quality?", - "createdAt": { - "$date": "2024-06-21T00:02:39.500Z" - }, - "updatedAt": { - "$date": "2026-12-28T21:52:51.888Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a20a" - }, - "__v": 0 - }, - { - "user": { - "$oid": "6644c7f7515c654def9b2b18" - }, - "forum": { - "$oid": "6674c31e95590f9fd9459e5d" - }, - "title": "Python vs Java: Which is Better for Backend Development?", - "content": "Debating the pros and cons of Python and Java for backend development. Share your experiences and preferences in choosing a backend programming language.", - "createdAt": { - "$date": "2024-06-21T00:02:39.502Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.502Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a20b" - }, - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dae" - }, - "forum": { - "$oid": "6674c31e95590f9fd9459e5d" - }, - "title": "Tech Startups: Lessons Learned and Tips", - "content": "Sharing lessons learned, success stories, and practical tips for launching and scaling tech startups. What challenges did you face?", - "createdAt": { - "$date": "2024-06-21T00:02:39.500Z" - }, - "updatedAt": { - "$date": "2025-02-16T19:16:47.598Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a20c" - }, - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dbd" - }, - "forum": { - "$oid": "6674c31e95590f9fd9459e5c" - }, - "title": "Continuous Integration and Deployment (CI/CD)", - "content": "Exploring CI/CD pipelines, best practices, and tools for automating software delivery processes. Share your experiences and tips for implementing CI/CD.", - "createdAt": { - "$date": "2024-06-21T00:02:39.500Z" - }, - "updatedAt": { - "$date": "2025-11-18T11:19:26.269Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a20d" - }, - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dd1" - }, - "forum": { - "$oid": "6674c31e95590f9fd9459e5c" - }, - "title": "AR/VR Development: Tools and Platforms", - "content": "Discussing tools, platforms, and development techniques for creating augmented reality (AR) and virtual reality (VR) applications.", - "createdAt": { - "$date": "2024-06-21T00:02:39.500Z" - }, - "updatedAt": { - "$date": "2028-01-03T05:20:56.159Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a20e" - }, - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dc2" - }, - "forum": { - "$oid": "6674c31e95590f9fd9459e5c" - }, - "title": "Big Data Analytics: Tools and Techniques", - "content": "Exploring tools, frameworks, and techniques for analyzing and deriving insights from large datasets. How do you handle big data challenges?", - "createdAt": { - "$date": "2024-06-21T00:02:39.500Z" - }, - "updatedAt": { - "$date": "2025-09-06T15:19:26.698Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a20f" - }, - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dc5" - }, - "forum": { - "$oid": "6674c31e95590f9fd9459e59" - }, - "title": "UX/UI Design Principles for Developers", - "content": "Exploring UX/UI design principles and best practices for developers. How can developers contribute to creating user-friendly and visually appealing interfaces?", - "createdAt": { - "$date": "2024-06-21T00:02:39.502Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.502Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a210" - }, - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dd3" - }, - "forum": { - "$oid": "6674c31e95590f9fd9459e5a" - }, - "title": "Introduction to Docker Containers", - "content": "New to Docker and containers? Let's discuss the basics, benefits, and practical applications of Docker in software development and deployment.", - "createdAt": { - "$date": "2024-06-21T00:02:39.502Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.502Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a211" - }, - "__v": 0 - }, - { - "user": { - "$oid": "6674c31695590f9fd9459dcc" - }, - "forum": { - "$oid": "6674c31e95590f9fd9459e5b" - }, - "title": "Agile Development: Scrum vs Kanban", - "content": "Comparing Scrum and Kanban methodologies for Agile software development. Which approach works better for your team and why?", - "createdAt": { - "$date": "2024-06-21T00:02:39.502Z" - }, - "updatedAt": { - "$date": "2024-06-21T00:02:39.502Z" - }, - "_id": { - "$oid": "6674c31f95590f9fd945a212" - }, - "__v": 0 - } -] diff --git a/scripts/db/mongo-dev-init/MOCK_USERS.json b/scripts/db/mongo-dev-init/MOCK_USERS.json deleted file mode 100644 index d8c9e776..00000000 --- a/scripts/db/mongo-dev-init/MOCK_USERS.json +++ /dev/null @@ -1,1702 +0,0 @@ -[ - { - "firstName": "Testy", - "lastName": "McTesterson", - "email": "tester@codehammers.com", - "profilePic": "https://www.codesmith.io/hubfs/Screen%20Shot%202024-06-10%20at%2010.46.24%20AM.png", - "password": "$2a$10$c0X2SgxNDviyiSfaWEP8NOznd4tOy0VnOvYOsm6zzcUOM9.JHlNLO", - "_id": { - "$oid": "66723da68f368f285d304ac9" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.740Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.740Z" - }, - "__v": 0 - }, - { - "firstName": "Jane", - "lastName": "Doe", - "email": "jane@codehammers.com", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$d.8UHxw3IQ3NGKR368sgFunb26/ayAHkbVd3JjDdD6ufAvgumU.om", - "_id": { - "$oid": "6644c768515c654def9b2b09" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.740Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.740Z" - }, - "__v": 0 - }, - { - "firstName": "John", - "lastName": "Dough", - "email": "john@codehammers.com", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$4Xjvk2vKv2penssuOg8d0OHcAgGAAIEQb/hRcfsV4FgYIiQFAlw.2", - "_id": { - "$oid": "6644c602515c654def9b2ae7" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.740Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.740Z" - }, - "__v": 0 - }, - { - "firstName": "Jaime", - "lastName": "Doh", - "email": "jaime@codehammers.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$/bKBoPbjvbz661JvEyrX0e4hHgdpcINx2Kredu1SXs1kaygIesX5a", - "_id": { - "$oid": "6644c7f7515c654def9b2b18" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.741Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.741Z" - }, - "__v": 0 - }, - { - "firstName": "Homer", - "lastName": "Simpson", - "email": "homer@donuts.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$1I4VeLgKfhYeraIlKViBSe2OWsIvBLg7wFXyH8G6SGWBAWY8qg0wK", - "_id": { - "$oid": "66723da68f368f285d304acd" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.741Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.741Z" - }, - "__v": 0 - }, - { - "firstName": "Corine", - "lastName": "Tugwell", - "email": "ctugwell0@ovh.net", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$bAEpatT903JIyk/8AldztuqIz5afslRUVTRPJun4naBUmXvc5c0fO", - "_id": { - "$oid": "6674c31695590f9fd9459d95" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.741Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.741Z" - }, - "__v": 0 - }, - { - "firstName": "Brody", - "lastName": "Cumpton", - "email": "bcumpton1@bluehost.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$6GrwWSo.NSETz5DPCOwOHO9xNKoOhzmAwCPptin4BUfZJcbp2yxAa", - "_id": { - "$oid": "6674c31695590f9fd9459d96" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.741Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.741Z" - }, - "__v": 0 - }, - { - "firstName": "Moselle", - "lastName": "Duro", - "email": "mduro2@technorati.com", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$wuuA/xXCwgID/f22BVSaJuZT1LOPhgvZzxmqQGK1jG7xmEfXjse6S", - "_id": { - "$oid": "6674c31695590f9fd9459d97" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.741Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.741Z" - }, - "__v": 0 - }, - { - "firstName": "Winifred", - "lastName": "Carnelley", - "email": "wcarnelley3@ucsd.edu", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$nYnt.4qOeYnoj.V4nqeAXuHI21SjOIlisTSmgKilssNlOfpc0py5W", - "_id": { - "$oid": "6674c31695590f9fd9459d98" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.741Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.741Z" - }, - "__v": 0 - }, - { - "firstName": "Marchelle", - "lastName": "Truin", - "email": "mtruin4@stumbleupon.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$8mfkeb6./g1rjvkk24a/g.XkKeuzgpjix0unQDZJ/y1MA4i.Wtnlm", - "_id": { - "$oid": "6674c31695590f9fd9459d99" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.741Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.741Z" - }, - "__v": 0 - }, - { - "firstName": "Cally", - "lastName": "Gisbey", - "email": "cgisbey5@squarespace.com", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$3XFoIpuYAevbYJAjDVlQZe432ZkrjjSXBavewnGy3ZAhNrpae8KRe", - "_id": { - "$oid": "6674c31695590f9fd9459d9a" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.742Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.742Z" - }, - "__v": 0 - }, - { - "firstName": "Arlina", - "lastName": "Moodie", - "email": "amoodie6@twitpic.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$S1SMFKC42HcbFe1HGyCNuOWlHEOZByMWiYQQ8SV8/TwRbW9MxDHsW", - "_id": { - "$oid": "6674c31695590f9fd9459d9b" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.742Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.742Z" - }, - "__v": 0 - }, - { - "firstName": "Shurlock", - "lastName": "Tytcomb", - "email": "stytcomb8@google.it", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$rBUjvNJcYzG1PPR0Fx4Z7eX/462JNC8co2yMTDhQ1N5jpeGv5ujla", - "_id": { - "$oid": "6674c31695590f9fd9459d9c" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.742Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.742Z" - }, - "__v": 0 - }, - { - "firstName": "Ermina", - "lastName": "Guyton", - "email": "eguyton9@blog.com", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$/ZiwIFa0JU5On5646dZVLeIq1iPJkbbOyQno.F4tFdcDHaImZN1VC", - "_id": { - "$oid": "6674c31695590f9fd9459d9d" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.742Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.742Z" - }, - "__v": 0 - }, - { - "firstName": "Shelton", - "lastName": "Halwood", - "email": "shalwooda@sciencedirect.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$uuUTsRN9JHk1ikLagbVrf.2Sbus/TSni3nRkvLZmWsR2o62l/Xf7G", - "_id": { - "$oid": "6674c31695590f9fd9459d9e" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.742Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.742Z" - }, - "__v": 0 - }, - { - "firstName": "Nigel", - "lastName": "Clemenzo", - "email": "nclemenzob@fotki.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$ZglrpFMSK6Z3aOBFB0uhXemRi2CWc.iQSRMY9JWM5sOu1SLE4A8Au", - "_id": { - "$oid": "6674c31695590f9fd9459d9f" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.742Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.742Z" - }, - "__v": 0 - }, - { - "firstName": "Colver", - "lastName": "Oswell", - "email": "coswellc@wsj.com", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$NPh/4KvzSPPD5S3tb0FzyuAWSqXdvAJspNNo7fEGBH02Yum0SR93W", - "_id": { - "$oid": "6674c31695590f9fd9459da0" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.742Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.742Z" - }, - "__v": 0 - }, - { - "firstName": "Saundra", - "lastName": "Normabell", - "email": "snormabelld@businessinsider.com", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$nEyqx1DkU5Csqmr2fH7ZxOLlcDOm4EyXFzvY/ndEi0av664fETtG2", - "_id": { - "$oid": "6674c31695590f9fd9459da1" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.742Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.742Z" - }, - "__v": 0 - }, - { - "firstName": "Grant", - "lastName": "Chasney", - "email": "gchasneye@mediafire.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$3Mjw3.Zy8Oa.LQdnhx47Eukk.ric0heo0H7T5rHjMGUJ5K1.W/PwC", - "_id": { - "$oid": "6674c31695590f9fd9459da2" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.742Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.742Z" - }, - "__v": 0 - }, - { - "firstName": "Franni", - "lastName": "Chance", - "email": "fchancef@ted.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$vzEqPWVbwZ6ttUM0/apgKe1mtSkuoZdSETZuCL3xv68SKqzR7BVVG", - "_id": { - "$oid": "6674c31695590f9fd9459da3" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.742Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.742Z" - }, - "__v": 0 - }, - { - "firstName": "Clarance", - "lastName": "Meecher", - "email": "cmeecherg@addthis.com", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$gNzhVjb92kkMHObvxKUgwet8JqxMHzWGrerev1R/SXeg..ujeQP2e", - "_id": { - "$oid": "6674c31695590f9fd9459da4" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.743Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.743Z" - }, - "__v": 0 - }, - { - "firstName": "Katharine", - "lastName": "Lancett", - "email": "klancetth@sfgate.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$Dqgx6cItSwnyLKLWgcCddehWUZwHDrBg.KVRlMtQRDz4/J.cK8XCO", - "_id": { - "$oid": "6674c31695590f9fd9459da5" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.743Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.743Z" - }, - "__v": 0 - }, - { - "firstName": "Margaret", - "lastName": "Dubber", - "email": "mdubberi@dropbox.com", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$2sXwrCie3RBcISPx.n1JXOZ8/7EtXvWoaX2cCO5OpyOpbZSPfWpfm", - "_id": { - "$oid": "6674c31695590f9fd9459da6" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.743Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.743Z" - }, - "__v": 0 - }, - { - "firstName": "Addy", - "lastName": "Fass", - "email": "afassj@vistaprint.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$eR/bdbrlnaYZBCUuOTANguZ9XxddD1nQv8/jy747NB4QZceq.k6wK", - "_id": { - "$oid": "6674c31695590f9fd9459da7" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.743Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.743Z" - }, - "__v": 0 - }, - { - "firstName": "Sollie", - "lastName": "Puckinghorne", - "email": "spuckinghornek@topsy.com", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$QjgeksX.EEVfiauQUAixdu4IQ8sxqPICrZO9CsdT76W1jkhPMDgFO", - "_id": { - "$oid": "6674c31695590f9fd9459da8" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.743Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.743Z" - }, - "__v": 0 - }, - { - "firstName": "Xena", - "lastName": "Tomczynski", - "email": "xtomczynskil@ted.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$iL8vrM9gOoebGLP.lKHQi.sJYBC.pIVQPqyf7d3GwRPl1TFsXfQxG", - "_id": { - "$oid": "6674c31695590f9fd9459da9" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.743Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.743Z" - }, - "__v": 0 - }, - { - "firstName": "Harmonie", - "lastName": "Karpinski", - "email": "hkarpinskim@g.co", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$Qc1P0ObDVoDMY5Z2mRfZv.rI3eFVMzVsiER.JdeX.BiZyQvia6Foy", - "_id": { - "$oid": "6674c31695590f9fd9459daa" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.743Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.743Z" - }, - "__v": 0 - }, - { - "firstName": "Marielle", - "lastName": "Crocket", - "email": "mcrocketn@craigslist.org", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$Lz1SenS74eYvYWxTAA0GouQH/P.yzRzbeNQC5AW1FiwDmINx3/mU.", - "_id": { - "$oid": "6674c31695590f9fd9459dab" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.743Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.743Z" - }, - "__v": 0 - }, - { - "firstName": "Ulrick", - "lastName": "Blasing", - "email": "ublasingo@yahoo.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$KdUpL.A42993PSdgR3grkOAAlgdMNjCNKfr2KEp31SftCKMwaKhjq", - "_id": { - "$oid": "6674c31695590f9fd9459dac" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.743Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.743Z" - }, - "__v": 0 - }, - { - "firstName": "Cheri", - "lastName": "Danielsson", - "email": "cdanielssonp@example.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$38mEsJo9ZBkA7i0eGuNFBelle930q9Koamnpl/R.WbM2ksUxwsGCK", - "_id": { - "$oid": "6674c31695590f9fd9459dad" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.743Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.743Z" - }, - "__v": 0 - }, - { - "firstName": "Durand", - "lastName": "Joron", - "email": "djoronq@google.cn", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$dR986nCxXbKUO5AdsP0nWuBzxuYWT7tZD9FI8ms3./WQkqSO.rnPS", - "_id": { - "$oid": "6674c31695590f9fd9459dae" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.744Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.744Z" - }, - "__v": 0 - }, - { - "firstName": "Kristien", - "lastName": "Burgett", - "email": "kburgettr@kickstarter.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$SwzXRtmThsLIga6xLNMdIuUgtkC5XXcNFVGDde.RqnLaN2PlZbZjG", - "_id": { - "$oid": "6674c31695590f9fd9459daf" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.744Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.744Z" - }, - "__v": 0 - }, - { - "firstName": "Kaia", - "lastName": "Fassmann", - "email": "kfassmanns@ted.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$ZjqbLPNZqTB66nSvHNwZEuI6T0EgmlHO6LmyhIaX4hLDFP9vcTW6K", - "_id": { - "$oid": "6674c31695590f9fd9459db0" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.744Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.744Z" - }, - "__v": 0 - }, - { - "firstName": "Lockwood", - "lastName": "Moxham", - "email": "lmoxhamt@wikia.com", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$Pgv1mMBFMcPLw.Ru75vlJeBeDOstXAPk4cVNwmYPpA5DHeUCxbwVC", - "_id": { - "$oid": "6674c31695590f9fd9459db1" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.744Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.744Z" - }, - "__v": 0 - }, - { - "firstName": "Tessie", - "lastName": "Sugden", - "email": "tsugdenu@npr.org", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$bvYvx8tjsUX2S4h.7fZH1OSet1zW1VeszDkqK5b71bfW1DGngB1xq", - "_id": { - "$oid": "6674c31695590f9fd9459db2" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.744Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.744Z" - }, - "__v": 0 - }, - { - "firstName": "Rea", - "lastName": "Jeremiah", - "email": "rjeremiahv@wikispaces.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$FfEBgXBRMwOyS/IV60fhe.zGy0arwEXA3yAlSUsRrDRWtOdbCtMTy", - "_id": { - "$oid": "6674c31695590f9fd9459db3" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.744Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.744Z" - }, - "__v": 0 - }, - { - "firstName": "Cassie", - "lastName": "Meadows", - "email": "cmeadowsw@smugmug.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$ECz527fWRRJVrEY0rLNJau8.N7EjiIqvZZNZPqgjjZvxEfkytdVUO", - "_id": { - "$oid": "6674c31695590f9fd9459db4" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.744Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.744Z" - }, - "__v": 0 - }, - { - "firstName": "Kelci", - "lastName": "Bastide", - "email": "kbastidex@latimes.com", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$XfZLE6R6uzyO/Mltvg3Il.FuYBLXN2E1GlO4o9eb6PoHRwEkLc8.e", - "_id": { - "$oid": "6674c31695590f9fd9459db5" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.744Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.744Z" - }, - "__v": 0 - }, - { - "firstName": "Thurston", - "lastName": "Speechly", - "email": "tspeechlyy@plala.or.jp", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$ZSSVHxCfb9W3kDKMJ1HYiO5aG1EqMvlxC9Icde0FJcAj4xr32c2/.", - "_id": { - "$oid": "6674c31695590f9fd9459db6" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.744Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.744Z" - }, - "__v": 0 - }, - { - "firstName": "Silas", - "lastName": "Reyes", - "email": "sreyesz@google.co.jp", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$A2R1sxcW.o8cUqZqOZb0tee2n5/nHG425PHTSRiM/uZgDkfdXEac.", - "_id": { - "$oid": "6674c31695590f9fd9459db7" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.744Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.744Z" - }, - "__v": 0 - }, - { - "firstName": "Marley", - "lastName": "Boshard", - "email": "mboshard10@tiny.cc", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$WQ9mJLUpUp8EHOO4sLcqK.dMv/oeegUOSBivgoYiKKsYqVnSAOCwq", - "_id": { - "$oid": "6674c31695590f9fd9459db8" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.745Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.745Z" - }, - "__v": 0 - }, - { - "firstName": "Eb", - "lastName": "Dargie", - "email": "edargie11@artisteer.com", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$pHLNPYbTm8TjtCs2rgG8H.AXhe/yfi0CV3pH7hb9Pvh3G5QIFv3.u", - "_id": { - "$oid": "6674c31695590f9fd9459db9" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.745Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.745Z" - }, - "__v": 0 - }, - { - "firstName": "Dian", - "lastName": "Dackombe", - "email": "ddackombe13@ihg.com", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$fyeUovoACjivxo/r5oVCrO7ZB1bNDMtQSKAaJQnXAIFi4jkKB6VB2", - "_id": { - "$oid": "6674c31695590f9fd9459dba" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.745Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.745Z" - }, - "__v": 0 - }, - { - "firstName": "Freedman", - "lastName": "Scrafton", - "email": "fscrafton14@posterous.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$UhJBjqan9EwBza.OIaoocuRJIMns2.DSQRo1zdU0jCkf9MUofLNgK", - "_id": { - "$oid": "6674c31695590f9fd9459dbb" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.745Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.745Z" - }, - "__v": 0 - }, - { - "firstName": "Tabbitha", - "lastName": "Jolliffe", - "email": "tjolliffe15@bbb.org", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$ri1xuKY9y5x61geNfZVeaOm3x6FQZBZ/AZNaPC42PMfSqFVzIZR96", - "_id": { - "$oid": "6674c31695590f9fd9459dbc" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.745Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.745Z" - }, - "__v": 0 - }, - { - "firstName": "Jordon", - "lastName": "Ganley", - "email": "jganley16@geocities.jp", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$uyYmPhoHR4X7ZC8nPtcuVO1g7MyMk7QnDUvdZwI19fxFVM.O76HqO", - "_id": { - "$oid": "6674c31695590f9fd9459dbd" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.745Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.745Z" - }, - "__v": 0 - }, - { - "firstName": "Annora", - "lastName": "Brigge", - "email": "abrigge17@joomla.org", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$6JCzmOuJTX7ZrVPoE1fklObzQJT4dfiLScKeNkgk2hOZIVdlz/HOa", - "_id": { - "$oid": "6674c31695590f9fd9459dbe" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.745Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.745Z" - }, - "__v": 0 - }, - { - "firstName": "Bethanne", - "lastName": "Osband", - "email": "bosband18@blinklist.com", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$OswubXObu/d6YNVY5CVWf.OSGEhi8fwioSabaBqJaLAgF3VDbpnvu", - "_id": { - "$oid": "6674c31695590f9fd9459dbf" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.745Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.745Z" - }, - "__v": 0 - }, - { - "firstName": "Hedda", - "lastName": "Tallquist", - "email": "htallquist19@cisco.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$rLc8dMDd5UySXVxXZ8TVtuoRZk6bI4/Tn4iffS2sGWWjZ4vUTGIpu", - "_id": { - "$oid": "6674c31695590f9fd9459dc0" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.745Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.745Z" - }, - "__v": 0 - }, - { - "firstName": "Lynelle", - "lastName": "Grosvener", - "email": "lgrosvener1a@google.cn", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$gNRJ/WPB1Emp.16AHxm4GOM0fAcF82QH53FZoBWA4mGWD/dI1AVdi", - "_id": { - "$oid": "6674c31695590f9fd9459dc1" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.745Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.745Z" - }, - "__v": 0 - }, - { - "firstName": "Lenee", - "lastName": "Pethybridge", - "email": "lpethybridge1b@chron.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$gvnmudn22gn.Am/nnMHI1elK4QYC9r8ADzR4/xgGHQiTA7PjM/102", - "_id": { - "$oid": "6674c31695590f9fd9459dc2" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.746Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.746Z" - }, - "__v": 0 - }, - { - "firstName": "Ninnette", - "lastName": "Maden", - "email": "nmaden1c@sciencedirect.com", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$GYKqSA4hIp4SNyoC7veNpuE6ffph0TuMHFjL1kSpe1knH.vnbT2o6", - "_id": { - "$oid": "6674c31695590f9fd9459dc3" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.746Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.746Z" - }, - "__v": 0 - }, - { - "firstName": "Jolynn", - "lastName": "Catenot", - "email": "jcatenot1d@oakley.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$uplHQL2IV9m31LbtUvqWE.rnFigJBJJ.Or4hhxoIkydSL0EKhQAsS", - "_id": { - "$oid": "6674c31695590f9fd9459dc4" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.746Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.746Z" - }, - "__v": 0 - }, - { - "firstName": "Marabel", - "lastName": "Puleston", - "email": "mpuleston1e@utexas.edu", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$MXRKFekNTiWZ6hjEpo2Cnez7GEujOvTYoLh7DqgjOYF6VL2rdOMUa", - "_id": { - "$oid": "6674c31695590f9fd9459dc5" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.746Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.746Z" - }, - "__v": 0 - }, - { - "firstName": "Bryn", - "lastName": "Arias", - "email": "barias1f@flavors.me", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$ZgOaQPP6FIBJCPh.ZS1CBuZqbvseVUqrW7nergd9v5zQQe5tbtsIS", - "_id": { - "$oid": "6674c31695590f9fd9459dc6" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.746Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.746Z" - }, - "__v": 0 - }, - { - "firstName": "Arni", - "lastName": "Jertz", - "email": "ajertz1g@tuttocitta.it", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$uC9ta9vHBA3WaS2ups/0xOcy/gzHVC07gVgnZuhXair3nAmXghIMm", - "_id": { - "$oid": "6674c31695590f9fd9459dc7" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.746Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.746Z" - }, - "__v": 0 - }, - { - "firstName": "Maegan", - "lastName": "Mulhall", - "email": "mmulhall1h@wikipedia.org", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$4B9j9zRhqkovXBF4.gDBfO5tGDW0.AfBU4dgPK6iTDicugjW/vIvq", - "_id": { - "$oid": "6674c31695590f9fd9459dc8" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.746Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.746Z" - }, - "__v": 0 - }, - { - "firstName": "Nicolai", - "lastName": "Brugsma", - "email": "nbrugsma1i@4shared.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$SThp9poPTHZyesEI/Wp9Hu1SYX7xijxJwPsEO8Ey9cinKmM2Chw1.", - "_id": { - "$oid": "6674c31695590f9fd9459dc9" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.746Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.746Z" - }, - "__v": 0 - }, - { - "firstName": "Bryan", - "lastName": "Heffy", - "email": "bheffy1j@cbsnews.com", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$v25/ff2inKjX2gmGa/X4r.zFsf1WicjrMb7ZdU5uaLIKYmB5H6pua", - "_id": { - "$oid": "6674c31695590f9fd9459dca" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.746Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.746Z" - }, - "__v": 0 - }, - { - "firstName": "Donavon", - "lastName": "Osichev", - "email": "dosichev1k@pinterest.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$.hatJxwrSHK0/EbtKMt/i.Xh9yeUnD.r8W8JVmfwz0Slg/0CZfmZO", - "_id": { - "$oid": "6674c31695590f9fd9459dcb" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.746Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.746Z" - }, - "__v": 0 - }, - { - "firstName": "Kennan", - "lastName": "Dugget", - "email": "kdugget1l@opensource.org", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$a/v195KwLU7zgEEdonr0Jeo2N8nh2fTEF6Oji1ove7cqrb7KANphG", - "_id": { - "$oid": "6674c31695590f9fd9459dcc" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.747Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.747Z" - }, - "__v": 0 - }, - { - "firstName": "Paton", - "lastName": "Climance", - "email": "pclimance1m@webnode.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$aVBCVkVjgElPwEUsh4U53Obx9l8piY6AnBLyhWszqKwT3Sl/apRiu", - "_id": { - "$oid": "6674c31695590f9fd9459dcd" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.747Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.747Z" - }, - "__v": 0 - }, - { - "firstName": "Caitrin", - "lastName": "McAllister", - "email": "cmcallister1n@ft.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$WAZm5uVfMl6Kf21LOcKicOe/y/GkMCZI8szH9NP4eYWtOqOXxrQ7.", - "_id": { - "$oid": "6674c31695590f9fd9459dce" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.747Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.747Z" - }, - "__v": 0 - }, - { - "firstName": "Sephira", - "lastName": "Kaming", - "email": "skaming1o@about.me", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$kADMzPXafPh2uBM3w7kyQud/gN7hjRk7/uEDo1cXGbiOpxuYzHIiS", - "_id": { - "$oid": "6674c31695590f9fd9459dcf" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.747Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.747Z" - }, - "__v": 0 - }, - { - "firstName": "Fraser", - "lastName": "Londsdale", - "email": "flondsdale1p@freewebs.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$gQJXxWnNhiJ0KquheSQV5e3bvdiNacu8P.vmLF0hhGpGQQqMr/DPS", - "_id": { - "$oid": "6674c31695590f9fd9459dd0" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.747Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.747Z" - }, - "__v": 0 - }, - { - "firstName": "Alyssa", - "lastName": "Bangham", - "email": "abangham1q@usgs.gov", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$N.kjDboSu/I9UofwKNU4WedzhcX6IbZjpV0i0OmsBZOVjb/HXuqFe", - "_id": { - "$oid": "6674c31695590f9fd9459dd1" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.747Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.747Z" - }, - "__v": 0 - }, - { - "firstName": "Clarette", - "lastName": "Alcock", - "email": "calcock1r@amazonaws.com", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$aXKoFly5vjRD7aaGc.ebte/BwsWa9qvExRZptlco8VKkiCHBCJ30.", - "_id": { - "$oid": "6674c31695590f9fd9459dd2" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.747Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.747Z" - }, - "__v": 0 - }, - { - "firstName": "Lizbeth", - "lastName": "France", - "email": "lfrance1s@yahoo.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$V7r5GhOPTwlWFFJAq/QGTe56A/sLD.wa1PnVpNiQqQBZVOIvAPXLO", - "_id": { - "$oid": "6674c31695590f9fd9459dd3" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.747Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.747Z" - }, - "__v": 0 - }, - { - "firstName": "Abramo", - "lastName": "Sparkwell", - "email": "asparkwell1t@berkeley.edu", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$ivCLz8aoMvoQp4sLJn1yL.33CImt7FRT73f1rn6Z2XY/z5.qJVyK6", - "_id": { - "$oid": "6674c31695590f9fd9459dd4" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.747Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.747Z" - }, - "__v": 0 - }, - { - "firstName": "Darb", - "lastName": "Coen", - "email": "dcoen1u@prlog.org", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$n9oqbia4uajj3oQGvSd5S.iyvlzPAQUwS99S.ZuPkH9Y03eHQAG8S", - "_id": { - "$oid": "6674c31695590f9fd9459dd5" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.747Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.747Z" - }, - "__v": 0 - }, - { - "firstName": "Gusty", - "lastName": "Besnardeau", - "email": "gbesnardeau1v@themeforest.net", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$pVjTGQqhjbjBtyn5LlcOQO3MbF6it6xS34B1jj.DHV3FOcO0N1rfG", - "_id": { - "$oid": "6674c31695590f9fd9459dd6" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.748Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.748Z" - }, - "__v": 0 - }, - { - "firstName": "Randy", - "lastName": "Verriour", - "email": "rverriour1w@ebay.co.uk", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", - "password": "$2a$10$UsmREDlpRZfHfErSJeTPkeg4v2a0dGhT.YjyU80oHg.uGVtcZJbd2", - "_id": { - "$oid": "6674c31695590f9fd9459dd7" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.748Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.748Z" - }, - "__v": 0 - }, - { - "firstName": "Israel", - "lastName": "Canti", - "email": "icanti1x@businesswire.com", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$FSp4Y0VMVciXD7EqEdNH3eiVga32oqbLik.RV29gwlCcyrqDFeE8m", - "_id": { - "$oid": "6674c31695590f9fd9459dd8" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.748Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.748Z" - }, - "__v": 0 - }, - { - "firstName": "Micky", - "lastName": "Dunseath", - "email": "mdunseath1y@miibeian.gov.cn", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$SfYlFv1QEET9TEsjx2QlpeUHnDJ1fp8HWYQRMLHCvZaOmJhT4O.DG", - "_id": { - "$oid": "6674c31695590f9fd9459dd9" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.748Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.748Z" - }, - "__v": 0 - }, - { - "firstName": "Gabi", - "lastName": "Hardcastle", - "email": "ghardcastle1z@weebly.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$MyVgz59QkXAJnvE7wkxPneTWSe3Uv0yTpnLWX885YuhpK/8rXI3ea", - "_id": { - "$oid": "6674c31695590f9fd9459dda" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.748Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.748Z" - }, - "__v": 0 - }, - { - "firstName": "Rakel", - "lastName": "Scothron", - "email": "rscothron20@yellowbook.com", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$0Sm1qJ8.946lXRPaVX.ZiemYW9CZKlN7k1PUv2HQLz/iCWvLc350e", - "_id": { - "$oid": "6674c31695590f9fd9459ddb" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.748Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.748Z" - }, - "__v": 0 - }, - { - "firstName": "Gretel", - "lastName": "Sitford", - "email": "gsitford21@tinyurl.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$8mdJhXhnZG.ySGxao.Nfkuekkt.SGlTKpK3jKzETP4BToeS5zzPOy", - "_id": { - "$oid": "6674c31695590f9fd9459ddc" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.748Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.748Z" - }, - "__v": 0 - }, - { - "firstName": "Rosalinda", - "lastName": "Naisby", - "email": "rnaisby22@nationalgeographic.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$i9JWDLwMMILPMk2O75yR..FffuJwonjEB9ahqUmaORqr4UeeqGgOS", - "_id": { - "$oid": "6674c31695590f9fd9459ddd" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.748Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.748Z" - }, - "__v": 0 - }, - { - "firstName": "Thaddus", - "lastName": "Waddell", - "email": "twaddell23@nymag.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$4kkln2DaCNA3dSLcQNjlxedVkOHGIxQFI90rh.GbAVnDATdF4yFFu", - "_id": { - "$oid": "6674c31695590f9fd9459dde" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.748Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.748Z" - }, - "__v": 0 - }, - { - "firstName": "Nadia", - "lastName": "Zeale", - "email": "nzeale24@google.ru", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$n9Gs25xDbgm4h5Sm0gS45ODmNaNfurc53sOQGN46JU4THmJensIgO", - "_id": { - "$oid": "6674c31695590f9fd9459ddf" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.749Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.749Z" - }, - "__v": 0 - }, - { - "firstName": "Emmett", - "lastName": "Buckell", - "email": "ebuckell25@reddit.com", - "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", - "password": "$2a$10$WdiPdsmRKOi7HvivDf6Tb.Ah72yenh1FHojowhskGys0tReXsX7Yu", - "_id": { - "$oid": "6674c31695590f9fd9459de0" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.749Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.749Z" - }, - "__v": 0 - }, - { - "firstName": "Lavinia", - "lastName": "Baume", - "email": "lbaume26@tinyurl.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$jPfi56gG9AY5RAtTxMI8dO/YVDn145b6VrSyVeMTngHOlOpM.Wfci", - "_id": { - "$oid": "6674c31695590f9fd9459de1" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.749Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.749Z" - }, - "__v": 0 - }, - { - "firstName": "Janine", - "lastName": "Kitt", - "email": "jkitt27@wsj.com", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$/rqW4o1VGAJsSBBWArQ1sudZ/1tk5thl9p9H.RxJwcv5KPW6qH4da", - "_id": { - "$oid": "6674c31695590f9fd9459de2" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.749Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.749Z" - }, - "__v": 0 - }, - { - "firstName": "Beatrix", - "lastName": "Healey", - "email": "bhealey28@amazon.co.jp", - "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", - "password": "$2a$10$GUL6vJnhJXVjvC.0o0p/bessdPb/kvrUL/9xSNHqDwMVH47A4qC/u", - "_id": { - "$oid": "6674c31695590f9fd9459de3" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.749Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.749Z" - }, - "__v": 0 - }, - { - "firstName": "Simone", - "lastName": "Buske", - "email": "sbuske29@soundcloud.com", - "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", - "password": "$2a$10$I4Fb9znyB56AL3koGXIzeencGUofRvKTalp/0u2XwLBLy953WJ686", - "_id": { - "$oid": "6674c31695590f9fd9459de4" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.749Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.749Z" - }, - "__v": 0 - }, - { - "firstName": "Cristine", - "lastName": "Gaddesby", - "email": "cgaddesby2a@senate.gov", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$xEfVsFCe7qseNc3LLxzSP.vikLTH/VH2AlnOqGQpQ85THdHcBShIe", - "_id": { - "$oid": "6674c31695590f9fd9459de5" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.749Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.749Z" - }, - "__v": 0 - }, - { - "firstName": "Marta", - "lastName": "Daveren", - "email": "mdaveren2b@odnoklassniki.ru", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$GHpD3egZVkoIkucCdtdT.e/MKRoPwNgPlQOvW.VHJNayRgJR9nqze", - "_id": { - "$oid": "6674c31695590f9fd9459de6" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.749Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.749Z" - }, - "__v": 0 - }, - { - "firstName": "Nanon", - "lastName": "Gligoraci", - "email": "ngligoraci2c@addthis.com", - "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", - "password": "$2a$10$I43n3ob4fgpIJ5CWQix2LeEwFGYR.ztMSL7cEDv8mUVvd4x5h0tPC", - "_id": { - "$oid": "6674c31695590f9fd9459de7" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.750Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.750Z" - }, - "__v": 0 - }, - { - "firstName": "Donall", - "lastName": "Frapwell", - "email": "dfrapwell2d@hostgator.com", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$5suhT5mYsHREaFmUifsqaOXZFVvAQreimpTfcWdLAi.D.vh4zhM1O", - "_id": { - "$oid": "6674c31695590f9fd9459de8" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.750Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.750Z" - }, - "__v": 0 - }, - { - "firstName": "Beverlee", - "lastName": "Bangham", - "email": "bbangham2e@tamu.edu", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$vGHSBP2y9o0HzUDvRqItQubZRpQMEW50TjxsodBu8Z5ETbuQMetUG", - "_id": { - "$oid": "6674c31695590f9fd9459de9" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.750Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.750Z" - }, - "__v": 0 - }, - { - "firstName": "Englebert", - "lastName": "Bancroft", - "email": "ebancroft2f@ow.ly", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$a5uZQ4skXiMzWGpYZATsfuetqqfX.ON3DAxoIf8sJkbkPVt1uDIJ6", - "_id": { - "$oid": "6674c31695590f9fd9459dea" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.750Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.750Z" - }, - "__v": 0 - }, - { - "firstName": "Siegfried", - "lastName": "Castillou", - "email": "scastillou2g@reddit.com", - "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", - "password": "$2a$10$Xv5616/DIqPvzIrAiocYKurlFZiQrPx2G/ijZBX38BacshSrSK.6e", - "_id": { - "$oid": "6674c31695590f9fd9459deb" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.750Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.750Z" - }, - "__v": 0 - }, - { - "firstName": "Marvin", - "lastName": "Cranke", - "email": "mcranke2h@marketwatch.com", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$H7sdU7rI3jNlh1ZMte6qi.7oowzeaUIBAgZjURwLbcvyi0U7QGfXm", - "_id": { - "$oid": "6674c31695590f9fd9459dec" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.750Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.750Z" - }, - "__v": 0 - }, - { - "firstName": "Arne", - "lastName": "Rummin", - "email": "arummin2i@is.gd", - "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", - "password": "$2a$10$U2T4qto9PE6w07GbcPo2LuSMKPCiRxOthBK/NcvdIugtw1ib0vuga", - "_id": { - "$oid": "6674c31695590f9fd9459ded" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.750Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.750Z" - }, - "__v": 0 - }, - { - "firstName": "Seumas", - "lastName": "Feldberger", - "email": "sfeldberger2j@ning.com", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$AtmfjAr9ippLTkGoTEm28udWPLU.LnxQJFc6H1HCynYphWMwsvTGe", - "_id": { - "$oid": "6674c31695590f9fd9459dee" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.750Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.750Z" - }, - "__v": 0 - }, - { - "firstName": "Hilda", - "lastName": "Worham", - "email": "hworham2k@mail.ru", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$8kAf4CADvLbE0DYTFBqBbOjPwasq3ns9VfPn3OmullApA1eaNREyW", - "_id": { - "$oid": "6674c31695590f9fd9459def" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.750Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.750Z" - }, - "__v": 0 - }, - { - "firstName": "Winny", - "lastName": "O'Glessane", - "email": "woglessane2l@deviantart.com", - "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", - "password": "$2a$10$Vu37IHsmNqp.rkAJqi5c9OzWcNAjO1upb892DyQXI2B6AYZBtB3/C", - "_id": { - "$oid": "6674c31695590f9fd9459df0" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.751Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.751Z" - }, - "__v": 0 - }, - { - "firstName": "Gwenora", - "lastName": "Agge", - "email": "gagge2m@unesco.org", - "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", - "password": "$2a$10$UZxnUIjEqu0RM6tPlfcx8OEOxW9v7YuVbiwPRUl1PTSd90TDDH41q", - "_id": { - "$oid": "6674c31695590f9fd9459df1" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.751Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.751Z" - }, - "__v": 0 - }, - { - "firstName": "Piggy", - "lastName": "Torrisi", - "email": "ptorrisi2n@goodreads.com", - "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", - "password": "$2a$10$ttPjCLUovnyIPXhSxuEr2umGAealHpwTde3yJiQGoZVTBkEEpbF7m", - "_id": { - "$oid": "6674c31695590f9fd9459df2" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.751Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.751Z" - }, - "__v": 0 - }, - { - "firstName": "Niki", - "lastName": "Glaysher", - "email": "nglaysher2o@kickstarter.com", - "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", - "password": "$2a$10$ol3MkKKRwy9FjT5FwpWVMeOxPp8ZkWDH2/TWNwpkt0ii7RzNv2AL.", - "_id": { - "$oid": "6674c31695590f9fd9459df3" - }, - "lastVisit": { - "$date": "2024-06-21T00:02:30.751Z" - }, - "date": { - "$date": "2024-06-21T00:02:30.751Z" - }, - "__v": 0 - } -] From a63d4093c54a31a643cdd87e856aafb7900a782f Mon Sep 17 00:00:00 2001 From: seantokuzo Date: Thu, 20 Jun 2024 17:21:37 -0700 Subject: [PATCH 15/25] regenerate mock data with predefined (and pg friendly) test user ids --- scripts/db/mongo-dev-init/MOCK_ALUMNI.json | 33875 ++++++++++++++++ scripts/db/mongo-dev-init/MOCK_FORUMS.json | 72 + .../MOCK_GRADUATE_INVITATIONS.json | 2402 ++ scripts/db/mongo-dev-init/MOCK_POSTS.json | 990 + scripts/db/mongo-dev-init/MOCK_PROFILES.json | 12304 ++++++ scripts/db/mongo-dev-init/MOCK_THREADS.json | 322 + scripts/db/mongo-dev-init/MOCK_USERS.json | 1702 + 7 files changed, 51667 insertions(+) create mode 100644 scripts/db/mongo-dev-init/MOCK_ALUMNI.json create mode 100644 scripts/db/mongo-dev-init/MOCK_FORUMS.json create mode 100644 scripts/db/mongo-dev-init/MOCK_GRADUATE_INVITATIONS.json create mode 100644 scripts/db/mongo-dev-init/MOCK_POSTS.json create mode 100644 scripts/db/mongo-dev-init/MOCK_PROFILES.json create mode 100644 scripts/db/mongo-dev-init/MOCK_THREADS.json create mode 100644 scripts/db/mongo-dev-init/MOCK_USERS.json diff --git a/scripts/db/mongo-dev-init/MOCK_ALUMNI.json b/scripts/db/mongo-dev-init/MOCK_ALUMNI.json new file mode 100644 index 00000000..8c71aae4 --- /dev/null +++ b/scripts/db/mongo-dev-init/MOCK_ALUMNI.json @@ -0,0 +1,33875 @@ +[ + { + "company": "1-800 Flowers", + "name": "Daniel Reilley", + "email": "dannyreilley@gmail.com", + "linkedIn": "https://www.linkedin.com/in/daniel-reilley/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Full-Stack Application Developer", + "industry": "Retail", + "cities": ["Glendale", "Wichita"], + "_id": { + "$oid": "6674c30595590f9fd945902e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.055Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.055Z" + }, + "__v": 0 + }, + { + "company": "1Password", + "name": "William Quan Nguyen", + "email": "william.nguyen202103@gmail.com", + "linkedIn": "https://www.linkedin.com/in/william-nguyen202103/", + "campus": "PTRI", + "cohort": "10", + "jobTitle": "Software Engineer intern", + "industry": "Security/Data Privacy", + "cities": ["Aurora", "St. Louis"], + "_id": { + "$oid": "6674c30595590f9fd945902f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "1StopBedrooms", + "name": "David Yedid", + "email": "diyedid@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yedid/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "VP, Projects (working under CTO); and General Counsel", + "industry": "E-Commerce", + "cities": ["Stockton", "Irvine"], + "_id": { + "$oid": "6674c30595590f9fd9459030" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "1upHealth", + "name": "Robleh Farah", + "email": "farahrobleh1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/farahrobleh", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer", + "industry": "Health Tech", + "cities": ["San Antonio", "Cincinnati", "Saint Paul"], + "_id": { + "$oid": "6674c30595590f9fd9459031" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "23andMe", + "name": "Jiwon Chung", + "email": "jiwon.chung07@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jchung07/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Software Engineer", + "industry": "Biotech", + "cities": ["Wichita", "Nashville", "Tucson"], + "_id": { + "$oid": "6674c30595590f9fd9459032" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "2U", + "name": "Rebecca Shesser", + "email": "rebeccashesser@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rebeccashesser/", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459033" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "98point6", + "name": "Avi Kerson", + "email": "avitacos@gmail.com", + "linkedIn": "https://www.linkedin.com/in/avi-kerson/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Houston", "Seattle", "Cleveland"], + "_id": { + "$oid": "6674c30595590f9fd9459034" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "AAA (Club Labs)", + "name": "Michael Chan", + "email": "mckchan13@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael-ck-chan/", + "campus": "PTRI", + "cohort": "5", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["Plano", "Toronto", "Kansas City"], + "_id": { + "$oid": "6674c30595590f9fd9459035" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Aavia", + "name": "Wayland SIngh", + "email": "wmsingh@ucdavis.edu", + "linkedIn": "https://www.linkedin.com/in/wayland-singh/", + "campus": "NYOI", + "cohort": "4", + "jobTitle": "Backend Engineer", + "industry": "Healthtech/Healthcare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459036" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Abstract", + "name": "Tyler Kneidl", + "email": "tskneidl@gmail.com", + "linkedIn": "https://www.LinkedIn.com/in/tylerkneidl", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Full Stack Engineer", + "industry": "Software Development", + "cities": ["Houston"], + "_id": { + "$oid": "6674c30595590f9fd9459037" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Accenture", + "name": "Adrian Reczek", + "email": "adrianwreczek@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adrian-reczek/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Full Stack Software Engineer, Senior Analyst", + "industry": "Consulting", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459038" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Accenture", + "name": "Colin Roemer", + "email": "colin.roemer@gmail.com", + "linkedIn": "https://www.linkedin.com/in/colinroemer/", + "campus": "LA", + "cohort": "23", + "jobTitle": "Node Microservices Engineer", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459039" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Accenture", + "name": "Shamilah Faria", + "email": "shamilahfaria@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shamilah-faria/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Software Artisan", + "industry": "Technology", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945903a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Accrete AI", + "name": "Andrew Moy", + "email": "ajmoy35@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andrewmoy/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Full Stack Engineer", + "industry": "Artificial Intelligence", + "cities": ["Charlotte", "San Diego"], + "_id": { + "$oid": "6674c30595590f9fd945903b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Acorns", + "name": "Zahaan Jasani", + "email": "zahaanjasani@gmail.com", + "linkedIn": "https://www.linkedin.com/in/zahaan-jasani-183913126/", + "campus": "LA", + "cohort": "26", + "jobTitle": "Software Engineer II - Backend", + "industry": "Finance", + "cities": ["Lexington", "Mexico City"], + "_id": { + "$oid": "6674c30595590f9fd945903c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Acronis", + "name": "Paul Kim", + "email": "Khyunwoo1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/paulyjkim", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "\"Data Protection/ Cyber Security\"", + "cities": ["Durham", "Orlando"], + "_id": { + "$oid": "6674c30595590f9fd945903d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "ActiveCampaign", + "name": "Jacob Gillan", + "email": "jacobgillan9@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jacob-gillan/", + "campus": "FTRI / CTRI", + "cohort": "15", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Washington", "Colorado Springs"], + "_id": { + "$oid": "6674c30595590f9fd945903e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Actuate", + "name": "Braddon Murphy", + "email": "braddonmurphy@gmail.com", + "linkedIn": "https://www.linkedin.com/in/braddonlee/", + "campus": "FTRI", + "cohort": "6", + "jobTitle": "Software Engineer", + "industry": "Security", + "cities": ["Buffalo", "Jersey City"], + "_id": { + "$oid": "6674c30595590f9fd945903f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Acuity Brands", + "name": "Logan Coale", + "email": "lcoale@gmail.com", + "linkedIn": "https://www.linkedin.com/in/logancoale/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Senior Software Engineer", + "industry": "Industrial Lighting/IoT", + "cities": ["Colorado Springs", "Pittsburgh"], + "_id": { + "$oid": "6674c30595590f9fd9459040" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Adaptive Biotechnologies", + "name": "Conor Chinitz", + "email": "conorchinitz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/conorchinitz", + "campus": "FTRI", + "cohort": "7", + "jobTitle": "Software Engineer III", + "industry": "Biotech", + "cities": ["Houston"], + "_id": { + "$oid": "6674c30595590f9fd9459041" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Adobe - Frame.io", + "name": "Anna Brakowska", + "email": "anna.brakowska91@gmail.com", + "linkedIn": "https://www.linkedin.com/in/anna-brakowska/", + "campus": "NYC", + "cohort": "7", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["San Jose", "Henderson", "Chandler"], + "_id": { + "$oid": "6674c30595590f9fd9459042" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Affirm", + "name": "Oscar Chan", + "email": "chanoscar0@gmail.com", + "linkedIn": "https://www.linkedin.com/in/occhan/", + "campus": "LA", + "cohort": "26", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Louisville", "Fort Wayne", "Buffalo"], + "_id": { + "$oid": "6674c30595590f9fd9459043" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Age of Learning", + "name": "Brian Kwok", + "email": "brian.kwok15@gmail.com", + "linkedIn": "https://www.linkedin.com/in/briankwok15/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Education", + "cities": ["Colorado Springs"], + "_id": { + "$oid": "6674c30595590f9fd9459044" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Age of Learning", + "name": "Tre Hultzen", + "email": "hultzentre@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tre-hultzen/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Web Services Engineer", + "industry": "Education", + "cities": ["Berlin", "Seattle", "Henderson"], + "_id": { + "$oid": "6674c30595590f9fd9459045" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Agua Caliente Casinos", + "name": "Mark Alexander", + "email": "markalexander72@gmail.com", + "linkedIn": "https://www.linkedin.com/in/marka772", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Web Developer", + "industry": "Gaming/eSports", + "cities": ["Denver", "Greensboro", "Philadelphia"], + "_id": { + "$oid": "6674c30595590f9fd9459046" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "AI Insurance", + "name": "James Edwards III", + "email": "j.olden.edwards@gmail.com", + "linkedIn": "https://www.linkedin.com/in/james-edwards-547307242/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Beijing", "Oklahoma City", "New Orleans"], + "_id": { + "$oid": "6674c30595590f9fd9459047" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Air Labs, Inc.", + "name": "Madison Brown", + "email": "mbrown3391@gmail.com", + "linkedIn": "https://www.linkedin.com/in/madisondbrown/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Sr. Software Engineer", + "industry": "Digital Asset Management", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459048" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Airtable", + "name": "Clara Kim", + "email": "clarayhkim96@gmail.com", + "linkedIn": "https://www.linkedin.com/in/clarakm/", + "campus": "LA", + "cohort": "34", + "jobTitle": "Full-stack Engineer", + "industry": "SaaS", + "cities": ["Lubbock", "Irving", "Winston-Salem"], + "_id": { + "$oid": "6674c30595590f9fd9459049" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Ajmadison", + "name": "Shlomo porges", + "email": "porges.s@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shlomoporges/", + "campus": "NYC", + "cohort": "10", + "jobTitle": "DB architect", + "industry": "Appliances", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945904a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Albert", + "name": "Will Bladon", + "email": "whbladon@gmail.com", + "linkedIn": "https://www.linkedin.com/in/will-bladon/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["San Diego", "Toledo"], + "_id": { + "$oid": "6674c30595590f9fd945904b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Alchemy", + "name": "Mathias Perfumo", + "email": "mathias.perfumo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mathiasperfumo", + "campus": "FTRI / CTRI", + "cohort": "7", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Scottsdale", "Seattle"], + "_id": { + "$oid": "6674c30595590f9fd945904c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Aledade", + "name": "Etana Kopin", + "email": "claws.33@gmail.com", + "linkedIn": "https://www.linkedin.com/in/egkopin/", + "campus": "PTRI", + "cohort": "8", + "jobTitle": "Senior Software Engineer", + "industry": "Healthcare", + "cities": ["Toledo", "Santa Ana", "Chesapeake"], + "_id": { + "$oid": "6674c30595590f9fd945904d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Alethix", + "name": "Mark Dolan", + "email": "mark.dolan3@gmail.com", + "linkedIn": "https://www.linkedin.com/in/markdolan30/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Frontend Software Engineer", + "industry": "Government services", + "cities": ["New Orleans", "Boston"], + "_id": { + "$oid": "6674c30595590f9fd945904e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Algolia", + "name": "Jacob Cole", + "email": "jacob.cole@gmail.com", + "linkedIn": "jacobcole34", + "campus": "PTRI", + "cohort": "8", + "jobTitle": "Solutions Engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945904f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Allen Institute", + "name": "Joseph Heffernan", + "email": "Interim17@gmail.com", + "linkedIn": "LinkedIn.com/in/Joseph-heffernan", + "campus": "LA / WCRI", + "cohort": "53", + "jobTitle": "Software Engineer Front End", + "industry": "Biotech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459050" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Alleo.ai", + "name": "Rawan Al Bairouti", + "email": "rawan.bairouti@gmail.com", + "linkedIn": "linkedin.com/in/rawanbairouti", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Lead Developer", + "industry": "Software Solutions/Developer Tools", + "cities": ["Lexington", "Seattle"], + "_id": { + "$oid": "6674c30595590f9fd9459051" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Alloy", + "name": "Jacqueline Chang", + "email": "jqw.chang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jqw-chang/", + "campus": "NYC", + "cohort": "7", + "jobTitle": "Software Engineer II", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459052" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Alloy", + "name": "Sophie Nye", + "email": "sophie.nye@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gsophienye/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Software Engineer II", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459053" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Allure Bridal", + "name": "Patrick Reid", + "email": "patrickjreid@gmail.com", + "linkedIn": "https://www.linkedin.com/in/patrickjreid/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Senior Solutions Engineer", + "industry": "Retail", + "cities": ["Portland"], + "_id": { + "$oid": "6674c30595590f9fd9459054" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Ally", + "name": "Oleksii Hordiienko", + "email": "alex.hord@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/oleksii-hordiienko/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Sr. Software Engineer", + "industry": "Fintech", + "cities": ["San Diego", "Madison"], + "_id": { + "$oid": "6674c30595590f9fd9459055" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Ally", + "name": "Allison Jacobs", + "email": "allison-jacobs@outlook.com", + "linkedIn": "https://www.linkedin.com/in/allison-j", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Greensboro", "Jersey City"], + "_id": { + "$oid": "6674c30595590f9fd9459056" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Ally", + "name": "Connor Tracy", + "email": "Connortracy15@gmail.com", + "linkedIn": "https://www.linkedin.com/in/connortracy19", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Frontend Software Engineer", + "industry": "Fintech", + "cities": ["Austin"], + "_id": { + "$oid": "6674c30595590f9fd9459057" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Ally", + "name": "Damien Evans", + "email": "damiensevans@gmail.com", + "linkedIn": "https://www.linkedin.com/in/damien-s-evans/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Principal Software Engineer", + "industry": "Fintech", + "cities": ["Chandler"], + "_id": { + "$oid": "6674c30595590f9fd9459058" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.056Z" + }, + "__v": 0 + }, + { + "company": "Ally", + "name": "Mercedes Kalaizic", + "email": "Kalaizicmercedes@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mkalaizic/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Principal Software Engineer", + "industry": "Fintech", + "cities": ["Fort Worth", "El Paso", "Phoenix"], + "_id": { + "$oid": "6674c30595590f9fd9459059" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Ally", + "name": "Richard Zhang", + "email": "rchzhng@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dickzhang/", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Irving", "San Francisco"], + "_id": { + "$oid": "6674c30595590f9fd945905a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Ally", + "name": "Garrett Weaver", + "email": "Uncommonweaver@gmail.com", + "linkedIn": "https://www.linkedin.com/in/g-weaver/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "API Developer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945905b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Alo Yoga", + "name": "Angie Chang", + "email": "angiechangpagne@gmail.com", + "linkedIn": "https://www.linkedin.com/in/angelsofwar", + "campus": "LA", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "E-Commerce/Fashion/Wellness/Mindfulness", + "cities": ["Bakersfield"], + "_id": { + "$oid": "6674c30595590f9fd945905c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "AlphaSense", + "name": "Joe Pavlisko", + "email": "jpavlisko@protonmail.com", + "linkedIn": "https://www.linkedin.com/in/joe-pavlisko-11b74930/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Software Engineer", + "industry": "FinTech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945905d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "ALTEN GmbH", + "name": "Jay Wall", + "email": "walljayw@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hanswand/", + "campus": "LA", + "cohort": "47", + "jobTitle": "Senior Consultant", + "industry": "Consultancy - Fintech, Manufacturing, Healthcare", + "cities": ["Lubbock", "San Antonio"], + "_id": { + "$oid": "6674c30595590f9fd945905e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Alteryx", + "name": "Miriam Feder", + "email": "mirfeder@gmail.com", + "linkedIn": "https://www.linkedin.com/in/miriam-feder", + "campus": "NYC", + "cohort": "32", + "jobTitle": "Senior Software Engineer", + "industry": "Data Analytics", + "cities": ["Miami"], + "_id": { + "$oid": "6674c30595590f9fd945905f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Altice USA", + "name": "Ola Adedoyin", + "email": "ola_adedoyin@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/oadedoyin/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "DevOps Engineering Manager", + "industry": "Communication and Media", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459060" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Amy Liang", + "email": "amyliangny@gmail.com", + "linkedIn": "https://www.linkedin.com/in/amyliang18/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Software Development Engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459061" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Anna Falvello", + "email": "anna.falvello@gmail.com", + "linkedIn": "https://www.linkedin.com/in/afalvello/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "SDEII", + "industry": "Ecommerce", + "cities": ["Garland", "Phoenix"], + "_id": { + "$oid": "6674c30595590f9fd9459062" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Anthony Valdez", + "email": "avaldez520@gmail.com", + "linkedIn": "https://www.linkedin.com/in/va1dez/", + "campus": "NYC", + "cohort": "32", + "jobTitle": "SDE II (Full Stack)", + "industry": "Software / Tech", + "cities": ["Berlin", "Paris", "Houston"], + "_id": { + "$oid": "6674c30595590f9fd9459063" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Christopher LeBrett", + "email": "clebrett@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chris-lebrett/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Development Engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459064" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Christopher Wong", + "email": "cwong8257@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chriswong2/", + "campus": "NYC", + "cohort": "7", + "jobTitle": "Software Engineer", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459065" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "David Anderson", + "email": "dlande000@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dlande000/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Front-End Engineer", + "industry": "AWS / internet infrastructure", + "cities": ["Jacksonville", "Miami"], + "_id": { + "$oid": "6674c30595590f9fd9459066" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Dillon Schriver", + "email": "dschriver9@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dillon-schriver/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Software Development Engineer II", + "industry": "Ecommerce", + "cities": ["Scottsdale", "Chandler"], + "_id": { + "$oid": "6674c30595590f9fd9459067" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Eelan Tung", + "email": "eelantung@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eelantung", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Development Engineer", + "industry": "Software / Tech", + "cities": ["Jersey City", "Minneapolis", "Irving"], + "_id": { + "$oid": "6674c30595590f9fd9459068" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Jason Huang", + "email": "huang.jason999@gmail.com", + "linkedIn": "https://www.linkedin.com/in/huang-jason999/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Software Development Engineer II", + "industry": "Technology", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459069" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Idan Michael", + "email": "idan.michael3@gmail.com", + "linkedIn": "https://www.linkedin.com/in/idanmichael/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Software Develpment Engineer", + "industry": "Cloud", + "cities": ["Anaheim", "Fresno"], + "_id": { + "$oid": "6674c30595590f9fd945906a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Jacqueline Douglass", + "email": "jackie.douglass@icloud.com", + "linkedIn": "https://www.linkedin.com/in/jacqueline-douglass/", + "campus": "FTRI", + "cohort": "2", + "jobTitle": "Front-End Engineer", + "industry": "e-commerce, cloud computing, digital streaming, and artificial intelligence.", + "cities": ["Pittsburgh", "Irvine"], + "_id": { + "$oid": "6674c30595590f9fd945906b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "James Kim", + "email": "james.minjae.97@gmail.com", + "linkedIn": "https://linkedin.com/in/jamesmjkim", + "campus": "PTRI", + "cohort": "5", + "jobTitle": "Software Development Engineer 1", + "industry": "Software / Tech", + "cities": ["Reno"], + "_id": { + "$oid": "6674c30595590f9fd945906c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Luke Michals", + "email": "luke.michals@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "14", + "jobTitle": "Frontend Engineer II", + "industry": "Retail", + "cities": ["Riverside", "Tokyo", "Corpus Christi"], + "_id": { + "$oid": "6674c30595590f9fd945906d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Jennifer Song", + "email": "lumie.song@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lu0713/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Development Engineer II", + "industry": "Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945906e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Megan Nadkarni", + "email": "megan.nadkarni@gmail.com", + "linkedIn": "https://www.linkedin.com/in/megannadkarni/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Front End Engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945906f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Mark Washkewicz", + "email": "mwashkewicz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mark-washkewicz/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Development Engineer 1", + "industry": "Retail", + "cities": ["Tulsa"], + "_id": { + "$oid": "6674c30595590f9fd9459070" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Stephan Halarewicz", + "email": "shalarewicz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stephanhalarewicz/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Software Development Engineer, People Engine", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459071" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Tanner Peterson", + "email": "tanpeterson@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tanner-peterson/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Front End Engineer", + "industry": "Cloud Services", + "cities": ["Chicago", "Chula Vista", "Oklahoma City"], + "_id": { + "$oid": "6674c30595590f9fd9459072" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Timothy Mai", + "email": "timothy.mai13@gmail.com", + "linkedIn": "https://www.linkedin.com/in/timothy-mai-459085b3/", + "campus": "LA", + "cohort": "31", + "jobTitle": "Software Development Engineer I", + "industry": "Advertising", + "cities": ["Detroit", "Sacramento"], + "_id": { + "$oid": "6674c30595590f9fd9459073" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Yogi Paturu", + "email": "ypaturu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yogi-paturu/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Software Development Engineer", + "industry": "Cloud", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459074" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon", + "name": "Yale Yng-Wong", + "email": "yyngwong@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ywyw/", + "campus": "NYC", + "cohort": "32", + "jobTitle": "SDE1", + "industry": "Advertising", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459075" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon (AWS)", + "name": "Michael Weber", + "email": "michael.weber.jr@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael-weber-jr/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Software Development Engineer", + "industry": "Cloud Services", + "cities": ["Bakersfield", "Denver", "Lubbock"], + "_id": { + "$oid": "6674c30595590f9fd9459076" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon Prime Video", + "name": "Faraz Moallemi", + "email": "moallemifaraz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/farazmoallemi/", + "campus": "LA", + "cohort": "44", + "jobTitle": "Software Development Engineer I", + "industry": "Big Tech", + "cities": ["Durham"], + "_id": { + "$oid": "6674c30595590f9fd9459077" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon Web Services", + "name": "Daniel Forrester", + "email": "danielf216@gmail.com", + "linkedIn": "https://www.linkedin.com/in/danielforrester/", + "campus": "PTRI", + "cohort": "5", + "jobTitle": "Cloud Application Architect", + "industry": "Cloud Services", + "cities": ["Dallas"], + "_id": { + "$oid": "6674c30595590f9fd9459078" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon Web Services", + "name": "Lumie (Jen) Song", + "email": "lumie.song@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lu0713/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Development Engineer II", + "industry": "Software", + "cities": ["Jacksonville", "Irving", "San Diego"], + "_id": { + "$oid": "6674c30595590f9fd9459079" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon Web Services", + "name": "Matthew Lee", + "email": "matthewcml6022@gmail.com", + "linkedIn": "https://www.linkedin.com/in/matthewcmlee/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Software Development Engineer", + "industry": "Web Services / Cloud Computing", + "cities": ["San Diego", "Norfolk", "Dallas"], + "_id": { + "$oid": "6674c30595590f9fd945907a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon Web Services", + "name": "Taylor Rodrigues", + "email": "taylor.d.rod33@gmail.com", + "linkedIn": "https://www.linkedin.com/in/taylorrodrigues/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Software Development Engineer I (L4)", + "industry": "Cloud Computing", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945907b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon Web Services (AWS)", + "name": "Raphael Bargues", + "email": "rbargues@gmail.com", + "linkedIn": "https://www.linkedin.com/in/raphael-bargues/", + "campus": "NYC", + "cohort": "17", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["New Orleans", "St. Petersburg", "Scottsdale"], + "_id": { + "$oid": "6674c30595590f9fd945907c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amazon, AWS", + "name": "Jimmy Ngo", + "email": "jimmycngo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jimmycngo/", + "campus": "FTRI", + "cohort": "2", + "jobTitle": "Software Development Engineer 1", + "industry": "cloud computing", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945907d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "AMC Networks", + "name": "Wade Armstrong", + "email": "wade@wadearmstrong.com", + "linkedIn": "https://www.linkedin.com/in/wadearmstrong/", + "campus": "LA", + "cohort": "5", + "jobTitle": "Director, Front-End Development", + "industry": "Entertainment", + "cities": ["Glendale", "Corpus Christi", "Milwaukee"], + "_id": { + "$oid": "6674c30595590f9fd945907e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "American Airlines(Contracted via BrookSource)", + "name": "Mariah Talicuran", + "email": "talicuran.mariah@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mariahtalicuran/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Associate React Developer", + "industry": "Other", + "cities": ["Toronto"], + "_id": { + "$oid": "6674c30595590f9fd945907f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "American Dawn", + "name": "Charlie Huang", + "email": "charliehuang913@gmail.com", + "linkedIn": "https://www.linkedin.com/in/huangcharlie", + "campus": "LA / WCRI", + "cohort": "48", + "jobTitle": "Junior Software Engineer", + "industry": "Retail", + "cities": ["Fort Wayne"], + "_id": { + "$oid": "6674c30595590f9fd9459080" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "American Express", + "name": "Dominic DiSalvo", + "email": "Dominicd17@gmail.com", + "linkedIn": "https://www.linkedin.com/mwlite/in/dominicdisalvo", + "campus": "FTRI", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Tampa"], + "_id": { + "$oid": "6674c30595590f9fd9459081" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "American Express", + "name": "Jake Diorio", + "email": "jdiorio2393@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jake-diorio/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "Banking", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459082" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "American Express", + "name": "Kelvin Shamy", + "email": "kelvinshamy@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kelvinshamy/", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459083" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "American Express", + "name": "Rebecca Turk", + "email": "rebecca.e.turk@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rebeccaturk/", + "campus": "NYC", + "cohort": "5", + "jobTitle": "Engineer I", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459084" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "American Express", + "name": "Victor He", + "email": "victorhe33@gmail.com", + "linkedIn": "www.linkedin.com/in/victorhe33", + "campus": "PTRI", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Fresno", "Norfolk", "Henderson"], + "_id": { + "$oid": "6674c30595590f9fd9459085" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "AmeriSave", + "name": "Andrew Pomatti", + "email": "ampomatti@gmail.com", + "linkedIn": "https://www.linkedin.com/in/drewpomatti/", + "campus": "LA", + "cohort": "47", + "jobTitle": "Systems Engineer I", + "industry": "Real Estate", + "cities": ["Santa Ana", "London", "Long Beach"], + "_id": { + "$oid": "6674c30595590f9fd9459086" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "AmeriSave", + "name": "Jacob C Viesselman", + "email": "jacob.viesselman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jacobviesselman/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Greensboro"], + "_id": { + "$oid": "6674c30595590f9fd9459087" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amerisave", + "name": "Norman Liu", + "email": "Normanliu91@gmail.com", + "linkedIn": "https://www.linkedin.com/in/norm-liu", + "campus": "PTRI", + "cohort": "5", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Cincinnati"], + "_id": { + "$oid": "6674c30595590f9fd9459088" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "AmeriSave Mortgage Corporation", + "name": "Jason Chan", + "email": "Jason.chann91@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jason-chan1765/", + "campus": "FTRI", + "cohort": "7", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Washington", "Phoenix"], + "_id": { + "$oid": "6674c30595590f9fd9459089" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "AmeriSave Mortgage Corporation", + "name": "Michael Prince", + "email": "mgp2454@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael-prince", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Portland", "Houston"], + "_id": { + "$oid": "6674c30595590f9fd945908a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Ample, LLC", + "name": "Rudo Hengst", + "email": "rudohengst@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rhengst/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Lead Developer", + "industry": "Digital Marketing", + "cities": ["Saint Paul", "Henderson"], + "_id": { + "$oid": "6674c30595590f9fd945908b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amplify", + "name": "Ekaterina Vasileva", + "email": "ekaterinavasileva768@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ekaterina-vasileva238/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Education", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945908c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Amplify", + "name": "Biet Van Nguyen", + "email": "vanbietnguyen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/van-biet-nguyen-6879434a/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Software Engineer", + "industry": "Edtech", + "cities": ["Jacksonville", "Tampa"], + "_id": { + "$oid": "6674c30595590f9fd945908d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Anaconda", + "name": "Rosio Reyes", + "email": "rosio_reyes@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/rosio-reyes-09b9a256/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "Computer Software", + "cities": ["Charlotte", "Anchorage", "Pittsburgh"], + "_id": { + "$oid": "6674c30595590f9fd945908e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Ancestry", + "name": "Miguel Garibay", + "email": "miguelgaribay93@gmail.com", + "linkedIn": "https://www.linkedin.com/in/miguel-garibay-mag/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Full Stack Software Engineer", + "industry": "Genealogy", + "cities": ["Chandler", "Plano"], + "_id": { + "$oid": "6674c30595590f9fd945908f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Ancestry", + "name": "Schno Mozingo", + "email": "schno.mozingo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/schno-mozingo/", + "campus": "LA", + "cohort": "12", + "jobTitle": "Senior Software Engineer", + "industry": "Geneology", + "cities": ["Orlando"], + "_id": { + "$oid": "6674c30595590f9fd9459090" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Ancilia", + "name": "Clark Pang", + "email": "clarkcpang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/clarkpang/", + "campus": "LA / WCRI", + "cohort": "56", + "jobTitle": "Software Engineer", + "industry": "Security", + "cities": ["Anaheim", "Wichita", "Tulsa"], + "_id": { + "$oid": "6674c30595590f9fd9459091" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Anheuser-Busch", + "name": "Brandon Bowers", + "email": "brandonbowers1234@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brandon-michael-bowers/", + "campus": "FTRI", + "cohort": "3", + "jobTitle": "Senior Front-end React Developer", + "industry": "Beverages", + "cities": ["Buffalo", "Greensboro", "Portland"], + "_id": { + "$oid": "6674c30595590f9fd9459092" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Annalect", + "name": "Carlos Peรฑa", + "email": "carlos.pena91@gmail.com", + "linkedIn": "https://www.linkedin.com/in/carlospena91", + "campus": "LA", + "cohort": "39", + "jobTitle": "Front End Engineer", + "industry": "Advertisement and Media", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459093" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Annalect", + "name": "Trent Currie", + "email": "trentdcurrie@gmail.com", + "linkedIn": "https://www.linkedin.com/in/trentdcurrie/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Front-End Engineer", + "industry": "Marketing", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459094" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Apex Fintech Solutions", + "name": "Kevin Le", + "email": "lekevin2013@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kevinvu-le/", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["St. Petersburg"], + "_id": { + "$oid": "6674c30595590f9fd9459095" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Apex Systems", + "name": "Anthony Martinez", + "email": "anthony@amartinez.cc", + "linkedIn": "https://www.linkedin.com/in/tony-mtz/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer", + "industry": "Bank", + "cities": ["Cincinnati"], + "_id": { + "$oid": "6674c30595590f9fd9459096" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Apollo GraphQL", + "name": "Joel Burton", + "email": "joeltburton@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joeltburton", + "campus": "LA", + "cohort": "26", + "jobTitle": "Software Engineer", + "industry": "Technology", + "cities": ["Tucson", "Mumbai"], + "_id": { + "$oid": "6674c30595590f9fd9459097" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Appfolio", + "name": "Erik Fisher", + "email": "efishr4@gmail.com", + "linkedIn": "https://www.linkedin.com/in/erik-fisher-53b9b6b3/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Software Engineer II", + "industry": "Aviation & Aerospace", + "cities": ["Paris", "Miami", "Albuquerque"], + "_id": { + "$oid": "6674c30595590f9fd9459098" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Appfolio", + "name": "Michelle Holland", + "email": "michellebholland@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michellebholland/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Houston", "Portland", "Mesa"], + "_id": { + "$oid": "6674c30595590f9fd9459099" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "AppFolio", + "name": "Timothy Barry", + "email": "tim.barry12@gmail.com", + "linkedIn": "https://www.linkedin.com/in/timothy-barry-se", + "campus": "FTRI", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Fort Worth", "St. Petersburg", "Mesa"], + "_id": { + "$oid": "6674c30595590f9fd945909a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Apple", + "name": "Alexander Zhang", + "email": "azalexanderzhang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/zhang-alexander/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Software Engineer", + "industry": "Tech", + "cities": ["Santa Ana", "London"], + "_id": { + "$oid": "6674c30595590f9fd945909b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Apple (via Ryzen)", + "name": "Dieu Huynh", + "email": "dieuhhuynh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dieu-huynh/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Frontend Engineer", + "industry": "Technology", + "cities": ["Denver", "Fort Wayne"], + "_id": { + "$oid": "6674c30595590f9fd945909c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Applied Minds", + "name": "Michael Chiang", + "email": "michael.chiang.dev5@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael-chiang-dev5/", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "software engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945909d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "AppOmni", + "name": "Ousman Diallo", + "email": "ordiallo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ousman-diallo/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Front End Engineer", + "industry": "Security", + "cities": ["Chandler", "Portland", "San Jose"], + "_id": { + "$oid": "6674c30595590f9fd945909e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Arc'teryx", + "name": "Simon Grigenas", + "email": "grigenas@outlook.com", + "linkedIn": "https://www.linkedin.com/in/simon-grigenas/", + "campus": "NYC / ECRI", + "cohort": "1", + "jobTitle": "Intermediate Web Applications Developer", + "industry": "Retail", + "cities": ["Fort Wayne", "Saint Paul"], + "_id": { + "$oid": "6674c30595590f9fd945909f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Arcadia", + "name": "Adda Kridler", + "email": "addakridler@gmail.com", + "linkedIn": "https://www.linkedin.com/in/addakridler/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Software Engineer 1", + "industry": "Energy Tech", + "cities": ["Sydney", "Omaha"], + "_id": { + "$oid": "6674c30595590f9fd94590a0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Arcadia", + "name": "Cameron Baumgartner", + "email": "cameron.h.baumgartner@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cameronbaumgartner/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "Renewable Energy", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94590a1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Arcadia", + "name": "Jehovany A Cruz", + "email": "howaboutjeho@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jehovany-cruz/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer", + "industry": "Energy - Renewable Energy", + "cities": ["Fresno", "Baltimore", "Louisville"], + "_id": { + "$oid": "6674c30595590f9fd94590a2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Arcadia", + "name": "Jason Liggayu", + "email": "jligg224@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jasonliggayu/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Full Stack Engineer", + "industry": "Renewable Energy", + "cities": ["Indianapolis", "Detroit"], + "_id": { + "$oid": "6674c30595590f9fd94590a3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Arcadia", + "name": "Kristen Althoff", + "email": "kristenwalthoff@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kristen-althoff-3a4765b9/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Full-Stack Software Engineer I", + "industry": "Software / Tech", + "cities": ["London", "Fort Wayne", "Buffalo"], + "_id": { + "$oid": "6674c30595590f9fd94590a4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Arcules", + "name": "Nico Flores", + "email": "floresni1996@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nicolasaflores/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Software Engineer", + "industry": "Cloud Services", + "cities": ["San Antonio", "Denver", "Anchorage"], + "_id": { + "$oid": "6674c30595590f9fd94590a5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Arcules", + "name": "Patrick Allen", + "email": "patrick@ohana-app.io", + "linkedIn": "https://linkedin.com/in/patrickallendfs", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer", + "industry": "Cloud Video", + "cities": ["Seattle", "Sydney", "San Antonio"], + "_id": { + "$oid": "6674c30595590f9fd94590a6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Armoire", + "name": "Katie Sandfort", + "email": "katie.sandfort@gmail.com", + "linkedIn": "https://www.linkedin.com/in/katie-sandfort/", + "campus": "LA / WCRI", + "cohort": "55", + "jobTitle": "Software Engineer", + "industry": "Retail", + "cities": ["London", "Greensboro"], + "_id": { + "$oid": "6674c30595590f9fd94590a7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Artsy", + "name": "Matt Jones", + "email": "matt.chris.jones@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mc-jones/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Senior Engineer 1 (Fullstack)", + "industry": "Art", + "cities": ["Chesapeake", "Lincoln"], + "_id": { + "$oid": "6674c30595590f9fd94590a8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Artyc", + "name": "Daniel Geiger", + "email": "daniel.w.geiger@gmail.com", + "linkedIn": "https://www.linkedin.com/in/danielwgeiger/", + "campus": "FTRI / CTRI", + "cohort": "4", + "jobTitle": "Fullstack Engineer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94590a9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Arvest Bank", + "name": "Leilani Hernandez", + "email": "leilani.digame@gmail.com", + "linkedIn": "www.linkedin.com/in/lherna05", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Front End Developer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94590aa" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Ash Wellness", + "name": "Andrew Rehrig", + "email": "arehrig@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andrew-rehrig/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Full Stack Engineer", + "industry": "Healthcare", + "cities": ["Honolulu"], + "_id": { + "$oid": "6674c30595590f9fd94590ab" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Asics", + "name": "Alexa Roberts", + "email": "alexarobertss@protonmail.com", + "linkedIn": "https://www.linkedin.com/in/alexarobertss", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Frontend Software Engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94590ac" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Aspiration", + "name": "Charles Gyer", + "email": "charlesgyer@gmail.com", + "linkedIn": "https://www.linkedin.com/in/charles-gyer/", + "campus": "PTRI", + "cohort": "4", + "jobTitle": "Software Engineer, Backend", + "industry": "Green Fintech", + "cities": ["Atlanta", "Beijing"], + "_id": { + "$oid": "6674c30595590f9fd94590ad" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Astra", + "name": "Jae Ryu", + "email": "rj.jaeryu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jaeryu/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Senior Software Engineer", + "industry": "Space-tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94590ae" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Asurion", + "name": "Jinseon Shin", + "email": "jinseonshin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jinseonshin/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Tech Insurance", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94590af" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Asurion", + "name": "Shah Chaudri", + "email": "shah.pro.se@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shah-chaudri/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer 3", + "industry": "Tech Insurance", + "cities": ["Lexington", "Oakland"], + "_id": { + "$oid": "6674c30595590f9fd94590b0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Asurion", + "name": "Travis Woolston", + "email": "travis.ww@hotmail.com", + "linkedIn": "https://www.linkedin.com/in/traviswoolston/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["Scottsdale", "North Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd94590b1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "AT&T", + "name": "Alexander Kim", + "email": "akim3235@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexanderkim1/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Backend Software Engineer", + "industry": "Entertainment", + "cities": ["Baltimore"], + "_id": { + "$oid": "6674c30595590f9fd94590b2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "AT&T", + "name": "Marc Doran", + "email": "doramm4408@gmail.com", + "linkedIn": "https://www.linkedin.com/in/marc-doran", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Database Developer", + "industry": "Telecommunications", + "cities": ["Minneapolis", "Bakersfield", "Los Angeles"], + "_id": { + "$oid": "6674c30595590f9fd94590b3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "AT&T", + "name": "Alina Grafkina", + "email": "grafkina.production@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alinakyaw/", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94590b4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Athena Health", + "name": "Zach Pestaina", + "email": "zpestaina@gmail.com", + "linkedIn": "linkedin.com/zachpestaina/", + "campus": "NYC / ECRI", + "cohort": "38", + "jobTitle": "Analytics Engineer", + "industry": "Healthcare", + "cities": ["Baltimore", "Jacksonville"], + "_id": { + "$oid": "6674c30595590f9fd94590b5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Atlassian", + "name": "Giao Tran", + "email": "contactgiaotran@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gd-tran/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Software Engineer P3", + "industry": "Project management?", + "cities": ["Tulsa", "Arlington"], + "_id": { + "$oid": "6674c30595590f9fd94590b6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Atlassian", + "name": "Dan Snyder", + "email": "dasnyder3@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dasnyder3/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "Tech", + "cities": ["Bakersfield", "Pittsburgh"], + "_id": { + "$oid": "6674c30595590f9fd94590b7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Atlassian/ Trello", + "name": "Elizabeth Lotto", + "email": "fakeEmail1@fakeEmail.com", + "linkedIn": "https://www.linkedin.com/in/elizabethlotto/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer", + "industry": "Computer Software", + "cities": ["Beijing", "Memphis"], + "_id": { + "$oid": "6674c30595590f9fd94590b8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Atos Syntel (at Disney)", + "name": "Dakota Gilbreath", + "email": "dgilbrea92@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dakota-gilbreath/", + "campus": "LA", + "cohort": "34", + "jobTitle": "Full Stack Developer", + "industry": "Entertainment", + "cities": ["Tokyo", "Laredo"], + "_id": { + "$oid": "6674c30595590f9fd94590b9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.057Z" + }, + "__v": 0 + }, + { + "company": "Attentive", + "name": "Sam Goldberg", + "email": "sgoldber61@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sgoldber61/", + "campus": "LA", + "cohort": "27", + "jobTitle": "Software Engineer, Frontend - L4", + "industry": "E-commerce", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94590ba" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Attentive", + "name": "Pravek Karwe", + "email": "pkarwe62@gmail.com", + "linkedIn": "https://www.linkedin.com/in/pravek-karwe?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app", + "campus": "NYOI", + "cohort": "7", + "jobTitle": "Senior Product Manager", + "industry": "Marketing/Advertising", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94590bb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Audacy", + "name": "John Roman", + "email": "johnmroman33@gmail.com", + "linkedIn": "https://www.linkedin.com/in/john-m-roman/", + "campus": "NYC / ECRI", + "cohort": "38", + "jobTitle": "Associate Software Engineer", + "industry": "Entertainment", + "cities": ["Seattle"], + "_id": { + "$oid": "6674c30595590f9fd94590bc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "AuditBoard", + "name": "Alex Yu", + "email": "alexjihunyu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexjihunyu/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer", + "industry": "FinTech", + "cities": ["Oakland", "Jersey City"], + "_id": { + "$oid": "6674c30595590f9fd94590bd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Autodesk", + "name": "Javan Ang", + "email": "javanamt@gmail.com", + "linkedIn": "https://www.linkedin.com/in/javanang/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Software Engineer", + "industry": "Software/Tech", + "cities": ["Louisville", "Toledo"], + "_id": { + "$oid": "6674c30595590f9fd94590be" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "AutoFi", + "name": "Rocky Lin", + "email": "liangwen511@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rocky-lin/", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Senior Software Engineer", + "industry": "FinTech", + "cities": ["Lincoln"], + "_id": { + "$oid": "6674c30595590f9fd94590bf" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Ava", + "name": "Eden Shirin", + "email": "edenshirin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eden-shirin/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Software Engineer", + "industry": "Artificial Intelligence", + "cities": ["Sydney", "Reno"], + "_id": { + "$oid": "6674c30595590f9fd94590c0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Avant", + "name": "David Riley Burns", + "email": "drileyburns@gmail.com", + "linkedIn": "https://www.linkedin.com/in/drileyburns/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Software Engineer", + "industry": "Loans", + "cities": ["Long Beach", "Saint Paul", "Fort Wayne"], + "_id": { + "$oid": "6674c30595590f9fd94590c1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Avirtek", + "name": "Eliot L Nguyen", + "email": "eliotlefrin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ibeeliot", + "campus": "LA", + "cohort": "34", + "jobTitle": "Front End Lead Developer", + "industry": "Cybersecurity", + "cities": ["Saint Paul", "Tulsa", "Riverside"], + "_id": { + "$oid": "6674c30595590f9fd94590c2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Avise", + "name": "Frank Norton", + "email": "jfnorton@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jfnorton32/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Full Stack Software Engineer", + "industry": "Fintech", + "cities": ["Louisville", "Lexington"], + "_id": { + "$oid": "6674c30595590f9fd94590c3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Avoma", + "name": "Kevin Chung", + "email": "kevin.c@me.com", + "linkedIn": "https://www.linkedin.com/in/kevc/", + "campus": "LA / WCRI", + "cohort": "47", + "jobTitle": "Software Engineer - Frontend", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94590c4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "AVOXI", + "name": "Shirley Luu", + "email": "sh.rleyluu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/luu-shirley", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Full Stack Software Engineer", + "industry": "Business Tech/Enterprise Tech", + "cities": ["Columbus", "Saint Paul", "Irving"], + "_id": { + "$oid": "6674c30595590f9fd94590c5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Avvir", + "name": "Sharon Zhu", + "email": "sharonzhu.15@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sharonzhu/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer II", + "industry": "Construction Tech", + "cities": ["Berlin", "Denver", "Long Beach"], + "_id": { + "$oid": "6674c30595590f9fd94590c6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "AWS", + "name": "Blake Myrick", + "email": "blake.myrick@gmail.com", + "linkedIn": "https://www.linkedin.com/in/blake-myrick", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Software Development Engineer", + "industry": "Tech", + "cities": ["New York", "Lubbock", "Chesapeake"], + "_id": { + "$oid": "6674c30595590f9fd94590c7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "AWS", + "name": "George Jeng", + "email": "gjenga@icloud.com", + "linkedIn": "https://www.linkedin.com/in/gjenga", + "campus": "LA", + "cohort": "49", + "jobTitle": "SDE1", + "industry": "Cloud Services", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94590c8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "AWS", + "name": "Marc Burnie", + "email": "MarcABurnie@gmail.com", + "linkedIn": "https://www.linkedin.com/in/marcburnie", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Development Engineer II", + "industry": "Tech", + "cities": ["Madison"], + "_id": { + "$oid": "6674c30595590f9fd94590c9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "AWS", + "name": "Patty Qian", + "email": "patty.qian@gmail.com", + "linkedIn": "https://www.linkedin.com/in/patty-qian/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Development Engineer", + "industry": "Tech", + "cities": ["Honolulu", "Beijing"], + "_id": { + "$oid": "6674c30595590f9fd94590ca" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Axim Geospatial", + "name": "Kevin Le", + "email": "kevinle1003@gmail.com", + "linkedIn": "https://www.linkedin.com/in/xkevinle/", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Software Developer", + "industry": "IT Services", + "cities": ["Louisville", "Cincinnati", "Minneapolis"], + "_id": { + "$oid": "6674c30595590f9fd94590cb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Axle Health", + "name": "Alexandra Ashcraft", + "email": "lash211@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexandra-ashcraft1/", + "campus": "FTRI / CTRI", + "cohort": "17", + "jobTitle": "Software Engineer", + "industry": "Healthtech/Healthcare", + "cities": ["Raleigh", "Lexington", "Tampa"], + "_id": { + "$oid": "6674c30595590f9fd94590cc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Axon", + "name": "Meng Ting Chiang", + "email": "a123deandean@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mengting-chiang/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer", + "industry": "Public Safety", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94590cd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "B-stock solutions", + "name": "Michael Feldman", + "email": "michaelfeldma1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael-feldman15/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Nodejs / microservices software engineer", + "industry": "E-commerce", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94590ce" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Bach", + "name": "Abbey Campbell", + "email": "campbellabbeya@gmail.com", + "linkedIn": "https://www.linkedin.com/in/campbellabbeya/", + "campus": "LA", + "cohort": "31", + "jobTitle": "Frontend Developer", + "industry": "Entertainment? Wed-tech? lol idk it's pretty niche", + "cities": ["Anaheim"], + "_id": { + "$oid": "6674c30595590f9fd94590cf" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "BallerTV", + "name": "Jenessa Chapalamadugu", + "email": "jenessachap@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jenessachap/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Full Stack Engineer", + "industry": "Entertainment", + "cities": ["Las Vegas", "Minneapolis"], + "_id": { + "$oid": "6674c30595590f9fd94590d0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Bank of America", + "name": "Ranisha Rafeeque Soopi Kalphantakath", + "email": "ranisharafeeque@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ranisha-rafeeque-s-k/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "AVP, Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94590d1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Barstool Sports", + "name": "Daniel Nagano-Gerace", + "email": "dnaganog@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dnaganog/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Senior Backend Engineer", + "industry": "Media", + "cities": ["Lubbock", "Charlotte"], + "_id": { + "$oid": "6674c30595590f9fd94590d2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Bayer Crop Science (Neteffects)", + "name": "Jason Fricano", + "email": "jason.fricano@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jasonfricano/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Node / React Developer", + "industry": "Agricultural Science", + "cities": ["Philadelphia", "Lincoln"], + "_id": { + "$oid": "6674c30595590f9fd94590d3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Bayer Crop Sciences", + "name": "Stephen Budarz", + "email": "sbudarz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/steve-budarz/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Full Stack Engineer", + "industry": "Agriculture", + "cities": ["El Paso", "Seattle"], + "_id": { + "$oid": "6674c30595590f9fd94590d4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "BD", + "name": "Annabelle Ni", + "email": "ann.j.ni@gmail.com", + "linkedIn": "https://www.linkedin.com/in/annabelleni/", + "campus": "FTRI / CTRI", + "cohort": "17", + "jobTitle": "Software Engineer", + "industry": "Healthtech/Healthcare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94590d5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Beacon Hill Staffing (Charter Communications)", + "name": "David Russo", + "email": "dr2378@gmail.com", + "linkedIn": "https://www.linkedin.com/in/russo-david", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Telecommunications", + "cities": ["Scottsdale", "Gilbert", "Chesapeake"], + "_id": { + "$oid": "6674c30595590f9fd94590d6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Beacon Hill Staffing (working for Charter Communications)", + "name": "Jessica Balding", + "email": "jessica.r.balding@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jessica-balding/", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Full Stack Developer", + "industry": "Telecommunications", + "cities": ["Raleigh"], + "_id": { + "$oid": "6674c30595590f9fd94590d7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Beautycounter", + "name": "Mario Granberri", + "email": "mgranberri@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mgranberri/", + "campus": "LA", + "cohort": "25", + "jobTitle": "Full stack software engineer", + "industry": "Compliance", + "cities": ["Detroit", "Fresno", "Newark"], + "_id": { + "$oid": "6674c30595590f9fd94590d8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Behavior Frontiers", + "name": "Chance Hernandez", + "email": "chance.hernandez24@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chance-hernandez/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94590d9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Bentobox", + "name": "Corey Van Splinter", + "email": "cvanspl1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/corey-van-splinter/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Senior Software Engineer", + "industry": "Hospitality", + "cities": ["Washington"], + "_id": { + "$oid": "6674c30595590f9fd94590da" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Bentobox", + "name": "Greg Dixon", + "email": "gdixon529@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gdixon529/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Engineer", + "industry": "Software", + "cities": ["Houston"], + "_id": { + "$oid": "6674c30595590f9fd94590db" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "BentoBox", + "name": "Brian Liang", + "email": "liangbrian94@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brian-z-liang/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Product Support Engineer", + "industry": "Not sure", + "cities": ["Sรฃo Paulo", "Gilbert"], + "_id": { + "$oid": "6674c30595590f9fd94590dc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Berkadia", + "name": "Isaac Kittila", + "email": "isaac.kittila@gmail.com", + "linkedIn": "https://www.linkedin.com/in/isaac-kittila/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Associate Software Engineer", + "industry": "Commercial Real Estate", + "cities": ["San Diego", "Washington", "Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd94590dd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Best Buy", + "name": "Alexander Hager", + "email": "alexhager19@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hager-alexander/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Front end Engineer", + "industry": "Data analytics", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94590de" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Better.com", + "name": "Stefan Armijo", + "email": "stefan.armijo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stefanarmijo/", + "campus": "LA", + "cohort": "21", + "jobTitle": "Sr. Software Engineer", + "industry": "", + "cities": ["Houston"], + "_id": { + "$oid": "6674c30595590f9fd94590df" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "BidWrangler", + "name": "Kylene Hohman", + "email": "kylenehohman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kylene-hohman", + "campus": "PTRI", + "cohort": "5", + "jobTitle": "Full-Stack Developer", + "industry": "Auction Services", + "cities": ["Riverside", "New York", "Saint Paul"], + "_id": { + "$oid": "6674c30595590f9fd94590e0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Bigeye", + "name": "Dasha Kondratenko", + "email": "dashakondrattenko@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dasha-k/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer 1", + "industry": "Data quality", + "cities": ["San Antonio", "Laredo", "Chesapeake"], + "_id": { + "$oid": "6674c30595590f9fd94590e1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "BigID", + "name": "Helen Regula", + "email": "hregula03@gmail.com", + "linkedIn": "https://www.linkedin.com/in/helenregula/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Senior Full Stack Software Engineer", + "industry": "Cyber Security", + "cities": ["Irvine", "Tulsa", "Norfolk"], + "_id": { + "$oid": "6674c30595590f9fd94590e2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Bill.com", + "name": "Gordon Hui", + "email": "Maddogg612@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gordon-hui", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Software engineer 2 - Frontend", + "industry": "Fintech", + "cities": ["Dallas"], + "_id": { + "$oid": "6674c30595590f9fd94590e3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Bio-Rad Laboratories", + "name": "Tiffany Yang", + "email": "teefyang7857@gmail.com", + "linkedIn": "https://www.linkedin.com/in/teayang/", + "campus": "LA", + "cohort": "21", + "jobTitle": "Software Engineer", + "industry": "Biotech", + "cities": ["New Orleans", "Columbus"], + "_id": { + "$oid": "6674c30595590f9fd94590e4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "BitGo", + "name": "Joe Kinney", + "email": "josephrkinney@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joekinney17/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Greensboro", "Bakersfield", "Buffalo"], + "_id": { + "$oid": "6674c30595590f9fd94590e5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Bitovi", + "name": "Edward Park", + "email": "edwardpark123@gmail.com", + "linkedIn": "https://www.linkedin.com/in/edwardparkwork/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Junior Developer and Consultant", + "industry": "Computer Software", + "cities": ["Columbus"], + "_id": { + "$oid": "6674c30595590f9fd94590e6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "BitPay", + "name": "Taven Shumaker", + "email": "tavensshumaker@gmail.com", + "linkedIn": "https://www.linkedin.com/in/taven-shumaker/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Anaheim"], + "_id": { + "$oid": "6674c30595590f9fd94590e7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Black Cape", + "name": "kyle saunders", + "email": "kylersaunders@gmail.com", + "linkedIn": "/kylersaunders", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Chandler", "Irving"], + "_id": { + "$oid": "6674c30595590f9fd94590e8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Blackrock", + "name": "Jiaxin Li", + "email": "jiaxin.li.gogo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lijiaxingogo/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "DevOps Engineer", + "industry": "", + "cities": ["Norfolk"], + "_id": { + "$oid": "6674c30595590f9fd94590e9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Blackthorn Software", + "name": "Aalok Shah", + "email": "aalok.tsh@gmail.com", + "linkedIn": "/kolashah", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Full Stack Software Engineer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94590ea" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Blackthorn.io", + "name": "Tristan Onfroy", + "email": "tonfroy90@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tristan-onfroy/", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Support Software Engineer", + "industry": "Software Solutions/Developer Tools", + "cities": ["Irvine", "Henderson"], + "_id": { + "$oid": "6674c30595590f9fd94590eb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Blend", + "name": "Peter Makhnatch", + "email": "p.makhnatch@gmail.com", + "linkedIn": "https://www.linkedin.com/in/petermakhnatch/", + "campus": "PTRI", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Sydney", "Berlin"], + "_id": { + "$oid": "6674c30595590f9fd94590ec" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Blink Health", + "name": "Matthew Digel", + "email": "Digel.matt@gmail.com", + "linkedIn": "https://www.linkedin.com/in/matt-digel", + "campus": "PTRI", + "cohort": "Beta", + "jobTitle": "Sr. Product Manager", + "industry": "Health Care Tech", + "cities": ["Toledo", "Saint Paul"], + "_id": { + "$oid": "6674c30595590f9fd94590ed" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Blizzard", + "name": "Christopher Washburn", + "email": "chris132128@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christopherwashburn/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Software Development Engineer", + "industry": "Insurance", + "cities": ["Mumbai", "Milwaukee", "Oakland"], + "_id": { + "$oid": "6674c30595590f9fd94590ee" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "BlockFi", + "name": "Mohtasim Chowdhury", + "email": "mohtasim.hc@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mohtasimc/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Frontend Engineer", + "industry": "Fintech", + "cities": ["New York", "Virginia Beach", "Reno"], + "_id": { + "$oid": "6674c30595590f9fd94590ef" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "BLOCKS", + "name": "Christopher C Carney", + "email": "ccarney51@gmail.com", + "linkedIn": "https://www.linkedin.com/mwlite/in/christopher-c-carney", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Senior Backend Engineer", + "industry": "Technology", + "cities": ["Austin", "Scottsdale", "Anchorage"], + "_id": { + "$oid": "6674c30595590f9fd94590f0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Bloom Medicinals", + "name": "Candie Hill", + "email": "can330330@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/candie-hill/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Jr Software Developer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94590f1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Bloomberg", + "name": "John Haberstroh", + "email": "haberstroh.john@gmail.com", + "linkedIn": "https://www.linkedin.com/in/johnhaberstroh/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Senior Fullstack Engineer", + "industry": "Financial,Software,Media,Data", + "cities": ["Norfolk", "Memphis"], + "_id": { + "$oid": "6674c30595590f9fd94590f2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Bloomberg", + "name": "James Maguire", + "email": "Jmaguire655@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94590f3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Bloomberg", + "name": "Cedric Lee", + "email": "leeced@umich.edu", + "linkedIn": "https://www.linkedin.com/in/leeced/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["El Paso", "Tampa"], + "_id": { + "$oid": "6674c30595590f9fd94590f4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Bloomberg", + "name": "Duke Lee", + "email": "leeduke90@gmail.com", + "linkedIn": "https://www.linkedin.com/in/duke-lee/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "Fin-Tech", + "cities": ["Stockton", "Oakland", "Atlanta"], + "_id": { + "$oid": "6674c30595590f9fd94590f5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Bloomberg", + "name": "Michael Chin", + "email": "mikechin37@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael-9-chin/", + "campus": "NYC / ECRI", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Houston", "Riverside", "Norfolk"], + "_id": { + "$oid": "6674c30595590f9fd94590f6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Bloomberg Industry Group", + "name": "Neel Lakshman", + "email": "neelanjan.lakshman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/neel-lakshman/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Web Application Architect I", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94590f7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Bloomberg L.P.", + "name": "Ariel Hyman", + "email": "a.o.hyman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ahyman0712/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Sรฃo Paulo", "Greensboro"], + "_id": { + "$oid": "6674c30595590f9fd94590f8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Bloomberg LP", + "name": "Jinhee Choi", + "email": "jinhee.k.choi@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jinheekchoi/", + "campus": "LA", + "cohort": "44", + "jobTitle": "Senior Software Engineer (Consultant)", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94590f9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Bloomboard", + "name": "Junie Hou", + "email": "selilac9@gmail.com", + "linkedIn": "https://www.linkedin.com/in/juniehou/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Norfolk", "Raleigh"], + "_id": { + "$oid": "6674c30595590f9fd94590fa" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Blue Cross Blue Sheild of Florida", + "name": "Adam Rodriguez", + "email": "adamxrodriguez@gmail.com", + "linkedIn": "https://linkedin.com/in/adamrodriguez/", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Senior React Node Software Engineer", + "industry": "Healthcare", + "cities": ["Philadelphia"], + "_id": { + "$oid": "6674c30595590f9fd94590fb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Blue Origin", + "name": "Sam VanTassel", + "email": "vantassel.sam@gmail.com", + "linkedIn": "https://www.linkedin.com/in/samvantassel/", + "campus": "LA", + "cohort": "47", + "jobTitle": "Software Engineer I", + "industry": "Aerospace", + "cities": ["Washington", "Cleveland"], + "_id": { + "$oid": "6674c30595590f9fd94590fc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Blueberry Pediatrics", + "name": "Lina Lee", + "email": "woorin.lee1524@gmail.com", + "linkedIn": "www.linkedin.com/in/lee-lina", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Full-Stack Software Engineer", + "industry": "Healthcare", + "cities": ["Memphis"], + "_id": { + "$oid": "6674c30595590f9fd94590fd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "BlueStream Health", + "name": "Wei Huang", + "email": "wei.waye.huang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/wei-waye-huang/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Senior Software Engineer", + "industry": "Healthcare", + "cities": ["Berlin"], + "_id": { + "$oid": "6674c30595590f9fd94590fe" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "BlueVoyant", + "name": "Mahfuz Kabir", + "email": "mahfuzk@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mahfuzkabir/", + "campus": "NYC", + "cohort": "4", + "jobTitle": "Software Engineer (Managed Security Services)", + "industry": "", + "cities": ["Henderson", "Denver"], + "_id": { + "$oid": "6674c30595590f9fd94590ff" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "BNY Mellon", + "name": "Ahsan Ali", + "email": "ali.ahsan95@gmail.com", + "linkedIn": "https://www.linkedin.com/in/greyali", + "campus": "FTRI / CTRI", + "cohort": "12", + "jobTitle": "Senior Full Stack Developer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459100" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Bolt", + "name": "Chelsey Fewer", + "email": "chelsey.fewer@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chelsey-fewer/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Support Engineer", + "industry": "Ecommerce", + "cities": ["Toronto", "Omaha"], + "_id": { + "$oid": "6674c30595590f9fd9459101" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Booster", + "name": "Evelin Goldin", + "email": "evelinsaba1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/evelin-goldin/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Fullstack Software Engineer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459102" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Booz Allen Hamilton", + "name": "Sang Rea Han", + "email": "sxhanx@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sangreahan/", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Sr. Consultant", + "industry": "Consulting", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459103" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Boulevard", + "name": "Ashley Austin", + "email": "aaustin86@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mraustin2u", + "campus": "LA", + "cohort": "34", + "jobTitle": "Senior Associate Software Engineer", + "industry": "Business Management Tool", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459104" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Boxed", + "name": "Adam Goodman", + "email": "adamrgoodman1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adam-goodman1/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Backend Engineer I", + "industry": "e-commerce", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459105" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "BP3", + "name": "Brian Jungk", + "email": "brian.jungk@outlook.com", + "linkedIn": "https://www.linkedin.com/in/brian-jungk/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Software Engineer", + "industry": "Consulting", + "cities": ["Laredo"], + "_id": { + "$oid": "6674c30595590f9fd9459106" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Brady Corporation", + "name": "Sean Flynn", + "email": "seanflynn5000@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sean-g-flynn", + "campus": "NYC / ECRI", + "cohort": "38", + "jobTitle": "Web Developer", + "industry": "Business Tech/Enterprise Tech", + "cities": ["Fresno"], + "_id": { + "$oid": "6674c30595590f9fd9459107" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Branding Brand", + "name": "Andy Heng", + "email": "andyheng1095@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andy-heng/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Engineer", + "industry": "E-Commerce", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459108" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Branding Brand", + "name": "Christian Wong", + "email": "ctcwong73@gmail.com", + "linkedIn": "https://www.linkedin.com/in/wong-christian/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Tampa"], + "_id": { + "$oid": "6674c30595590f9fd9459109" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Branding Brand", + "name": "Nobuhide Ajito", + "email": "Nobuhide95@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nobuhide-ajito/", + "campus": "LA", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Technology", + "cities": ["Durham", "Winston-Salem"], + "_id": { + "$oid": "6674c30595590f9fd945910a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Bread Financial", + "name": "Cho Yee Win Aung", + "email": "choyeewinag@gmail.com", + "linkedIn": "https://www.linkedin.com/in/choyeewinaung/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer 1", + "industry": "Fintech", + "cities": ["Philadelphia", "Omaha", "North Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd945910b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Brighter", + "name": "Elliot Kim", + "email": "elliot.kim@gmail.com", + "linkedIn": "https://www.linkedin.com/in/elliotjykim/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Full Stack Engineer", + "industry": "Gaming & Entertainment", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945910c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.058Z" + }, + "__v": 0 + }, + { + "company": "Brighter (Cigna)", + "name": "David Marquess", + "email": "dave.marquess@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dave-marquess/", + "campus": "LA", + "cohort": "25", + "jobTitle": "Senior Software Engineer", + "industry": "Cybersecurity", + "cities": ["Garland"], + "_id": { + "$oid": "6674c30595590f9fd945910d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Brightflow AI", + "name": "Erika Jung", + "email": "erika.h.jung@gmail.com", + "linkedIn": "https://www.linkedin.com/in/erikahjung/", + "campus": "LA / WCRI", + "cohort": "56", + "jobTitle": "Software Engineer", + "industry": "IT Services", + "cities": ["Baltimore"], + "_id": { + "$oid": "6674c30595590f9fd945910e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Brillio", + "name": "Alexander Smith", + "email": "ajsmith925@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ajsmith925/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer", + "industry": "Software Consulting", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945910f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Brooksource, contracted to Northwestern Mutual", + "name": "Jessica Louie Lee", + "email": "jlouielee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jessllee/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Backend Node Engineer with Brooksource, Full stack Engineer with Northwestern Mutual", + "industry": "Fintech", + "cities": ["Raleigh", "San Francisco"], + "_id": { + "$oid": "6674c30595590f9fd9459110" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "BuildOps", + "name": "Muhammad Trad", + "email": "Muhammad.trad@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/muhammadtrad/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Senior Software Engineer", + "industry": "Commercial Real Estate", + "cities": ["Tulsa"], + "_id": { + "$oid": "6674c30595590f9fd9459111" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Business Alliance Financial Services (BAFS)", + "name": "Justin McKay", + "email": "justinmckay99@gmail.com", + "linkedIn": "https://www.linkedin.com/in/justinwmckay/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Chicago", "Chesapeake", "Cincinnati"], + "_id": { + "$oid": "6674c30595590f9fd9459112" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Business Alliance Financial Services, LLC", + "name": "Joe Bigelow", + "email": "joebigelow@protonmail.com", + "linkedIn": "https://www.linkedin.com/in/joe-bigelow", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer", + "industry": "Finance (Credit union service organization)", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459113" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "ButcherBox", + "name": "Maxwell Shick", + "email": "maxwellshick@gmail.com", + "linkedIn": "https://www.linkedin.com/in/maxwell-shick/", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Restaurant, Food, and Beverage", + "cities": ["Jersey City", "Minneapolis", "Pittsburgh"], + "_id": { + "$oid": "6674c30595590f9fd9459114" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Butterfly Network", + "name": "Akiko Hagio Dulaney", + "email": "akikoinhd@gmail.com", + "linkedIn": "https://www.linkedin.com/in/akiko-hagio-dulaney/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Web/API QA Automation Engineer", + "industry": "Healthtech", + "cities": ["Saint Paul", "Plano", "Raleigh"], + "_id": { + "$oid": "6674c30595590f9fd9459115" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Butterfly Network", + "name": "Crystal (Crys) Lim", + "email": "crystal.joy.lim@gmail.com", + "linkedIn": "https://www.linkedin.com/in/crystallim/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer II - Cloud Backend", + "industry": "Medical Equipment Manufacturing", + "cities": ["Albuquerque"], + "_id": { + "$oid": "6674c30595590f9fd9459116" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "C3 AI", + "name": "Shelby Cotton", + "email": "hello@shelbycotton.com", + "linkedIn": "https://linkedin.com/in/shelbycotton", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Forward Deployed Engineer", + "industry": "Artificial intelligence", + "cities": ["Honolulu", "Toronto"], + "_id": { + "$oid": "6674c30595590f9fd9459117" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "C3.AI", + "name": "Dominic Genuario", + "email": "dominicgenuario@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dominic-genuario/", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Forward Deployed Engineer", + "industry": "Artificial Intelligence", + "cities": ["Mexico City"], + "_id": { + "$oid": "6674c30595590f9fd9459118" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Cadent", + "name": "William Yoon", + "email": "williamdyoon@gmail.com", + "linkedIn": "https://www.linkedin.com/in/williamdyoon/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Front End Engineer", + "industry": "TV Advertising", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459119" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "CafeMedia", + "name": "Jasper Narvil", + "email": "jaspernarvil@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jaspernarvil/", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Software Eng II", + "industry": "Software / Tech", + "cities": ["Bakersfield"], + "_id": { + "$oid": "6674c30595590f9fd945911a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "CAIS Group", + "name": "Anson Avellar", + "email": "anson@ansonavellar.com", + "linkedIn": "https://www.linkedin.com/in/ansonavellar/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Front End Developer (internally Associate)", + "industry": "Fintech", + "cities": ["Baltimore", "Scottsdale"], + "_id": { + "$oid": "6674c30595590f9fd945911b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Canadian Tire Corporation", + "name": "Ansel Andro Santos", + "email": "anselandrosantos@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ansel-santos", + "campus": "NYOI", + "cohort": "3", + "jobTitle": "Manager, Advanced Measurement & Analytics", + "industry": "Data/Analytics/Cloud", + "cities": ["Tulsa"], + "_id": { + "$oid": "6674c30595590f9fd945911c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Canary Connect", + "name": "Dillon Garrett", + "email": "dillon.garrett.dev@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dillon-garrett/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Front End Engineer", + "industry": "Home Security", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945911d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital Connect by JP Morgan", + "name": "Peter Baniuszewicz", + "email": "Baniuszewicz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/peter-ba/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Detroit"], + "_id": { + "$oid": "6674c30595590f9fd945911e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Adrian Inza-Cruz", + "email": "ainzacruz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adrian-inza-cruz/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Senior Associate Software Engineer", + "industry": "Fintech", + "cities": ["Fort Wayne", "Virginia Beach"], + "_id": { + "$oid": "6674c30595590f9fd945911f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Alexander Gurfinkel", + "email": "alexgurfinkel@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexandergurfinkel/", + "campus": "PTRI", + "cohort": "5", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Gilbert", "Lincoln"], + "_id": { + "$oid": "6674c30595590f9fd9459120" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Jung Ho Lee", + "email": "alexxleee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jungholee27/", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459121" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Allan MacLean", + "email": "allanpmaclean@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Toronto"], + "_id": { + "$oid": "6674c30595590f9fd9459122" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Alvin Ma", + "email": "alvin.ma95@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alvinrayma/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["St. Petersburg", "Albuquerque"], + "_id": { + "$oid": "6674c30595590f9fd9459123" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Alvin Cheng", + "email": "alvincheng505@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alvin-cheng/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "Banking", + "cities": ["Houston"], + "_id": { + "$oid": "6674c30595590f9fd9459124" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Allana Ordonez", + "email": "ayaordonez@gmail.com", + "linkedIn": "https://www.linkedin.com/in/allana-ordonez/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer, Frontend", + "industry": "Banking/Fintech", + "cities": ["Milwaukee"], + "_id": { + "$oid": "6674c30595590f9fd9459125" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Brandon Miller", + "email": "bmiller1881@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brandon-j-miller", + "campus": "FTRI / CTRI", + "cohort": "12", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Tucson", "Omaha", "Cincinnati"], + "_id": { + "$oid": "6674c30595590f9fd9459126" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Carson Chen", + "email": "carson.cy.chen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/carsoncychen/", + "campus": "NYC", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "IT", + "cities": ["Seattle", "Glendale"], + "_id": { + "$oid": "6674c30595590f9fd9459127" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Carlos Botero-Vargas", + "email": "cbotero-vargas@outlook.com", + "linkedIn": "https://www.linkedin.com/in/carlosb-v/", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "Senior Software Engineer", + "industry": "Finance", + "cities": ["Kansas City"], + "_id": { + "$oid": "6674c30595590f9fd9459128" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Jason Clark", + "email": "clarkjasonee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/clarkjasonee/", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459129" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Sina Kahrobaei", + "email": "cna.kahrobaei@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sinakahrobaei/", + "campus": "FTRI", + "cohort": "6", + "jobTitle": "Senior Software Engineer (Full Stack)", + "industry": "Fintech", + "cities": ["Tulsa", "Mesa"], + "_id": { + "$oid": "6674c30595590f9fd945912a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Christopher cheng", + "email": "Ctpcheng@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ctpcheng/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Senior Software Engineer, Front End", + "industry": "Fintech", + "cities": ["Washington", "Miami"], + "_id": { + "$oid": "6674c30595590f9fd945912b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Darren Chan", + "email": "darrenc3195@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dbchan/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Full Stack Software Engineer", + "industry": "Fintech", + "cities": ["Minneapolis"], + "_id": { + "$oid": "6674c30595590f9fd945912c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "David Zhang", + "email": "davidnyc@umich.edu", + "linkedIn": "https://www.linkedin.com/in/davidnyc/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Fullstack Software Engineer", + "industry": "Finance", + "cities": ["Charlotte", "Irving"], + "_id": { + "$oid": "6674c30595590f9fd945912d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Dani Almaraz", + "email": "dtalmaraz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dani-almaraz/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["San Francisco"], + "_id": { + "$oid": "6674c30595590f9fd945912e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Eugene Lee", + "email": "eugleenyc@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945912f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Nel Malikova", + "email": "gunelmalikova@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gmalikova/", + "campus": "NYC", + "cohort": "10", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Tucson", "Milwaukee", "Chula Vista"], + "_id": { + "$oid": "6674c30595590f9fd9459130" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Hemwatie Persaud", + "email": "hemwatiecodes@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hemwatie/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "Banking", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459131" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Ian Madden", + "email": "ianfmadden@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ian-madden/", + "campus": "FTRI / CTRI", + "cohort": "7", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["St. Louis", "Laredo"], + "_id": { + "$oid": "6674c30595590f9fd9459132" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Jae Hyun Ha", + "email": "jaehyunha96@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jae-hyun-ha/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Software Engineer - backend", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459133" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "James Ma", + "email": "jamesma991@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jamesma1199/", + "campus": "FTRI", + "cohort": "7", + "jobTitle": "Senior Associate Software Engineer", + "industry": "Fintech", + "cities": ["Oakland", "Jacksonville"], + "_id": { + "$oid": "6674c30595590f9fd9459134" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Jennifer Chau", + "email": "jenniferchau512@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jenniferchau512/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Tampa", "Columbus"], + "_id": { + "$oid": "6674c30595590f9fd9459135" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Jin Oh", + "email": "jintoh613@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jintoh613/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Wichita", "Seattle", "Lubbock"], + "_id": { + "$oid": "6674c30595590f9fd9459136" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "John Li", + "email": "jli159@binghamton.edu", + "linkedIn": "https://www.linkedin.com/in/john-li7/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Fullstack Engineer", + "industry": "Banking", + "cities": ["Tampa"], + "_id": { + "$oid": "6674c30595590f9fd9459137" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Joseph Amos", + "email": "joeamos17@gmail.com", + "linkedIn": "linkedin.com/in/joe-amos", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Senior Associate Software Engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459138" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Johnny Chen", + "email": "johncschen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/johnnycschen/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Chicago", "San Jose", "Virginia Beach"], + "_id": { + "$oid": "6674c30595590f9fd9459139" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Jonathan Chen", + "email": "jonathanchen832@gmail.com", + "linkedIn": "Https://linkedin.com/in/jonathan-hp-chen", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Full Stack Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945913a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "June Culp", + "email": "juneculp1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/juneculp/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Senior Front End Engineer", + "industry": "Fintech", + "cities": ["Lubbock"], + "_id": { + "$oid": "6674c30595590f9fd945913b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Kristine Aguda", + "email": "kaguda03@gmail.com", + "linkedIn": "https://www.linkedin.com/kristine-aguda", + "campus": "LA", + "cohort": "45", + "jobTitle": "Software Engineer, Full Stack", + "industry": "Fin tech", + "cities": ["San Antonio", "Mexico City", "Washington"], + "_id": { + "$oid": "6674c30595590f9fd945913c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Kasthuri Menon", + "email": "kasthuri.menon1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kasthurimenon/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Senior Software Engineer", + "industry": "Banking/ Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945913d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Ken Litton", + "email": "kennethclitton@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ken-litton/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Backend Engineer, Senior Associate", + "industry": "Finance/Banking", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945913e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Kevin Park-Lee", + "email": "kevin38424@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kevin38424/", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945913f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Kellen Levy", + "email": "Kmalcolmlevy@gmail.com", + "linkedIn": "https://www.linked.com/in/kellenmlevy", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "Senior Associate Software Engineer", + "industry": "Fintech", + "cities": ["Arlington"], + "_id": { + "$oid": "6674c30595590f9fd9459140" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Jason Lin", + "email": "lin.jasonp@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jplin/", + "campus": "FTRI", + "cohort": "7", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Long Beach"], + "_id": { + "$oid": "6674c30595590f9fd9459141" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Luke Cho", + "email": "luke.h.cho@gmail.com", + "linkedIn": "https://www.linkedin.com/in/luke-h-cho/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "Banking", + "cities": ["North Las Vegas", "Santa Ana"], + "_id": { + "$oid": "6674c30595590f9fd9459142" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Philip Kang", + "email": "m.philipkang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/pkmi/", + "campus": "NYC / ECRI", + "cohort": "27", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Glendale", "Louisville"], + "_id": { + "$oid": "6674c30595590f9fd9459143" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Matthew Femia", + "email": "mattfemia1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mattfemia/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459144" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "May Li", + "email": "mayleeli1234@gmail.com", + "linkedIn": "https://www.linkedin.com/in/maysli", + "campus": "LA", + "cohort": "44", + "jobTitle": "Fullstack Software Engineer", + "industry": "Fintech", + "cities": ["Boston", "Bakersfield", "Dallas"], + "_id": { + "$oid": "6674c30595590f9fd9459145" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Matt von der Lippe", + "email": "mvdlippe@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mvdlippe/", + "campus": "FTRI", + "cohort": "3", + "jobTitle": "Senior Associate Software Engineer - Backend", + "industry": "Fintech", + "cities": ["Long Beach", "Chandler"], + "_id": { + "$oid": "6674c30595590f9fd9459146" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Nathanael Tracy", + "email": "n.tracy@outlook.com", + "linkedIn": "https://www.linkedin.com/in/nathanael-tracy/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Senior Associate Software Engineer", + "industry": "Finance", + "cities": ["Lexington"], + "_id": { + "$oid": "6674c30595590f9fd9459147" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Nathan Yang", + "email": "nathan.yang16@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nathanmyang/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Sr. Associate Software Engineer (Full-Stack)", + "industry": "Business", + "cities": ["Arlington", "Cincinnati", "Laredo"], + "_id": { + "$oid": "6674c30595590f9fd9459148" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Nicholas A Gonzalez", + "email": "nicholas.a.gonz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nicholasagonzalez/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Fullstack Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459149" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Patrick Slagle", + "email": "patrickryanslagle@gmail.com", + "linkedIn": "https://www.linkedin.com/in/patrickslagle/", + "campus": "LA", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Paris"], + "_id": { + "$oid": "6674c30595590f9fd945914a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Peter Van", + "email": "peterrvan@gmail.com", + "linkedIn": "https://www.linkedin.com/in/peter-van/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Front End Software Engineer", + "industry": "Financial Services", + "cities": ["Irvine", "Washington"], + "_id": { + "$oid": "6674c30595590f9fd945914b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Rachel Patterson", + "email": "racheljpatterson@gmail.com", + "linkedIn": "https://www.linkedin.com/in/racheljpatterson/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Software Engineer, Full Stack", + "industry": "Banking/Fintech", + "cities": ["Charlotte", "Buffalo", "Houston"], + "_id": { + "$oid": "6674c30595590f9fd945914c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Quentin Rousset", + "email": "roussetquent1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/qrousset/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Sr Software Engineer Back-end", + "industry": "Fintech", + "cities": ["Pittsburgh"], + "_id": { + "$oid": "6674c30595590f9fd945914d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Ahad Rajput", + "email": "sachem2015@gmail.com", + "linkedIn": "https://www.linkedin.com/in/arajput96/", + "campus": "FTRI", + "cohort": "3", + "jobTitle": "Senior Software Engineer", + "industry": "Finance/Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945914e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Sam Portelance", + "email": "sportelance1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sportelance/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Senior Associate Fullstack Engineer", + "industry": "Fintech", + "cities": ["Berlin", "Orlando", "London"], + "_id": { + "$oid": "6674c30595590f9fd945914f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Stephen Kim", + "email": "stephenkim612@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stephenkim612/", + "campus": "LA", + "cohort": "47", + "jobTitle": "Software Engineer, Fullstack", + "industry": "Finance", + "cities": ["Riverside", "Colorado Springs", "Los Angeles"], + "_id": { + "$oid": "6674c30595590f9fd9459150" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Andrew Talle", + "email": "talle.andrew@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andrewtalle/", + "campus": "FTRI", + "cohort": "6", + "jobTitle": "Backend Software Engineer", + "industry": "Fintech", + "cities": ["Greensboro", "Omaha"], + "_id": { + "$oid": "6674c30595590f9fd9459151" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Terrence Granger", + "email": "Terrence.granger@gmail.com", + "linkedIn": "https://www.linkedin.com/in/terrence-granger/", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Long Beach", "Columbus"], + "_id": { + "$oid": "6674c30595590f9fd9459152" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Thomas Reeder", + "email": "thomaseugenereeder@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thomas-reeder/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer, Full Stack", + "industry": "Banking", + "cities": ["Madison", "Virginia Beach", "Houston"], + "_id": { + "$oid": "6674c30595590f9fd9459153" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Trevor Leung", + "email": "trevorleeeung@gmail.com", + "linkedIn": "https://www.linkedin.com/in/trevleung/", + "campus": "LA", + "cohort": "47", + "jobTitle": "Software Engineer, Full Stack", + "industry": "Finance/Banking", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459154" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Vivian Wu", + "email": "Vivian.wu.here@gmail.com", + "linkedIn": "https://www.linkedin.com/in/viv-wu", + "campus": "LA", + "cohort": "44", + "jobTitle": "Solutions Engineer", + "industry": "Healthcare fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459155" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Vicki Yang", + "email": "vwyangdev@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vwyang/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Senior Software Engineer", + "industry": "Financial Services", + "cities": ["Tokyo", "Gilbert"], + "_id": { + "$oid": "6674c30595590f9fd9459156" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Walker Marsh", + "email": "walkermarsh9@gmail.com", + "linkedIn": "https://www.linkedin.com/in/WalkerVEMarsh/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Software Engineer, Full Stack", + "industry": "Fintech/ Banking", + "cities": ["Paris", "Washington", "Virginia Beach"], + "_id": { + "$oid": "6674c30595590f9fd9459157" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Kevin Richardson", + "email": "kevin@karcodes.com", + "linkedIn": "https://www.linkedin.com/in/kevinalexrichardson/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Senior Software Engineer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459158" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Michael Benliyan", + "email": "michaelbenliyan@gmail.com", + "linkedIn": "michaelbenliyan", + "campus": "LA / WCRI", + "cohort": "55", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Louisville"], + "_id": { + "$oid": "6674c30595590f9fd9459159" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Nathan Cho", + "email": "nathan.y.cho@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nathanycho", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Newark"], + "_id": { + "$oid": "6674c30595590f9fd945915a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Martin Ng", + "email": "kamartinng@gmail.com", + "linkedIn": "https://www.linkedin.com/in/martinngsf/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Fintech", + "cities": ["Albuquerque", "Chandler"], + "_id": { + "$oid": "6674c30595590f9fd945915b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One", + "name": "Honghao sun", + "email": "sunhonghaoshh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/honghaosunmichael/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Senior Fullstack Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945915c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital One Bank", + "name": "Donald Cross", + "email": "derekcrosslu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/crossderek/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Front End Engineer", + "industry": "Finance", + "cities": ["Memphis"], + "_id": { + "$oid": "6674c30595590f9fd945915d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital Rx", + "name": "Htin Linn Aung", + "email": "htinlinnag1993@gmail.com", + "linkedIn": "https://www.linkedin.com/in/htinlinnaung/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Senior Fullstack Software Engineer", + "industry": "Healthcare Tech", + "cities": ["Stockton"], + "_id": { + "$oid": "6674c30595590f9fd945915e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Capital Rx", + "name": "Jin Qin", + "email": "jxq32@case.edu", + "linkedIn": "https://www.linkedin.com/in/jcqin/", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "Senior Fullstack Developer", + "industry": "Health Care", + "cities": ["Sacramento"], + "_id": { + "$oid": "6674c30595590f9fd945915f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Caraway Health", + "name": "Gwendolyn (Gwen) Phillips", + "email": "gwen.phil@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gwen-phillips/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Full Stack Engineer", + "industry": "Healthcare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459160" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Carbon Mapper", + "name": "Zach Franz", + "email": "zachafranz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/zacharyfranz/", + "campus": "NYC", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "Research", + "cities": ["Baltimore", "Jersey City", "Orlando"], + "_id": { + "$oid": "6674c30595590f9fd9459161" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Care/of", + "name": "Jake Pino", + "email": "Jakepino@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/jake-pino", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Senior Software Engineer", + "industry": "Wellness", + "cities": ["Miami", "Sacramento", "Winston-Salem"], + "_id": { + "$oid": "6674c30595590f9fd9459162" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Care/of", + "name": "Malika Butler", + "email": "missemmbutler@gmail.com", + "linkedIn": "https://www.linkedin.com/in/malikabutler", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Health tech", + "cities": ["Philadelphia", "Long Beach"], + "_id": { + "$oid": "6674c30595590f9fd9459163" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "CareDox", + "name": "Christine Choi", + "email": "christine.yj.choi@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christineyjchoi/", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Retail", + "cities": ["Fort Wayne", "Lincoln", "Honolulu"], + "_id": { + "$oid": "6674c30595590f9fd9459164" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Carrot Fertility", + "name": "Heather Barney", + "email": "heather.barney@gmail.com", + "linkedIn": "https://www.linkedin.com/in/heather-barney1/", + "campus": "PTRI", + "cohort": "4", + "jobTitle": "Associate Software Engineer", + "industry": "Insurance", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459165" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Cassian Solutions, Inc.", + "name": "Darin Ngau", + "email": "darin.ngau@gmail.com", + "linkedIn": "https://www.linkedin.com/in/darin-ngau/", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Omaha", "Bakersfield", "Austin"], + "_id": { + "$oid": "6674c30595590f9fd9459166" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Cast & Crew", + "name": "Tianhao Yao", + "email": "mapleseventh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tianhao-yao-2021826a/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "Entertainment", + "cities": ["Fort Wayne", "Atlanta"], + "_id": { + "$oid": "6674c30595590f9fd9459167" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "cast and crew", + "name": "Sam Selfridge", + "email": "sirclesam@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/sam-selfridge/", + "campus": "LA", + "cohort": "28", + "jobTitle": "software engineer", + "industry": "fintech/entertainment", + "cities": ["Plano", "Corpus Christi"], + "_id": { + "$oid": "6674c30595590f9fd9459168" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Cast.app", + "name": "Robert Maeda", + "email": "rob.maeda3@gmail.com", + "linkedIn": "https://www.linkedin.com/in/robert-maeda/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Kansas City"], + "_id": { + "$oid": "6674c30595590f9fd9459169" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Catchpoint", + "name": "Neyser Zana", + "email": "neyserj.zana@gmail.com", + "linkedIn": "https://www.linkedin.com/in/neyser-zana-860018152/", + "campus": "NYC", + "cohort": "7", + "jobTitle": "Software Engineer II", + "industry": "Advertising", + "cities": ["Milwaukee", "Mexico City", "Indianapolis"], + "_id": { + "$oid": "6674c30595590f9fd945916a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Causebox", + "name": "Grace Kim", + "email": "gracekiim@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gracekiim/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Engineer", + "industry": "Consumer products", + "cities": ["Chandler"], + "_id": { + "$oid": "6674c30595590f9fd945916b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "CB Insights", + "name": "Hazel Na", + "email": "hazel.na3@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hyeseon-na", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Software Engineer III - Frontend", + "industry": "business analytics platform", + "cities": ["Greensboro", "Madison"], + "_id": { + "$oid": "6674c30595590f9fd945916c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "CBTS - CVS", + "name": "Chang Shuen Lee", + "email": "changshuen.lee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/daveelee/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Frontend Software Engineer", + "industry": "Health", + "cities": ["Austin", "Oakland", "Durham"], + "_id": { + "$oid": "6674c30595590f9fd945916d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Cecelia Health", + "name": "Kwadwo Asamoah", + "email": "addoasa94@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kwadwoasamoah", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Front End Engineer", + "industry": "Health", + "cities": ["Pittsburgh", "Santa Ana", "Saint Paul"], + "_id": { + "$oid": "6674c30595590f9fd945916e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Cedars-Sinai Cancer", + "name": "William Chu", + "email": "Williamchu9@gmail.com", + "linkedIn": "https://www.linkedin.com/in/williamchu9/", + "campus": "LA", + "cohort": "49", + "jobTitle": "Software Engineer/Programming Analyst", + "industry": "Healthcare", + "cities": ["Long Beach"], + "_id": { + "$oid": "6674c30595590f9fd945916f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.059Z" + }, + "__v": 0 + }, + { + "company": "Cenith Innovations", + "name": "Serena Amos", + "email": "amos.serena17@gmail.com", + "linkedIn": "https://www.linkedin.com/in/serena-amos/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Software Engineer", + "industry": "Aerospace", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459170" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Centene", + "name": "Serena Romano", + "email": "serenahromano2000@gmail.com", + "linkedIn": "https://www.linkedin.com/in/srom1/", + "campus": "NYC / ECRI", + "cohort": "41", + "jobTitle": "Full Stack Developer", + "industry": "Healthtech/Healthcare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459171" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Cequint", + "name": "Carol Xia", + "email": "c.xia.98@gmail.com", + "linkedIn": "linkedin.com/in/carolxia2", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Software Development Engineer", + "industry": "Telecommunications", + "cities": ["Oakland", "Colorado Springs"], + "_id": { + "$oid": "6674c30595590f9fd9459172" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Cerebral", + "name": "Irine Kang", + "email": "irine.kang@codesmith.io", + "linkedIn": "https://www.linkedin.com/in/irinekang/", + "campus": "FTRI", + "cohort": "6", + "jobTitle": "Full Stack Engineer II", + "industry": "Medicine", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459173" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "CH Robinson", + "name": "Joseph Cheng", + "email": "josephcheng.y@gmail.com", + "linkedIn": "https://www.linkedin.com/in/josephcheng-y/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Engineer", + "industry": "Logistic", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459174" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Chainalysis", + "name": "Natalia Vargas-Caba", + "email": "nvargas@gm.slc.edu", + "linkedIn": "https://www.linkedin.com/in/nataliavargascaba", + "campus": "NYC", + "cohort": "17", + "jobTitle": "Technical Writer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459175" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Chainguard", + "name": "Felipe Ocampo", + "email": "felipe.aocampo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ocampofelipe/", + "campus": "LA / WCRI", + "cohort": "56", + "jobTitle": "Web Developer", + "industry": "Marketing/Advertising", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459176" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Chainlink", + "name": "Finley Decker", + "email": "finleydecker@gmail.com", + "linkedIn": "https://www.linkedin.com/in/finleydecker/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Software Engineer", + "industry": "Blockchain/Web3", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459177" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Change Healthcare", + "name": "Bruce Wong", + "email": "dbrucewong@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dawong/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Senior Software Engineer", + "industry": "Healthcare", + "cities": ["Albuquerque", "Chesapeake"], + "_id": { + "$oid": "6674c30595590f9fd9459178" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Change Healthcare", + "name": "Billy K Lee", + "email": "ucanfindbillie@gmail.com", + "linkedIn": "https://www.linkedin.com/in/billy-k-lee/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459179" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Change Healthcare.", + "name": "Noah Lee", + "email": "no@hlee.me", + "linkedIn": "https://www.linkedin.com/in/justnoah/", + "campus": "LA", + "cohort": "27", + "jobTitle": "Software Engineer.", + "industry": "Healthcare.", + "cities": ["Jacksonville"], + "_id": { + "$oid": "6674c30595590f9fd945917a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Chargebacks911", + "name": "Chandni Patel", + "email": "chandnip6@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chandnip6/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Anaheim"], + "_id": { + "$oid": "6674c30595590f9fd945917b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Chargebee Retention", + "name": "Abhi Krishnan", + "email": "krabhishaken@gmail.com", + "linkedIn": "https://www.linkedin.com/in/krabhishaken/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Senior Software Engineer", + "industry": "Subscription Tech", + "cities": ["Norfolk"], + "_id": { + "$oid": "6674c30595590f9fd945917c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Chariot", + "name": "Weilan Cui", + "email": "weilanc@gmail.com", + "linkedIn": "https://www.linkedin.com/in/weilan-cui", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Founding engineer", + "industry": "Software as a service", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945917d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Charles River", + "name": "Josh Howard", + "email": "JoshHoward.Dev@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joshhowarddev/", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Full Stack Developer", + "industry": "Software / Tech", + "cities": ["Scottsdale", "Mexico City"], + "_id": { + "$oid": "6674c30595590f9fd945917e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Charles Schwab", + "name": "Troy Witonsky", + "email": "troywitonsky@gmail.com", + "linkedIn": "https://www.linkedin.com/in/troy-witonsky", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Enterprise Engineer", + "industry": "Fintech", + "cities": ["Santa Ana"], + "_id": { + "$oid": "6674c30595590f9fd945917f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Chattanooga Shooting Supplies", + "name": "Zach Hall", + "email": "zachh85@gmail.com", + "linkedIn": "linkedin.com/in/z-r-hall", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Senior Application Developer", + "industry": "Retail", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459180" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Cheddar Media", + "name": "David Neuhaus", + "email": "david@neuha.us", + "linkedIn": "https://www.linkedin.com/in/dneuhaus/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Sr Software Engineer", + "industry": "Media / News", + "cities": ["Dallas", "Paris"], + "_id": { + "$oid": "6674c30595590f9fd9459181" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Chegg, Inc", + "name": "Kate Matthews", + "email": "katesmatthews@gmail.com", + "linkedIn": "https://www.linkedin.com/in/katesmatthews/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Software Engineer", + "industry": "EdTech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459182" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Chewy", + "name": "Lucy Chi", + "email": "lucycchi@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chilucy/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Tech Consulting, Client is in HealthTech", + "cities": ["Oakland", "Toronto", "Jacksonville"], + "_id": { + "$oid": "6674c30595590f9fd9459183" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Chewy", + "name": "Joseph Nagy", + "email": "nagyjoseph29@gmail.com", + "linkedIn": "https://www.linkedin.com/in/josephmnagy/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "E-commerce", + "cities": ["Tampa"], + "_id": { + "$oid": "6674c30595590f9fd9459184" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Chief", + "name": "Tim Ruszala", + "email": "truszala@gmail.com", + "linkedIn": "https://www.linkedin.com/in/timruszala/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Fullstack Software Engineer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459185" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Chipper Cash", + "name": "Sean Lee", + "email": "lee.sw.sean@gmail.com", + "linkedIn": "https://www.linkedin.com/in/seanleesw", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Lincoln"], + "_id": { + "$oid": "6674c30595590f9fd9459186" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Choose Ketamine", + "name": "Eric Komatsu", + "email": "eric@cpgexperience.com", + "linkedIn": "https://www.linkedin.com/in/eric-komatsu/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Lead Engineer", + "industry": "Healthcare", + "cities": ["Las Vegas", "Atlanta"], + "_id": { + "$oid": "6674c30595590f9fd9459187" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Chopra Global", + "name": "Jonathon Gonzalez", + "email": "gonzalezjonathon55@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonathon-gonzalez/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Backend Engineer", + "industry": "Health & Wellness", + "cities": ["Jersey City", "Toledo"], + "_id": { + "$oid": "6674c30595590f9fd9459188" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Chopra Global", + "name": "Josh Naso", + "email": "jnaso29@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joshnaso/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Web Developer", + "industry": "Meditation/self-care", + "cities": ["Lubbock", "Oklahoma City"], + "_id": { + "$oid": "6674c30595590f9fd9459189" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "ChromaCode", + "name": "Edwin Menendez", + "email": "edwinjmenendez@gmail.com", + "linkedIn": "https://www.linkedin.com/in/edwinmenendez/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Bio-Tech", + "cities": ["Portland"], + "_id": { + "$oid": "6674c30595590f9fd945918a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Chubb insurance", + "name": "Robert Hernandez", + "email": "Rob23Hernandez@gmail.com", + "linkedIn": "https://www.linkedin.com/in/robhernandeznyc/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945918b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Cigna", + "name": "JC Fernandez", + "email": "jorgecarlosfern@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jorge-carlos-fernandez/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Full Stack Engineer", + "industry": "Health Care", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945918c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "CIMx", + "name": "Christian Springer", + "email": "christian@christianspringer.com", + "linkedIn": "https://www.linkedin.com/in/christian-springer0/", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945918d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "CircleCI", + "name": "Ai Mi Bui", + "email": "Aimibui22@gmail.com", + "linkedIn": "https://www.linkedin.com/in/aimibui/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "Software", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945918e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "CircleCI", + "name": "Jeff Chen", + "email": "contact.jeffchen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jalexchen/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Development Engineer", + "industry": "Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945918f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "CircleCI", + "name": "Tony Shen", + "email": "tshen815@live.com", + "linkedIn": "https://www.linkedin.com/in/tonyShen815/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Software Engineer", + "industry": "Computer Software/Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459190" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "CircleCI", + "name": "Tyler Sullberg", + "email": "tysullberg@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tyler-sullberg/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Dev Ops", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459191" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Cisco", + "name": "Laura Llano", + "email": "ldllano@gmail.com", + "linkedIn": "https://www.linkedin.com/in/laura-llano", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Software Engineering", + "industry": "Software / Tech", + "cities": ["Nashville", "Tokyo", "Garland"], + "_id": { + "$oid": "6674c30595590f9fd9459192" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Cisco Systems, Inc.", + "name": "Egon Levy", + "email": "egonlevy@gmail.com", + "linkedIn": "https://www.linkedin.com/in/egon-levy-8b62aa1b0/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Senior Software Engineer", + "industry": "Computer Engineering", + "cities": ["Scottsdale", "Saint Paul"], + "_id": { + "$oid": "6674c30595590f9fd9459193" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Citi", + "name": "Max Heubel", + "email": "maxhuebel@gmail.com", + "linkedIn": "https://www.linkedin.com/in/max-heubel/", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Sr. Programmer Analyst", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459194" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Citi (Citicorp Credit Services, Inc.)", + "name": "Reland Boyle", + "email": "reland.boyle@gmail.com", + "linkedIn": "https://www.linkedin.com/in/relandboyle/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Digital Software Engineer / Senior Analyst - C12, Assistant Vice President of Matrix Reportingโ€‹", + "industry": "Fintech", + "cities": ["Cleveland", "Chesapeake"], + "_id": { + "$oid": "6674c30595590f9fd9459195" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Cityblock", + "name": "Oluwajomiloju Olaode", + "email": "jojuolaode@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jojuolaode/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Senior Software Engineer", + "industry": "Healthcare", + "cities": ["Phoenix"], + "_id": { + "$oid": "6674c30595590f9fd9459196" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Civera", + "name": "Hank McGill", + "email": "henrymcgill@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hank-mcgill/", + "campus": "NYOI", + "cohort": "4", + "jobTitle": "Data Engineering Fellow", + "industry": "Government", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459197" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "CivilGrid", + "name": "Jack Moorman", + "email": "johnmoormaniii@gmail.com", + "linkedIn": "www.linkedin.com/in/jack-moorman", + "campus": "FTRI / CTRI", + "cohort": "14", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459198" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Classy", + "name": "Kim Spicer", + "email": "Kspicerny@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kimberleyspicer/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer", + "industry": "Software", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459199" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Clear", + "name": "Nate Adams", + "email": "NathanielBAdams@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adamsnathaniel/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Software Engineer", + "industry": "Biometrics / Security services", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945919a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Clear Capital", + "name": "Sean Haverstock", + "email": "seanhaverstock@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sean-haverstock/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Associate Software Engineer", + "industry": "Fintech, Real Estate", + "cities": ["Jacksonville"], + "_id": { + "$oid": "6674c30595590f9fd945919b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Clevyr", + "name": "Michael Watson", + "email": "mdwatson988@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mdwatson988/", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Jr. Software Developer", + "industry": "Software / Tech", + "cities": ["Boston", "Durham"], + "_id": { + "$oid": "6674c30595590f9fd945919c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Clicktripz", + "name": "Bryan Bart", + "email": "bart.bryan.e@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bryan-bart/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Software Engineer", + "industry": "Travel Technology", + "cities": ["Durham"], + "_id": { + "$oid": "6674c30595590f9fd945919d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Clover", + "name": "Michael Trapani", + "email": "mtrapani27@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael-a-trapani/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Web Software Engineer", + "industry": "Software / Tech", + "cities": ["Toronto"], + "_id": { + "$oid": "6674c30595590f9fd945919e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "ClubLabs", + "name": "Natlyn Phomsavanh", + "email": "natlynp@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "Insurance/Travel", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945919f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "ClubLabs", + "name": "Talya Sasek", + "email": "talyaercag@gmail.com", + "linkedIn": "https://www.linkedin.com/in/talyasasek/", + "campus": "LA", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["Lincoln", "Mesa"], + "_id": { + "$oid": "6674c30595590f9fd94591a0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "CoachEm", + "name": "Matthew Garza", + "email": "mattg614@gmail.com", + "linkedIn": "https://www.linkedin.com/in/garzamatte/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Full Stack Software Engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591a1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Coates Group", + "name": "Paul Kim", + "email": "paulkim0209@gmail.com", + "linkedIn": "https://www.linkedin.com/in/paul-kim-37735b217", + "campus": "NYC / ECRI", + "cohort": "41", + "jobTitle": "Backend Engineer", + "industry": "Business Tech/Enterprise Tech", + "cities": ["Irving", "Madison", "Lincoln"], + "_id": { + "$oid": "6674c30595590f9fd94591a2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Cobalt.io", + "name": "Karl Richards", + "email": "krichards175@gmail.com", + "linkedIn": "https://www.linkedin.com/in/krichards175/", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Data Engineer", + "industry": "Security", + "cities": ["Tampa", "Durham"], + "_id": { + "$oid": "6674c30595590f9fd94591a3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Cobble", + "name": "Matt Peters", + "email": "matt@mpeters.io", + "linkedIn": "https://www.linkedin.com/in/mattgpeters", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Frontend Engineer", + "industry": "Leisure, Travel & Tourism", + "cities": ["Tampa", "Cleveland"], + "_id": { + "$oid": "6674c30595590f9fd94591a4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Code Climate", + "name": "Margaret Ma", + "email": "margaretma00@gmail.com", + "linkedIn": "https://www.linkedin.com/in/margaret-ma/", + "campus": "NYC", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Atlanta", "Corpus Christi"], + "_id": { + "$oid": "6674c30595590f9fd94591a5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Coder", + "name": "Michael Smith", + "email": "throwawayclover@gmail.com", + "linkedIn": "www.linkedin.com/in/michael-eric-smith", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Software Engineer", + "industry": "Software Solutions/Developer Tools", + "cities": ["Aurora"], + "_id": { + "$oid": "6674c30595590f9fd94591a6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Codesmith", + "name": "Terry L. Tilley", + "email": "terryltilley@gmail.com", + "linkedIn": "https://www.linkedin.com/in/t-l-tilley/", + "campus": "LA", + "cohort": "44", + "jobTitle": "Instruction Training Manager", + "industry": "Software/Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591a7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Cofebe", + "name": "Seong Choi", + "email": "choies921003@gmail.com", + "linkedIn": "https://www.linkedin.com/in/seongchoi/", + "campus": "LA", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Computer Software", + "cities": ["Madison"], + "_id": { + "$oid": "6674c30595590f9fd94591a8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Cognizant", + "name": "Scott Burman", + "email": "Scottburs@gmail.com", + "linkedIn": "https://www.linkedin.com/in/scottburman847/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Senior Developer", + "industry": "Technology", + "cities": ["Tulsa", "Milwaukee", "Cleveland"], + "_id": { + "$oid": "6674c30595590f9fd94591a9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Cohere AI", + "name": "Zahara Aviv", + "email": "zahara.aviv@gmail.com", + "linkedIn": "https://linkedIn.com/in/zahara-aviv", + "campus": "NYC / ECRI", + "cohort": "38", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Artificial Intelligence", + "cities": ["Berlin", "San Francisco"], + "_id": { + "$oid": "6674c30595590f9fd94591aa" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "CoinCircle", + "name": "Andrew Fuselier", + "email": "theandewlarry@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andrewfuselier/", + "campus": "LA", + "cohort": "19", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Newark", "Chandler"], + "_id": { + "$oid": "6674c30595590f9fd94591ab" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Collective Health", + "name": "Daryl Foster", + "email": "dmafoster@gmail.com", + "linkedIn": "https://www.linkedin.com/in/darylfosterma/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Senior Frontend Engineer", + "industry": "Health Tech (Healthplan Administration for 1000 plus employee companies)", + "cities": ["Oklahoma City"], + "_id": { + "$oid": "6674c30595590f9fd94591ac" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Colliers - Contract position through Hays", + "name": "Pauline Nguyen", + "email": "Paulinekpn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/paulineknguyen/", + "campus": "LA / WCRI", + "cohort": "55", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591ad" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Comcast", + "name": "Brian Chiang", + "email": "brianchiang2008@gmail.com", + "linkedIn": "linkedin.com/in/brian-chiang4", + "campus": "LA / WCRI", + "cohort": "48", + "jobTitle": "Software Engineer", + "industry": "Media", + "cities": ["Beijing", "Miami", "Henderson"], + "_id": { + "$oid": "6674c30595590f9fd94591ae" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Comcast", + "name": "Darwin Sinchi", + "email": "dsinchi19@gmail.com", + "linkedIn": "https://www.linkedin.com/in/darwin-m-sinchi/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer", + "industry": "TeleCom", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591af" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Comcast", + "name": "Matthew Francis", + "email": "mbfrancis7@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mbfrancis7/", + "campus": "NYC", + "cohort": "7", + "jobTitle": "Software Developer", + "industry": "", + "cities": ["Fort Worth"], + "_id": { + "$oid": "6674c30595590f9fd94591b0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Comcast", + "name": "Yong-Nicholas Alexander Kim", + "email": "yongnicholaskim@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yongnicholaskim/", + "campus": "NYC", + "cohort": "7", + "jobTitle": "Node.js Engineer", + "industry": "Commercial Services", + "cities": ["Sรฃo Paulo", "Corpus Christi", "Long Beach"], + "_id": { + "$oid": "6674c30595590f9fd94591b1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "CommonBond", + "name": "Nathan Bargers", + "email": "nbargers@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nathan-bargers/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Finance", + "cities": ["Chandler"], + "_id": { + "$oid": "6674c30595590f9fd94591b2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Community Attributes Inc", + "name": "Carter Long", + "email": "crlong7@gmail.com", + "linkedIn": "https://www.linkedin.com/in/carterrobertlong/", + "campus": "FTRI / CTRI", + "cohort": "15", + "jobTitle": "Full Stack Developer", + "industry": "Consulting", + "cities": ["Austin", "St. Louis"], + "_id": { + "$oid": "6674c30595590f9fd94591b3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Compass", + "name": "Casey Walker", + "email": "casey.e.walker@gmail.com", + "linkedIn": "https://www.linkedin.com/in/caseyewalker", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer II", + "industry": "Real Estate", + "cities": ["Los Angeles", "Corpus Christi", "London"], + "_id": { + "$oid": "6674c30595590f9fd94591b4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Compass", + "name": "Liam McBride", + "email": "liameno16@gmail.com", + "linkedIn": "https://www.linkedin.com/in/liamemcbride/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Cincinnati", "Houston"], + "_id": { + "$oid": "6674c30595590f9fd94591b5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Compass", + "name": "Sierra Swaby", + "email": "Sierra.swaby@gmail.com", + "linkedIn": "https://www.linkedin.com/in/Sierra-swaby", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Creative Developer", + "industry": "Real Estate", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591b6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Compliancy Group", + "name": "Bruno Albero", + "email": "alberobruno@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alberobruno/", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591b7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Conagra Brands", + "name": "Scott Hallock", + "email": "scott.hallock@gmail.com", + "linkedIn": "https://www.linkedin.com/in/scottjhallock", + "campus": "FTRI / CTRI", + "cohort": "16", + "jobTitle": "Senior Software Engineer", + "industry": "Food/Beverage/Restaurant", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591b8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Concert Health", + "name": "Raubern Totanes", + "email": "rstotanes@g.ucla.edu", + "linkedIn": "https://www.linkedin.com/in/rauberntotanes/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Software Development Engineer", + "industry": "Health Tech", + "cities": ["St. Louis"], + "_id": { + "$oid": "6674c30595590f9fd94591b9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Contracting for Perspecta Labs via Roc Search via Precision Global Consulting", + "name": "Ben Mizel", + "email": "ben.mizel@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ben-mizel/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Back End Software Engineer", + "industry": "Defense", + "cities": ["Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd94591ba" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Core Business Technology", + "name": "Jason Hwang", + "email": "hwangja1019@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jason-jh-hwang/", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Associate Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591bb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Core Digital Media", + "name": "Edward Greenberg", + "email": "ed.w.greenberg@gmail.com", + "linkedIn": "https://www.linkedin.com/in/edwgreenberg/", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Senior Web Developer", + "industry": "Software", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591bc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Cosm", + "name": "Shana Hoehn", + "email": "Shanahoehn@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer", + "industry": "Entertainment technology", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591bd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Costa Farms LLC", + "name": "Ernesto Gonzalez", + "email": "egonzalez442@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ernesto-gonzalez123", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "Agriculture Science", + "cities": ["Chula Vista", "Portland", "Irving"], + "_id": { + "$oid": "6674c30595590f9fd94591be" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "CoStar", + "name": "Prasad Pulaguntla", + "email": "prasad.pul@gmail.com", + "linkedIn": "https://www.linkedin.com/in/prasad-pulaguntla/", + "campus": "FTRI", + "cohort": "2", + "jobTitle": "Lead Software Engineer", + "industry": "Commercial Real Estate", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591bf" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "CoStar Group", + "name": "Alan Richardson", + "email": "alanrichardson723@gmail.com", + "linkedIn": "", + "campus": "NYC / ECRI", + "cohort": "29", + "jobTitle": "Associate Software Engineer", + "industry": "Real Estate", + "cities": ["Seattle"], + "_id": { + "$oid": "6674c30595590f9fd94591c0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "CoStar Group", + "name": "Julian Kang", + "email": "julianswkang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/julianswkang", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Software Engineer II", + "industry": "Real Estate", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591c1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "CoStar Group", + "name": "Kevin Berlanga", + "email": "kvnberlanga@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kevinberlanga/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Software Engineer II", + "industry": "Real Estate", + "cities": ["Miami", "Glendale", "Chula Vista"], + "_id": { + "$oid": "6674c30595590f9fd94591c2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "CoStar Group", + "name": "Ruzeb Chowdhury", + "email": "ruzeb1996@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ruzebchowdhury/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Frontend Engineer", + "industry": "Commercial Real Estate", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591c3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Coursetune", + "name": "John Maltese", + "email": "john.maltese@gmail.com", + "linkedIn": "https://www.linkedin.com/in/john-maltese/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Senior Software Engineer/Web App Architect", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591c4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Courted", + "name": "Sett Hein", + "email": "settnaing199@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sett-hein/", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Fresno", "Dallas"], + "_id": { + "$oid": "6674c30595590f9fd94591c5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Cox Automotive", + "name": "Tarik Mokhtech", + "email": "tarik.mokhtech@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tarik-mokhtech/", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Software Engineer II", + "industry": "Automotive", + "cities": ["Milwaukee", "Mumbai", "Oakland"], + "_id": { + "$oid": "6674c30595590f9fd94591c6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Cox Automotive", + "name": "Tarik Mokhtech", + "email": "tarik.mokhtech@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tarik-mokhtech/", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Software Engineer II", + "industry": "Automotive", + "cities": ["Mesa"], + "_id": { + "$oid": "6674c30595590f9fd94591c7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Credera", + "name": "Nisa Lintakoon", + "email": "nisa.lintakoon@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nisalintakoon", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "Technology Solutions Consultant", + "industry": "Consulting", + "cities": ["Buffalo", "Stockton", "Greensboro"], + "_id": { + "$oid": "6674c30595590f9fd94591c8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Crescita", + "name": "Gordon Campbell", + "email": "gordonspencer.c@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Software Engineer", + "industry": "VC", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591c9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Cricket Health", + "name": "Lina Shin", + "email": "rxlina01@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rxlina/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Fullstack Software Engineer", + "industry": "Healthcare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591ca" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Crisis Text Line", + "name": "Chan Choi", + "email": "chanychoi93@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chan-choi/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Software Engineer", + "industry": "Mental Health Services", + "cities": ["Sacramento"], + "_id": { + "$oid": "6674c30595590f9fd94591cb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Crocs", + "name": "Mark Charles Smith", + "email": "markcharlessmith@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mark-charles-smith/", + "campus": "NYC / ECRI", + "cohort": "31", + "jobTitle": "Senior React Developer", + "industry": "Consumer Goods: Fashion", + "cities": ["Tulsa", "Henderson"], + "_id": { + "$oid": "6674c30595590f9fd94591cc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Crossbeam", + "name": "Harrison Cramer", + "email": "Harrisoncramer@gmail.com", + "linkedIn": "https://www.linkedin.com/in/harrison-cramer", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Software engineer", + "industry": "SaaS", + "cities": ["Seattle", "Tulsa", "St. Louis"], + "_id": { + "$oid": "6674c30595590f9fd94591cd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Crossbeam", + "name": "Aryeh Kobrinsky", + "email": "shmaryeh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/aryehkobrinsky/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer", + "industry": "Data Analytics", + "cities": ["Jersey City", "Lexington", "Atlanta"], + "_id": { + "$oid": "6674c30595590f9fd94591ce" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Crossover Health", + "name": "Heather Friedman", + "email": "hfried25@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hgfriedman/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Senior Software Engineer", + "industry": "Health", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591cf" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Crossover Health", + "name": "Taylor Riley Du", + "email": "taylor.r.du@gmail.com", + "linkedIn": "https://www.linkedin.com/in/taylordu/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591d0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Crowdstrike", + "name": "yi bo (eddie) wang", + "email": "eddiewang12345@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eddie-wang2/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Software Developer", + "industry": "Cybersecurity", + "cities": ["Orlando", "Lubbock"], + "_id": { + "$oid": "6674c30595590f9fd94591d1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Crowley", + "name": "Alina Gasperino", + "email": "alina.gasperino@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alinagasperino/", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Software Engineer III", + "industry": "Other", + "cities": ["Toronto", "Norfolk"], + "_id": { + "$oid": "6674c30595590f9fd94591d2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.060Z" + }, + "__v": 0 + }, + { + "company": "Crown Sterling", + "name": "Shirin Davis", + "email": "Shirinlittle94@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software engineer", + "industry": "Cryptography", + "cities": ["Atlanta", "Beijing"], + "_id": { + "$oid": "6674c30595590f9fd94591d3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "CrunchyBananas", + "name": "Corey Morrison", + "email": "corey.neil.morrison@gmail.com", + "linkedIn": "https://www.linkedin.com/in/corey-morrison", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Consulting", + "cities": ["El Paso", "Memphis", "Fort Worth"], + "_id": { + "$oid": "6674c30595590f9fd94591d4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Crunchyroll", + "name": "Brit Lim", + "email": "britsta92@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brit-lim/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Full Stack Software Engineer", + "industry": "Entertainment", + "cities": ["Cleveland", "Toledo", "Chesapeake"], + "_id": { + "$oid": "6674c30595590f9fd94591d5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "CSI Interfusion", + "name": "Snow Bai", + "email": "xueapp@gmail.com", + "linkedIn": "https://www.linkedin.com/in/xuebaiprofile/", + "campus": "LA / WCRI", + "cohort": "55", + "jobTitle": "Fullstack Engineer", + "industry": "Software / Tech", + "cities": ["Saint Paul"], + "_id": { + "$oid": "6674c30595590f9fd94591d6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Culture Biosciences", + "name": "Savitri Beaver", + "email": "savitribeaver@gmail.com", + "linkedIn": "https://www.linkedin.com/in/savitribeaver", + "campus": "FTRI", + "cohort": "3", + "jobTitle": "Software Engineer I", + "industry": "Biotech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591d7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Curia.ai", + "name": "Young Min Lee", + "email": "youngmineeh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/youngminlee-/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Senior Software Engineer", + "industry": "Healthcare, AI", + "cities": ["St. Petersburg", "Miami"], + "_id": { + "$oid": "6674c30595590f9fd94591d8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Currency", + "name": "Jason Wong", + "email": "jwaosnogn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jwong1995/", + "campus": "LA", + "cohort": "25", + "jobTitle": "Full Stack Developer", + "industry": "", + "cities": ["Chesapeake", "Arlington", "San Francisco"], + "_id": { + "$oid": "6674c30595590f9fd94591d9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Cutover", + "name": "Paul Rhee", + "email": "youjun27@gmail.com", + "linkedIn": "https://www.linkedin.com/in/prheee", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Greensboro", "Garland"], + "_id": { + "$oid": "6674c30595590f9fd94591da" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "CVS", + "name": "Mario Eldin", + "email": "marioeldin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/marioeldin/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Software Engineer", + "industry": "Health/Insurance", + "cities": ["Anchorage", "Jersey City"], + "_id": { + "$oid": "6674c30595590f9fd94591db" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "CVS", + "name": "Vinh Chau", + "email": "vchau511@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vinh-chau/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Software Engineer", + "industry": "Pharmacy", + "cities": ["Buffalo", "Jersey City", "Beijing"], + "_id": { + "$oid": "6674c30595590f9fd94591dc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "CVS Health", + "name": "Connor Bovino", + "email": "connor.bovino@gmail.com", + "linkedIn": "https://www.linkedin.com/in/connor-bovino/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Fullstack Node.js Developer (Software Engineer)", + "industry": "Health", + "cities": ["Fort Worth", "North Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd94591dd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "CVS Health", + "name": "Satyam sheth", + "email": "Snsheth55@gmail.com", + "linkedIn": "https://www.linkedin.com/in/satyamsheth55/", + "campus": "NYC", + "cohort": "5", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Riverside"], + "_id": { + "$oid": "6674c30595590f9fd94591de" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "CVS Health", + "name": "Windu Sayles", + "email": "Windu.Sayles@gmail.com", + "linkedIn": "https://www.linkedin.com/in/windusayles/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Full Stack Node Developer", + "industry": "Health", + "cities": ["Detroit", "Cleveland"], + "_id": { + "$oid": "6674c30595590f9fd94591df" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "CVS Health/ Aetna", + "name": "Miklos Kertesz", + "email": "mikloslkertesz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mikl%C3%B3s-kert%C3%A9sz/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Data Engineer - Web UI Engineer", + "industry": "health", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591e0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Cyber Popup", + "name": "Stephen Fitzsimmons", + "email": "smf0211@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stephenfitzsimmons", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Lead Full Stack Engineer", + "industry": "Software / Tech", + "cities": ["Charlotte", "Raleigh", "Baltimore"], + "_id": { + "$oid": "6674c30595590f9fd94591e1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Cybereason", + "name": "Phoebe Ermert", + "email": "phoebeermert@gmail.com", + "linkedIn": "https://www.linkedin.com/in/phoebe-ermert/", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Full Stack Engineer", + "industry": "Other", + "cities": ["Memphis", "Oakland"], + "_id": { + "$oid": "6674c30595590f9fd94591e2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Cyborg, Inc", + "name": "Jim Armbruster", + "email": "JMArmbruster@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jim-armbruster/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Full-Stack Engineer", + "industry": "Computer Software", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591e3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Cyderes", + "name": "Giovanni Flores-Lovo", + "email": "giovanniflores.l@gmail.com", + "linkedIn": "https://www.linkedin.com/in/giovanni-flores-lovo-11a288232/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Engineer", + "industry": "Security", + "cities": ["Oklahoma City", "Toronto"], + "_id": { + "$oid": "6674c30595590f9fd94591e4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Dandy", + "name": "Aram Krakirian", + "email": "aramkrakirian@gmail.com", + "linkedIn": "https://www.linkedin.com/in/aram-krakirian/", + "campus": "LA", + "cohort": "47", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Reno", "Nashville", "London"], + "_id": { + "$oid": "6674c30595590f9fd94591e5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Data Intelligence", + "name": "Jimmy Mei", + "email": "Jimmy27mei@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jimmymei/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Full Stack Engineer", + "industry": "Tech consultant", + "cities": ["Phoenix", "Madison"], + "_id": { + "$oid": "6674c30595590f9fd94591e6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Data Surge LLC", + "name": "Hang Xu", + "email": "hxu009@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hangxu09/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Data Engineer", + "industry": "Data solutions", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591e7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Databook", + "name": "Julie Wu", + "email": "scorp_only@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/yu-ting-w/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Sr Software Engineer", + "industry": "Sales", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591e8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Datacoral", + "name": "Jae Park", + "email": "woojae.jay.park@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Fashion/E-Commerce", + "cities": ["Mesa"], + "_id": { + "$oid": "6674c30595590f9fd94591e9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Datametrics", + "name": "Luis Navarro", + "email": "pozhiin@hotmail.com", + "linkedIn": "https://www.linkedin.com/in/luis-e-navarro/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Frontend Developer", + "industry": "Software / Tech", + "cities": ["Washington", "Tucson"], + "_id": { + "$oid": "6674c30595590f9fd94591ea" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "DAZN", + "name": "Leonoor Rinke de Wit", + "email": "lrinkedewit@gmail.com", + "linkedIn": "https://www.linkedin.com/in/leonoorrinkedewit/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Backend Software Engineer", + "industry": "Media", + "cities": ["Virginia Beach", "Oakland", "New York"], + "_id": { + "$oid": "6674c30595590f9fd94591eb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "DealPath", + "name": "Huy Bui", + "email": "huybui.sj@gmail.com", + "linkedIn": "https://www.linkedin.com/in/huyqbui/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Tulsa"], + "_id": { + "$oid": "6674c30595590f9fd94591ec" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Decent Labs", + "name": "Julia Collins", + "email": "Julia.col@protonmail.com", + "linkedIn": "https://www.linkedin.com/in/julia-col", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Full Stack Web3 Engineer", + "industry": "Crypto", + "cities": ["Cincinnati"], + "_id": { + "$oid": "6674c30595590f9fd94591ed" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Deloitte", + "name": "Justin Buckner", + "email": "jwbprofessional@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jbuild/", + "campus": "FTRI", + "cohort": "3", + "jobTitle": "Consultant - front end developer", + "industry": "Consulting", + "cities": ["Fresno", "New York"], + "_id": { + "$oid": "6674c30595590f9fd94591ee" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Delta Air Lines", + "name": "Joal Kim", + "email": "joalkims@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joal-kim", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Airline", + "cities": ["Austin", "Indianapolis"], + "_id": { + "$oid": "6674c30595590f9fd94591ef" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "DeltaMath", + "name": "Hannah McDowell", + "email": "hannah.mcdowell1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hannah-lisbeth-mcdowell/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Tucson"], + "_id": { + "$oid": "6674c30595590f9fd94591f0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "DeMark Analytics LLC", + "name": "SEUNGHO BAEK", + "email": "shbaek115@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Engineer", + "industry": "Software & Tech services", + "cities": ["San Antonio", "Sydney"], + "_id": { + "$oid": "6674c30595590f9fd94591f1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Dematic", + "name": "Liang Wen (Rocky) Lin", + "email": "liangwen511@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rocky-lin/", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Senior Software Engineer", + "industry": "Manufacturing and Distribution", + "cities": ["Henderson", "New York", "Memphis"], + "_id": { + "$oid": "6674c30595590f9fd94591f2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Dendi Software", + "name": "Ozair Ghulam", + "email": "Ozairghulam4@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ozair-ghulam", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Forward deployed software engineer", + "industry": "Healthcare", + "cities": ["Lincoln"], + "_id": { + "$oid": "6674c30595590f9fd94591f3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Denizen", + "name": "Greg Domingue", + "email": "Greg.domingue1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/greg-domingue", + "campus": "LA", + "cohort": "23", + "jobTitle": "Full Stack Software Engineer", + "industry": "International Banking", + "cities": ["Fort Worth"], + "_id": { + "$oid": "6674c30595590f9fd94591f4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Density", + "name": "Timothy Weidinger", + "email": "timothy.weidinger@gmail.com", + "linkedIn": "https://www.linkedin.com/in/timweidinger/", + "campus": "NYC / ECRI", + "cohort": "41", + "jobTitle": "Senior Full Stack Software Engineer", + "industry": "Data/Analytics/Cloud", + "cities": ["Mumbai"], + "_id": { + "$oid": "6674c30595590f9fd94591f5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Derivco Sports", + "name": "Denny Temple", + "email": "denny.temple@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dentemple/", + "campus": "NYC", + "cohort": "6", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Riverside", "Washington", "Anchorage"], + "_id": { + "$oid": "6674c30595590f9fd94591f6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Destination Pet", + "name": "Nicholas Jordan Brush", + "email": "njbrush@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nicholas-j-brush?trk=people-guest_people_search-card", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer", + "industry": "Pet healthcare", + "cities": ["Detroit", "Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd94591f7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "DexCare", + "name": "Nhan Ly", + "email": "nhansense1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nhanly/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Healthtech", + "cities": ["Irvine"], + "_id": { + "$oid": "6674c30595590f9fd94591f8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Diamond Web Services", + "name": "Ben Gummelt", + "email": "Camaromelt@gmail.com", + "linkedIn": "https://www.linkedin.com/in/benjamingummelt", + "campus": "LA", + "cohort": "20", + "jobTitle": "Full stack software engineer", + "industry": "", + "cities": ["Oklahoma City", "Long Beach", "Winston-Salem"], + "_id": { + "$oid": "6674c30595590f9fd94591f9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Diamond Web Services", + "name": "Gregory Palasciano", + "email": "greg.palasciano@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gregory-palasciano/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Fullstack Engineer", + "industry": "Entertainment/Consulting", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591fa" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Diamond Web Services", + "name": "Jonathan Perera", + "email": "Jon.p@codesmith.io", + "linkedIn": "https://www.linkedin.com/in/japerera/", + "campus": "LA", + "cohort": "22", + "jobTitle": "Developer", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94591fb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Diana Health", + "name": "Jackson Dahl", + "email": "jacksondahl27@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jackson-dahl/", + "campus": "NYOI", + "cohort": "4", + "jobTitle": "Full Stack Software Engineer", + "industry": "Healthtech/Healthcare", + "cities": ["Washington", "Toledo"], + "_id": { + "$oid": "6674c30595590f9fd94591fc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Dick's Sporting Goods", + "name": "Brian Hon", + "email": "brianwhon@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brianwhon/", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Retail", + "cities": ["New York"], + "_id": { + "$oid": "6674c30595590f9fd94591fd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "DigiCert", + "name": "James M Espy II", + "email": "jespy2@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jamesespy/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "digital certificates / security", + "cities": ["Mumbai", "St. Louis"], + "_id": { + "$oid": "6674c30595590f9fd94591fe" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Digilock", + "name": "Aaron Yang", + "email": "aaronyang024@gmail.com", + "linkedIn": "https://www.linkedin.com/in/aaronyang24/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Electronic Manufacturing", + "cities": ["Fort Worth", "Fresno"], + "_id": { + "$oid": "6674c30595590f9fd94591ff" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Digital Position", + "name": "Joe Beger", + "email": "jtbeger@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jtbeger/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Developer", + "industry": "SEO", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459200" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "DigitalOcean", + "name": "Natalia Vargas-Caba", + "email": "nvargascaba@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nataliavargascaba", + "campus": "NYC", + "cohort": "17", + "jobTitle": "Technical Editor", + "industry": "Cloud service", + "cities": ["San Antonio"], + "_id": { + "$oid": "6674c30595590f9fd9459201" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Discord", + "name": "Jacob Richards", + "email": "jacob.richards33@gmail.com", + "linkedIn": "https://www.linkedin.com/in/palgorhythm/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Senior Software Engineer", + "industry": "Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459202" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Discovery", + "name": "adele calvo", + "email": "adelecalvo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adelecalvo/", + "campus": "NYC", + "cohort": "9", + "jobTitle": "Software Engineer I, UI,", + "industry": "Blockchain", + "cities": ["Gilbert"], + "_id": { + "$oid": "6674c30595590f9fd9459203" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Discovery", + "name": "Sarah t Renshaw", + "email": "strenshaw@gmail.com", + "linkedIn": "https://linkedin.com/in/strenshaw/", + "campus": "NYC", + "cohort": "2", + "jobTitle": "Software Engineer I", + "industry": "Music", + "cities": ["Cincinnati", "Irvine"], + "_id": { + "$oid": "6674c30595590f9fd9459204" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Disney Streaming", + "name": "Daniel Palumbo", + "email": "Drpalumbo17@gmail.com", + "linkedIn": "https://www.linkedin.com/in/daniel-palumbo-735715137", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Phoenix", "Kansas City", "Cincinnati"], + "_id": { + "$oid": "6674c30595590f9fd9459205" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Disney Streaming", + "name": "Nat Heller", + "email": "nat.w.heller@gmail.com", + "linkedIn": "https://www.linkedin.com/in/natwheller/", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Entertainment", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459206" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Disney Streaming", + "name": "Frank Ma", + "email": "yurenfrankma@gmail.com", + "linkedIn": "https://www.linkedin.com/in/frankma2", + "campus": "LA", + "cohort": "25", + "jobTitle": "Sr Frontend and Fullstack Engineer", + "industry": "Entertainment", + "cities": ["Fort Worth", "Toronto", "Anchorage"], + "_id": { + "$oid": "6674c30595590f9fd9459207" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Disney Streaming Services", + "name": "Casey Escovedo", + "email": "caseyjescovedo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/caseyescovedo/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Associate Software Engineer", + "industry": "Entertainment", + "cities": ["Chicago", "Honolulu"], + "_id": { + "$oid": "6674c30595590f9fd9459208" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Disney Streaming Services", + "name": "Mark Marcelo", + "email": "markmarcelo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/markmarcelo/", + "campus": "LA", + "cohort": "12", + "jobTitle": "Lead Software Engineer", + "industry": "Entertainment", + "cities": ["Colorado Springs"], + "_id": { + "$oid": "6674c30595590f9fd9459209" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Disney Streaming Services", + "name": "Rachel Farley", + "email": "rachyl.farley@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rachel-farley/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Associate Software Engineer", + "industry": "Entertainment", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945920a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Dispense", + "name": "Kerrianne Crawford", + "email": "kerriannercrawford@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kerriannercrawford/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Senior Software Engineer", + "industry": "Software / Tech", + "cities": ["Santa Ana", "Chicago", "Toledo"], + "_id": { + "$oid": "6674c30595590f9fd945920b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Distributed Machines, Inc.", + "name": "William LeGate", + "email": "codesmith@legate.me", + "linkedIn": "https://www.linkedin.com/in/william-legate/", + "campus": "LA", + "cohort": "21", + "jobTitle": "CEO, Prediqt", + "industry": "Medical", + "cities": ["Reno", "Long Beach", "Henderson"], + "_id": { + "$oid": "6674c30595590f9fd945920c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "DistroKid", + "name": "Jackson Tong", + "email": "jacksonktong@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jacksonktong/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Baltimore", "San Francisco", "Aurora"], + "_id": { + "$oid": "6674c30595590f9fd945920d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "DMC Inc", + "name": "Shane Yao", + "email": "Shanexinyao@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shanexinyao/", + "campus": "NYC", + "cohort": "3", + "jobTitle": "Senior Robotics Engineer", + "industry": "Crypto Fintech", + "cities": ["Dallas"], + "_id": { + "$oid": "6674c30595590f9fd945920e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Dollar Shave Club", + "name": "Vincent Nguyen", + "email": "gvincemail@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vnguyenucla/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer(Contract)", + "industry": "Products", + "cities": ["Toledo"], + "_id": { + "$oid": "6674c30595590f9fd945920f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Dollar Shave Club", + "name": "Ryan Trontz", + "email": "rtrontz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/trontz/", + "campus": "LA", + "cohort": "22", + "jobTitle": "Software Engineer, Backend", + "industry": "", + "cities": ["Indianapolis"], + "_id": { + "$oid": "6674c30595590f9fd9459210" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Domio", + "name": "Neftali Dominguez", + "email": "n.l.dominguez23@gmail.com", + "linkedIn": "https://www.linkedin.com/in/neftalildominguez/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Back end engineer", + "industry": "apartment hotels", + "cities": ["Saint Paul", "Boston"], + "_id": { + "$oid": "6674c30595590f9fd9459211" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Doorcast", + "name": "James Bui", + "email": "Jamesmdang.bui@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jamesminhbui/", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Senior Fullstack Engineer", + "industry": "Real Estate", + "cities": ["Milwaukee", "Irvine", "North Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd9459212" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Doorkee", + "name": "Jarred Jack-Harewood", + "email": "jackhajb@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jarred-jack-harewood/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Toronto", "Dallas"], + "_id": { + "$oid": "6674c30595590f9fd9459213" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Dottid", + "name": "Brian Grosso", + "email": "bgro63@gmail.com", + "linkedIn": "https://www.linkedin.com/in/newarkBG/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech - Real Estate", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459214" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Dr Squatch", + "name": "Ben Cauffman", + "email": "Benjamincauffman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/benjamin-cauffman", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Full Stack Engineer", + "industry": "Retail", + "cities": ["Greensboro"], + "_id": { + "$oid": "6674c30595590f9fd9459215" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "DraftKings", + "name": "Jonnie Oak", + "email": "jonathan.oak28@gmail.com", + "linkedIn": "https://www.linkedin.com/in/oakj28/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Software Engineer", + "industry": "Fantasy Sports", + "cities": ["Dallas", "Irvine"], + "_id": { + "$oid": "6674c30595590f9fd9459216" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Dray Alliance", + "name": "Hayden Fithyan", + "email": "hayden@fithyan.com", + "linkedIn": "https://www.linkedin.com/in/fithyan/", + "campus": "LA", + "cohort": "23", + "jobTitle": "Software Developer II", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459217" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Dray Alliance", + "name": "Joshua Wright", + "email": "jwrightbluj@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joshua-w-86758a121/", + "campus": "LA", + "cohort": "23", + "jobTitle": "Software Engineer II", + "industry": "", + "cities": ["New York", "Garland"], + "_id": { + "$oid": "6674c30595590f9fd9459218" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Dreambox Learning", + "name": "Pei-Yun Chu", + "email": "pchu2018@gmail.com", + "linkedIn": "https://www.linkedin.com/in/pei-yun-chu/", + "campus": "PTRI", + "cohort": "8", + "jobTitle": "Software Development Engineer - Frontend", + "industry": "Software / Tech", + "cities": ["Plano", "Phoenix", "Washington"], + "_id": { + "$oid": "6674c30595590f9fd9459219" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Driven Deliveries", + "name": "Adam Stover", + "email": "adam.jacob.stover@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "31", + "jobTitle": "Software Engineer", + "industry": "Supply Chain & Logistics", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945921a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Drizly", + "name": "Diego Vazquez", + "email": "diegovazquezny@gmail.com", + "linkedIn": "https://www.linkedin.com/in/diegovazquezny/", + "campus": "LA", + "cohort": "21", + "jobTitle": "Jr. Software Engineer", + "industry": "Food & Beverages", + "cities": ["Scottsdale"], + "_id": { + "$oid": "6674c30595590f9fd945921b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Dropbox", + "name": "Benjamin Kwak", + "email": "benjamin.h.kwak@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ben-kwak/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Engineer, Product", + "industry": "Techonology Services", + "cities": ["Detroit"], + "_id": { + "$oid": "6674c30595590f9fd945921c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Dropbox", + "name": "Myounghan Chae", + "email": "chaekmh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chaekmh/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Software Engineer", + "industry": "Cloudtech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945921d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Dropbox", + "name": "Miguel Michel", + "email": "migmic93@gmail.com", + "linkedIn": "https://www.linkedin.com/in/miguel-michel/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Cloud Storage", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945921e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Dropps", + "name": "Sonny Nguyen", + "email": "sonnynguyen163@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sn163/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Developer", + "industry": "Sustainable E-Commerce", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945921f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Dstillery", + "name": "Chai Lee", + "email": "imchai@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chai-lee-5a064649/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Software Engineer", + "industry": "Adtech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459220" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Dun & Bradstreet", + "name": "Jack Hall", + "email": "jackvincenthall@gmail.com", + "linkedIn": "https://linkedin.com/in/jackvhall", + "campus": "PTRI", + "cohort": "4", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech, Data Analytics", + "cities": ["Seattle", "Oklahoma City", "Riverside"], + "_id": { + "$oid": "6674c30595590f9fd9459221" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Dun & Bradstreet", + "name": "Scott Rosen", + "email": "scott.rosen14@gmail.com", + "linkedIn": "https://www.linkedin.com/in/scott-rosen/", + "campus": "LA", + "cohort": "17", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Atlanta", "Austin"], + "_id": { + "$oid": "6674c30595590f9fd9459222" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "dv01", + "name": "Michelle Herrera", + "email": "mesherrera@aol.com", + "linkedIn": "https://www.linkedin.com/in/mherreradev/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Senior Fullstack Engineer I", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459223" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Dynamic benchmarking", + "name": "andres jaramillo", + "email": "andresj89@live.com", + "linkedIn": "https://www.linkedin.com/in/andresjaramillo210/", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Software engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459224" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Earnest", + "name": "Kai Rilliet", + "email": "kairilliet@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kairilliet/", + "campus": "LA / WCRI", + "cohort": "45", + "jobTitle": "Full Stack Software Engineer", + "industry": "Fintech", + "cities": ["Long Beach", "Honolulu", "Indianapolis"], + "_id": { + "$oid": "6674c30595590f9fd9459225" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "eBay", + "name": "Ryan Kim", + "email": "ryansukwookim@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tkdryan/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Software Engineer", + "industry": "ECcmmerce", + "cities": ["Las Vegas", "Memphis", "San Diego"], + "_id": { + "$oid": "6674c30595590f9fd9459226" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "EBSCO", + "name": "Sankari Ayyaluru", + "email": "sankariayyaluru@gmail", + "linkedIn": "https://www.linkedin.com/in/sankari-ayyaluru/", + "campus": "LA / WCRI", + "cohort": "48", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459227" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Econify", + "name": "Jordan Kelly", + "email": "Jordan.w.kelly@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jordan-k-340257140/", + "campus": "NYC", + "cohort": "17", + "jobTitle": "Software Engineer", + "industry": "Consulting", + "cities": ["Santa Ana", "Memphis", "Tulsa"], + "_id": { + "$oid": "6674c30595590f9fd9459228" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Econify", + "name": "Jovan Kelly", + "email": "fakeEmail2@fakeEmail.com", + "linkedIn": "https://www.linkedin.com/in/jovankelly", + "campus": "NYC", + "cohort": "10", + "jobTitle": "Software developer", + "industry": "Media Consulting", + "cities": ["Gilbert"], + "_id": { + "$oid": "6674c30595590f9fd9459229" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Edify Labs", + "name": "Scott McInnis", + "email": "scottalyst@gmail.com", + "linkedIn": "https://www.linkedin.com/in/scott-mcinnis/", + "campus": "LA", + "cohort": "32", + "jobTitle": "Nodejs Developer", + "industry": "Customer Service", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945922a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Edify Labs", + "name": "Tony Lei", + "email": "tony.lei003@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tony-lei/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "NodeJS Developer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945922b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "EDUrain", + "name": "Jacob Jurado", + "email": "jakejurado@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jakejurado", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "chief technology officer", + "industry": "Education/Edtech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945922c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Egen", + "name": "Jonathan Escamilla", + "email": "jonathanescamilla1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jon-escamilla/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Associate Software Engineer", + "industry": "Tech (Builds solutions for companies - Typically Web Dev)", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945922d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Elder Research", + "name": "Ben Huang", + "email": "Byhuang4100@gmail.com", + "linkedIn": "byhuang4100", + "campus": "FTRI / CTRI", + "cohort": "14", + "jobTitle": "Data Engineer", + "industry": "Artificial Intelligence", + "cities": ["Lexington"], + "_id": { + "$oid": "6674c30595590f9fd945922e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Elder Research Inc", + "name": "Nick Reardon", + "email": "nickjreardon@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nickjreardon/", + "campus": "PTRI", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "Consulting", + "cities": ["Dallas"], + "_id": { + "$oid": "6674c30595590f9fd945922f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Elder Tree", + "name": "Stormi Hashimoto", + "email": "stormikhashimoto@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stormikph/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Software Engineer", + "industry": "NA", + "cities": ["Riverside", "Seattle"], + "_id": { + "$oid": "6674c30595590f9fd9459230" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "eLink Design", + "name": "Tristan Krause", + "email": "yukiokrause@gmail.com", + "linkedIn": "https://www.linkedin.com/in/krausetristan/", + "campus": "FTRI / CTRI", + "cohort": "17", + "jobTitle": "Web / Mobile Developer", + "industry": "Design", + "cities": ["Lexington", "St. Petersburg", "Paris"], + "_id": { + "$oid": "6674c30595590f9fd9459231" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Elk Capital Markets", + "name": "Manuel Castro", + "email": "manuel.a.castro1992@gmail.com", + "linkedIn": "https://www.linkedin.com/in/manuel-castro-42466273", + "campus": "NYC", + "cohort": "5", + "jobTitle": "Software Engineer", + "industry": "Finance", + "cities": ["Paris", "Orlando", "Fort Worth"], + "_id": { + "$oid": "6674c30595590f9fd9459232" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.061Z" + }, + "__v": 0 + }, + { + "company": "Ellie Mae", + "name": "Karen Pinilla", + "email": "pinillakaren11@gmail.com", + "linkedIn": "https://www.linkedin.com/in/karen-pinilla/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Software Engineer I", + "industry": "Computer Software", + "cities": ["Norfolk"], + "_id": { + "$oid": "6674c30595590f9fd9459233" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "eMoney", + "name": "Kenneth Hui", + "email": "kennethhui121@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kenneth-hui/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Paris"], + "_id": { + "$oid": "6674c30595590f9fd9459234" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Empire Flippers", + "name": "Rob Wise", + "email": "robertwise1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/robertwise/", + "campus": "PTRI", + "cohort": "Beta", + "jobTitle": "Frontend Engineer", + "industry": "eCommerce", + "cities": ["San Jose", "Oklahoma City"], + "_id": { + "$oid": "6674c30595590f9fd9459235" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Empowered Buildings", + "name": "Kevin Dooley", + "email": "kjdooley1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kjdooley1/", + "campus": "NYOI", + "cohort": "1", + "jobTitle": "Full-Stack Software Developer", + "industry": "Real Estate", + "cities": ["Fresno", "Winston-Salem", "New York"], + "_id": { + "$oid": "6674c30595590f9fd9459236" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Enlighten", + "name": "Jonathon Garber", + "email": "jgarber2675@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jgarber2675/", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Front End Software Engineer", + "industry": "Security", + "cities": ["San Jose", "Raleigh", "Jacksonville"], + "_id": { + "$oid": "6674c30595590f9fd9459237" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Envoy", + "name": "Graham Pierce", + "email": "grahampiercenyc@gmail.com", + "linkedIn": "https://www.linkedin.com/in/graham-a-pierce/", + "campus": "FTRI", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "Workplace tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459238" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Enzo Digital", + "name": "Johnny Bryan", + "email": "johnnybryan21@gmail.com", + "linkedIn": "https://www.linkedin.com/in/johnnybryan/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Backend/API Engineer", + "industry": "Fintech", + "cities": ["Berlin", "Columbus"], + "_id": { + "$oid": "6674c30595590f9fd9459239" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "EolianVR", + "name": "Henry Halse", + "email": "henryhalse@gmail.com", + "linkedIn": "https://www.linkedin.com/in/henryhalse/", + "campus": "PTRI", + "cohort": "8", + "jobTitle": "Backend Engineer", + "industry": "Other", + "cities": ["Long Beach", "Chula Vista"], + "_id": { + "$oid": "6674c30595590f9fd945923a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Epic Games", + "name": "Nahuel Arjona Tennerini", + "email": "nahuel.arjona.93@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nahuelarjonadev/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Game Systems Programmer", + "industry": "Video Games", + "cities": ["Kansas City"], + "_id": { + "$oid": "6674c30595590f9fd945923b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Epic Games (Fortnite)", + "name": "Taylor T Morgan", + "email": "TaylorMorganTTM@gmail.com", + "linkedIn": "https://www.linkedin.com/in/taylormor77la/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Developer", + "industry": "Gaming", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945923c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Eqengineered", + "name": "William Ramirez", + "email": "willramirez630@gmail.com", + "linkedIn": "https://www.linkedin.com/in/willramirez528/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Senior Technical Consultant", + "industry": "Software Consulting Firm", + "cities": ["San Antonio", "Nashville"], + "_id": { + "$oid": "6674c30595590f9fd945923d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Erdos Miller", + "name": "Michael Collier Grant", + "email": "DragonZSG@aol.com", + "linkedIn": "https://www.linkedin.com/in/michaelcolliergrant/", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Firmware Developer", + "industry": "Other", + "cities": ["Detroit"], + "_id": { + "$oid": "6674c30595590f9fd945923e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Ernst & Young", + "name": "Eduardo Maรญllo Conesa", + "email": "eduardomaillo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eduardomaillo/", + "campus": "NYC", + "cohort": "2", + "jobTitle": "Senior Software Engineer", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945923f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Esri", + "name": "Gilbert Ramirez", + "email": "contemporarygil@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gillramirez/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Software Development Engineer", + "industry": "GIS", + "cities": ["Tokyo", "Washington", "Chandler"], + "_id": { + "$oid": "6674c30595590f9fd9459240" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "ESRI", + "name": "Evan Hilton", + "email": "ehilton1537@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ehilton1537/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Software Development Engineer", + "industry": "Geographic Information System", + "cities": ["Seattle", "Jacksonville", "Wichita"], + "_id": { + "$oid": "6674c30595590f9fd9459241" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Esri", + "name": "Elena Conn", + "email": "elenakconn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/elena-conn/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineering Intern (end date 10/29/21)", + "industry": "Geospatial Engineering (GIS)", + "cities": ["Los Angeles", "Oakland"], + "_id": { + "$oid": "6674c30595590f9fd9459242" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Ethic", + "name": "Andrea Li", + "email": "andrea.li8341@hotmail.com", + "linkedIn": "https://www.linkedin.com/in/andrea-gli/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Frontend Engineer", + "industry": "Fintech", + "cities": ["San Jose", "Washington", "Tucson"], + "_id": { + "$oid": "6674c30595590f9fd9459243" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Ethos Life", + "name": "Alan Lee", + "email": "lee.alan.c12@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alanlee12/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Software Engineer, Test", + "industry": "Insurance", + "cities": ["Fort Worth", "Indianapolis", "Anchorage"], + "_id": { + "$oid": "6674c30595590f9fd9459244" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "etsy", + "name": "alfonso zamarripa", + "email": "alfonsozam93@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alfonsozamarripa/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "software engineer", + "industry": "Retail", + "cities": ["Garland", "Long Beach"], + "_id": { + "$oid": "6674c30595590f9fd9459245" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Even", + "name": "Claudio Santos", + "email": "claudiohbsantos@gmail.com", + "linkedIn": "https://www.linkedin.com/in/claudio-santos-5b8134207/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer I", + "industry": "Fintech", + "cities": ["Sรฃo Paulo", "Reno"], + "_id": { + "$oid": "6674c30595590f9fd9459246" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Even Financial", + "name": "Andy Wong", + "email": "andywong.ny@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andywongdev", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459247" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Eventbrite", + "name": "Ashley Pean", + "email": "pean.ashley@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ashley-pean/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Software Engineer II", + "industry": "Entertainment", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459248" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "EventHound", + "name": "Greg Shamalta", + "email": "gregshamalta@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/gregory-shamalta/", + "campus": "LA", + "cohort": "23", + "jobTitle": "Founder", + "industry": "", + "cities": ["Indianapolis", "Miami"], + "_id": { + "$oid": "6674c30595590f9fd9459249" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "everest", + "name": "Will Hack", + "email": "will.j.hack@gmail.com", + "linkedIn": "https://www.linkedin.com/in/willhack/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Full-Stack Engineer (Sr)", + "industry": "UX Design", + "cities": ["Arlington", "Mumbai", "Cleveland"], + "_id": { + "$oid": "6674c30595590f9fd945924a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Everest, AI", + "name": "Jordan Long", + "email": "jlong4159@gmail.com", + "linkedIn": "www.linkedin.com/jlongtlw", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945924b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Everfi", + "name": "Jacob Ory", + "email": "jacobtory@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/jacobory/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Frontend Engineer", + "industry": "Ed Tech", + "cities": ["Stockton"], + "_id": { + "$oid": "6674c30595590f9fd945924c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Exabeam", + "name": "Lisa Tian", + "email": "lisatian8@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lisatian-/", + "campus": "LA / WCRI", + "cohort": "53", + "jobTitle": "Software Engineer - UI", + "industry": "Security", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945924d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Exodus Movement Inc", + "name": "Lanre Makinde", + "email": "lanre.developer@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lanre-mark/", + "campus": "PTRI", + "cohort": "Beta", + "jobTitle": "Sr. Software Engineer", + "industry": "blockchain/cryptocurrency", + "cities": ["St. Petersburg"], + "_id": { + "$oid": "6674c30595590f9fd945924e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Expedia Group", + "name": "Tang", + "email": "eytang8@gmail.com", + "linkedIn": "https://www.linkedin.com/mwlite/in/ttaanngg", + "campus": "LA", + "cohort": "27", + "jobTitle": "Software Development Engineer II", + "industry": "Travel", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945924f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Extend", + "name": "Diane Wu", + "email": "dianewudw@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Backend Software Engineer", + "industry": "Insurance", + "cities": ["El Paso", "Wichita", "Denver"], + "_id": { + "$oid": "6674c30595590f9fd9459250" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Extensis", + "name": "Daniel Chang", + "email": "dkchang213@gmail.com", + "linkedIn": "https://www.linkedin.com/in/daniel-k-chang/", + "campus": "LA / WCRI", + "cohort": "56", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Tampa", "Garland", "Columbus"], + "_id": { + "$oid": "6674c30595590f9fd9459251" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Facebook", + "name": "Ben Ray", + "email": "benray887@gmail.com", + "linkedIn": "https://www.linkedin.com/in/benray-/", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Rotational Engineer", + "industry": "Tech", + "cities": ["Dallas", "Norfolk", "Paris"], + "_id": { + "$oid": "6674c30595590f9fd9459252" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Facebook", + "name": "Jason Lee", + "email": "jason.dongyul.lee@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "42", + "jobTitle": "Full-Stack Engineer", + "industry": "Social Media/Networking", + "cities": ["Kansas City"], + "_id": { + "$oid": "6674c30595590f9fd9459253" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Facebook", + "name": "Jonathan Calvo Ramirez", + "email": "jono.calvo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonathan-calvo", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer", + "industry": "Social Media", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459254" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Facebook", + "name": "Rajeeb Banstola", + "email": "rajeebanstola@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rajeebbanstola/", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Fullstack Developer - Contract", + "industry": "Internet", + "cities": ["Mesa"], + "_id": { + "$oid": "6674c30595590f9fd9459255" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Facebook", + "name": "Ricardo Cortez", + "email": "ricardodgers12@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rcortez88/", + "campus": "LA", + "cohort": "44", + "jobTitle": "Full Stack Software Engineer", + "industry": "Social Media", + "cities": ["Raleigh", "Oakland", "Dallas"], + "_id": { + "$oid": "6674c30595590f9fd9459256" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Facebook", + "name": "Sean Grace", + "email": "seanmgrace@gmail.com", + "linkedIn": "https://www.linkedin.com/in/seanmgrace/", + "campus": "LA", + "cohort": "44", + "jobTitle": "Full Stack Software Engineer", + "industry": "Tech", + "cities": ["London", "Oakland"], + "_id": { + "$oid": "6674c30595590f9fd9459257" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Facebook", + "name": "Shreshth Srivastava", + "email": "shreshthsrivastava2@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shreshth-srivastava/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Software Engineer", + "industry": "Social Media", + "cities": ["Fort Worth"], + "_id": { + "$oid": "6674c30595590f9fd9459258" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Facebook (Meta)", + "name": "Eric Wilding", + "email": "eric.d.wilding@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eric-wilding/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Full Stack Software Engineer", + "industry": "Social Media", + "cities": ["Washington"], + "_id": { + "$oid": "6674c30595590f9fd9459259" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Facebook (via K2Partners)", + "name": "Thanh Doan", + "email": "tdoan35@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ty-thanh-doan/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Full-Stack Engineer", + "industry": "Social Media", + "cities": ["Omaha"], + "_id": { + "$oid": "6674c30595590f9fd945925a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Facebook via TEK System", + "name": "Yoko Kawamoto", + "email": "yokokawamoto@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yokokawamoto/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer", + "industry": "Social Media", + "cities": ["Mesa", "Anchorage", "Durham"], + "_id": { + "$oid": "6674c30595590f9fd945925b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Facebook/K2", + "name": "Charles Gutwirth", + "email": "charlesgutwirth@gmail.com", + "linkedIn": "https://www.linkedin.com/in/charles-gutwirth/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Full Stack Engineer", + "industry": "Social media", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945925c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "FactSet", + "name": "Ethan Sclarsky", + "email": "esclarsky@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ethan-sclarsky/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["San Jose", "Mumbai"], + "_id": { + "$oid": "6674c30595590f9fd945925d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Fanatics, Inc", + "name": "Jonah Eidman", + "email": "jonah.eidman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonah-eidman/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Software Engineer II", + "industry": "Entertainment", + "cities": ["Fort Worth"], + "_id": { + "$oid": "6674c30595590f9fd945925e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Fandango", + "name": "Ha-Rry Kim", + "email": "hari9497@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hkim9497/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Software Engineer I", + "industry": "", + "cities": ["Minneapolis"], + "_id": { + "$oid": "6674c30595590f9fd945925f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Fandango", + "name": "Ken Lam", + "email": "heiyeunl@gmail.com", + "linkedIn": "https://www.linkedin.com/in/heiyeunl/", + "campus": "LA", + "cohort": "27", + "jobTitle": "Front end software engineer", + "industry": "Entertainment?", + "cities": ["Greensboro"], + "_id": { + "$oid": "6674c30595590f9fd9459260" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "FanDuel", + "name": "Alex Haile", + "email": "ahaile923@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ahaile923/", + "campus": "FTRI", + "cohort": "7", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Durham"], + "_id": { + "$oid": "6674c30595590f9fd9459261" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Fanfix", + "name": "Dylan Hensel", + "email": "dylan@hensel.com", + "linkedIn": "https://www.linkedin.com/in/dylanhensel/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Senior Software Engineer", + "industry": "Entertainment", + "cities": ["Detroit"], + "_id": { + "$oid": "6674c30595590f9fd9459262" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Fanfix", + "name": "Jonathan Mavandi", + "email": "jonathan.mavandi@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jon-mavandi/", + "campus": "LA", + "cohort": "26", + "jobTitle": "Software Engineer", + "industry": "Entertainment", + "cities": ["North Las Vegas", "Honolulu"], + "_id": { + "$oid": "6674c30595590f9fd9459263" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Fannie Mae", + "name": "Abhi Gullapalli", + "email": "aubertlone@gmail.com", + "linkedIn": "https://www.linkedin.com/in/viswagullapalli/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Cloud Engineer", + "industry": "Cloud Services", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459264" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Fantoons", + "name": "Hank McGill", + "email": "henrymcgill@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hank-mcgill/", + "campus": "NYOI", + "cohort": "4", + "jobTitle": "Founding Full-Stack Software Engineer", + "industry": "Entertainment", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459265" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Farm to People", + "name": "Katharine Angelopoulos", + "email": "katharine.angelopoulos@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kangelopoulos/", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Full Stack Developer", + "industry": "Restaurant, Food, and Beverage", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459266" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Fashionphile", + "name": "Amy Yee", + "email": "amyyee1998@gmail.com", + "linkedIn": "https://www.linkedin.com/in/amyyee98/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "E-commerce", + "cities": ["Norfolk", "Memphis"], + "_id": { + "$oid": "6674c30595590f9fd9459267" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Fashionphile", + "name": "Gabriela Jardim Aquino", + "email": "gjardimaquino@gmail.com", + "linkedIn": "https://www.linkedin.com/in/aquinojardim/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Fashion", + "cities": ["Oklahoma City", "Dallas"], + "_id": { + "$oid": "6674c30595590f9fd9459268" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Fastly", + "name": "Angelo Chengcuenca", + "email": "amchengcuenca@gmail.com", + "linkedIn": "https://www.linkedin.com/in/angelotmchengcuenca/", + "campus": "FTRI / CTRI", + "cohort": "14", + "jobTitle": "Software Development Engineer", + "industry": "Software / Tech", + "cities": ["Lincoln", "Saint Paul", "Tokyo"], + "_id": { + "$oid": "6674c30595590f9fd9459269" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Fearless (fearless.tech)", + "name": "Faraz Akhtar", + "email": "fa8338@gmail.com", + "linkedIn": "https://www.linkedin.com/in/faraz22/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer II", + "industry": "Government Consulting", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945926a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Feather", + "name": "Bryan Fong", + "email": "bryanfong.dev@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bryanfong-dev/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Software Engineer", + "industry": "Furniture Subscription", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945926b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "FeatureBase", + "name": "David Kagan", + "email": "David.kagan07@gmail.com", + "linkedIn": "David-kagan07", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Jr Software Engineer, Cloud", + "industry": "Cloud Services", + "cities": ["Aurora"], + "_id": { + "$oid": "6674c30595590f9fd945926c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Federal Reserve Bank", + "name": "Robert McHalffey", + "email": "R.mchalffey@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "26", + "jobTitle": "Software Engineer 4", + "industry": "Government/Banking", + "cities": ["Tucson"], + "_id": { + "$oid": "6674c30595590f9fd945926d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Federal Reserve Bank of NY", + "name": "Anthony Lee", + "email": "anthonylee2797@gmail.com", + "linkedIn": "https://www.linkedin.com/in/anthony-lee27/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Frontend Developer", + "industry": "Finance", + "cities": ["Reno", "Pittsburgh"], + "_id": { + "$oid": "6674c30595590f9fd945926e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Ferguson", + "name": "Eric Hagen", + "email": "ericjameshagen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hagenforhire/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Tucson", "Lubbock", "Toledo"], + "_id": { + "$oid": "6674c30595590f9fd945926f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Ferguson Enterprises", + "name": "James Ferrell", + "email": "James David.ferrell@ferguson.com", + "linkedIn": "https://www.linkedin.com/in/james-d-ferrell/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "E-commerce", + "cities": ["El Paso"], + "_id": { + "$oid": "6674c30595590f9fd9459270" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Fictiv", + "name": "Cherie Zhong", + "email": "cheriemzhong@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cheriezhong/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Software Engineer", + "industry": "Manufacturing", + "cities": ["Corpus Christi"], + "_id": { + "$oid": "6674c30595590f9fd9459271" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Fidelity Investments", + "name": "Eli Muir", + "email": "eli.t.muir@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eli-muir/", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Full Stack Engineer", + "industry": "Fintech", + "cities": ["Mexico City", "Fresno", "Paris"], + "_id": { + "$oid": "6674c30595590f9fd9459272" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Fidelity Investments", + "name": "Christopher Jamali", + "email": "jamalichristopher@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chrisjamali/", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Senior Mobile Developer", + "industry": "Fintech", + "cities": ["Fort Worth", "Minneapolis", "Beijing"], + "_id": { + "$oid": "6674c30595590f9fd9459273" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Fin", + "name": "Matt Jiang", + "email": "mattljiang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mattljiang/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Product Engineer", + "industry": "SaaS", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459274" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Find my past", + "name": "Mitesh patel", + "email": "mit06@hotmail.com", + "linkedIn": "https://www.linkedin.com/in/miteshvjpatel", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Mid software engineer", + "industry": "genealogy", + "cities": ["Sรฃo Paulo"], + "_id": { + "$oid": "6674c30595590f9fd9459275" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "FinDox Inc.", + "name": "Jhonatan Passalacqua", + "email": "jpascas@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jpassalacqua", + "campus": "PTRI", + "cohort": "Beta", + "jobTitle": "Senior Software Architect", + "industry": "Fintech", + "cities": ["Laredo", "Los Angeles", "Austin"], + "_id": { + "$oid": "6674c30595590f9fd9459276" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.062Z" + }, + "__v": 0 + }, + { + "company": "Finra", + "name": "Yankun Song", + "email": "yankun.L.song@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yankunsong/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Data engineer", + "industry": "Fintech", + "cities": ["Honolulu"], + "_id": { + "$oid": "6674c30595590f9fd9459277" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "First American", + "name": "Jen Lee", + "email": "jenleesj@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jenleesj", + "campus": "FTRI / CTRI", + "cohort": "14", + "jobTitle": "Front End Software Engineer", + "industry": "Insurance", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459278" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "First Help Financial", + "name": "Juliana Morrelli", + "email": "julianamorrelli28@gmail.com", + "linkedIn": "https://www.linkedin.com/in/julianamorrelli/", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Frontend Software Engineer", + "industry": "Fintech", + "cities": ["Reno"], + "_id": { + "$oid": "6674c30595590f9fd9459279" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "First Republic Bank", + "name": "Nikhil Massand", + "email": "nikhil.massand@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nikhil-massand/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Banking", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945927a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "First Resonance", + "name": "Maxwell Reed", + "email": "mxjreed@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mxjrd/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Frontend Engineer", + "industry": "Manufacturing", + "cities": ["Tokyo", "Fort Wayne", "Reno"], + "_id": { + "$oid": "6674c30595590f9fd945927b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Fiserv", + "name": "Ozi Oztourk", + "email": "oztrkgzhn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ozi-oztourk", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Los Angeles"], + "_id": { + "$oid": "6674c30595590f9fd945927c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Fiserv.", + "name": "eddy zapata", + "email": "ecz001@live.com", + "linkedIn": "https://www.linkedin.com/in/eddy-zapata/", + "campus": "FTRI", + "cohort": "2", + "jobTitle": "Software Development Engineer IV", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945927d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Fitch Solutions", + "name": "Duane McFarlane", + "email": "Duanemcfarlane@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/duanemcfarlane/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "Entertainment", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945927e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Flash Scientific Technology", + "name": "William Howard", + "email": "willh91@msn.com", + "linkedIn": "https://www.linkedin.com/in/wph91/", + "campus": "LA", + "cohort": "21", + "jobTitle": "Lead Software Engineer", + "industry": "Meteorology/Environmental Science", + "cities": ["Anchorage"], + "_id": { + "$oid": "6674c30595590f9fd945927f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Flashpoint", + "name": "Robbie Gottlieb", + "email": "robbiegottlieb.dev@gmail.com", + "linkedIn": "https://www.linkedin.com/in/robbie-gottlieb/", + "campus": "NYC / ECRI", + "cohort": "1", + "jobTitle": "Security", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459280" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Flexion", + "name": "Cameron Walls", + "email": "cwalls45@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cameron-walls45/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Full Stack Software Developer", + "industry": "Consulting, the project I am working on is in the Education industry", + "cities": ["Memphis", "Sydney", "Norfolk"], + "_id": { + "$oid": "6674c30595590f9fd9459281" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "FlightAware", + "name": "Robert Yang", + "email": "rob.yang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/robwyang/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Senior Software Engineer", + "industry": "Aviation", + "cities": ["Stockton", "Detroit", "Indianapolis"], + "_id": { + "$oid": "6674c30595590f9fd9459282" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Flock Safety", + "name": "Rocio Infante", + "email": "Rocio.infante417@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Public Safety", + "cities": ["Arlington", "Minneapolis"], + "_id": { + "$oid": "6674c30595590f9fd9459283" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Flock Safety", + "name": "Hunter Shaw", + "email": "hu.shaw215@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hshaw215/", + "campus": "NYC / ECRI", + "cohort": "40", + "jobTitle": "Software Engineer II", + "industry": "Other", + "cities": ["Indianapolis"], + "_id": { + "$oid": "6674c30595590f9fd9459284" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "FloQast", + "name": "Stephanie Chiu", + "email": "stephaniekchiu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stephanie-chiu-/", + "campus": "LA", + "cohort": "32", + "jobTitle": "Software Engineer I", + "industry": "Fintech", + "cities": ["Chicago", "St. Louis"], + "_id": { + "$oid": "6674c30595590f9fd9459285" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "FloQast", + "name": "Khaile Tran", + "email": "khailetran94@gmail.com", + "linkedIn": "linkedin.com/in/khailetran", + "campus": "FTRI / CTRI", + "cohort": "16", + "jobTitle": "Software Engineer I", + "industry": "Other", + "cities": ["Lincoln"], + "_id": { + "$oid": "6674c30595590f9fd9459286" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Florence Healthcare", + "name": "Bill Greco", + "email": "wgreco13@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bill-greco/", + "campus": "NYC", + "cohort": "32", + "jobTitle": "Senior Full Stack Software Engineer", + "industry": "Healthcare", + "cities": ["London"], + "_id": { + "$oid": "6674c30595590f9fd9459287" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "FNS, Inc.", + "name": "Shinhae Na", + "email": "shinhaena@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shinhaena-stella/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Software Engineer", + "industry": "Retail", + "cities": ["Las Vegas", "Reno"], + "_id": { + "$oid": "6674c30595590f9fd9459288" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Foodpanda", + "name": "Josh Kim", + "email": "joshua940308@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sungtae/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Frontend software engineer", + "industry": "Food tech", + "cities": ["Minneapolis", "Indianapolis"], + "_id": { + "$oid": "6674c30595590f9fd9459289" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Forma", + "name": "Jay Lim", + "email": "jaymlim93@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jaylim218/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "Human Resources", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945928a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Formation", + "name": "Stella Liao", + "email": "stellaliao.01@gmail.com", + "linkedIn": "https://www.linkedin.com/feed/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Engineer", + "industry": "Education", + "cities": ["Chicago"], + "_id": { + "$oid": "6674c30595590f9fd945928b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Formidable", + "name": "Juan Hart", + "email": "juanhart1@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Software Engineer III", + "industry": "Consultancy", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945928c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Fortress Information Security", + "name": "Keith Lisiak", + "email": "bball.coach@icloud.com", + "linkedIn": "https://www.linkedin.com/in/keithlisiak/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "Security", + "cities": ["Dallas", "Virginia Beach"], + "_id": { + "$oid": "6674c30595590f9fd945928d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Forward Financing", + "name": "Shanon Lee", + "email": "shanonlee541@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shanonlee541/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Associate Software Engineer", + "industry": "Fintech", + "cities": ["Riverside"], + "_id": { + "$oid": "6674c30595590f9fd945928e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Forward Slope Inc.", + "name": "Ilija Bibic", + "email": "ibibic2@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ilija-bibic", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945928f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Forward Slope, Inc.", + "name": "Thang Thai", + "email": "thaithangt@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thang-thai/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Gilbert", "Nashville"], + "_id": { + "$oid": "6674c30595590f9fd9459290" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "FourKites", + "name": "Anthony Stanislaus", + "email": "anthonystanislaus1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/anthonystanislaus/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Honolulu", "Toledo", "Stockton"], + "_id": { + "$oid": "6674c30595590f9fd9459291" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Fox Corporation", + "name": "James Edwards", + "email": "digitalmediapro7@gmail.com", + "linkedIn": "https://www.linkedin.com/in/digital9/", + "campus": "LA", + "cohort": "19", + "jobTitle": "Senior Full Stack Software Engineer (Frontend)", + "industry": "", + "cities": ["Raleigh", "Houston"], + "_id": { + "$oid": "6674c30595590f9fd9459292" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Freewheel", + "name": "Hubert Lin", + "email": "huberthflin@gmail.com", + "linkedIn": "https://www.linkedin.com/feed/", + "campus": "NYC", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "IT", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459293" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Frontier Communications", + "name": "Josh Cretella", + "email": "jcrtll@protonmail.com", + "linkedIn": "https://www.linkedin.com/in/josh-cretella", + "campus": "LA", + "cohort": "45", + "jobTitle": "Backend Developer", + "industry": "Telecoms", + "cities": ["Laredo", "Washington", "Durham"], + "_id": { + "$oid": "6674c30595590f9fd9459294" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Frozen Dessert Supplies", + "name": "Ethan McRae", + "email": "ethanmcrae0@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ethanmcrae/", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Senior Developer", + "industry": "Consumer Goods: Retail (general)", + "cities": ["Toronto", "Reno"], + "_id": { + "$oid": "6674c30595590f9fd9459295" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Fulcrum", + "name": "Valerie Huang", + "email": "valeriewhuang@gmail.com", + "linkedIn": "https://www.linkedin.com/mwlite/in/valeriewhuang", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Software Engineer", + "industry": "Manufacturing", + "cities": ["Phoenix"], + "_id": { + "$oid": "6674c30595590f9fd9459296" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "fulcrumpro", + "name": "Nicole Du", + "email": "Nicoleduu@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Developer", + "industry": "Manufacturing", + "cities": ["Sรฃo Paulo", "Miami"], + "_id": { + "$oid": "6674c30595590f9fd9459297" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Full In Partners", + "name": "Kevin HoEun Lee", + "email": "kevin.hoeun.lee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kevinhoeunlee/", + "campus": "LA", + "cohort": "50", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459298" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Funimation", + "name": "Justin Joseph", + "email": "jrayjoseph@gmail.com", + "linkedIn": "https://www.linkedin.com/mwlite/in/jrayjoseph", + "campus": "LA", + "cohort": "32", + "jobTitle": "Backend Software Engineer", + "industry": "Entertainment", + "cities": ["Chandler"], + "_id": { + "$oid": "6674c30595590f9fd9459299" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Fusion Medical Staffing", + "name": "Kelsey Graner", + "email": "Kels.graner@gmail.com", + "linkedIn": "LinkedIn.com/Kelsey-graner", + "campus": "LA / WCRI", + "cohort": "54", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Mesa", "Cleveland"], + "_id": { + "$oid": "6674c30595590f9fd945929a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Fusion Medical Staffing", + "name": "Krisette Odegard", + "email": "kmodeg@gmail.com", + "linkedIn": "https://linkedin.com/in/krisette", + "campus": "LA / WCRI", + "cohort": "53", + "jobTitle": "Software Developer", + "industry": "Healthcare", + "cities": ["Chandler"], + "_id": { + "$oid": "6674c30595590f9fd945929b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Futuralis", + "name": "Rex Osariemen", + "email": "rexosariemen@gmail.com", + "linkedIn": "https://linkedin/in/rexosariemen", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Software Engineer", + "industry": "IT", + "cities": ["Gilbert", "Denver"], + "_id": { + "$oid": "6674c30595590f9fd945929c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "G-Research", + "name": "Sigele Nickerson-Adams", + "email": "sigeleakosua@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sigelenickersonadams", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Software Engineer", + "industry": "Research", + "cities": ["Indianapolis", "Pittsburgh"], + "_id": { + "$oid": "6674c30595590f9fd945929d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Gaia Platform", + "name": "Jorge Fernandez", + "email": "jcferna1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jorge-carlos-fernandez", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Developer", + "industry": "Automation", + "cities": ["Garland"], + "_id": { + "$oid": "6674c30595590f9fd945929e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Gallery Media Group", + "name": "Kristiina Eelnurme", + "email": "kristiina.eelnurme@gmail.com", + "linkedIn": "https://www.linkedin.com/in/Kristiina-eelnurme/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Frontend Engineer", + "industry": "Media", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945929f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "GameOn Technology", + "name": "Jeffrey Kim", + "email": "kimjeffrey96@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jeffrey-kim-79810112a/", + "campus": "NYC", + "cohort": "6", + "jobTitle": "Frontend, Software Engineer", + "industry": "Tech", + "cities": ["Philadelphia"], + "_id": { + "$oid": "6674c30595590f9fd94592a0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "GAN Integrity", + "name": "Erik Larsen", + "email": "erik.w.larsen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/erik-w-larsen", + "campus": "NYC", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Indianapolis", "Denver"], + "_id": { + "$oid": "6674c30595590f9fd94592a1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Gap", + "name": "Khayal Alasgarov", + "email": "alaskarov.khayal@gmail.com", + "linkedIn": "https://www.linkedin.com/in/khayal-alasgaroff", + "campus": "LA", + "cohort": "44", + "jobTitle": "React/JavaScript Developer", + "industry": "Clothing", + "cities": ["Greensboro", "Dallas"], + "_id": { + "$oid": "6674c30595590f9fd94592a2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Gap", + "name": "Wesley Appleget", + "email": "wesget182@gmail.com", + "linkedIn": "https://www.linkedin.com/in/wesley-appleget/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Full Stack Engineer", + "industry": "Retail", + "cities": ["Chula Vista", "Norfolk", "North Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd94592a3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Gap Inc.", + "name": "Cole Redfearn", + "email": "coleredfearn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/coleredfearn/", + "campus": "LA", + "cohort": "41", + "jobTitle": "UI Developer", + "industry": "Clothing/E-Commerce", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592a4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Gap inc.", + "name": "Nayan Parmar", + "email": "nparmar84@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nparmar1", + "campus": "LA", + "cohort": "44", + "jobTitle": "Software Engineer", + "industry": "eCommerce", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592a5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Gartner-L2", + "name": "Jonathan P Schwartz", + "email": "jonathanschwartz30@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonathanpschwartz/", + "campus": "NYC", + "cohort": "7", + "jobTitle": "Front-End Lead", + "industry": "", + "cities": ["Tampa", "Atlanta"], + "_id": { + "$oid": "6674c30595590f9fd94592a6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Gatheround", + "name": "Andrew Widjaja", + "email": "andrewdwidjaja@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andrew-widjaja/", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Durham"], + "_id": { + "$oid": "6674c30595590f9fd94592a7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "GE Aviation", + "name": "Nathan Richardson", + "email": "nathan.richardson94@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nathan-p-richardson/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Fullstack Developer", + "industry": "Aerospace", + "cities": ["Cincinnati", "Garland", "Irvine"], + "_id": { + "$oid": "6674c30595590f9fd94592a8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Geneoscopy", + "name": "Steve Schlepphorst", + "email": "steve.schlepphorst@gmail.com", + "linkedIn": "https://www.linkedin.com/in/schlepphorst/", + "campus": "FTRI / CTRI", + "cohort": "17", + "jobTitle": "Senior Software Engineer I", + "industry": "Healthtech/Healthcare", + "cities": ["Indianapolis", "Mesa"], + "_id": { + "$oid": "6674c30595590f9fd94592a9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Genomic Prediction", + "name": "Rebecca Miller", + "email": "beemills@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rebeccamiller19/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Frontend Engineer", + "industry": "Biotech", + "cities": ["Milwaukee", "Atlanta", "Tokyo"], + "_id": { + "$oid": "6674c30595590f9fd94592aa" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Ghostery", + "name": "Leury Rodriguez", + "email": "leuryr07@gmail.com", + "linkedIn": "https://www.linkedin.com/in/leury-rodriguez/", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Jr. Software Engineer", + "industry": "Internet", + "cities": ["Albuquerque", "Jersey City", "Stockton"], + "_id": { + "$oid": "6674c30595590f9fd94592ab" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Giglabs, Inc.", + "name": "Tyler Pohn", + "email": "tylerpohn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tylerpohn/", + "campus": "FTRI / CTRI", + "cohort": "5", + "jobTitle": "Software Engineer", + "industry": "Blockchain/Web3", + "cities": ["Atlanta", "Orlando", "Tulsa"], + "_id": { + "$oid": "6674c30595590f9fd94592ac" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Giglabs.io", + "name": "Daniel Nguyen", + "email": "dannguyen1191@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/danlord-nguyen/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Software Engineer (Node)", + "industry": "Blockchain, Media and Entertainment", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592ad" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Github", + "name": "Sabrina Goldfarb", + "email": "s.goldfarb2@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sabrinagoldfarb/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Software Engineer II", + "industry": "Tech", + "cities": ["Irving", "Louisville", "St. Louis"], + "_id": { + "$oid": "6674c30595590f9fd94592ae" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "glimpse.ai", + "name": "Ryan Lim", + "email": "ryanlim301@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ryanlim3/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Full Stack Engineer", + "industry": "Information Technology", + "cities": ["Phoenix"], + "_id": { + "$oid": "6674c30595590f9fd94592af" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Gluware", + "name": "Abid Ramay", + "email": "abidramay@gmail.com", + "linkedIn": "https://www.linkedin.com/in/aramay/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592b0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "GOAT Group", + "name": "Jordan Deleon", + "email": "jordanscottdeleon@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jordan-deleon/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Software Engineer II", + "industry": "E-commerce", + "cities": ["Indianapolis", "Newark", "Scottsdale"], + "_id": { + "$oid": "6674c30595590f9fd94592b1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "GoBolt", + "name": "Kyo Ku", + "email": "kyosan.ku34@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kyosan-ku/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Software Developer II", + "industry": "Logistics Technology", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592b2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "GoDaddy", + "name": "Joyce Lo", + "email": "joycemanning@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joycelo/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer", + "industry": "Internet", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592b3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "GoDaddy", + "name": "Kristina Wallen", + "email": "KristinaKWallen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kristina-wallen/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Senior Software Development Engineer", + "industry": "Software / Tech", + "cities": ["St. Louis"], + "_id": { + "$oid": "6674c30595590f9fd94592b4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "GoFundMe", + "name": "Colin McCarthy", + "email": "colinhmccarthy@gmail.com", + "linkedIn": "https://www.linkedin.com/in/colinhmccarthy/", + "campus": "LA", + "cohort": "21", + "jobTitle": "Software Engineer", + "industry": "Crowdfunding/fundraising", + "cities": ["Jersey City", "Plano"], + "_id": { + "$oid": "6674c30595590f9fd94592b5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Golden Hippo", + "name": "Mauricio Castro", + "email": "mauricio.a.castro7@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mauricioacastro/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Senior Full Stack Developer", + "industry": "Advertising", + "cities": ["Chesapeake", "Minneapolis"], + "_id": { + "$oid": "6674c30595590f9fd94592b6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Goldman Sachs", + "name": "Alfredo Alpizar", + "email": "fredo.alpizar@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alfredoalpizar/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Associate Software Engineer", + "industry": "Finance / Banking", + "cities": ["Irvine", "Las Vegas", "San Jose"], + "_id": { + "$oid": "6674c30595590f9fd94592b7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Goldman Sachs", + "name": "Peyton Pedersen", + "email": "pedersen0819@gmail.com", + "linkedIn": "https://www.linkedin.com/in/peyton-pedersen/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Analyst", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592b8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Goldman Sachs", + "name": "Stephen Budarz", + "email": "sbudarz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/steve-budarz/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Vice President", + "industry": "Finance", + "cities": ["Washington"], + "_id": { + "$oid": "6674c30595590f9fd94592b9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Goldschmitt & Associates", + "name": "Kirk Shin", + "email": "shin.kirk@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kirkshin/", + "campus": "LA", + "cohort": "31", + "jobTitle": "Frontend Developer", + "industry": "Government contractor", + "cities": ["Reno", "Garland"], + "_id": { + "$oid": "6674c30595590f9fd94592ba" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "GoodPup", + "name": "Eric Wells", + "email": "epiqu1n@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ewells2275/", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["El Paso", "San Jose", "Wichita"], + "_id": { + "$oid": "6674c30595590f9fd94592bb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "GoodRX", + "name": "Byron Jay Inocencio", + "email": "jay.byron@gmail.com", + "linkedIn": "https://www.linkedin.com/in/binocencio/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "Healthcare, Med-tech, Telemedecine", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592bc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "GoodRx", + "name": "Mike Richards", + "email": "mike@madebymtr.com", + "linkedIn": "https://www.linkedin.com/in/madebymtr/", + "campus": "LA", + "cohort": "11", + "jobTitle": "Senior Frontend Engineer", + "industry": "Healthcare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592bd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Andie Ritter", + "email": "A.k.rittr@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andieritter/", + "campus": "LA", + "cohort": "34", + "jobTitle": "Software Engineer", + "industry": "Business Intelligence", + "cities": ["Long Beach", "Baltimore", "Irving"], + "_id": { + "$oid": "6674c30595590f9fd94592be" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Ben Hawley", + "email": "benhawley0@gmail.com", + "linkedIn": "https://www.linkedin.com/in/benchawley/", + "campus": "NYC", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Honolulu", "Washington"], + "_id": { + "$oid": "6674c30595590f9fd94592bf" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Brett Beekley", + "email": "brettbeekley@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brettbeekley/", + "campus": "LA", + "cohort": "15", + "jobTitle": "Senior Software Engineer, Site Reliability Engineering", + "industry": "Technology", + "cities": ["San Antonio", "Cleveland"], + "_id": { + "$oid": "6674c30595590f9fd94592c0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Cameron Greer", + "email": "camgreer01@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cameron-greer/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer - Level 3", + "industry": "Technology", + "cities": ["Aurora"], + "_id": { + "$oid": "6674c30595590f9fd94592c1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Christian Padilla", + "email": "christianepadilla@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christianedwardpadilla/", + "campus": "NYC", + "cohort": "10", + "jobTitle": "Software Engineer (L3)", + "industry": "Frontend Mobile Development", + "cities": ["Lexington", "Tampa"], + "_id": { + "$oid": "6674c30595590f9fd94592c2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Crystal Pederson", + "email": "crystalpederson88@gmail.com", + "linkedIn": "https://www.linkedin.com/in/crystalpederson/", + "campus": "PTRI", + "cohort": "5", + "jobTitle": "Software Engineer (Frontend III)", + "industry": "Software / Tech", + "cities": ["Mesa"], + "_id": { + "$oid": "6674c30595590f9fd94592c3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Edwin Lee", + "email": "edjl1289@gmail.com", + "linkedIn": "https://www.linkedin.com/in/edwinlee89/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Software Engineer", + "industry": "Cloud Service", + "cities": ["Charlotte", "Beijing", "Stockton"], + "_id": { + "$oid": "6674c30595590f9fd94592c4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Ian Geckeler", + "email": "ikcgeckeler@gmail.com", + "linkedIn": "https://www.linkedin.com/in/iangeckeler/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Software Engineer", + "industry": "Adtech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592c5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Jeff Kang", + "email": "jeffreyrkang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jeffreyrkang/", + "campus": "LA", + "cohort": "21", + "jobTitle": "Software Engineer", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592c6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Jenae Pennie", + "email": "jenaepen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jenae-pennie/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Software Engineer", + "industry": "Tech", + "cities": ["North Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd94592c7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Jonathan Tam", + "email": "jktam336@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jktam/", + "campus": "LA", + "cohort": "47", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Portland", "Irvine", "Virginia Beach"], + "_id": { + "$oid": "6674c30595590f9fd94592c8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Miguel Gonzalez", + "email": "MiguelGonzalez@alumni.upenn.edu", + "linkedIn": "https://www.linkedin.com/in/miguel-gonzalez96/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Software Engineer - Search Engine Privacy", + "industry": "Tech", + "cities": ["St. Louis", "Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd94592c9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.063Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Nak Young Kim", + "email": "nydkim@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nak-young-kim/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer", + "industry": "Social Media", + "cities": ["Mesa", "Kansas City", "Newark"], + "_id": { + "$oid": "6674c30595590f9fd94592ca" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Patrick Liu", + "email": "patrickliu.hhs@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ptrkl/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Software Engineer", + "industry": "Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592cb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Swetha Kunda", + "email": "swethakunda@gmail.com", + "linkedIn": "https://www.linkedin.com/in/swethakunda/", + "campus": "FTRI", + "cohort": "6", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Kansas City", "St. Louis"], + "_id": { + "$oid": "6674c30595590f9fd94592cc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Google", + "name": "Cecilia Yena Choi", + "email": "yenachoi95@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ceciliayenachoi/", + "campus": "LA", + "cohort": "34", + "jobTitle": "Software Engineer", + "industry": "Tech", + "cities": ["Henderson"], + "_id": { + "$oid": "6674c30595590f9fd94592cd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Google Cloud", + "name": "Sarah Heacock", + "email": "sarahheacock03@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sarah-heacock/", + "campus": "NYC", + "cohort": "2", + "jobTitle": "Software Engineer", + "industry": "Tech", + "cities": ["Fort Worth", "Arlington", "Denver"], + "_id": { + "$oid": "6674c30595590f9fd94592ce" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "GoSite", + "name": "Alexander Young", + "email": "youngalexj00@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexander-young-7aabb7122/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Full Stack Engineer", + "industry": "Digital Services", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592cf" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Govini", + "name": "Aaron Bumanglag", + "email": "aaron.k.bumanglag@gmail.com", + "linkedIn": "https://linkedin.com/akbuma", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Decision Science", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592d0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Grailed", + "name": "Eugene Chen", + "email": "chen.eugene19@gmail.com", + "linkedIn": "https://www.linkedin.com/in/canopeia", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Junior Software Engineer", + "industry": "HR tech", + "cities": ["Chula Vista"], + "_id": { + "$oid": "6674c30595590f9fd94592d1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Grailed", + "name": "Danni Ballena", + "email": "danni.ballena@gmail.com", + "linkedIn": "https://www.linkedin.com/in/danni-ballena/", + "campus": "LA", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Entertainment", + "cities": ["North Las Vegas", "Colorado Springs"], + "_id": { + "$oid": "6674c30595590f9fd94592d2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Granular", + "name": "Charles Ryu", + "email": "charles.ryu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/charcharryu", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer", + "industry": "Agriculture Tech", + "cities": ["Denver", "Durham"], + "_id": { + "$oid": "6674c30595590f9fd94592d3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Graphika", + "name": "Sam Carlile", + "email": "sam@samkc.me", + "linkedIn": "https://LinkedIn.com/in/samkcarlile", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Full Stack Engineer", + "industry": "Research & Analytics", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592d4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Green Street Advisors", + "name": "Joshua Nordstrom", + "email": "joshua@jdnordstrom.com", + "linkedIn": "https://www.linkedin.com/in/jdnordy/", + "campus": "LA", + "cohort": "34", + "jobTitle": "Technology Associate", + "industry": "Real Estate", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592d5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Greenphire", + "name": "Nicholas Krug", + "email": "n.e.krug@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nicholas-e-krug", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Application Developer III", + "industry": "Healthcare", + "cities": ["Cincinnati", "Charlotte", "Denver"], + "_id": { + "$oid": "6674c30595590f9fd94592d6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Greentech Financial Solutions", + "name": "Justin Hicks", + "email": "justinhickswork@gmail.com", + "linkedIn": "https://www.linkedin.com/in/justinlhicks/", + "campus": "LA / WCRI", + "cohort": "48", + "jobTitle": "Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592d7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Grid Networks", + "name": "Trine Medina", + "email": "trinemedina@gmail.com", + "linkedIn": "www.linkedin.com/in/trinemedina", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Seattle", "Boston"], + "_id": { + "$oid": "6674c30595590f9fd94592d8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Gro Intelligence", + "name": "Damian Lim", + "email": "limd96@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lim-damian/", + "campus": "FTRI", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Agriculture Science", + "cities": ["Raleigh"], + "_id": { + "$oid": "6674c30595590f9fd94592d9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Gro-Intelligence", + "name": "David Bernstein", + "email": "dxbernstein@gmail.com", + "linkedIn": "https://www.linkedin.com/in/davidsamuelbernstein/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Software Engineer (API/Data Visualization Team)", + "industry": "Agricultural Analytics", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592da" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Groove Jones", + "name": "Kristopher Sorensen", + "email": "Krismsorensen@gmail.com", + "linkedIn": "Linkedin/in/kris-sorensen", + "campus": "FTRI / CTRI", + "cohort": "7", + "jobTitle": "Senior WebXR Developer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592db" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "GuideMe Solutions", + "name": "David Nadler", + "email": "Davidnadler9637@gmail.com", + "linkedIn": "https://www.linkedin.com/in/davenads/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Technical Consultant", + "industry": "Digital Adoption Software", + "cities": ["Nashville", "Seattle", "San Francisco"], + "_id": { + "$oid": "6674c30595590f9fd94592dc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Gulfstream", + "name": "Chris Hicks", + "email": "chrishicks430@gmail.com", + "linkedIn": "Www.LinkedIn.com/in/chrishicks430", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Application Developer", + "industry": "Aerospace", + "cities": ["Oklahoma City", "San Antonio"], + "_id": { + "$oid": "6674c30595590f9fd94592dd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Guy Carpenter", + "name": "Dennis Palomo", + "email": "dennispalomo@icloud.com", + "linkedIn": "https://linkedin.com/in/dennispalomo", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Developer", + "industry": "Insurance", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592de" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "HackerOne", + "name": "Catherine Chiu", + "email": "catherinechiuu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cchiu2/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Engineer II", + "industry": "Cybersecurity", + "cities": ["Newark", "Las Vegas", "Stockton"], + "_id": { + "$oid": "6674c30595590f9fd94592df" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "HackerOne", + "name": "Serena Kuo", + "email": "hello@serenakuo.com", + "linkedIn": "https://www.linkedin.com/in/serenakuo/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Senior Software Engineer", + "industry": "Computer Safety", + "cities": ["San Jose", "Pittsburgh", "El Paso"], + "_id": { + "$oid": "6674c30595590f9fd94592e0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "HackerOne", + "name": "Haejin Jo", + "email": "swe.haejin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/haejinjo", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Engineer", + "industry": "Cybersecurity", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592e1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Halo Investing", + "name": "Gareth Leake", + "email": "gfleake@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gareth-leake/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "Finance", + "cities": ["Irving", "Corpus Christi"], + "_id": { + "$oid": "6674c30595590f9fd94592e2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Handshake", + "name": "Annie Shin", + "email": "annieshin51@gmail.com", + "linkedIn": "https://www.linkedin.com/in/annieshinn/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer, Platform Services Team", + "industry": "Recruiting", + "cities": ["Minneapolis"], + "_id": { + "$oid": "6674c30595590f9fd94592e3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Handshake", + "name": "Chase Benjamin", + "email": "chasebenjamin6@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chase-benjamin300/", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Growth Engineer", + "industry": "Other", + "cities": ["Kansas City"], + "_id": { + "$oid": "6674c30595590f9fd94592e4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Handshake", + "name": "Jeffrey Lu", + "email": "hi@jeffreyclu.com", + "linkedIn": "https://www.linkedin.com/in/jeffreyclu/", + "campus": "PTRI", + "cohort": "Beta", + "jobTitle": "Software Engineer", + "industry": "Education", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592e5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Handshake", + "name": "Joel Pratt", + "email": "pratt.joel@gmail.com", + "linkedIn": "https://www.linkedin.com/in/pratt-joel/", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Irving", "Garland", "Cincinnati"], + "_id": { + "$oid": "6674c30595590f9fd94592e6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Harbor.ai", + "name": "Rodolfo Guzman", + "email": "Rodolfoguzman147@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rodolfo-guzman-59249594/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Full Stack Developer", + "industry": "Insurance Tech", + "cities": ["St. Louis", "Garland", "Detroit"], + "_id": { + "$oid": "6674c30595590f9fd94592e7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Harness Inc.", + "name": "Tran McFarland Nguyen", + "email": "tranviolin@me.com", + "linkedIn": "https://www.linkedin.com/in/tranmcfarlandnguyen/", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Senior UX Designer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592e8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Harver", + "name": "Will Robinson", + "email": "wrobinson91@gmail.com", + "linkedIn": "https://www.linkedin.com/in/wrobinson91", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Fullstack Engineer", + "industry": "Applicant Tracking Software", + "cities": ["Irvine", "Riverside", "Columbus"], + "_id": { + "$oid": "6674c30595590f9fd94592e9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Health Note", + "name": "Jeffrey Sul", + "email": "jeffsul97@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jsul/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer", + "industry": "Medical CRM", + "cities": ["Durham", "El Paso"], + "_id": { + "$oid": "6674c30595590f9fd94592ea" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Healthcare.com", + "name": "Stephen Jue", + "email": "steve.h.jue@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stephen-jue09/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Software Engineer - Front End", + "industry": "Other", + "cities": ["Chesapeake", "New York", "Mesa"], + "_id": { + "$oid": "6674c30595590f9fd94592eb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Healthgrades", + "name": "Joel K. Perkins", + "email": "Joel.climbs@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joelkperkins/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Software Engineer", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592ec" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hearst", + "name": "Josh Roberts", + "email": "josh@quantumspot.io", + "linkedIn": "https://www.linkedin.com/in/joshrobertsv2/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Lead Frontend Engineer", + "industry": "Media", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592ed" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hearst", + "name": "Rob Nobile", + "email": "robert.nobile@gmail.com", + "linkedIn": "https://www.linkedin.com/in/robnobile/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer", + "industry": "Media", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592ee" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hearst Newspaper", + "name": "Kevin Sarchi", + "email": "kevinsarchi@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/kevin-sarchi/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Associate Software Engineer", + "industry": "Media", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592ef" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hearth", + "name": "Vince Ho", + "email": "vinceho022@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vinceho022/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Backend Engineer", + "industry": "Fintech", + "cities": ["Greensboro", "Orlando", "Chula Vista"], + "_id": { + "$oid": "6674c30595590f9fd94592f0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Heartland", + "name": "Lloyd Bistany", + "email": "lloydbistany@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lloyd-bistany", + "campus": "NYOI", + "cohort": "3", + "jobTitle": "Software Developer", + "industry": "Business Tech/Enterprise Tech", + "cities": ["Baltimore", "Phoenix", "Charlotte"], + "_id": { + "$oid": "6674c30595590f9fd94592f1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Helix", + "name": "Robert Crocker", + "email": "robert@vizsimply.com", + "linkedIn": "https://www.linkedin.com/in/robertcrocker/", + "campus": "PTRI", + "cohort": "4", + "jobTitle": "Data Visualization Engineer", + "industry": "Bio Tech", + "cities": ["Milwaukee", "Tucson"], + "_id": { + "$oid": "6674c30595590f9fd94592f2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hertz", + "name": "Michael Costello", + "email": "mcostello91@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mcostello-swe/", + "campus": "FTRI / CTRI", + "cohort": "12", + "jobTitle": "Software Engineer", + "industry": "Automotive", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592f3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Highnote", + "name": "Trevor Carr", + "email": "trevor.a.carr@gmail.com", + "linkedIn": "https://www.linkedin.com/in/carr-trevor/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Software", + "cities": ["Milwaukee"], + "_id": { + "$oid": "6674c30595590f9fd94592f4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hilton", + "name": "Andrei Cabrera", + "email": "andrei.cabrera@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andrei-cabrera/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Backend Software Engineer", + "industry": "Entertainment", + "cities": ["Raleigh", "Virginia Beach", "Portland"], + "_id": { + "$oid": "6674c30595590f9fd94592f5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hilton", + "name": "Nick Andreala", + "email": "nandreala@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nickandreala/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Front-End Software Engineer", + "industry": "Hospitality", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592f6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hilton", + "name": "Conor Sexton", + "email": "sextonc@me.com", + "linkedIn": "https://www.linkedin.com/in/sextonc/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Render Tier Engineer", + "industry": "Hospitality", + "cities": ["Anchorage", "Cleveland", "Oakland"], + "_id": { + "$oid": "6674c30595590f9fd94592f7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hinge Health", + "name": "Ahsan Rao", + "email": "ahsan.ijaz.rao@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ahsan-rao/", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Software Engineer - Full-Stack", + "industry": "Healthcare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592f8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hinge Health", + "name": "Evan King", + "email": "evanking112@gmail.com", + "linkedIn": "https://www.linkedin.com/in/evanking11/", + "campus": "LA", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Healthcare Technology", + "cities": ["Colorado Springs", "Gilbert", "Philadelphia"], + "_id": { + "$oid": "6674c30595590f9fd94592f9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hinge Health", + "name": "Vanessa Lutz", + "email": "vanessayplutz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vanessa-lutz", + "campus": "FTRI", + "cohort": "2", + "jobTitle": "Software Engineer", + "industry": "Health", + "cities": ["Glendale", "Toronto", "Irving"], + "_id": { + "$oid": "6674c30595590f9fd94592fa" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hireology", + "name": "Stella Baek", + "email": "seungyeon1008@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stellabaek/", + "campus": "LA / WCRI", + "cohort": "54", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592fb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "HiTactics/ ZH Solutions Inc.", + "name": "Sidhi Gosain", + "email": "sidhigosain@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sidhi-gosain/", + "campus": "LA", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94592fc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "HiThrive", + "name": "Zack Daniels", + "email": "Zackdanielsnyc@gmail.com", + "linkedIn": "https://www.linkedin.com/in/zackdanielsnyc/", + "campus": "LA", + "cohort": "49", + "jobTitle": "Full stack software engineer", + "industry": "Other", + "cities": ["Philadelphia", "El Paso"], + "_id": { + "$oid": "6674c30595590f9fd94592fd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hive", + "name": "Max Latoche", + "email": "max.latoche@gmail.com", + "linkedIn": "https://www.linkedin.com/in/maxlatoche/", + "campus": "NYC", + "cohort": "2", + "jobTitle": "Senior Software Engineer", + "industry": "Tech", + "cities": ["Cleveland", "London"], + "_id": { + "$oid": "6674c30595590f9fd94592fe" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hive Technologies Inc", + "name": "Lilah August", + "email": "lilahraeaugust@gmail.com", + "linkedIn": "https://www.linkedin.com/lilahaugust", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Software Engineer", + "industry": "Automotive", + "cities": ["Albuquerque", "Chandler"], + "_id": { + "$oid": "6674c30595590f9fd94592ff" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "HOF Capital", + "name": "Frank Hu", + "email": "frank.junhu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/frankjunhu/", + "campus": "NYC", + "cohort": "2", + "jobTitle": "Venture Analyst", + "industry": "", + "cities": ["Atlanta"], + "_id": { + "$oid": "6674c30595590f9fd9459300" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Home Depot", + "name": "Hannah Santoyo", + "email": "hannah.santoyo7@gmail.com", + "linkedIn": "linkedin.com/in/hannah-santoyo", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Fullstack Software Engineer", + "industry": "Retail", + "cities": ["Louisville", "Baltimore"], + "_id": { + "$oid": "6674c30595590f9fd9459301" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Honey (PayPal)", + "name": "Jenny Hai", + "email": "jenny.hai420@gmail.com", + "linkedIn": "https://www.linkedin.com/in/Jenny-hai/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer II", + "industry": "Fintech / Ecommerce", + "cities": ["Beijing", "Honolulu", "Chandler"], + "_id": { + "$oid": "6674c30595590f9fd9459302" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hooray Agency", + "name": "Aris Razuri", + "email": "arazuli4@gmail.com", + "linkedIn": "https://www.linkedin.com/in/aris-razuri/", + "campus": "LA", + "cohort": "34", + "jobTitle": "Junior Frontend Developer", + "industry": "Marketing & Advertising", + "cities": ["Reno"], + "_id": { + "$oid": "6674c30595590f9fd9459303" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hopin", + "name": "Linda Wishingrad", + "email": "linda.wishingrad@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lindawishingrad/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Front End Engineer", + "industry": "Tech", + "cities": ["Sรฃo Paulo"], + "_id": { + "$oid": "6674c30595590f9fd9459304" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hopin", + "name": "Rachel Yoo", + "email": "yoo.rache@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rachel-yoo/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Frontend Engineer", + "industry": "Online Events Platform", + "cities": ["Baltimore", "Houston", "Atlanta"], + "_id": { + "$oid": "6674c30595590f9fd9459305" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hopkins", + "name": "Nicole Abramowski", + "email": "nabramow@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nicoleabramowski/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Law", + "cities": ["Greensboro", "Detroit", "Plano"], + "_id": { + "$oid": "6674c30595590f9fd9459306" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "HotPyp", + "name": "Kendall Lu", + "email": "kendall.luu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kendall-lu/", + "campus": "LA", + "cohort": "31", + "jobTitle": "Front End Software Engineer", + "industry": "Cyber Security", + "cities": ["Long Beach", "Louisville", "Winston-Salem"], + "_id": { + "$oid": "6674c30595590f9fd9459307" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Howl", + "name": "Adam Allison", + "email": "allisonadam81@gmail.com", + "linkedIn": "https://www.linkedin.com/in/allisonadam81/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Full Stack Software Engineer", + "industry": "Other", + "cities": ["El Paso", "Honolulu", "London"], + "_id": { + "$oid": "6674c30595590f9fd9459308" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Howl", + "name": "Ryan Wallace", + "email": "ryanwallace1396@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rwallie/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Software Engineer", + "industry": "Media", + "cities": ["Laredo", "Stockton", "St. Petersburg"], + "_id": { + "$oid": "6674c30595590f9fd9459309" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hoylu", + "name": "Judy Song", + "email": "judysongg@gmail.com", + "linkedIn": "https://www.linkedin.com/in/judysongg/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["San Antonio"], + "_id": { + "$oid": "6674c30595590f9fd945930a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "HqO", + "name": "Shadman Khan", + "email": "shadmankhan.825@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shadmanmkhan/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Senior Software Engineer", + "industry": "Tenant Experience Platform/Commercial Real Estate", + "cities": ["Jersey City", "Lexington"], + "_id": { + "$oid": "6674c30595590f9fd945930b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "HubSpot", + "name": "Michael Caballero", + "email": "caballeromichaelus@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael-caballero-a48b0b211/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Senior Software Engineer I", + "industry": "Software", + "cities": ["Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd945930c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Human Interest", + "name": "Paulo Choi", + "email": "Paulinho@hey.com", + "linkedIn": "https://www.linkedin.com/in/paulochoi", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Dallas"], + "_id": { + "$oid": "6674c30595590f9fd945930d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Humana", + "name": "Jeffery Richardson", + "email": "Jeffery.erichardson03@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jefferyrichardsonii", + "campus": "FTRI / CTRI", + "cohort": "12", + "jobTitle": "Senior Software Engineer", + "industry": "Insurance", + "cities": ["Winston-Salem", "Lubbock"], + "_id": { + "$oid": "6674c30595590f9fd945930e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "HumanQ", + "name": "Aya Moosa", + "email": "ayamoosa1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ayamoosa/", + "campus": "LA / WCRI", + "cohort": "55", + "jobTitle": "Full Stack Developer", + "industry": "Other", + "cities": ["Corpus Christi", "Raleigh"], + "_id": { + "$oid": "6674c30595590f9fd945930f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hunter Strategy", + "name": "Rankin Draa", + "email": "rankindraa@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rankin-draa/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Application Developer", + "industry": "IT Services", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459310" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hy-Vee", + "name": "Daniel An", + "email": "da568@georgetown.edu", + "linkedIn": "https://www.linkedin.com/in/d-an96/", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Restaurant, Food, and Beverage", + "cities": ["Orlando", "San Diego", "Oklahoma City"], + "_id": { + "$oid": "6674c30595590f9fd9459311" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hy-Vee", + "name": "Paul Perez", + "email": "pau.per92@gmail.com", + "linkedIn": "https://www.linkedin.com/in/perezp92", + "campus": "NYC / ECRI", + "cohort": "31", + "jobTitle": "Software Engineer II", + "industry": "Restaurant, Food, and Beverage", + "cities": ["Anchorage"], + "_id": { + "$oid": "6674c30595590f9fd9459312" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hyliion", + "name": "Gordon Yu", + "email": "gordon@gordonyu.com", + "linkedIn": "https://www.linkedin.com/in/gordonu/", + "campus": "LA", + "cohort": "16", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Electric Vehicles", + "cities": ["Pittsburgh", "Milwaukee", "Atlanta"], + "_id": { + "$oid": "6674c30595590f9fd9459313" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hypergiant", + "name": "Abu Fofanah", + "email": "Bubakarrr@gmail.com", + "linkedIn": "https://www.linkedin.com/in/Abu-Fofanah/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Senior Frontend Developer", + "industry": "Technology", + "cities": ["London"], + "_id": { + "$oid": "6674c30595590f9fd9459314" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hyperproof", + "name": "Tai Nguyen", + "email": "ndhuutai1@gmail.com", + "linkedIn": "", + "campus": "PTRI", + "cohort": "Beta", + "jobTitle": "Software Engineer", + "industry": "Compliance Operations", + "cities": ["Mumbai", "Los Angeles"], + "_id": { + "$oid": "6674c30595590f9fd9459315" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Hyster-Yale Group", + "name": "Patrick Mojica", + "email": "patrickmojica@gmail.com", + "linkedIn": "https://www.linkedin.com/in/patrick-mojica/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Software Engineer II - Emerging Technology", + "industry": "Automotive", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459316" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "IAPP", + "name": "Wanlu Ding", + "email": "wanlu.ding@gmail.com", + "linkedIn": "https://www.linkedin.com/in/wanlu-ding/", + "campus": "NYC / ECRI", + "cohort": "42", + "jobTitle": "Fullstack software engineer (Contractor)", + "industry": "Consulting", + "cities": ["Portland"], + "_id": { + "$oid": "6674c30595590f9fd9459317" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "IBI Group", + "name": "wisdom liu", + "email": "wliu1290@gmail.com", + "linkedIn": "https://www.linkedin.com/in/wisdom-liu/", + "campus": "LA", + "cohort": "27", + "jobTitle": "Software Developer", + "industry": "Architectural Services", + "cities": ["New York", "Sรฃo Paulo"], + "_id": { + "$oid": "6674c30595590f9fd9459318" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "IBM", + "name": "Annette Lin", + "email": "al261310@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alin10/", + "campus": "NYC", + "cohort": "9", + "jobTitle": "Software engineer, backend", + "industry": "IT", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459319" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "IBM", + "name": "Jimmy Deng", + "email": "Jdeng619@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/zhijimmydeng/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Software Developer - Cloud Software Developer", + "industry": "Sales? Tbh idk", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945931a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "IBM", + "name": "Kyle Jurassic", + "email": "kjurassic@protonmail.com", + "linkedIn": "https://www.linkedin.com/in/kylejurassic/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Cloud Engineer", + "industry": "Technology", + "cities": ["Arlington", "Santa Ana"], + "_id": { + "$oid": "6674c30595590f9fd945931b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "IBM", + "name": "Nader Almogazy", + "email": "nader73107@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nader-almogazy-97603080/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Tech", + "cities": ["Fort Worth"], + "_id": { + "$oid": "6674c30595590f9fd945931c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "IBM", + "name": "Brian Bui", + "email": "umius.brian@gmail.com", + "linkedIn": "https://www.linkedin.com/in/umius-brian/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Cloud Engineer", + "industry": "Information Technology & Services", + "cities": ["Atlanta", "New York", "Anaheim"], + "_id": { + "$oid": "6674c30595590f9fd945931d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "IBM", + "name": "Vessy Shestorkina", + "email": "v.shestorkina@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shestorkina/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Full Stack Developer", + "industry": "Technology & Consulting", + "cities": ["Bakersfield"], + "_id": { + "$oid": "6674c30595590f9fd945931e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Icetec Energy Services", + "name": "Nicholas Ly", + "email": "lynick14@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nicholasly/", + "campus": "FTRI / CTRI", + "cohort": "15", + "jobTitle": "Senior Applications Engineer", + "industry": "Other", + "cities": ["Columbus"], + "_id": { + "$oid": "6674c30595590f9fd945931f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "ICF", + "name": "David Cheng", + "email": "davidzcheng@protonmail.com", + "linkedIn": "https://www.linkedin.com/in/davidzcheng/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Software Engineer", + "industry": "Consulting", + "cities": ["Orlando"], + "_id": { + "$oid": "6674c30595590f9fd9459320" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "ICF", + "name": "Gwen Phillips", + "email": "gwen.phil@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gwen-phillips/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Frontend Developer", + "industry": "Consulting", + "cities": ["Fort Worth", "Tulsa"], + "_id": { + "$oid": "6674c30595590f9fd9459321" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "IDEMIA", + "name": "David Conrad Friesen", + "email": "conrad.friesen@pm.me", + "linkedIn": "https://www.linkedin.com/in/conrad-friesen/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Software Engineer I", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459322" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Idemia", + "name": "Tommy Edmunds", + "email": "tommyedmunds5@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tommy-edmunds-a91aa41a9/", + "campus": "FTRI", + "cohort": "2", + "jobTitle": "Software Engineer", + "industry": "Security", + "cities": ["Arlington", "Portland", "Henderson"], + "_id": { + "$oid": "6674c30595590f9fd9459323" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "iHeartMedia", + "name": "Genevieve Annable", + "email": "genevieveannable@gmail.com", + "linkedIn": "https://www.linkedin.com/in/genevieveannable/", + "campus": "LA", + "cohort": "47", + "jobTitle": "Full-Stack Engineer", + "industry": "Entertainment", + "cities": ["Omaha", "Lubbock"], + "_id": { + "$oid": "6674c30595590f9fd9459324" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "iHeartMedia", + "name": "Alexa Nunes", + "email": "alexaraenunes@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexanunes/", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Software Engineer", + "industry": "News/Entertainment/Streaming Platforms", + "cities": ["Memphis", "Aurora", "Nashville"], + "_id": { + "$oid": "6674c30595590f9fd9459325" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "iHeartRadio", + "name": "Serhii Kaistrenko", + "email": "skaistrenko@gmail.com", + "linkedIn": "https://www.linkedin.com/in/skaistrenko/", + "campus": "NYC", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Hospitality", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459326" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Impending Bloom", + "name": "William Magee", + "email": "wmagee03@gmail.com", + "linkedIn": "https://www.linkedin.com/in/william-magee-22a677181/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Data Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459327" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Inari", + "name": "Kelly Dekitani", + "email": "kellydekitani@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kelly-dekitani/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Full Stack Engineer", + "industry": "Biotech/Agriculture", + "cities": ["Sรฃo Paulo", "Dallas", "Charlotte"], + "_id": { + "$oid": "6674c30595590f9fd9459328" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Inbrace", + "name": "Jim Yoon", + "email": "jimyoon90@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jimkyoon", + "campus": "LA", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Health", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459329" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Industrious", + "name": "Bryan Li", + "email": "Bryan.li@foxmail.com", + "linkedIn": "https://www.linkedin.com/in/bbbryan14/", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945932a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Infinite Computer Solutions", + "name": "Brianna Sookhoo", + "email": "brianna.sookhoo24@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brianna-sookhoo/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945932b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Influent", + "name": "Adam Berri", + "email": "adamberri123@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adamberri/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Software Engineer 1", + "industry": "Social Media", + "cities": ["Albuquerque", "Columbus"], + "_id": { + "$oid": "6674c30595590f9fd945932c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "Influx Data", + "name": "Grace Spletzer", + "email": "gracespletzer05@gmail.com", + "linkedIn": "https://www.linkedin.com/in/grace-spletzer/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Engineer I", + "industry": "Database service", + "cities": ["Long Beach"], + "_id": { + "$oid": "6674c30595590f9fd945932d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.064Z" + }, + "__v": 0 + }, + { + "company": "InfluxData", + "name": "Bill OConnell", + "email": "wdoconnell@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bill-oconnell/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "SaaS", + "cities": ["Long Beach", "Sydney", "Louisville"], + "_id": { + "$oid": "6674c30595590f9fd945932e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Infor", + "name": "Olga Naumova", + "email": "leliknaum@gmail.com", + "linkedIn": "https://www.linkedin.com/in/onaumova/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "software", + "cities": ["London"], + "_id": { + "$oid": "6674c30595590f9fd945932f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Infosys", + "name": "Honghao Sun", + "email": "ilovepuffseven@gmail.com", + "linkedIn": "https://www.linkedin.com/in/honghaosunmichael/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Technical lead", + "industry": "IT Services", + "cities": ["Dallas"], + "_id": { + "$oid": "6674c30595590f9fd9459330" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Infosys", + "name": "Reuben Kirsh", + "email": "reubenakirsh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/reubenkirsh/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Technology Analyst", + "industry": "Tech", + "cities": ["Mesa", "San Antonio", "Louisville"], + "_id": { + "$oid": "6674c30595590f9fd9459331" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Infosys", + "name": "Samuel Ratemo", + "email": "Sratemo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/samuelratemo/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Technology lead -US", + "industry": "Entertainment", + "cities": ["Miami", "Toledo", "Henderson"], + "_id": { + "$oid": "6674c30595590f9fd9459332" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Inhance Digital", + "name": "Brian Chiang", + "email": "chiangbri@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ch-brian/", + "campus": "LA", + "cohort": "34", + "jobTitle": "Software Engineer", + "industry": "Marketing", + "cities": ["Milwaukee", "Sacramento", "Toronto"], + "_id": { + "$oid": "6674c30595590f9fd9459333" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Initiative", + "name": "Brian Cheng", + "email": "Chengbrian24@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brian-cheng24/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Full Stack Developer", + "industry": "Media Agency", + "cities": ["Sydney", "Virginia Beach"], + "_id": { + "$oid": "6674c30595590f9fd9459334" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "INLT", + "name": "Andrew Wong", + "email": "andwong91@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andwong91/", + "campus": "LA", + "cohort": "23", + "jobTitle": "Full Stack Developer", + "industry": "", + "cities": ["Chicago"], + "_id": { + "$oid": "6674c30595590f9fd9459335" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Inman", + "name": "David Kim", + "email": "scriptura7773@gmail.com", + "linkedIn": "https://www.linkedin.com/in/davidkim7773/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Developer", + "industry": "Real Estate", + "cities": ["Jacksonville", "Indianapolis"], + "_id": { + "$oid": "6674c30595590f9fd9459336" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Innovative Defense Technologies", + "name": "Daniel Pietsch", + "email": "drpietsch14@gmail.com", + "linkedIn": "https://www.linkedin.com/in/danielpietsch14/", + "campus": "NYOI", + "cohort": "1", + "jobTitle": "Associate Software Engineer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459337" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "InRhythm", + "name": "Altai Chiang", + "email": "altai.chiang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/altaic/", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Senior Software Engineer", + "industry": "Consulting", + "cities": ["Mexico City", "Oakland", "Charlotte"], + "_id": { + "$oid": "6674c30595590f9fd9459338" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "InRhythm", + "name": "Eric Marcatoma", + "email": "ericmarc159@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ericmarc159/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "Information Technology & Services", + "cities": ["Austin", "San Diego"], + "_id": { + "$oid": "6674c30595590f9fd9459339" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "InRhythm", + "name": "Benjamin Johnson", + "email": "johnsben002@gmail.com", + "linkedIn": "https://www.linkedin.com/in/johnsben002/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Software Engineer: Web Accessibility", + "industry": "Consulting", + "cities": ["San Antonio", "Sydney"], + "_id": { + "$oid": "6674c30595590f9fd945933a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "InRhythm", + "name": "Johnson Che", + "email": "Johnson.Che01@gmail.com", + "linkedIn": "https://www.linkedin.com/in/johnsonche/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Consulting", + "cities": ["Anchorage", "Mesa", "Bakersfield"], + "_id": { + "$oid": "6674c30595590f9fd945933b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "InRhythm", + "name": "Wai Fai Lau", + "email": "wlau8088@gmail.com", + "linkedIn": "https://www.linkedin.com/in/wai-fai-lau/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "Software Consulting", + "cities": ["Orlando", "Portland"], + "_id": { + "$oid": "6674c30595590f9fd945933c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Insider, Inc.", + "name": "Michael Lauri", + "email": "michael.lauri@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mlauri/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer II", + "industry": "Online Media", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945933d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Insider, Inc.", + "name": "Mitchel Severe", + "email": "mitchelsevere@gmail.com", + "linkedIn": "https://www.linkedin.com/in/misevere/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Software Engineer III", + "industry": "Digital Media", + "cities": ["El Paso"], + "_id": { + "$oid": "6674c30595590f9fd945933e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Insight Global", + "name": "Lucas Mobley", + "email": "Lucas.W.Mobley@Gmail.com", + "linkedIn": "https://www.linkedin.com/in/lucasmobley/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Front End Developer", + "industry": "Entertainment", + "cities": ["Riverside", "Sydney", "San Francisco"], + "_id": { + "$oid": "6674c30595590f9fd945933f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Insight Global (contract for Nike)", + "name": "Dave Franz", + "email": "davefranz@me.com", + "linkedIn": "https://www.linkedin.com/in/dave-franz/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Senior Full-Stack Automation Developer", + "industry": "athletic footwear and apparel", + "cities": ["Pittsburgh"], + "_id": { + "$oid": "6674c30595590f9fd9459340" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Insight Global Consulting", + "name": "Andrew Kessinger", + "email": "andrew.kessinger@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "27", + "jobTitle": "React developer", + "industry": "Consulting", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459341" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Instride", + "name": "Jayvee Aspa", + "email": "jayvee.aspa@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jayveeaspa/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Education", + "cities": ["Riverside"], + "_id": { + "$oid": "6674c30595590f9fd9459342" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Integral", + "name": "Anna Larouche", + "email": "alarouche@gmail.com", + "linkedIn": "https://www.linkedin.com/in/anna-larouche/", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Full-stack Engineer", + "industry": "Healthcare", + "cities": ["Phoenix", "St. Petersburg"], + "_id": { + "$oid": "6674c30595590f9fd9459343" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Intelepeer", + "name": "Colton Robbins", + "email": "coltondr@gmail.com", + "linkedIn": "https://www.linkedin.com/in/c-robbins/", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Developer", + "industry": "Other", + "cities": ["Chandler"], + "_id": { + "$oid": "6674c30595590f9fd9459344" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Intellective", + "name": "Dennis Lopez", + "email": "dnnis.lpz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dennis-lopezsb/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Full-Stack Developer", + "industry": "Internet", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459345" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Intent Media", + "name": "Denali DeMots", + "email": "denali.demots@gmail.com", + "linkedIn": "https://www.linkedin.com/in/denali-demots/", + "campus": "NYC", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Fort Worth", "Anchorage"], + "_id": { + "$oid": "6674c30595590f9fd9459346" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Interactive Brokers", + "name": "Luke McInerney", + "email": "mciluke@gmail.com", + "linkedIn": "https://www.linkedin.com/in/luke-mcinerney/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459347" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Intercom", + "name": "Michael Colley", + "email": "michael.e.colley@googlemail.com", + "linkedIn": "https://www.linkedin.com/in/michaelecolley/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Product Engineer", + "industry": "SaaS, business creation services", + "cities": ["Stockton", "San Jose", "Columbus"], + "_id": { + "$oid": "6674c30595590f9fd9459348" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "International association of the better business bureau", + "name": "Giovanni Rodriguez", + "email": "Gjrod16@gmail.com", + "linkedIn": "https://www.linkedin.com/in/giovanni-rodriguez2?trk=public_profile_browsemap&challengeId=AQFtoT_NoFD3KAAAAYkntGZKTiNfC60o4v2Z4zYAnz_4_KDTQUBD7ql40SFHKBenfzE9c6FBwiMar6V09FHeEqmjVS1EAfJ7Ag&submissionId=3cc6cd5a-1812-6f17-7ceb-2e5c0f6f3658&challengeSource=AgFf2bVUVWWRnwAAAYkntJ9Q3ysytHHh91YXaw8gQiFJEKewOYeYX6rLjYNFhlQ&challegeType=AgGCPMxM5AqqqwAAAYkntJ9TeXuuC8zmVgvrjuLxi773fqd8_2_50rU&memberId=AgFbJ9qnK0duCgAAAYkntJ9WYBoUAlgShMkO190TrWZI9XA&recognizeDevice=AgGnKEfL32RWyAAAAYkntJ9aHRqgkhTAzFQoMuIEWQbDY5Tac0sU", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Full Stack Developer", + "industry": "Other", + "cities": ["London", "Anaheim", "Baltimore"], + "_id": { + "$oid": "6674c30595590f9fd9459349" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "International Business Machines", + "name": "Michael Evans", + "email": "amike.evans@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael-evans-8278b865/", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Lead Full Stack Developer", + "industry": "Computer Software", + "cities": ["New York", "Newark", "Chandler"], + "_id": { + "$oid": "6674c30595590f9fd945934a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Intrinsic Enterprises", + "name": "Jasmine A Gonzalez", + "email": "jasminezalez@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jasminezalez/", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Anchorage", "Detroit", "Phoenix"], + "_id": { + "$oid": "6674c30595590f9fd945934b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Intuit", + "name": "Daria Bondarenko", + "email": "dan4ik18@gmail.com", + "linkedIn": "https://www.linkedin.com/in/daria-b/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer", + "industry": "Enterprise Software", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945934c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Intuit", + "name": "Davide Molino", + "email": "davidemmolino@gmail.com", + "linkedIn": "https://www.linkedin.com/in/davide-molino/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer III", + "industry": "Technology", + "cities": ["Irving", "Boston", "El Paso"], + "_id": { + "$oid": "6674c30595590f9fd945934d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Intuit", + "name": "Manjeet Kaur", + "email": "manjeet175@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kaurmanjeet/", + "campus": "NYC", + "cohort": "5", + "jobTitle": "Senior Frontend Engineer", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945934e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Intuit", + "name": "Matthew Marchand", + "email": "matthew.marchand.93@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mnmarchand/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Software Engineer II", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945934f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "intuit", + "name": "Yevgeniy Skroznikov", + "email": "yevskro@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yevgeniyskroznikov/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Software Engineer II", + "industry": "Enterprise software", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459350" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "InvestCloud", + "name": "Curtis Lovrak", + "email": "curtislovrak@gmail.com", + "linkedIn": "https://www.linkedin.com/in/curtislovrak/", + "campus": "NYOI", + "cohort": "4", + "jobTitle": "UI Developer", + "industry": "Fintech", + "cities": ["Tampa", "New York"], + "_id": { + "$oid": "6674c30595590f9fd9459351" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Invisory", + "name": "Thomas Kady", + "email": "thomas.kady@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thomas-kady/", + "campus": "FTRI / CTRI", + "cohort": "14", + "jobTitle": "Software Developer", + "industry": "Cloud Services", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459352" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "IP.com", + "name": "Matthew Miller", + "email": "matthewjohnmiller2020@gmail.com", + "linkedIn": "https://www.linkedin.com/in/matthew-miller2020/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Sacramento", "Albuquerque"], + "_id": { + "$oid": "6674c30595590f9fd9459353" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Iridium Satellite LLC", + "name": "Lyam Hunt", + "email": "lyamnhunt@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lyamhunt/", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Software Developer II", + "industry": "Telecommunications", + "cities": ["Corpus Christi", "Long Beach"], + "_id": { + "$oid": "6674c30595590f9fd9459354" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "IronNet Cybersecurity", + "name": "Daniel Stein", + "email": "danlikesbikes@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dangineer/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Senior UI/UX Developer", + "industry": "Computer and Network Security", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459355" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "ISAT Total Support", + "name": "Anthony Le", + "email": "anthonyle910@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/anthonyle910/", + "campus": "LA / WCRI", + "cohort": "58", + "jobTitle": "Full Stack Developer", + "industry": "Other", + "cities": ["Irvine"], + "_id": { + "$oid": "6674c30595590f9fd9459356" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Isobar", + "name": "Anthony Torrero", + "email": "Anthonyduarteee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/anthony-duarte-4b8798159/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Frontend Developer", + "industry": "Creative Agency", + "cities": ["Berlin", "Garland"], + "_id": { + "$oid": "6674c30595590f9fd9459357" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Isobar", + "name": "James Gary", + "email": "jim@jamesgary.com", + "linkedIn": "https://www.linkedin.com/in/james-gary/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Senior Front End Developer", + "industry": "Media", + "cities": ["Oklahoma City", "Boston", "Colorado Springs"], + "_id": { + "$oid": "6674c30595590f9fd9459358" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "iStrategyLabs", + "name": "Brittany Miltenberger", + "email": "brittany.miltenberger@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brittanywm/", + "campus": "LA", + "cohort": "23", + "jobTitle": "Senior Web Developer", + "industry": "", + "cities": ["El Paso"], + "_id": { + "$oid": "6674c30595590f9fd9459359" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Itential", + "name": "Chao Zhong Yu", + "email": "ChaoY91@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/czyu/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Bakersfield", "Garland"], + "_id": { + "$oid": "6674c30595590f9fd945935a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Ivy Energy", + "name": "Gavin Crews", + "email": "Gcrews1894@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gavincrews/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Frontend Engineer", + "industry": "Solar", + "cities": ["Riverside", "Dallas", "Paris"], + "_id": { + "$oid": "6674c30595590f9fd945935b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Ivy Energy", + "name": "Nicolas Pita", + "email": "pitanicolase@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nicolaspita/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Developer", + "industry": "Clean Energy", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945935c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Jam City", + "name": "Tony Ito-Cole", + "email": "tonyitocole@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tony-ito-cole/", + "campus": "LA", + "cohort": "34", + "jobTitle": "Platform Engineer", + "industry": "Mobile Gaming", + "cities": ["Fort Wayne", "Reno"], + "_id": { + "$oid": "6674c30595590f9fd945935d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Janus Health", + "name": "Benjamin Michareune", + "email": "ben.michareune@Gmail.com", + "linkedIn": "https://www.linkedin.com/in/benmichareune", + "campus": "FTRI / CTRI", + "cohort": "7", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["San Diego"], + "_id": { + "$oid": "6674c30595590f9fd945935e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Janus Healthcare", + "name": "Simon Lee", + "email": "simonlee1125@gmail.com", + "linkedIn": "https://www.linkedin.com/in/simonhlee/", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Software Engineer II", + "industry": "Healthcare", + "cities": ["Pittsburgh"], + "_id": { + "$oid": "6674c30595590f9fd945935f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Jasper (AI)", + "name": "Marcellies Pettiford", + "email": "marcellies@pettifords.xyz", + "linkedIn": "https://www.linkedin.com/in/marcellies-pettiford/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Software Engineer II", + "industry": "Software / Tech", + "cities": ["Atlanta"], + "_id": { + "$oid": "6674c30595590f9fd9459360" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Jogg", + "name": "Alex Kolb", + "email": "akolb981@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexanderjkolb/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459361" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "JP Morgan", + "name": "jonathan k coe", + "email": "jon.coe@codesmith.io", + "linkedIn": "https://www.linkedin.com/in/jonathan-k-coe/", + "campus": "NYC", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459362" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "JP Morgan", + "name": "Jimmy Tran", + "email": "jvtran48@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jimmytran48/", + "campus": "NYC / ECRI", + "cohort": "40", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Jacksonville"], + "_id": { + "$oid": "6674c30595590f9fd9459363" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "JP Morgan / Chase", + "name": "Wayne Wilcox", + "email": "wilcox_wayne@hotmail.com", + "linkedIn": "https://www.linkedin.com/in/wayne-wilcox/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Junior Developer Associate", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459364" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "JP Morgan Chase", + "name": "David Behmoaras", + "email": "dbehmoaras@gmail.com", + "linkedIn": "https://www.linkedin.com/in/david-behmoaras/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Lincoln"], + "_id": { + "$oid": "6674c30595590f9fd9459365" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "JP Morgan Chase", + "name": "Howard Na", + "email": "howardna317@gmail.com", + "linkedIn": "https://www.linkedin.com/in/howard-na-jr/", + "campus": "LA", + "cohort": "26", + "jobTitle": "Software Engineer", + "industry": "Media", + "cities": ["Sacramento"], + "_id": { + "$oid": "6674c30595590f9fd9459366" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "JP Morgan Chase", + "name": "Stewart Elmore", + "email": "stewart.elmore@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stewart-elmore/", + "campus": "NYC / ECRI", + "cohort": "31", + "jobTitle": "Associate Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459367" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "JP Morgan Chase & Co", + "name": "Parker Steinberg", + "email": "parker.s52@gmail.com", + "linkedIn": "https://www.linkedin.com/in/parker-steinberg/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Long Beach", "New York", "Jacksonville"], + "_id": { + "$oid": "6674c30595590f9fd9459368" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "JP Morgan Chase & Co.", + "name": "Jimmy Chen", + "email": "jimmychen12249@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jimchn/", + "campus": "NYC", + "cohort": "17", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459369" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "JP Morgan Chase & Co.", + "name": "Mike Oโ€™Donnell", + "email": "michaelodonnell18@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michaelodonnell18", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Full Stack Developer", + "industry": "Banking", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945936a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "JPMChase", + "name": "Adam Wilson", + "email": "aswilson87@gmail.com", + "linkedIn": "https://www.linkedin.com/in/aswilson87/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Associate Engineer", + "industry": "Finance", + "cities": ["Pittsburgh", "Riverside"], + "_id": { + "$oid": "6674c30595590f9fd945936b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "JPMorgan", + "name": "Winford Lin", + "email": "linwinford@gmail.com", + "linkedIn": "https://www.linkedin.com/in/winfordlin/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer II", + "industry": "Fintech", + "cities": ["Beijing", "Columbus", "Irvine"], + "_id": { + "$oid": "6674c30595590f9fd945936c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "JPMorgan Chase", + "name": "Adam White", + "email": "adamkarnwhite@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adam-karn-white", + "campus": "NYC / ECRI", + "cohort": "31", + "jobTitle": "Senior Associate Software Engineer", + "industry": "Fintech", + "cities": ["Charlotte", "Aurora", "Tulsa"], + "_id": { + "$oid": "6674c30595590f9fd945936d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "JPMorgan Chase", + "name": "Adrian Uesugui", + "email": "auesugui@gmail.com", + "linkedIn": "https://www.linkedin.com/in/auesugui/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Associate Software Engineer", + "industry": "Fintech", + "cities": ["Reno", "Denver"], + "_id": { + "$oid": "6674c30595590f9fd945936e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "JPMorgan Chase", + "name": "John Donovan", + "email": "jodonovan845@gmail.com", + "linkedIn": "https://www.linkedin.com/in/john-d-donovan", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Software Engineer - Associate II", + "industry": "Software / Tech", + "cities": ["Jacksonville", "Cleveland", "Miami"], + "_id": { + "$oid": "6674c30595590f9fd945936f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "JPMorgan Chase & Co", + "name": "Jo Huang", + "email": "johuangx@gmail.com", + "linkedIn": "https://www.linkedin.com/in/johuangx/", + "campus": "NYOI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Nashville", "Gilbert"], + "_id": { + "$oid": "6674c30595590f9fd9459370" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "JPMorgan Chase & Co.", + "name": "Stanley Huang", + "email": "iamstanleyhuang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stanleyhuang16/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459371" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "JPMorgan Chase & Co.", + "name": "Terence Petersen", + "email": "robo.terence@gmail.com", + "linkedIn": "https://www.linkedin.com/in/terence-petersen/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Associate Software Engineer", + "industry": "Merchant Services", + "cities": ["Kansas City"], + "_id": { + "$oid": "6674c30595590f9fd9459372" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Juniper Behavioral Health", + "name": "Kelvin Cuesta", + "email": "kelvinscuesta@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kelvinscuesta/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Lexington", "Norfolk"], + "_id": { + "$oid": "6674c30595590f9fd9459373" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Justworks", + "name": "Shelby Neuman", + "email": "shelbydneuman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shelbyneuman/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459374" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "JustWorks Labs", + "name": "Sophia Huttner", + "email": "sophjean@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sophia-huttner/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Frontend Software Engineer", + "industry": "HR Suite", + "cities": ["Paris", "Milwaukee", "Toronto"], + "_id": { + "$oid": "6674c30595590f9fd9459375" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Karr Barth Administrators", + "name": "Loralyn Milcarek", + "email": "loralyn.milcarek@gmail.com", + "linkedIn": "https://www.linkedin.com/in/loralyn-milcarek/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Developer", + "industry": "Other", + "cities": ["Jacksonville"], + "_id": { + "$oid": "6674c30595590f9fd9459376" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Keller Williams Realty, Inc", + "name": "Brent Speight", + "email": "brentjosephspeight@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brent-speight/", + "campus": "LA", + "cohort": "44", + "jobTitle": "Software Engineer", + "industry": "Realty", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459377" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Kelley Blue Book (Cox Automotive)", + "name": "Ryan Bender", + "email": "rdbender@me.com", + "linkedIn": "https://www.linkedin.com/in/rdbender", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer I", + "industry": "Automotive", + "cities": ["Philadelphia", "New Orleans", "Colorado Springs"], + "_id": { + "$oid": "6674c30595590f9fd9459378" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Kevel", + "name": "Adam Joesten", + "email": "adamjoesten@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adamjoesten/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Senior Software Engineer (SDE II)", + "industry": "Adtech", + "cities": ["Tampa", "Berlin"], + "_id": { + "$oid": "6674c30595590f9fd9459379" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Key Bank (Laurel Road)", + "name": "Eric Pham", + "email": "ericpham36@gmail.com", + "linkedIn": "https://www.linkedin.com/in/epstylesoflife/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Fintech", + "cities": ["Anaheim", "Oklahoma City", "Fort Worth"], + "_id": { + "$oid": "6674c30595590f9fd945937a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Kibanx", + "name": "Celeste Knopf", + "email": "celesteknopf@gmail.com", + "linkedIn": "https://www.linkedin.com/in/celesteknopf/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Front End Engineer", + "industry": "Real Estate", + "cities": ["Saint Paul"], + "_id": { + "$oid": "6674c30595590f9fd945937b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Kin + Carta", + "name": "Eric Olaya", + "email": "ericolaya@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eric-olaya/", + "campus": "FTRI", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "Tech Consulting", + "cities": ["Riverside"], + "_id": { + "$oid": "6674c30595590f9fd945937c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Kindo", + "name": "Hannah Bernstein", + "email": "hbern00@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bernstein-hannah/", + "campus": "LA / WCRI", + "cohort": "53", + "jobTitle": "Software Engineer", + "industry": "Artificial Intelligence", + "cities": ["Long Beach", "Scottsdale", "Mesa"], + "_id": { + "$oid": "6674c30595590f9fd945937d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Kitman Labs", + "name": "Gregory Levine-Rozenvayn", + "email": "Grisha617@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gregory-levine-rozenvayn", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Senior Software Engineer, Frontend", + "industry": "Sports data science", + "cities": ["Irvine"], + "_id": { + "$oid": "6674c30595590f9fd945937e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Klarna", + "name": "Natalie Vick", + "email": "vicknatalie@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vicknatalie/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Senior Frontend Engineer", + "industry": "Ecommerce", + "cities": ["Fort Worth", "Austin", "Dallas"], + "_id": { + "$oid": "6674c30595590f9fd945937f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Klaviyo", + "name": "Amy Chen", + "email": "aechen46@gmail.com", + "linkedIn": "https://www.linkedin.com/in/amyechen/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Marketing Technology", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459380" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Klaviyo", + "name": "Elinor Weissberg", + "email": "elinorthw@gmail.com", + "linkedIn": "https://www.linkedin.com/in/elinorweissberg/", + "campus": "NYOI", + "cohort": "5", + "jobTitle": "Software Engineer II", + "industry": "Marketing/Advertising", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459381" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Knotel", + "name": "Rocky Liao", + "email": "rliao3613@gmail.com", + "linkedIn": "https://linkedin.com/in/seemsrocky", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Software engineer", + "industry": "Real Estate", + "cities": ["Memphis", "London"], + "_id": { + "$oid": "6674c30595590f9fd9459382" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Knowable", + "name": "Alex Sanhueza", + "email": "alexrsanhueza@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alex-sanhueza/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Development Engineer II (Front end)", + "industry": "Legal Services", + "cities": ["Gilbert"], + "_id": { + "$oid": "6674c30595590f9fd9459383" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Komodo Health", + "name": "Ju Kim", + "email": "juhyuns98@gmail.com", + "linkedIn": "", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Engineer, Applications", + "industry": "Healthcare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459384" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Konami Gaming", + "name": "Aidan Noble-Goodman", + "email": "anoblegoodman@gmail.com", + "linkedIn": "www.linkedin.com/anoblegoodman", + "campus": "LA", + "cohort": "28", + "jobTitle": "Software Engineer II", + "industry": "Gaming/casino management software", + "cities": ["Reno", "Boston"], + "_id": { + "$oid": "6674c30595590f9fd9459385" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Kroger", + "name": "John Wong", + "email": "johnwong4150@gmail.com", + "linkedIn": "https://www.linkedin.com/in/john-wong-fongching/", + "campus": "LA / WCRI", + "cohort": "43", + "jobTitle": "Web Platform Engineer", + "industry": "Retail", + "cities": ["Oklahoma City"], + "_id": { + "$oid": "6674c30595590f9fd9459386" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Kroger", + "name": "Jason Seidler", + "email": "jsonseidler@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jason-seidler/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Senior Front End Developer", + "industry": "Retail", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459387" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Kroger", + "name": "Kevin MacCoy", + "email": "kmaccoy@fau.edu", + "linkedIn": "https://www.linkedin.com/in/kevin-maccoy/", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "Backend Engineer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459388" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Kroger", + "name": "Elise McConnell", + "email": "elisemcconnell11@gmail.com", + "linkedIn": "www.linkedin.com/in/elisemcconnell", + "campus": "FTRI / CTRI", + "cohort": "12", + "jobTitle": "Software Engineer", + "industry": "Retail", + "cities": ["Washington", "Newark", "Philadelphia"], + "_id": { + "$oid": "6674c30595590f9fd9459389" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Kryptowire", + "name": "Michael Ross", + "email": "michaelalross@gmail.com", + "linkedIn": "https://linkedin.com/in/michaelalross", + "campus": "LA", + "cohort": "45", + "jobTitle": "Software Engineer II", + "industry": "DevSecOps", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945938a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "KyckGlobal", + "name": "Joseph Lee", + "email": "josephemlee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/josephjslee/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Durham", "Toledo"], + "_id": { + "$oid": "6674c30595590f9fd945938b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Kyte Dynamics, Inc.", + "name": "Lawrence Yeh", + "email": "lawyeh391@gmail.com", + "linkedIn": "linkedin.com/in/lawyeh", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945938c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "LA County", + "name": "Vu Duong", + "email": "vthanhd@gmail.com", + "linkedIn": "www.linkedin.com/in/vu-duong", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Application Developer II", + "industry": "Government", + "cities": ["San Francisco", "Fresno", "Fort Wayne"], + "_id": { + "$oid": "6674c30595590f9fd945938d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "LaaSie.ai", + "name": "Tyler Sayles", + "email": "saylestyler@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tylersayles/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Full stack Engineer", + "industry": "Marketing", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945938e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Lab49", + "name": "Eric Tacher", + "email": "erictacher@gmail.com", + "linkedIn": "https://www.linkedin.com/in/erictacher/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Web UI Engineer", + "industry": "Fintech Consulting", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945938f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Lasso Marketing", + "name": "Andy Tsou", + "email": "tsou.andy@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andy-tsou/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Integration Engineer", + "industry": "Health Care Marketing", + "cities": ["Sacramento", "Cleveland", "Baltimore"], + "_id": { + "$oid": "6674c30595590f9fd9459390" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "LastPass", + "name": "E Kathuria", + "email": "e@kathuria.dev", + "linkedIn": "https://www.linkedin.com/in/ekathuria", + "campus": "NYC", + "cohort": "32", + "jobTitle": "Front End Engineer", + "industry": "Software / Tech", + "cities": ["Sรฃo Paulo"], + "_id": { + "$oid": "6674c30595590f9fd9459391" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Lattitude", + "name": "Carolyn Zheng", + "email": "ruxinzheng01@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ruxinzhengswe/", + "campus": "LA / WCRI", + "cohort": "57", + "jobTitle": "Software Engineer", + "industry": "Marketing/Advertising", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459392" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Launch Darkly", + "name": "Samuel Kim", + "email": "samuyyy@gmail.com", + "linkedIn": "https://www.linkedin.com/in/samuy/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Software Engineer (Backend)", + "industry": "Developer Tools", + "cities": ["Long Beach", "Arlington", "Tucson"], + "_id": { + "$oid": "6674c30595590f9fd9459393" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Lawmatics", + "name": "Omar Rana", + "email": "omar_rana93@hotmail.com", + "linkedIn": "https://www.linkedin.com/in/orana1/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Full Stack Engineer", + "industry": "CRM for law firms", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459394" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Leadpages", + "name": "Evan McNeely", + "email": "evanmcneely@me.com", + "linkedIn": "https://www.linkedin.com/in/evanmcneely/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Software Engineer II", + "industry": "Marketing", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459395" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "Leaf Group (Society6)", + "name": "Oliver Roldan", + "email": "oproldan01@gmail.com", + "linkedIn": "", + "campus": "LA / WCRI", + "cohort": "40", + "jobTitle": "Frontend Engineer", + "industry": "Other", + "cities": ["Oklahoma City", "Colorado Springs"], + "_id": { + "$oid": "6674c30595590f9fd9459396" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "LeaseLock", + "name": "Kara Chisholm", + "email": "kkchisholm@gmail.com", + "linkedIn": "https://www.linkedin.com/in/karachisholm/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["El Paso"], + "_id": { + "$oid": "6674c30595590f9fd9459397" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "LedgerX", + "name": "Abaas Khorrami", + "email": "abaas.khorrami@gmail.com", + "linkedIn": "https://www.linkedin.com/in/abaas-khorrami/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Senior Frontend Engineer", + "industry": "Fintech", + "cities": ["Indianapolis", "Las Vegas", "Arlington"], + "_id": { + "$oid": "6674c30595590f9fd9459398" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "LegacyScape", + "name": "Cassidy Johnson", + "email": "cassidyrose56@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cassidy-r-johnson/", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Irvine"], + "_id": { + "$oid": "6674c30595590f9fd9459399" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.065Z" + }, + "__v": 0 + }, + { + "company": "LegalZoom", + "name": "Henry Park", + "email": "codedenma@gmail.com", + "linkedIn": "https://www.linkedin.com/in/henrytpark/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Software Engineer II, Product Experiences", + "industry": "Other", + "cities": ["Charlotte"], + "_id": { + "$oid": "6674c30595590f9fd945939a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Lendbuzz Inc.", + "name": "Quoc Do", + "email": "dlaquoc1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dlaquoc/", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Full Stack Engineer Co-op (Internship)", + "industry": "Automotive", + "cities": ["Anchorage", "Raleigh"], + "_id": { + "$oid": "6674c30595590f9fd945939b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Lessen Inc", + "name": "Davette Bryan", + "email": "davettejones11@gmail.com", + "linkedIn": "https://www.linkedin.com/in/davette-bryan/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Jr. Software Engineer", + "industry": "Real Estate", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945939c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Lever", + "name": "Aiden Blinn", + "email": "apblinn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/aidenblinn/", + "campus": "FTRI", + "cohort": "7", + "jobTitle": "Integrations Engineer", + "industry": "IT Services", + "cities": ["Lubbock", "Austin"], + "_id": { + "$oid": "6674c30595590f9fd945939d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Lever", + "name": "Jae Lee", + "email": "jaelee213@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jaelee213/", + "campus": "LA", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Recruiting", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945939e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Lever", + "name": "Sophia Sam", + "email": "sophia.sam96@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sophia-sam", + "campus": "FTRI", + "cohort": "7", + "jobTitle": "Software Engineer II", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945939f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Lexis Nexis", + "name": "Danny Martinez", + "email": "codesmith@jdanielmartinez.com", + "linkedIn": "https://www.linkedin.com/in/jdanielmartinez/", + "campus": "LA", + "cohort": "42", + "jobTitle": "GraphQL Full Stack Developer", + "industry": "Paralegal", + "cities": ["Oakland"], + "_id": { + "$oid": "6674c30595590f9fd94593a0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "LexisNexis", + "name": "Graham Albachten", + "email": "albachteng@gmail.com", + "linkedIn": "https://www.linkedin.com/in/graham-albachten-00162a52/", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "GraphQL Full Stack Developer", + "industry": "Legal", + "cities": ["Nashville", "Honolulu", "Mumbai"], + "_id": { + "$oid": "6674c30595590f9fd94593a1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Lexmark", + "name": "Luke Roberts", + "email": "luke.roberts089@gmail.com", + "linkedIn": "https://www.linkedin.com/in/luke-roberts0/", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["St. Louis"], + "_id": { + "$oid": "6674c30595590f9fd94593a2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Liberty Maritime", + "name": "Garrett Layden", + "email": "garlayden@gmail.com", + "linkedIn": "https://linkedin.com/in/garrett-layden", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Full Stack Developer", + "industry": "Other", + "cities": ["Minneapolis"], + "_id": { + "$oid": "6674c30595590f9fd94593a3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Liberty Mutual", + "name": "Bryan Kim", + "email": "bkim0826@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bkimmm/", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["New Orleans"], + "_id": { + "$oid": "6674c30595590f9fd94593a4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Liberty Mutual", + "name": "Cristian De Los Rios", + "email": "Cris2595@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cristian-dlr/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["Atlanta", "Mesa", "Aurora"], + "_id": { + "$oid": "6674c30595590f9fd94593a5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Liberty Mutual", + "name": "Patrick Sullivan", + "email": "patrick@jsullivan.org", + "linkedIn": "https://www.linkedin.com/in/patrick-j-m-sullivan/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593a6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Liberty Mutual", + "name": "Robert Tipton", + "email": "robbytiptontol@gmail.com", + "linkedIn": "https://www.linkedin.com/in/robert-tipton/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["Fort Worth", "Long Beach", "Detroit"], + "_id": { + "$oid": "6674c30595590f9fd94593a7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Liberty Mutual", + "name": "Tyler Jameson Martinez", + "email": "tm6002005@gmail.com", + "linkedIn": "https://www.linkedin.com/mwlite/in/tylerjamesonmartinez", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software engineer", + "industry": "Insurance", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593a8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "LifeOmic", + "name": "Chloe Courtois", + "email": "crc.courtois@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chloe-courtois-3337a210b/", + "campus": "FTRI", + "cohort": "7", + "jobTitle": "Associate Software Engineer", + "industry": "Healthcare", + "cities": ["San Jose", "Irving"], + "_id": { + "$oid": "6674c30595590f9fd94593a9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Limble CMMS", + "name": "Josh Merrell", + "email": "joshmerrell.us@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joshmerrell/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Software Developer III", + "industry": "Software / Tech", + "cities": ["North Las Vegas", "Paris"], + "_id": { + "$oid": "6674c30595590f9fd94593aa" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Linguabee", + "name": "Connor Gillis", + "email": "connoregillis@gmail.com", + "linkedIn": "https://www.linkedin.com/in/connor-gillis/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Front End Software Engineer", + "industry": "Interpreting", + "cities": ["Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd94593ab" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "LinkedIn", + "name": "Ethan Yeh", + "email": "Ethanhwyeh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ethanhwyeh/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Full Stack Software Engineer", + "industry": "Professional Networking", + "cities": ["Fort Worth"], + "_id": { + "$oid": "6674c30595590f9fd94593ac" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "LinkedIn", + "name": "Douglas Yao", + "email": "doug.yao@gmail.com", + "linkedIn": "https://www.linkedin.com/in/douglas-yao/", + "campus": "FTRI / CTRI", + "cohort": "16", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593ad" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Linus Health", + "name": "Tommy Song", + "email": "Tommysong123@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Health tech", + "cities": ["Jersey City", "Honolulu", "Sรฃo Paulo"], + "_id": { + "$oid": "6674c30595590f9fd94593ae" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "LiquidPixels", + "name": "Christian Looff", + "email": "ctnguy10@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christian-looff/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Tulsa"], + "_id": { + "$oid": "6674c30595590f9fd94593af" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Literably", + "name": "Tiffany Wong", + "email": "Wongt1227@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tiffanywong149", + "campus": "NYC / ECRI", + "cohort": "42", + "jobTitle": "Junior Software Engineer", + "industry": "Education/Edtech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593b0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Little Cinema", + "name": "Kenny Ma", + "email": "Kennyjjma@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Front End Engineer", + "industry": "Entertainment", + "cities": ["Jersey City"], + "_id": { + "$oid": "6674c30595590f9fd94593b1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Littlebits", + "name": "Jinsung Park", + "email": "js.lia.park@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jsliapark/", + "campus": "NYC", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Beauty/Cosmetic", + "cities": ["Lubbock"], + "_id": { + "$oid": "6674c30595590f9fd94593b2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Live Nation", + "name": "Colin Gibson", + "email": "colingibs@gmail.com", + "linkedIn": "https://www.linkedin.com/in/colin--gibson/", + "campus": "LA", + "cohort": "44", + "jobTitle": "Software Development Engineer", + "industry": "Real Estate", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593b3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Lively Video", + "name": "Mark Miller", + "email": "markmmiller825@gmail.com", + "linkedIn": "https://www.linkedin.com/in/markmanuelmiller/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Senior Software Engineer", + "industry": "Entertainment/education", + "cities": ["Fresno", "Mumbai"], + "_id": { + "$oid": "6674c30595590f9fd94593b4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "LivePerson", + "name": "Geoffrey Lin", + "email": "geoffrey.s.lin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/geoff-lin/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "Computer Software", + "cities": ["Buffalo"], + "_id": { + "$oid": "6674c30595590f9fd94593b5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "LivePerson", + "name": "Taihyun (Ray) Lee", + "email": "taihyun.ray.lee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/taihyun-ray-lee/", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software Development Engineer", + "industry": "Software (SAAS)", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593b6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "LivePerson", + "name": "Taihyun Lee", + "email": "th9061@gmail.com", + "linkedIn": "https://www.linkedin.com/in/taihyun-ray-lee", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software Development Engineer", + "industry": "Entertainment", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593b7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "LogicMonitor", + "name": "Jessica Vaughan", + "email": "jessicavaughan820@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jessicavaughan820/", + "campus": "LA", + "cohort": "30", + "jobTitle": "frontend developer", + "industry": "SaaS", + "cities": ["Mesa", "Kansas City", "Fresno"], + "_id": { + "$oid": "6674c30595590f9fd94593b8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Lokavant", + "name": "Eric Peng", + "email": "tzerpeng@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eric-peng-jojo/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "Information Technology & Services", + "cities": ["Raleigh", "Charlotte"], + "_id": { + "$oid": "6674c30595590f9fd94593b9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Lonesdale Invest", + "name": "Coral Fussman", + "email": "coralfussman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/coral-fussman-21721538/", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593ba" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Longtail Studios", + "name": "Daniel Steinbrook", + "email": "steinbrookdaniel@gmail.com", + "linkedIn": "https://www.linkedin.com/in/daniel-steinbrook/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Developer - AI Models Integration", + "industry": "Software / Tech", + "cities": ["St. Louis"], + "_id": { + "$oid": "6674c30595590f9fd94593bb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Loop", + "name": "Olivia Hodel", + "email": "ohodel16@gmail.com", + "linkedIn": "https://www.linkedin.com/in/olivia-hodel/", + "campus": "NYC / ECRI", + "cohort": "39", + "jobTitle": "Associate Software Engineer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593bc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Lord, Abbett & Co. LLC", + "name": "Vince Chin", + "email": "vincech@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vincech/", + "campus": "PTRI", + "cohort": "5", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Washington"], + "_id": { + "$oid": "6674c30595590f9fd94593bd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Los Alamos National Laboratory", + "name": "James Howat", + "email": "james@howat.dev", + "linkedIn": "LinkedIn.com/in/jamesbhowat", + "campus": "FTRI / CTRI", + "cohort": "12", + "jobTitle": "Software Developer 2", + "industry": "Security", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593be" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Lotic AI", + "name": "Adam Blackwell", + "email": "blackwell.ada@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adam-blackwell-85918595/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "Mental Health", + "cities": ["Washington", "Cleveland"], + "_id": { + "$oid": "6674c30595590f9fd94593bf" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Low Associates", + "name": "William Robson", + "email": "will.robson19@gmail.com", + "linkedIn": "https://www.linkedin.com/in/william-k-robson/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Full Stack Developer", + "industry": "Software / Tech", + "cities": ["Indianapolis"], + "_id": { + "$oid": "6674c30595590f9fd94593c0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Lowes", + "name": "Joshuah Edwards", + "email": "joshuah.edwards@proton.me", + "linkedIn": "linkedin.com/in/joshuah-edwards/", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "Retail", + "cities": ["Honolulu", "Beijing"], + "_id": { + "$oid": "6674c30595590f9fd94593c1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Lumi AI", + "name": "Ryan Hastings", + "email": "rhaasti@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rhaasti/", + "campus": "NYOI", + "cohort": "4", + "jobTitle": "Front-End Engineer (six month contract-to-hire)", + "industry": "Artificial Intelligence/Machine Learning", + "cities": ["Sรฃo Paulo", "Memphis", "Paris"], + "_id": { + "$oid": "6674c30595590f9fd94593c2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Lumifi", + "name": "Ryan Gause", + "email": "Ryan.g.gause.3@gmail.com", + "linkedIn": "LinkedIn.com/in/ryangause", + "campus": "PTRI", + "cohort": "9", + "jobTitle": "Software Developer II", + "industry": "Security", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593c3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Lunchbox", + "name": "Judy Tan", + "email": "judytan86@gmail.com", + "linkedIn": "https://www.linkedin.com/in/judy-tan93/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Frontend Engineer", + "industry": "Food Industry", + "cities": ["Newark", "Cleveland", "Beijing"], + "_id": { + "$oid": "6674c30595590f9fd94593c4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "LVRG", + "name": "Gary Slootskiy", + "email": "garyslootskiy@gmail.com", + "linkedIn": "https://linkedin.com/in/garyslootskiy", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Senior Software Engineer", + "industry": "Supply Chain Management", + "cities": ["Baltimore"], + "_id": { + "$oid": "6674c30595590f9fd94593c5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Lytx", + "name": "Miller Johnston", + "email": "miller.johnston17@gmail.com", + "linkedIn": "linkedin.com/in/miller-johnston", + "campus": "FTRI / CTRI", + "cohort": "6", + "jobTitle": "Software Engineer II", + "industry": "Automotive", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593c6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "M Science", + "name": "Celena Chan", + "email": "celenachan@gmail.com", + "linkedIn": "https://www.linkedin.com/in/celenachan", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Miami"], + "_id": { + "$oid": "6674c30595590f9fd94593c7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Madison Logic", + "name": "Richie Edwards", + "email": "richie00edwards@gmail.com", + "linkedIn": "https://www.linkedin.com/in/richieedwards/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Full Stack Engineer", + "industry": "Marketing", + "cities": ["Aurora"], + "_id": { + "$oid": "6674c30595590f9fd94593c8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Maestro", + "name": "Jacob Banks", + "email": "jacobjeffreybanks@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jacobjbanks/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Media/Entertainment", + "cities": ["Detroit", "Washington", "Fort Worth"], + "_id": { + "$oid": "6674c30595590f9fd94593c9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Magic Leap", + "name": "Randy Reyes", + "email": "rqreyes@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rqreyes/", + "campus": "LA", + "cohort": "31", + "jobTitle": "Front-End Software Engineer", + "industry": "Augmented Reality", + "cities": ["Detroit"], + "_id": { + "$oid": "6674c30595590f9fd94593ca" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "MagMutual", + "name": "Mark Yencheske", + "email": "markyencheske@gmail.com", + "linkedIn": "https://www.linkedin.com/in/markyencheske/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593cb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Magnite", + "name": "John Madrigal", + "email": "johnmadrigal17@gmail.com", + "linkedIn": "https://www.linkedin.com/in/john-r-madrigal/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Front End Software Development Engineer", + "industry": "Adtech", + "cities": ["Newark", "Mumbai", "New York"], + "_id": { + "$oid": "6674c30595590f9fd94593cc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Mailchimp/Intuit", + "name": "Albert Han", + "email": "albert.h1231@gmail.com", + "linkedIn": "https://www.linkedin.com/in/albert-han1", + "campus": "LA", + "cohort": "47", + "jobTitle": "SWE II", + "industry": "Marketing/financial management", + "cities": ["San Jose"], + "_id": { + "$oid": "6674c30595590f9fd94593cd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Mailchimp/Intuit", + "name": "Gerry Bong", + "email": "ggbong734@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gerry-bong/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Corpus Christi", "Reno", "Toronto"], + "_id": { + "$oid": "6674c30595590f9fd94593ce" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Maisonette", + "name": "Heidi Kim", + "email": "heidiyoora@gmail.com", + "linkedIn": "https://www.linkedin.com/in/heidiykim/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "E-commerce", + "cities": ["San Antonio", "Jacksonville"], + "_id": { + "$oid": "6674c30595590f9fd94593cf" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Major League Baseball", + "name": "Steven Rosas", + "email": "srosas20@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rosassteven/", + "campus": "NYC", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Sports", + "cities": ["Santa Ana"], + "_id": { + "$oid": "6674c30595590f9fd94593d0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "MakerBot", + "name": "Anthony R Toreson", + "email": "anthony.toreson@gmail.com", + "linkedIn": "https://www.linkedin.com/in/atoreson/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Senior Software Engineer", + "industry": "Hardware manufacturer (3d printers)", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593d1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "ManageGo", + "name": "Bo Peng", + "email": "bopeng95@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bopeng95/", + "campus": "NYC", + "cohort": "10", + "jobTitle": "Software Developer", + "industry": "Real Estate", + "cities": ["San Francisco", "Scottsdale", "Raleigh"], + "_id": { + "$oid": "6674c30595590f9fd94593d2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Manatee", + "name": "Raivyno Sutrisno", + "email": "yessysutter@gmail.com", + "linkedIn": "https://www.linkedin.com/in/raivyno-sutrisno/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["San Jose", "Washington"], + "_id": { + "$oid": "6674c30595590f9fd94593d3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Mantium", + "name": "Steve Hong", + "email": "swe.stevehong@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stevehong-swe/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Artificial Intelligence", + "cities": ["Kansas City"], + "_id": { + "$oid": "6674c30595590f9fd94593d4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "MANTL", + "name": "Lourent Flores", + "email": "lourent.flores@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lourent-flores/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Full stack Engineer", + "industry": "Fintech", + "cities": ["Dallas"], + "_id": { + "$oid": "6674c30595590f9fd94593d5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "MANTL", + "name": "TJ Wetmore", + "email": "Thomas.j.wetmore@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tjwetmore/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Paris", "Mesa"], + "_id": { + "$oid": "6674c30595590f9fd94593d6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Mantra Health", + "name": "Konrad Kopko", + "email": "konradkopko1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/konradkopko/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "HealthTech", + "cities": ["Miami", "Sacramento"], + "_id": { + "$oid": "6674c30595590f9fd94593d7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Maple.Finance", + "name": "Thomas Harper", + "email": "tommyrharper@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thomas-robert-harper/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Senior Software Engineer", + "industry": "Blockchain/Web3", + "cities": ["Sรฃo Paulo"], + "_id": { + "$oid": "6674c30595590f9fd94593d8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Mariana Tek", + "name": "Owen Eldridge", + "email": "oweneldridge7@gmail.com", + "linkedIn": "https://www.LinkedIn.com/in/owen-eldridge", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Fitness Center Saas", + "cities": ["Fort Worth", "Tampa", "Columbus"], + "_id": { + "$oid": "6674c30595590f9fd94593d9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "MarineSitu", + "name": "Emily Paine", + "email": "erpaine@gmail.com", + "linkedIn": "https://www.linkedin.com/in/emily-paine1/", + "campus": "FTRI / CTRI", + "cohort": "12", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593da" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Mark43", + "name": "Kadir Gundogdu", + "email": "kadirgund@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kadirgund/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer", + "industry": "Law Enforcement", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593db" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Mark43", + "name": "Sophie Nye", + "email": "sophie.nye@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Software engineer", + "industry": "Itโ€™s software for first responders, not sure what industry that is", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593dc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Marsh Mclennan", + "name": "Mina Koo", + "email": "minalunakoo@gmail.com", + "linkedIn": "linkedin.com/in/minakoo", + "campus": "NYC / ECRI", + "cohort": "30", + "jobTitle": "Developer", + "industry": "Insurance", + "cities": ["Stockton", "Tampa", "Phoenix"], + "_id": { + "$oid": "6674c30595590f9fd94593dd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "MAS Medical Staffing", + "name": "Jeffrey Schrock", + "email": "rhythmmagi@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jmschrock/", + "campus": "NYC", + "cohort": "4", + "jobTitle": "React Software Engineer", + "industry": "FinTech", + "cities": ["Corpus Christi", "Seattle"], + "_id": { + "$oid": "6674c30595590f9fd94593de" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "MassMutual", + "name": "Ausar English", + "email": "ausareenglish@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ausarenglish/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Fullstack Developer", + "industry": "Financial Services/Insurance", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593df" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "MassMutual", + "name": "Bryanna DeJesus", + "email": "bryanna.dejesus@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bryannadejesus/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Full Stack Developer", + "industry": "Insurance", + "cities": ["Las Vegas", "Corpus Christi", "Tucson"], + "_id": { + "$oid": "6674c30595590f9fd94593e0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "MasterCard", + "name": "Abigail Gerig", + "email": "abigail.gerig@gmail.com", + "linkedIn": "https://www.linkedin.com/in/abigail-gerig/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Stockton", "Toronto", "Greensboro"], + "_id": { + "$oid": "6674c30595590f9fd94593e1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Mastercard", + "name": "Edwin Lin", + "email": "Edwinlim@gmail.com", + "linkedIn": "https://www.linkedin.com/in/edwinlin/", + "campus": "NYC", + "cohort": "14", + "jobTitle": "JavaScript Engineer", + "industry": "Payment card", + "cities": ["Cleveland", "Scottsdale"], + "_id": { + "$oid": "6674c30595590f9fd94593e2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Mavis", + "name": "Aalayah-Lynn Olaes", + "email": "olaesaalayah@gmail.com", + "linkedIn": "linkedin.com/in/aalayaholaes", + "campus": "NYC / ECRI", + "cohort": "40", + "jobTitle": "Software Engineer", + "industry": "Automotive", + "cities": ["Santa Ana", "Reno", "Fresno"], + "_id": { + "$oid": "6674c30595590f9fd94593e3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Mavis Tire", + "name": "Peter Kennedy", + "email": "Ptkennedy9@gmail.com", + "linkedIn": "https://www.linkedin.com/peter-kennedy", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Full Stack Software Engineer", + "industry": "Automotive", + "cities": ["San Francisco"], + "_id": { + "$oid": "6674c30595590f9fd94593e4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Mavis Tires", + "name": "Jessica Davila", + "email": "jdav92@gmail.com", + "linkedIn": "https://www.linkedin.com/feed/", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Automotive", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593e5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Maya Health", + "name": "Danny Byrne", + "email": "danny.byrne.dev@gmail.com", + "linkedIn": "https://www.linkedin.com/in/danny-byrne-la/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Front End Engineer", + "industry": "Psychedelic Health", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593e6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Maze", + "name": "Henry Black", + "email": "blackhaj@gmail.com", + "linkedIn": "https://www.linkedin.com/in/henryblack1/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Full Stack Engineer", + "industry": "Design", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593e7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "McGraw Hill", + "name": "Kristin Green", + "email": "kngreen@umich.edu", + "linkedIn": "https://www.linkedin.com/in/kristin-green-101902a4/", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593e8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Mcgraw Hill", + "name": "Richard Guo", + "email": "richardguo11@gmail.com", + "linkedIn": "https://www.linkedin.com/in/richardyguo/", + "campus": "LA / WCRI", + "cohort": "46", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Los Angeles", "Portland"], + "_id": { + "$oid": "6674c30595590f9fd94593e9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "McGraw-Hill Education", + "name": "Victor Wang", + "email": "vwang4536@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vwang4536", + "campus": "LA", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Consulting and technology services", + "cities": ["Columbus", "Anchorage", "Tucson"], + "_id": { + "$oid": "6674c30595590f9fd94593ea" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "McKinsey & Company", + "name": "Em Podhorcer", + "email": "epithe@gmail.com", + "linkedIn": "https://www.linkedin.com/feed/", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Engineer I", + "industry": "Consulting", + "cities": ["Lexington"], + "_id": { + "$oid": "6674c30595590f9fd94593eb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "McKinsey & Company", + "name": "Matthew Yeon", + "email": "yeon34387@gmail.com", + "linkedIn": "https://www.linkedin.com/in/matthew-yeon/", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Software Engineer", + "industry": "Consulting", + "cities": ["Denver", "Stockton", "Lubbock"], + "_id": { + "$oid": "6674c30595590f9fd94593ec" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "MDCalc", + "name": "Jonah Wilkof", + "email": "wilkof.jonah@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonahwilkof/", + "campus": "NYC", + "cohort": "7", + "jobTitle": "Software Engineer", + "industry": "Fintech, Payment Processing", + "cities": ["Irving"], + "_id": { + "$oid": "6674c30595590f9fd94593ed" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Medal.tv", + "name": "Joseph Heinz", + "email": "joeheinz99@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joseph-heinz1/", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Full Stack Engineer", + "industry": "Gaming", + "cities": ["Oakland", "Toledo"], + "_id": { + "$oid": "6674c30595590f9fd94593ee" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "MediaMonks NYC", + "name": "Case Simmons", + "email": "casesimmons@pm.me", + "linkedIn": "https://www.linkedin.com/mwlite/in/case-simmons", + "campus": "LA", + "cohort": "38", + "jobTitle": "Creative Technologist", + "industry": "Digital Production", + "cities": ["Tokyo", "Oakland", "Chesapeake"], + "_id": { + "$oid": "6674c30595590f9fd94593ef" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.066Z" + }, + "__v": 0 + }, + { + "company": "Mediaocean", + "name": "Parker Keller", + "email": "parkerkeller@gmail.com", + "linkedIn": "https://www.linkedin.com/in/parkerkeller/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Senior Software Engineer", + "industry": "Advertising & Marketing", + "cities": ["Phoenix", "Beijing"], + "_id": { + "$oid": "6674c30595590f9fd94593f0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Medical Informatics Engineering", + "name": "Keifer Alan Beck", + "email": "keiferbeck@gmail.com", + "linkedIn": "https://www.linkedin.com/in/k-alan-beck", + "campus": "FTRI / CTRI", + "cohort": "16", + "jobTitle": "Fullstack Developer", + "industry": "Healthtech/Healthcare", + "cities": ["Chandler", "Tulsa", "Los Angeles"], + "_id": { + "$oid": "6674c30595590f9fd94593f1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Medidata", + "name": "Wontae Han", + "email": "wontaeh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/wontaeh/", + "campus": "NYC", + "cohort": "4", + "jobTitle": "Frontend Engineer", + "industry": "", + "cities": ["Detroit", "New York"], + "_id": { + "$oid": "6674c30595590f9fd94593f2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Medium", + "name": "Keiran Carpen", + "email": "keirancarpen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/keirancarpen/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Senior Full Stack Engineer, Trust & Safety", + "industry": "Online publishing platform", + "cities": ["Tampa"], + "_id": { + "$oid": "6674c30595590f9fd94593f3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Medly Pharmacy", + "name": "Austin Ruby", + "email": "austinjruby@gmail.com", + "linkedIn": "https://www.linkedin.com/in/austinjruby/", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Software Engineer I", + "industry": "Healthcare", + "cities": ["Buffalo", "Henderson"], + "_id": { + "$oid": "6674c30595590f9fd94593f4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "MedMen", + "name": "Brendan Morrell", + "email": "brendanmorrell@gmail.com", + "linkedIn": "https://linkedin.com/in/brendanmorrell", + "campus": "LA", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Portland", "Columbus"], + "_id": { + "$oid": "6674c30595590f9fd94593f5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Meltwater", + "name": "Richard Lam", + "email": "rlam108994@gmail.com", + "linkedIn": "https://www.linkedin.com/in/richardlam108/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "Digital Media Intelligence", + "cities": ["Corpus Christi", "Minneapolis"], + "_id": { + "$oid": "6674c30595590f9fd94593f6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "MeltWater", + "name": "Sebastian Damazo", + "email": "sebastiandamazo1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ernesto-sebastian-damazo", + "campus": "LA", + "cohort": "42", + "jobTitle": "Backend software engineer level 2", + "industry": "Software as a Service", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593f7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Memorial Sloan Kettering", + "name": "David Zhang", + "email": "davidzhang8828@gmail.com", + "linkedIn": "https://www.linkedin.com/in/davdjz/", + "campus": "NYC", + "cohort": "17", + "jobTitle": "Advanced Software Developer", + "industry": "Healthcare", + "cities": ["Miami"], + "_id": { + "$oid": "6674c30595590f9fd94593f8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Memorial Sloan Kettering", + "name": "Phillip Yoo", + "email": "phillipyoo.218@gmail.com", + "linkedIn": "https://www.linkedin.com/in/phillipyoo218/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Bioinformatics Software Engineer I", + "industry": "Healthcare", + "cities": ["Phoenix"], + "_id": { + "$oid": "6674c30595590f9fd94593f9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Memorial Sloan Kettering Cancer Center", + "name": "Raymond Kwan", + "email": "kwanvm@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rkwn/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Frontend Software Engineer", + "industry": "Health", + "cities": ["Indianapolis", "Irvine"], + "_id": { + "$oid": "6674c30595590f9fd94593fa" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Memorial Sloan Kettering Cancer Center", + "name": "Natsuki Wada", + "email": "wachka06@gmail.com", + "linkedIn": "https://www.linkedin.com/in/natsukiwada/", + "campus": "FTRI", + "cohort": "3", + "jobTitle": "Software Engineer II", + "industry": "Healthcare", + "cities": ["Plano"], + "_id": { + "$oid": "6674c30595590f9fd94593fb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Mento", + "name": "James Highsmith", + "email": "me@jameshighsmith.com", + "linkedIn": "https://www.linkedin.com/in/jameshighsmith/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Lead Fullstack Engineer", + "industry": "HR", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94593fc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Mentorcam", + "name": "Stephen Rivas", + "email": "Stephen.Anthony.rivas@gmail.com", + "linkedIn": "https://linkedin.com/in/stephenscript", + "campus": "NYOI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Memphis"], + "_id": { + "$oid": "6674c30595590f9fd94593fd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Mentra", + "name": "Mathew Hultquist", + "email": "mathew.j.hultquist@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mjhult/", + "campus": "PTRI", + "cohort": "9", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Software / Tech", + "cities": ["Santa Ana", "Kansas City"], + "_id": { + "$oid": "6674c30595590f9fd94593fe" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Merck", + "name": "Jin Yoo", + "email": "iyoojin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/iyoojin/", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Phoenix"], + "_id": { + "$oid": "6674c30595590f9fd94593ff" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Meredith", + "name": "Kai Evans", + "email": "kaijosefevans@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonathan-jim-ramirez/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer", + "industry": "Media Agency", + "cities": ["London", "Mumbai", "Seattle"], + "_id": { + "$oid": "6674c30595590f9fd9459400" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Mess", + "name": "Anne-lise Emig", + "email": "anneliseemig@gmail.com", + "linkedIn": "linkedin.com/in/anneliseemig", + "campus": "FTRI / CTRI", + "cohort": "15", + "jobTitle": "Junior Web Developer", + "industry": "Marketing", + "cities": ["Las Vegas", "Phoenix", "New Orleans"], + "_id": { + "$oid": "6674c30595590f9fd9459401" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Meta", + "name": "Carlos Lovera", + "email": "Calovera@bu.edu", + "linkedIn": "", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Partner Engineer", + "industry": "Fintech", + "cities": ["Mesa"], + "_id": { + "$oid": "6674c30595590f9fd9459402" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Meta", + "name": "Jonathan Jim Ramirez", + "email": "jramirezor.91@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonathan-jim-ramirez/", + "campus": "PTRI", + "cohort": "0", + "jobTitle": "Data Engineer", + "industry": "Social Media + VR", + "cities": ["Santa Ana", "Newark", "Irving"], + "_id": { + "$oid": "6674c30595590f9fd9459403" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Meta", + "name": "Karandeep Ahluwalia", + "email": "karandeepahluwalia@gmail.com", + "linkedIn": "https://www.linkedin.com/in/karandeepahluwalia97/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Software Engineer", + "industry": "Technology", + "cities": ["London", "Oakland", "Bakersfield"], + "_id": { + "$oid": "6674c30595590f9fd9459404" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Meta", + "name": "Tom Herrmann", + "email": "Tomherrmannd@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thomasherrmann1/", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Software engineer - E4", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459405" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Metecs", + "name": "Justin Lee Kirk", + "email": "justinleekirk@gmail.com", + "linkedIn": "https://www.linkedin.com/in/justinleekirk/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Software Engineer", + "industry": "Research", + "cities": ["Sacramento"], + "_id": { + "$oid": "6674c30595590f9fd9459406" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Metric5", + "name": "Alex Kang", + "email": "akang0408@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alex-kang/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Software Engineer", + "industry": "Information Technology & Services", + "cities": ["Arlington"], + "_id": { + "$oid": "6674c30595590f9fd9459407" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Metrolina Greenhouses", + "name": "Stefan Jordan", + "email": "sjordan2010@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stefan-w-jordan", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Frontend Software Engineer", + "industry": "Agriculture Science", + "cities": ["Las Vegas", "Atlanta", "Oakland"], + "_id": { + "$oid": "6674c30595590f9fd9459408" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Alonso Garza", + "email": "alonsogarza6@gmail.com", + "linkedIn": "https://www.linkedin.com/in/e-alonso-garza/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer II", + "industry": "Software", + "cities": ["Milwaukee", "Plano", "Toledo"], + "_id": { + "$oid": "6674c30595590f9fd9459409" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Bernie Green", + "email": "bgreen280@gmail.com", + "linkedIn": "https://www.linkedin.com/in/berniegreen/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Riverside", "Chula Vista", "Gilbert"], + "_id": { + "$oid": "6674c30595590f9fd945940a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Brad Morgan", + "email": "bkmorgan3@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bkmorgan3/", + "campus": "LA", + "cohort": "31", + "jobTitle": "UI Engineer", + "industry": "Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945940b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Brandi Richardson", + "email": "brandi.jrichardson@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brandi-richardson-28295158/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Software Engineer ll", + "industry": "Computer Software", + "cities": ["Mumbai", "North Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd945940c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Brian Hong", + "email": "brianhhong96@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brianhhong", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer", + "industry": "Cloud", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945940d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Georgina Carr", + "email": "carre.georgina@gmail.com", + "linkedIn": "https://www.linkedin.com/in/georginacarr/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Software Engineer, Contract", + "industry": "tech", + "cities": ["Raleigh", "Los Angeles", "Atlanta"], + "_id": { + "$oid": "6674c30595590f9fd945940e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Andrew Dunne", + "email": "Drewdunne88@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andrew-dunne-7620bb84", + "campus": "LA / WCRI", + "cohort": "53", + "jobTitle": "Senior Automation Engineer", + "industry": "Gaming", + "cities": ["Berlin", "Memphis"], + "_id": { + "$oid": "6674c30595590f9fd945940f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Griffin Roger Mccartney Silver", + "email": "griffinrogersilver@gmail.com", + "linkedIn": "https://www.linkedin.com/in/griffin-silver/", + "campus": "LA / WCRI", + "cohort": "43", + "jobTitle": "Cloud Support Engineer", + "industry": "IT Services", + "cities": ["Irving"], + "_id": { + "$oid": "6674c30595590f9fd9459410" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Rella Cruz", + "email": "rellas.email@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rella/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Software Engineer Apprentice (LEAP Program)", + "industry": "Computer Technology", + "cities": ["Norfolk"], + "_id": { + "$oid": "6674c30595590f9fd9459411" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Silvia Kemp Miranda", + "email": "silvia.kemp@gmail.com", + "linkedIn": "https://www.linkedin.com/in/silviakmiranda/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Technical Program Manager", + "industry": "Technology", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459412" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Timothy Jung", + "email": "timjj92@gmail.com", + "linkedIn": "www.linkedin.com/in/timjj92", + "campus": "LA", + "cohort": "32", + "jobTitle": "Software Development Engineer", + "industry": "Cloud computing", + "cities": ["Fort Worth", "Fresno"], + "_id": { + "$oid": "6674c30595590f9fd9459413" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "Tjolanda \"Sully\" Sullivan", + "email": "tjolanda.sullivan@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tjolanda-sullivan/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer", + "industry": "Cloud Storage", + "cities": ["Tucson", "Long Beach"], + "_id": { + "$oid": "6674c30595590f9fd9459414" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Microsoft", + "name": "William kencel", + "email": "Wkencel1@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "40", + "jobTitle": "React/react native/full stack engineer", + "industry": "Device payment system", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459415" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Microsoft Leap Apprenticeship Program (via Aerotek)", + "name": "Roseanne Damasco", + "email": "rosedamasco@gmail.com", + "linkedIn": "https://www.linkedin.com/in/roseannedamasco/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer", + "industry": "Computer Software", + "cities": ["Garland", "Arlington"], + "_id": { + "$oid": "6674c30595590f9fd9459416" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Mighty", + "name": "Jakob Kousholt", + "email": "jakobjk@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jakobjk/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Software Engineer", + "industry": "Consumer Services", + "cities": ["Fort Worth", "Chesapeake"], + "_id": { + "$oid": "6674c30595590f9fd9459417" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "MightyHive", + "name": "Alyso Swerdloff", + "email": "alysonswerdloff@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alyson-swerdloff/", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Technical Solutions Engineer", + "industry": "Insurance/ cybersecurity", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459418" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Mimecast", + "name": "Tim Ruszala", + "email": "truszala@gmail.com", + "linkedIn": "https://www.linkedin.com/in/timruszala/", + "campus": "NYC", + "cohort": "32", + "jobTitle": "Senior Software Engineer", + "industry": "Security", + "cities": ["Los Angeles", "New York", "Columbus"], + "_id": { + "$oid": "6674c30595590f9fd9459419" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "MindBody", + "name": "Charlie Malave", + "email": "malavecharles@gmail.com", + "linkedIn": "https://www.linkedin.com/in/charlesmalave/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "Fitness Tech", + "cities": ["Austin", "Anaheim", "Jacksonville"], + "_id": { + "$oid": "6674c30595590f9fd945941a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Mindbody ClassPass", + "name": "Christina Son", + "email": "christinason17@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christinason17/", + "campus": "FTRI / CTRI", + "cohort": "7", + "jobTitle": "Software Engineer I", + "industry": "Fitness/Wellness", + "cities": ["Orlando"], + "_id": { + "$oid": "6674c30595590f9fd945941b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "MindCloud", + "name": "Emily Chu", + "email": "lin.emily.chu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lin-chu/", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Junior Software Engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945941c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Mindstrong", + "name": "Chon Hou Ho", + "email": "chonhouh@gmail.com", + "linkedIn": "https://www.linkedin.com/mwlite/in/chon-hou-ho", + "campus": "FTRI", + "cohort": "6", + "jobTitle": "Software Engineer I, Full Stack", + "industry": "Healthcare", + "cities": ["Long Beach", "Durham", "Nashville"], + "_id": { + "$oid": "6674c30595590f9fd945941d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Mirror.xyz", + "name": "Nathaniel Grossman", + "email": "nathanielbensongrossman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nathanielgrossman/", + "campus": "LA", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "Education", + "cities": ["Madison"], + "_id": { + "$oid": "6674c30595590f9fd945941e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Mission Lane", + "name": "Ali Elhawary", + "email": "Alielhawary123@gmail.com", + "linkedIn": "", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945941f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Mission Lane", + "name": "Esther Cho", + "email": "xesthercho@gmail.com", + "linkedIn": "https://www.linkedin.com/in/esther-cho/", + "campus": "LA", + "cohort": "49", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Orlando", "Fort Worth"], + "_id": { + "$oid": "6674c30595590f9fd9459420" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Mitchell Martin", + "name": "Jonathan Barenboim", + "email": "Jonathan.Barenboim@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonathan-barenboim/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Raleigh"], + "_id": { + "$oid": "6674c30595590f9fd9459421" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "MJH Life Sciences", + "name": "Arthur Sato", + "email": "swatto12@gmail.com", + "linkedIn": "https://www.linkedin.com/in/arthursato", + "campus": "NYC", + "cohort": "25", + "jobTitle": "React Developer", + "industry": "Health Care Media", + "cities": ["Orlando", "Kansas City", "Tokyo"], + "_id": { + "$oid": "6674c30595590f9fd9459422" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "MKTG", + "name": "Garrett Lee", + "email": "geewai.lee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/geewailee/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Senior Software Developer", + "industry": "Marketing", + "cities": ["Cincinnati", "Chicago"], + "_id": { + "$oid": "6674c30595590f9fd9459423" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "MNTN", + "name": "Chris Franz", + "email": "chrisfranz@mac.com", + "linkedIn": "https://www.linkedin.com/in/chris--franz/", + "campus": "LA", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Advertising", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459424" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "MNTN", + "name": "Timothy Kachler", + "email": "kachler@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tkachler", + "campus": "LA", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Advertising", + "cities": ["Chicago", "Anaheim", "Lubbock"], + "_id": { + "$oid": "6674c30595590f9fd9459425" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "MNTN", + "name": "Bryan Trang", + "email": "bryanltrang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bryanltrang/", + "campus": "LA / WCRI", + "cohort": "58", + "jobTitle": "Fullstack Software Engineer", + "industry": "Other", + "cities": ["Irvine", "Nashville", "Charlotte"], + "_id": { + "$oid": "6674c30595590f9fd9459426" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Moment House", + "name": "Hoon Choi", + "email": "vhchoi@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "10", + "jobTitle": "Sr. Software eng", + "industry": "Entertainment", + "cities": ["Mesa"], + "_id": { + "$oid": "6674c30595590f9fd9459427" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "MongoDB", + "name": "Cris Newsome", + "email": "crisnewsome@outlook.com", + "linkedIn": "https://linkedin.com/in/crisnewsome", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer II", + "industry": "Tech?", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459428" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Monument", + "name": "Midori Yang", + "email": "midoki.yang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/midori-yang/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "", + "industry": "Healthcare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459429" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Moody's Analytics", + "name": "Alan Ye", + "email": "alye13@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alan-ye-008/", + "campus": "PTRI", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945942a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Moody's Analytics", + "name": "Cara Dibdin", + "email": "cdibdin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cara-dibdin/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Senior Software Engineer", + "industry": "Finance", + "cities": ["Oakland"], + "_id": { + "$oid": "6674c30595590f9fd945942b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Morgan Stanley", + "name": "Jackie Lin", + "email": "jackie.lin128@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jackielin12/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Developer", + "industry": "Finance", + "cities": ["Tucson"], + "_id": { + "$oid": "6674c30595590f9fd945942c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Morning Consult", + "name": "Lucas Lima Taffo", + "email": "lucas.taffo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lucastaffo/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Software Engineer II", + "industry": "Decision Intelligence", + "cities": ["Toledo", "Raleigh", "Indianapolis"], + "_id": { + "$oid": "6674c30595590f9fd945942d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Mothership", + "name": "Carlos Perez", + "email": "crperez@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cpereztoro/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Freight", + "cities": ["Corpus Christi", "Los Angeles", "Riverside"], + "_id": { + "$oid": "6674c30595590f9fd945942e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Motion Intelligence", + "name": "Russell F Hayward", + "email": "russdawg44@gmail.com", + "linkedIn": "https://www.linkedin.com/in/russell-hayward/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Cloud Developer", + "industry": "Automotive", + "cities": ["Glendale", "Garland"], + "_id": { + "$oid": "6674c30595590f9fd945942f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "mPulse Mobile", + "name": "Devon Vaccarino", + "email": "devonev92@gmail.com", + "linkedIn": "https://www.linkedin.com/in/devon-vaccarino/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Mid Software Engineer", + "industry": "Health Communications", + "cities": ["Plano"], + "_id": { + "$oid": "6674c30595590f9fd9459430" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "MRI-Simmons", + "name": "Dan Lin", + "email": "dannlin91@gmail.com", + "linkedIn": "https://www.linkedin.com/in/danlin91/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "UI Developer", + "industry": "Data Consumer", + "cities": ["Bakersfield", "Buffalo", "Paris"], + "_id": { + "$oid": "6674c30595590f9fd9459431" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "MUFG", + "name": "Parker Hutcheson", + "email": "pdhutcheson@gmail.com", + "linkedIn": "https://www.linkedin.com/in/parkerhutcheson/", + "campus": "FTRI / CTRI", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Paris", "Detroit", "Plano"], + "_id": { + "$oid": "6674c30595590f9fd9459432" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Mulberry Technology", + "name": "Mia Kang", + "email": "fakeEmail3@fakeEmail.com", + "linkedIn": "https://www.linkedin.com/in/mia-kang/", + "campus": "PTRI", + "cohort": "5", + "jobTitle": "Associate Engineer", + "industry": "Fintech", + "cities": ["Houston", "Chicago"], + "_id": { + "$oid": "6674c30595590f9fd9459433" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Multi Media, LLC", + "name": "Cameron Fitz", + "email": "hellocameronfitz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cameron-lee-fitz/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Product Manager, Growth", + "industry": "Entertainment", + "cities": ["Corpus Christi", "Scottsdale", "Albuquerque"], + "_id": { + "$oid": "6674c30595590f9fd9459434" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Munera", + "name": "Yuehao Wong", + "email": "yuehaowong@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yuehaowong/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Full Stack Developer", + "industry": "Other", + "cities": ["Irvine", "Beijing"], + "_id": { + "$oid": "6674c30595590f9fd9459435" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Musee Archives", + "name": "Walter David DeVault", + "email": "wdd4services@outlook.com", + "linkedIn": "https://www.linkedin.com/in/walter-devault", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Full-Stack Software Engineer", + "industry": "Media", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459436" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "MX", + "name": "Harlan Evans", + "email": "harlanevans5@gmail.com", + "linkedIn": "https://www.linkedin.com/mwlite/in/harlan-evans", + "campus": "LA", + "cohort": "40", + "jobTitle": "Front end Software engineer (mid-sr)", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459437" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "MX", + "name": "Mike Coker", + "email": "mbcoker100@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mike-coker/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Backend JavaScript Engineer", + "industry": "Fintech", + "cities": ["Winston-Salem", "Oklahoma City", "St. Petersburg"], + "_id": { + "$oid": "6674c30595590f9fd9459438" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Naked Development", + "name": "Cayla Co", + "email": "caylasco@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cayla-co/", + "campus": "FTRI", + "cohort": "6", + "jobTitle": "Senior Full Stack Developer", + "industry": "Digital Advertising", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459439" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Namely", + "name": "Yujin kang", + "email": "ykang7858@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "SaaS / HR startup", + "cities": ["Long Beach"], + "_id": { + "$oid": "6674c30595590f9fd945943a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Narmi", + "name": "Derek Lam", + "email": "derekquoc@gmail.com", + "linkedIn": "https://www.linkedin.com/in/derekqlam/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Solutions Engineer", + "industry": "Fintech", + "cities": ["Nashville", "Chandler", "Mumbai"], + "_id": { + "$oid": "6674c30595590f9fd945943b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Narrativ", + "name": "Lisa Han", + "email": "jjlisahan@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lisajjhan/", + "campus": "NYC", + "cohort": "17", + "jobTitle": "Software Engineer", + "industry": "E-commerce", + "cities": ["Indianapolis"], + "_id": { + "$oid": "6674c30595590f9fd945943c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "National Grid", + "name": "Edward Deng", + "email": "edeng4237@gmail.com", + "linkedIn": "https://www.linkedin.com/in/edwarddeng-/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "Utilities", + "cities": ["Norfolk", "Orlando", "Corpus Christi"], + "_id": { + "$oid": "6674c30595590f9fd945943d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Navitus", + "name": "Young Kim", + "email": "young.kim770@gmail.com", + "linkedIn": "https://www.linkedin.com/in/young-j-kim", + "campus": "FTRI / CTRI", + "cohort": "12", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Glendale", "Washington"], + "_id": { + "$oid": "6674c30595590f9fd945943e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "NBA", + "name": "Cecily Jansen", + "email": "cecilyjansen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cecily-j/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Associate Front-End Engineer", + "industry": "Sports & Entertainment Media", + "cities": ["Beijing"], + "_id": { + "$oid": "6674c30595590f9fd945943f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "NBCUniversal", + "name": "Sam Arnold", + "email": "sam.arnold72@gmail.com", + "linkedIn": "https://www.linkedin.com/in/samarnold723/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Software Engineer II", + "industry": "Entertainment", + "cities": ["Detroit", "Irvine", "Sacramento"], + "_id": { + "$oid": "6674c30595590f9fd9459440" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "NBCUniversal Media", + "name": "Jimmy Phong", + "email": "jayacados@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jphongmph/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Senior Software Engineer", + "industry": "Media and Entertainment", + "cities": ["Lexington"], + "_id": { + "$oid": "6674c30595590f9fd9459441" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "NCR", + "name": "Bryan Chau", + "email": "chaubryan@hotmail.com", + "linkedIn": "https://www.linkedin.com/in/chaubryan1", + "campus": "LA / WCRI", + "cohort": "47", + "jobTitle": "SW Engineer III", + "industry": "IT Services", + "cities": ["Beijing", "Corpus Christi", "Aurora"], + "_id": { + "$oid": "6674c30595590f9fd9459442" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "NEC", + "name": "Stacey Lee", + "email": "staceyjlee18@gmail.com", + "linkedIn": "https://www.linkedin.com/in/staceyjhlee/", + "campus": "FTRI / CTRI", + "cohort": "16", + "jobTitle": "Full Stack Engineer", + "industry": "Business Tech/Enterprise Tech", + "cities": ["Long Beach", "Cleveland", "Aurora"], + "_id": { + "$oid": "6674c30595590f9fd9459443" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Neiro AI", + "name": "Daria Mordvinov", + "email": "daria.mordvinov@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dariamordvinov/", + "campus": "NYOI", + "cohort": "1", + "jobTitle": "Frontend Engineer", + "industry": "Artificial Intelligence", + "cities": ["North Las Vegas", "Berlin", "Winston-Salem"], + "_id": { + "$oid": "6674c30595590f9fd9459444" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Nelnet", + "name": "Zach Brucker", + "email": "zach.brucker@gmail.com", + "linkedIn": "https://www.linkedin.com/in/zachbrucker/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Full-Stack Developer", + "industry": "Fintech", + "cities": ["Memphis", "Gilbert"], + "_id": { + "$oid": "6674c30595590f9fd9459445" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Neo.Tax", + "name": "Lindsay Baird", + "email": "lindsay.a.baird@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lindsaybaird/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Full-Stack Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459446" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Neo.tax", + "name": "Miguel Hernandez", + "email": "miguelh72@outlook.com", + "linkedIn": "https://www.linkedin.com/in/miguelh72/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Senior Full-Stack Software Engineer", + "industry": "Fintech", + "cities": ["Boston", "San Francisco", "San Antonio"], + "_id": { + "$oid": "6674c30595590f9fd9459447" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Nespresso", + "name": "Raymond Huang", + "email": "raymond.huang1011@gmail.com", + "linkedIn": "https://www.linkedin.com/in/raymondhuang95/", + "campus": "NYC / ECRI", + "cohort": "31", + "jobTitle": "Associate Front-End Developer", + "industry": "Other", + "cities": ["Winston-Salem", "Irvine", "Los Angeles"], + "_id": { + "$oid": "6674c30595590f9fd9459448" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Netflix", + "name": "Josie Glore", + "email": "Josieglore@gmail.com", + "linkedIn": "https://www.linkedin.com/in/josie-glore/", + "campus": "LA", + "cohort": "25", + "jobTitle": "Technologist", + "industry": "Fashion", + "cities": ["Sydney", "Pittsburgh", "Raleigh"], + "_id": { + "$oid": "6674c30595590f9fd9459449" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Netflix", + "name": "Sagar Velagala", + "email": "sagar.velagala@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sagarvelagala/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Sr. Analytics Engineer", + "industry": "Software / Tech", + "cities": ["Oakland"], + "_id": { + "$oid": "6674c30595590f9fd945944a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Netflix", + "name": "Victoria Adnet", + "email": "victoria.adnet@gmail.com", + "linkedIn": "https://www.linkedin.com/in/victoria-lellis/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Technologist", + "industry": "Entertainment", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945944b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Netskope", + "name": "Mariya Eyges", + "email": "mariya.sf@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mariya-eyges-8511131/", + "campus": "PTRI", + "cohort": "Beta", + "jobTitle": "Software Engineer", + "industry": "Security Cloud", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945944c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Neulion", + "name": "Myles Green", + "email": "mylescorygreen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/myles-c-green/", + "campus": "NYC", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Kansas City", "Madison", "Cleveland"], + "_id": { + "$oid": "6674c30595590f9fd945944d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "New York Institute of Technology College of Osteopathic Medicine", + "name": "Justin Ribarich", + "email": "jribarich98@gmail.com", + "linkedIn": "https://www.linkedin.com/in/justin-ribarich", + "campus": "NYOI", + "cohort": "2", + "jobTitle": "Full Stack Developer", + "industry": "Education/Edtech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945944e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Newsela", + "name": "Anthony Terruso", + "email": "aterruso@gmail.com", + "linkedIn": "https://www.linkedin.com/in/anthony-w-terruso/", + "campus": "NYC", + "cohort": "7", + "jobTitle": "Senior Web Application Developer", + "industry": "", + "cities": ["Sรฃo Paulo", "Omaha", "San Diego"], + "_id": { + "$oid": "6674c30595590f9fd945944f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Nexient", + "name": "James Kolotouros", + "email": "dkolotouros1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jameskolotouros", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Software Developer II", + "industry": "Tech", + "cities": ["Sacramento", "Sydney"], + "_id": { + "$oid": "6674c30595590f9fd9459450" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Nexient", + "name": "Gaber Mowiena", + "email": "gaber.abouelsoud@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gabermowiena/", + "campus": "NYC", + "cohort": "9", + "jobTitle": "Frontend Developer", + "industry": "Tech products", + "cities": ["Chula Vista", "Riverside", "Oklahoma City"], + "_id": { + "$oid": "6674c30595590f9fd9459451" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Nexstar Media Group", + "name": "Beckett Hanan", + "email": "beckett.hanan@gmail.com", + "linkedIn": "https://www.linkedin.com/in/becketthanan/", + "campus": "PTRI", + "cohort": "Beta", + "jobTitle": "Front End Software Engineer", + "industry": "Media", + "cities": ["Detroit"], + "_id": { + "$oid": "6674c30595590f9fd9459452" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "NextGen Healthcare", + "name": "Samuel Tran", + "email": "samwell.tran@gmail.com", + "linkedIn": "https://www.linkedin.com/in/samuel-tran-836448231/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Software Engineer II", + "industry": "Healthcare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459453" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "NextME", + "name": "Linh Tran", + "email": "linhtanl51@gmail.com", + "linkedIn": "https://www.linkedin.com/in/linhatran", + "campus": "LA", + "cohort": "40", + "jobTitle": "Senior Software Engineer", + "industry": "Management", + "cities": ["San Diego", "North Las Vegas", "Scottsdale"], + "_id": { + "$oid": "6674c30595590f9fd9459454" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "NFL", + "name": "Michael Blanchard", + "email": "michael.james.blanchard@gmail.com", + "linkedIn": "https://www.linkedin.com/in/miblanchard12/", + "campus": "LA", + "cohort": "7", + "jobTitle": "Director of Engineering - Platform", + "industry": "Media / Sports", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459455" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Niantic", + "name": "Oliver Zhang", + "email": "zezang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/oliver-zhang91", + "campus": "PTRI", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Greensboro"], + "_id": { + "$oid": "6674c30595590f9fd9459456" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Nielsen", + "name": "Alexander Tu", + "email": "alexandertu95@gmail.com", + "linkedIn": "https://www.linkedin.com/in/atu816", + "campus": "FTRI / CTRI", + "cohort": "12", + "jobTitle": "Senior Software Engineer", + "industry": "Business Analytics", + "cities": ["Atlanta", "Milwaukee"], + "_id": { + "$oid": "6674c30595590f9fd9459457" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Nielsen", + "name": "Diana Kim", + "email": "ruslanovna.kim@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ruslanovna/", + "campus": "NYC / ECRI", + "cohort": "31", + "jobTitle": "Software Engineer II", + "industry": "Business Analytics", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459458" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Nielsen Sports", + "name": "Karina Illesova", + "email": "karin.illesova@gmail.com", + "linkedIn": "https://www.linkedin.com/in/karin-illesova/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Sr Software Engineer", + "industry": "Information Technology & Services", + "cities": ["Houston", "Fort Wayne"], + "_id": { + "$oid": "6674c30595590f9fd9459459" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Nike", + "name": "adrian Sun", + "email": "Adriansun2@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adrian-sun", + "campus": "LA", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Travel", + "cities": ["Cincinnati", "Gilbert"], + "_id": { + "$oid": "6674c30595590f9fd945945a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Nimble", + "name": "Zachary Daniels", + "email": "Zackdanielsnyc@gmail.com", + "linkedIn": "LinkedIn.com/in/zackdanielsnyc", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Beijing", "Austin"], + "_id": { + "$oid": "6674c30595590f9fd945945b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Nobel.AI", + "name": "Kate Chanthakaew", + "email": "kubkate@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kate-chanthakaew/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Full Stack Engineer", + "industry": "Scientist R&D", + "cities": ["Mexico City"], + "_id": { + "$oid": "6674c30595590f9fd945945c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Noblr Insurance", + "name": "Brian Taylor", + "email": "brian.taylor818@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brianwtaylor/", + "campus": "LA", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "Health", + "cities": ["Chesapeake", "Phoenix", "Irvine"], + "_id": { + "$oid": "6674c30595590f9fd945945d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.067Z" + }, + "__v": 0 + }, + { + "company": "Nomad Health", + "name": "Julia Bakerink", + "email": "juliabakerink@gmail.com", + "linkedIn": "https://www.linkedin.com/in/juliabakerink/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Fullstack Software Engineer", + "industry": "Healthcare", + "cities": ["Mesa", "New York"], + "_id": { + "$oid": "6674c30595590f9fd945945e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Nomad Health", + "name": "Neftali Dominguez", + "email": "n.l.dominguez23@gmail.com", + "linkedIn": "https://www.linkedin.com/in/neftalildominguez/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Senior Software Engineer", + "industry": "Health", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945945f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Nordstrom", + "name": "Vicki Lee", + "email": "leevicki01@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vlee022/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer", + "industry": "E-Commerce / Fashion", + "cities": ["Reno", "Mumbai", "Norfolk"], + "_id": { + "$oid": "6674c30595590f9fd9459460" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Nordstrom", + "name": "Sohee Lee", + "email": "soheelee1985@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sohee419/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Engineer 2", + "industry": "Fintech", + "cities": ["Stockton"], + "_id": { + "$oid": "6674c30595590f9fd9459461" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Nordstrom Rack | HauteLook", + "name": "Robb Eastman", + "email": "ereastman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/robbeastman/", + "campus": "LA", + "cohort": "31", + "jobTitle": "Software Engineer I, Web", + "industry": "Fashion", + "cities": ["Laredo"], + "_id": { + "$oid": "6674c30595590f9fd9459462" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Noria Water Technologies", + "name": "Umair Shafiq", + "email": "umairshafiqprof@gmail.com", + "linkedIn": "https://www.linkedin.com/in/umair-w-shafiq/", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Associate Developer", + "industry": "Other", + "cities": ["Mumbai"], + "_id": { + "$oid": "6674c30595590f9fd9459463" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "North American Bancard", + "name": "Edward Chow", + "email": "Pdphybrid@gmail.com", + "linkedIn": "https://www.linkedin.com/in/edkchow/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Full Stack Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459464" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Northflank", + "name": "Emma Genesen", + "email": "genesen.emma@gmail.com", + "linkedIn": "https://www.linkedin.com/in/emma-genesen/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Head of Developer Marketing", + "industry": "Cloud Services", + "cities": ["Chandler", "San Antonio"], + "_id": { + "$oid": "6674c30595590f9fd9459465" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Northrop Grumman", + "name": "David Lopez", + "email": "d7lopez@gmail.com", + "linkedIn": "https://www.linkedin.com/in/david-michael-lopez/", + "campus": "NYC / ECRI", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Aerospace", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459466" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Northrop Grumman", + "name": "Michael Way", + "email": "mjway01@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michaeljway/", + "campus": "PTRI", + "cohort": "10", + "jobTitle": "Cognitive Software Engineer", + "industry": "Aerospace", + "cities": ["Glendale", "Riverside", "Madison"], + "_id": { + "$oid": "6674c30595590f9fd9459467" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Northspyre", + "name": "Vaughn Sulit", + "email": "bvaughnsulit@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bvaughnsulit/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Full Stack Engineer", + "industry": "Real Estate", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459468" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Northwestern Mutual", + "name": "Hussein Hamade", + "email": "hamade.hussein00@gmail.com", + "linkedIn": "https://www.linkedin.com/in/husseinhamade1/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Software Engineer (P2 - Midlevel)", + "industry": "Fintech", + "cities": ["Scottsdale", "Jersey City"], + "_id": { + "$oid": "6674c30595590f9fd9459469" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Northwestern Mutual", + "name": "Jake Policano", + "email": "jdpolicano@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jacob-policano/", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["Houston", "Fort Wayne", "London"], + "_id": { + "$oid": "6674c30595590f9fd945946a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Northwestern Mutual", + "name": "Max Lee", + "email": "maxolee23@gmail.com", + "linkedIn": "https://www.linkedin.com/in/max-lee1", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Full Stack Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945946b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Northwestern Mutual", + "name": "Vince Nguyen", + "email": "vince.g.nguyen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vince-nguyen/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Full Stack Software Engineer", + "industry": "Fintech/Insurance", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945946c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Northwestern Mutual", + "name": "Warren Harrison Tait", + "email": "warrenhtait@gmail.com", + "linkedIn": "https://www.linkedin.com/in/warrenhtait/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Full Stack Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945946d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Not currently employed in tech/as a dev", + "name": "Evan Deam", + "email": "ebdeam@gmail.com", + "linkedIn": "https://www.linkedin.com/in/evandeam/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Registered Nurse", + "industry": "Healthtech/Healthcare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945946e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Notion", + "name": "Marissa Lafontant", + "email": "marissa.lafontant@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mlafontant/", + "campus": "NYC", + "cohort": "2", + "jobTitle": "Software Engineer", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945946f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Nousot", + "name": "Winslow Taylor", + "email": "winslow.benjamin.taylor@gmail.com", + "linkedIn": "https://www.linkedin.com/in/winslow-taylor/", + "campus": "FTRI", + "cohort": "6", + "jobTitle": "Advance Associate", + "industry": "IT, SaaS", + "cities": ["Jacksonville", "Anaheim", "Gilbert"], + "_id": { + "$oid": "6674c30595590f9fd9459470" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Noyo", + "name": "Jonathan Mendoza", + "email": "j.d.mendoza415@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonathan-mendoza1", + "campus": "LA", + "cohort": "41", + "jobTitle": "L1 Engineer", + "industry": "Heath care", + "cities": ["Fresno"], + "_id": { + "$oid": "6674c30595590f9fd9459471" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "NPR", + "name": "Alex Mannix", + "email": "alexleemannix@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alex-mannix-53015668/", + "campus": "NYC", + "cohort": "5", + "jobTitle": "Junior Software Engineer", + "industry": "", + "cities": ["Irving", "Oklahoma City"], + "_id": { + "$oid": "6674c30595590f9fd9459472" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "NPR", + "name": "Jordan Grubb", + "email": "imjordangrubb@gmail.com", + "linkedIn": "https://www.linkedin.com/in/j-grubb/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "Subscriptions", + "cities": ["Newark", "Sรฃo Paulo", "Fresno"], + "_id": { + "$oid": "6674c30595590f9fd9459473" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "NPR", + "name": "Samantha Wessel", + "email": "samantha.n.wessel@gmail.com", + "linkedIn": "https://www.linkedin.com/in/samantha-wessel/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "News Media", + "cities": ["Chandler", "Sydney", "Stockton"], + "_id": { + "$oid": "6674c30595590f9fd9459474" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "NU Borders", + "name": "Ryan Tumel", + "email": "rtumel123@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ryan-tumel/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Information Technology & Services", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459475" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "NWEA", + "name": "Celene Chang", + "email": "Celene Chang", + "linkedIn": "https://www.linkedin.com/in/celenecchang/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Boston", "Chula Vista", "Cincinnati"], + "_id": { + "$oid": "6674c30595590f9fd9459476" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "NYU Langone Health", + "name": "Alexander Lin", + "email": "alexanderlin164@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexander-lin-8aab79167/", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Developer 1", + "industry": "Healthtech/Healthcare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459477" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "O POSITIV", + "name": "Jonah Lin", + "email": "jjonah.lin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/linjonah/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Software Engineer (eCommerce)", + "industry": "E-commerce", + "cities": ["Cleveland", "Stockton", "Long Beach"], + "_id": { + "$oid": "6674c30595590f9fd9459478" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "ObvioHealth", + "name": "Joshua Jordan", + "email": "josh.r.jordan@gmail.com", + "linkedIn": "https://www.linkedin.com/in/josh-r-jordan/", + "campus": "NYC / ECRI", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Biotech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459479" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "OceanX", + "name": "Jun Lee", + "email": "jushuworld@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jushuworld/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Full Stack Developer", + "industry": "E-commerce", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945947a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Ocrolus", + "name": "Daniel Shu", + "email": "shudaniel95@gmail.com", + "linkedIn": "https://www.linkedin.com/in/danielshu/", + "campus": "NYC", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Blockchain", + "cities": ["Tokyo"], + "_id": { + "$oid": "6674c30595590f9fd945947b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Octane Lending", + "name": "Christian Paul Ejercito", + "email": "chris.paul.ejercito@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christian-paul-ejercito/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer II", + "industry": "Fintech", + "cities": ["Henderson", "Reno"], + "_id": { + "$oid": "6674c30595590f9fd945947c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Odie Pet Insurance", + "name": "Nicholas Echols", + "email": "nechols87@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nickechols87/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Senior Software Engineer", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945947d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "ODME Solutions", + "name": "Jackqueline Nguyen", + "email": "jackquelineanguyen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jackquelinenguyen/", + "campus": "LA / WCRI", + "cohort": "54", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Winston-Salem"], + "_id": { + "$oid": "6674c30595590f9fd945947e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Okta", + "name": "Sterling Deng", + "email": "sterlingdeng@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sterling-deng/", + "campus": "LA", + "cohort": "27", + "jobTitle": "Software Engineer", + "industry": "SaaS - Security", + "cities": ["Beijing"], + "_id": { + "$oid": "6674c30595590f9fd945947f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Olive AI", + "name": "Saejin Kang", + "email": "saejin.kang1004@gmail.com", + "linkedIn": "https://www.linkedin.com/in/saejinkang1004/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Oklahoma City", "North Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd9459480" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Olivine Inc", + "name": "Yirou Chen", + "email": "yirou.zm@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yirouchen/", + "campus": "PTRI", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459481" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Ollie", + "name": "Brynn Sakell", + "email": "brynnsakell@gmail.com", + "linkedIn": "www.linkedin.com/in/brynnsakell", + "campus": "NYOI", + "cohort": "1", + "jobTitle": "Software Engineer, Front End", + "industry": "Other", + "cities": ["Gilbert"], + "_id": { + "$oid": "6674c30595590f9fd9459482" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Omaze", + "name": "Rachel Kim", + "email": "rayykim323@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rayykim/", + "campus": "LA", + "cohort": "31", + "jobTitle": "Software Engineer", + "industry": "Fundraising", + "cities": ["Honolulu"], + "_id": { + "$oid": "6674c30595590f9fd9459483" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "OneSignal", + "name": "Dean Ohashi", + "email": "d.n.ohashi@gmail.com", + "linkedIn": "https://www.linkedin.com/in/deanohashi/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "MarTech", + "cities": ["Norfolk", "Nashville", "Santa Ana"], + "_id": { + "$oid": "6674c30595590f9fd9459484" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "OneTrack.AI", + "name": "Alexander Martinez", + "email": "alexmartinez7184@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexander-martinez415/", + "campus": "LA / WCRI", + "cohort": "53", + "jobTitle": "Implementation Support Engineer", + "industry": "Artificial Intelligence", + "cities": ["Plano", "Long Beach", "Winston-Salem"], + "_id": { + "$oid": "6674c30595590f9fd9459485" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "OneView", + "name": "Sean Yoo", + "email": "yooys87@gmail.com", + "linkedIn": "https://www.linkedin.com/in/seanyyoo/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Full Stack Developer", + "industry": "ECommerce", + "cities": ["North Las Vegas", "Tokyo"], + "_id": { + "$oid": "6674c30595590f9fd9459486" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Onyx Team at JP Morgan Chase", + "name": "Dwayne Richards", + "email": "dwaynerichards@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dnkrichards", + "campus": "NYC / ECRI", + "cohort": "24", + "jobTitle": "Senior Blockchain Engineer", + "industry": "Blockchain/Web3", + "cities": ["Sรฃo Paulo", "Fort Worth"], + "_id": { + "$oid": "6674c30595590f9fd9459487" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Oomph", + "name": "Rob Mosher", + "email": "rob@robmosher.com", + "linkedIn": "https://www.linkedin.com/in/rob-mosher-it/", + "campus": "NYOI", + "cohort": "1", + "jobTitle": "Senior Software Engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459488" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "OpenFin", + "name": "Elliott Burr", + "email": "elliottnburr@gmail.com", + "linkedIn": "https://www.linkedin.com/in/elliott-burr/", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459489" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Openfin", + "name": "Hina Khalid", + "email": "k.hinaa87@gmail.com", + "linkedIn": "", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Software engineer", + "industry": "Fintech", + "cities": ["St. Petersburg"], + "_id": { + "$oid": "6674c30595590f9fd945948a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Opentrons", + "name": "Geovanni Alarcon", + "email": "geovannialarcon92@gmail.com", + "linkedIn": "https://www.linkedin.com/in/geo-alarcon/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Biotech, Robotics", + "cities": ["Reno", "St. Louis"], + "_id": { + "$oid": "6674c30595590f9fd945948b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Opentrons", + "name": "Jamey Huffnagle", + "email": "mjhuffnagle@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jamey-huffnagle/", + "campus": "NYOI", + "cohort": "3", + "jobTitle": "Senior Software Engineer", + "industry": "Biotech", + "cities": ["Toledo", "Nashville", "San Francisco"], + "_id": { + "$oid": "6674c30595590f9fd945948c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Optimize Health", + "name": "Kim Mai Nguyen", + "email": "kim.mai.e.nguyen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nkmai/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Irvine", "Newark", "Philadelphia"], + "_id": { + "$oid": "6674c30595590f9fd945948d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Optum", + "name": "Austin Johnson", + "email": "austinlovesworking@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lovesworking/", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Full stack dev", + "industry": "Healthcare", + "cities": ["Oklahoma City", "Fresno"], + "_id": { + "$oid": "6674c30595590f9fd945948e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Oscar Health", + "name": "Brian Kang", + "email": "brkang1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thebriankang/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Software Engineer (E2)", + "industry": "Health", + "cities": ["Riverside", "Kansas City"], + "_id": { + "$oid": "6674c30595590f9fd945948f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Oscar Health", + "name": "Brian Kang", + "email": "brkang1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thebriankang/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Software Engineer (E2)", + "industry": "Health", + "cities": ["Tulsa", "Virginia Beach", "Miami"], + "_id": { + "$oid": "6674c30595590f9fd9459490" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Oscar Health", + "name": "Sergey Zeygerman", + "email": "sergey@zeygerman.com", + "linkedIn": "https://www.linkedin.com/in/sergey-zeygerman/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Software Engineer, Web & Mobile", + "industry": "Insurance", + "cities": ["Cincinnati", "Anaheim"], + "_id": { + "$oid": "6674c30595590f9fd9459491" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "OTG Experience", + "name": "Chang Cai", + "email": "Chang.Cai@pm.me", + "linkedIn": "https://www.linkedin.com/in/chang-c-cai/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Typescript NodeJS Senior Engineer", + "industry": "Hospitality", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459492" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Other World Computing", + "name": "Miles Wright", + "email": "mileswright818@gmail.com", + "linkedIn": "https://www.linkedin.com/in/miles-m-wright/", + "campus": "LA / WCRI", + "cohort": "45", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Fresno", "Irvine", "Sydney"], + "_id": { + "$oid": "6674c30595590f9fd9459493" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Ouraring", + "name": "Jenna Hamza", + "email": "jennashamza@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jennahamza", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Full Stack Developer", + "industry": "Other", + "cities": ["Charlotte"], + "_id": { + "$oid": "6674c30595590f9fd9459494" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Outside Analytics", + "name": "Timeo Williams", + "email": "timeo.j.williams@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "24", + "jobTitle": "FullStack Software Engineer", + "industry": "Analytics, Defense", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459495" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Ovis Technologies", + "name": "Andrew Lovato", + "email": "andrew.lovato@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andrew-lovato/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Senior Full Stack Developer", + "industry": "Fintech", + "cities": ["Miami", "Columbus"], + "_id": { + "$oid": "6674c30595590f9fd9459496" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Ovis Technologies", + "name": "David Soerensen", + "email": "Dsoerensen28@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Senior Fullstack Developer", + "industry": "Fintech", + "cities": ["Stockton", "Reno", "Seattle"], + "_id": { + "$oid": "6674c30595590f9fd9459497" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "OwnerIQ Inc.", + "name": "Alejandro Romero", + "email": "alexrom789@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alejandromromero/", + "campus": "NYC", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459498" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Ownet", + "name": "Ari bengiyat", + "email": "ari@aribengiyat.com", + "linkedIn": "https://www.linkedin.com/in/ari-bengiyat", + "campus": "NYOI", + "cohort": "2", + "jobTitle": "Senior Software Engineer", + "industry": "Media", + "cities": ["North Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd9459499" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Palmetto", + "name": "Fan Shao", + "email": "fanny.shao18@gmail.com", + "linkedIn": "https://www.linkedin.com/in/fan-shao/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Software Engineer", + "industry": "Renewable Energy", + "cities": ["Milwaukee", "Boston", "Saint Paul"], + "_id": { + "$oid": "6674c30595590f9fd945949a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Panda Express", + "name": "Krystal Chen", + "email": "Kcrystalchen@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "31", + "jobTitle": "Software developer", + "industry": "Restaurant", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945949b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Paperless Parts", + "name": "Scott Campbell", + "email": "thisisscottcampbell@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thisisscottcampbell/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Contract Manufacturing", + "cities": ["Orlando", "Paris", "Minneapolis"], + "_id": { + "$oid": "6674c30595590f9fd945949c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Paragon Application Systems", + "name": "Autumn Wallen", + "email": "mymail1269@gmail.com", + "linkedIn": "https://www.linkedin.com/in/autumn-wallen/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Software Engineer II", + "industry": "Fintech", + "cities": ["Memphis"], + "_id": { + "$oid": "6674c30595590f9fd945949d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Paramount+", + "name": "Todd Alexander", + "email": "todd.alexander@me.com", + "linkedIn": "https://www.linkedin.com/in/toddalex/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Senior SWE", + "industry": "Entertainment", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945949e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Paramount++", + "name": "Evan Emenegger", + "email": "evanemenegger@gmail.com", + "linkedIn": "https://www.linkedin.com/in/evan-emenegger/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Software Engineer, Frontend", + "industry": "Entertainment", + "cities": ["Durham", "Wichita"], + "_id": { + "$oid": "6674c30595590f9fd945949f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Parative", + "name": "Mariko Iwata", + "email": "mariko.iwata@gmail.com", + "linkedIn": "https://www.linkedin.com/in/marikoiwata/", + "campus": "PTRI", + "cohort": "9", + "jobTitle": "Senior Front End Engineer", + "industry": "Sales", + "cities": ["Anchorage"], + "_id": { + "$oid": "6674c30595590f9fd94594a0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Passage.io", + "name": "Yusuf Nevruz Olmez", + "email": "nvrz@windowslive.com", + "linkedIn": "https://www.linkedin.com/in/nevruzolmez", + "campus": "NYC / ECRI", + "cohort": "33", + "jobTitle": "Full Stack Developer", + "industry": "Blockchain/Web3", + "cities": ["Mumbai", "North Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd94594a1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "PassiveLogic", + "name": "Tanner Hesterman", + "email": "tannerhesterman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tannerhesterman/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Junior Software Engineer", + "industry": "Software / Tech", + "cities": ["Los Angeles"], + "_id": { + "$oid": "6674c30595590f9fd94594a2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "PavCon", + "name": "Bradley Woolf", + "email": "bradleymwoolf@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bradley-woolf/", + "campus": "LA", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Federal Defense", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594a3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Pavemint", + "name": "Vivian Cermeno", + "email": "vcermeno6@gmail.com", + "linkedIn": "https://www.linkedin.com/in/viviancermeno/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Parking", + "cities": ["Washington"], + "_id": { + "$oid": "6674c30595590f9fd94594a4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Pax8", + "name": "Steve Frend", + "email": "stevefrend1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stevefrend/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Software Engineer II", + "industry": "Cloud services", + "cities": ["Memphis"], + "_id": { + "$oid": "6674c30595590f9fd94594a5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Paypal", + "name": "Cynthia Franqui", + "email": "cynthiafranqui@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cynthiafranqui/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer II", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594a6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Paypal", + "name": "Stanley Huang", + "email": "Huang.stan@icloud.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer II (T23)", + "industry": "electronic Payment/ financial services", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594a7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "PayPal", + "name": "Jason Yu", + "email": "jasonyu@hotmail.com", + "linkedIn": "https://www.linkedin.com/in/json-yu/", + "campus": "LA", + "cohort": "32", + "jobTitle": "Software Engineer 2", + "industry": "Fintech", + "cities": ["Sacramento"], + "_id": { + "$oid": "6674c30595590f9fd94594a8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "PayPal", + "name": "Jorge Espinoza", + "email": "jorge.e.espinoza.57@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jorge-e-espinoza1/", + "campus": "FTRI", + "cohort": "3", + "jobTitle": "Software Engineer I", + "industry": "Fintech", + "cities": ["Laredo"], + "_id": { + "$oid": "6674c30595590f9fd94594a9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "PayPal", + "name": "Qwen Ballard", + "email": "qwen.ballard@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mqballard/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Full Stack Developer", + "industry": "Fintech", + "cities": ["Glendale", "Los Angeles"], + "_id": { + "$oid": "6674c30595590f9fd94594aa" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "PayPal (Happy Returns)", + "name": "Lawrence Han", + "email": "lawrencehan3@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lawrence-han/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer", + "industry": "Logistics", + "cities": ["St. Louis", "New Orleans"], + "_id": { + "$oid": "6674c30595590f9fd94594ab" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "PayPal Inc.", + "name": "Darryl Amour", + "email": "darryl.amour@gmail.com", + "linkedIn": "https://www.linkedin.com/in/darryl-amour/", + "campus": "LA", + "cohort": "25", + "jobTitle": "Engineering Manager, Software Development 2", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594ac" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Payscale", + "name": "Truett Davis", + "email": "truett.davis@gmail.com", + "linkedIn": "https://www.linkedin.com/in/truett-davis", + "campus": "NYOI", + "cohort": "3", + "jobTitle": "Software Engineer II", + "industry": "Software / Tech", + "cities": ["Chicago", "Tucson", "Colorado Springs"], + "_id": { + "$oid": "6674c30595590f9fd94594ad" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Peacock", + "name": "Eli Gallipoli", + "email": "eligallipoli317@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eli-gallipoli/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Fullstack Developer - Video Software Engineering", + "industry": "Video Streaming", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594ae" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Peatix", + "name": "Yula Ko", + "email": "larkspury.k@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yulako/", + "campus": "NYC", + "cohort": "17", + "jobTitle": "Software Engineer", + "industry": "Entertainment", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594af" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Peloton", + "name": "Lorenzo Guevara", + "email": "joselorenzo.guevara@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lorenzoguevara/", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer", + "industry": "Tech/Health & Wellness", + "cities": ["Toronto"], + "_id": { + "$oid": "6674c30595590f9fd94594b0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Penny Mac", + "name": "Edward Roh", + "email": "eroh@rubiconproject.com", + "linkedIn": "https://www.linkedin.com/in/edwardroh/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Front End Lead Engineer", + "industry": "Sports?", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594b1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "PennyMac", + "name": "Cornelius Phanthanh", + "email": "corneliusphanthanh@gmail.com", + "linkedIn": "www.linkedin.com/in/corneliusphanthanh", + "campus": "LA", + "cohort": "33", + "jobTitle": "Full Stack (UI/UX) Senior Application Developer", + "industry": "Loan/Mortgage", + "cities": ["Dallas"], + "_id": { + "$oid": "6674c30595590f9fd94594b2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Penumbra", + "name": "Abigail Gjurich", + "email": "amgjurich@gmail.com", + "linkedIn": "https://www.linkedin.com/in/abigail-gjurich/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Front End Engineer", + "industry": "Medical", + "cities": ["Sรฃo Paulo", "Irving"], + "_id": { + "$oid": "6674c30595590f9fd94594b3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Penumbra, Inc.", + "name": "Junaid Ahmed", + "email": "junaid7ahmed96@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ahmedjnd/", + "campus": "NYOI", + "cohort": "3", + "jobTitle": "Full Stack Engineer", + "industry": "Healthtech/Healthcare", + "cities": ["Arlington", "Beijing"], + "_id": { + "$oid": "6674c30595590f9fd94594b4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Peraton", + "name": "Andrew Jung", + "email": "andrewjung89@icloud.com", + "linkedIn": "https://www.linkedin.com/in/sjung80/", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Cyber Software Engineer", + "industry": "Public Safety", + "cities": ["Jersey City"], + "_id": { + "$oid": "6674c30595590f9fd94594b5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "PGA Tour", + "name": "Rami Abdelghafar", + "email": "ramabdel12@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ramiabdelghafar/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Software Engineer", + "industry": "Digital", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594b6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "PGi", + "name": "Zi Hao He", + "email": "germanychinaaustralia@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/zi-hao-he/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer I", + "industry": "Video", + "cities": ["Irvine", "Tokyo", "Sacramento"], + "_id": { + "$oid": "6674c30595590f9fd94594b7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "PGS", + "name": "Yi Sun", + "email": "timyisun@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yi-sun-swe/", + "campus": "PTRI", + "cohort": "10", + "jobTitle": "Senior Software Engineer", + "industry": "Energy/Cleantech/Greentech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594b8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "PhotoShelter", + "name": "Julia Ieshtokina", + "email": "julia.ieshtokina@gmail.com", + "linkedIn": "https://www.linkedin.com/in/julia-ieshtokina/", + "campus": "NYC", + "cohort": "5", + "jobTitle": "Software Automation Engineer", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594b9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Picarro", + "name": "Sรฉbastien Fauque", + "email": "Sbfauque@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sebastienfauque", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Software engineer", + "industry": "Green tech", + "cities": ["Toledo", "San Jose", "Gilbert"], + "_id": { + "$oid": "6674c30595590f9fd94594ba" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Pie Insurance", + "name": "Alex Wolinsky", + "email": "alexwolinsky1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alex-wolinsky/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["Honolulu", "Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd94594bb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Pima County", + "name": "Jake Kazi", + "email": "kazijake@gmail.com", + "linkedIn": "linkedin.com/in/jakekazi", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "IT Applications Engineer", + "industry": "Other", + "cities": ["Paris", "Stockton", "Sacramento"], + "_id": { + "$oid": "6674c30595590f9fd94594bc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Pinterest", + "name": "Edar Liu", + "email": "liuedar@gmail.com", + "linkedIn": "https://www.linkedin.com/in/liuedar/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer L4", + "industry": "Social Media", + "cities": ["Denver", "Jersey City"], + "_id": { + "$oid": "6674c30595590f9fd94594bd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Pitzer College", + "name": "Kurt Crandall", + "email": "kcrandall67@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kurtcrandall", + "campus": "LA / WCRI", + "cohort": "47", + "jobTitle": "Web Developer", + "industry": "Other", + "cities": ["Washington"], + "_id": { + "$oid": "6674c30595590f9fd94594be" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Place Exchange", + "name": "Wesley Jia", + "email": "wesleyjia34@gmail.com", + "linkedIn": "https://www.linkedin.com/in/wesleyjia/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Advertising", + "cities": ["New York"], + "_id": { + "$oid": "6674c30595590f9fd94594bf" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Plaid", + "name": "Nicolas Ferretti", + "email": "nf96@cornell.edu", + "linkedIn": "https://www.linkedin.com/in/nicolas-ferretti/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Anaheim", "San Antonio"], + "_id": { + "$oid": "6674c30595590f9fd94594c0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Platform Science", + "name": "Daniel Aurand", + "email": "Daurand303@gmail.com", + "linkedIn": "https://www.linkedin.com/in/daniel-aurand/", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "software development engineer - FMS", + "industry": "Automotive", + "cities": ["Pittsburgh", "San Antonio", "Tokyo"], + "_id": { + "$oid": "6674c30595590f9fd94594c1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Playstation", + "name": "Bryan Santos", + "email": "brymsantos@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bryan-santos/", + "campus": "LA", + "cohort": "49", + "jobTitle": "Software Engineer II", + "industry": "Gaming", + "cities": ["Omaha", "Baltimore"], + "_id": { + "$oid": "6674c30595590f9fd94594c2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "PlayStation", + "name": "Jackqueline Nguyen", + "email": "jackquelineanguyen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jackquelinenguyen/", + "campus": "LA / WCRI", + "cohort": "54", + "jobTitle": "Senior Software Engineer", + "industry": "Gaming", + "cities": ["Henderson", "St. Louis"], + "_id": { + "$oid": "6674c30595590f9fd94594c3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "PlayVs", + "name": "Alyvia Moss", + "email": "alyvialmoss@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alyviam/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "E-Sports", + "cities": ["Colorado Springs", "Dallas", "Mumbai"], + "_id": { + "$oid": "6674c30595590f9fd94594c4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Plum", + "name": "Nattie Chan", + "email": "nattie.chan@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nattiechan/", + "campus": "LA / WCRI", + "cohort": "56", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Beijing", "Tulsa"], + "_id": { + "$oid": "6674c30595590f9fd94594c5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Pluralsight", + "name": "Ronak Hirpara", + "email": "ronakh130@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ronak-hirpara/", + "campus": "NYC", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Education", + "cities": ["Laredo"], + "_id": { + "$oid": "6674c30595590f9fd94594c6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Pluralsight", + "name": "Stephanie Wood", + "email": "wood.steph@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stephaniewood22/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "EdTech", + "cities": ["Greensboro"], + "_id": { + "$oid": "6674c30595590f9fd94594c7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Plutoshift", + "name": "Alex Bednarek", + "email": "alexbednarek4@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alex-bednarek/", + "campus": "NYC", + "cohort": "16", + "jobTitle": "Backend Engineer", + "industry": "Internet/AI/Energy", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594c8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Podsights", + "name": "Emily Krebs", + "email": "erkrebs@gmail.com", + "linkedIn": "https://www.linkedin.com/in/emilyrkrebs/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "Podcast Analytics", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594c9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "PointsBet", + "name": "Joseph Eisele", + "email": "eisele.joseph1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joseph-eisele/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Front-end Engineering Consultant", + "industry": "Sports Betting", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594ca" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "PokerAtlas", + "name": "Patrick S. Young", + "email": "patrick.shaffer.young@gmail.com", + "linkedIn": "https://www.linkedin.com/in/patrick-s-young/", + "campus": "LA", + "cohort": "31", + "jobTitle": "Frontend Engineer", + "industry": "Entertainment", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594cb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Policygenius", + "name": "Christopher Bosserman", + "email": "christopherpbosserman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christopherpbosserman/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": ["Columbus"], + "_id": { + "$oid": "6674c30595590f9fd94594cc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Policygenius", + "name": "Kelly Porter", + "email": "kporter101@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kporter101/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594cd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Poll Everywhere", + "name": "Samuel Filip", + "email": "samjfilip@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sam-filip/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Full Stack Integrations Engineer", + "industry": "IT Services", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594ce" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Poloniex", + "name": "Sunit Bhalotia", + "email": "sunit.bh@gmail.com", + "linkedIn": "linkedin.com/in/sunitb/", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Senior Software Engineer, Web", + "industry": "Blockchain/Web3", + "cities": ["Colorado Springs"], + "_id": { + "$oid": "6674c30595590f9fd94594cf" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Polyture", + "name": "Dieu Huynh", + "email": "dieu@dieuhuynh.com", + "linkedIn": "https://www.linkedin.com/in/dieu-huynh", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer", + "industry": "Data Analytics", + "cities": ["San Diego"], + "_id": { + "$oid": "6674c30595590f9fd94594d0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Polyture", + "name": "Evan Grobar", + "email": "egrobar@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "33", + "jobTitle": "Software Engineer", + "industry": "Data Analysis", + "cities": ["North Las Vegas", "Chicago"], + "_id": { + "$oid": "6674c30595590f9fd94594d1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Pondurance", + "name": "Nancy Dao", + "email": "nancyddao@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "33", + "jobTitle": "Front End Software Engineer", + "industry": "Security", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594d2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Postman", + "name": "Jonathan Haviv", + "email": "jonathandhaviv@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonathanhaviv/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["New York", "Honolulu", "Tulsa"], + "_id": { + "$oid": "6674c30595590f9fd94594d3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Potato", + "name": "Kiril Christov", + "email": "kiril.christov@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kchristov/", + "campus": "LA", + "cohort": "32", + "jobTitle": "Full stack engineer", + "industry": "Technology", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594d4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Power Digital", + "name": "Feiyi Wu", + "email": "freyawu10@gmail.com", + "linkedIn": "https://www.linkedin.com/in/freya-wu/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Jr. Software Engineer", + "industry": "Marketing", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594d5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Prescriptive Data", + "name": "Nathan Le Master", + "email": "nlemaster47@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nathan-le-master/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Frontend Developer", + "industry": "Building Management", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594d6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Priceline", + "name": "Tommy Liang", + "email": "tommyliangsays@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mrtommyliang/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer - Frontend", + "industry": "Travel", + "cities": ["Tucson", "Detroit"], + "_id": { + "$oid": "6674c30595590f9fd94594d7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "PRIME", + "name": "Andrew Park", + "email": "andrewchanwonpark@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andrew-c-park/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Shopify Developer", + "industry": "Restaurant, Food, and Beverage", + "cities": ["North Las Vegas", "Saint Paul", "Irvine"], + "_id": { + "$oid": "6674c30595590f9fd94594d8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Prime Therapeutics", + "name": "Dennis Cheung", + "email": "dennis.kh.cheung@gmail.com", + "linkedIn": "https://www.linkedin.com/in/denniskhcheung/", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Senior Software Engineer", + "industry": "Healthcare", + "cities": ["Riverside", "Nashville", "Kansas City"], + "_id": { + "$oid": "6674c30595590f9fd94594d9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.068Z" + }, + "__v": 0 + }, + { + "company": "Principal Financial Group", + "name": "Stephen Lee", + "email": "stphn.l.nyc@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stphnl/", + "campus": "NYOI", + "cohort": "2", + "jobTitle": "Software Engineer II", + "industry": "Insurance", + "cities": ["Irving"], + "_id": { + "$oid": "6674c30595590f9fd94594da" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "ProdataKey", + "name": "William Murphy", + "email": "w.williamjmurphy@gmail.com", + "linkedIn": "https://www.linkedin.com/in/w-william-j-murphy/", + "campus": "FTRI / CTRI", + "cohort": "15", + "jobTitle": "Software Engineer", + "industry": "Business Tech/Enterprise Tech", + "cities": ["Tucson"], + "_id": { + "$oid": "6674c30595590f9fd94594db" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Proov (MFB Fertility)", + "name": "Brian Pham", + "email": "br.pham13@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brpham13/", + "campus": "LA / WCRI", + "cohort": "53", + "jobTitle": "Frontend Engineer", + "industry": "Healthcare", + "cities": ["London"], + "_id": { + "$oid": "6674c30595590f9fd94594dc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Prosper Marketplace", + "name": "David Levien", + "email": "david.levien1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dlev01/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Senior Software Engineer", + "industry": "", + "cities": ["Minneapolis", "Irving"], + "_id": { + "$oid": "6674c30595590f9fd94594dd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Providence Health & Services", + "name": "Jared Weiss", + "email": "weissjmw@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jaredmweiss/", + "campus": "NYC", + "cohort": "2", + "jobTitle": "Software Engineer", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594de" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Prudential Financial", + "name": "Michael Lam", + "email": "mlamchamkee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mlamchamkee/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Director, Tech Lead", + "industry": "Insurance", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594df" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Prudential Financial", + "name": "Perla Royer", + "email": "perlaroyerc@gmail.com", + "linkedIn": "https://www.linkedin.com/in/perlaroyerc/", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Lincoln"], + "_id": { + "$oid": "6674c30595590f9fd94594e0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Purpose Investments", + "name": "Anika Mustafiz", + "email": "munikamustafiz89@gmail.com", + "linkedIn": "https://www.linkedin.com/in/anikamustafiz-lillies/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Full Stack Developer", + "industry": "Fintech/Insurance software", + "cities": ["Henderson", "Beijing", "Aurora"], + "_id": { + "$oid": "6674c30595590f9fd94594e1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Q2", + "name": "Justin Poirier", + "email": "poirierj94@gmail.com", + "linkedIn": "https://www.linkedin.com/in/justincpoirier", + "campus": "NYC / ECRI", + "cohort": "40", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Bakersfield", "Mesa", "Mexico City"], + "_id": { + "$oid": "6674c30595590f9fd94594e2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "QLogic LLC.", + "name": "Joe Cervino", + "email": "jciv.public@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "6", + "jobTitle": "Senior Associate - Node Engineer", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594e3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Qrypt", + "name": "Vinit Patel", + "email": "za.vinit@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vinit-za/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Cryptography", + "cities": ["Saint Paul"], + "_id": { + "$oid": "6674c30595590f9fd94594e4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Qualleta Inc / StartPlaying.Games", + "name": "Brian Hayashi", + "email": "BrianMHayashi@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brianmakiohayashi/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Entertainment", + "cities": ["Irvine"], + "_id": { + "$oid": "6674c30595590f9fd94594e5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Quantgene", + "name": "Peter Fasula", + "email": "peter.fasula@gmail.com", + "linkedIn": "https://www.linkedin.com/in/petefasula/", + "campus": "NYC", + "cohort": "3", + "jobTitle": "Sr. Full Stack Software Engineer", + "industry": "", + "cities": ["Miami", "Philadelphia"], + "_id": { + "$oid": "6674c30595590f9fd94594e6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Quantiphi, Inc", + "name": "Alura Chung-Mehdi", + "email": "aluracm@gmail.com", + "linkedIn": "linkedin.com/alura-chungmehdi", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "Software Developer", + "industry": "Conversational AI", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594e7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Quantum Metric", + "name": "Justin Blalock", + "email": "justin.m.blalock@gmail.com", + "linkedIn": "https://www.linkedin.com/in/justinmblalock/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Customer Success Engineer", + "industry": "Technology", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594e8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Railbird", + "name": "Justin Paige", + "email": "justinpaige3@gmail.com", + "linkedIn": "https://www.linkedin.com/in/justin-paige/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594e9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Rainmaker Games", + "name": "Julia Collins", + "email": "Julia.col@protonmail.com", + "linkedIn": "", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Lead Frontend Engineer (Web3)", + "industry": "Blockchain baby", + "cities": ["Los Angeles", "Oakland", "Aurora"], + "_id": { + "$oid": "6674c30595590f9fd94594ea" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Rally Health", + "name": "Stefan Pougatchev", + "email": "Stefan.Pougatchev@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stefanpougatchev/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer II", + "industry": "Health/Insurance", + "cities": ["Plano"], + "_id": { + "$oid": "6674c30595590f9fd94594eb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Raytheon Technologies", + "name": "Troy Prejusa", + "email": "prejusa.troy@gmail.com", + "linkedIn": "https://www.linkedin.com/in/troyprejusa/", + "campus": "LA / WCRI", + "cohort": "54", + "jobTitle": "Software Engineer II", + "industry": "Aerospace", + "cities": ["Tucson"], + "_id": { + "$oid": "6674c30595590f9fd94594ec" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Ready Responders", + "name": "Joel Rivera", + "email": "realjoelrivera@gmail.com", + "linkedIn": "https://www.linkedin.com/in/RealJoelRivera", + "campus": "NYC", + "cohort": "11", + "jobTitle": "React Developer", + "industry": "Healthcare", + "cities": ["Long Beach"], + "_id": { + "$oid": "6674c30595590f9fd94594ed" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Record360", + "name": "Abby Chao", + "email": "abigail.chao@gmail.com", + "linkedIn": "https://www.linkedin.com/in/abbychao/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "CEO", + "industry": "Rental Inspection", + "cities": ["Kansas City", "Albuquerque"], + "_id": { + "$oid": "6674c30595590f9fd94594ee" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Recurate", + "name": "PJ Bannon", + "email": "bannon.pj@gmail.com", + "linkedIn": "https://www.linkedin.com/in/paulbannon/", + "campus": "NYOI", + "cohort": "3", + "jobTitle": "Frontend Engineer", + "industry": "Retail", + "cities": ["Denver", "Chandler", "Milwaukee"], + "_id": { + "$oid": "6674c30595590f9fd94594ef" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Recurate", + "name": "Andrew Altman", + "email": "andrewaltman@outlook.com", + "linkedIn": "https://www.linkedin.com/in/andrewaltman1/", + "campus": "NYOI", + "cohort": "3", + "jobTitle": "Lead Frontend Engineer", + "industry": "Business Tech/Enterprise Tech", + "cities": ["Washington", "Denver"], + "_id": { + "$oid": "6674c30595590f9fd94594f0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Red Bull North America", + "name": "Catherine Larcheveque", + "email": "clarcheveque14@gmail.com", + "linkedIn": "https://www.linkedin.com/in/clarcheveque", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Automation Engineer", + "industry": "Restaurant, Food, and Beverage", + "cities": ["Bakersfield", "St. Petersburg", "Riverside"], + "_id": { + "$oid": "6674c30595590f9fd94594f1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Reddit", + "name": "Jessikeรฉ Campbell-Walker", + "email": "jessikeecw@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jessikeecampbellwalker/", + "campus": "LA", + "cohort": "34", + "jobTitle": "Junior Front End Engineer", + "industry": "Internet Media", + "cities": ["El Paso", "Oakland"], + "_id": { + "$oid": "6674c30595590f9fd94594f2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Redox", + "name": "Jacquelyn Whitworth", + "email": "jackie.whitworth@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jackiewhitworth/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Full Stack Engineer", + "industry": "Healthcare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594f3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Redwood Coding Academy", + "name": "Alexander Landeros", + "email": "Alexander.Landeros1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexander-landeros/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Dev Instructor", + "industry": "Edtech", + "cities": ["Berlin", "Toronto", "Tokyo"], + "_id": { + "$oid": "6674c30595590f9fd94594f4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "REEF", + "name": "Linda Everswick", + "email": "lindaeverswick@gmail.com", + "linkedIn": "https://www.linkedin.com/linda-everswick/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Front end engineer", + "industry": "Real Estate", + "cities": ["Buffalo", "Tulsa"], + "_id": { + "$oid": "6674c30595590f9fd94594f5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Remine", + "name": "JJ Friedman", + "email": "friedmanjarred@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jj-friedman/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Software Engineer II - Web/Mobile", + "industry": "PropTech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594f6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Remote", + "name": "Bianca Picasso", + "email": "bianca.picasso@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bianca-picasso/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Engineer I", + "industry": "Research", + "cities": ["Greensboro", "Norfolk"], + "_id": { + "$oid": "6674c30595590f9fd94594f7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Rent the Runway", + "name": "Rebecca Schell", + "email": "Rebeccaschell503@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rschelly/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Senior Front End Engineer", + "industry": "Fashion", + "cities": ["Portland", "Saint Paul"], + "_id": { + "$oid": "6674c30595590f9fd94594f8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Republic Services", + "name": "Lauren Acrich", + "email": "acrich.lauren@gmail.com", + "linkedIn": "https://www.linkedin.com/in/laurenacrich/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Full Stack Software Engineer", + "industry": "Other", + "cities": ["Austin", "San Diego", "North Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd94594f9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Republic Services", + "name": "Nicholas Smith", + "email": "nicktsmith7@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nicholastaylorsmith/", + "campus": "LA", + "cohort": "23", + "jobTitle": "Senior Front End Developer", + "industry": "", + "cities": ["Toledo", "San Jose"], + "_id": { + "$oid": "6674c30595590f9fd94594fa" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Rescale", + "name": "Kushal Talele", + "email": "kushal.talele@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kushaltalele/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Software Engineer", + "industry": "Cloud computing", + "cities": ["Albuquerque", "Reno"], + "_id": { + "$oid": "6674c30595590f9fd94594fb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Research Corporation of the University of Hawaii", + "name": "Chris Fryer", + "email": "chris@hifryer.com", + "linkedIn": "linkedin.com/in/cjfryer", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Software Engineer Apprentice", + "industry": "Other", + "cities": ["Durham", "Seattle"], + "_id": { + "$oid": "6674c30595590f9fd94594fc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "ResMed", + "name": "Jackie He", + "email": "jackie.he98@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jackie-he/", + "campus": "LA / WCRI", + "cohort": "53", + "jobTitle": "Fullstack App SWE", + "industry": "Healthcare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94594fd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Restaurant Brand International (RBI)", + "name": "Christian Niedermayer", + "email": "sdchrisn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christian-niedermayer/", + "campus": "LA", + "cohort": "27", + "jobTitle": "Full Stack Software Engineer", + "industry": "Food", + "cities": ["Raleigh"], + "_id": { + "$oid": "6674c30595590f9fd94594fe" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Resy (AMEX)", + "name": "Jonathan Cespedes", + "email": "jmilescespedes@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonathancespedes/", + "campus": "NYC", + "cohort": "7", + "jobTitle": "Senior Front-End Engineer", + "industry": "Restaurant, Food, Beverage", + "cities": ["Indianapolis"], + "_id": { + "$oid": "6674c30595590f9fd94594ff" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Reveel Group", + "name": "Jin Soo (John) Lim", + "email": "jinsoolim1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jinsoolim", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Frontend Developer", + "industry": "Logistics & Supply Chain", + "cities": ["Buffalo"], + "_id": { + "$oid": "6674c30595590f9fd9459500" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Revel", + "name": "Kayliegh Hill", + "email": "kayliegh.hill@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kayliegh-hill/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Full Stack Engineer", + "industry": "Renewables & Environment", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459501" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Reverb", + "name": "Grace Park", + "email": "gracepark01@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "20", + "jobTitle": "software engineer", + "industry": "ecommerce", + "cities": ["Austin"], + "_id": { + "$oid": "6674c30595590f9fd9459502" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Revolution Prep", + "name": "Max Weisenberger", + "email": "germanbluemax@gmail.com", + "linkedIn": "https://www.linkedin.com/in/maxweisen/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer", + "industry": "Education", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459503" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "RF-Smart", + "name": "Michael Snyder", + "email": "msnyder1992@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michaelcharlessnyder/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "JavaScript Applications Developer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459504" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Rice University", + "name": "Thasanee Puttamadilok", + "email": "meow3525@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thasanee-p-686125243/", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Front End Software Engineer", + "industry": "Research", + "cities": ["Sacramento"], + "_id": { + "$oid": "6674c30595590f9fd9459505" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Rightway", + "name": "Dylan Feldman", + "email": "dfeldman24@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dylan-feldman/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Software engineer", + "industry": "Healthcare navigation", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459506" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Riot Games", + "name": "Pauline Chang", + "email": "paulseonchang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/pskchang/", + "campus": "LA", + "cohort": "22", + "jobTitle": "Associate Software Engineer", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459507" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "RIPL", + "name": "Jared Veltsos", + "email": "Veltsos.jared@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jaredveltsos/", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Riverside", "Scottsdale"], + "_id": { + "$oid": "6674c30595590f9fd9459508" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Rivian", + "name": "Luis Lo", + "email": "kwun.man.lo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/luis-lo/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Engineer", + "industry": "Electric Vehicle", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459509" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Rivian", + "name": "Matthew Salvador", + "email": "matthew.jsalvador@gmail.com", + "linkedIn": "https://www.linkedin.com/in/matthewsalvador/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Full Stack Software Engineer II", + "industry": "Automotive", + "cities": ["Sรฃo Paulo", "Portland", "Riverside"], + "_id": { + "$oid": "6674c30595590f9fd945950a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Rivian", + "name": "Stacy Learn", + "email": "sslearn07@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stacy-learn/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Software Engineer II", + "industry": "Automotive", + "cities": ["Portland"], + "_id": { + "$oid": "6674c30595590f9fd945950b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Rivian", + "name": "Thomas Lutz", + "email": "tlutz65@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thomas-j-lutz/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Automotive", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945950c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Rocket Auto", + "name": "Tommy Han", + "email": "tommy.han.cs@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tommy-han-cs/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Senior Javascript Software Engineer", + "industry": "Fintech", + "cities": ["Corpus Christi", "Oklahoma City", "Fort Wayne"], + "_id": { + "$oid": "6674c30595590f9fd945950d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Rocksbox", + "name": "Ece Isenbike Ozalp", + "email": "eceiozalp@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eceiozalp", + "campus": "PTRI", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "Jewelry Ecommerce", + "cities": ["Fresno", "Bakersfield"], + "_id": { + "$oid": "6674c30595590f9fd945950e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "RockStep Solutions", + "name": "Matthew McGowan", + "email": "matthew.c.mcgowan@gmail.com", + "linkedIn": "https://www.linkedin.com/in/matthewcharlesmcgowan/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Software Release Manager", + "industry": "Software / Tech", + "cities": ["Baltimore", "Berlin"], + "_id": { + "$oid": "6674c30595590f9fd945950f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Rohirrim", + "name": "Alex Corlin", + "email": "alex.corlin6@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alex-corlin/", + "campus": "FTRI / CTRI", + "cohort": "7", + "jobTitle": "Full Stack Engineer", + "industry": "Artificial Intelligence", + "cities": ["Long Beach", "Pittsburgh"], + "_id": { + "$oid": "6674c30595590f9fd9459510" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Rohirrim", + "name": "Simon Chen", + "email": "simonchn160@gmail.com", + "linkedIn": "https://www.linkedin.com/in/simonchen7/", + "campus": "FTRI / CTRI", + "cohort": "7", + "jobTitle": "Full Stack Engineer", + "industry": "Artificial Intelligence", + "cities": ["Tampa"], + "_id": { + "$oid": "6674c30595590f9fd9459511" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Roivant", + "name": "Jamie Schiff", + "email": "jamie.abrams.schiff@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jamie-schiff/", + "campus": "NYC / ECRI", + "cohort": "1", + "jobTitle": "Technology Analyst", + "industry": "Biotech", + "cities": ["Buffalo", "Durham"], + "_id": { + "$oid": "6674c30595590f9fd9459512" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Rokt", + "name": "Michael Hoang", + "email": "michaelhoang781@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michaelhoang1/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Frontend Software Engineer", + "industry": "Digital Advertising/E-commerce", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459513" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Roll", + "name": "Eric Choy", + "email": "echoy20@gmail.com", + "linkedIn": "https://www.linkedin.com/in/silly-turtle/", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459514" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Roll", + "name": "Marlon Wiprud", + "email": "Marlonwiprud1@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software engineer", + "industry": "Entertainment", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459515" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Roll", + "name": "Marlon Wiprud", + "email": "Marlonwiprud1@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Search and ads", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459516" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Rose Digital", + "name": "Chet (ChetBABY!) Hay", + "email": "chet.hay@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chethay/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Jr. Frontend Engineer", + "industry": "Digital Agency/Client Services", + "cities": ["Tampa", "Kansas City"], + "_id": { + "$oid": "6674c30595590f9fd9459517" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Rose Digital", + "name": "Linda Harrison", + "email": "lindafaithharrison@gmail.com", + "linkedIn": "https://linkedin.com/in/lindafharrison/", + "campus": "NYC", + "cohort": "3", + "jobTitle": "Junior Software Engineer", + "industry": "", + "cities": ["Raleigh", "Gilbert", "Newark"], + "_id": { + "$oid": "6674c30595590f9fd9459518" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Ruggable", + "name": "Benjamin Lee Morrison", + "email": "newben.hd@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hdlmorrison/", + "campus": "LA", + "cohort": "31", + "jobTitle": "Sr. Software Engineer", + "industry": "Commerce", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459519" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Ruggable", + "name": "Andrew Nguyen", + "email": "nguyen.andrewkh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andrew-knguyen/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Sr. Front-End Engineer", + "industry": "E-Commerce", + "cities": ["Houston"], + "_id": { + "$oid": "6674c30595590f9fd945951a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Ruggable", + "name": "Steven Jung", + "email": "stehyjung@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stehyjung/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Front End Engineer", + "industry": "E-Commerce", + "cities": ["Columbus", "Milwaukee"], + "_id": { + "$oid": "6674c30595590f9fd945951b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Rush Enterprises", + "name": "Eric Saldivar", + "email": "esaldivar1214@gmail.com", + "linkedIn": "https://www.linkedin.com/in/esaldivar1214/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "Automative", + "cities": ["New Orleans", "Henderson"], + "_id": { + "$oid": "6674c30595590f9fd945951c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "S&P Global", + "name": "Samantha Warrick", + "email": "samanthawarrick@gmail.com", + "linkedIn": "www.linkedin.com/samantha-warrick", + "campus": "LA / WCRI", + "cohort": "54", + "jobTitle": "Front End Software Engineer", + "industry": "Marketing", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945951d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Saggezza", + "name": "Albert Chen", + "email": "albert.chen@nyu.edu", + "linkedIn": "https://www.linkedin.com/in/albert-m-chen/", + "campus": "NYC", + "cohort": "2", + "jobTitle": "Full-stack Analytics Engineer", + "industry": "Big Data, Analytics", + "cities": ["Orlando", "Atlanta"], + "_id": { + "$oid": "6674c30595590f9fd945951e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Salesforce", + "name": "Jennifer Courtner", + "email": "jmichele.courtner@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jcourtner/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Full Stack Engineer", + "industry": "B2B", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945951f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "San Francisco State University", + "name": "Paul Valderama", + "email": "pvalderama@gmail.com", + "linkedIn": "https://www.linkedin.com/in/paulvalderama/", + "campus": "LA / WCRI", + "cohort": "22", + "jobTitle": "Senior Web and Mobile Developer", + "industry": "Software / Tech", + "cities": ["Mesa", "Arlington", "Laredo"], + "_id": { + "$oid": "6674c30595590f9fd9459520" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "SAP", + "name": "Charlie Maloney", + "email": "charliemaloney200@gmail.com", + "linkedIn": "https://www.linkedin.com/in/charlie-maloney/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Front End Developer", + "industry": "Enterprise Software", + "cities": ["Stockton", "Durham"], + "_id": { + "$oid": "6674c30595590f9fd9459521" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "SAP", + "name": "Sylvia Liu", + "email": "sylvs.liu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/liusylvia949/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Frontend Software Engineer", + "industry": "Business Software", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459522" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Sayari", + "name": "SEAN YALDA", + "email": "seanyalda@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sean-yalda/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Senior Full Stack Developer", + "industry": "Data Intelligence", + "cities": ["Oklahoma City"], + "_id": { + "$oid": "6674c30595590f9fd9459523" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Sayari Labs", + "name": "Michael Gower", + "email": "GowerMikey@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mikeygower/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Financial Data", + "cities": ["Milwaukee"], + "_id": { + "$oid": "6674c30595590f9fd9459524" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Scale Computing", + "name": "Jason Charles de vera", + "email": "jasoncdevera@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jason-charles-de-vera/", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Cloud Technology", + "cities": ["Garland"], + "_id": { + "$oid": "6674c30595590f9fd9459525" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Scale Computing", + "name": "Connor Dillon", + "email": "connordillon06@gmail.com", + "linkedIn": "https://www.linkedin.com/in/connor-dillon/", + "campus": "FTRI / CTRI", + "cohort": "16", + "jobTitle": "Software Development Engineer", + "industry": "Business Tech/Enterprise Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459526" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Science", + "name": "Michelle Leong", + "email": "leong.michellew@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michelle-w-leong/", + "campus": "LA / WCRI", + "cohort": "56", + "jobTitle": "Software Engineer", + "industry": "Biotech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459527" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Science 37", + "name": "Tristan Schoenfeld", + "email": "tristans7@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tristan-schoenfeld/", + "campus": "LA", + "cohort": "26", + "jobTitle": "Sr. Frontend Engineer", + "industry": "Research", + "cities": ["El Paso", "Mesa", "San Jose"], + "_id": { + "$oid": "6674c30595590f9fd9459528" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "ScienceLogic", + "name": "Nick Kruckenberg", + "email": "nkruckenberg@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nicholaskruckenberg/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Engineer", + "industry": "AIOps, IT monitoring and automation", + "cities": ["Glendale", "Mesa", "Honolulu"], + "_id": { + "$oid": "6674c30595590f9fd9459529" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "SciTec", + "name": "Forest Everest Leigh", + "email": "theforestleigh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/forestleigh/", + "campus": "LA / WCRI", + "cohort": "53", + "jobTitle": "Senior Software Engineer", + "industry": "Other", + "cities": ["Tokyo", "Anchorage", "Laredo"], + "_id": { + "$oid": "6674c30595590f9fd945952a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "SDL", + "name": "Jamar Dawson", + "email": "Dawsonjamar@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "30", + "jobTitle": "Front End Engineer (Mid Level)", + "industry": "Translation", + "cities": ["Chicago", "Bakersfield"], + "_id": { + "$oid": "6674c30595590f9fd945952b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "SEAT:CODE", + "name": "Andrรฉs Gutiรฉrrez Ramรญrez", + "email": "agfeynman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/andresgutierrezramirez/", + "campus": "PTRI", + "cohort": "5", + "jobTitle": "Senior Fullstack Engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945952c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Second Wave Technologies", + "name": "Nicholas Suzuki", + "email": "nicholassuzuki@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/nicholas-j-suzuki/", + "campus": "FTRI / CTRI", + "cohort": "5", + "jobTitle": "Software Engineer", + "industry": "Consulting", + "cities": ["Saint Paul", "Baltimore"], + "_id": { + "$oid": "6674c30595590f9fd945952d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "SecureSeniorConnections", + "name": "Timothy", + "email": "tim.atapagra@gmail.com", + "linkedIn": "https://www.linkedin.com/in/timpagra/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Software Developer", + "industry": "Hospitals", + "cities": ["Memphis"], + "_id": { + "$oid": "6674c30595590f9fd945952e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Seed Health", + "name": "John SaeHwan Lee", + "email": "john.saehwan.lee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/john-saehwan-lee/", + "campus": "NYC / ECRI", + "cohort": "39", + "jobTitle": "Fullstack Software Engineer I", + "industry": "Fitness/Wellness", + "cities": ["San Diego"], + "_id": { + "$oid": "6674c30595590f9fd945952f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "SeedFi", + "name": "Peter Millspaugh", + "email": "peterdgmillspaugh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/peter-millspaugh/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Mumbai", "Colorado Springs", "Denver"], + "_id": { + "$oid": "6674c30595590f9fd9459530" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Seedfi", + "name": "Stephen Grable", + "email": "stephengrable@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stephen-grable/", + "campus": "NYC", + "cohort": "3", + "jobTitle": "Senior Software Engineer", + "industry": "Finance", + "cities": ["El Paso"], + "_id": { + "$oid": "6674c30595590f9fd9459531" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "SEL", + "name": "Jace Crowe", + "email": "jace.crowe@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jacecrowe/", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Software Engineer - Front End", + "industry": "Energy/Cleantech/Greentech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459532" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Send Out Carda", + "name": "Chris romano", + "email": "Chrispaulromano@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Front end engineer", + "industry": "Not sure: itโ€™s a subscription service for designing hallmark style cards", + "cities": ["Beijing", "Fort Wayne", "Plano"], + "_id": { + "$oid": "6674c30595590f9fd9459533" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "SENSE Chat", + "name": "Donte Nall", + "email": "donte.nall@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "25", + "jobTitle": "Senior Mobile Developer", + "industry": "Consulting", + "cities": ["Riverside", "Virginia Beach"], + "_id": { + "$oid": "6674c30595590f9fd9459534" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Sensei", + "name": "Kevin Fey", + "email": "kevinfey@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kevin-fey/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Senior Frontend Engineer", + "industry": "Wellness", + "cities": ["Atlanta", "Santa Ana"], + "_id": { + "$oid": "6674c30595590f9fd9459535" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "SequinAR", + "name": "Wyatt Bell", + "email": "wcbell51@gmail.com", + "linkedIn": "https://www.linkedin.com/in/wyatt-bell1/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Engineer", + "industry": "Augmented Reality, Entertainment", + "cities": ["Los Angeles", "Omaha"], + "_id": { + "$oid": "6674c30595590f9fd9459536" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "ServiceTrade", + "name": "Robert Beier", + "email": "robert.f.beier@gmail.com", + "linkedIn": "https://www.linkedin.com/in/robert-f-beier/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Software Engineer II", + "industry": "Contractor Software", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459537" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Setsail Marketing", + "name": "Kirsten Milic", + "email": "kirsten.milic@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kirsten-milic/", + "campus": "LA / WCRI", + "cohort": "57", + "jobTitle": "Software Engineer", + "industry": "Marketing/Advertising", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459538" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Sev1Tech", + "name": "Adam Vanek", + "email": "atvanek@gmail.com", + "linkedIn": "https://www.linkedin.com/in/atvanek/", + "campus": "FTRI / CTRI", + "cohort": "15", + "jobTitle": "Full Stack Developer", + "industry": "Government", + "cities": ["Winston-Salem"], + "_id": { + "$oid": "6674c30595590f9fd9459539" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Shadow Health", + "name": "Khandker Islam", + "email": "khandker.islam46@gmail.com", + "linkedIn": "https://www.linkedin.com/in/khandkerislam/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Software Engineer II", + "industry": "Virtual Reality Education", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945953a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "SharpenCX", + "name": "Anu Sharma", + "email": "anu.le.pau@gmail.com", + "linkedIn": "https://www.linkedin.com/in/anulepau", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Senior Full Stack Developer", + "industry": "Software / Tech", + "cities": ["Plano", "Saint Paul"], + "_id": { + "$oid": "6674c30595590f9fd945953b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Sherwin Williams", + "name": "Seamus Ryan", + "email": "d.seamus.ryan@outlook.com", + "linkedIn": "https://www.linkedin.com/in/dseamusryan/", + "campus": "LA", + "cohort": "39", + "jobTitle": "React Developer", + "industry": "Consumer", + "cities": ["Virginia Beach", "Fort Worth", "Fort Wayne"], + "_id": { + "$oid": "6674c30595590f9fd945953c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Shift", + "name": "Ralph Salazar", + "email": "ralph.slzr@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ralph-salazar", + "campus": "NYC", + "cohort": "2", + "jobTitle": "Software Engineer", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945953d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Showtime", + "name": "Dan Teng", + "email": "danwteng@gmail.com", + "linkedIn": "https://www.linkedin.com/feed/", + "campus": "NYC", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Entertainment", + "cities": ["Omaha", "Paris", "Tulsa"], + "_id": { + "$oid": "6674c30595590f9fd945953e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Shut Up & Write!", + "name": "Anthony Al-Rifai", + "email": "anthonyalrifai@gmail.com", + "linkedIn": "https://www.linkedin.com/in/anthony-al-rifai/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Full Stack Developer", + "industry": "Events", + "cities": ["Stockton", "Indianapolis", "Dallas"], + "_id": { + "$oid": "6674c30595590f9fd945953f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Shutterstock", + "name": "Ari Shoham", + "email": "arishoham@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ari-shoham/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Software Engineer III", + "industry": "Photography", + "cities": ["Columbus"], + "_id": { + "$oid": "6674c30595590f9fd9459540" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Shutterstock", + "name": "Eli Davis", + "email": "eli.davis42@gmail.com", + "linkedIn": "https://www.linkedin.com/in/elidavis42/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459541" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Shutterstock", + "name": "Michael Pay", + "email": "michael.edward.pay@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael-edward-pay/", + "campus": "LA", + "cohort": "46", + "jobTitle": "SDET III", + "industry": "Entertainment", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459542" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Shutterstock, Inc.", + "name": "Jake B Douglas", + "email": "jbrandondouglas@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Software Engineer, Projects", + "industry": "Tech? stock photography?", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459543" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Sidecar Health", + "name": "Sumin Kim", + "email": "ppsm920@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ppsm920/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer", + "industry": "Healthcare / insurance", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459544" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Sierra Nevada Corporation", + "name": "Matthew Xing", + "email": "matthew.xing@gmail.com", + "linkedIn": "https://www.linkedin.com/in/matthew-xing/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Software Engineer II - Space Systems", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459545" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Signos", + "name": "Rebecca Anderson", + "email": "randersonviolin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rebecca--anderson/", + "campus": "NYC / ECRI", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Tokyo", "Oakland", "Lincoln"], + "_id": { + "$oid": "6674c30595590f9fd9459546" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "SigTech", + "name": "Robert Howton", + "email": "robert.f.howton@gmail.com", + "linkedIn": "https://www.linkedin.com/in/roberthowton/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Fullstack Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459547" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "SimpliSafe", + "name": "Cindy Chau", + "email": "cindychau38@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cindychau38/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Engineer II", + "industry": "Security", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459548" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Simplr", + "name": "Grigor Minasyan", + "email": "grigorminasyan1998@gmail.com", + "linkedIn": "https://www.linkedin.com/in/grigor-minasyan", + "campus": "FTRI", + "cohort": "1", + "jobTitle": "Front end engineer", + "industry": "Customer service software", + "cities": ["Scottsdale", "Cincinnati"], + "_id": { + "$oid": "6674c30595590f9fd9459549" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "SimplyWise", + "name": "Justin Jaeger", + "email": "jjustinjaeger@gmail.com", + "linkedIn": "https://www.linkedin.com/in/justin-jaeger/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Software Engineer", + "industry": "Cloud storage", + "cities": ["Los Angeles"], + "_id": { + "$oid": "6674c30595590f9fd945954a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.069Z" + }, + "__v": 0 + }, + { + "company": "Sinclair Broadcast Group", + "name": "Michael Filoramo", + "email": "mlfiloramo@gmail.com", + "linkedIn": "linkedin.com/in/michael-filoramo/", + "campus": "PTRI", + "cohort": "6", + "jobTitle": "Full Stack Software Engineer III", + "industry": "Media", + "cities": ["Denver"], + "_id": { + "$oid": "6674c30595590f9fd945954b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Sinclair Broadcast Group", + "name": "David Beame", + "email": "dbeame291@gmail.com", + "linkedIn": "https://www.linkedin.com/in/david-beame/", + "campus": "LA / WCRI", + "cohort": "55", + "jobTitle": "Associate Software Developer", + "industry": "Media", + "cities": ["Laredo"], + "_id": { + "$oid": "6674c30595590f9fd945954c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Sinclair Broadcasting", + "name": "Joshua Reed", + "email": "joshreed104@gmail.com", + "linkedIn": "https://www.linkedin.com/in/josh-a-reed/", + "campus": "LA / WCRI", + "cohort": "54", + "jobTitle": "Associate Development Engineer", + "industry": "Telecommunications", + "cities": ["Kansas City"], + "_id": { + "$oid": "6674c30595590f9fd945954d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Singa", + "name": "Paul Kassar", + "email": "p.kassar@hotmail.com", + "linkedIn": "https://www.linkedin.com/in/paulkassar/", + "campus": "NYC", + "cohort": "3", + "jobTitle": "Engineer", + "industry": "Outdoor Recreation", + "cities": ["Philadelphia", "Bakersfield"], + "_id": { + "$oid": "6674c30595590f9fd945954e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "SiriusXM", + "name": "Ben Brower", + "email": "Bbrower1293@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ben-brower-80660073", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Software Engineer III", + "industry": "Entertainment", + "cities": ["Paris", "Dallas", "Indianapolis"], + "_id": { + "$oid": "6674c30595590f9fd945954f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Skechers", + "name": "Christopher Saavedra", + "email": "cssaavedra56@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chrisssaavedra/", + "campus": "LA", + "cohort": "22", + "jobTitle": "Front end engineer", + "industry": "Retail/Manufacturing", + "cities": ["Omaha"], + "_id": { + "$oid": "6674c30595590f9fd9459550" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Skematic", + "name": "Christina Or", + "email": "OR.CHRISTINA27@GMAIL.COM", + "linkedIn": "https://www.linkedin.com/in/christina-or", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459551" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Sketch and Etch", + "name": "Kenny Lee", + "email": "kenkiblee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kennethkiboklee/", + "campus": "LA / WCRI", + "cohort": "46", + "jobTitle": "Founding Engineer", + "industry": "Retail", + "cities": ["Durham", "Madison"], + "_id": { + "$oid": "6674c30595590f9fd9459552" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "SKF USA", + "name": "Steve Canavan", + "email": "stevenrosscanavan@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stevencanavan/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Front End Developer", + "industry": "Manufacturing", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459553" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Skillshare Inc.", + "name": "Chris Lung", + "email": "c.lung95@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chris-lung-5b69b2ba/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Edtech", + "cities": ["Cincinnati"], + "_id": { + "$oid": "6674c30595590f9fd9459554" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Skillstorm, contracting at Bank of America", + "name": "Adam Singer", + "email": "Spincycle01@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/adsing/", + "campus": "NYC", + "cohort": "10", + "jobTitle": "Application Programmer", + "industry": "Fintech", + "cities": ["Baltimore", "San Jose", "Memphis"], + "_id": { + "$oid": "6674c30595590f9fd9459555" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Skout Cybersecurity", + "name": "Garrett James", + "email": "garrettjames55@gmail.com", + "linkedIn": "https://www.linkedin.com/in/garrett-lamar-james/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Senior Software Engineer", + "industry": "Cybersecurity", + "cities": ["Paris", "Scottsdale"], + "_id": { + "$oid": "6674c30595590f9fd9459556" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Sky Betting and Gaming / Flutter Entertainment", + "name": "Robert Drake", + "email": "rmdrake8@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rmdrake8/", + "campus": "NYC / ECRI", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Sports/Sports betting", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459557" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Skylark Travel", + "name": "Giuseppe Valentino", + "email": "zepvalue@gmail.com", + "linkedIn": "https://www.linkedin.com/in/zepvalue/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Senior Full Stack Developer", + "industry": "Travel", + "cities": ["Cincinnati", "London", "Garland"], + "_id": { + "$oid": "6674c30595590f9fd9459558" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Skylight", + "name": "Michael Lu", + "email": "michaellu213@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael-lu/", + "campus": "LA", + "cohort": "27", + "jobTitle": "Full Stack Engineer", + "industry": "Consumer Goods", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459559" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Slalom", + "name": "Angela Franco", + "email": "angelajfranco18@gmail.com", + "linkedIn": "https://www.linkedin.com/in/angela-j-franco", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer (Consultant)", + "industry": "Consulting", + "cities": ["Corpus Christi", "Oakland", "Columbus"], + "_id": { + "$oid": "6674c30595590f9fd945955a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "slalom", + "name": "Sara Kivikas", + "email": "sarakivikas@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sara-kivikas/", + "campus": "LA", + "cohort": "49", + "jobTitle": "Software Engineer", + "industry": "Consulting", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945955b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Slang.ai", + "name": "Kevin Luo", + "email": "luokev1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kevinluo117/", + "campus": "NYC", + "cohort": "17", + "jobTitle": "Software Engineer", + "industry": "Customer Service", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945955c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "SlyEco", + "name": "Nicolas Jackson", + "email": "nicolasljax@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nicjax/", + "campus": "NYOI", + "cohort": "2", + "jobTitle": "Lead Software Engineer", + "industry": "Energy/Cleantech/Greentech", + "cities": ["Oklahoma City"], + "_id": { + "$oid": "6674c30595590f9fd945955d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Smarkets", + "name": "Nicholas Healy", + "email": "nickrhealy@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nick-r-healy", + "campus": "LA", + "cohort": "36", + "jobTitle": "Frontend Engineer", + "industry": "Fintech", + "cities": ["Arlington"], + "_id": { + "$oid": "6674c30595590f9fd945955e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Smartbiz", + "name": "Dennis Lopez", + "email": "dnnis.lpz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dennis-lopezsb/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Frontend Engineer", + "industry": "Fintech", + "cities": ["Tampa"], + "_id": { + "$oid": "6674c30595590f9fd945955f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Smartrr", + "name": "Jeffrey Zheng", + "email": "zhengj98@outlook.com", + "linkedIn": "https://www.linkedin.com/in/jefzheng/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Software Developer", + "industry": "SaaS", + "cities": ["Mumbai", "Buffalo"], + "_id": { + "$oid": "6674c30595590f9fd9459560" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "SmartSheet", + "name": "Isaiah Delgado", + "email": "Isaiah.del621@gmail.com", + "linkedIn": "https://www.linkedin.com/in/isaiahdel/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Software Engineer I", + "industry": "Computer Hardware & Software", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459561" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "SmartThings", + "name": "Samuel Carrasco", + "email": "Samhcarrasco@gmail.com", + "linkedIn": "https://www.linkedin.com/in/samuelhcarrasco", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Associate Software Engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459562" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Snag Films", + "name": "Muhammad Sheikh", + "email": "muhammad.sheikh93@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/mhsheikh/", + "campus": "NYC", + "cohort": "3", + "jobTitle": "Software Developer", + "industry": "", + "cities": ["Philadelphia", "Portland", "Sรฃo Paulo"], + "_id": { + "$oid": "6674c30595590f9fd9459563" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Snap eHealth", + "name": "Jordan Hisel", + "email": "hiseljm@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jordan-h-3b7686121/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Anaheim", "Sydney", "San Antonio"], + "_id": { + "$oid": "6674c30595590f9fd9459564" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Snap Inc", + "name": "Christopher Guizzetti", + "email": "guizzettic@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christopherguizzetti", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Entertainment", + "cities": ["Norfolk"], + "_id": { + "$oid": "6674c30595590f9fd9459565" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Snap Inc", + "name": "Madeline Doctor", + "email": "madelinemdoctor@gmail.com", + "linkedIn": "https://www.linkedin.com/in/madeline-doctor/", + "campus": "NYOI", + "cohort": "1", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Detroit", "Charlotte", "Miami"], + "_id": { + "$oid": "6674c30595590f9fd9459566" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Snap Inc.", + "name": "Kirsten Yoon", + "email": "kirstenyoon@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kirstenyoon", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer", + "industry": "camera, social media", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459567" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Socialive", + "name": "Alexander Infante", + "email": "alexinfante17@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexander-infante/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Platform Engineer", + "industry": "Video Streaming", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459568" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "SoftWriters", + "name": "Jane You", + "email": "janeyou94@gmail.com", + "linkedIn": "linkedin.com/in/janeyou94", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459569" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Sojo", + "name": "Irina Khafizova", + "email": "irinakhafi@gmail.com", + "linkedIn": "https://www.linkedin.com/in/irina-khafizova/", + "campus": "NYC / ECRI", + "cohort": "38", + "jobTitle": "Frontend software engineer", + "industry": "Hospitality", + "cities": ["Sรฃo Paulo", "Atlanta", "Los Angeles"], + "_id": { + "$oid": "6674c30595590f9fd945956a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Solera Health", + "name": "Joel Park", + "email": "Joelpark97@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joelprkk/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Los Angeles"], + "_id": { + "$oid": "6674c30595590f9fd945956b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Solid State Scientific Corporation", + "name": "Tadd LeRocque", + "email": "t.lerocque@gmail.com", + "linkedIn": "https://www.linkedin.com/in/taddlerocque/", + "campus": "NYC / ECRI", + "cohort": "40", + "jobTitle": "DevOps Software Developer", + "industry": "Data/Analytics/Cloud", + "cities": ["Houston", "Phoenix", "Fresno"], + "_id": { + "$oid": "6674c30595590f9fd945956c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Solo", + "name": "Carly Yarnell", + "email": "carly.yarnell21@gmail.com", + "linkedIn": "https://www.linkedin.com/in/carly-yarnell/", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Lincoln", "Anaheim", "Madison"], + "_id": { + "$oid": "6674c30595590f9fd945956d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Solvent", + "name": "Adam Seery", + "email": "acseery@gmail.com", + "linkedIn": "www.linkedin.com/in/adam-seery", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Virginia Beach"], + "_id": { + "$oid": "6674c30595590f9fd945956e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "SOMA Global", + "name": "Adam Moore", + "email": "moore76sc@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adam-moore-se/", + "campus": "FTRI", + "cohort": "6", + "jobTitle": "Platform Engineer", + "industry": "Public Safety", + "cities": ["Newark", "Laredo", "San Antonio"], + "_id": { + "$oid": "6674c30595590f9fd945956f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Sonos", + "name": "Austin Andrews", + "email": "austinandrews@berkeley.edu", + "linkedIn": "https://www.linkedin.com/in/austinandrews17", + "campus": "FTRI", + "cohort": "7", + "jobTitle": "Release Engineer", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459570" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Sonos", + "name": "Alexander Nance", + "email": "balexn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/balexandernance", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Senior Software Engineer", + "industry": "Consumer Electronics", + "cities": ["Tucson", "Louisville", "Corpus Christi"], + "_id": { + "$oid": "6674c30595590f9fd9459571" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Sonr", + "name": "Ian Judd", + "email": "Iankimjudd@gmail.com", + "linkedIn": "https://www.linkedin.com/in/iankjudd/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Full Stack Developer", + "industry": "Web3", + "cities": ["Indianapolis"], + "_id": { + "$oid": "6674c30595590f9fd9459572" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Sourcepoint Technologies", + "name": "Adam straus", + "email": "a.straus1@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Software Engineer", + "industry": "SaaS", + "cities": ["Tokyo", "Paris", "Arlington"], + "_id": { + "$oid": "6674c30595590f9fd9459573" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Southern California Edison (via Sharp Decisions)", + "name": "Jie Yun (Catherine) Cheng", + "email": "chengjieyun59@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cat-cheng/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Sr. Full Stack Developer", + "industry": "Energy", + "cities": ["Raleigh"], + "_id": { + "$oid": "6674c30595590f9fd9459574" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "SparkCognition", + "name": "Harvey Nguyen", + "email": "harveynwynn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/harveynwynn/", + "campus": "LA", + "cohort": "47", + "jobTitle": "Software Engineer II", + "industry": "Artificial intelligence", + "cities": ["Glendale", "Buffalo", "Kansas City"], + "_id": { + "$oid": "6674c30595590f9fd9459575" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "SparrowFi", + "name": "Alex Barbazan", + "email": "Agbarbazan@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Sacramento"], + "_id": { + "$oid": "6674c30595590f9fd9459576" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Spatial Data Logic", + "name": "Thomas Lukasiewicz", + "email": "tlukasiewicz89@gmail.com", + "linkedIn": "https://www.linkedin.com/feed/", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Jersey City", "Oklahoma City", "San Jose"], + "_id": { + "$oid": "6674c30595590f9fd9459577" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Spearmint", + "name": "Chloe Aribo", + "email": "chloearibo92@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chloe-aribo/", + "campus": "LA", + "cohort": "33", + "jobTitle": "Senior Software Engineer", + "industry": "Security", + "cities": ["Glendale", "Sรฃo Paulo"], + "_id": { + "$oid": "6674c30595590f9fd9459578" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "SpecTrust", + "name": "Tehya Rassman", + "email": "tehyaarassman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tehya-rassman/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Software Engineer", + "industry": "Cybercrime", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459579" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Specturm", + "name": "Sanjay Lavingia", + "email": "SanjayLavingia@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sanjay-lavingia/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Software Engineer", + "industry": "Telecom", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945957a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Spirent Communications", + "name": "Dylan Bury", + "email": "dylanbury@protonmail.com", + "linkedIn": "https://www.linkedin.com/in/dylanbury/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer", + "industry": "Telecommunications", + "cities": ["Arlington", "Saint Paul"], + "_id": { + "$oid": "6674c30595590f9fd945957b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Splash Financial", + "name": "Bahram Bagherzadeh", + "email": "bjbagher@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bbagher/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Senior Software Engineer", + "industry": "Finance", + "cities": ["Arlington"], + "_id": { + "$oid": "6674c30595590f9fd945957c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Splunk", + "name": "Caroline Kimball", + "email": "kimballcaroline@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kimballcaroline/", + "campus": "NYC / ECRI", + "cohort": "37", + "jobTitle": "Software Engineer", + "industry": "Security/Data Privacy", + "cities": ["Newark", "Los Angeles", "Stockton"], + "_id": { + "$oid": "6674c30595590f9fd945957d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Spotify", + "name": "Aaron Bart-Addison", + "email": "abaddison16@gmail.com", + "linkedIn": "https://www.linkedin.com/in/abaddison16/", + "campus": "NYC", + "cohort": "6", + "jobTitle": "Web Engineer II", + "industry": "", + "cities": ["Toledo", "Orlando", "Santa Ana"], + "_id": { + "$oid": "6674c30595590f9fd945957e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Spotify", + "name": "Amanda Flink", + "email": "avflinkette@gmail.com", + "linkedIn": "https://www.linkedin.com/in/amandaflink/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Senior Web Engineer", + "industry": "Entertainment", + "cities": ["Toledo", "Lincoln", "Fort Wayne"], + "_id": { + "$oid": "6674c30595590f9fd945957f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Spotify", + "name": "Chris Kopcow", + "email": "ckopcow@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christopherkopcow/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Technical Writer", + "industry": "Entertainment", + "cities": ["Mexico City", "London"], + "_id": { + "$oid": "6674c30595590f9fd9459580" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Spotify", + "name": "Trevor Gray", + "email": "trevor.m.gray@outlook.com", + "linkedIn": "https://www.linkedin.com/mwlite/in/trev-gray", + "campus": "FTRI", + "cohort": "7", + "jobTitle": "Frontend Engineer", + "industry": "Entertainment", + "cities": ["Tucson", "Tulsa"], + "_id": { + "$oid": "6674c30595590f9fd9459581" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Spring Health", + "name": "Kassandra Meyer", + "email": "kassandram022@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kassandram/", + "campus": "LA", + "cohort": "31", + "jobTitle": "Frontend Engineer", + "industry": "Healthcare", + "cities": ["El Paso", "Chicago"], + "_id": { + "$oid": "6674c30595590f9fd9459582" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "SpringHealth", + "name": "Matthew Huang", + "email": "matthewhuang24@gmail.com", + "linkedIn": "https://www.linkedin.com/in/matthew-huang/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Miami", "Cincinnati"], + "_id": { + "$oid": "6674c30595590f9fd9459583" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Spruce", + "name": "Edward Ryan", + "email": "15ryane@gmail.com", + "linkedIn": "https://www.linkedin.com/in/edward-ryan/", + "campus": "LA", + "cohort": "27", + "jobTitle": "Software Engineer", + "industry": "Hospitality Services", + "cities": ["Lincoln", "Norfolk", "San Francisco"], + "_id": { + "$oid": "6674c30595590f9fd9459584" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "SPS Health", + "name": "Mark Teets", + "email": "markteets@gmail.com", + "linkedIn": "https://www.linkedin.com/in/markteets/", + "campus": "FTRI / CTRI", + "cohort": "15", + "jobTitle": "Application Developer", + "industry": "Healthtech/Healthcare", + "cities": ["Chandler", "Chesapeake"], + "_id": { + "$oid": "6674c30595590f9fd9459585" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Spur Reply", + "name": "Jeffrey Pettis", + "email": "jeffrey.pettis@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jeffreypettis/", + "campus": "PTRI", + "cohort": "9", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Glendale", "Oakland", "San Antonio"], + "_id": { + "$oid": "6674c30595590f9fd9459586" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Square", + "name": "Christopher Akinrinade", + "email": "chris.akinrinade@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christopher-akinrinade/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Glendale", "Louisville"], + "_id": { + "$oid": "6674c30595590f9fd9459587" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Square", + "name": "Juan Espinoza", + "email": "espinozajuan562@gmail.com", + "linkedIn": "https://www.linkedin.com/in/espinoza-juan/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["St. Louis", "Chula Vista", "Miami"], + "_id": { + "$oid": "6674c30595590f9fd9459588" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Square Root, Inc.", + "name": "Angel Vega", + "email": "angelvega85@gmail.com", + "linkedIn": "https://www.linkedin.com/in/angel-e-vega", + "campus": "LA", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Information Technology", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459589" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "STA Group", + "name": "Gabriel Machado", + "email": "bielchristo@hotmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "42", + "jobTitle": "UI Engineer", + "industry": "Consulting", + "cities": ["San Jose", "Los Angeles", "Norfolk"], + "_id": { + "$oid": "6674c30595590f9fd945958a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Stacked Invest", + "name": "Ross Lamerson", + "email": "ross.lamerson@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lamerson28/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Software Engineer - Front End", + "industry": "Cryptocurrency / Fintech", + "cities": ["Jersey City", "Gilbert", "Laredo"], + "_id": { + "$oid": "6674c30595590f9fd945958b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Standard Bots", + "name": "Arshia Masih", + "email": "arshia.masih@gmail.com", + "linkedIn": "https://www.linkedin.com/in/arshiamasih/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Robotics / Industrial Automation", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945958c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Starbucks", + "name": "Sam Carter", + "email": "sammahcarter@gmail.com", + "linkedIn": "https://linkedin.com/in/cartersamj", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Software Engineer", + "industry": "Restaurant, Food, and Beverage", + "cities": ["Seattle"], + "_id": { + "$oid": "6674c30595590f9fd945958d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Stardust", + "name": "James Tu", + "email": "tu.james@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jamestu2000/", + "campus": "LA", + "cohort": "21", + "jobTitle": "Full Stack Engineer", + "industry": "", + "cities": ["Buffalo", "Columbus"], + "_id": { + "$oid": "6674c30595590f9fd945958e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "State Farm", + "name": "James Manahan", + "email": "manahanjames@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/jamesmanahan/", + "campus": "LA", + "cohort": "34", + "jobTitle": "Software Developer", + "industry": "Insurance", + "cities": ["Oklahoma City"], + "_id": { + "$oid": "6674c30595590f9fd945958f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Steel Perlot", + "name": "Morris Kolman", + "email": "morristskolman@gmail.com", + "linkedIn": "linkedin.com/in/morrykolman", + "campus": "NYOI", + "cohort": "2", + "jobTitle": "Initiative Lead: Social Media", + "industry": "Software / Tech", + "cities": ["Pittsburgh", "St. Petersburg"], + "_id": { + "$oid": "6674c30595590f9fd9459590" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "SteelHouse", + "name": "Jordan Betzer", + "email": "jordanbetzer@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jordanbetzer/", + "campus": "LA", + "cohort": "26", + "jobTitle": "Software Engineer - Backend", + "industry": "Healthcare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459591" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "SteelHouse", + "name": "Taylor Burrington", + "email": "taylor.burrington@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Ad Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459592" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Stem Disintermedia Inc.", + "name": "Mia Huynh", + "email": "mia@stem.is", + "linkedIn": "https://www.linkedin.com/in/miamyhuynh/", + "campus": "LA", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Columbus", "Miami"], + "_id": { + "$oid": "6674c30595590f9fd9459593" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Storyblocks", + "name": "Eric Gomez", + "email": "Ergomez0201@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eric-gomez", + "campus": "LA / WCRI", + "cohort": "48", + "jobTitle": "Senior Software Engineer", + "industry": "Software / Tech", + "cities": ["Jacksonville", "Long Beach"], + "_id": { + "$oid": "6674c30595590f9fd9459594" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Streamlit", + "name": "Sam Haar", + "email": "samhaar@gmail.com", + "linkedIn": "https://www.linkedin.com/in/samhaar/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Software Engineer", + "industry": "ML / Data / Open Source", + "cities": ["Aurora"], + "_id": { + "$oid": "6674c30595590f9fd9459595" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Stride", + "name": "Kaitlin Zhang", + "email": "Kaitlin.Zhang@owasp.org", + "linkedIn": "https://www.linkedin.com/in/kaizengrowth/", + "campus": "FTRI", + "cohort": "9", + "jobTitle": "Software Engineer, Writer/Instructor", + "industry": "Software / Tech", + "cities": ["Oakland", "Houston", "San Francisco"], + "_id": { + "$oid": "6674c30595590f9fd9459596" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Stride Health, Inc.", + "name": "Ben Kwak", + "email": "benjamin.h.kwak@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ben-kwak/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Engineer, Full Stack", + "industry": "Insurance", + "cities": ["Tokyo", "St. Petersburg"], + "_id": { + "$oid": "6674c30595590f9fd9459597" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Strider Technologies", + "name": "Timothy Chang", + "email": "timchang87@gmail.com", + "linkedIn": "https://www.linkedin.com/in/timchang87", + "campus": "PTRI", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Anchorage"], + "_id": { + "$oid": "6674c30595590f9fd9459598" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Stroz Friedberg", + "name": "Madalyn Baehre", + "email": "mmbaehre@gmail.com", + "linkedIn": "https://www.linkedin.com/in/madalynbaehre/", + "campus": "LA", + "cohort": "20", + "jobTitle": "Full-Stack Software Developer", + "industry": "", + "cities": ["Colorado Springs", "Buffalo", "Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd9459599" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Stuff", + "name": "Joseph Toledano", + "email": "joseph.a.toledano@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joetoledano/", + "campus": "NYC", + "cohort": "23", + "jobTitle": "Software Developer", + "industry": "On-Demand Work", + "cities": ["Chula Vista"], + "_id": { + "$oid": "6674c30595590f9fd945959a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Stuller, Inc.", + "name": "Sarah Moosa", + "email": "14sbethm@gmail.com", + "linkedIn": "https://linkedin.com/in/sarah-e-moosa", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Full Stack Developer", + "industry": "Retail", + "cities": ["Tampa", "San Jose", "El Paso"], + "_id": { + "$oid": "6674c30595590f9fd945959b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Stylitics", + "name": "Tania Lind", + "email": "tania.o.lind@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lind-tania/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Senior Frontend Engineer", + "industry": "Fashion", + "cities": ["Fort Worth"], + "_id": { + "$oid": "6674c30595590f9fd945959c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Suki AI", + "name": "Edward Shei", + "email": "edwardshei@gmail.com", + "linkedIn": "https://www.linkedin.com/in/edwardshei/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Engineer", + "industry": "Medical Transcription", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945959d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Surfside", + "name": "Alec Below", + "email": "alecbelow@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "17", + "jobTitle": "Software Engineer - Platform Integration", + "industry": "Advertising", + "cities": ["Lubbock"], + "_id": { + "$oid": "6674c30595590f9fd945959e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Suuchi.com", + "name": "David Kim", + "email": "davidkim024@gmail.com", + "linkedIn": "https://www.linkedin.com/in/davidkim024/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Manufacturing", + "cities": ["Saint Paul", "Stockton", "Mexico City"], + "_id": { + "$oid": "6674c30595590f9fd945959f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Sweetgreen", + "name": "Emilia Brizuela-Nothaft", + "email": "emiliacarmel@gmail.com", + "linkedIn": "https://www.linkedin.com/in/emilia-brizuela-nothaft/", + "campus": "LA", + "cohort": "26", + "jobTitle": "Software Engineer", + "industry": "Food", + "cities": ["Albuquerque", "St. Petersburg"], + "_id": { + "$oid": "6674c30595590f9fd94595a0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Sweetgreen", + "name": "Melody Chai", + "email": "melodychai2@gmail.com", + "linkedIn": "https://www.linkedin.com/in/melodychai/", + "campus": "LA", + "cohort": "26", + "jobTitle": "Engineer I", + "industry": "Fast Casual Dining", + "cities": ["Cincinnati", "Columbus"], + "_id": { + "$oid": "6674c30595590f9fd94595a1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Swisher International, Inc", + "name": "John Howell", + "email": "tsjohnnyh@gmail.com", + "linkedIn": "https://www.linkedin.com/in/johnny-r-howell/", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "eCommerce Development Supervisor", + "industry": "Other", + "cities": ["Aurora", "Tampa"], + "_id": { + "$oid": "6674c30595590f9fd94595a2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Swoon", + "name": "Tyler Wilson", + "email": "wilsontyler95@gmail.com", + "linkedIn": "https://www.linkedin.com/in/twilsontech", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Henderson", "Jersey City"], + "_id": { + "$oid": "6674c30595590f9fd94595a3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Synapse FI", + "name": "Mike Huynh", + "email": "mhuynh517@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mikehuynh28/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Front-End Engineer II", + "industry": "Fintech", + "cities": ["Sacramento", "Colorado Springs", "Chandler"], + "_id": { + "$oid": "6674c30595590f9fd94595a4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "T-Mobile", + "name": "Khang Sabre-Nguyen", + "email": "Klsabren.7@gmail.com", + "linkedIn": "https://www.linkedin.com/in/khang-sabre-nguyen/", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Software Engineer", + "industry": "Telecommunications", + "cities": ["St. Louis", "Glendale"], + "_id": { + "$oid": "6674c30595590f9fd94595a5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "T-mobile", + "name": "Miaowen Zeng", + "email": "zmw0525@gmail.com", + "linkedIn": "www.linkedin.com/in/miaowen-zeng", + "campus": "FTRI / CTRI", + "cohort": "7", + "jobTitle": "Associate Software Engineer", + "industry": "Telecommunications", + "cities": ["Portland", "New Orleans", "Lincoln"], + "_id": { + "$oid": "6674c30595590f9fd94595a6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "T. Rowe Price", + "name": "Liam Fontes", + "email": "liamfontes1244@gmail.com", + "linkedIn": "https://www.linkedin.com/in/liam-fontes/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Associate Software Engineer", + "industry": "Fintech", + "cities": ["Orlando", "Tokyo"], + "_id": { + "$oid": "6674c30595590f9fd94595a7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "T. Rowe Price", + "name": "Robert Du", + "email": "robert.c.du@gmail.com", + "linkedIn": "https://www.linkedin.com/in/robert-du/", + "campus": "NYC", + "cohort": "26", + "jobTitle": "Mid-Level Software Engineer (contract-to-hire)", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595a8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Tailored Brands", + "name": "Viet Nguyen", + "email": "n.vietqb@gmail.com", + "linkedIn": "https://www.linkedin.com/in/viet-nguyen-2280491b2/", + "campus": "LA", + "cohort": "45", + "jobTitle": "UI Engineer", + "industry": "Retail", + "cities": ["Sรฃo Paulo", "Tucson"], + "_id": { + "$oid": "6674c30595590f9fd94595a9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Take Command Health", + "name": "Katie Janzen", + "email": "katiekennerjanzen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/katie-janzen/", + "campus": "NYC", + "cohort": "32", + "jobTitle": "Front End Developer", + "industry": "Insurance", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595aa" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Talage", + "name": "Parker Hutcheson", + "email": "pdhutcheson@gmail.com", + "linkedIn": "https://www.linkedin.com/in/parkerhutcheson/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Senior Software Engineer", + "industry": "Insurtech", + "cities": ["Austin"], + "_id": { + "$oid": "6674c30595590f9fd94595ab" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Tallied", + "name": "Abeer Faizan", + "email": "abeerfaizan@gmail.com", + "linkedIn": "https://www.linkedin.com/in/abeerfaizan/", + "campus": "LA", + "cohort": "47", + "jobTitle": "Software Engineer 2", + "industry": "Financial Services & Digital Payments", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595ac" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Tandem Chat (Tandem Communications Inc.)", + "name": "John Jongsun Suh", + "email": "john.jongsun.suh@pm.me", + "linkedIn": "https://linkedin.com/in/john-jongsun-suh", + "campus": "LA", + "cohort": "44", + "jobTitle": "Software Engineer", + "industry": "Communication/Productivity Software", + "cities": ["San Francisco", "Winston-Salem"], + "_id": { + "$oid": "6674c30595590f9fd94595ad" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Tapestry", + "name": "Natalie Umanzor", + "email": "umanzor2949@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nmczormick/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "E-Commerce", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595ae" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Target", + "name": "Courtney Doss", + "email": "777.catalyst@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "40", + "jobTitle": "Software Engineer", + "industry": "Retail", + "cities": ["Omaha", "Laredo"], + "_id": { + "$oid": "6674c30595590f9fd94595af" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Tatari", + "name": "Natalie Klein", + "email": "natklein3@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nataliesklein/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "TV ads", + "cities": ["Mexico City"], + "_id": { + "$oid": "6674c30595590f9fd94595b0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "TaxNow", + "name": "Tanner Lyon", + "email": "Tannerhlyon@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tannerhlyon", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Software Engineer", + "industry": "Business Tech/Enterprise Tech", + "cities": ["St. Louis"], + "_id": { + "$oid": "6674c30595590f9fd94595b1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "TaxSlayer", + "name": "Katherine Marrow", + "email": "kmcromer1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/katherine-marrow/", + "campus": "PTRI", + "cohort": "9", + "jobTitle": "Full Stack Developer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595b2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Teachers Pay Teachers", + "name": "Courtney Kwong", + "email": "cwkwong95@gmail.com", + "linkedIn": "https://www.linkedin.com/in/courtneywkwong/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Full Stack Engineer", + "industry": "Media", + "cities": ["El Paso", "Newark", "Fort Worth"], + "_id": { + "$oid": "6674c30595590f9fd94595b3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Tech Holding", + "name": "Pablo Lee", + "email": "lee.pablo.e@gmail.com", + "linkedIn": "https://linkedin.com/in/pablo-lee/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Software Engineer", + "industry": "Media & Advertisement", + "cities": ["Scottsdale"], + "_id": { + "$oid": "6674c30595590f9fd94595b4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "TechEmpower", + "name": "Nick Stillman", + "email": "nick.edward.stillman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nick-e-stillman/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Programmer I", + "industry": "Software Development/Consulting", + "cities": ["Wichita", "Miami"], + "_id": { + "$oid": "6674c30595590f9fd94595b5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Technergetics", + "name": "Cody Schexnider", + "email": "codydschexnider@gmail.com", + "linkedIn": "https://www.linkedin.com/in/schexnider/", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Junior Software Engineer", + "industry": "Software / Tech", + "cities": ["Austin", "St. Petersburg", "San Francisco"], + "_id": { + "$oid": "6674c30595590f9fd94595b6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Technergetics", + "name": "Angel Giron", + "email": "angel.c.giron1@gmail.con", + "linkedIn": "https://www.linkedin.com/in/acgiron/", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Newark", "St. Petersburg", "Virginia Beach"], + "_id": { + "$oid": "6674c30595590f9fd94595b7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "TEKsystems for AMEX", + "name": "Connor Rose Delisle", + "email": "connorrose.delisle@gmail.com", + "linkedIn": "https://www.linkedin.com/in/connorrosedelisle/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Developer", + "industry": "Banking", + "cities": ["Long Beach", "Nashville", "Toledo"], + "_id": { + "$oid": "6674c30595590f9fd94595b8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Teleport", + "name": "Cole Styron", + "email": "colestyron@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cole-styron/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Software Engineer II", + "industry": "Tech", + "cities": ["Albuquerque"], + "_id": { + "$oid": "6674c30595590f9fd94595b9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Tempus", + "name": "Eterna tsai", + "email": "One.eternity@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eterna/", + "campus": "NYC", + "cohort": "7", + "jobTitle": "Software engineer", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595ba" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Tend", + "name": "Christopher Johnson", + "email": "cjbeats@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thecjjohnson/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Junior Software Developer", + "industry": "Dentistry", + "cities": ["Cleveland"], + "_id": { + "$oid": "6674c30595590f9fd94595bb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "Terminus", + "name": "Jonathan Ascencio", + "email": "Jonascencio1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonascencio/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Engineer", + "industry": "Marketing Tevh", + "cities": ["Omaha", "Norfolk"], + "_id": { + "$oid": "6674c30595590f9fd94595bc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "The Action Network", + "name": "Diana Li", + "email": "dianalicarrasco@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dianalicarrasco/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Software Engineer II", + "industry": "Entertainment", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595bd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "The Action Network", + "name": "Mahmoud Hmaidi", + "email": "mhmaidi789@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mahmoud-hmaidi-mo/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software Engineer II", + "industry": "Entertainment", + "cities": ["Toronto"], + "_id": { + "$oid": "6674c30595590f9fd94595be" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "The Charles Stark Draper Laboratory, Inc.", + "name": "Kelsey Flynn", + "email": "flynn.kelseyelizabeth@gmail.com", + "linkedIn": "www.linkedin.com/in/kelseyeflynn/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Member of Technical Staff in Fullstack Web Group", + "industry": "Research", + "cities": ["Lincoln"], + "_id": { + "$oid": "6674c30595590f9fd94595bf" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "The Coates Group", + "name": "Brandon Tran", + "email": "btran140@gmail.com", + "linkedIn": "https://www.linkedin.com/in/btran140", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Typescript Full Stack Engineer", + "industry": "Software / Tech", + "cities": ["Chula Vista", "Fort Worth"], + "_id": { + "$oid": "6674c30595590f9fd94595c0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "The Cru", + "name": "Brooke Luro", + "email": "lurob@me.com", + "linkedIn": "https://www.linkedin.com/in/brooke-luro-4413046a/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "Professional Training & Coaching", + "cities": ["Louisville", "Cleveland", "Orlando"], + "_id": { + "$oid": "6674c30595590f9fd94595c1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "The Edge Treatment Center", + "name": "Joey Ma", + "email": "joeyma@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joeyma/", + "campus": "LA / WCRI", + "cohort": "47", + "jobTitle": "Web Developer", + "industry": "Healthcare", + "cities": ["Santa Ana"], + "_id": { + "$oid": "6674c30595590f9fd94595c2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "The Farm Project", + "name": "Quoc Bui", + "email": "quocbui@gmail.com", + "linkedIn": "https://www.linkedin.com/in/buiquoc/", + "campus": "LA", + "cohort": "26", + "jobTitle": "Lead Web UI Engineer?", + "industry": "Telecommunications", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595c3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "The Farmerโ€™s Dog", + "name": "Willem Rosenthal", + "email": "willemrosenthal@gmail.com", + "linkedIn": "https://www.linkedin.com/in/willem-rosenthal", + "campus": "NYOI", + "cohort": "1", + "jobTitle": "Software Engineer III", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595c4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "the guarantors", + "name": "Dmitriy Levy", + "email": "dmitriylevy01@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dmitriy-levy/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595c5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "The Home Depot", + "name": "Eric Han", + "email": "eric.j.h92@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eric-j-han/", + "campus": "LA / WCRI", + "cohort": "48", + "jobTitle": "Front-End Developer", + "industry": "Retail", + "cities": ["Saint Paul"], + "_id": { + "$oid": "6674c30595590f9fd94595c6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "The Home Depot", + "name": "Max Nikitin", + "email": "teachandtravelcn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/maxnikitin23/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Full Stack Software Engineer", + "industry": "Construction/retail", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595c7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "The New York Times", + "name": "Karl Eden", + "email": "karl94e@gmail.com", + "linkedIn": "www.linkedin.com/in/karleden", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Software Engineer", + "industry": "News/Entertainment/Streaming Platforms", + "cities": ["Indianapolis", "Mexico City"], + "_id": { + "$oid": "6674c30595590f9fd94595c8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "The New Yorker", + "name": "Julien Devlin", + "email": "juliendevlin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/juliendevlin/", + "campus": "NYC / ECRI", + "cohort": "38", + "jobTitle": "Software Developer", + "industry": "News/Entertainment/Streaming Platforms", + "cities": ["Saint Paul", "Mexico City", "Cleveland"], + "_id": { + "$oid": "6674c30595590f9fd94595c9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "The Perlman Clinic", + "name": "Louis Sheid", + "email": "louisxsheid@gmail.com", + "linkedIn": "https://www.linkedin.com/in/louisxsheid/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Full Stack Developer", + "industry": "Healthcare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595ca" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "The Prospector Theater", + "name": "Kelly Cuevas", + "email": "cuev73@live.com", + "linkedIn": "https://www.linkedin.com/in/kelly-cuevas/", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Lead Frontend Engineer", + "industry": "Social Impact/Nonprofit", + "cities": ["Philadelphia", "Wichita"], + "_id": { + "$oid": "6674c30595590f9fd94595cb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "The Trevor Project / Tecnolochicas Pro", + "name": "Miranda Jaramillo Morales", + "email": "mirandajaramillomorales@gmail.com", + "linkedIn": "https://www.linkedin.com/in/miranda-jaramillo/", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Software Engineer II / Software Engineering Mentor", + "industry": "Software / Tech", + "cities": ["Madison", "Sydney"], + "_id": { + "$oid": "6674c30595590f9fd94595cc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "The Walt Disney Company", + "name": "Gabriel Machado", + "email": "bielchristo@hotmail.com", + "linkedIn": "https://www.linkedin.com/in/bielchristo/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer", + "industry": "Entertainment", + "cities": ["Detroit", "Kansas City"], + "_id": { + "$oid": "6674c30595590f9fd94595cd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.070Z" + }, + "__v": 0 + }, + { + "company": "The Walt Disney Company", + "name": "Ryan London", + "email": "ryel590@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ryanlondon/", + "campus": "LA", + "cohort": "18", + "jobTitle": "Senior Software Engineer", + "industry": "IT", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595ce" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "The Walt Disney Company", + "name": "Shane Taylor", + "email": "shaneallantaylor@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shane-allan-taylor/", + "campus": "LA", + "cohort": "27", + "jobTitle": "Software Engineer", + "industry": "Entertainment/Media", + "cities": ["Irving", "Cincinnati", "Arlington"], + "_id": { + "$oid": "6674c30595590f9fd94595cf" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "The Walt Disney Company", + "name": "Yurii Shchyrba", + "email": "yurashchyrba@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yuriishchyrba/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Software Engineer II", + "industry": "Software / Tech", + "cities": ["Scottsdale"], + "_id": { + "$oid": "6674c30595590f9fd94595d0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "The Washington Post", + "name": "Christelle Desire", + "email": "Cdesire20@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christelle-desire/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Full stack engineer", + "industry": "Newsroom", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595d1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "The Wing", + "name": "Xaria Kirtikar", + "email": "xariak91@gmail.com", + "linkedIn": "https://www.linkedin.com/in/xaria/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Engineer", + "industry": "Co-working spaces", + "cities": ["Bakersfield", "Long Beach", "Tokyo"], + "_id": { + "$oid": "6674c30595590f9fd94595d2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "The X Company", + "name": "Roy Quintana", + "email": "rolandquintana1991@gmail.com", + "linkedIn": "https://www.linkedin.com/in/royquintana/", + "campus": "LA", + "cohort": "28", + "jobTitle": "Senior Software Engineer", + "industry": "Real Estate", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595d3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "TheMuse", + "name": "Franklin pinnock", + "email": "pinnockf@gmail.com", + "linkedIn": "https://www.linkedin.com/in/pinnockf/", + "campus": "NYC", + "cohort": "9", + "jobTitle": "Full-Stack Engineer", + "industry": "Robotics", + "cities": ["San Jose", "Beijing"], + "_id": { + "$oid": "6674c30595590f9fd94595d4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Thomson Reuters", + "name": "Li Cheng", + "email": "lilybearcheng@gmail.com", + "linkedIn": "https://www.linkedin.com/in/li-cheng-76890540/", + "campus": "LA / WCRI", + "cohort": "50", + "jobTitle": "Integration Engineer", + "industry": "IT Services", + "cities": ["Detroit"], + "_id": { + "$oid": "6674c30595590f9fd94595d5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "ThreeKit", + "name": "Alison Fay", + "email": "aliglass13@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alison-fay/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Tucson"], + "_id": { + "$oid": "6674c30595590f9fd94595d6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Thriveworks", + "name": "Alma Eyre", + "email": "aselunar@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alma-eyre/", + "campus": "NYC / ECRI", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Omaha"], + "_id": { + "$oid": "6674c30595590f9fd94595d7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Thriveworks", + "name": "Charissa Ramirez", + "email": "chawissa@gmail.com", + "linkedIn": "https://linkedin.com/in/chawissa", + "campus": "NYC / ECRI", + "cohort": "32", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595d8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Ticket Bridge", + "name": "Travis Frank", + "email": "travis@travismfrank.com", + "linkedIn": "https://www.linkedin.com/in/travis-m-frank/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Founder", + "industry": "Live Events", + "cities": ["Anaheim", "Las Vegas", "Scottsdale"], + "_id": { + "$oid": "6674c30595590f9fd94595d9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "TikTok", + "name": "James Cross", + "email": "jamespvcross@gmail.com", + "linkedIn": "https://www.linkedin.com/in/james-p-cross1/", + "campus": "NYC", + "cohort": "28", + "jobTitle": "Software Engineer", + "industry": "Social Media", + "cities": ["Cleveland", "Tucson"], + "_id": { + "$oid": "6674c30595590f9fd94595da" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "TikTok", + "name": "Jason Speare", + "email": "jcspeare@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jason-speare", + "campus": "LA", + "cohort": "41", + "jobTitle": "Site Reliability Engineer", + "industry": "Video Social Networking", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595db" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Tinder", + "name": "Harrison Nam", + "email": "harrison.j.nam@gmail.com", + "linkedIn": "https://www.linkedin.com/in/harrison-nam/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer", + "industry": "Social", + "cities": ["Laredo", "Tulsa", "Winston-Salem"], + "_id": { + "$oid": "6674c30595590f9fd94595dc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Tinder", + "name": "Harrison Nam", + "email": "harrison.j.nam@gmail.com", + "linkedIn": "https://www.linkedin.com/in/harrison-nam/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer II, Web Development", + "industry": "Dating", + "cities": ["Lincoln", "Bakersfield"], + "_id": { + "$oid": "6674c30595590f9fd94595dd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Tinder", + "name": "Serge Vartanov", + "email": "vartanov.s@gmail.com", + "linkedIn": "https://www.linkedin.com/in/svartanov/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Senior Backend Engineer", + "industry": "", + "cities": ["Mexico City"], + "_id": { + "$oid": "6674c30595590f9fd94595de" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Tixologi", + "name": "Mark Nichting", + "email": "mtnichting@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mark-nichting/", + "campus": "LA / WCRI", + "cohort": "53", + "jobTitle": "Frontend Engineer", + "industry": "Blockchain/Web3", + "cities": ["Irvine", "North Las Vegas", "Fort Worth"], + "_id": { + "$oid": "6674c30595590f9fd94595df" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Toast Inc", + "name": "Denys Dekhtiarenko", + "email": "dekhtiarenko.d@gmail.com", + "linkedIn": "https://www.linkedin.com/in/denysdekhtiarenko/", + "campus": "NYC", + "cohort": "18", + "jobTitle": "Software Engineer II", + "industry": "Restaurant software", + "cities": ["Greensboro"], + "_id": { + "$oid": "6674c30595590f9fd94595e0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "TodayTix Group", + "name": "Xiao Li", + "email": "lixtong@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lixiaotong/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Associate Software Engineer", + "industry": "Entertainment", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595e1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "TomoCredit", + "name": "Ramtin Khoee", + "email": "Ramtin.khoee@gmail.com", + "linkedIn": "https://www.linkedin.com/mwlite/in/ramtinkhoee", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Toledo", "Atlanta"], + "_id": { + "$oid": "6674c30595590f9fd94595e2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Topologe (working with the Air Force)", + "name": "Joseph Michael Corrado", + "email": "joeyycorrss@gmail.com", + "linkedIn": "https://www.linkedin.com/in/josephmichaelcorrado/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Senior Software Engineer", + "industry": "Web Dev for Air Force", + "cities": ["Cleveland", "Honolulu"], + "_id": { + "$oid": "6674c30595590f9fd94595e3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Tortus", + "name": "Victor To", + "email": "victorto123@gmail.com", + "linkedIn": "https://www.linkedin.com/in/victorto1/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer", + "industry": "Real Estate Tech", + "cities": ["Dallas", "Albuquerque", "Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd94595e4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Toucan", + "name": "Isaac Durand", + "email": "isaac.durand@gmail.com", + "linkedIn": "https://www.linkedin.com/in/isaacdurand", + "campus": "LA", + "cohort": "5", + "jobTitle": "Senior Engineer II", + "industry": "", + "cities": ["Greensboro"], + "_id": { + "$oid": "6674c30595590f9fd94595e5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Toucan", + "name": "Jane Kim", + "email": "jane.minhyung.kim@gmail.com", + "linkedIn": "https://www.linkedin.com/in/janeminhyungkim/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Software Engineer", + "industry": "Education tools", + "cities": ["Honolulu", "Reno"], + "_id": { + "$oid": "6674c30595590f9fd94595e6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Toyota", + "name": "Melanie Forbes", + "email": "mforbes12@gmail.com", + "linkedIn": "https://www.linkedin.com/in/melanie-forbes-/", + "campus": "FTRI / CTRI", + "cohort": "12", + "jobTitle": "Software Engineer", + "industry": "Automotive", + "cities": ["Lubbock", "Glendale"], + "_id": { + "$oid": "6674c30595590f9fd94595e7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Toyota", + "name": "Emily Hoang", + "email": "ethlin4@gmail.com", + "linkedIn": "https://www.linkedin.com/in/emilyhoang", + "campus": "FTRI / CTRI", + "cohort": "14", + "jobTitle": "Software Engineer", + "industry": "Automotive", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595e8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "TradeAlly", + "name": "Adepeju Orefejo", + "email": "adepeju.kayode@gmail.com", + "linkedIn": "https://www.linkedin.com/adepeju-orefejo", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Backend Engineer", + "industry": "Software / Tech", + "cities": ["Orlando", "Jersey City"], + "_id": { + "$oid": "6674c30595590f9fd94595e9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Travelers Companies Inc.", + "name": "Dylan Li", + "email": "dyli797@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dli107/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Software Engineer", + "industry": "Insurance", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595ea" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Trend micro", + "name": "Daniel Balistocky", + "email": "thestinx@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dannyb1983", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software engineer", + "industry": "Web security", + "cities": ["Dallas", "Durham"], + "_id": { + "$oid": "6674c30595590f9fd94595eb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "TreviPay", + "name": "Utkarsh Uppal", + "email": "utkarshuppal@gmial.com", + "linkedIn": "https://www.linkedin.com/in/utkarshuppal/", + "campus": "LA / WCRI", + "cohort": "55", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Corpus Christi", "Washington", "Philadelphia"], + "_id": { + "$oid": "6674c30595590f9fd94595ec" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Tribe Labs Inc.", + "name": "Alexander Landeros", + "email": "alexander.landeros1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alexander-landeros/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Frontend Software Engineer", + "industry": "Communication Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595ed" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Trineo", + "name": "Rebecca Viner", + "email": "rtviner@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rtviner/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Engineer II", + "industry": "Software Consultancy", + "cities": ["Mesa"], + "_id": { + "$oid": "6674c30595590f9fd94595ee" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Tripadvisor", + "name": "Jake Bradbeer", + "email": "jakebradbeer@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jacobbradbeer/", + "campus": "LA", + "cohort": "49", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595ef" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "TripleLift", + "name": "Arron Nestor", + "email": "arronnestor@gmail.com", + "linkedIn": "https://www.linkedin.com/in/arron-nestor/", + "campus": "PTRI", + "cohort": "2", + "jobTitle": "Cloud Infrastructure Engineer", + "industry": "Ad-Tech", + "cities": ["Lexington", "Boston"], + "_id": { + "$oid": "6674c30595590f9fd94595f0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Triplelift", + "name": "Kia Colbert", + "email": "colber16@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kiacolbert/", + "campus": "NYC", + "cohort": "9", + "jobTitle": "Engineer I", + "industry": "Social Impact", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595f1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "True Tickets", + "name": "Alesi-Andreya Ladas", + "email": "alesiladas@gmail.com", + "linkedIn": "https://www.linkedin.com/in/alesiladas/", + "campus": "NYC", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Madison"], + "_id": { + "$oid": "6674c30595590f9fd94595f2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "TrueCar", + "name": "Calvin Cao", + "email": "jtcao430@gmail.com", + "linkedIn": "https://www.linkedin.com/in/calvincao9/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Software Engineer II", + "industry": "Marketing", + "cities": ["San Francisco", "St. Louis", "Mexico City"], + "_id": { + "$oid": "6674c30595590f9fd94595f3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "TrueCar", + "name": "Zac Haluza", + "email": "zac.haluza@gmail.com", + "linkedIn": "https://www.linkedin.com/in/zhaluza/", + "campus": "NYC", + "cohort": "17", + "jobTitle": "Software Engineer", + "industry": "Automotive", + "cities": ["St. Louis"], + "_id": { + "$oid": "6674c30595590f9fd94595f4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "trueface.ai", + "name": "Sam Siye Yu", + "email": "yudataguy@gmail.com", + "linkedIn": "https://www.linkedin.com/in/yusiye/", + "campus": "LA", + "cohort": "27", + "jobTitle": "full stack developer", + "industry": "computer vision", + "cities": ["Plano", "Glendale"], + "_id": { + "$oid": "6674c30595590f9fd94595f5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Truepill", + "name": "Justin Baik", + "email": "bij3377@gmail.com", + "linkedIn": "https://www.linkedin.com/in/justin-baik/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Associate Software Engineer", + "industry": "Health Tech", + "cities": ["Albuquerque"], + "_id": { + "$oid": "6674c30595590f9fd94595f6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Truepill", + "name": "Jonah Stewart", + "email": "jonahlstewart@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jonahlstewart/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Associate Software Engineer - Backend", + "industry": "Healthtech", + "cities": ["Lexington"], + "_id": { + "$oid": "6674c30595590f9fd94595f7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Turbonomic", + "name": "Tyler Hurtt", + "email": "TylerAdamHurtt@gmail.com", + "linkedIn": "https://www.linkedin.com/in/TylerHurtt/", + "campus": "LA", + "cohort": "34", + "jobTitle": "Senior Software Engineer", + "industry": "Cloud & Network Monitoring", + "cities": ["Colorado Springs", "Madison"], + "_id": { + "$oid": "6674c30595590f9fd94595f8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Twilio", + "name": "Christopher Docuyanan", + "email": "Christophejd@gmail.com", + "linkedIn": "https://www.linkedin.com/in/cjdocuyanan/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Software Engineer (Personas R&D)", + "industry": "Communications", + "cities": ["Denver"], + "_id": { + "$oid": "6674c30595590f9fd94595f9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Twitch", + "name": "Alice Wong", + "email": "alice.sky.wong@gmail.com", + "linkedIn": "https://www.linkedin.com/in/wong-alice/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Frontend Engineer", + "industry": "IoT", + "cities": ["Sรฃo Paulo", "Toronto", "Columbus"], + "_id": { + "$oid": "6674c30595590f9fd94595fa" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Two Barrels LLC", + "name": "Ryan Rambaran", + "email": "ryanrambaran.fl@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ryan-rambaran/", + "campus": "PTRI", + "cohort": "4", + "jobTitle": "Front End Developer", + "industry": "Software / Tech", + "cities": ["Nashville"], + "_id": { + "$oid": "6674c30595590f9fd94595fb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Two Six Labs", + "name": "Kevin Nam", + "email": "Kevinjnam@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "31", + "jobTitle": "Software Engineer - Front End", + "industry": "Cybersecurity", + "cities": ["Memphis", "Irving", "Saint Paul"], + "_id": { + "$oid": "6674c30595590f9fd94595fc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "TwoSix Labs", + "name": "Darren Napier", + "email": "darren.napier5@gmail.com", + "linkedIn": "https://www.linkedin.com/in/darrencnapier/", + "campus": "LA", + "cohort": "31", + "jobTitle": "Jr. Frontend Developer", + "industry": "Government", + "cities": ["Columbus", "Oakland"], + "_id": { + "$oid": "6674c30595590f9fd94595fd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "TwoThirtySix Labs", + "name": "Tayvon Wright", + "email": "tayvonwright@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tayvon-wright/", + "campus": "NYC", + "cohort": "10", + "jobTitle": "Backend Engineer", + "industry": "Crypto", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd94595fe" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Uber", + "name": "Michael Noah", + "email": "mnoah1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mnoah/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Software Engineer II", + "industry": "Transportation", + "cities": ["Houston", "Pittsburgh", "Lincoln"], + "_id": { + "$oid": "6674c30595590f9fd94595ff" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "UiPath", + "name": "Eric Rodgers", + "email": "ericerodgers@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/erodgers/", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Software Engineer (SE1)", + "industry": "Software / Tech", + "cities": ["Long Beach", "Lexington"], + "_id": { + "$oid": "6674c30595590f9fd9459600" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Umbra", + "name": "Joey Friedman", + "email": "friedman.joey@gmail.com", + "linkedIn": "https://www.linkedin.com/in/joseph-friedman-803803149/", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Software Engineer", + "industry": "Aerospace", + "cities": ["Baltimore"], + "_id": { + "$oid": "6674c30595590f9fd9459601" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Uncommon Schools", + "name": "Taryn A Cunha", + "email": "taryn.cunha@gmail.com", + "linkedIn": "LinkedIn.com/in/taryncunha", + "campus": "NYC / ECRI", + "cohort": "34", + "jobTitle": "Integrationโ€™s Developer", + "industry": "Other", + "cities": ["Mexico City", "Austin"], + "_id": { + "$oid": "6674c30595590f9fd9459602" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Unify Consulting", + "name": "Gibran Haq", + "email": "gibran.haq57@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gibran-haq/", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Senior Consultant", + "industry": "Consulting", + "cities": ["New York", "Bakersfield"], + "_id": { + "$oid": "6674c30595590f9fd9459603" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Uniphore", + "name": "Vince Vu", + "email": "vince.hvu@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vin-vu/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Full Stack Developer", + "industry": "Conversational Service Automation", + "cities": ["Columbus", "Fort Worth", "Colorado Springs"], + "_id": { + "$oid": "6674c30595590f9fd9459604" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Unit21", + "name": "Nicole Ip", + "email": "nicole@unit21.ai", + "linkedIn": "", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer", + "industry": "AI / ML", + "cities": ["Tampa"], + "_id": { + "$oid": "6674c30595590f9fd9459605" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "United Airlines", + "name": "Jordan Jeter", + "email": "jeter.education@gmail.com", + "linkedIn": "linkedin.com/in/jordanrjeter", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Developer - IT", + "industry": "Aerospace", + "cities": ["Tampa"], + "_id": { + "$oid": "6674c30595590f9fd9459606" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "United Power", + "name": "Clifford Harvey", + "email": "cliffharvey06@gmail.com", + "linkedIn": "https://www.linkedin.com/in/clifford-harvey/", + "campus": "LA", + "cohort": "16", + "jobTitle": "Sr Fullstack Developer", + "industry": "", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459607" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "United States Cold Storage Inc", + "name": "Glen Kasoff", + "email": "glen.kasoff@gmail.com", + "linkedIn": "https://www.linkedin.com/in/glen-kasoff", + "campus": "PTRI", + "cohort": "7", + "jobTitle": "Software Developer ERP", + "industry": "Other", + "cities": ["Denver", "Cincinnati", "Portland"], + "_id": { + "$oid": "6674c30595590f9fd9459608" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "University of California", + "name": "Justin Wouters", + "email": "justinwouters@gmail.com", + "linkedIn": "Https://www.linkedin.com/in/justinwouters", + "campus": "FTRI / CTRI", + "cohort": "9", + "jobTitle": "Junior application developer", + "industry": "Other", + "cities": ["Minneapolis", "St. Louis", "Chandler"], + "_id": { + "$oid": "6674c30595590f9fd9459609" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "University of Chicago, Center for the Art of East Asia", + "name": "Greg Panciera", + "email": "gregpanciera@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gregpanciera", + "campus": "LA", + "cohort": "36", + "jobTitle": "Web Developer", + "industry": "Art", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945960a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Unqork", + "name": "Donald Blanc", + "email": "Donaldblanc1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/donald-b/", + "campus": "NYC", + "cohort": "11", + "jobTitle": "Senior Software Engineer", + "industry": "Tech", + "cities": ["Chicago", "Buffalo", "Denver"], + "_id": { + "$oid": "6674c30595590f9fd945960b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Unum ID", + "name": "Allison Roderiques", + "email": "aeroderiques@gmail.com", + "linkedIn": "https://www.linkedin.com/in/allison-roderiques/", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Full Stack Developer", + "industry": "Other", + "cities": ["Gilbert", "Sydney"], + "_id": { + "$oid": "6674c30595590f9fd945960c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Uphold", + "name": "Chelsea Harris", + "email": "chelseaharris137@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chelseaharris23/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Frontend Engineer", + "industry": "Crypto", + "cities": ["Cincinnati", "Fort Wayne"], + "_id": { + "$oid": "6674c30595590f9fd945960d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Upkeep", + "name": "Elie Baik", + "email": "semsemm810@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sae-min-baik", + "campus": "LA", + "cohort": "34", + "jobTitle": "Software Engineer", + "industry": "CRM", + "cities": ["Chesapeake", "Beijing", "Bakersfield"], + "_id": { + "$oid": "6674c30595590f9fd945960e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "UST", + "name": "Dhruv Thota", + "email": "dthota8@gmail.com", + "linkedIn": "https://linkedin.com/in/dhruv-thota", + "campus": "NYC / ECRI", + "cohort": "36", + "jobTitle": "Software Engineer", + "industry": "Software Solutions/Developer Tools", + "cities": ["Detroit", "Durham", "Norfolk"], + "_id": { + "$oid": "6674c30595590f9fd945960f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "VacationRenter", + "name": "Michele Moody", + "email": "moody.lillian@gmail.com", + "linkedIn": "https://www.linkedin.com/in/milmoody/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Travel", + "cities": ["Greensboro", "Colorado Springs", "San Francisco"], + "_id": { + "$oid": "6674c30595590f9fd9459610" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Valor Performance", + "name": "Marco Tulio Gonzalez", + "email": "marco.t.gonzalez15@gmail.com", + "linkedIn": "https://www.linkedin.com/in/marcogonzalez2015/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Senior Software Engineer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459611" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "VanGo", + "name": "Nicolas Venegas", + "email": "nicolasvenegasparker@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nicolas-venegas-parker/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Mobile Software Engineer", + "industry": "Consumer / Transportation", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459612" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Vanguard", + "name": "Ian Kila", + "email": "ian.nie.kila@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ian-kila", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Application Developer", + "industry": "Software / Tech", + "cities": ["Henderson"], + "_id": { + "$oid": "6674c30595590f9fd9459613" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Vanguard", + "name": "Carolina Bonitatis", + "email": "carolina@bonitat.is", + "linkedIn": "https://www.linkedin.com/in/carolina-bonitatis/", + "campus": "NYC / ECRI", + "cohort": "42", + "jobTitle": "Application Developer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459614" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Vantage Point Consulting, Inc.", + "name": "Constance Cho", + "email": "chcho87@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chcho2/", + "campus": "NYC", + "cohort": "21", + "jobTitle": "Full Stack Engineer", + "industry": "Consulting", + "cities": ["Mesa", "Santa Ana", "Arlington"], + "_id": { + "$oid": "6674c30595590f9fd9459615" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Vaulted Oak", + "name": "Alfred Sta. Iglesia", + "email": "a.sta.iglesia@gmail.com", + "linkedIn": "https://www.linkedin.com/in/astaiglesia/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer + Solutions Architect", + "industry": "E-Commerce", + "cities": ["Raleigh", "Sรฃo Paulo"], + "_id": { + "$oid": "6674c30595590f9fd9459616" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "VedaPointe", + "name": "Michelle Chang", + "email": "michelle.kelly.chang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michellekchang/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Software Developer", + "industry": "Healthcare", + "cities": ["Chula Vista"], + "_id": { + "$oid": "6674c30595590f9fd9459617" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Vercel", + "name": "Jueun Grace Yun", + "email": "graceyunn@gmail.com", + "linkedIn": "https://www.linkedin.com/in/gracejueunyun/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Gaming hardware", + "cities": ["Toronto"], + "_id": { + "$oid": "6674c30595590f9fd9459618" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Verily Life Sciences", + "name": "Michael Geismar", + "email": "mikelafobe@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/michael-geismar/", + "campus": "FTRI", + "cohort": "2", + "jobTitle": "Software Engineer", + "industry": "Life Sciences", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459619" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Veritext", + "name": "Shawn Convery", + "email": "shawnmconvery@gmail.com", + "linkedIn": "https://www.linkedin.com/in/shawnconvery1/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Software Engineer", + "industry": "Law", + "cities": ["Greensboro", "Seattle"], + "_id": { + "$oid": "6674c30595590f9fd945961a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Veritext", + "name": "Storm Ross", + "email": "stormaross@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stormaross/", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Backend Developer", + "industry": "Legal", + "cities": ["Seattle"], + "_id": { + "$oid": "6674c30595590f9fd945961b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Verizon Media Platform", + "name": "Leonard Kee", + "email": "leonardwkee@gmail.com", + "linkedIn": "https://www.linkedin.com/in/thiskeeword/", + "campus": "LA", + "cohort": "4", + "jobTitle": "Software Development Engineer II", + "industry": "Media", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945961c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Vertalo", + "name": "Phillip Bannister", + "email": "phillip.kbannister@Gmail.com", + "linkedIn": "https://www.linkedin.com/in/phillipkekoabannister/", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945961d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Verys", + "name": "Ray Yao", + "email": "rocaray51@gmail.com", + "linkedIn": "https://www.linkedin.com/in/raymondyao51/", + "campus": "LA", + "cohort": "27", + "jobTitle": "Software Developer", + "industry": "Consulting/Contracting Agency", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945961e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Verys", + "name": "Ted Min", + "email": "tedtaemin@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "41", + "jobTitle": "Senior Software Engineer", + "industry": "Consulting", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945961f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "View, Inc.", + "name": "Eric Lee", + "email": "emlee54@gmail.com", + "linkedIn": "https://www.linkedin.com/in/errc-lee/", + "campus": "LA", + "cohort": "45", + "jobTitle": "Software Engineer, Front-End", + "industry": "Software / Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459620" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Violet", + "name": "Johanna Merluza", + "email": "johanna.merluza@gmail.com", + "linkedIn": "https://www.linkedin.com/in/johannamerluza/", + "campus": "FTRI / CTRI", + "cohort": "13", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Software / Tech", + "cities": ["Phoenix", "Honolulu", "Reno"], + "_id": { + "$oid": "6674c30595590f9fd9459621" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Virga Labs", + "name": "Vance McGrady", + "email": "vancemcgrady@gmail.com", + "linkedIn": "https://www.linkedin.com/in/vancemcgrady/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Application Developer", + "industry": "Data Analytics", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459622" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Virgin Hyperloop One", + "name": "Justin Fung", + "email": "justincaseyfung@gmail.com", + "linkedIn": "https://www.linkedin.com/in/citrusvanilla/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Front-End Developer", + "industry": "Transportation", + "cities": ["Durham", "Fort Worth", "Kansas City"], + "_id": { + "$oid": "6674c30595590f9fd9459623" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Virgin Orbit", + "name": "Arkadiy Nigay", + "email": "ark234@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ark234", + "campus": "LA", + "cohort": "23", + "jobTitle": "Full Stack Developer", + "industry": "Aerospace", + "cities": ["Atlanta"], + "_id": { + "$oid": "6674c30595590f9fd9459624" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Virgin Orbit", + "name": "Eric McCorkle", + "email": "ericm.mccorkle@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eric-mccorkle/", + "campus": "LA", + "cohort": "48", + "jobTitle": "Full Stack Developer", + "industry": "Aerospace", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459625" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Virtru", + "name": "Jake Van Vorhis", + "email": "vanvorhisjake@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jakedoublev/", + "campus": "PTRI", + "cohort": "5", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Security", + "cities": ["Kansas City"], + "_id": { + "$oid": "6674c30595590f9fd9459626" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Visa", + "name": "Bryan Mooyeong Lee", + "email": "mylee1995@gmail.com", + "linkedIn": "https://www.linkedin.com/bryanm-lee", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": ["Bakersfield"], + "_id": { + "$oid": "6674c30595590f9fd9459627" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "VMware", + "name": "Maureen Onchiri", + "email": "onchirimaureen1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/maureenonchiri/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "Software Engineer", + "industry": "Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459628" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Volta Charging", + "name": "Maximilian Gonzalez", + "email": "thamaxlg@gmail.com", + "linkedIn": "https://www.linkedin.com/in/maximiliangonzalez/", + "campus": "LA", + "cohort": "29", + "jobTitle": "Full Stack Software Engineer, Cloud Platform", + "industry": "Transportation", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459629" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "VS Media Inc", + "name": "Patrick Hu", + "email": "patrickhu91@gmail.com", + "linkedIn": "https://www.LinkedIn.com/in/patrickhu91", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "JavaScript Developer", + "industry": "Entertainment", + "cities": ["Plano", "Omaha"], + "_id": { + "$oid": "6674c30595590f9fd945962a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "VTS", + "name": "Andy Koh", + "email": "yk567@cornell.edu", + "linkedIn": "https://www.linkedin.com/in/andersonkoh/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Engineer, Platform", + "industry": "Commercial Real Estate", + "cities": ["Washington", "North Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd945962b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "W.L. Gore & Associates", + "name": "Amir Marcel", + "email": "amirmarcel@yahoo.com", + "linkedIn": "https://www.linkedin.com/in/amir-marcel", + "campus": "LA", + "cohort": "39", + "jobTitle": "Backend Developer", + "industry": "Manufacturing", + "cities": ["Virginia Beach", "North Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd945962c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Wag Labs Inc", + "name": "William Adamowicz", + "email": "william.adamowicz@gmail.com", + "linkedIn": "https://www.linkedin.com/in/williamadamowicz/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Software Engineer", + "industry": "Pet Care", + "cities": ["Tulsa"], + "_id": { + "$oid": "6674c30595590f9fd945962d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Walgreens", + "name": "Ed Cho", + "email": "edcho720@gmail.com", + "linkedIn": "https://www.linkedin.com/in/edcho720/", + "campus": "FTRI / CTRI", + "cohort": "12", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945962e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Walmart", + "name": "ChunHao Zheng", + "email": "chz062009@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chunhz/", + "campus": "NYC / ECRI", + "cohort": "35", + "jobTitle": "Software Engineer II", + "industry": "Marketing", + "cities": ["Orlando"], + "_id": { + "$oid": "6674c30595590f9fd945962f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Walmart", + "name": "Eddy Kwon", + "email": "eddykwon0@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eddykwon/", + "campus": "NYC", + "cohort": "29", + "jobTitle": "Software Engineer", + "industry": "Retail", + "cities": ["North Las Vegas", "Mumbai", "Oakland"], + "_id": { + "$oid": "6674c30595590f9fd9459630" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Walmart - Store No. 8", + "name": "Starvon Washington", + "email": "staronejazz@yahoo.com", + "linkedIn": "", + "campus": "LA", + "cohort": "19", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Cincinnati", "Colorado Springs"], + "_id": { + "$oid": "6674c30595590f9fd9459631" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Walmart Global Tech", + "name": "Tao Chen", + "email": "xtc2008@gmail.com", + "linkedIn": "https://www.linkedin.com/in/xtc2008", + "campus": "NYC", + "cohort": "31", + "jobTitle": "Senior Software Engineer", + "industry": "Health and Wellness", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459632" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Walmart Labs", + "name": "Brian Barr", + "email": "Brian.Barr23@gmail.com", + "linkedIn": "https://www.linkedin.com/in/barrbrian/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Senior Backend Engineer (Node)", + "industry": "FinTech (?)", + "cities": ["Buffalo"], + "_id": { + "$oid": "6674c30595590f9fd9459633" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Walmart Labs", + "name": "Stephanie Fong", + "email": "stfongg@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stephaniefong08/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Software Engineer", + "industry": "", + "cities": ["Lubbock", "Mexico City", "Beijing"], + "_id": { + "$oid": "6674c30595590f9fd9459634" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Warby Parker", + "name": "Sanaya Mirpuri", + "email": "ssmirpuri@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sanayamirpuri/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "BackendSoftware Engineer II", + "industry": "Retail", + "cities": ["Omaha"], + "_id": { + "$oid": "6674c30595590f9fd9459635" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Warner Bros Discovery", + "name": "Mark Shin (Shino)", + "email": "pe.markshin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/markshins/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Software Development Engineer II", + "industry": "Entertainment", + "cities": ["Baltimore", "Honolulu", "Memphis"], + "_id": { + "$oid": "6674c30595590f9fd9459636" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "WASH", + "name": "Kevin Park", + "email": "xkevinpark@gmail.com", + "linkedIn": "https://www.linkedin.com/in/xkevinpark/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Software UI Engineer", + "industry": "Electronics", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459637" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Wash Laundry Systems", + "name": "Harmon Huynh", + "email": "harmon.huynh@outlook.com", + "linkedIn": "https://www.linkedin.com/in/harmon-huynh/", + "campus": "LA", + "cohort": "26", + "jobTitle": "Senior Software Engineer", + "industry": "Consumer Services", + "cities": ["Denver", "New York", "Mesa"], + "_id": { + "$oid": "6674c30595590f9fd9459638" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Watsco", + "name": "Romelo Gilbert", + "email": "romelogilbert@gmail.com", + "linkedIn": "https://www.linkedin.com/in/romelo-gilbert", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "HVAC distributor", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459639" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Wayfair", + "name": "Dylan Bergstrom", + "email": "contact.dylanbergstrom@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dylan-bergstrom", + "campus": "LA", + "cohort": "23", + "jobTitle": "Software Engineer L1", + "industry": "E-Commerce", + "cities": ["Sydney"], + "_id": { + "$oid": "6674c30595590f9fd945963a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Wayfair", + "name": "Jay Cogen", + "email": "jaycog44@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jaycogen/", + "campus": "LA", + "cohort": "26", + "jobTitle": "Software Engineer II", + "industry": "Fintech", + "cities": ["Fort Worth"], + "_id": { + "$oid": "6674c30595590f9fd945963b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Wayfair", + "name": "Bryan Lee", + "email": "mylee1995@gmail.com", + "linkedIn": "https://www.linkedin.com/in/bryanm-lee/", + "campus": "NYC", + "cohort": "12", + "jobTitle": "Software Engineer Intern", + "industry": "E-Commerce", + "cities": ["Houston", "Cleveland", "Virginia Beach"], + "_id": { + "$oid": "6674c30595590f9fd945963c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "WayScript", + "name": "Bren Yamaguchi", + "email": "Yamaguchibren@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brenyamaguchi/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Front End Software Engineer", + "industry": "Developer Tools", + "cities": ["Atlanta", "Bakersfield"], + "_id": { + "$oid": "6674c30595590f9fd945963d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "WayUp", + "name": "Angela Scerbo", + "email": "amscerbo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/angelascerbo/", + "campus": "NYC", + "cohort": "2", + "jobTitle": "Frontend Software Engineer", + "industry": "", + "cities": ["Fresno"], + "_id": { + "$oid": "6674c30595590f9fd945963e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Weill Cornell Medicine", + "name": "Zoew McGrath", + "email": "Zoewmcgrath@outlook.com", + "linkedIn": "", + "campus": "FTRI", + "cohort": "5", + "jobTitle": "Web Developer", + "industry": "Healthcare", + "cities": ["Memphis", "Paris", "Philadelphia"], + "_id": { + "$oid": "6674c30595590f9fd945963f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "WELL Health", + "name": "Elise Bare", + "email": "elisebare@gmail.com", + "linkedIn": "https://www.linkedin.com/in/elisebare/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Software Engineer, Front End", + "industry": "Healtchare", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459640" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Well Health", + "name": "Janis Hernandez", + "email": "Janis11546@gmail.com", + "linkedIn": "https://www.linkedin.com/in/janis-h/", + "campus": "LA", + "cohort": "39", + "jobTitle": "Mid-level Frontend Engineer", + "industry": "Health", + "cities": ["El Paso"], + "_id": { + "$oid": "6674c30595590f9fd9459641" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Well Health", + "name": "Jesus Vargas", + "email": "jmodestov@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jesusmvargas/", + "campus": "LA", + "cohort": "38", + "jobTitle": "Frontend Software Engineer", + "industry": "Health Tech", + "cities": ["Long Beach", "Henderson"], + "_id": { + "$oid": "6674c30595590f9fd9459642" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Well Health", + "name": "Michael Wang", + "email": "michaelwawang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/michael--wang/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer (Backend)", + "industry": "Health Tech", + "cities": ["Cincinnati"], + "_id": { + "$oid": "6674c30595590f9fd9459643" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Well Health", + "name": "Eric Stallings", + "email": "stallings.eric@gmail.com", + "linkedIn": "https://www.linkedin.com/in/EricStallings/", + "campus": "LA", + "cohort": "30", + "jobTitle": "Software Engineer", + "industry": "Healthcare", + "cities": ["Tucson", "Scottsdale"], + "_id": { + "$oid": "6674c30595590f9fd9459644" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Wellio", + "name": "Rachel Park", + "email": "rachelpark.dev@gmail.com", + "linkedIn": "https://www.linkedin.com/in/rachelparkdev/", + "campus": "NYC", + "cohort": "13", + "jobTitle": "Senior Software Engineer", + "industry": "Foodtech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459645" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Wells Fargo", + "name": "Taylor Davis", + "email": "Taylor.davis7@live.com", + "linkedIn": "https://www.linkedin.com/in/taylordavis7", + "campus": "LA", + "cohort": "41", + "jobTitle": "Software Engineer", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459646" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Western Psychological Services (WPS)", + "name": "Justin Stoddard", + "email": "jgstoddard@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jgstoddard/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Microservices Engineer", + "industry": "Health Tech", + "cities": ["Indianapolis", "Phoenix", "Gilbert"], + "_id": { + "$oid": "6674c30595590f9fd9459647" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "WeWork", + "name": "Maung Maung Lay (Raphael Ram)", + "email": "ramraphael@gmail.com", + "linkedIn": "https://www.linkedin.com/in/raphaelram/", + "campus": "NYC", + "cohort": "8", + "jobTitle": "Software Engineer", + "industry": "Real Estate / Hospitality", + "cities": ["Bakersfield"], + "_id": { + "$oid": "6674c30595590f9fd9459648" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Whisper", + "name": "Kevin Mui", + "email": "kmui.work@gmail.com", + "linkedIn": "https://www.linkedin.com/in/kevin-mui1/", + "campus": "LA", + "cohort": "24", + "jobTitle": "Server Developer", + "industry": "", + "cities": ["Arlington", "Orlando", "Indianapolis"], + "_id": { + "$oid": "6674c30595590f9fd9459649" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "William Hill", + "name": "Chris Flannery", + "email": "chriswillsflannery@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chriswillsflannery/", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Frontend Software Engineer", + "industry": "Sports/Entertainment", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945964a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "William Hill", + "name": "Matt Greenberg", + "email": "mattagreenberg1@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mattagreenberg/", + "campus": "NYC", + "cohort": "24", + "jobTitle": "front end software engineer", + "industry": "casino", + "cities": ["Berlin", "Oakland"], + "_id": { + "$oid": "6674c30595590f9fd945964b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Willow Servicing", + "name": "Ian Grepo", + "email": "iangrapeo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ian-grepo/", + "campus": "LA / WCRI", + "cohort": "51", + "jobTitle": "Software Engineer", + "industry": "Real Estate", + "cities": ["Indianapolis", "Plano", "Lexington"], + "_id": { + "$oid": "6674c30595590f9fd945964c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Windfall Data", + "name": "Bruno Portela", + "email": "bportela@pm.me", + "linkedIn": "https://www.linkedin.com/in/bgp/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Senior Full Stack Engineer", + "industry": "Fintech, ML, AI", + "cities": ["Las Vegas"], + "_id": { + "$oid": "6674c30595590f9fd945964d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.071Z" + }, + "__v": 0 + }, + { + "company": "Windhover Labs", + "name": "Alex McPhail", + "email": "mcphail.alex@gmail.com", + "linkedIn": "www.linkedin.com/in/mcphail-alex", + "campus": "LA / WCRI", + "cohort": "53", + "jobTitle": "Software Engineer", + "industry": "Aerospace", + "cities": ["San Francisco", "Chula Vista", "Santa Ana"], + "_id": { + "$oid": "6674c30595590f9fd945964e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Wiselayer", + "name": "Eric Lemay", + "email": "ericrogerlemay@gmail.com", + "linkedIn": "", + "campus": "NYC / ECRI", + "cohort": "31", + "jobTitle": "Software Engineer", + "industry": "Business Analytics", + "cities": ["Mumbai"], + "_id": { + "$oid": "6674c30595590f9fd945964f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Wiser Solutions", + "name": "Alex Hersler", + "email": "alex@alexhersler.com", + "linkedIn": "https://www.linkedin.com/in/alex-hersler/", + "campus": "LA / WCRI", + "cohort": "48", + "jobTitle": "Software Engineer II", + "industry": "Data Analytics", + "cities": ["Miami"], + "_id": { + "$oid": "6674c30595590f9fd9459650" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Wix.com", + "name": "Kenny shen", + "email": "kenny.shen313@gmail.com", + "linkedIn": "", + "campus": "NYC", + "cohort": "27", + "jobTitle": "Solutions Engineer", + "industry": "Software / Tech", + "cities": ["Stockton", "Toronto", "Buffalo"], + "_id": { + "$oid": "6674c30595590f9fd9459651" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Wizely Finance", + "name": "Erik Cox", + "email": "erikbcox@gmail.com", + "linkedIn": "https://www.linkedin.com/in/erikbcox/", + "campus": "LA", + "cohort": "22", + "jobTitle": "Senior Full Stack Developer", + "industry": "", + "cities": ["Jacksonville", "Wichita", "Albuquerque"], + "_id": { + "$oid": "6674c30595590f9fd9459652" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "WorkDay", + "name": "Tu Pham", + "email": "toopham@gmail.com", + "linkedIn": "https://www.linkedin.com/in/toopham/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Development Engineer", + "industry": "FinTech, HR", + "cities": ["Seattle"], + "_id": { + "$oid": "6674c30595590f9fd9459653" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "WorkFusion", + "name": "Matt Meigs", + "email": "mattmeigs@gmail.com", + "linkedIn": "https://www.linkedin.com/in/matt-meigs/", + "campus": "NYC", + "cohort": "20", + "jobTitle": "Front-End Developer", + "industry": "Intelligent Automation", + "cities": ["Atlanta", "Milwaukee", "Baltimore"], + "_id": { + "$oid": "6674c30595590f9fd9459654" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "WorkRamp", + "name": "Lex Choi", + "email": "lexchoi3@gmail.com", + "linkedIn": "https://www.linkedin.com/in/lexchoi3/", + "campus": "LA", + "cohort": "40", + "jobTitle": "Internal Tools/Customer Support Engineer", + "industry": "SaaS", + "cities": ["Scottsdale"], + "_id": { + "$oid": "6674c30595590f9fd9459655" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "World Wide Technology", + "name": "Christopher Davis", + "email": "chdavis0917@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chris-davis0917", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "JavaScript Developer - Material Planning", + "industry": "IT Services", + "cities": ["St. Petersburg", "Arlington"], + "_id": { + "$oid": "6674c30595590f9fd9459656" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "World Wide Technology", + "name": "Crystal Agoncillo", + "email": "crystal.agoncillo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/agoncillo/", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Full Stack Developer", + "industry": "IT Services", + "cities": ["Oklahoma City", "San Jose"], + "_id": { + "$oid": "6674c30595590f9fd9459657" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "World Wide Technology", + "name": "Stephanie Page", + "email": "stephanieelainepage@gmail.com", + "linkedIn": "https://www.linkedin.com/in/stephanie-page-atx/", + "campus": "FTRI / CTRI", + "cohort": "11", + "jobTitle": "Associate Developer", + "industry": "Consulting", + "cities": ["Chandler"], + "_id": { + "$oid": "6674c30595590f9fd9459658" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "World Wide Technology", + "name": "Brett Guidry", + "email": "guidry.brett@gmail.com", + "linkedIn": "https://www.linkedin.com/in/brett-guidry504/", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Software Engineer", + "industry": "IT Services", + "cities": ["Lubbock"], + "_id": { + "$oid": "6674c30595590f9fd9459659" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "WPROMOTE", + "name": "Nay Linn", + "email": "naylinn.pkv@gmail.com", + "linkedIn": "https://www.linkedin.com/in/nay-linn/", + "campus": "NYC", + "cohort": "19", + "jobTitle": "Software Engineer", + "industry": "Digital Marketing", + "cities": ["Tokyo", "San Antonio"], + "_id": { + "$oid": "6674c30595590f9fd945965a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "WQA", + "name": "Victor Martins", + "email": "martinsvictor287@gmail.com", + "linkedIn": "https://www.linkedin.com/in/victormartinsfemi", + "campus": "LA / WCRI", + "cohort": "59", + "jobTitle": "Software Develooper", + "industry": "Consulting", + "cities": ["Garland", "Sรฃo Paulo"], + "_id": { + "$oid": "6674c30595590f9fd945965b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "WW(formally Weight Watchers)", + "name": "Mika Todd", + "email": "mikataressatodd@gmail.com", + "linkedIn": "https://www.linkedin.com/in/mika-todd", + "campus": "LA", + "cohort": "43", + "jobTitle": "Software Engineer", + "industry": "Health and Wellness", + "cities": ["St. Louis", "Miami"], + "_id": { + "$oid": "6674c30595590f9fd945965c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Wyze", + "name": "Jason Victor", + "email": "jason.victor26@gmail.com", + "linkedIn": "", + "campus": "LA", + "cohort": "38", + "jobTitle": "Jr. Front End Engineer", + "industry": "IoT", + "cities": ["Chesapeake", "Virginia Beach"], + "_id": { + "$oid": "6674c30595590f9fd945965d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Xandr", + "name": "Billy Hepfinger", + "email": "bhepfing@gmail.com", + "linkedIn": "https://www.linkedin.com/in/billy-hepfinger", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer II", + "industry": "Advertising / Telecom", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945965e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Xandr", + "name": "Whit Rooke", + "email": "whit.rooke@gmail.com", + "linkedIn": "https://www.linkedin.com/in/whit-rooke/", + "campus": "NYC", + "cohort": "25", + "jobTitle": "Software Engineer", + "industry": "Adtech", + "cities": ["San Francisco", "Cincinnati"], + "_id": { + "$oid": "6674c30595590f9fd945965f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Xinova", + "name": "Clariz Mariano", + "email": "clariz.mariano@gmail.com", + "linkedIn": "https://www.linkedin.com/in/clarmariano/", + "campus": "LA", + "cohort": "22", + "jobTitle": "Software Engineer 2", + "industry": "", + "cities": ["Oakland", "Atlanta"], + "_id": { + "$oid": "6674c30595590f9fd9459660" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Xtivia", + "name": "Anthony Lo", + "email": "87.anthonylo@gmail.com", + "linkedIn": "https://www.linkedin.com/in/anthonyelo/", + "campus": "LA / WCRI", + "cohort": "52", + "jobTitle": "Jr. UI Developer", + "industry": "IT Services", + "cities": ["Colorado Springs", "Mumbai", "Fort Wayne"], + "_id": { + "$oid": "6674c30595590f9fd9459661" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Yahoo", + "name": "DeriAnte Sinclair", + "email": "deriante.sinclair@gmail.com", + "linkedIn": "https://www.linkedin.com/in/deriante-sinclair/", + "campus": "LA / WCRI", + "cohort": "49", + "jobTitle": "Software Apps Engineer I", + "industry": "Software / Tech", + "cities": ["Philadelphia"], + "_id": { + "$oid": "6674c30595590f9fd9459662" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Yahoo", + "name": "Tom Curtin", + "email": "thisistomcurtin@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tfcurtin/", + "campus": "PTRI", + "cohort": "3", + "jobTitle": "Software Engineer", + "industry": "Other", + "cities": ["Minneapolis"], + "_id": { + "$oid": "6674c30595590f9fd9459663" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Yale New Haven Health", + "name": "Aileen Chan Miranda", + "email": "aileenchany@gmail.com", + "linkedIn": "https://www.linkedin.com/in/aileen-chanmiranda/", + "campus": "FTRI / CTRI", + "cohort": "8", + "jobTitle": "Web Developer", + "industry": "Healthtech/Healthcare", + "cities": ["San Francisco", "Newark", "Indianapolis"], + "_id": { + "$oid": "6674c30595590f9fd9459664" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Yext", + "name": "Allen Xie", + "email": "axie0320@gmail.com", + "linkedIn": "https://www.linkedin.com/in/axie0320/", + "campus": "PTRI", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "Software / Tech", + "cities": ["Santa Ana", "Los Angeles", "Dallas"], + "_id": { + "$oid": "6674c30595590f9fd9459665" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "YMCA Retirement Fund", + "name": "Anna Konstantinovich", + "email": "anna@anreko.design", + "linkedIn": "https://www.linkedin.com/in/anna-konstantinovich/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "UX Designer & Developer (It's complicated - let me know if you want more details)", + "industry": "Financial Services", + "cities": ["Newark", "Fresno"], + "_id": { + "$oid": "6674c30595590f9fd9459666" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Zeal", + "name": "Jason Lee", + "email": "jasonmlee1020@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jasonjml/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Engineer II", + "industry": "Fintech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd9459667" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Zealthy", + "name": "Kennan Budnik", + "email": "kobudnik@gmail.com", + "linkedIn": "https://linkedin.com/in/kobudnik", + "campus": "NYOI", + "cohort": "2", + "jobTitle": "Software Engineer II", + "industry": "Healthtech/Healthcare", + "cities": ["Albuquerque", "Santa Ana"], + "_id": { + "$oid": "6674c30595590f9fd9459668" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "ZenBusiness", + "name": "Adam Sheff", + "email": "adamisheff@gmail.com", + "linkedIn": "https://www.linkedin.com/in/adam-sheff/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Software Engineer", + "industry": "Entrepreneurship", + "cities": ["Raleigh"], + "_id": { + "$oid": "6674c30595590f9fd9459669" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "ZenBusiness", + "name": "Christie Herring", + "email": "clherring@gmail.com", + "linkedIn": "https://www.linkedin.com/in/christie-herring/", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer II", + "industry": "SaaS, business creation services", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945966a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Zenefits", + "name": "Tobey Forsman", + "email": "tobeyforsman@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tobeyforsman/", + "campus": "LA", + "cohort": "42", + "jobTitle": "Senior Software Engineer", + "industry": "Software/Tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945966b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "zephyrx", + "name": "Brian Haller", + "email": "brian@brianhaller.com", + "linkedIn": "https://www.linkedin.com/in/brianjhaller/", + "campus": "NYC", + "cohort": "14", + "jobTitle": "Software Engineer", + "industry": "med tech", + "cities": [], + "_id": { + "$oid": "6674c30595590f9fd945966c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "ZeroPW", + "name": "Tammy Tan", + "email": "tammytan1912@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tammytan1/", + "campus": "NYC", + "cohort": "15", + "jobTitle": "Frontend Engineer", + "industry": "Computer & Network Security", + "cities": ["Norfolk", "London", "Mexico City"], + "_id": { + "$oid": "6674c30595590f9fd945966d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Zest AI", + "name": "Ronelle Caguioa", + "email": "ronelle.caguioa@gmail.com", + "linkedIn": "https://www.linkedin.com/in/ronellecaguioa/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Senior Software Engineer", + "industry": "Fintech", + "cities": ["Saint Paul", "Los Angeles"], + "_id": { + "$oid": "6674c30595590f9fd945966e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Zeta Global", + "name": "Chris Tang", + "email": "chrisjtang@gmail.com", + "linkedIn": "https://www.linkedin.com/in/chrisjtang", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer", + "industry": "Data", + "cities": ["Saint Paul", "Wichita"], + "_id": { + "$oid": "6674c30595590f9fd945966f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Zillow", + "name": "Cary L Chan", + "email": "caryLchan@gmail.com", + "linkedIn": "https://www.linkedin.com/in/carylchan/", + "campus": "LA", + "cohort": "35", + "jobTitle": "Full Stack Engineer", + "industry": "Entertainment", + "cities": ["Bakersfield", "Henderson", "Durham"], + "_id": { + "$oid": "6674c30595590f9fd9459670" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Zillow", + "name": "Hien Nguyen", + "email": "hien.qqnguyen@gmail.com", + "linkedIn": "https://www.linkedin.com/in/hienqn/", + "campus": "LA", + "cohort": "37", + "jobTitle": "Software Engineer", + "industry": "Entertainment", + "cities": ["Mesa", "San Jose"], + "_id": { + "$oid": "6674c30595590f9fd9459671" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Zillow Group", + "name": "Logan Thies", + "email": "logan.thies@icloud.com", + "linkedIn": "https://www.linkedin.com/in/loganthies137/", + "campus": "PTRI", + "cohort": "1", + "jobTitle": "Software Development Engineer", + "industry": "Real Estate", + "cities": [], + "_id": { + "$oid": "6674c30695590f9fd9459672" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Zip", + "name": "Chase Walters", + "email": "cwwalters@fastmail.com", + "linkedIn": "https://www.linkedin.com/in/charleswwalters/", + "campus": "FTRI / CTRI", + "cohort": "10", + "jobTitle": "Founding Software Engineer", + "industry": "Security", + "cities": ["Philadelphia", "Saint Paul", "Dallas"], + "_id": { + "$oid": "6674c30695590f9fd9459673" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Zipcar", + "name": "Sean Smith", + "email": "smith.seanm17@gmail.com", + "linkedIn": "https://www.linkedin.com/in/sean-smith17/", + "campus": "LA", + "cohort": "36", + "jobTitle": "Software Engineer (Front End)", + "industry": "Transportation", + "cities": [], + "_id": { + "$oid": "6674c30695590f9fd9459674" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Zipdrug", + "name": "Tolga Mizrakci", + "email": "tolgamizrakci@gmail.com", + "linkedIn": "https://www.linkedin.com/in/tolga-mizrakci/", + "campus": "NYC", + "cohort": "10", + "jobTitle": "Senior Software Engineer", + "industry": "Health Care", + "cities": ["Atlanta", "New York"], + "_id": { + "$oid": "6674c30695590f9fd9459675" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "ZipRecruiter", + "name": "Ryan Lee", + "email": "rynklee@gmail.com", + "linkedIn": "https://linkedin.com/in/rynklee", + "campus": "LA", + "cohort": "46", + "jobTitle": "Software Engineer III", + "industry": "Other", + "cities": ["Newark", "Anchorage"], + "_id": { + "$oid": "6674c30695590f9fd9459676" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Zoetis", + "name": "Eileen Cho", + "email": "eileenaracho@gmail.com", + "linkedIn": "https://www.linkedin.com/in/eileenaracho/", + "campus": "LA / WCRI", + "cohort": "56", + "jobTitle": "Data Systems Engineer", + "industry": "Other", + "cities": ["Corpus Christi"], + "_id": { + "$oid": "6674c30695590f9fd9459677" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Zogo Finance", + "name": "Derek Miller", + "email": "dsymiller@gmail.com", + "linkedIn": "https://www.linkedin.com/in/dsymiller/", + "campus": "NYC", + "cohort": "22", + "jobTitle": "Full Stack Engineer", + "industry": "education, financial services, banking", + "cities": ["Milwaukee", "Mesa"], + "_id": { + "$oid": "6674c30695590f9fd9459678" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Zoom Video Communications", + "name": "Jason Jones", + "email": "Jasonroyjones@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jasonroyjones", + "campus": "LA", + "cohort": "33", + "jobTitle": "Software Development Engineer", + "industry": "Telecommunications", + "cities": [], + "_id": { + "$oid": "6674c30695590f9fd9459679" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + }, + { + "company": "Zywave", + "name": "Jacob Davis", + "email": "jacob.drew.davis@gmail.com", + "linkedIn": "https://www.linkedin.com/in/jacob-drew-davis/", + "campus": "FTRI", + "cohort": "4", + "jobTitle": "Senior DevSecOps Engineer", + "industry": "Software / Tech", + "cities": ["Memphis"], + "_id": { + "$oid": "6674c30695590f9fd945967a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:14.072Z" + }, + "__v": 0 + } +] diff --git a/scripts/db/mongo-dev-init/MOCK_FORUMS.json b/scripts/db/mongo-dev-init/MOCK_FORUMS.json new file mode 100644 index 00000000..334ed3bd --- /dev/null +++ b/scripts/db/mongo-dev-init/MOCK_FORUMS.json @@ -0,0 +1,72 @@ +[ + { + "title": "Code Crunch & Job Hunt: Battle Logs", + "description": "Share your epic (or tragic) tales from the job search battlefield. Did you bravely conquer the coding test, or did it conquer you?", + "_id": { + "$oid": "6674c31e95590f9fd9459e59" + }, + "createdAt": { + "$date": "2024-06-21T00:02:38.535Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:38.535Z" + }, + "__v": 0 + }, + { + "title": "Debugging My Resume", + "description": "Need help squashing those pesky resume bugs? Post your CV here and let the community help you refactor it into a job offer magnet.", + "_id": { + "$oid": "6674c31e95590f9fd9459e5a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:38.536Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:38.536Z" + }, + "__v": 0 + }, + { + "title": "Interview Nightmares & Dream Jobs", + "description": "Spill the beans on your worst interview disasters and celebrate those rare moments when it actually went well. Misery loves company, and so do success stories!", + "_id": { + "$oid": "6674c31e95590f9fd9459e5b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:38.536Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:38.536Z" + }, + "__v": 0 + }, + { + "title": "HR: Humans or Robots?", + "description": "Ever wonder if that HR person was a cleverly disguised bot? Share your weirdest and most robotic interactions with hiring departments.", + "_id": { + "$oid": "6674c31e95590f9fd9459e5c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:38.536Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:38.536Z" + }, + "__v": 0 + }, + { + "title": "Salary Negotiation: The Boss Fight", + "description": "Tips, tricks, and epic fails from the final boss battle of job hunting: salary negotiations. Did you get the loot or just a consolation prize?", + "_id": { + "$oid": "6674c31e95590f9fd9459e5d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:38.536Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:38.536Z" + }, + "__v": 0 + } +] diff --git a/scripts/db/mongo-dev-init/MOCK_GRADUATE_INVITATIONS.json b/scripts/db/mongo-dev-init/MOCK_GRADUATE_INVITATIONS.json new file mode 100644 index 00000000..be2dee54 --- /dev/null +++ b/scripts/db/mongo-dev-init/MOCK_GRADUATE_INVITATIONS.json @@ -0,0 +1,2402 @@ +[ + { + "email": "acarradice0@gravatar.com", + "token": "541658530c351ab19011dc5a1cc7f796eb9fd388", + "tokenExpiry": { + "$date": "1970-01-20T20:13:06.955Z" + }, + "isRegistered": true, + "firstName": "Alonso", + "lastName": "Carradice", + "cohort": "ECRI 96", + "registeredAt": { + "$date": "1970-01-20T09:52:04.950Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cc8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.845Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.845Z" + }, + "__v": 0 + }, + { + "email": "wbleaden1@usgs.gov", + "token": "8ce87b99dc305ef8272b2261a73539156a2a4b11", + "tokenExpiry": { + "$date": "1970-01-20T17:04:07.259Z" + }, + "isRegistered": false, + "firstName": "Wilton", + "lastName": "Bleaden", + "cohort": "ECRI 89", + "registeredAt": { + "$date": "1970-01-20T19:09:48.748Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cc9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.845Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.845Z" + }, + "__v": 0 + }, + { + "email": "ghalso2@jalbum.net", + "token": "19e7fd479b1310e00940ac610b6d3731699224b3", + "tokenExpiry": { + "$date": "1970-01-20T18:28:45.337Z" + }, + "isRegistered": true, + "firstName": "Gannon", + "lastName": "Halso", + "cohort": "WCRI 8", + "registeredAt": { + "$date": "1970-01-20T12:18:04.782Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cca" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.845Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.845Z" + }, + "__v": 0 + }, + { + "email": "dgrinter3@amazon.com", + "token": "15639748a71a12b6c5b2a9e715aca9ff092877ae", + "tokenExpiry": { + "$date": "1970-01-20T21:40:55.502Z" + }, + "isRegistered": false, + "firstName": "Doralynn", + "lastName": "Grinter", + "cohort": "ECRI 84", + "registeredAt": { + "$date": "1970-01-20T14:33:07.127Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459ccb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.845Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.845Z" + }, + "__v": 0 + }, + { + "email": "wweatherley4@phoca.cz", + "token": "bc2b71d4fbd3ed3de0a0022aa21bbed4f851c755", + "tokenExpiry": { + "$date": "1970-01-20T16:08:07.351Z" + }, + "isRegistered": true, + "firstName": "Winn", + "lastName": "Weatherley", + "cohort": "ECRI 74", + "registeredAt": { + "$date": "1970-01-20T19:01:06.414Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459ccc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.846Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.846Z" + }, + "__v": 0 + }, + { + "email": "hregis5@dailymail.co.uk", + "token": "01aa9782932b7772770b0c4eae54787dea5f9638", + "tokenExpiry": { + "$date": "1970-01-20T21:42:28.549Z" + }, + "isRegistered": true, + "firstName": "Hermon", + "lastName": "Regis", + "cohort": "PTRI 22", + "registeredAt": { + "$date": "1970-01-20T14:35:42.909Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459ccd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.846Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.846Z" + }, + "__v": 0 + }, + { + "email": "crousby6@apache.org", + "token": "22ce1f16d86aa9b601a6bd044d3bbc455b4f36e2", + "tokenExpiry": { + "$date": "1970-01-20T22:11:05.604Z" + }, + "isRegistered": false, + "firstName": "Cordie", + "lastName": "Rousby", + "cohort": "CTRI 71", + "registeredAt": { + "$date": "1970-01-20T11:13:45.913Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cce" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.846Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.846Z" + }, + "__v": 0 + }, + { + "email": "mriseborough7@clickbank.net", + "token": "3fad65274e7439c2c0a35200295c46977020885f", + "tokenExpiry": { + "$date": "1970-01-20T17:54:29.183Z" + }, + "isRegistered": false, + "firstName": "Maureene", + "lastName": "Riseborough", + "cohort": "CTRI 92", + "registeredAt": { + "$date": "1970-01-20T12:21:32.791Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459ccf" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.846Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.846Z" + }, + "__v": 0 + }, + { + "email": "olawson8@washington.edu", + "token": "39b226afbd4282124dd31b9dd3243cb7e0b1f596", + "tokenExpiry": { + "$date": "1970-01-20T17:25:07.416Z" + }, + "isRegistered": false, + "firstName": "Orelle", + "lastName": "Lawson", + "cohort": "WCRI 84", + "registeredAt": { + "$date": "1970-01-20T13:15:33.880Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cd0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.846Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.846Z" + }, + "__v": 0 + }, + { + "email": "jemer9@constantcontact.com", + "token": "dbc7e41297546ad0d7a437abc4573ad5ac36dd2c", + "tokenExpiry": { + "$date": "1970-01-20T19:06:22.524Z" + }, + "isRegistered": false, + "firstName": "Jess", + "lastName": "Emer", + "cohort": "LA 74", + "registeredAt": { + "$date": "1970-01-20T13:02:37.374Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cd1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.846Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.846Z" + }, + "__v": 0 + }, + { + "email": "mtubblesa@nifty.com", + "token": "a664d8ee7cd56a9ce2963eae874da9c65fcd2361", + "tokenExpiry": { + "$date": "1970-01-20T21:34:46.527Z" + }, + "isRegistered": true, + "firstName": "Mariel", + "lastName": "Tubbles", + "cohort": "PTRI 50", + "registeredAt": { + "$date": "1970-01-20T10:33:43.674Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cd2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.846Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.846Z" + }, + "__v": 0 + }, + { + "email": "pkeightleyb@webnode.com", + "token": "3c78dccda8c878bb7dea64431e5811b2a75af184", + "tokenExpiry": { + "$date": "1970-01-20T20:11:18.643Z" + }, + "isRegistered": true, + "firstName": "Perice", + "lastName": "Keightley", + "cohort": "FTRI 82", + "registeredAt": { + "$date": "1970-01-20T13:31:16.231Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cd3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.846Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.846Z" + }, + "__v": 0 + }, + { + "email": "efalcusc@mapy.cz", + "token": "184efd9e68dbe020111734f78303742a65c1fd15", + "tokenExpiry": { + "$date": "1970-01-20T21:21:11.384Z" + }, + "isRegistered": false, + "firstName": "Eula", + "lastName": "Falcus", + "cohort": "ECRI 12", + "registeredAt": { + "$date": "1970-01-20T18:29:02.836Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cd4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.847Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.847Z" + }, + "__v": 0 + }, + { + "email": "jbaldinid@simplemachines.org", + "token": "26f1e984850651b64779d36d31af27602c8e714b", + "tokenExpiry": { + "$date": "1970-01-20T17:28:00.185Z" + }, + "isRegistered": true, + "firstName": "Jacqui", + "lastName": "Baldini", + "cohort": "LA 96", + "registeredAt": { + "$date": "1970-01-20T14:11:21.038Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cd5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.847Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.847Z" + }, + "__v": 0 + }, + { + "email": "snorthridgee@macromedia.com", + "token": "801d95108e35ccce2fe3b290803de8637d65959e", + "tokenExpiry": { + "$date": "1970-01-20T20:26:40.469Z" + }, + "isRegistered": true, + "firstName": "Scottie", + "lastName": "Northridge", + "cohort": "LA 61", + "registeredAt": { + "$date": "1970-01-20T13:47:43.603Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cd6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.847Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.847Z" + }, + "__v": 0 + }, + { + "email": "dhedgerf@shareasale.com", + "token": "d681aa42bf9f2371c60c05754a93fd1dc860fec8", + "tokenExpiry": { + "$date": "1970-01-20T23:53:00.488Z" + }, + "isRegistered": false, + "firstName": "Dorie", + "lastName": "Hedger", + "cohort": "LA 66", + "registeredAt": { + "$date": "1970-01-20T12:40:26.473Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cd7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.847Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.847Z" + }, + "__v": 0 + }, + { + "email": "nskeeng@yellowbook.com", + "token": "fadb33e7532fdce703106043931f2a6f15f88bc3", + "tokenExpiry": { + "$date": "1970-01-20T22:11:49.297Z" + }, + "isRegistered": false, + "firstName": "Nadia", + "lastName": "Skeen", + "cohort": "WCRI 68", + "registeredAt": { + "$date": "1970-01-20T14:58:04.577Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cd8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.847Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.847Z" + }, + "__v": 0 + }, + { + "email": "mgroomh@samsung.com", + "token": "8df1430be1cc296c94155b06a79a1e24d12b16ad", + "tokenExpiry": { + "$date": "1970-01-20T15:48:51.018Z" + }, + "isRegistered": true, + "firstName": "Mickie", + "lastName": "Groom", + "cohort": "WCRI 23", + "registeredAt": { + "$date": "1970-01-20T13:47:19.049Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cd9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.847Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.847Z" + }, + "__v": 0 + }, + { + "email": "lkupiszi@liveinternet.ru", + "token": "1740f0be8a449176d15c33a65a5c3bc011cc0f07", + "tokenExpiry": { + "$date": "1970-01-20T18:13:43.534Z" + }, + "isRegistered": true, + "firstName": "Leticia", + "lastName": "Kupisz", + "cohort": "PTRI 96", + "registeredAt": { + "$date": "1970-01-20T11:33:31.294Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cda" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.847Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.847Z" + }, + "__v": 0 + }, + { + "email": "bdeanj@mlb.com", + "token": "7f27fa69908e6aa17e28f425de5fcc57f0eeedc0", + "tokenExpiry": { + "$date": "1970-01-20T21:09:58.784Z" + }, + "isRegistered": false, + "firstName": "Babb", + "lastName": "Dean", + "cohort": "LA 73", + "registeredAt": { + "$date": "1970-01-20T12:25:42.997Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cdb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.847Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.847Z" + }, + "__v": 0 + }, + { + "email": "blilleyk@blogs.com", + "token": "7fb8c075412d11bebc0ba1aeca86bb08393f136b", + "tokenExpiry": { + "$date": "1970-01-20T22:12:31.606Z" + }, + "isRegistered": false, + "firstName": "Burtie", + "lastName": "Lilley", + "cohort": "NYC 10", + "registeredAt": { + "$date": "1970-01-20T10:38:22.087Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cdc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.847Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.847Z" + }, + "__v": 0 + }, + { + "email": "dwoodlandl@dailymotion.com", + "token": "774c9ed5bf04f259139e1c14b9446c818f83ec2a", + "tokenExpiry": { + "$date": "1970-01-20T22:18:36.987Z" + }, + "isRegistered": true, + "firstName": "Dorelle", + "lastName": "Woodland", + "cohort": "CTRI 79", + "registeredAt": { + "$date": "1970-01-20T21:05:10.004Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cdd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.847Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.847Z" + }, + "__v": 0 + }, + { + "email": "bdunlapm@dropbox.com", + "token": "0ddfcd5aee883c68ff7a7a704a406998d3b95a64", + "tokenExpiry": { + "$date": "1970-01-20T15:31:46.453Z" + }, + "isRegistered": false, + "firstName": "Burk", + "lastName": "Dunlap", + "cohort": "ECRI 1", + "registeredAt": { + "$date": "1970-01-20T10:46:36.642Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cde" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.848Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.848Z" + }, + "__v": 0 + }, + { + "email": "cdarreln@newyorker.com", + "token": "53488dd01c43dfa1d596c7964a4d2f534dc8ead5", + "tokenExpiry": { + "$date": "1970-01-20T23:03:27.931Z" + }, + "isRegistered": false, + "firstName": "Cecilius", + "lastName": "Darrel", + "cohort": "NYC 45", + "registeredAt": { + "$date": "1970-01-20T18:04:03.899Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cdf" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.848Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.848Z" + }, + "__v": 0 + }, + { + "email": "bbudcocko@va.gov", + "token": "efb168a15a3096e53d12ae9f80569d8d557c4493", + "tokenExpiry": { + "$date": "1970-01-20T16:41:58.041Z" + }, + "isRegistered": true, + "firstName": "Brod", + "lastName": "Budcock", + "cohort": "ECRI 94", + "registeredAt": { + "$date": "1970-01-20T09:40:43.900Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459ce0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.848Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.848Z" + }, + "__v": 0 + }, + { + "email": "bthickinp@ibm.com", + "token": "8e4af5f631de12544c44ed442d50aafb83204a44", + "tokenExpiry": { + "$date": "1970-01-20T19:31:28.928Z" + }, + "isRegistered": false, + "firstName": "Bayard", + "lastName": "Thickin", + "cohort": "PTRI 17", + "registeredAt": { + "$date": "1970-01-20T14:59:50.750Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459ce1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.848Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.848Z" + }, + "__v": 0 + }, + { + "email": "llarringtonq@sakura.ne.jp", + "token": "9951ab34e301c226be2b63b1e3f6b61e7ca6f178", + "tokenExpiry": { + "$date": "1970-01-20T18:09:03.537Z" + }, + "isRegistered": true, + "firstName": "Lorenza", + "lastName": "Larrington", + "cohort": "ECRI 92", + "registeredAt": { + "$date": "1970-01-20T11:34:38.978Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459ce2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.848Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.848Z" + }, + "__v": 0 + }, + { + "email": "rstantonr@mashable.com", + "token": "e5cd7ddfdfb812f47184272328b5510c9d8887b9", + "tokenExpiry": { + "$date": "1970-01-20T18:26:21.578Z" + }, + "isRegistered": true, + "firstName": "Ranna", + "lastName": "Stanton", + "cohort": "FTRI 42", + "registeredAt": { + "$date": "1970-01-20T14:35:02.332Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459ce3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.848Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.848Z" + }, + "__v": 0 + }, + { + "email": "scowdroys@umich.edu", + "token": "43315d4d9b75715104ee90104db03bf430b78fb1", + "tokenExpiry": { + "$date": "1970-01-20T17:51:20.075Z" + }, + "isRegistered": false, + "firstName": "Silvan", + "lastName": "Cowdroy", + "cohort": "PTRI 38", + "registeredAt": { + "$date": "1970-01-20T15:46:38.807Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459ce4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.848Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.848Z" + }, + "__v": 0 + }, + { + "email": "pskirlingt@4shared.com", + "token": "85d7af1fdd70f8fd165a014e08b7a4b3963ac044", + "tokenExpiry": { + "$date": "1970-01-20T20:53:47.794Z" + }, + "isRegistered": false, + "firstName": "Pepita", + "lastName": "Skirling", + "cohort": "FTRI 75", + "registeredAt": { + "$date": "1970-01-20T17:04:37.019Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459ce5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.848Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.848Z" + }, + "__v": 0 + }, + { + "email": "bspensleyu@indiatimes.com", + "token": "597d4be98c6ed3ab97f2301c6da3ee55d69033ed", + "tokenExpiry": { + "$date": "1970-01-20T20:38:19.465Z" + }, + "isRegistered": true, + "firstName": "Brinna", + "lastName": "Spensley", + "cohort": "LA 15", + "registeredAt": { + "$date": "1970-01-20T13:33:35.190Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459ce6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.848Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.848Z" + }, + "__v": 0 + }, + { + "email": "lblaisv@networksolutions.com", + "token": "b7502e54d2a16983c2ffab259798841eec4e8272", + "tokenExpiry": { + "$date": "1970-01-20T17:41:25.133Z" + }, + "isRegistered": true, + "firstName": "Leta", + "lastName": "Blais", + "cohort": "PTRI 42", + "registeredAt": { + "$date": "1970-01-20T17:20:30.885Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459ce7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.849Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.849Z" + }, + "__v": 0 + }, + { + "email": "olehuquetw@privacy.gov.au", + "token": "d368e4882e0e66e2c93020c54534bb56ff2d9d52", + "tokenExpiry": { + "$date": "1970-01-20T22:09:02.625Z" + }, + "isRegistered": true, + "firstName": "Onfre", + "lastName": "Le Huquet", + "cohort": "LA 15", + "registeredAt": { + "$date": "1970-01-20T16:24:15.434Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459ce8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.849Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.849Z" + }, + "__v": 0 + }, + { + "email": "cedworthiex@yelp.com", + "token": "8cb9209121c6007c214e4d7bc010190ee2bdd22a", + "tokenExpiry": { + "$date": "1970-01-20T16:43:23.096Z" + }, + "isRegistered": false, + "firstName": "Cairistiona", + "lastName": "Edworthie", + "cohort": "ECRI 17", + "registeredAt": { + "$date": "1970-01-20T14:57:07.010Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459ce9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.849Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.849Z" + }, + "__v": 0 + }, + { + "email": "jchongy@cpanel.net", + "token": "239edcea2ff7a2c73af428692f85be9b2ffab43f", + "tokenExpiry": { + "$date": "1970-01-20T23:11:47.146Z" + }, + "isRegistered": true, + "firstName": "Jonas", + "lastName": "Chong", + "cohort": "WCRI 34", + "registeredAt": { + "$date": "1970-01-20T16:23:24.074Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cea" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.849Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.849Z" + }, + "__v": 0 + }, + { + "email": "emintoz@statcounter.com", + "token": "4fdd3aae97ec4a7d44202cbfe5034517d0f00ebc", + "tokenExpiry": { + "$date": "1970-01-20T21:48:55.279Z" + }, + "isRegistered": true, + "firstName": "Ezra", + "lastName": "Minto", + "cohort": "WCRI 42", + "registeredAt": { + "$date": "1970-01-20T16:45:04.952Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459ceb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.849Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.849Z" + }, + "__v": 0 + }, + { + "email": "vlicari10@businessweek.com", + "token": "752025d65cc509ae58038fa039654c7c5ccff278", + "tokenExpiry": { + "$date": "1970-01-20T21:18:55.874Z" + }, + "isRegistered": false, + "firstName": "Virgina", + "lastName": "Licari", + "cohort": "CTRI 93", + "registeredAt": { + "$date": "1970-01-20T18:31:24.774Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cec" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.849Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.849Z" + }, + "__v": 0 + }, + { + "email": "rlambrick11@netscape.com", + "token": "38e604f9dd47c6468ab3d4104d8dbc9f6968bfd8", + "tokenExpiry": { + "$date": "1970-01-20T20:19:16.935Z" + }, + "isRegistered": true, + "firstName": "Rickert", + "lastName": "Lambrick", + "cohort": "LA 63", + "registeredAt": { + "$date": "1970-01-20T10:22:28.854Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459ced" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.849Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.849Z" + }, + "__v": 0 + }, + { + "email": "jmadner12@boston.com", + "token": "6f81c343c0ee4efec0c7d3359ec562dfdd26bdfd", + "tokenExpiry": { + "$date": "1970-01-20T20:28:16.843Z" + }, + "isRegistered": true, + "firstName": "Jesselyn", + "lastName": "Madner", + "cohort": "ECRI 55", + "registeredAt": { + "$date": "1970-01-20T12:18:09.400Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cee" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.849Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.849Z" + }, + "__v": 0 + }, + { + "email": "ptest13@ovh.net", + "token": "81d623ebdd75de31900eaeefd2f8f6d82e5de0f8", + "tokenExpiry": { + "$date": "1970-01-20T18:28:28.205Z" + }, + "isRegistered": false, + "firstName": "Peirce", + "lastName": "Test", + "cohort": "CTRI 50", + "registeredAt": { + "$date": "1970-01-20T10:10:01.051Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cef" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.849Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.850Z" + }, + "__v": 0 + }, + { + "email": "swalcher14@hc360.com", + "token": "824b906fd32c063d19ac0413a25ed88b366b400c", + "tokenExpiry": { + "$date": "1970-01-20T18:02:15.307Z" + }, + "isRegistered": true, + "firstName": "Saraann", + "lastName": "Walcher", + "cohort": "PTRI 74", + "registeredAt": { + "$date": "1970-01-20T19:08:59.027Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cf0" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.850Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.850Z" + }, + "__v": 0 + }, + { + "email": "gbank15@live.com", + "token": "0e265dea03b6dd81279caee70688ffc3e4aac84d", + "tokenExpiry": { + "$date": "1970-01-20T18:49:10.549Z" + }, + "isRegistered": true, + "firstName": "Giff", + "lastName": "Bank", + "cohort": "FTRI 42", + "registeredAt": { + "$date": "1970-01-20T12:07:22.746Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cf1" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.850Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.850Z" + }, + "__v": 0 + }, + { + "email": "rallmen16@ask.com", + "token": "ed6593ece367f7a7dc24f97bd2f6f0842f14c0c4", + "tokenExpiry": { + "$date": "1970-01-20T21:25:07.719Z" + }, + "isRegistered": false, + "firstName": "Ronny", + "lastName": "Allmen", + "cohort": "LA 89", + "registeredAt": { + "$date": "1970-01-20T12:51:39.673Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cf2" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.850Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.850Z" + }, + "__v": 0 + }, + { + "email": "kyarrow17@fastcompany.com", + "token": "d7cf565a92803a64d2cee30653696e1d1a6378b9", + "tokenExpiry": { + "$date": "1970-01-20T16:40:02.996Z" + }, + "isRegistered": true, + "firstName": "Kimmi", + "lastName": "Yarrow", + "cohort": "WCRI 10", + "registeredAt": { + "$date": "1970-01-20T13:45:24.672Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cf3" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.850Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.850Z" + }, + "__v": 0 + }, + { + "email": "pshepard18@fc2.com", + "token": "9210e18a7553812264f0de3dc1dfdfd149a98b78", + "tokenExpiry": { + "$date": "1970-01-20T22:04:47.332Z" + }, + "isRegistered": false, + "firstName": "Portia", + "lastName": "Shepard", + "cohort": "PTRI 16", + "registeredAt": { + "$date": "1970-01-20T08:36:25.642Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cf4" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.850Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.850Z" + }, + "__v": 0 + }, + { + "email": "egook19@yale.edu", + "token": "bb6e13b3f037f856d1bb9608fd0c621d6a2a91de", + "tokenExpiry": { + "$date": "1970-01-20T21:56:17.150Z" + }, + "isRegistered": false, + "firstName": "Emlen", + "lastName": "Gook", + "cohort": "WCRI 34", + "registeredAt": { + "$date": "1970-01-20T11:42:55.506Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cf5" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.850Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.850Z" + }, + "__v": 0 + }, + { + "email": "drocks1a@yandex.ru", + "token": "e8a818868eba93a6c8ec66475111de0443dc1bb9", + "tokenExpiry": { + "$date": "1970-01-20T17:03:32.938Z" + }, + "isRegistered": false, + "firstName": "Debee", + "lastName": "Rocks", + "cohort": "PTRI 17", + "registeredAt": { + "$date": "1970-01-20T17:53:43.454Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cf6" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.850Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.850Z" + }, + "__v": 0 + }, + { + "email": "vdhennin1b@webmd.com", + "token": "a38dcb44964ee25e8a6dec9154038d5d9938a87a", + "tokenExpiry": { + "$date": "1970-01-20T16:06:27.212Z" + }, + "isRegistered": false, + "firstName": "Valina", + "lastName": "Dhennin", + "cohort": "NYC 1", + "registeredAt": { + "$date": "1970-01-20T10:57:45.096Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cf7" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.850Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.850Z" + }, + "__v": 0 + }, + { + "email": "dcheasman1c@123-reg.co.uk", + "token": "94b64ff354e2f9fa7c8a037923bfa8b2dd866eeb", + "tokenExpiry": { + "$date": "1970-01-20T15:38:53.422Z" + }, + "isRegistered": false, + "firstName": "Dwayne", + "lastName": "Cheasman", + "cohort": "WCRI 63", + "registeredAt": { + "$date": "1970-01-20T11:36:58.150Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cf8" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.850Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.850Z" + }, + "__v": 0 + }, + { + "email": "ngladhill1d@bravesites.com", + "token": "d1e4e372f411f9b7078f2a40a97c922e29cc77d7", + "tokenExpiry": { + "$date": "1970-01-20T21:28:38.519Z" + }, + "isRegistered": false, + "firstName": "Nellie", + "lastName": "Gladhill", + "cohort": "WCRI 33", + "registeredAt": { + "$date": "1970-01-20T13:09:23.480Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cf9" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.851Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.851Z" + }, + "__v": 0 + }, + { + "email": "elivzey1e@yandex.ru", + "token": "2b1e273101fd6f2762a922de2b5da38bcc106e0a", + "tokenExpiry": { + "$date": "1970-01-20T18:47:00.017Z" + }, + "isRegistered": true, + "firstName": "Eziechiele", + "lastName": "Livzey", + "cohort": "NYC 85", + "registeredAt": { + "$date": "1970-01-20T11:12:55.403Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cfa" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.851Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.851Z" + }, + "__v": 0 + }, + { + "email": "smingasson1f@geocities.jp", + "token": "11b06aee7ad84b24658444456a578d207869e512", + "tokenExpiry": { + "$date": "1970-01-21T00:04:52.948Z" + }, + "isRegistered": true, + "firstName": "Sallyanne", + "lastName": "Mingasson", + "cohort": "NYC 12", + "registeredAt": { + "$date": "1970-01-20T11:45:13.073Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cfb" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.851Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.851Z" + }, + "__v": 0 + }, + { + "email": "hpattullo1g@cocolog-nifty.com", + "token": "f2006654fe52c91bb6953933346a297da119c8c5", + "tokenExpiry": { + "$date": "1970-01-20T23:09:00.391Z" + }, + "isRegistered": true, + "firstName": "Heall", + "lastName": "Pattullo", + "cohort": "LA 75", + "registeredAt": { + "$date": "1970-01-20T10:34:33.540Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cfc" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.851Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.851Z" + }, + "__v": 0 + }, + { + "email": "ascarlan1h@businessinsider.com", + "token": "9cff46cacb3a30c7b3b3b54f277e0aab630d45c4", + "tokenExpiry": { + "$date": "1970-01-20T22:11:04.700Z" + }, + "isRegistered": true, + "firstName": "Amaleta", + "lastName": "Scarlan", + "cohort": "ECRI 52", + "registeredAt": { + "$date": "1970-01-20T19:45:01.940Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cfd" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.851Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.851Z" + }, + "__v": 0 + }, + { + "email": "zlawlance1i@gmpg.org", + "token": "bcb5ce7157e175a16358d596e508c2db76cfc1bc", + "tokenExpiry": { + "$date": "1970-01-20T22:23:28.526Z" + }, + "isRegistered": true, + "firstName": "Zonda", + "lastName": "Lawlance", + "cohort": "CTRI 27", + "registeredAt": { + "$date": "1970-01-20T16:45:24.480Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cfe" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.851Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.851Z" + }, + "__v": 0 + }, + { + "email": "lromney1j@independent.co.uk", + "token": "b85fe93921acfd5cf8d12b574dd3b47e4018e436", + "tokenExpiry": { + "$date": "1970-01-20T19:58:24.543Z" + }, + "isRegistered": false, + "firstName": "Livvy", + "lastName": "Romney", + "cohort": "ECRI 32", + "registeredAt": { + "$date": "1970-01-20T17:22:54.160Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459cff" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.851Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.851Z" + }, + "__v": 0 + }, + { + "email": "ballardyce1k@dell.com", + "token": "0f8a9aac15a71fa742c39d3096542281589366b8", + "tokenExpiry": { + "$date": "1970-01-20T21:26:02.499Z" + }, + "isRegistered": true, + "firstName": "Brockie", + "lastName": "Allardyce", + "cohort": "PTRI 65", + "registeredAt": { + "$date": "1970-01-20T10:24:01.128Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d00" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.851Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.851Z" + }, + "__v": 0 + }, + { + "email": "jatthowe1l@omniture.com", + "token": "aca52ba0413382dde47301aeadf43a363e9997ba", + "tokenExpiry": { + "$date": "1970-01-20T15:42:46.033Z" + }, + "isRegistered": false, + "firstName": "Jaquelyn", + "lastName": "Atthowe", + "cohort": "ECRI 71", + "registeredAt": { + "$date": "1970-01-20T18:20:08.705Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d01" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.851Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.851Z" + }, + "__v": 0 + }, + { + "email": "bguerre1m@ftc.gov", + "token": "7b1dd8462dbfad6cea9dad31f7261fef4ec8be95", + "tokenExpiry": { + "$date": "1970-01-20T21:15:30.214Z" + }, + "isRegistered": true, + "firstName": "Barn", + "lastName": "Guerre", + "cohort": "WCRI 86", + "registeredAt": { + "$date": "1970-01-20T20:43:22.221Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d02" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.852Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.852Z" + }, + "__v": 0 + }, + { + "email": "cmillions1n@domainmarket.com", + "token": "5f6819ad846a8ea3e0880dd7fd17c7e1e2b55d90", + "tokenExpiry": { + "$date": "1970-01-20T18:00:26.083Z" + }, + "isRegistered": false, + "firstName": "Carina", + "lastName": "Millions", + "cohort": "CTRI 9", + "registeredAt": { + "$date": "1970-01-20T15:50:36.752Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d03" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.852Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.852Z" + }, + "__v": 0 + }, + { + "email": "mgrigorini1o@pinterest.com", + "token": "355d05a947933941c88073a12e6787e4e3199b2d", + "tokenExpiry": { + "$date": "1970-01-20T21:30:08.606Z" + }, + "isRegistered": true, + "firstName": "Micaela", + "lastName": "Grigorini", + "cohort": "WCRI 48", + "registeredAt": { + "$date": "1970-01-20T09:06:40.482Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d04" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.852Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.852Z" + }, + "__v": 0 + }, + { + "email": "fredwin1p@lulu.com", + "token": "dd3f9f8550968f560e0beddeeb22e6ed345b66f3", + "tokenExpiry": { + "$date": "1970-01-20T22:00:47.163Z" + }, + "isRegistered": false, + "firstName": "Fran", + "lastName": "Redwin", + "cohort": "PTRI 0", + "registeredAt": { + "$date": "1970-01-20T13:29:42.467Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d05" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.852Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.852Z" + }, + "__v": 0 + }, + { + "email": "kfirmager1q@vistaprint.com", + "token": "dc439fab416b534d3f1691e2b5afa1cb67879d76", + "tokenExpiry": { + "$date": "1970-01-20T18:51:41.604Z" + }, + "isRegistered": true, + "firstName": "Kalina", + "lastName": "Firmager", + "cohort": "PTRI 67", + "registeredAt": { + "$date": "1970-01-20T15:14:33.707Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d06" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.852Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.852Z" + }, + "__v": 0 + }, + { + "email": "lblyth1r@dion.ne.jp", + "token": "a10da796c88d8b7cf9fb78132bf8ec674f2ccf6e", + "tokenExpiry": { + "$date": "1970-01-20T16:58:29.120Z" + }, + "isRegistered": true, + "firstName": "Lurline", + "lastName": "Blyth", + "cohort": "LA 15", + "registeredAt": { + "$date": "1970-01-20T14:18:34.651Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d07" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.852Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.852Z" + }, + "__v": 0 + }, + { + "email": "jstowte1s@pbs.org", + "token": "f1f937e0689f1bc5c2c2c586282f591e7f65d53b", + "tokenExpiry": { + "$date": "1970-01-20T23:09:52.951Z" + }, + "isRegistered": true, + "firstName": "Julianne", + "lastName": "Stowte", + "cohort": "LA 39", + "registeredAt": { + "$date": "1970-01-20T10:56:05.284Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d08" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.852Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.852Z" + }, + "__v": 0 + }, + { + "email": "tpatrie1t@economist.com", + "token": "650aaa0e6787da810abff83ac7745809a1cda53f", + "tokenExpiry": { + "$date": "1970-01-20T21:13:25.232Z" + }, + "isRegistered": true, + "firstName": "Tierney", + "lastName": "Patrie", + "cohort": "PTRI 8", + "registeredAt": { + "$date": "1970-01-20T16:53:05.719Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d09" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.852Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.852Z" + }, + "__v": 0 + }, + { + "email": "gsherborne1u@ustream.tv", + "token": "37cfac40e6796b28a9f5887a0f7ce0bfc8ac4ecb", + "tokenExpiry": { + "$date": "1970-01-20T20:05:43.470Z" + }, + "isRegistered": false, + "firstName": "Gerladina", + "lastName": "Sherborne", + "cohort": "ECRI 28", + "registeredAt": { + "$date": "1970-01-20T19:28:48.496Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d0a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.852Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.852Z" + }, + "__v": 0 + }, + { + "email": "pfarress1v@amazonaws.com", + "token": "bf080b5bb70d6c0a44ce68a8ab8a88e042b19cc1", + "tokenExpiry": { + "$date": "1970-01-20T19:31:56.219Z" + }, + "isRegistered": true, + "firstName": "Phil", + "lastName": "Farress", + "cohort": "FTRI 49", + "registeredAt": { + "$date": "1970-01-20T14:30:52.128Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d0b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.852Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.852Z" + }, + "__v": 0 + }, + { + "email": "eallsop1w@deviantart.com", + "token": "1a5bea6e3a65ac46f6e21680ca0ba34f5e2122f2", + "tokenExpiry": { + "$date": "1970-01-20T16:31:34.713Z" + }, + "isRegistered": false, + "firstName": "Elisha", + "lastName": "Allsop", + "cohort": "ECRI 53", + "registeredAt": { + "$date": "1970-01-20T20:03:21.737Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d0c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.853Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.853Z" + }, + "__v": 0 + }, + { + "email": "cskipton1x@4shared.com", + "token": "45278d736abab31f911da7c843e62b524b65c4f4", + "tokenExpiry": { + "$date": "1970-01-20T22:34:36.760Z" + }, + "isRegistered": false, + "firstName": "Carline", + "lastName": "Skipton", + "cohort": "PTRI 49", + "registeredAt": { + "$date": "1970-01-20T16:49:15.150Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d0d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.853Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.853Z" + }, + "__v": 0 + }, + { + "email": "mnorthridge1y@google.com.au", + "token": "62f61c162c2ccffc5edcbdfdd02ec45cf1c39376", + "tokenExpiry": { + "$date": "1970-01-20T18:03:15.173Z" + }, + "isRegistered": false, + "firstName": "Mia", + "lastName": "Northridge", + "cohort": "LA 84", + "registeredAt": { + "$date": "1970-01-20T11:07:10.387Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d0e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.853Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.853Z" + }, + "__v": 0 + }, + { + "email": "ifriedenbach1z@last.fm", + "token": "bd680ad939d973c3e0010ec7a2a2f1921fecc19d", + "tokenExpiry": { + "$date": "1970-01-20T21:23:43.836Z" + }, + "isRegistered": true, + "firstName": "Isaiah", + "lastName": "Friedenbach", + "cohort": "WCRI 44", + "registeredAt": { + "$date": "1970-01-20T16:50:30.245Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d0f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.853Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.853Z" + }, + "__v": 0 + }, + { + "email": "tdulton20@sitemeter.com", + "token": "f2f3b6b7c83a606cf8cbef085140c25683e80a46", + "tokenExpiry": { + "$date": "1970-01-20T23:13:00.112Z" + }, + "isRegistered": true, + "firstName": "Tallulah", + "lastName": "Dulton", + "cohort": "ECRI 91", + "registeredAt": { + "$date": "1970-01-20T13:17:09.264Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d10" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.853Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.853Z" + }, + "__v": 0 + }, + { + "email": "besherwood21@amazon.com", + "token": "c3beb14a7cd4e9fd4834cdf6594413ed971c01f3", + "tokenExpiry": { + "$date": "1970-01-20T17:54:39.008Z" + }, + "isRegistered": false, + "firstName": "Bel", + "lastName": "Esherwood", + "cohort": "CTRI 86", + "registeredAt": { + "$date": "1970-01-20T19:40:17.366Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d11" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.853Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.853Z" + }, + "__v": 0 + }, + { + "email": "akiley22@cpanel.net", + "token": "d2b06ea8d9e4a572cee6d4e2681f67f00894ad56", + "tokenExpiry": { + "$date": "1970-01-20T23:09:01.587Z" + }, + "isRegistered": true, + "firstName": "Anatol", + "lastName": "Kiley", + "cohort": "ECRI 60", + "registeredAt": { + "$date": "1970-01-20T20:15:39.754Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d12" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.853Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.853Z" + }, + "__v": 0 + }, + { + "email": "cmeth23@zimbio.com", + "token": "8c4a90e9eb572a8dcfb306cc5c26d30387590e28", + "tokenExpiry": { + "$date": "1970-01-20T23:49:56.000Z" + }, + "isRegistered": true, + "firstName": "Corabel", + "lastName": "Meth", + "cohort": "WCRI 33", + "registeredAt": { + "$date": "1970-01-20T11:26:24.205Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d13" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.853Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.853Z" + }, + "__v": 0 + }, + { + "email": "sterrill24@behance.net", + "token": "03eddbc6485cdd42c8f5cac45e249f6cdb7400eb", + "tokenExpiry": { + "$date": "1970-01-20T22:46:26.241Z" + }, + "isRegistered": false, + "firstName": "Shae", + "lastName": "Terrill", + "cohort": "LA 64", + "registeredAt": { + "$date": "1970-01-20T12:46:02.944Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d14" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.854Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.854Z" + }, + "__v": 0 + }, + { + "email": "dmahedy25@wix.com", + "token": "ce05349faa503dc55d9038773796038a7c8df560", + "tokenExpiry": { + "$date": "1970-01-20T21:12:02.995Z" + }, + "isRegistered": false, + "firstName": "Dotty", + "lastName": "Mahedy", + "cohort": "PTRI 59", + "registeredAt": { + "$date": "1970-01-20T17:04:00.599Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d15" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.854Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.854Z" + }, + "__v": 0 + }, + { + "email": "sattiwill26@wsj.com", + "token": "a09c0f90af57af5b39b94cd83d208ffb25111ccb", + "tokenExpiry": { + "$date": "1970-01-20T22:49:09.405Z" + }, + "isRegistered": false, + "firstName": "Salaidh", + "lastName": "Attiwill", + "cohort": "FTRI 89", + "registeredAt": { + "$date": "1970-01-20T19:08:51.917Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d16" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.854Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.854Z" + }, + "__v": 0 + }, + { + "email": "bbomb27@cmu.edu", + "token": "a196221355ed403ad250ccebf4b4019028b1de19", + "tokenExpiry": { + "$date": "1970-01-20T20:50:26.869Z" + }, + "isRegistered": true, + "firstName": "Billi", + "lastName": "Bomb", + "cohort": "NYC 64", + "registeredAt": { + "$date": "1970-01-20T17:13:38.131Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d17" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.854Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.854Z" + }, + "__v": 0 + }, + { + "email": "bbedells28@lycos.com", + "token": "31d50e34784504d1ed2ba0fe979c98c64beaf408", + "tokenExpiry": { + "$date": "1970-01-20T22:14:17.038Z" + }, + "isRegistered": true, + "firstName": "Burty", + "lastName": "Bedells", + "cohort": "PTRI 23", + "registeredAt": { + "$date": "1970-01-20T17:08:45.382Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d18" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.854Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.854Z" + }, + "__v": 0 + }, + { + "email": "dlemin29@nhs.uk", + "token": "b3f374ec819cae31abc03d8d4fd606182994b61c", + "tokenExpiry": { + "$date": "1970-01-20T23:33:14.947Z" + }, + "isRegistered": false, + "firstName": "De", + "lastName": "Lemin", + "cohort": "CTRI 82", + "registeredAt": { + "$date": "1970-01-20T19:38:34.981Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d19" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.854Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.854Z" + }, + "__v": 0 + }, + { + "email": "mdraco2a@shinystat.com", + "token": "106220c3f67863ec7b60efa5d818a9615f1f6ae8", + "tokenExpiry": { + "$date": "1970-01-20T18:50:23.735Z" + }, + "isRegistered": true, + "firstName": "Morgen", + "lastName": "Draco", + "cohort": "LA 61", + "registeredAt": { + "$date": "1970-01-20T11:40:37.999Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d1a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.854Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.854Z" + }, + "__v": 0 + }, + { + "email": "ugrassin2b@ucoz.com", + "token": "0bfe9f83752600b459f9299ef15aeff6e2403feb", + "tokenExpiry": { + "$date": "1970-01-20T18:22:05.381Z" + }, + "isRegistered": true, + "firstName": "Urban", + "lastName": "Grassin", + "cohort": "ECRI 13", + "registeredAt": { + "$date": "1970-01-20T19:01:11.474Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d1b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.855Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.855Z" + }, + "__v": 0 + }, + { + "email": "aatto2c@va.gov", + "token": "d918b6a21507a3b203a595b174084d1bcbfd8643", + "tokenExpiry": { + "$date": "1970-01-20T20:20:45.693Z" + }, + "isRegistered": false, + "firstName": "Archy", + "lastName": "Atto", + "cohort": "LA 25", + "registeredAt": { + "$date": "1970-01-20T19:34:03.526Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d1c" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.855Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.855Z" + }, + "__v": 0 + }, + { + "email": "lmurfill2d@earthlink.net", + "token": "1cfa1580520273a41a6101c1c40d9387a8240e15", + "tokenExpiry": { + "$date": "1970-01-20T23:01:11.765Z" + }, + "isRegistered": true, + "firstName": "Lothaire", + "lastName": "Murfill", + "cohort": "CTRI 51", + "registeredAt": { + "$date": "1970-01-20T17:22:13.684Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d1d" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.855Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.855Z" + }, + "__v": 0 + }, + { + "email": "aocrigan2e@ezinearticles.com", + "token": "7c84c138aaea08c8478456fe062b6026922c6bb0", + "tokenExpiry": { + "$date": "1970-01-20T22:51:40.980Z" + }, + "isRegistered": true, + "firstName": "Anne", + "lastName": "O'Crigan", + "cohort": "FTRI 93", + "registeredAt": { + "$date": "1970-01-20T09:36:48.159Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d1e" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.855Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.855Z" + }, + "__v": 0 + }, + { + "email": "nmeacher2f@barnesandnoble.com", + "token": "fe1032812102bf0930a52971a39da65b9d92be03", + "tokenExpiry": { + "$date": "1970-01-20T19:17:13.160Z" + }, + "isRegistered": true, + "firstName": "Nisse", + "lastName": "Meacher", + "cohort": "ECRI 97", + "registeredAt": { + "$date": "1970-01-20T11:07:19.572Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d1f" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.855Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.855Z" + }, + "__v": 0 + }, + { + "email": "dtraill2g@tamu.edu", + "token": "356be8cf14a78b06cb741c6c1082a5b2639dc100", + "tokenExpiry": { + "$date": "1970-01-20T22:23:15.575Z" + }, + "isRegistered": false, + "firstName": "Dix", + "lastName": "Traill", + "cohort": "WCRI 45", + "registeredAt": { + "$date": "1970-01-20T13:00:41.678Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d20" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.855Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.855Z" + }, + "__v": 0 + }, + { + "email": "vproske2h@newsvine.com", + "token": "674dfc2ddb23a74b43373f5d42b23d29016408c2", + "tokenExpiry": { + "$date": "1970-01-20T20:04:02.238Z" + }, + "isRegistered": false, + "firstName": "Verla", + "lastName": "Proske", + "cohort": "FTRI 40", + "registeredAt": { + "$date": "1970-01-20T13:09:03.295Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d21" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.855Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.855Z" + }, + "__v": 0 + }, + { + "email": "pdahmke2i@diigo.com", + "token": "d165ca490f364a0c81f1c3cf44f7bc5bd314c483", + "tokenExpiry": { + "$date": "1970-01-20T19:48:05.460Z" + }, + "isRegistered": false, + "firstName": "Pennie", + "lastName": "Dahmke", + "cohort": "FTRI 14", + "registeredAt": { + "$date": "1970-01-20T17:46:08.448Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d22" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.855Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.855Z" + }, + "__v": 0 + }, + { + "email": "akilroy2j@elpais.com", + "token": "651b1e2b34363ee9eaeb35d884cacce571bb20d3", + "tokenExpiry": { + "$date": "1970-01-20T19:10:47.532Z" + }, + "isRegistered": true, + "firstName": "Anestassia", + "lastName": "Kilroy", + "cohort": "CTRI 32", + "registeredAt": { + "$date": "1970-01-20T18:12:42.650Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d23" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.856Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.856Z" + }, + "__v": 0 + }, + { + "email": "rvanelli2k@xing.com", + "token": "362b7aeeb1b86eeeeb751f0feb30446f38b3551a", + "tokenExpiry": { + "$date": "1970-01-20T16:23:31.810Z" + }, + "isRegistered": true, + "firstName": "Remus", + "lastName": "Vanelli", + "cohort": "CTRI 7", + "registeredAt": { + "$date": "1970-01-20T13:01:08.428Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d24" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.856Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.856Z" + }, + "__v": 0 + }, + { + "email": "gtarbert2l@discovery.com", + "token": "47b989b8ef9a9640e1301246469e90468b0409b4", + "tokenExpiry": { + "$date": "1970-01-21T00:06:07.924Z" + }, + "isRegistered": true, + "firstName": "Gil", + "lastName": "Tarbert", + "cohort": "ECRI 69", + "registeredAt": { + "$date": "1970-01-20T12:06:31.965Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d25" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.856Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.856Z" + }, + "__v": 0 + }, + { + "email": "ysmelley2m@twitpic.com", + "token": "d9a8b41e99f1fc724641283b275b61141086ecef", + "tokenExpiry": { + "$date": "1970-01-20T19:45:33.227Z" + }, + "isRegistered": true, + "firstName": "Yulma", + "lastName": "Smelley", + "cohort": "FTRI 4", + "registeredAt": { + "$date": "1970-01-20T20:28:53.795Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d26" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.856Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.856Z" + }, + "__v": 0 + }, + { + "email": "tlongworth2n@engadget.com", + "token": "5261c5b65c8539a3affa90614190fcedb77f1fac", + "tokenExpiry": { + "$date": "1970-01-21T00:04:10.140Z" + }, + "isRegistered": false, + "firstName": "Timmy", + "lastName": "Longworth", + "cohort": "LA 56", + "registeredAt": { + "$date": "1970-01-20T18:47:58.351Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d27" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.856Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.856Z" + }, + "__v": 0 + }, + { + "email": "amollatt2o@printfriendly.com", + "token": "4019b03e69e2362fbd1a10fce561eb60bdc16b99", + "tokenExpiry": { + "$date": "1970-01-20T22:59:36.365Z" + }, + "isRegistered": true, + "firstName": "Arthur", + "lastName": "Mollatt", + "cohort": "WCRI 89", + "registeredAt": { + "$date": "1970-01-20T18:28:04.127Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d28" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.856Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.856Z" + }, + "__v": 0 + }, + { + "email": "gtaylor2p@nps.gov", + "token": "16ce55d2ccf612dc3285cfdee894fb8064453a4b", + "tokenExpiry": { + "$date": "1970-01-20T23:53:37.372Z" + }, + "isRegistered": false, + "firstName": "Griffin", + "lastName": "Taylor", + "cohort": "LA 99", + "registeredAt": { + "$date": "1970-01-20T18:10:31.385Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d29" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.856Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.856Z" + }, + "__v": 0 + }, + { + "email": "ostudholme2q@pcworld.com", + "token": "9d62938833da712a578ade3e54cb627996a5464e", + "tokenExpiry": { + "$date": "1970-01-20T16:54:11.012Z" + }, + "isRegistered": true, + "firstName": "Odelinda", + "lastName": "Studholme", + "cohort": "CTRI 22", + "registeredAt": { + "$date": "1970-01-20T09:11:35.487Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d2a" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.856Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.856Z" + }, + "__v": 0 + }, + { + "email": "aduffill2r@nbcnews.com", + "token": "8ccc9ddb9f92b0ee6848dd20ca7f3fab1d98fbb0", + "tokenExpiry": { + "$date": "1970-01-20T18:16:57.687Z" + }, + "isRegistered": true, + "firstName": "Ardith", + "lastName": "Duffill", + "cohort": "CTRI 86", + "registeredAt": { + "$date": "1970-01-20T14:21:35.088Z" + }, + "_id": { + "$oid": "6674c31595590f9fd9459d2b" + }, + "createdAt": { + "$date": "2024-06-21T00:02:29.856Z" + }, + "lastEmailSent": { + "$date": "2024-06-21T00:02:29.856Z" + }, + "__v": 0 + } +] diff --git a/scripts/db/mongo-dev-init/MOCK_POSTS.json b/scripts/db/mongo-dev-init/MOCK_POSTS.json new file mode 100644 index 00000000..1ac5fcd6 --- /dev/null +++ b/scripts/db/mongo-dev-init/MOCK_POSTS.json @@ -0,0 +1,990 @@ +[ + { + "thread": { + "$oid": "6674c31f95590f9fd945a20e" + }, + "user": { + "$oid": "66723da68f368f285d304ac9" + }, + "content": "Discussing the evolution of programming languages and their impact on software development practices.", + "createdAt": { + "$date": "2024-06-21T00:02:39.606Z" + }, + "updatedAt": { + "$date": "2027-04-08T20:49:14.678Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a223" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a20d" + }, + "user": { + "$oid": "66723da68f368f285d304acd" + }, + "content": "What are your thoughts on the future of cybersecurity in the era of AI and automation?", + "createdAt": { + "$date": "2024-06-21T00:02:39.606Z" + }, + "updatedAt": { + "$date": "2024-08-04T07:32:13.537Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a224" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a20e" + }, + "user": { + "$oid": "6644c7f7515c654def9b2b18" + }, + "content": "Tips for managing technical debt in software projects. How do you prioritize and refactor?", + "createdAt": { + "$date": "2024-06-21T00:02:39.606Z" + }, + "updatedAt": { + "$date": "2027-06-03T21:57:17.677Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a225" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a212" + }, + "user": { + "$oid": "6644c602515c654def9b2ae7" + }, + "content": "What are the key factors to consider when choosing a tech stack for a new startup project?", + "createdAt": { + "$date": "2024-06-21T00:02:39.607Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.607Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a226" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a211" + }, + "user": { + "$oid": "6644c602515c654def9b2ae7" + }, + "content": "Discussing the challenges and benefits of implementing blockchain technology in supply chain management.", + "createdAt": { + "$date": "2024-06-21T00:02:39.606Z" + }, + "updatedAt": { + "$date": "2025-03-04T04:00:32.084Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a227" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a207" + }, + "user": { + "$oid": "6644c602515c654def9b2ae7" + }, + "content": "Discussing the benefits of adopting agile methodologies in non-software development teams.", + "createdAt": { + "$date": "2024-06-21T00:02:39.607Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.607Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a228" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a20c" + }, + "user": { + "$oid": "6644c602515c654def9b2ae7" + }, + "content": "Tips for building scalable and maintainable frontend architectures. How do you structure your codebase?", + "createdAt": { + "$date": "2024-06-21T00:02:39.607Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.607Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a229" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a20d" + }, + "user": { + "$oid": "66723da68f368f285d304acd" + }, + "content": "Tips for optimizing database performance in high-traffic web applications. Best practices?", + "createdAt": { + "$date": "2024-06-21T00:02:39.607Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.607Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a22a" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a204" + }, + "user": { + "$oid": "6644c768515c654def9b2b09" + }, + "content": "Seeking advice on transitioning from academia to industry as a software engineer. What are the challenges?", + "createdAt": { + "$date": "2024-06-21T00:02:39.608Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.608Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a22b" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a20f" + }, + "user": { + "$oid": "66723da68f368f285d304acd" + }, + "content": "How can developers contribute to open-source projects? Discussing the impact of community contributions.", + "createdAt": { + "$date": "2024-06-21T00:02:39.608Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.608Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a22c" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a210" + }, + "user": { + "$oid": "6644c7f7515c654def9b2b18" + }, + "content": "Tips for managing technical debt in software projects. How do you prioritize and refactor?", + "createdAt": { + "$date": "2024-06-21T00:02:39.608Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.608Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a22d" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a210" + }, + "user": { + "$oid": "6644c7f7515c654def9b2b18" + }, + "content": "Exploring the challenges of scaling applications globally. How do you design for international users?", + "createdAt": { + "$date": "2024-06-21T00:02:39.606Z" + }, + "updatedAt": { + "$date": "2026-12-23T02:32:10.434Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a22e" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a20d" + }, + "user": { + "$oid": "66723da68f368f285d304acd" + }, + "content": "Tips for optimizing frontend performance in large-scale web applications? What techniques do you use?", + "createdAt": { + "$date": "2024-06-21T00:02:39.606Z" + }, + "updatedAt": { + "$date": "2024-08-24T01:18:00.754Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a22f" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a208" + }, + "user": { + "$oid": "6644c602515c654def9b2ae7" + }, + "content": "What are your thoughts on the future of cybersecurity in the era of AI and automation?", + "createdAt": { + "$date": "2024-06-21T00:02:39.606Z" + }, + "updatedAt": { + "$date": "2026-08-16T10:47:30.615Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a230" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a20e" + }, + "user": { + "$oid": "6644c768515c654def9b2b09" + }, + "content": "How can AI and machine learning be leveraged to enhance personalized user experiences in applications?", + "createdAt": { + "$date": "2024-06-21T00:02:39.608Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.608Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a231" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a209" + }, + "user": { + "$oid": "66723da68f368f285d304acd" + }, + "content": "Exploring the challenges of implementing AI-driven chatbots in customer service applications.", + "createdAt": { + "$date": "2024-06-21T00:02:39.608Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.608Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a232" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a206" + }, + "user": { + "$oid": "6644c768515c654def9b2b09" + }, + "content": "How do you balance feature development with technical debt reduction in agile development?", + "createdAt": { + "$date": "2024-06-21T00:02:39.606Z" + }, + "updatedAt": { + "$date": "2026-02-16T20:31:19.075Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a233" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a20b" + }, + "user": { + "$oid": "6644c768515c654def9b2b09" + }, + "content": "Seeking advice on building a personal brand as a software engineer. How can networking help career growth?", + "createdAt": { + "$date": "2024-06-21T00:02:39.606Z" + }, + "updatedAt": { + "$date": "2025-09-12T07:12:51.482Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a234" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a20a" + }, + "user": { + "$oid": "6644c768515c654def9b2b09" + }, + "content": "Discussing the best practices for securing RESTful APIs. How do you protect against common vulnerabilities?", + "createdAt": { + "$date": "2024-06-21T00:02:39.608Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.608Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a235" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a20b" + }, + "user": { + "$oid": "6644c7f7515c654def9b2b18" + }, + "content": "What are the key factors to consider when choosing a tech stack for a new startup project?", + "createdAt": { + "$date": "2024-06-21T00:02:39.608Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.608Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a236" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a208" + }, + "user": { + "$oid": "6644c602515c654def9b2ae7" + }, + "content": "Tips for managing technical debt in software projects. How do you prioritize and refactor?", + "createdAt": { + "$date": "2024-06-21T00:02:39.608Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.608Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a237" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a20a" + }, + "user": { + "$oid": "6674c31695590f9fd9459dcf" + }, + "content": "Discussing the impact of IoT on everyday life and its implications for software developers.", + "createdAt": { + "$date": "2024-06-21T00:02:39.609Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.609Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a238" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a203" + }, + "user": { + "$oid": "6674c31695590f9fd9459d98" + }, + "content": "How do you approach designing intuitive user interfaces? Share your UX/UI design principles.", + "createdAt": { + "$date": "2024-06-21T00:02:39.609Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.609Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a239" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a205" + }, + "user": { + "$oid": "6674c31695590f9fd9459de4" + }, + "content": "How do you approach code reviews in your team? Share your process for constructive feedback and improvement.", + "createdAt": { + "$date": "2024-06-21T00:02:39.607Z" + }, + "updatedAt": { + "$date": "2027-01-06T07:43:18.087Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a23a" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a20c" + }, + "user": { + "$oid": "6674c31695590f9fd9459d9f" + }, + "content": "Discussing the impact of IoT on everyday life and its implications for software developers.", + "createdAt": { + "$date": "2024-06-21T00:02:39.609Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.609Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a23b" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a204" + }, + "user": { + "$oid": "6674c31695590f9fd9459dd8" + }, + "content": "Seeking advice on transitioning from frontend to full-stack development. What skills should I focus on?", + "createdAt": { + "$date": "2024-06-21T00:02:39.607Z" + }, + "updatedAt": { + "$date": "2024-09-26T05:33:01.963Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a23c" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a20f" + }, + "user": { + "$oid": "6674c31695590f9fd9459daa" + }, + "content": "Seeking advice on preparing for technical interviews at top tech companies. What are common interview questions?", + "createdAt": { + "$date": "2024-06-21T00:02:39.607Z" + }, + "updatedAt": { + "$date": "2025-03-30T04:18:29.802Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a23d" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a205" + }, + "user": { + "$oid": "6674c31695590f9fd9459dcf" + }, + "content": "Tips for managing technical debt in software projects. How do you prioritize and refactor?", + "createdAt": { + "$date": "2024-06-21T00:02:39.607Z" + }, + "updatedAt": { + "$date": "2026-08-15T02:48:35.524Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a23e" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a209" + }, + "user": { + "$oid": "6674c31695590f9fd9459d99" + }, + "content": "Exploring the challenges of implementing AI-driven chatbots in customer service applications.", + "createdAt": { + "$date": "2024-06-21T00:02:39.609Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.609Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a23f" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a209" + }, + "user": { + "$oid": "6674c31695590f9fd9459db8" + }, + "content": "Share your favorite resources for staying updated with the latest tech trends and industry news.", + "createdAt": { + "$date": "2024-06-21T00:02:39.607Z" + }, + "updatedAt": { + "$date": "2026-02-19T11:17:05.581Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a240" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a20c" + }, + "user": { + "$oid": "6674c31695590f9fd9459db1" + }, + "content": "Exploring the benefits of adopting a microservices architecture over monolithic applications.", + "createdAt": { + "$date": "2024-06-21T00:02:39.609Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.609Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a241" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a20b" + }, + "user": { + "$oid": "6674c31695590f9fd9459da8" + }, + "content": "How do you handle software architecture design in agile development? Share your strategies and experiences.", + "createdAt": { + "$date": "2024-06-21T00:02:39.607Z" + }, + "updatedAt": { + "$date": "2025-02-10T14:27:50.834Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a242" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a20b" + }, + "user": { + "$oid": "6674c31695590f9fd9459db7" + }, + "content": "Discussing the adoption of serverless architecture in enterprise applications. What are the use cases?", + "createdAt": { + "$date": "2024-06-21T00:02:39.609Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.609Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a243" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a203" + }, + "user": { + "$oid": "6674c31695590f9fd9459df2" + }, + "content": "Tips for effective project management in software development teams. How do you ensure deadlines are met?", + "createdAt": { + "$date": "2024-06-21T00:02:39.609Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.609Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a244" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a20b" + }, + "user": { + "$oid": "6674c31695590f9fd9459dd8" + }, + "content": "Seeking advice on preparing for technical interviews at top tech companies. What are common interview questions?", + "createdAt": { + "$date": "2024-06-21T00:02:39.610Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.610Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a245" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a203" + }, + "user": { + "$oid": "6674c31695590f9fd9459d97" + }, + "content": "I'm new to web development. Can anyone recommend a good beginner-friendly JavaScript framework?", + "createdAt": { + "$date": "2024-06-21T00:02:39.607Z" + }, + "updatedAt": { + "$date": "2028-06-17T04:45:49.087Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a246" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a205" + }, + "user": { + "$oid": "6674c31695590f9fd9459db9" + }, + "content": "How can AI and machine learning be leveraged to enhance personalized user experiences in applications?", + "createdAt": { + "$date": "2024-06-21T00:02:39.607Z" + }, + "updatedAt": { + "$date": "2026-08-14T08:18:55.620Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a247" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a20b" + }, + "user": { + "$oid": "6674c31695590f9fd9459da5" + }, + "content": "Share your favorite resources for staying updated with the latest tech trends and industry news.", + "createdAt": { + "$date": "2024-06-21T00:02:39.610Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.610Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a248" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a20a" + }, + "user": { + "$oid": "6674c31695590f9fd9459dc2" + }, + "content": "Exploring the benefits of using TypeScript in large-scale JavaScript applications. Is it worth the learning curve?", + "createdAt": { + "$date": "2024-06-21T00:02:39.610Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.610Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a249" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a20a" + }, + "user": { + "$oid": "6674c31695590f9fd9459daf" + }, + "content": "How do you approach refactoring legacy codebases? Share your strategies for modernization.", + "createdAt": { + "$date": "2024-06-21T00:02:39.610Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.610Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a24a" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a210" + }, + "user": { + "$oid": "6644c602515c654def9b2ae7" + }, + "content": "Tips for effective project management in software development teams. How do you ensure deadlines are met?", + "createdAt": { + "$date": "2024-06-21T00:02:39.610Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.610Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a24b" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a207" + }, + "user": { + "$oid": "6644c768515c654def9b2b09" + }, + "content": "What are the key factors to consider when choosing a tech stack for a new startup project?", + "createdAt": { + "$date": "2024-06-21T00:02:39.610Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.610Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a24c" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a211" + }, + "user": { + "$oid": "6674c31695590f9fd9459dc6" + }, + "content": "Discussing the impact of IoT on everyday life and its implications for software developers.", + "createdAt": { + "$date": "2024-06-21T00:02:39.607Z" + }, + "updatedAt": { + "$date": "2027-05-25T08:49:22.671Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a24d" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a210" + }, + "user": { + "$oid": "6674c31695590f9fd9459da5" + }, + "content": "Share your insights on DevOps culture and its impact on software development teams.", + "createdAt": { + "$date": "2024-06-21T00:02:39.607Z" + }, + "updatedAt": { + "$date": "2025-09-08T07:26:08.375Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a24e" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a211" + }, + "user": { + "$oid": "6674c31695590f9fd9459da5" + }, + "content": "What are the essential skills for a successful software engineering career in the next decade?", + "createdAt": { + "$date": "2024-06-21T00:02:39.610Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.610Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a24f" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a208" + }, + "user": { + "$oid": "6674c31695590f9fd9459dae" + }, + "content": "How can developers contribute to open-source projects? Discussing the impact of community contributions.", + "createdAt": { + "$date": "2024-06-21T00:02:39.610Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.610Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a250" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a207" + }, + "user": { + "$oid": "6674c31695590f9fd9459de2" + }, + "content": "Debating the future of AI and its potential impact on industries like healthcare and finance.", + "createdAt": { + "$date": "2024-06-21T00:02:39.610Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.610Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a251" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a205" + }, + "user": { + "$oid": "6674c31695590f9fd9459dee" + }, + "content": "Exploring the benefits of adopting a microservices architecture over monolithic applications.", + "createdAt": { + "$date": "2024-06-21T00:02:39.611Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.611Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a252" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a209" + }, + "user": { + "$oid": "6674c31695590f9fd9459dc5" + }, + "content": "What are the emerging trends in mobile app development? Discussing technologies like Flutter and React Native.", + "createdAt": { + "$date": "2024-06-21T00:02:39.611Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.611Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a253" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a204" + }, + "user": { + "$oid": "6674c31695590f9fd9459dae" + }, + "content": "Seeking advice on transitioning from frontend to full-stack development. What skills should I focus on?", + "createdAt": { + "$date": "2024-06-21T00:02:39.611Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.611Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a254" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a206" + }, + "user": { + "$oid": "6674c31695590f9fd9459da0" + }, + "content": "Seeking advice on preparing for technical interviews at top tech companies. What are common interview questions?", + "createdAt": { + "$date": "2024-06-21T00:02:39.611Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.611Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a255" + }, + "__v": 0 + }, + { + "thread": { + "$oid": "6674c31f95590f9fd945a20c" + }, + "user": { + "$oid": "6674c31695590f9fd9459df2" + }, + "content": "How important is unit testing in your development workflow? Discussing the impact on code quality.", + "createdAt": { + "$date": "2024-06-21T00:02:39.611Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.611Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a256" + }, + "__v": 0 + } +] diff --git a/scripts/db/mongo-dev-init/MOCK_PROFILES.json b/scripts/db/mongo-dev-init/MOCK_PROFILES.json new file mode 100644 index 00000000..ca441496 --- /dev/null +++ b/scripts/db/mongo-dev-init/MOCK_PROFILES.json @@ -0,0 +1,12304 @@ +[ + { + "user": { + "$oid": "66723da68f368f285d304ac9" + }, + "firstName": "Testy", + "lastName": "McTesterson", + "profilePhoto": "https://www.codesmith.io/hubfs/Screen%20Shot%202024-06-10%20at%2010.46.24%20AM.png", + "cohort": "PTRI 19", + "graduationYear": 2024, + "email": "tester@codehammers.com", + "linkedInProfile": "https://www.linkedin.com/in/Testy-McTesterson-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": ["Software Architecture", "Containerization"], + "specializations": [ + "WebSockets", + "Performance Optimization", + "Integration Testing", + "Deep Learning", + "Code Review", + "Containerization", + "React", + "Azure" + ], + "careerInformation": { + "currentPosition": { "title": "Cloud Engineer", "company": "Cisco" }, + "pastPositions": [ + { + "title": "Mobile Developer", + "company": "Dropbox", + "startDate": { + "$date": "2024-06-21T00:02:38.628Z" + }, + "endDate": { + "$date": "2027-10-10T03:09:26.750Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459e64" + } + }, + { + "title": "Lead Software Engineer", + "company": "Square", + "startDate": { + "$date": "2024-06-21T00:02:38.628Z" + }, + "endDate": { + "$date": "2027-12-11T16:42:53.446Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459e65" + } + }, + { + "title": "Machine Learning Engineer", + "company": "Apple", + "startDate": { + "$date": "2024-06-21T00:02:38.628Z" + }, + "endDate": { + "$date": "2024-07-12T03:29:40.355Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459e66" + } + }, + { + "title": "Security Engineer", + "company": "NVIDIA", + "startDate": { + "$date": "2024-06-21T00:02:38.628Z" + }, + "endDate": { + "$date": "2026-11-28T07:29:13.216Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459e67" + } + }, + { + "title": "Site Reliability Engineer", + "company": "Asana", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2026-03-20T05:16:50.298Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459e68" + } + } + ] + }, + "education": [], + "projects": [ + { + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", + "_id": { + "$oid": "6674c31e95590f9fd9459e69" + } + }, + { + "name": "CloudGuard", + "description": "Advanced cloud security suite ensuring data protection and compliance.", + "link": "https://github.com/username/cloudguard", + "_id": { + "$oid": "6674c31e95590f9fd9459e6a" + } + }, + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "6674c31e95590f9fd9459e6b" + } + }, + { + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", + "_id": { + "$oid": "6674c31e95590f9fd9459e6c" + } + } + ], + "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", + "testimonials": [ + { + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "_id": { + "$oid": "6674c31e95590f9fd9459e6d" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459e6e" + } + }, + { + "from": "Aiden Walker", + "relation": "CTO at Innovate Solutions", + "text": "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", + "_id": { + "$oid": "6674c31e95590f9fd9459e6f" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Testy-McTesterson-fake-blog.com", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Kenzie Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459e63" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6644c768515c654def9b2b09" + }, + "firstName": "Jane", + "lastName": "Doe", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "LA 22", + "graduationYear": 2024, + "email": "jane@codehammers.com", + "linkedInProfile": "https://www.linkedin.com/in/Jane-Doe-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": [ + "React", + "Deep Learning", + "Python", + "Big Data", + "Automated Testing", + "HTML", + "Refactoring", + "Docker" + ], + "specializations": [], + "careerInformation": { + "currentPosition": { "title": "Engineering Manager", "company": "Stripe" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "Johns Hopkins University", + "degree": "Bachelor of Engineering (BE)", + "fieldOfStudy": "Marketing", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2027-11-18T07:45:56.863Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459e71" + } + }, + { + "institution": "University of Washington", + "degree": "Doctor of Education (EdD)", + "fieldOfStudy": "Mathematics", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2028-06-14T22:44:00.693Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459e72" + } + } + ], + "projects": [ + { + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", + "_id": { + "$oid": "6674c31e95590f9fd9459e73" + } + }, + { + "name": "FoodDelivery", + "description": "Online food delivery platform connecting restaurants with customers for food ordering.", + "link": "https://github.com/username/fooddelivery", + "_id": { + "$oid": "6674c31e95590f9fd9459e74" + } + }, + { + "name": "TourismApp", + "description": "Mobile application for tourists providing travel guides and local recommendations.", + "link": "https://github.com/username/tourismapp", + "_id": { + "$oid": "6674c31e95590f9fd9459e75" + } + }, + { + "name": "RecruitmentAI", + "description": "AI-powered recruitment platform for matching candidates with job opportunities.", + "link": "https://github.com/username/recruitmentai", + "_id": { + "$oid": "6674c31e95590f9fd9459e76" + } + }, + { + "name": "VirtualAssistant", + "description": "Virtual assistant software for voice command-based tasks and personal assistance.", + "link": "https://github.com/username/virtualassistant", + "_id": { + "$oid": "6674c31e95590f9fd9459e77" + } + } + ], + "personalBio": "Skilled in working with cross-functional teams to deliver innovative software solutions that exceed expectations.", + "testimonials": [ + { + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd9459e78" + } + }, + { + "from": "Lucas Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", + "_id": { + "$oid": "6674c31e95590f9fd9459e79" + } + }, + { + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "_id": { + "$oid": "6674c31e95590f9fd9459e7a" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Jane-Doe-fake", + "blog": "https://www.Jane-Doe-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Kenzie Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459e70" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6644c602515c654def9b2ae7" + }, + "firstName": "John", + "lastName": "Dough", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "PTRI 79", + "graduationYear": 2024, + "email": "john@codehammers.com", + "linkedInProfile": "https://www.linkedin.com/in/John-Dough-fake", + "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", + "skills": [ + "Continuous Deployment", + "CSS", + "Legacy Code Management", + "API Development", + "Technical Writing", + "Laravel", + "Robotic Process Automation", + "Code Review", + "SaaS (Software as a Service)", + "User Interface (UI) Design", + "Angular", + "API Integration" + ], + "specializations": [ + "AR/VR (Augmented/Virtual Reality)", + "Google Cloud Platform", + "Machine Learning", + "IoT (Internet of Things)", + "AWS", + "Containerization", + "C#", + "CI/CD", + "Reactive Programming", + "Cybersecurity", + "Node.js", + "Deep Learning", + "Mobile Development" + ], + "careerInformation": { + "currentPosition": { "title": "Android Developer", "company": "Intel" }, + "pastPositions": [ + { + "title": "Software Developer", + "company": "Uber", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2027-09-09T07:07:12.937Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459e7c" + } + }, + { + "title": "AI Engineer", + "company": "Twitter", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2027-12-02T21:47:59.011Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459e7d" + } + } + ] + }, + "education": [], + "projects": [], + "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", + "testimonials": [ + { + "from": "Emily Brown", + "relation": "Client at GlobalSoft Solutions", + "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd9459e7e" + } + }, + { + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "_id": { + "$oid": "6674c31e95590f9fd9459e7f" + } + }, + { + "from": "Lucas Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", + "_id": { + "$oid": "6674c31e95590f9fd9459e80" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "6674c31e95590f9fd9459e81" + } + }, + { + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd9459e82" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/John-Dough-fake", + "blog": "https://www.John-Dough-fake-blog.com", + "other": ["https://www.instagram.com/John-Dough-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Hack Reactor", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459e7b" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6644c7f7515c654def9b2b18" + }, + "firstName": "Jaime", + "lastName": "Doh", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "WCRI 12", + "graduationYear": 2024, + "email": "jaime@codehammers.com", + "linkedInProfile": "https://www.linkedin.com/in/Jaime-Doh-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": [ + "Data Science", + "Performance Optimization", + "System Design", + "Parallel Computing", + "Vue.js" + ], + "specializations": [ + "Docker", + "API Development", + "Software Architecture", + "SQL", + "Blockchain", + "Natural Language Processing", + "Mobile Development", + "Event-Driven Architecture", + "Quantum Computing", + "Version Control", + "IoT (Internet of Things)", + "Object-Oriented Programming", + "Python", + "Laravel", + "TDD (Test-Driven Development)", + "RESTful APIs", + "Git", + "ASP.NET" + ], + "careerInformation": { + "currentPosition": { "title": "Principal Software Engineer", "company": "IBM" }, + "pastPositions": [ + { + "title": "Data Scientist", + "company": "Facebook", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2028-03-11T07:42:22.722Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459e84" + } + }, + { + "title": "Software Developer", + "company": "Snapchat", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2026-05-04T04:30:26.274Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459e85" + } + } + ] + }, + "education": [], + "projects": [ + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "6674c31e95590f9fd9459e86" + } + }, + { + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", + "_id": { + "$oid": "6674c31e95590f9fd9459e87" + } + }, + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "6674c31e95590f9fd9459e88" + } + }, + { + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", + "_id": { + "$oid": "6674c31e95590f9fd9459e89" + } + } + ], + "personalBio": "Innovative thinker with a track record of proposing and implementing creative solutions to technical challenges.", + "testimonials": [ + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd9459e8a" + } + }, + { + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd9459e8b" + } + }, + { + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "_id": { + "$oid": "6674c31e95590f9fd9459e8c" + } + }, + { + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "_id": { + "$oid": "6674c31e95590f9fd9459e8d" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd9459e8e" + } + } + ], + "socialMediaLinks": { + "blog": "https://www.Jaime-Doh-fake-blog.com", + "other": ["https://www.instagram.com/Jaime-Doh-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "DevMountain", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459e83" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304acd" + }, + "firstName": "Homer", + "lastName": "Simpson", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "ECRI 33", + "graduationYear": 2024, + "email": "homer@donuts.com", + "linkedInProfile": "https://www.linkedin.com/in/Homer-Simpson-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": ["Data Warehousing", "Java", "Object-Oriented Programming", "CI/CD", "Deep Learning"], + "specializations": [ + "Project Management", + "Containerization", + "NoSQL", + "Big Data", + "Performance Optimization", + "Robotic Process Automation", + "Technical Writing", + "Deep Learning", + "Parallel Computing", + "RESTful APIs", + "Database Design", + "Laravel", + "Cybersecurity", + "User Experience (UX) Design", + "Scrum", + "Django" + ], + "careerInformation": { + "currentPosition": { "title": "Android Developer", "company": "Intel" }, + "pastPositions": [ + { + "title": "Senior Software Engineer", + "company": "PayPal", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2025-04-12T21:27:36.733Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459e90" + } + }, + { + "title": "Software Developer", + "company": "HubSpot", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2028-03-20T10:24:49.358Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459e91" + } + }, + { + "title": "AI Engineer", + "company": "Coinbase", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2028-06-18T18:44:44.418Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459e92" + } + } + ] + }, + "education": [], + "projects": [ + { + "name": "VirtualAssistant", + "description": "Virtual assistant software for voice command-based tasks and personal assistance.", + "link": "https://github.com/username/virtualassistant", + "_id": { + "$oid": "6674c31e95590f9fd9459e93" + } + }, + { + "name": "TourismApp", + "description": "Mobile application for tourists providing travel guides and local recommendations.", + "link": "https://github.com/username/tourismapp", + "_id": { + "$oid": "6674c31e95590f9fd9459e94" + } + }, + { + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", + "_id": { + "$oid": "6674c31e95590f9fd9459e95" + } + } + ], + "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", + "testimonials": [ + { + "from": "Liam Harris", + "relation": "Lead Developer at CloudTech", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459e96" + } + }, + { + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + "_id": { + "$oid": "6674c31e95590f9fd9459e97" + } + }, + { + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd9459e98" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd9459e99" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Homer-Simpson-fake", + "blog": "https://www.Homer-Simpson-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Flatiron School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459e8f" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459d95" + }, + "firstName": "Corine", + "lastName": "Tugwell", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "ECRI 59", + "graduationYear": 2024, + "email": "ctugwell0@ovh.net", + "linkedInProfile": "https://www.linkedin.com/in/Corine-Tugwell-fake", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "skills": [ + "WebSockets", + "Deep Learning", + "Python", + "Project Management", + "Cybersecurity", + "Agile Development", + "Event-Driven Architecture", + "C#" + ], + "specializations": [ + "Integration Testing", + "Graph Theory", + "Natural Language Processing", + "Flask" + ], + "careerInformation": { + "currentPosition": { "title": "Full Stack Developer", "company": "Uber" }, + "pastPositions": [ + { + "title": "AI Engineer", + "company": "Snowflake", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2026-01-21T23:56:05.245Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459e9b" + } + }, + { + "title": "Lead Software Engineer", + "company": "Intel", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2026-11-09T16:01:14.054Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459e9c" + } + } + ] + }, + "education": [ + { + "institution": "University of Pennsylvania", + "degree": "Postdoctoral Research", + "fieldOfStudy": "Accounting", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2027-07-25T03:58:24.891Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459e9d" + } + } + ], + "projects": [], + "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Corine-Tugwell-fake", + "blog": "https://www.Corine-Tugwell-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Springboard", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459e9a" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459d96" + }, + "firstName": "Brody", + "lastName": "Cumpton", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "cohort": "LA 53", + "graduationYear": 2024, + "email": "bcumpton1@bluehost.com", + "linkedInProfile": "https://www.linkedin.com/in/Brody-Cumpton-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": [ + "Cybersecurity", + "Functional Programming", + "Continuous Deployment", + "BDD (Behavior-Driven Development)", + "Code Review", + "C#", + "ASP.NET", + "System Design", + "Serverless Architecture", + "Node.js", + "Leadership", + "Refactoring" + ], + "specializations": ["Design Patterns", "ASP.NET", "Data Science"], + "careerInformation": { + "currentPosition": { "title": "Automation Engineer", "company": "DoorDash" }, + "pastPositions": [ + { + "title": "AI Engineer", + "company": "Activision Blizzard", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2024-07-19T16:33:45.483Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459e9f" + } + }, + { + "title": "Data Engineer", + "company": "Cisco", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2027-11-18T15:54:33.828Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ea0" + } + } + ] + }, + "education": [ + { + "institution": "University of Hong Kong (HKU)", + "degree": "Doctor of Veterinary Medicine (DVM)", + "fieldOfStudy": "Fine Arts", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2026-04-20T15:00:38.622Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ea1" + } + }, + { + "institution": "Rice University", + "degree": "Doctoral Degree", + "fieldOfStudy": "Electrical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2027-04-09T18:24:08.544Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ea2" + } + }, + { + "institution": "Emory University", + "degree": "Associate Degree", + "fieldOfStudy": "Fine Arts", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2024-08-25T01:25:26.296Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ea3" + } + } + ], + "projects": [ + { + "name": "HealthLink", + "description": "Telemedicine platform connecting patients with healthcare providers remotely.", + "link": "https://github.com/username/healthlink", + "_id": { + "$oid": "6674c31e95590f9fd9459ea4" + } + }, + { + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", + "_id": { + "$oid": "6674c31e95590f9fd9459ea5" + } + }, + { + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", + "_id": { + "$oid": "6674c31e95590f9fd9459ea6" + } + }, + { + "name": "ARNavigation", + "description": "Augmented reality navigation app for real-time directions and location-based information.", + "link": "https://github.com/username/arnavigation", + "_id": { + "$oid": "6674c31e95590f9fd9459ea7" + } + }, + { + "name": "NetPlanner", + "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", + "link": "https://github.com/username/netplanner", + "_id": { + "$oid": "6674c31e95590f9fd9459ea8" + } + } + ], + "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", + "testimonials": [ + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd9459ea9" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd9459eaa" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Brody-Cumpton-fake", + "blog": "https://www.Brody-Cumpton-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": true, + "bootcampExperience": "App Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459e9e" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459d97" + }, + "firstName": "Moselle", + "lastName": "Duro", + "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "cohort": "ECRI 35", + "graduationYear": 2024, + "email": "mduro2@technorati.com", + "linkedInProfile": "https://www.linkedin.com/in/Moselle-Duro-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": [], + "specializations": [ + "Critical Thinking", + "Performance Optimization", + "Graph Theory", + "Python", + "WebSockets", + "Parallel Computing", + "Project Management", + "Reactive Programming", + "Data Science" + ], + "careerInformation": { + "currentPosition": { "title": "Data Scientist", "company": "Adobe" }, + "pastPositions": [ + { + "title": "Software Engineer", + "company": "Intel", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2024-08-04T07:39:44.239Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459eac" + } + }, + { + "title": "Automation Engineer", + "company": "ServiceNow", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2028-04-12T13:00:51.922Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ead" + } + } + ] + }, + "education": [ + { + "institution": "Carnegie Mellon University", + "degree": "Trade School Certification", + "fieldOfStudy": "Dentistry", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2026-10-05T23:54:03.085Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459eae" + } + }, + { + "institution": "University of British Columbia", + "degree": "Master of Public Administration (MPA)", + "fieldOfStudy": "Nursing", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2027-09-30T00:54:06.572Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459eaf" + } + } + ], + "projects": [ + { + "name": "SmartLearning", + "description": "AI-driven personalized learning platform with adaptive learning algorithms.", + "link": "https://github.com/username/smartlearning", + "_id": { + "$oid": "6674c31e95590f9fd9459eb0" + } + }, + { + "name": "HealthMonitor", + "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", + "link": "https://github.com/username/healthmonitor", + "_id": { + "$oid": "6674c31e95590f9fd9459eb1" + } + }, + { + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", + "_id": { + "$oid": "6674c31e95590f9fd9459eb2" + } + }, + { + "name": "CryptoTrack", + "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", + "link": "https://github.com/username/cryptotrack", + "_id": { + "$oid": "6674c31e95590f9fd9459eb3" + } + }, + { + "name": "SmartLearning", + "description": "AI-driven personalized learning platform with adaptive learning algorithms.", + "link": "https://github.com/username/smartlearning", + "_id": { + "$oid": "6674c31e95590f9fd9459eb4" + } + } + ], + "personalBio": "Committed to writing clean, maintainable code that meets rigorous performance standards.", + "testimonials": [ + { + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "_id": { + "$oid": "6674c31e95590f9fd9459eb5" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd9459eb6" + } + }, + { + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd9459eb7" + } + }, + { + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459eb8" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Moselle-Duro-fake-blog.com", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Lambda School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459eab" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459d98" + }, + "firstName": "Winifred", + "lastName": "Carnelley", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "CTRI 43", + "graduationYear": 2024, + "email": "wcarnelley3@ucsd.edu", + "linkedInProfile": "https://www.linkedin.com/in/Winifred-Carnelley-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [], + "specializations": ["SQL", "Event-Driven Architecture", "Java", "Automated Testing"], + "careerInformation": { + "currentPosition": { "title": "Cloud Engineer", "company": "Stripe" }, + "pastPositions": [ + { + "title": "Principal Software Engineer", + "company": "Stripe", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2026-10-28T00:27:58.801Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459eba" + } + }, + { + "title": "Site Reliability Engineer", + "company": "Zoom", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2027-04-07T05:12:43.621Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ebb" + } + }, + { + "title": "Automation Engineer", + "company": "Slack", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2027-05-20T18:04:40.281Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ebc" + } + } + ] + }, + "education": [ + { + "institution": "University of Arizona", + "degree": "Bachelor of Arts (BA)", + "fieldOfStudy": "Civil Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2026-10-24T16:15:27.252Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ebd" + } + }, + { + "institution": "California Institute of Technology (Caltech)", + "degree": "Doctor of Medicine (MD)", + "fieldOfStudy": "Mechanical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2027-05-18T20:43:41.258Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ebe" + } + }, + { + "institution": "Columbia University", + "degree": "Bachelor of Technology (BTech)", + "fieldOfStudy": "Biology", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2026-10-21T01:23:24.583Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ebf" + } + } + ], + "projects": [ + { + "name": "SmartWatch", + "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", + "link": "https://github.com/username/smartwatch", + "_id": { + "$oid": "6674c31e95590f9fd9459ec0" + } + }, + { + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", + "_id": { + "$oid": "6674c31e95590f9fd9459ec1" + } + }, + { + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", + "_id": { + "$oid": "6674c31e95590f9fd9459ec2" + } + } + ], + "personalBio": "Skilled in UX/UI design principles, with a focus on creating intuitive and visually appealing interfaces.", + "testimonials": [ + { + "from": "Liam Harris", + "relation": "Lead Developer at CloudTech", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459ec3" + } + }, + { + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd9459ec4" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd9459ec5" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd9459ec6" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd9459ec7" + } + } + ], + "socialMediaLinks": { + "blog": "https://www.Winifred-Carnelley-fake-blog.com", + "other": ["https://www.instagram.com/Winifred-Carnelley-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Lambda School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459eb9" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459d99" + }, + "firstName": "Marchelle", + "lastName": "Truin", + "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "cohort": "ECRI 75", + "graduationYear": 2024, + "email": "mtruin4@stumbleupon.com", + "linkedInProfile": "https://www.linkedin.com/in/Marchelle-Truin-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [ + "User Interface (UI) Design", + "GraphQL", + "Refactoring", + "Deep Learning", + "Problem-Solving", + "Pair Programming", + "Database Design", + "Parallel Computing", + "Reactive Programming", + "BDD (Behavior-Driven Development)", + "Graph Theory", + "NoSQL", + "Machine Learning", + "Spring Boot", + "Big Data", + "Blockchain", + "iOS Development", + "Node.js" + ], + "specializations": [ + "Edge Computing", + "Flask", + "RESTful APIs", + "Functional Programming", + "Event-Driven Architecture", + "Google Cloud Platform", + "Communication Skills", + "Docker" + ], + "careerInformation": { + "currentPosition": { "title": "DevOps Engineer", "company": "Snapchat" }, + "pastPositions": [ + { + "title": "Test Engineer", + "company": "Lyft", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2025-09-25T10:44:24.021Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ec9" + } + }, + { + "title": "Data Scientist", + "company": "Facebook", + "startDate": { + "$date": "2024-06-21T00:02:38.629Z" + }, + "endDate": { + "$date": "2026-07-19T22:19:39.735Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459eca" + } + } + ] + }, + "education": [], + "projects": [], + "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", + "testimonials": [ + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd9459ecb" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "_id": { + "$oid": "6674c31e95590f9fd9459ecc" + } + }, + { + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd9459ecd" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Marchelle-Truin-fake", + "blog": "https://www.Marchelle-Truin-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": false, + "bootcampExperience": "The Tech Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459ec8" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459d9a" + }, + "firstName": "Cally", + "lastName": "Gisbey", + "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "cohort": "WCRI 47", + "graduationYear": 2024, + "email": "cgisbey5@squarespace.com", + "linkedInProfile": "https://www.linkedin.com/in/Cally-Gisbey-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": [ + "Continuous Deployment", + "Quantum Computing", + "Cybersecurity", + "C#", + "C++", + "Graph Databases", + "RESTful APIs", + "SaaS (Software as a Service)", + "Android Development", + "Machine Learning", + "Collaboration", + "Data Science", + "Data Visualization", + "Event-Driven Architecture" + ], + "specializations": [ + "FaaS (Function as a Service)", + "Refactoring", + "Data Visualization", + "Kubernetes", + "Cloud Computing", + "Software Architecture", + "Android Development", + "Flask", + "API Development" + ], + "careerInformation": { + "currentPosition": { "title": "Software Engineer", "company": "Red Hat" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "Chinese University of Hong Kong (CUHK)", + "degree": "Executive Education", + "fieldOfStudy": "Biomedical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-03-26T12:16:39.146Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ecf" + } + } + ], + "projects": [ + { + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", + "_id": { + "$oid": "6674c31e95590f9fd9459ed0" + } + }, + { + "name": "EcoTech", + "description": "Environmental monitoring and conservation app with real-time data visualization.", + "link": "https://github.com/username/ecotech", + "_id": { + "$oid": "6674c31e95590f9fd9459ed1" + } + }, + { + "name": "AIChatbot", + "description": "AI-powered chatbot for customer support and interactive communication.", + "link": "https://github.com/username/aichatbot", + "_id": { + "$oid": "6674c31e95590f9fd9459ed2" + } + } + ], + "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", + "testimonials": [ + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd9459ed3" + } + }, + { + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459ed4" + } + }, + { + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "_id": { + "$oid": "6674c31e95590f9fd9459ed5" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd9459ed6" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd9459ed7" + } + } + ], + "socialMediaLinks": { + "blog": "https://www.Cally-Gisbey-fake-blog.com", + "other": ["https://www.instagram.com/Cally-Gisbey-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Kenzie Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459ece" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459d9b" + }, + "firstName": "Arlina", + "lastName": "Moodie", + "cohort": "CTRI 90", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459ed8" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459d9c" + }, + "firstName": "Shurlock", + "lastName": "Tytcomb", + "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "cohort": "FTRI 96", + "graduationYear": 2024, + "email": "stytcomb8@google.it", + "linkedInProfile": "https://www.linkedin.com/in/Shurlock-Tytcomb-fake", + "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", + "skills": [ + "Mobile Development", + "Python", + "Serverless Architecture", + "Microservices", + "Technical Writing", + "Database Design", + "React", + "Data Visualization", + "Android Development", + "Project Management" + ], + "specializations": [ + "Pair Programming", + "BDD (Behavior-Driven Development)", + "SaaS (Software as a Service)", + "Performance Optimization", + "Continuous Deployment", + "Automated Testing", + "Deep Learning", + "Critical Thinking", + "SQL", + "Flask", + "Azure", + "CI/CD", + "User Interface (UI) Design", + "Reactive Programming", + "Android Development" + ], + "careerInformation": { + "currentPosition": { "title": "Software Developer", "company": "Epic Games" }, + "pastPositions": [ + { + "title": "Web Developer", + "company": "Spotify", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-06-10T04:49:57.630Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459eda" + } + }, + { + "title": "Product Manager", + "company": "Google", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-11-17T20:23:24.793Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459edb" + } + }, + { + "title": "Engineering Manager", + "company": "Square", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-03-23T21:47:04.450Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459edc" + } + }, + { + "title": "iOS Developer", + "company": "ServiceNow", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-04-29T03:55:53.606Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459edd" + } + } + ] + }, + "education": [ + { + "institution": "McGill University", + "degree": "Master of Education (MEd)", + "fieldOfStudy": "Biology", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-12-11T12:31:47.006Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ede" + } + } + ], + "projects": [ + { + "name": "CloudGuard", + "description": "Advanced cloud security suite ensuring data protection and compliance.", + "link": "https://github.com/username/cloudguard", + "_id": { + "$oid": "6674c31e95590f9fd9459edf" + } + }, + { + "name": "AugmentWorks", + "description": "Augmented reality application for enhancing workplace productivity and training.", + "link": "https://github.com/username/augmentworks", + "_id": { + "$oid": "6674c31e95590f9fd9459ee0" + } + }, + { + "name": "VirtualAssistant", + "description": "Virtual assistant software for voice command-based tasks and personal assistance.", + "link": "https://github.com/username/virtualassistant", + "_id": { + "$oid": "6674c31e95590f9fd9459ee1" + } + } + ], + "personalBio": "Experienced in rapid prototyping and iterative development methodologies.", + "testimonials": [ + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd9459ee2" + } + }, + { + "from": "Liam Harris", + "relation": "Lead Developer at CloudTech", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459ee3" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd9459ee4" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd9459ee5" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459ee6" + } + } + ], + "socialMediaLinks": { + "blog": "https://www.Shurlock-Tytcomb-fake-blog.com", + "other": ["https://www.instagram.com/Shurlock-Tytcomb-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "General Assembly", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459ed9" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459d9d" + }, + "firstName": "Ermina", + "lastName": "Guyton", + "cohort": "NYC 50", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459ee7" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459d9e" + }, + "firstName": "Shelton", + "lastName": "Halwood", + "cohort": "FTRI 75", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459ee8" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459d9f" + }, + "firstName": "Nigel", + "lastName": "Clemenzo", + "cohort": "NYC 28", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459ee9" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459da0" + }, + "firstName": "Colver", + "lastName": "Oswell", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "NYC 47", + "graduationYear": 2024, + "email": "coswellc@wsj.com", + "linkedInProfile": "https://www.linkedin.com/in/Colver-Oswell-fake", + "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", + "skills": [], + "specializations": [ + "Parallel Computing", + "Graph Theory", + "Project Management", + "Django", + "User Interface (UI) Design", + "Problem-Solving", + "Flask", + "Cybersecurity", + "Serverless Architecture", + "Event-Driven Architecture" + ], + "careerInformation": { + "currentPosition": { "title": "Product Manager", "company": "Intel" }, + "pastPositions": [ + { + "title": "Data Engineer", + "company": "VMware", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-09-17T01:01:15.666Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459eeb" + } + }, + { + "title": "Web Developer", + "company": "EA (Electronic Arts)", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-12-30T14:55:19.349Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459eec" + } + }, + { + "title": "Machine Learning Engineer", + "company": "Asana", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-04-26T04:30:20.219Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459eed" + } + }, + { + "title": "Full Stack Developer", + "company": "Google", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-07-19T04:15:17.275Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459eee" + } + } + ] + }, + "education": [], + "projects": [ + { + "name": "ARNavigation", + "description": "Augmented reality navigation app for real-time directions and location-based information.", + "link": "https://github.com/username/arnavigation", + "_id": { + "$oid": "6674c31e95590f9fd9459eef" + } + }, + { + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", + "_id": { + "$oid": "6674c31e95590f9fd9459ef0" + } + }, + { + "name": "AIChatbot", + "description": "AI-powered chatbot for customer support and interactive communication.", + "link": "https://github.com/username/aichatbot", + "_id": { + "$oid": "6674c31e95590f9fd9459ef1" + } + }, + { + "name": "SmartHomeHub", + "description": "Centralized home automation system integrating IoT devices for smart living.", + "link": "https://github.com/username/smarthomehub", + "_id": { + "$oid": "6674c31e95590f9fd9459ef2" + } + }, + { + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", + "_id": { + "$oid": "6674c31e95590f9fd9459ef3" + } + } + ], + "personalBio": "Passionate about leveraging data-driven insights to optimize software performance and user engagement.", + "testimonials": [ + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd9459ef4" + } + }, + { + "from": "Lucas Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", + "_id": { + "$oid": "6674c31e95590f9fd9459ef5" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd9459ef6" + } + } + ], + "socialMediaLinks": { "other": ["https://www.instagram.com/Colver-Oswell-fake"] }, + "availabilityForNetworking": true, + "bootcampExperience": "Codesmith", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459eea" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459da1" + }, + "firstName": "Saundra", + "lastName": "Normabell", + "cohort": "ECRI 9", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459ef7" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459da2" + }, + "firstName": "Grant", + "lastName": "Chasney", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "PTRI 61", + "graduationYear": 2024, + "email": "gchasneye@mediafire.com", + "linkedInProfile": "https://www.linkedin.com/in/Grant-Chasney-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": [ + "User Experience (UX) Design", + "Event-Driven Architecture", + "Kubernetes", + "ASP.NET", + "Pair Programming", + "RESTful APIs", + "PaaS (Platform as a Service)", + "C#", + "Automated Testing", + "Android Development" + ], + "specializations": [ + "Azure", + "BDD (Behavior-Driven Development)", + "NoSQL", + "Pair Programming", + "ASP.NET", + "Cloud Computing", + "DevOps", + "Kubernetes", + "FaaS (Function as a Service)", + "System Design", + "Big Data", + "Integration Testing", + "Critical Thinking", + "Legacy Code Management", + "Data Warehousing", + "RESTful APIs", + "Performance Optimization", + "Graph Theory" + ], + "careerInformation": { + "currentPosition": { "title": "Cloud Engineer", "company": "Okta" }, + "pastPositions": [ + { + "title": "Automation Engineer", + "company": "Workday", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-08-09T03:12:20.218Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ef9" + } + }, + { + "title": "Principal Software Engineer", + "company": "Stripe", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-09-10T06:11:20.217Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459efa" + } + }, + { + "title": "Security Engineer", + "company": "Stripe", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-07-27T23:16:44.438Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459efb" + } + }, + { + "title": "Cloud Engineer", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-11-09T09:02:05.622Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459efc" + } + } + ] + }, + "education": [], + "projects": [ + { + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", + "_id": { + "$oid": "6674c31e95590f9fd9459efd" + } + }, + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "6674c31e95590f9fd9459efe" + } + }, + { + "name": "SmartCity", + "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", + "link": "https://github.com/username/smartcity", + "_id": { + "$oid": "6674c31e95590f9fd9459eff" + } + } + ], + "personalBio": "Devoted to fostering a collaborative team environment and mentoring junior developers.", + "testimonials": [], + "socialMediaLinks": { "other": ["https://www.instagram.com/Grant-Chasney-fake"] }, + "availabilityForNetworking": false, + "bootcampExperience": "Galvanize", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459ef8" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459da3" + }, + "firstName": "Franni", + "lastName": "Chance", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "CTRI 85", + "graduationYear": 2024, + "email": "fchancef@ted.com", + "linkedInProfile": "https://www.linkedin.com/in/Franni-Chance-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": [ + "Project Management", + "Django", + "Continuous Deployment", + "CSS", + "User Interface (UI) Design", + "System Design" + ], + "specializations": [ + "Kubernetes", + "Spring Boot", + "Agile Development", + "API Integration", + "Event-Driven Architecture", + "Object-Oriented Programming", + "Continuous Deployment", + "Infrastructure as Code" + ], + "careerInformation": { + "currentPosition": { "title": "QA Engineer", "company": "Dropbox" }, + "pastPositions": [ + { + "title": "Mobile Developer", + "company": "Google", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-12-13T17:16:15.422Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f01" + } + }, + { + "title": "Data Scientist", + "company": "VMware", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-12-28T19:30:31.838Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f02" + } + } + ] + }, + "education": [ + { + "institution": "Purdue University", + "degree": "Bachelor of Arts (BA)", + "fieldOfStudy": "Mechanical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-04-18T05:46:51.645Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f03" + } + }, + { + "institution": "University of Hong Kong (HKU)", + "degree": "Trade School Certification", + "fieldOfStudy": "Environmental Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-11-18T10:57:20.759Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f04" + } + }, + { + "institution": "University of Oregon", + "degree": "Doctor of Dental Medicine (DMD)", + "fieldOfStudy": "Journalism", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-02-03T22:47:47.085Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f05" + } + } + ], + "projects": [ + { + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", + "_id": { + "$oid": "6674c31e95590f9fd9459f06" + } + }, + { + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", + "_id": { + "$oid": "6674c31e95590f9fd9459f07" + } + } + ], + "personalBio": "Experienced in deploying and maintaining applications on cloud platforms like AWS and Azure.", + "testimonials": [ + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd9459f08" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459f09" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Franni-Chance-fake", + "other": ["https://www.instagram.com/Franni-Chance-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Nucamp", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f00" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459da4" + }, + "firstName": "Clarance", + "lastName": "Meecher", + "cohort": "WCRI 68", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f0a" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459da5" + }, + "firstName": "Katharine", + "lastName": "Lancett", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "NYC 34", + "graduationYear": 2024, + "email": "klancetth@sfgate.com", + "linkedInProfile": "https://www.linkedin.com/in/Katharine-Lancett-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [ + "Project Management", + "C++", + "Microservices", + "Agile Development", + "Code Review", + "Data Science", + "Ruby", + "Communication Skills", + "Django", + "Automated Testing", + "Scrum", + "Flask", + "JavaScript", + "Leadership", + "DevOps", + "Laravel", + "Docker" + ], + "specializations": [ + "Software Architecture", + "Concurrency", + "NoSQL", + "DevOps", + "AWS", + "SaaS (Software as a Service)", + "Ruby", + "Collaboration", + "Data Science" + ], + "careerInformation": { + "currentPosition": { "title": "DevOps Engineer", "company": "Tesla" }, + "pastPositions": [ + { + "title": "Full Stack Developer", + "company": "Google", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-10-19T00:08:30.372Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f0c" + } + }, + { + "title": "Product Manager", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-04-19T22:36:45.486Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f0d" + } + } + ] + }, + "education": [ + { + "institution": "Pennsylvania State University", + "degree": "Master of Education (MEd)", + "fieldOfStudy": "English Literature", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-04-18T16:33:23.851Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f0e" + } + }, + { + "institution": "University of Melbourne", + "degree": "Doctor of Philosophy (PhD)", + "fieldOfStudy": "Urban Planning", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-03-28T07:33:55.340Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f0f" + } + }, + { + "institution": "Stanford University", + "degree": "Doctor of Veterinary Medicine (DVM)", + "fieldOfStudy": "Architecture", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-07-05T20:19:04.001Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f10" + } + } + ], + "projects": [ + { + "name": "CloudStorage", + "description": "Cloud storage service with file synchronization and sharing capabilities.", + "link": "https://github.com/username/cloudstorage", + "_id": { + "$oid": "6674c31e95590f9fd9459f11" + } + }, + { + "name": "CloudStorage", + "description": "Cloud storage service with file synchronization and sharing capabilities.", + "link": "https://github.com/username/cloudstorage", + "_id": { + "$oid": "6674c31e95590f9fd9459f12" + } + }, + { + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", + "_id": { + "$oid": "6674c31e95590f9fd9459f13" + } + }, + { + "name": "LearnHub", + "description": "Online learning platform offering courses on various subjects with interactive content.", + "link": "https://github.com/username/learnhub", + "_id": { + "$oid": "6674c31e95590f9fd9459f14" + } + }, + { + "name": "CryptoTrack", + "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", + "link": "https://github.com/username/cryptotrack", + "_id": { + "$oid": "6674c31e95590f9fd9459f15" + } + } + ], + "personalBio": "Driven by a curiosity for innovation and a commitment to delivering high-quality software solutions.", + "testimonials": [ + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459f16" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459f17" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459f18" + } + }, + { + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + "_id": { + "$oid": "6674c31e95590f9fd9459f19" + } + } + ], + "socialMediaLinks": { "twitter": "https://x.com/Katharine-Lancett-fake", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "BrainStation", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f0b" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459da6" + }, + "firstName": "Margaret", + "lastName": "Dubber", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "LA 40", + "graduationYear": 2024, + "email": "mdubberi@dropbox.com", + "linkedInProfile": "https://www.linkedin.com/in/Margaret-Dubber-fake", + "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", + "skills": [ + "Spring Boot", + "ETL (Extract, Transform, Load)", + "Cybersecurity", + "Time Management", + "Scrum", + "Mobile Development", + "Version Control", + "Object-Oriented Programming", + "Critical Thinking", + "Java", + "ASP.NET", + "Machine Learning", + "React", + "Data Warehousing", + "Reactive Programming", + "TDD (Test-Driven Development)" + ], + "specializations": [ + "Event-Driven Architecture", + "Scrum", + "DevOps", + "Code Review", + "Project Management", + "Technical Writing", + "API Integration", + "AWS", + "Graph Databases", + "Design Patterns", + "Kubernetes", + "Python", + "Blockchain" + ], + "careerInformation": { + "currentPosition": { "title": "Data Scientist", "company": "Apple" }, + "pastPositions": [ + { + "title": "Software Architect", + "company": "Asana", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-10-19T10:40:24.254Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f1b" + } + }, + { + "title": "Full Stack Developer", + "company": "EA (Electronic Arts)", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-07-30T14:54:00.461Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f1c" + } + }, + { + "title": "Web Developer", + "company": "Qualcomm", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-04-29T10:23:36.926Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f1d" + } + }, + { + "title": "Data Scientist", + "company": "Square", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-04-14T05:53:06.043Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f1e" + } + } + ] + }, + "education": [], + "projects": [], + "personalBio": "Adaptable problem solver who thrives in dynamic, fast-paced environments.", + "testimonials": [ + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd9459f1f" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd9459f20" + } + }, + { + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459f21" + } + }, + { + "from": "Olivia White", + "relation": "Tech Lead at Cloud Innovations", + "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "_id": { + "$oid": "6674c31e95590f9fd9459f22" + } + }, + { + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + "_id": { + "$oid": "6674c31e95590f9fd9459f23" + } + } + ], + "socialMediaLinks": { "other": ["https://www.instagram.com/Margaret-Dubber-fake"] }, + "availabilityForNetworking": true, + "bootcampExperience": "BrainStation", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f1a" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459da7" + }, + "firstName": "Addy", + "lastName": "Fass", + "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "cohort": "LA 84", + "graduationYear": 2024, + "email": "afassj@vistaprint.com", + "linkedInProfile": "https://www.linkedin.com/in/Addy-Fass-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": ["Quantum Computing"], + "specializations": [ + "Problem-Solving", + "System Design", + "Unit Testing", + "Agile Development", + "API Development" + ], + "careerInformation": { + "currentPosition": { "title": "Embedded Systems Engineer", "company": "Red Hat" }, + "pastPositions": [] + }, + "education": [], + "projects": [ + { + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", + "_id": { + "$oid": "6674c31e95590f9fd9459f25" + } + }, + { + "name": "CloudGuard", + "description": "Advanced cloud security suite ensuring data protection and compliance.", + "link": "https://github.com/username/cloudguard", + "_id": { + "$oid": "6674c31e95590f9fd9459f26" + } + }, + { + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", + "_id": { + "$oid": "6674c31e95590f9fd9459f27" + } + }, + { + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", + "_id": { + "$oid": "6674c31e95590f9fd9459f28" + } + }, + { + "name": "CloudGuard", + "description": "Advanced cloud security suite ensuring data protection and compliance.", + "link": "https://github.com/username/cloudguard", + "_id": { + "$oid": "6674c31e95590f9fd9459f29" + } + } + ], + "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", + "testimonials": [ + { + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459f2a" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "_id": { + "$oid": "6674c31e95590f9fd9459f2b" + } + }, + { + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "_id": { + "$oid": "6674c31e95590f9fd9459f2c" + } + }, + { + "from": "Liam Harris", + "relation": "Lead Developer at CloudTech", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459f2d" + } + }, + { + "from": "Lucas Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", + "_id": { + "$oid": "6674c31e95590f9fd9459f2e" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Addy-Fass-fake", + "other": ["https://www.instagram.com/Addy-Fass-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Fullstack Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f24" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459da8" + }, + "firstName": "Sollie", + "lastName": "Puckinghorne", + "cohort": "ECRI 14", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f2f" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459da9" + }, + "firstName": "Xena", + "lastName": "Tomczynski", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "ECRI 41", + "graduationYear": 2024, + "email": "xtomczynskil@ted.com", + "linkedInProfile": "https://www.linkedin.com/in/Xena-Tomczynski-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": ["Blockchain", "Big Data", "Microservices", "API Development", "Database Design"], + "specializations": [ + "Java", + "Performance Optimization", + "Graph Theory", + "Collaboration", + "Quantum Computing", + "Scrum", + "Project Management" + ], + "careerInformation": { + "currentPosition": { "title": "Machine Learning Engineer", "company": "Apple" }, + "pastPositions": [ + { + "title": "Technical Program Manager", + "company": "Uber", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-10-03T01:40:09.199Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f31" + } + }, + { + "title": "AI Engineer", + "company": "DocuSign", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-08-06T10:43:42.175Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f32" + } + }, + { + "title": "Software Engineer", + "company": "Okta", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-10-20T22:12:20.349Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f33" + } + }, + { + "title": "Senior Software Engineer", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-09-01T08:25:07.264Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f34" + } + }, + { + "title": "Full Stack Developer", + "company": "Uber", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-08-30T04:25:40.078Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f35" + } + } + ] + }, + "education": [ + { + "institution": "EPFL - ร‰cole Polytechnique Fรฉdรฉrale de Lausanne", + "degree": "Master of Business Administration (MBA)", + "fieldOfStudy": "Biochemistry", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-10-02T22:34:11.517Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f36" + } + }, + { + "institution": "ETH Zurich - Swiss Federal Institute of Technology", + "degree": "Doctor of Pharmacy (PharmD)", + "fieldOfStudy": "Economics", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-10-17T09:05:36.803Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f37" + } + } + ], + "projects": [ + { + "name": "SocialConnect", + "description": "Social media integration platform for managing multiple social accounts.", + "link": "https://github.com/username/socialconnect", + "_id": { + "$oid": "6674c31e95590f9fd9459f38" + } + }, + { + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", + "_id": { + "$oid": "6674c31e95590f9fd9459f39" + } + }, + { + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", + "_id": { + "$oid": "6674c31e95590f9fd9459f3a" + } + }, + { + "name": "EduTech", + "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", + "link": "https://github.com/username/edutech", + "_id": { + "$oid": "6674c31e95590f9fd9459f3b" + } + } + ], + "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Xena-Tomczynski-fake", + "blog": "https://www.Xena-Tomczynski-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Lambda School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f30" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459daa" + }, + "firstName": "Harmonie", + "lastName": "Karpinski", + "cohort": "NYC 84", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f3c" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dab" + }, + "firstName": "Marielle", + "lastName": "Crocket", + "cohort": "FTRI 96", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f3d" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dac" + }, + "firstName": "Ulrick", + "lastName": "Blasing", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "ECRI 65", + "graduationYear": 2024, + "email": "ublasingo@yahoo.com", + "linkedInProfile": "https://www.linkedin.com/in/Ulrick-Blasing-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": [ + "FaaS (Function as a Service)", + "NoSQL", + "Legacy Code Management", + "GraphQL", + "Infrastructure as Code", + "API Integration", + "Refactoring", + "Pair Programming", + "Concurrency", + "TDD (Test-Driven Development)", + "Code Review", + "User Interface (UI) Design", + "Laravel", + "Unit Testing", + "Machine Learning" + ], + "specializations": [ + "Graph Databases", + "Quantum Computing", + "Functional Programming", + "Cybersecurity", + "Natural Language Processing", + "Code Review", + "Robotic Process Automation", + "IoT (Internet of Things)", + "CSS", + "GraphQL", + "Software Architecture" + ], + "careerInformation": { + "currentPosition": { "title": "Mobile Developer", "company": "Twilio" }, + "pastPositions": [ + { + "title": "Full Stack Developer", + "company": "Zoom", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-01-19T04:56:18.411Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f3f" + } + }, + { + "title": "Product Manager", + "company": "Netflix", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-09-06T23:25:33.104Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f40" + } + } + ] + }, + "education": [ + { + "institution": "University of Georgia", + "degree": "Postdoctoral Research", + "fieldOfStudy": "Film Studies", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-10-17T05:12:44.626Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f41" + } + } + ], + "projects": [ + { + "name": "HealthMonitor", + "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", + "link": "https://github.com/username/healthmonitor", + "_id": { + "$oid": "6674c31e95590f9fd9459f42" + } + }, + { + "name": "EcoTech", + "description": "Environmental monitoring and conservation app with real-time data visualization.", + "link": "https://github.com/username/ecotech", + "_id": { + "$oid": "6674c31e95590f9fd9459f43" + } + } + ], + "personalBio": "Experienced in deploying and maintaining applications on cloud platforms like AWS and Azure.", + "testimonials": [ + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd9459f44" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd9459f45" + } + }, + { + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "_id": { + "$oid": "6674c31e95590f9fd9459f46" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd9459f47" + } + } + ], + "socialMediaLinks": { "other": ["https://www.instagram.com/Ulrick-Blasing-fake"] }, + "availabilityForNetworking": true, + "bootcampExperience": "BrainStation", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f3e" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dad" + }, + "firstName": "Cheri", + "lastName": "Danielsson", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "FTRI 83", + "graduationYear": 2024, + "email": "cdanielssonp@example.com", + "linkedInProfile": "https://www.linkedin.com/in/Cheri-Danielsson-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [ + "Continuous Deployment", + "Critical Thinking", + "Node.js", + "Graph Databases", + "C#", + "Collaboration", + "Pair Programming", + "Mobile Development", + "Robotic Process Automation", + "Infrastructure as Code" + ], + "specializations": [ + "AR/VR (Augmented/Virtual Reality)", + "Algorithm Design", + "User Interface (UI) Design", + "Object-Oriented Programming", + "Design Patterns", + "Angular", + "User Experience (UX) Design", + "iOS Development", + "Cybersecurity", + "WebSockets", + "Continuous Deployment", + "Event-Driven Architecture", + "Functional Programming", + "C#", + "Unit Testing", + "Software Architecture", + "RESTful APIs", + "Pair Programming" + ], + "careerInformation": { + "currentPosition": { "title": "Technical Lead", "company": "Robinhood" }, + "pastPositions": [ + { + "title": "Data Engineer", + "company": "Netflix", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-11-06T10:07:15.640Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f49" + } + }, + { + "title": "Engineering Manager", + "company": "Oracle", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-01-09T18:06:13.047Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f4a" + } + } + ] + }, + "education": [ + { + "institution": "Michigan State University", + "degree": "Master's Degree", + "fieldOfStudy": "Anthropology", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-07-07T16:04:30.604Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f4b" + } + }, + { + "institution": "University of Houston", + "degree": "Bachelor of Technology (BTech)", + "fieldOfStudy": "Veterinary Medicine", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-12-05T22:10:00.055Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f4c" + } + } + ], + "projects": [ + { + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", + "_id": { + "$oid": "6674c31e95590f9fd9459f4d" + } + }, + { + "name": "SmartWatch", + "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", + "link": "https://github.com/username/smartwatch", + "_id": { + "$oid": "6674c31e95590f9fd9459f4e" + } + } + ], + "personalBio": "Experienced in both frontend and backend development, with a focus on creating elegant and efficient solutions.", + "testimonials": [], + "socialMediaLinks": { "twitter": "https://x.com/Cheri-Danielsson-fake", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Tech Elevator", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f48" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dae" + }, + "firstName": "Durand", + "lastName": "Joron", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "FTRI 21", + "graduationYear": 2024, + "email": "djoronq@google.cn", + "linkedInProfile": "https://www.linkedin.com/in/Durand-Joron-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": ["Scrum"], + "specializations": [ + "Kubernetes", + "Ruby", + "Code Review", + "Legacy Code Management", + "Functional Programming", + "Cybersecurity", + "Python", + "ASP.NET", + "Automated Testing", + "Git", + "Node.js" + ], + "careerInformation": { + "currentPosition": { "title": "Full Stack Developer", "company": "IBM" }, + "pastPositions": [ + { + "title": "Automation Engineer", + "company": "Spotify", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-08-27T10:52:03.251Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f50" + } + }, + { + "title": "Test Engineer", + "company": "Square", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-11-24T00:39:08.044Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f51" + } + }, + { + "title": "Technical Program Manager", + "company": "Tesla", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-12-27T20:45:18.643Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f52" + } + }, + { + "title": "Android Developer", + "company": "Datadog", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-05-22T15:31:48.350Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f53" + } + }, + { + "title": "Full Stack Developer", + "company": "Coinbase", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-01-17T07:27:43.232Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f54" + } + } + ] + }, + "education": [ + { + "institution": "Chinese University of Hong Kong (CUHK)", + "degree": "Executive Education", + "fieldOfStudy": "Finance", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-10-02T22:45:53.438Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f55" + } + }, + { + "institution": "University of New South Wales (UNSW Sydney)", + "degree": "Postdoctoral Research", + "fieldOfStudy": "Chemistry", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-03-03T07:32:31.390Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f56" + } + }, + { + "institution": "Carnegie Mellon University", + "degree": "Bachelor of Fine Arts (BFA)", + "fieldOfStudy": "Data Science", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-04-16T23:18:10.615Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f57" + } + } + ], + "projects": [], + "personalBio": "Driven by a curiosity for innovation and a commitment to delivering high-quality software solutions.", + "testimonials": [ + { + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd9459f58" + } + }, + { + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "_id": { + "$oid": "6674c31e95590f9fd9459f59" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Durand-Joron-fake-blog.com", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Le Wagon", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f4f" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459daf" + }, + "firstName": "Kristien", + "lastName": "Burgett", + "cohort": "PTRI 30", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f5a" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459db0" + }, + "firstName": "Kaia", + "lastName": "Fassmann", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "cohort": "NYC 96", + "graduationYear": 2024, + "email": "kfassmanns@ted.com", + "linkedInProfile": "https://www.linkedin.com/in/Kaia-Fassmann-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": [ + "Pair Programming", + "ETL (Extract, Transform, Load)", + "Critical Thinking", + "Integration Testing", + "Infrastructure as Code", + "Graph Theory", + "API Development", + "Design Patterns", + "Natural Language Processing", + "ASP.NET", + "Data Visualization" + ], + "specializations": ["Refactoring"], + "careerInformation": { + "currentPosition": { "title": "Mobile Developer", "company": "Google" }, + "pastPositions": [ + { + "title": "Junior Software Engineer", + "company": "Intel", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-08-28T20:05:59.474Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f5c" + } + }, + { + "title": "Technical Program Manager", + "company": "PayPal", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-09-17T17:42:19.864Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f5d" + } + }, + { + "title": "Technical Lead", + "company": "Snapchat", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-07-04T00:13:05.498Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f5e" + } + }, + { + "title": "QA Engineer", + "company": "Robinhood", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-01-18T03:47:17.187Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f5f" + } + }, + { + "title": "Android Developer", + "company": "Red Hat", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-04-11T16:04:51.159Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f60" + } + } + ] + }, + "education": [], + "projects": [ + { + "name": "NetPlanner", + "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", + "link": "https://github.com/username/netplanner", + "_id": { + "$oid": "6674c31e95590f9fd9459f61" + } + }, + { + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", + "_id": { + "$oid": "6674c31e95590f9fd9459f62" + } + }, + { + "name": "CryptoWallet", + "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", + "link": "https://github.com/username/cryptowallet", + "_id": { + "$oid": "6674c31e95590f9fd9459f63" + } + } + ], + "personalBio": "Experienced in building scalable microservices architectures and integrating third-party APIs.", + "testimonials": [ + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd9459f64" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd9459f65" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "6674c31e95590f9fd9459f66" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Kaia-Fassmann-fake-blog.com", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Kenzie Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f5b" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459db1" + }, + "firstName": "Lockwood", + "lastName": "Moxham", + "cohort": "FTRI 1", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f67" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459db2" + }, + "firstName": "Tessie", + "lastName": "Sugden", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "ECRI 10", + "graduationYear": 2024, + "email": "tsugdenu@npr.org", + "linkedInProfile": "https://www.linkedin.com/in/Tessie-Sugden-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": [ + "SaaS (Software as a Service)", + "Java", + "HTML", + "Collaboration", + "Cybersecurity", + "Code Review", + "Blockchain", + "Docker", + "CI/CD", + "Git", + "Laravel", + "Containerization", + "Event-Driven Architecture" + ], + "specializations": [ + "Java", + "WebSockets", + "JavaScript", + "Data Science", + "Deep Learning", + "Time Management", + "Algorithm Design", + "AR/VR (Augmented/Virtual Reality)", + "SaaS (Software as a Service)", + "Legacy Code Management", + "Android Development", + "React", + "Django", + "System Design" + ], + "careerInformation": { + "currentPosition": { "title": "Cloud Engineer", "company": "Robinhood" }, + "pastPositions": [ + { + "title": "Data Scientist", + "company": "Oracle", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-10-29T17:13:59.076Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f69" + } + }, + { + "title": "Software Developer", + "company": "Uber", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-02-24T07:29:45.493Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f6a" + } + }, + { + "title": "Mobile Developer", + "company": "GitHub", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-11-15T07:17:37.297Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f6b" + } + }, + { + "title": "Security Engineer", + "company": "Facebook", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-07-17T20:29:26.535Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f6c" + } + }, + { + "title": "DevOps Engineer", + "company": "DocuSign", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-05-02T02:56:04.337Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f6d" + } + } + ] + }, + "education": [], + "projects": [ + { + "name": "AIChatbot", + "description": "AI-powered chatbot for customer support and interactive communication.", + "link": "https://github.com/username/aichatbot", + "_id": { + "$oid": "6674c31e95590f9fd9459f6e" + } + }, + { + "name": "RoboTrader", + "description": "Algorithmic trading platform for automated stock market analysis and trading.", + "link": "https://github.com/username/robotrader", + "_id": { + "$oid": "6674c31e95590f9fd9459f6f" + } + } + ], + "personalBio": "Passionate about contributing to the tech community through open-source projects and knowledge sharing.", + "testimonials": [ + { + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd9459f70" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "6674c31e95590f9fd9459f71" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459f72" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd9459f73" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "_id": { + "$oid": "6674c31e95590f9fd9459f74" + } + } + ], + "socialMediaLinks": { "other": ["https://www.instagram.com/Tessie-Sugden-fake"] }, + "availabilityForNetworking": false, + "bootcampExperience": "Fullstack Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f68" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459db3" + }, + "firstName": "Rea", + "lastName": "Jeremiah", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "PTRI 29", + "graduationYear": 2024, + "email": "rjeremiahv@wikispaces.com", + "linkedInProfile": "https://www.linkedin.com/in/Rea-Jeremiah-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "skills": [ + "BDD (Behavior-Driven Development)", + "Serverless Architecture", + "Vue.js", + "Android Development", + "Mobile Development", + "HTML" + ], + "specializations": [ + "iOS Development", + "Problem-Solving", + "Big Data", + "Serverless Architecture", + "Flask", + "Mobile Development", + "Project Management", + "FaaS (Function as a Service)", + "Legacy Code Management", + "Algorithm Design", + "Database Design", + "Code Review", + "Cloud Computing", + "CSS", + "Containerization", + "Google Cloud Platform", + "Data Warehousing" + ], + "careerInformation": { + "currentPosition": { "title": "iOS Developer", "company": "Apple" }, + "pastPositions": [ + { + "title": "Automation Engineer", + "company": "DoorDash", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-09-10T06:01:52.379Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f76" + } + }, + { + "title": "Software Engineer", + "company": "Oracle", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-12-03T13:44:43.262Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f77" + } + }, + { + "title": "Test Engineer", + "company": "HubSpot", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-03-26T12:07:31.221Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f78" + } + }, + { + "title": "Android Developer", + "company": "Stripe", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-12-31T15:34:26.525Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f79" + } + } + ] + }, + "education": [ + { + "institution": "Tsinghua University", + "degree": "Bachelor of Arts (BA)", + "fieldOfStudy": "Music", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-05-12T02:19:48.507Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f7a" + } + }, + { + "institution": "University of Tennessee", + "degree": "Doctoral Degree", + "fieldOfStudy": "Theater", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-08-14T09:49:48.680Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f7b" + } + } + ], + "projects": [], + "personalBio": "Adaptable problem solver who thrives in dynamic, fast-paced environments.", + "testimonials": [], + "socialMediaLinks": { "other": ["https://www.instagram.com/Rea-Jeremiah-fake"] }, + "availabilityForNetworking": true, + "bootcampExperience": "Codesmith", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f75" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459db4" + }, + "firstName": "Cassie", + "lastName": "Meadows", + "cohort": "FTRI 97", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f7c" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459db5" + }, + "firstName": "Kelci", + "lastName": "Bastide", + "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "cohort": "NYC 55", + "graduationYear": 2024, + "email": "kbastidex@latimes.com", + "linkedInProfile": "https://www.linkedin.com/in/Kelci-Bastide-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": [ + "Cloud Computing", + "NoSQL", + "Python", + "DevOps", + "Algorithm Design", + "Event-Driven Architecture", + "IoT (Internet of Things)", + "Scrum", + "Git", + "Edge Computing", + "ETL (Extract, Transform, Load)", + "Ruby", + "Data Visualization", + "Problem-Solving", + "BDD (Behavior-Driven Development)", + "Node.js" + ], + "specializations": [ + "Collaboration", + "C++", + "AWS", + "Microservices", + "SaaS (Software as a Service)", + "WebSockets", + "Pair Programming", + "API Development", + "ETL (Extract, Transform, Load)", + "GraphQL", + "ASP.NET", + "Time Management", + "RESTful APIs", + "Agile Development", + "CI/CD", + "Machine Learning", + "Python" + ], + "careerInformation": { + "currentPosition": { "title": "DevOps Engineer", "company": "Red Hat" }, + "pastPositions": [ + { + "title": "Full Stack Developer", + "company": "Oracle", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-04-03T06:50:10.796Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f7e" + } + }, + { + "title": "Software Engineer", + "company": "Activision Blizzard", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-07-08T00:13:47.187Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f7f" + } + } + ] + }, + "education": [], + "projects": [], + "personalBio": "Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.", + "testimonials": [ + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "_id": { + "$oid": "6674c31e95590f9fd9459f80" + } + }, + { + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "_id": { + "$oid": "6674c31e95590f9fd9459f81" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "_id": { + "$oid": "6674c31e95590f9fd9459f82" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "_id": { + "$oid": "6674c31e95590f9fd9459f83" + } + } + ], + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Makers Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f7d" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459db6" + }, + "firstName": "Thurston", + "lastName": "Speechly", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "LA 41", + "graduationYear": 2024, + "email": "tspeechlyy@plala.or.jp", + "linkedInProfile": "https://www.linkedin.com/in/Thurston-Speechly-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "skills": [ + "Time Management", + "Java", + "Machine Learning", + "Project Management", + "Parallel Computing", + "Concurrency", + "Critical Thinking", + "Leadership", + "User Interface (UI) Design", + "Google Cloud Platform", + "CSS", + "AWS" + ], + "specializations": [ + "AWS", + "GraphQL", + "Quantum Computing", + "Refactoring", + "Natural Language Processing", + "Functional Programming", + "Scrum", + "Python", + "ETL (Extract, Transform, Load)", + "Unit Testing", + "Laravel", + "SaaS (Software as a Service)", + "Performance Optimization", + "Mobile Development" + ], + "careerInformation": { + "currentPosition": { "title": "Mobile Developer", "company": "IBM" }, + "pastPositions": [ + { + "title": "Site Reliability Engineer", + "company": "EA (Electronic Arts)", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-07-17T16:33:06.515Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f85" + } + }, + { + "title": "Cloud Engineer", + "company": "Dropbox", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-01-21T09:48:13.207Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f86" + } + }, + { + "title": "AI Engineer", + "company": "Okta", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-02-25T15:24:38.854Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f87" + } + }, + { + "title": "Test Engineer", + "company": "Adobe", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-02-04T17:12:44.698Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f88" + } + }, + { + "title": "Lead Software Engineer", + "company": "Activision Blizzard", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-10-10T02:51:10.141Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f89" + } + } + ] + }, + "education": [ + { + "institution": "University of Sydney", + "degree": "Technical School Certification", + "fieldOfStudy": "Education", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-10-22T18:25:20.293Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f8a" + } + }, + { + "institution": "University of Vermont", + "degree": "Associate Degree", + "fieldOfStudy": "Psychology", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-02-24T16:32:24.701Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f8b" + } + } + ], + "projects": [ + { + "name": "AIAssistant", + "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", + "link": "https://github.com/username/aiassistant", + "_id": { + "$oid": "6674c31e95590f9fd9459f8c" + } + }, + { + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", + "_id": { + "$oid": "6674c31e95590f9fd9459f8d" + } + }, + { + "name": "SmartLearning", + "description": "AI-driven personalized learning platform with adaptive learning algorithms.", + "link": "https://github.com/username/smartlearning", + "_id": { + "$oid": "6674c31e95590f9fd9459f8e" + } + }, + { + "name": "EcoTech", + "description": "Environmental monitoring and conservation app with real-time data visualization.", + "link": "https://github.com/username/ecotech", + "_id": { + "$oid": "6674c31e95590f9fd9459f8f" + } + } + ], + "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", + "testimonials": [ + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd9459f90" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459f91" + } + } + ], + "socialMediaLinks": { + "blog": "https://www.Thurston-Speechly-fake-blog.com", + "other": ["https://www.instagram.com/Thurston-Speechly-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "App Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f84" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459db7" + }, + "firstName": "Silas", + "lastName": "Reyes", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "CTRI 95", + "graduationYear": 2024, + "email": "sreyesz@google.co.jp", + "linkedInProfile": "https://www.linkedin.com/in/Silas-Reyes-fake", + "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", + "skills": [ + "Algorithm Design", + "Android Development", + "ETL (Extract, Transform, Load)", + "RESTful APIs", + "Data Visualization", + "Scrum", + "User Experience (UX) Design", + "SaaS (Software as a Service)", + "Git", + "Problem-Solving", + "Refactoring", + "Functional Programming" + ], + "specializations": [ + "React", + "Kubernetes", + "Machine Learning", + "SaaS (Software as a Service)", + "Pair Programming", + "Software Architecture", + "C++", + "Laravel", + "iOS Development", + "Functional Programming", + "Data Warehousing", + "Parallel Computing", + "User Experience (UX) Design", + "PaaS (Platform as a Service)" + ], + "careerInformation": { + "currentPosition": { "title": "Security Engineer", "company": "Cisco" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "University of Oxford", + "degree": "Master of Social Work (MSW)", + "fieldOfStudy": "Linguistics", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-04-12T07:41:52.089Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f93" + } + } + ], + "projects": [ + { + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", + "_id": { + "$oid": "6674c31e95590f9fd9459f94" + } + }, + { + "name": "MediCare", + "description": "Medical appointment scheduling and patient management system for healthcare providers.", + "link": "https://github.com/username/medicare", + "_id": { + "$oid": "6674c31e95590f9fd9459f95" + } + }, + { + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", + "_id": { + "$oid": "6674c31e95590f9fd9459f96" + } + }, + { + "name": "CodeReview", + "description": "Collaborative code review platform with annotations and feedback features.", + "link": "https://github.com/username/codereview", + "_id": { + "$oid": "6674c31e95590f9fd9459f97" + } + } + ], + "personalBio": "Skilled in UX/UI design principles, with a focus on creating intuitive and visually appealing interfaces.", + "testimonials": [ + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459f98" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "_id": { + "$oid": "6674c31e95590f9fd9459f99" + } + }, + { + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + "_id": { + "$oid": "6674c31e95590f9fd9459f9a" + } + }, + { + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + "_id": { + "$oid": "6674c31e95590f9fd9459f9b" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "_id": { + "$oid": "6674c31e95590f9fd9459f9c" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Silas-Reyes-fake-blog.com", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Hack Reactor", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f92" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459db8" + }, + "firstName": "Marley", + "lastName": "Boshard", + "cohort": "PTRI 10", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f9d" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459db9" + }, + "firstName": "Eb", + "lastName": "Dargie", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "LA 10", + "graduationYear": 2024, + "email": "edargie11@artisteer.com", + "linkedInProfile": "https://www.linkedin.com/in/Eb-Dargie-fake", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "skills": [ + "HTML", + "AR/VR (Augmented/Virtual Reality)", + "Parallel Computing", + "Graph Theory", + "Laravel", + "Version Control" + ], + "specializations": [ + "Problem-Solving", + "Quantum Computing", + "C#", + "Database Design", + "iOS Development", + "Continuous Deployment", + "Laravel", + "Machine Learning", + "Data Warehousing", + "Spring Boot", + "Concurrency", + "Automated Testing" + ], + "careerInformation": { + "currentPosition": { "title": "Engineering Manager", "company": "Twitter" }, + "pastPositions": [ + { + "title": "Mobile Developer", + "company": "Facebook", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-06-07T11:35:53.822Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459f9f" + } + }, + { + "title": "Cloud Engineer", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-08-18T18:04:23.853Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fa0" + } + }, + { + "title": "Data Scientist", + "company": "Airbnb", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-07-24T16:40:21.338Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fa1" + } + } + ] + }, + "education": [ + { + "institution": "University of Massachusetts Amherst", + "degree": "Bachelor's Degree", + "fieldOfStudy": "Statistics", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-06-03T05:34:00.391Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fa2" + } + }, + { + "institution": "University of Missouri", + "degree": "Juris Doctor (JD)", + "fieldOfStudy": "Environmental Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-10-08T09:12:19.626Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fa3" + } + } + ], + "projects": [ + { + "name": "VoiceAssistant", + "description": "Voice-controlled personal assistant using natural language processing.", + "link": "https://github.com/username/voiceassistant", + "_id": { + "$oid": "6674c31e95590f9fd9459fa4" + } + }, + { + "name": "AIChatbot", + "description": "AI-powered chatbot for customer support and interactive communication.", + "link": "https://github.com/username/aichatbot", + "_id": { + "$oid": "6674c31e95590f9fd9459fa5" + } + }, + { + "name": "SmartInventory", + "description": "Inventory management system with RFID and IoT integration for tracking assets.", + "link": "https://github.com/username/smartinventory", + "_id": { + "$oid": "6674c31e95590f9fd9459fa6" + } + }, + { + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", + "_id": { + "$oid": "6674c31e95590f9fd9459fa7" + } + } + ], + "personalBio": "Proven ability to lead technical projects from inception to successful deployment and maintenance.", + "testimonials": [ + { + "from": "Aiden Walker", + "relation": "CTO at Innovate Solutions", + "text": "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", + "_id": { + "$oid": "6674c31e95590f9fd9459fa8" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd9459fa9" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd9459faa" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd9459fab" + } + } + ], + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Lambda School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459f9e" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dba" + }, + "firstName": "Dian", + "lastName": "Dackombe", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "WCRI 17", + "graduationYear": 2024, + "email": "ddackombe13@ihg.com", + "linkedInProfile": "https://www.linkedin.com/in/Dian-Dackombe-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": ["Design Patterns", "Technical Writing", "Algorithm Design"], + "specializations": ["NoSQL"], + "careerInformation": { + "currentPosition": { "title": "Principal Software Engineer", "company": "Stripe" }, + "pastPositions": [ + { + "title": "Automation Engineer", + "company": "Facebook", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-07-07T20:11:19.983Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fad" + } + }, + { + "title": "Web Developer", + "company": "Cisco", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-07-14T11:45:14.760Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fae" + } + }, + { + "title": "Data Engineer", + "company": "Atlassian", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-02-22T07:55:58.115Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459faf" + } + } + ] + }, + "education": [ + { + "institution": "University of California, Los Angeles (UCLA)", + "degree": "Technical School Certification", + "fieldOfStudy": "Film Studies", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-04-10T04:17:41.900Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fb0" + } + } + ], + "projects": [], + "personalBio": "Focused on creating seamless user experiences through intuitive interface design and interaction.", + "testimonials": [ + { + "from": "Aiden Walker", + "relation": "CTO at Innovate Solutions", + "text": "Jack's deep understanding of software architecture and this derp's ability to mentor junior developers have been invaluable to our team's growth and success.", + "_id": { + "$oid": "6674c31e95590f9fd9459fb1" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "6674c31e95590f9fd9459fb2" + } + } + ], + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "General Assembly", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459fac" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dbb" + }, + "firstName": "Freedman", + "lastName": "Scrafton", + "cohort": "PTRI 56", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459fb3" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dbc" + }, + "firstName": "Tabbitha", + "lastName": "Jolliffe", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "FTRI 23", + "graduationYear": 2024, + "email": "tjolliffe15@bbb.org", + "linkedInProfile": "https://www.linkedin.com/in/Tabbitha-Jolliffe-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": ["PaaS (Platform as a Service)", "Version Control"], + "specializations": ["Flask", "Performance Optimization"], + "careerInformation": { + "currentPosition": { "title": "Technical Lead", "company": "Zoom" }, + "pastPositions": [ + { + "title": "Security Engineer", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-01-27T02:34:31.023Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fb5" + } + }, + { + "title": "Frontend Developer", + "company": "Netflix", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-02-09T15:33:23.807Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fb6" + } + }, + { + "title": "Software Architect", + "company": "LinkedIn", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-12-03T04:14:07.527Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fb7" + } + }, + { + "title": "Junior Software Engineer", + "company": "Snowflake", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-08-21T03:24:16.343Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fb8" + } + }, + { + "title": "Web Developer", + "company": "PayPal", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-09-08T02:33:13.154Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fb9" + } + } + ] + }, + "education": [], + "projects": [ + { + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", + "_id": { + "$oid": "6674c31e95590f9fd9459fba" + } + }, + { + "name": "SmartHomeHub", + "description": "Centralized home automation system integrating IoT devices for smart living.", + "link": "https://github.com/username/smarthomehub", + "_id": { + "$oid": "6674c31e95590f9fd9459fbb" + } + }, + { + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", + "_id": { + "$oid": "6674c31e95590f9fd9459fbc" + } + }, + { + "name": "CloudStorage", + "description": "Cloud storage service with file synchronization and sharing capabilities.", + "link": "https://github.com/username/cloudstorage", + "_id": { + "$oid": "6674c31e95590f9fd9459fbd" + } + }, + { + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", + "_id": { + "$oid": "6674c31e95590f9fd9459fbe" + } + } + ], + "personalBio": "Experienced in rapid prototyping and iterative development methodologies.", + "testimonials": [ + { + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd9459fbf" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd9459fc0" + } + }, + { + "from": "Liam Harris", + "relation": "Lead Developer at CloudTech", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459fc1" + } + } + ], + "socialMediaLinks": { "other": ["https://www.instagram.com/Tabbitha-Jolliffe-fake"] }, + "availabilityForNetworking": true, + "bootcampExperience": "Flatiron School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459fb4" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dbd" + }, + "firstName": "Jordon", + "lastName": "Ganley", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "CTRI 49", + "graduationYear": 2024, + "email": "jganley16@geocities.jp", + "linkedInProfile": "https://www.linkedin.com/in/Jordon-Ganley-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": [ + "Cybersecurity", + "API Integration", + "PaaS (Platform as a Service)", + "User Experience (UX) Design", + "NoSQL", + "Ruby", + "Pair Programming", + "Version Control", + "User Interface (UI) Design", + "Agile Development", + "Python" + ], + "specializations": ["Django", "Object-Oriented Programming"], + "careerInformation": { + "currentPosition": { "title": "Security Engineer", "company": "Stripe" }, + "pastPositions": [ + { + "title": "Technical Lead", + "company": "Red Hat", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-12-05T22:49:54.439Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fc3" + } + }, + { + "title": "QA Engineer", + "company": "Twitter", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-03-24T15:39:33.464Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fc4" + } + }, + { + "title": "Automation Engineer", + "company": "Netflix", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-10-01T00:44:40.237Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fc5" + } + }, + { + "title": "Full Stack Developer", + "company": "LinkedIn", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-09-11T07:50:27.027Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fc6" + } + } + ] + }, + "education": [ + { + "institution": "University College London (UCL)", + "degree": "Doctor of Pharmacy (PharmD)", + "fieldOfStudy": "Veterinary Medicine", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-07-03T23:09:55.258Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fc7" + } + }, + { + "institution": "University of New South Wales (UNSW Sydney)", + "degree": "Executive Education", + "fieldOfStudy": "Mechanical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-02-13T15:55:05.842Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fc8" + } + }, + { + "institution": "University of California, Los Angeles (UCLA)", + "degree": "Doctor of Dental Medicine (DMD)", + "fieldOfStudy": "Biology", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-02-21T18:23:24.863Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fc9" + } + } + ], + "projects": [ + { + "name": "HealthLink", + "description": "Telemedicine platform connecting patients with healthcare providers remotely.", + "link": "https://github.com/username/healthlink", + "_id": { + "$oid": "6674c31e95590f9fd9459fca" + } + }, + { + "name": "HealthLink", + "description": "Telemedicine platform connecting patients with healthcare providers remotely.", + "link": "https://github.com/username/healthlink", + "_id": { + "$oid": "6674c31e95590f9fd9459fcb" + } + } + ], + "personalBio": "Passionate about leveraging data-driven insights to optimize software performance and user engagement.", + "testimonials": [ + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "_id": { + "$oid": "6674c31e95590f9fd9459fcc" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459fcd" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "6674c31e95590f9fd9459fce" + } + }, + { + "from": "Daniel Lee", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp consistently exceeds expectations with this derp's innovative approach and meticulous attention to detail. This derp's contributions have been instrumental in our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459fcf" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd9459fd0" + } + } + ], + "socialMediaLinks": { "twitter": "https://x.com/Jordon-Ganley-fake", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Thinkful", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459fc2" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dbe" + }, + "firstName": "Annora", + "lastName": "Brigge", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "FTRI 30", + "graduationYear": 2024, + "email": "abrigge17@joomla.org", + "linkedInProfile": "https://www.linkedin.com/in/Annora-Brigge-fake", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "skills": [ + "Functional Programming", + "Django", + "Concurrency", + "Containerization", + "Performance Optimization", + "C#", + "iOS Development", + "ETL (Extract, Transform, Load)", + "System Design", + "Technical Writing", + "Blockchain", + "Infrastructure as Code", + "PaaS (Platform as a Service)", + "Cloud Computing" + ], + "specializations": ["Python", "Leadership", "User Interface (UI) Design"], + "careerInformation": { + "currentPosition": { "title": "Web Developer", "company": "Uber" }, + "pastPositions": [ + { + "title": "Technical Program Manager", + "company": "Netflix", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-01-24T17:38:22.450Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fd2" + } + }, + { + "title": "AI Engineer", + "company": "Pinterest", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-04-02T07:53:35.280Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fd3" + } + } + ] + }, + "education": [ + { + "institution": "Peking University", + "degree": "Diploma Program", + "fieldOfStudy": "Communication Studies", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-01-17T23:58:52.901Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fd4" + } + }, + { + "institution": "University of Oxford", + "degree": "Bachelor of Engineering (BE)", + "fieldOfStudy": "Finance", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-06-16T20:05:00.691Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fd5" + } + } + ], + "projects": [ + { + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", + "_id": { + "$oid": "6674c31e95590f9fd9459fd6" + } + }, + { + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", + "_id": { + "$oid": "6674c31e95590f9fd9459fd7" + } + }, + { + "name": "EduTech", + "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", + "link": "https://github.com/username/edutech", + "_id": { + "$oid": "6674c31e95590f9fd9459fd8" + } + }, + { + "name": "VirtualTour", + "description": "Virtual reality tour application for immersive travel experiences.", + "link": "https://github.com/username/virtualtour", + "_id": { + "$oid": "6674c31e95590f9fd9459fd9" + } + } + ], + "personalBio": "Devoted to fostering a collaborative team environment and mentoring junior developers.", + "testimonials": [ + { + "from": "Emily Brown", + "relation": "Client at GlobalSoft Solutions", + "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd9459fda" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd9459fdb" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd9459fdc" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "6674c31e95590f9fd9459fdd" + } + } + ], + "socialMediaLinks": { + "blog": "https://www.Annora-Brigge-fake-blog.com", + "other": ["https://www.instagram.com/Annora-Brigge-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "The Tech Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459fd1" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dbf" + }, + "firstName": "Bethanne", + "lastName": "Osband", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "PTRI 61", + "graduationYear": 2024, + "email": "bosband18@blinklist.com", + "linkedInProfile": "https://www.linkedin.com/in/Bethanne-Osband-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "skills": [ + "Object-Oriented Programming", + "Microservices", + "ASP.NET", + "Docker", + "Graph Theory", + "Mobile Development", + "Edge Computing", + "Leadership", + "API Development", + "Data Warehousing", + "Node.js", + "GraphQL", + "PaaS (Platform as a Service)" + ], + "specializations": [ + "Machine Learning", + "Quantum Computing", + "Cloud Computing", + "Ruby", + "Kubernetes", + "DevOps", + "Project Management", + "Blockchain", + "Concurrency", + "PaaS (Platform as a Service)", + "Database Design", + "User Interface (UI) Design", + "Robotic Process Automation", + "Code Review", + "Technical Writing" + ], + "careerInformation": { + "currentPosition": { "title": "Technical Program Manager", "company": "Oracle" }, + "pastPositions": [ + { + "title": "Lead Software Engineer", + "company": "Uber", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-08-18T06:12:30.684Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fdf" + } + }, + { + "title": "Senior Software Engineer", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-03-25T00:09:23.283Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fe0" + } + }, + { + "title": "Site Reliability Engineer", + "company": "Netflix", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-01-18T08:51:14.764Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fe1" + } + }, + { + "title": "Automation Engineer", + "company": "Zoom", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-02-11T05:16:46.443Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fe2" + } + } + ] + }, + "education": [ + { + "institution": "University of Oxford", + "degree": "Bachelor of Science (BS)", + "fieldOfStudy": "Nursing", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-12-19T01:51:50.569Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fe3" + } + } + ], + "projects": [], + "personalBio": "Skilled in UX/UI design principles, with a focus on creating intuitive and visually appealing interfaces.", + "testimonials": [ + { + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd9459fe4" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "6674c31e95590f9fd9459fe5" + } + }, + { + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "_id": { + "$oid": "6674c31e95590f9fd9459fe6" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Bethanne-Osband-fake", + "other": ["https://www.instagram.com/Bethanne-Osband-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Flatiron School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459fde" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dc0" + }, + "firstName": "Hedda", + "lastName": "Tallquist", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "PTRI 62", + "graduationYear": 2024, + "email": "htallquist19@cisco.com", + "linkedInProfile": "https://www.linkedin.com/in/Hedda-Tallquist-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "skills": [ + "Project Management", + "IoT (Internet of Things)", + "SaaS (Software as a Service)", + "Continuous Deployment", + "Docker", + "Node.js", + "HTML", + "C#", + "Event-Driven Architecture", + "FaaS (Function as a Service)" + ], + "specializations": ["Scrum"], + "careerInformation": { + "currentPosition": { "title": "Product Manager", "company": "Google" }, + "pastPositions": [ + { + "title": "AI Engineer", + "company": "Stripe", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-03-30T13:55:51.212Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fe8" + } + }, + { + "title": "Automation Engineer", + "company": "Atlassian", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-11-28T06:24:48.112Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fe9" + } + }, + { + "title": "Junior Software Engineer", + "company": "Coinbase", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-05-14T22:10:59.957Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fea" + } + }, + { + "title": "Software Developer", + "company": "Qualcomm", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-12-10T14:12:12.482Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459feb" + } + } + ] + }, + "education": [ + { + "institution": "Kyoto University", + "degree": "Master of Business Administration (MBA)", + "fieldOfStudy": "Music", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-10-11T09:35:59.934Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fec" + } + }, + { + "institution": "Emory University", + "degree": "Juris Doctor (JD)", + "fieldOfStudy": "Theater", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-07-26T20:35:42.060Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459fed" + } + } + ], + "projects": [ + { + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", + "_id": { + "$oid": "6674c31e95590f9fd9459fee" + } + }, + { + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", + "_id": { + "$oid": "6674c31e95590f9fd9459fef" + } + }, + { + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", + "_id": { + "$oid": "6674c31e95590f9fd9459ff0" + } + } + ], + "personalBio": "Passionate about leveraging data-driven insights to optimize software performance and user engagement.", + "testimonials": [ + { + "from": "Ethan Taylor", + "relation": "Co-founder at StartupX", + "text": "This derp's ability to rapidly prototype and iterate on software ideas has been crucial for our startup's early success. This derp's technical skills are top-notch.", + "_id": { + "$oid": "6674c31e95590f9fd9459ff1" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "6674c31e95590f9fd9459ff2" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "6674c31e95590f9fd9459ff3" + } + }, + { + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "_id": { + "$oid": "6674c31e95590f9fd9459ff4" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd9459ff5" + } + } + ], + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Fullstack Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459fe7" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dc1" + }, + "firstName": "Lynelle", + "lastName": "Grosvener", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "NYC 60", + "graduationYear": 2024, + "email": "lgrosvener1a@google.cn", + "linkedInProfile": "https://www.linkedin.com/in/Lynelle-Grosvener-fake", + "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", + "skills": [ + "C#", + "Big Data", + "NoSQL", + "Quantum Computing", + "GraphQL", + "Deep Learning", + "Continuous Deployment", + "Mobile Development", + "Serverless Architecture", + "IoT (Internet of Things)", + "AR/VR (Augmented/Virtual Reality)", + "Scrum", + "Java", + "API Development" + ], + "specializations": ["React", "JavaScript"], + "careerInformation": { + "currentPosition": { "title": "Data Engineer", "company": "EA (Electronic Arts)" }, + "pastPositions": [ + { + "title": "Principal Software Engineer", + "company": "EA (Electronic Arts)", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-05-19T12:40:43.020Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ff7" + } + }, + { + "title": "Senior Software Engineer", + "company": "Qualcomm", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-07-06T15:37:06.023Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ff8" + } + }, + { + "title": "Web Developer", + "company": "Oracle", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-02-01T18:10:39.392Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ff9" + } + }, + { + "title": "Technical Lead", + "company": "Tesla", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-11-24T07:49:00.151Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ffa" + } + }, + { + "title": "Software Developer", + "company": "Shopify", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-12-01T21:55:36.660Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ffb" + } + } + ] + }, + "education": [ + { + "institution": "University of Oklahoma", + "degree": "Doctor of Business Administration (DBA)", + "fieldOfStudy": "Urban Planning", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-05-24T07:14:51.319Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ffc" + } + }, + { + "institution": "Ohio State University", + "degree": "Master of Social Work (MSW)", + "fieldOfStudy": "Medicine", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-02-05T17:27:17.667Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd9459ffd" + } + } + ], + "projects": [ + { + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", + "_id": { + "$oid": "6674c31e95590f9fd9459ffe" + } + }, + { + "name": "SmartHomeHub", + "description": "Centralized home automation system integrating IoT devices for smart living.", + "link": "https://github.com/username/smarthomehub", + "_id": { + "$oid": "6674c31e95590f9fd9459fff" + } + }, + { + "name": "AIChatbot", + "description": "AI-powered chatbot for customer support and interactive communication.", + "link": "https://github.com/username/aichatbot", + "_id": { + "$oid": "6674c31e95590f9fd945a000" + } + } + ], + "personalBio": "Dedicated to continuous learning and improvement, always striving to stay updated with the latest technologies.", + "testimonials": [], + "socialMediaLinks": { "blog": "https://www.Lynelle-Grosvener-fake-blog.com", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Ironhack", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd9459ff6" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dc2" + }, + "firstName": "Lenee", + "lastName": "Pethybridge", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "CTRI 4", + "graduationYear": 2024, + "email": "lpethybridge1b@chron.com", + "linkedInProfile": "https://www.linkedin.com/in/Lenee-Pethybridge-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "skills": ["Object-Oriented Programming"], + "specializations": [ + "Automated Testing", + "Python", + "RESTful APIs", + "Google Cloud Platform", + "Git" + ], + "careerInformation": { + "currentPosition": { "title": "Frontend Developer", "company": "Zoom" }, + "pastPositions": [ + { + "title": "Software Engineer", + "company": "Zoom", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-07-06T08:37:31.567Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a002" + } + }, + { + "title": "Test Engineer", + "company": "Airbnb", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-01-17T03:38:29.737Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a003" + } + } + ] + }, + "education": [ + { + "institution": "Ohio State University", + "degree": "Bachelor of Technology (BTech)", + "fieldOfStudy": "Information Technology", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-06-11T15:20:44.462Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a004" + } + }, + { + "institution": "University of Southern California", + "degree": "Bachelor of Business Administration (BBA)", + "fieldOfStudy": "Finance", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-12-07T23:04:24.439Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a005" + } + }, + { + "institution": "Nanyang Technological University (NTU)", + "degree": "Doctor of Medicine (MD)", + "fieldOfStudy": "Journalism", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-01-05T19:28:12.287Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a006" + } + } + ], + "projects": [ + { + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", + "_id": { + "$oid": "6674c31e95590f9fd945a007" + } + }, + { + "name": "LearnHub", + "description": "Online learning platform offering courses on various subjects with interactive content.", + "link": "https://github.com/username/learnhub", + "_id": { + "$oid": "6674c31e95590f9fd945a008" + } + }, + { + "name": "LearnHub", + "description": "Online learning platform offering courses on various subjects with interactive content.", + "link": "https://github.com/username/learnhub", + "_id": { + "$oid": "6674c31e95590f9fd945a009" + } + }, + { + "name": "TravelGuide", + "description": "Interactive travel guide application providing travel tips and destination insights.", + "link": "https://github.com/username/travelguide", + "_id": { + "$oid": "6674c31e95590f9fd945a00a" + } + } + ], + "personalBio": "Adept at optimizing SQL and NoSQL databases for performance and scalability.", + "testimonials": [ + { + "from": "Isabella Clark", + "relation": "HR Manager at TechFusion", + "text": "Maria's professionalism and strong problem-solving skills make her a reliable team member. She consistently delivers high-quality code and meets deadlines.", + "_id": { + "$oid": "6674c31e95590f9fd945a00b" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd945a00c" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "_id": { + "$oid": "6674c31e95590f9fd945a00d" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd945a00e" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Lenee-Pethybridge-fake", + "blog": "https://www.Lenee-Pethybridge-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": false, + "bootcampExperience": "DevMountain", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a001" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dc3" + }, + "firstName": "Ninnette", + "lastName": "Maden", + "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "cohort": "PTRI 72", + "graduationYear": 2024, + "email": "nmaden1c@sciencedirect.com", + "linkedInProfile": "https://www.linkedin.com/in/Ninnette-Maden-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": [ + "Graph Theory", + "API Development", + "Data Science", + "HTML", + "Critical Thinking", + "Machine Learning", + "TDD (Test-Driven Development)", + "Communication Skills", + "Design Patterns", + "IoT (Internet of Things)", + "Project Management", + "Deep Learning", + "Blockchain", + "Cloud Computing" + ], + "specializations": [ + "Containerization", + "Django", + "Flask", + "Problem-Solving", + "User Interface (UI) Design", + "Scrum", + "Robotic Process Automation", + "Design Patterns", + "AWS", + "ASP.NET", + "CI/CD", + "Functional Programming", + "RESTful APIs" + ], + "careerInformation": { + "currentPosition": { "title": "Senior Software Engineer", "company": "Activision Blizzard" }, + "pastPositions": [ + { + "title": "Data Engineer", + "company": "Datadog", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-04-29T06:54:43.698Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a010" + } + }, + { + "title": "iOS Developer", + "company": "Square", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-06-04T12:47:17.988Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a011" + } + }, + { + "title": "Software Developer", + "company": "Cisco", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-08-22T00:10:19.352Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a012" + } + }, + { + "title": "DevOps Engineer", + "company": "Epic Games", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-08-25T03:19:22.871Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a013" + } + } + ] + }, + "education": [ + { + "institution": "Chinese University of Hong Kong (CUHK)", + "degree": "Diploma Program", + "fieldOfStudy": "Data Science", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-10-09T15:55:00.595Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a014" + } + }, + { + "institution": "Cornell University", + "degree": "Master of Arts (MA)", + "fieldOfStudy": "Mathematics", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-11-12T07:55:35.690Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a015" + } + } + ], + "projects": [ + { + "name": "VirtualAssistant", + "description": "Virtual assistant software for voice command-based tasks and personal assistance.", + "link": "https://github.com/username/virtualassistant", + "_id": { + "$oid": "6674c31e95590f9fd945a016" + } + }, + { + "name": "EduTech", + "description": "Educational technology platform offering virtual classrooms and interactive learning tools.", + "link": "https://github.com/username/edutech", + "_id": { + "$oid": "6674c31e95590f9fd945a017" + } + }, + { + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", + "_id": { + "$oid": "6674c31e95590f9fd945a018" + } + }, + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "6674c31e95590f9fd945a019" + } + }, + { + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", + "_id": { + "$oid": "6674c31e95590f9fd945a01a" + } + } + ], + "personalBio": "Experienced in Agile methodologies, with a track record of delivering projects on time and within budget.", + "testimonials": [ + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd945a01b" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "6674c31e95590f9fd945a01c" + } + }, + { + "from": "Liam Harris", + "relation": "Lead Developer at CloudTech", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd945a01d" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd945a01e" + } + } + ], + "socialMediaLinks": { + "blog": "https://www.Ninnette-Maden-fake-blog.com", + "other": ["https://www.instagram.com/Ninnette-Maden-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Tech Elevator", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a00f" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dc4" + }, + "firstName": "Jolynn", + "lastName": "Catenot", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "cohort": "LA 14", + "graduationYear": 2024, + "email": "jcatenot1d@oakley.com", + "linkedInProfile": "https://www.linkedin.com/in/Jolynn-Catenot-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": ["PaaS (Platform as a Service)", "C++", "Python"], + "specializations": [ + "Machine Learning", + "Python", + "Unit Testing", + "API Integration", + "Git", + "iOS Development", + "Django", + "Containerization", + "Refactoring", + "Flask", + "Legacy Code Management", + "Data Warehousing", + "DevOps", + "Software Architecture", + "NoSQL", + "GraphQL", + "Cloud Computing" + ], + "careerInformation": { + "currentPosition": { "title": "Lead Software Engineer", "company": "Cisco" }, + "pastPositions": [ + { + "title": "Full Stack Developer", + "company": "IBM", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-02-10T09:21:35.479Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a020" + } + }, + { + "title": "Software Engineer", + "company": "Tesla", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-08-01T22:00:04.487Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a021" + } + }, + { + "title": "Technical Program Manager", + "company": "IBM", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-10-14T21:58:46.948Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a022" + } + }, + { + "title": "Technical Lead", + "company": "Shopify", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-08-26T07:06:21.567Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a023" + } + }, + { + "title": "Mobile Developer", + "company": "Red Hat", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-01-02T04:26:04.032Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a024" + } + } + ] + }, + "education": [ + { + "institution": "University of Tennessee", + "degree": "Master of Public Health (MPH)", + "fieldOfStudy": "Pharmacy", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-10-31T10:30:20.021Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a025" + } + }, + { + "institution": "University of Hong Kong (HKU)", + "degree": "Master of Education (MEd)", + "fieldOfStudy": "Civil Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-02-18T07:24:48.461Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a026" + } + }, + { + "institution": "Shanghai Jiao Tong University", + "degree": "Master of Public Health (MPH)", + "fieldOfStudy": "Mechanical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-05-23T21:43:37.385Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a027" + } + } + ], + "projects": [ + { + "name": "NetPlanner", + "description": "Network infrastructure planning software for optimizing bandwidth and efficiency.", + "link": "https://github.com/username/netplanner", + "_id": { + "$oid": "6674c31e95590f9fd945a028" + } + }, + { + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", + "_id": { + "$oid": "6674c31e95590f9fd945a029" + } + } + ], + "personalBio": "Adept at optimizing SQL and NoSQL databases for performance and scalability.", + "testimonials": [ + { + "from": "Olivia White", + "relation": "Tech Lead at Cloud Innovations", + "text": "Mark's expertise in backend development and this derp's proactive attitude make this derp a standout engineer. This derp has a knack for turning complex requirements into robust solutions.", + "_id": { + "$oid": "6674c31e95590f9fd945a02a" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "6674c31e95590f9fd945a02b" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd945a02c" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Jolynn-Catenot-fake", + "other": ["https://www.instagram.com/Jolynn-Catenot-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Le Wagon", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a01f" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dc5" + }, + "firstName": "Marabel", + "lastName": "Puleston", + "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "cohort": "WCRI 77", + "graduationYear": 2024, + "email": "mpuleston1e@utexas.edu", + "linkedInProfile": "https://www.linkedin.com/in/Marabel-Puleston-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": ["SaaS (Software as a Service)", "Node.js"], + "specializations": [ + "Django", + "FaaS (Function as a Service)", + "Graph Databases", + "Pair Programming", + "HTML", + "Communication Skills", + "Data Warehousing", + "Natural Language Processing", + "Data Visualization", + "C#", + "Code Review", + "PaaS (Platform as a Service)", + "CSS", + "Blockchain" + ], + "careerInformation": { + "currentPosition": { "title": "Cloud Engineer", "company": "Tesla" }, + "pastPositions": [ + { + "title": "Data Scientist", + "company": "Stripe", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-09-10T10:52:39.879Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a02e" + } + }, + { + "title": "QA Engineer", + "company": "Activision Blizzard", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-03-09T13:59:50.810Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a02f" + } + }, + { + "title": "Principal Software Engineer", + "company": "VMware", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-02-18T22:10:01.529Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a030" + } + }, + { + "title": "Data Engineer", + "company": "Facebook", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-01-05T06:12:18.497Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a031" + } + } + ] + }, + "education": [ + { + "institution": "Chinese University of Hong Kong (CUHK)", + "degree": "Master of Fine Arts (MFA)", + "fieldOfStudy": "Biomedical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-10-13T18:40:39.654Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a032" + } + }, + { + "institution": "University of California, Santa Barbara (UCSB)", + "degree": "Doctoral Degree", + "fieldOfStudy": "Film Studies", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-05-23T07:34:50.851Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a033" + } + }, + { + "institution": "Harvard University", + "degree": "Master of Education (MEd)", + "fieldOfStudy": "Biomedical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-03-27T09:59:16.444Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a034" + } + } + ], + "projects": [ + { + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", + "_id": { + "$oid": "6674c31e95590f9fd945a035" + } + }, + { + "name": "SocialConnect", + "description": "Social media integration platform for managing multiple social accounts.", + "link": "https://github.com/username/socialconnect", + "_id": { + "$oid": "6674c31e95590f9fd945a036" + } + }, + { + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", + "_id": { + "$oid": "6674c31e95590f9fd945a037" + } + } + ], + "personalBio": "Driven by a curiosity for innovation and a commitment to delivering high-quality software solutions.", + "testimonials": [ + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd945a038" + } + }, + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "6674c31e95590f9fd945a039" + } + }, + { + "from": "Emily Brown", + "relation": "Client at GlobalSoft Solutions", + "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd945a03a" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd945a03b" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Marabel-Puleston-fake", + "blog": "https://www.Marabel-Puleston-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": false, + "bootcampExperience": "CareerFoundry", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a02d" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dc6" + }, + "firstName": "Bryn", + "lastName": "Arias", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "WCRI 15", + "graduationYear": 2024, + "email": "barias1f@flavors.me", + "linkedInProfile": "https://www.linkedin.com/in/Bryn-Arias-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": [], + "specializations": [ + "React", + "GraphQL", + "Vue.js", + "Edge Computing", + "Machine Learning", + "C++", + "ASP.NET", + "Java", + "Parallel Computing", + "Deep Learning", + "Reactive Programming", + "FaaS (Function as a Service)", + "Containerization", + "Laravel", + "Collaboration", + "TDD (Test-Driven Development)" + ], + "careerInformation": { + "currentPosition": { "title": "Mobile Developer", "company": "HubSpot" }, + "pastPositions": [ + { + "title": "Lead Software Engineer", + "company": "Palantir", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-02-17T11:31:02.577Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a03d" + } + }, + { + "title": "Data Scientist", + "company": "Atlassian", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-06-08T03:27:57.500Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a03e" + } + }, + { + "title": "Principal Software Engineer", + "company": "Okta", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-01-01T21:05:23.832Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a03f" + } + }, + { + "title": "Lead Software Engineer", + "company": "Slack", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-07-03T03:29:23.194Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a040" + } + } + ] + }, + "education": [ + { + "institution": "University of Virginia", + "degree": "Master of Education (MEd)", + "fieldOfStudy": "Civil Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-12-08T22:16:04.526Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a041" + } + }, + { + "institution": "University of New South Wales (UNSW Sydney)", + "degree": "Master of Business Administration (MBA)", + "fieldOfStudy": "Aerospace Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-02-02T21:17:41.626Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a042" + } + } + ], + "projects": [ + { + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", + "_id": { + "$oid": "6674c31e95590f9fd945a043" + } + }, + { + "name": "CloudStorage", + "description": "Cloud storage service with file synchronization and sharing capabilities.", + "link": "https://github.com/username/cloudstorage", + "_id": { + "$oid": "6674c31e95590f9fd945a044" + } + }, + { + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", + "_id": { + "$oid": "6674c31e95590f9fd945a045" + } + }, + { + "name": "EcoTech", + "description": "Environmental monitoring and conservation app with real-time data visualization.", + "link": "https://github.com/username/ecotech", + "_id": { + "$oid": "6674c31e95590f9fd945a046" + } + } + ], + "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", + "testimonials": [ + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd945a047" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "6674c31e95590f9fd945a048" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd945a049" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd945a04a" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Bryn-Arias-fake-blog.com", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Lambda School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a03c" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dc7" + }, + "firstName": "Arni", + "lastName": "Jertz", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "NYC 0", + "graduationYear": 2024, + "email": "ajertz1g@tuttocitta.it", + "linkedInProfile": "https://www.linkedin.com/in/Arni-Jertz-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": [ + "Serverless Architecture", + "SQL", + "Event-Driven Architecture", + "Robotic Process Automation", + "Agile Development", + "Natural Language Processing", + "Technical Writing", + "Continuous Deployment", + "Quantum Computing", + "Node.js", + "Mobile Development" + ], + "specializations": [ + "Unit Testing", + "SaaS (Software as a Service)", + "Angular", + "Deep Learning", + "Java", + "RESTful APIs", + "JavaScript", + "PaaS (Platform as a Service)", + "Agile Development", + "Serverless Architecture", + "React", + "Algorithm Design", + "User Interface (UI) Design", + "Project Management", + "API Development", + "Edge Computing" + ], + "careerInformation": { + "currentPosition": { "title": "Cloud Engineer", "company": "VMware" }, + "pastPositions": [ + { + "title": "DevOps Engineer", + "company": "GitHub", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-10-31T20:05:15.306Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a04c" + } + }, + { + "title": "Test Engineer", + "company": "Datadog", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-09-23T14:34:12.246Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a04d" + } + }, + { + "title": "Mobile Developer", + "company": "Netflix", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-01-23T12:58:28.212Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a04e" + } + } + ] + }, + "education": [ + { + "institution": "University of Pittsburgh", + "degree": "Master of Technology (MTech)", + "fieldOfStudy": "Economics", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-12-25T13:39:41.095Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a04f" + } + } + ], + "projects": [ + { + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", + "_id": { + "$oid": "6674c31e95590f9fd945a050" + } + }, + { + "name": "TourismApp", + "description": "Mobile application for tourists providing travel guides and local recommendations.", + "link": "https://github.com/username/tourismapp", + "_id": { + "$oid": "6674c31e95590f9fd945a051" + } + }, + { + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", + "_id": { + "$oid": "6674c31e95590f9fd945a052" + } + } + ], + "personalBio": "Passionate about building inclusive and accessible software that improves people's lives.", + "testimonials": [ + { + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "_id": { + "$oid": "6674c31e95590f9fd945a053" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd945a054" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd945a055" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project", + "_id": { + "$oid": "6674c31e95590f9fd945a056" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd945a057" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Arni-Jertz-fake", + "blog": "https://www.Arni-Jertz-fake-blog.com", + "other": ["https://www.instagram.com/Arni-Jertz-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Ironhack", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a04b" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dc8" + }, + "firstName": "Maegan", + "lastName": "Mulhall", + "cohort": "FTRI 66", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a058" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dc9" + }, + "firstName": "Nicolai", + "lastName": "Brugsma", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "FTRI 15", + "graduationYear": 2024, + "email": "nbrugsma1i@4shared.com", + "linkedInProfile": "https://www.linkedin.com/in/Nicolai-Brugsma-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": ["ASP.NET", "Reactive Programming"], + "specializations": [ + "C#", + "DevOps", + "Algorithm Design", + "Ruby", + "Software Architecture", + "Pair Programming" + ], + "careerInformation": { + "currentPosition": { "title": "Security Engineer", "company": "Uber" }, + "pastPositions": [ + { + "title": "Data Scientist", + "company": "Okta", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-12-04T10:55:57.499Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a05a" + } + }, + { + "title": "DevOps Engineer", + "company": "Salesforce", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-04-03T09:31:01.690Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a05b" + } + }, + { + "title": "Data Scientist", + "company": "Amazon", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-06-30T20:15:13.373Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a05c" + } + }, + { + "title": "Test Engineer", + "company": "Atlassian", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-02-09T14:31:05.409Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a05d" + } + }, + { + "title": "Data Scientist", + "company": "Atlassian", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-05-30T17:58:48.506Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a05e" + } + } + ] + }, + "education": [ + { + "institution": "Georgetown University", + "degree": "Doctor of Medicine (MD)", + "fieldOfStudy": "Urban Planning", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-01-16T14:13:42.065Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a05f" + } + }, + { + "institution": "Princeton University", + "degree": "Doctor of Philosophy (PhD)", + "fieldOfStudy": "Biomedical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-12-23T10:39:27.798Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a060" + } + }, + { + "institution": "Yale University", + "degree": "Master of Public Administration (MPA)", + "fieldOfStudy": "Management", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-02-22T09:35:08.922Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a061" + } + } + ], + "projects": [], + "personalBio": "Driven by a passion for problem-solving and a commitment to continuous professional development.", + "testimonials": [ + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd945a062" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd945a063" + } + }, + { + "from": "Liam Harris", + "relation": "Lead Developer at CloudTech", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd945a064" + } + } + ], + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "General Assembly", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a059" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dca" + }, + "firstName": "Bryan", + "lastName": "Heffy", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "FTRI 65", + "graduationYear": 2024, + "email": "bheffy1j@cbsnews.com", + "linkedInProfile": "https://www.linkedin.com/in/Bryan-Heffy-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": [ + "ASP.NET", + "Ruby", + "Infrastructure as Code", + "Serverless Architecture", + "Graph Databases", + "Code Review", + "Flask", + "Cloud Computing", + "DevOps", + "CI/CD", + "Version Control", + "Communication Skills", + "Java", + "Laravel", + "SaaS (Software as a Service)", + "User Experience (UX) Design", + "Agile Development", + "Event-Driven Architecture" + ], + "specializations": [ + "API Development", + "Natural Language Processing", + "Object-Oriented Programming", + "User Interface (UI) Design", + "HTML", + "Android Development", + "Deep Learning", + "Edge Computing", + "Node.js", + "C++", + "Mobile Development", + "Performance Optimization", + "NoSQL" + ], + "careerInformation": { + "currentPosition": { "title": "Data Scientist", "company": "Adobe" }, + "pastPositions": [ + { + "title": "DevOps Engineer", + "company": "Okta", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-05-29T06:11:23.758Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a066" + } + }, + { + "title": "Machine Learning Engineer", + "company": "Twitter", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-11-07T19:52:47.058Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a067" + } + }, + { + "title": "Technical Lead", + "company": "Lyft", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-11-23T10:55:18.338Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a068" + } + }, + { + "title": "Product Manager", + "company": "Salesforce", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-02-06T21:25:18.499Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a069" + } + } + ] + }, + "education": [], + "projects": [], + "personalBio": "Focused on delivering user-centric solutions that address real-world needs and challenges.", + "testimonials": [ + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd945a06a" + } + }, + { + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "_id": { + "$oid": "6674c31e95590f9fd945a06b" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Bryan-Heffy-fake", + "other": ["https://www.instagram.com/Bryan-Heffy-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Nucamp", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a065" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dcb" + }, + "firstName": "Donavon", + "lastName": "Osichev", + "cohort": "FTRI 50", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a06c" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dcc" + }, + "firstName": "Kennan", + "lastName": "Dugget", + "cohort": "ECRI 79", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a06d" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dcd" + }, + "firstName": "Paton", + "lastName": "Climance", + "cohort": "WCRI 70", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a06e" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dce" + }, + "firstName": "Caitrin", + "lastName": "McAllister", + "profilePhoto": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "cohort": "PTRI 27", + "graduationYear": 2024, + "email": "cmcallister1n@ft.com", + "linkedInProfile": "https://www.linkedin.com/in/Caitrin-McAllister-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": ["Technical Writing"], + "specializations": [ + "GraphQL", + "Edge Computing", + "ETL (Extract, Transform, Load)", + "Docker", + "FaaS (Function as a Service)", + "iOS Development", + "Mobile Development" + ], + "careerInformation": { + "currentPosition": { "title": "Frontend Developer", "company": "GitHub" }, + "pastPositions": [ + { + "title": "Software Engineer", + "company": "Shopify", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-07-16T05:39:06.444Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a070" + } + }, + { + "title": "Frontend Developer", + "company": "Robinhood", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-02-25T18:42:37.000Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a071" + } + }, + { + "title": "Technical Lead", + "company": "Shopify", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-09-11T06:52:56.908Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a072" + } + }, + { + "title": "DevOps Engineer", + "company": "DoorDash", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-06-07T18:28:46.924Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a073" + } + } + ] + }, + "education": [], + "projects": [], + "personalBio": "Skilled in working with cross-functional teams to deliver innovative software solutions that exceed expectations.", + "testimonials": [ + { + "from": "David Smith", + "relation": "Colleague at InnovateTech Ltd.", + "text": "Working with This derp has been a pleasure. This derp brings deep technical expertise and a collaborative spirit to every project, making This derp an invaluable team member.", + "_id": { + "$oid": "6674c31e95590f9fd945a074" + } + }, + { + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd945a075" + } + } + ], + "socialMediaLinks": { "twitter": "https://x.com/Caitrin-McAllister-fake", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "The Tech Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a06f" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dcf" + }, + "firstName": "Sephira", + "lastName": "Kaming", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "LA 65", + "graduationYear": 2024, + "email": "skaming1o@about.me", + "linkedInProfile": "https://www.linkedin.com/in/Sephira-Kaming-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": [ + "Machine Learning", + "Cybersecurity", + "ETL (Extract, Transform, Load)", + "SaaS (Software as a Service)", + "Spring Boot", + "RESTful APIs" + ], + "specializations": [ + "Project Management", + "HTML", + "Vue.js", + "WebSockets", + "User Interface (UI) Design", + "Quantum Computing", + "Data Visualization", + "iOS Development", + "AWS", + "BDD (Behavior-Driven Development)", + "Java", + "ETL (Extract, Transform, Load)", + "Google Cloud Platform", + "Mobile Development", + "Time Management" + ], + "careerInformation": { + "currentPosition": { "title": "Cloud Engineer", "company": "Intel" }, + "pastPositions": [ + { + "title": "Data Scientist", + "company": "EA (Electronic Arts)", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-10-02T14:00:59.331Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a077" + } + }, + { + "title": "Data Scientist", + "company": "Google", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-12-02T07:51:37.339Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a078" + } + }, + { + "title": "Software Engineer", + "company": "Twilio", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-11-09T07:14:41.105Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a079" + } + } + ] + }, + "education": [ + { + "institution": "University of Wisconsin-Madison", + "degree": "Doctor of Veterinary Medicine (DVM)", + "fieldOfStudy": "Philosophy", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-02-05T05:37:23.289Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a07a" + } + }, + { + "institution": "Northwestern University", + "degree": "Bachelor of Business Administration (BBA)", + "fieldOfStudy": "Mechanical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-04-29T03:04:16.105Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a07b" + } + }, + { + "institution": "Harvard University", + "degree": "Doctor of Business Administration (DBA)", + "fieldOfStudy": "Graphic Design", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-08-23T07:33:21.887Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a07c" + } + } + ], + "projects": [ + { + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", + "_id": { + "$oid": "6674c31e95590f9fd945a07d" + } + }, + { + "name": "VoiceAssistant", + "description": "Voice-controlled personal assistant using natural language processing.", + "link": "https://github.com/username/voiceassistant", + "_id": { + "$oid": "6674c31e95590f9fd945a07e" + } + }, + { + "name": "CryptoTrack", + "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", + "link": "https://github.com/username/cryptotrack", + "_id": { + "$oid": "6674c31e95590f9fd945a07f" + } + }, + { + "name": "HealthLink", + "description": "Telemedicine platform connecting patients with healthcare providers remotely.", + "link": "https://github.com/username/healthlink", + "_id": { + "$oid": "6674c31e95590f9fd945a080" + } + } + ], + "personalBio": "Detail-oriented developer with a strong foundation in algorithms and data structures.", + "testimonials": [ + { + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + "_id": { + "$oid": "6674c31e95590f9fd945a081" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "6674c31e95590f9fd945a082" + } + }, + { + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "_id": { + "$oid": "6674c31e95590f9fd945a083" + } + }, + { + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd945a084" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd945a085" + } + } + ], + "socialMediaLinks": { + "blog": "https://www.Sephira-Kaming-fake-blog.com", + "other": ["https://www.instagram.com/Sephira-Kaming-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "DevMountain", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a076" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dd0" + }, + "firstName": "Fraser", + "lastName": "Londsdale", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "PTRI 34", + "graduationYear": 2024, + "email": "flondsdale1p@freewebs.com", + "linkedInProfile": "https://www.linkedin.com/in/Fraser-Londsdale-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": ["Time Management", "Azure", "Spring Boot"], + "specializations": [ + "Deep Learning", + "Flask", + "Robotic Process Automation", + "Python", + "Ruby", + "Mobile Development", + "Infrastructure as Code", + "AWS", + "SaaS (Software as a Service)", + "TDD (Test-Driven Development)", + "Java" + ], + "careerInformation": { + "currentPosition": { "title": "Mobile Developer", "company": "DocuSign" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "California Institute of Technology (Caltech)", + "degree": "Bachelor of Fine Arts (BFA)", + "fieldOfStudy": "Biomedical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-01-22T21:22:55.014Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a087" + } + } + ], + "projects": [ + { + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", + "_id": { + "$oid": "6674c31e95590f9fd945a088" + } + }, + { + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", + "_id": { + "$oid": "6674c31e95590f9fd945a089" + } + }, + { + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", + "_id": { + "$oid": "6674c31e95590f9fd945a08a" + } + }, + { + "name": "CryptoWallet", + "description": "Cryptocurrency wallet application for securely storing and managing digital assets.", + "link": "https://github.com/username/cryptowallet", + "_id": { + "$oid": "6674c31e95590f9fd945a08b" + } + } + ], + "personalBio": "Innovative thinker with a track record of proposing and implementing creative solutions to technical challenges.", + "testimonials": [ + { + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "_id": { + "$oid": "6674c31e95590f9fd945a08c" + } + }, + { + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "_id": { + "$oid": "6674c31e95590f9fd945a08d" + } + }, + { + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "_id": { + "$oid": "6674c31e95590f9fd945a08e" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd945a08f" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd945a090" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Fraser-Londsdale-fake", + "blog": "https://www.Fraser-Londsdale-fake-blog.com", + "other": [] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Nucamp", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a086" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dd1" + }, + "firstName": "Alyssa", + "lastName": "Bangham", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "cohort": "CTRI 96", + "graduationYear": 2024, + "email": "abangham1q@usgs.gov", + "linkedInProfile": "https://www.linkedin.com/in/Alyssa-Bangham-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": [ + "Google Cloud Platform", + "Automated Testing", + "Flask", + "API Development", + "Laravel", + "Python", + "FaaS (Function as a Service)" + ], + "specializations": [ + "JavaScript", + "Containerization", + "Design Patterns", + "Data Warehousing", + "User Interface (UI) Design", + "CI/CD", + "Graph Theory", + "Big Data", + "Code Review" + ], + "careerInformation": { + "currentPosition": { "title": "QA Engineer", "company": "Robinhood" }, + "pastPositions": [ + { + "title": "Backend Developer", + "company": "Red Hat", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-03-21T17:46:34.279Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a092" + } + }, + { + "title": "Security Engineer", + "company": "Dropbox", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-05-07T03:33:06.274Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a093" + } + } + ] + }, + "education": [ + { + "institution": "University of California, Los Angeles (UCLA)", + "degree": "Bachelor of Fine Arts (BFA)", + "fieldOfStudy": "Statistics", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-02-17T22:44:31.250Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a094" + } + }, + { + "institution": "Fudan University", + "degree": "Master of Technology (MTech)", + "fieldOfStudy": "Sociology", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-08-29T21:15:35.972Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a095" + } + } + ], + "projects": [ + { + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", + "_id": { + "$oid": "6674c31e95590f9fd945a096" + } + }, + { + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", + "_id": { + "$oid": "6674c31e95590f9fd945a097" + } + }, + { + "name": "VoiceAssistant", + "description": "Voice-controlled personal assistant using natural language processing.", + "link": "https://github.com/username/voiceassistant", + "_id": { + "$oid": "6674c31e95590f9fd945a098" + } + }, + { + "name": "TravelGuide", + "description": "Interactive travel guide application providing travel tips and destination insights.", + "link": "https://github.com/username/travelguide", + "_id": { + "$oid": "6674c31e95590f9fd945a099" + } + } + ], + "personalBio": "Experienced in international collaboration and remote work, with a strong appreciation for cultural diversity.", + "testimonials": [ + { + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd945a09a" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd945a09b" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd945a09c" + } + }, + { + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "_id": { + "$oid": "6674c31e95590f9fd945a09d" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd945a09e" + } + } + ], + "socialMediaLinks": { "other": ["https://www.instagram.com/Alyssa-Bangham-fake"] }, + "availabilityForNetworking": true, + "bootcampExperience": "Flatiron School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a091" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dd2" + }, + "firstName": "Clarette", + "lastName": "Alcock", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "FTRI 32", + "graduationYear": 2024, + "email": "calcock1r@amazonaws.com", + "linkedInProfile": "https://www.linkedin.com/in/Clarette-Alcock-fake", + "professionalSummary": "Game developer passionate about creating immersive gaming experiences with a strong foundation in graphics programming.", + "skills": [ + "System Design", + "Android Development", + "Natural Language Processing", + "GraphQL", + "Refactoring" + ], + "specializations": [ + "TDD (Test-Driven Development)", + "Problem-Solving", + "Natural Language Processing", + "Software Architecture", + "Blockchain", + "Microservices", + "Robotic Process Automation", + "System Design", + "Azure", + "Performance Optimization", + "Quantum Computing", + "Data Science", + "Algorithm Design", + "iOS Development", + "Spring Boot" + ], + "careerInformation": { + "currentPosition": { "title": "Product Manager", "company": "Asana" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "Pennsylvania State University", + "degree": "High School Diploma", + "fieldOfStudy": "Sociology", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-12-27T23:03:27.760Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0a0" + } + }, + { + "institution": "Fudan University", + "degree": "Certificate Program", + "fieldOfStudy": "Business Administration", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-12-10T07:09:04.166Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0a1" + } + }, + { + "institution": "University of Vermont", + "degree": "Master's Degree", + "fieldOfStudy": "History", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-05-06T12:08:45.479Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0a2" + } + } + ], + "projects": [ + { + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", + "_id": { + "$oid": "6674c31e95590f9fd945a0a3" + } + }, + { + "name": "EcoTech", + "description": "Environmental monitoring and conservation app with real-time data visualization.", + "link": "https://github.com/username/ecotech", + "_id": { + "$oid": "6674c31e95590f9fd945a0a4" + } + }, + { + "name": "TravelGuide", + "description": "Interactive travel guide application providing travel tips and destination insights.", + "link": "https://github.com/username/travelguide", + "_id": { + "$oid": "6674c31e95590f9fd945a0a5" + } + } + ], + "personalBio": "Committed to ensuring software security and compliance with industry standards and regulations.", + "testimonials": [ + { + "from": "Emily Brown", + "relation": "Client at GlobalSoft Solutions", + "text": "This derp's dedication to understanding our business needs and delivering customized software solutions has significantly improved our operational efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd945a0a6" + } + }, + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd945a0a7" + } + } + ], + "socialMediaLinks": { + "blog": "https://www.Clarette-Alcock-fake-blog.com", + "other": ["https://www.instagram.com/Clarette-Alcock-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Thinkful", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a09f" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dd3" + }, + "firstName": "Lizbeth", + "lastName": "France", + "cohort": "FTRI 61", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a0a8" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dd4" + }, + "firstName": "Abramo", + "lastName": "Sparkwell", + "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "cohort": "NYC 26", + "graduationYear": 2024, + "email": "asparkwell1t@berkeley.edu", + "linkedInProfile": "https://www.linkedin.com/in/Abramo-Sparkwell-fake", + "professionalSummary": "Software engineer with expertise in designing and implementing RESTful APIs for seamless integration between applications.", + "skills": ["Leadership"], + "specializations": [ + "Big Data", + "CI/CD", + "Mobile Development", + "Scrum", + "AWS", + "Cloud Computing", + "Collaboration", + "Data Visualization", + "Java", + "Containerization", + "Ruby", + "AR/VR (Augmented/Virtual Reality)", + "SQL", + "User Interface (UI) Design" + ], + "careerInformation": { + "currentPosition": { "title": "Principal Software Engineer", "company": "Dropbox" }, + "pastPositions": [] + }, + "education": [ + { + "institution": "University of Colorado Boulder", + "degree": "Bachelor's Degree", + "fieldOfStudy": "Fine Arts", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-05-22T16:36:53.382Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0aa" + } + }, + { + "institution": "University of Houston", + "degree": "Bachelor of Arts (BA)", + "fieldOfStudy": "Fine Arts", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-02-12T00:31:55.296Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0ab" + } + } + ], + "projects": [ + { + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", + "_id": { + "$oid": "6674c31e95590f9fd945a0ac" + } + }, + { + "name": "CodeAnalyzer", + "description": "Static code analysis tool for detecting bugs and code quality improvements.", + "link": "https://github.com/username/codeanalyzer", + "_id": { + "$oid": "6674c31e95590f9fd945a0ad" + } + }, + { + "name": "EcoTech", + "description": "Environmental monitoring and conservation app with real-time data visualization.", + "link": "https://github.com/username/ecotech", + "_id": { + "$oid": "6674c31e95590f9fd945a0ae" + } + } + ], + "personalBio": "Focused on delivering user-centric solutions that address real-world needs and challenges.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Abramo-Sparkwell-fake", + "blog": "https://www.Abramo-Sparkwell-fake-blog.com", + "other": ["https://www.instagram.com/Abramo-Sparkwell-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "App Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a0a9" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dd5" + }, + "firstName": "Darb", + "lastName": "Coen", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "ECRI 37", + "graduationYear": 2024, + "email": "dcoen1u@prlog.org", + "linkedInProfile": "https://www.linkedin.com/in/Darb-Coen-fake", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "skills": [ + "Edge Computing", + "Refactoring", + "User Interface (UI) Design", + "AWS", + "Problem-Solving", + "Kubernetes", + "Vue.js" + ], + "specializations": ["C++", "User Experience (UX) Design", "CI/CD", "Algorithm Design", "Git"], + "careerInformation": { + "currentPosition": { "title": "QA Engineer", "company": "DoorDash" }, + "pastPositions": [ + { + "title": "Software Architect", + "company": "Spotify", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-09-20T08:51:23.231Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0b0" + } + }, + { + "title": "Software Architect", + "company": "Robinhood", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-07-19T23:28:24.625Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0b1" + } + } + ] + }, + "education": [ + { + "institution": "Georgetown University", + "degree": "Master of Technology (MTech)", + "fieldOfStudy": "Sociology", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-10-21T03:54:18.247Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0b2" + } + }, + { + "institution": "University of Utah", + "degree": "Doctor of Veterinary Medicine (DVM)", + "fieldOfStudy": "Biochemistry", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-03-02T07:29:31.284Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0b3" + } + }, + { + "institution": "University of Texas at Austin", + "degree": "Doctor of Philosophy (PhD)", + "fieldOfStudy": "Accounting", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-08-12T17:24:30.841Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0b4" + } + } + ], + "projects": [ + { + "name": "ARNavigation", + "description": "Augmented reality navigation app for real-time directions and location-based information.", + "link": "https://github.com/username/arnavigation", + "_id": { + "$oid": "6674c31e95590f9fd945a0b5" + } + }, + { + "name": "VirtualTour", + "description": "Virtual reality tour application for immersive travel experiences.", + "link": "https://github.com/username/virtualtour", + "_id": { + "$oid": "6674c31e95590f9fd945a0b6" + } + }, + { + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", + "_id": { + "$oid": "6674c31e95590f9fd945a0b7" + } + }, + { + "name": "SmartCity", + "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", + "link": "https://github.com/username/smartcity", + "_id": { + "$oid": "6674c31e95590f9fd945a0b8" + } + } + ], + "personalBio": "Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.", + "testimonials": [ + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd945a0b9" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd945a0ba" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Darb-Coen-fake", + "other": ["https://www.instagram.com/Darb-Coen-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "Flatiron School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a0af" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dd6" + }, + "firstName": "Gusty", + "lastName": "Besnardeau", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "cohort": "CTRI 30", + "graduationYear": 2024, + "email": "gbesnardeau1v@themeforest.net", + "linkedInProfile": "https://www.linkedin.com/in/Gusty-Besnardeau-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": [], + "specializations": [], + "careerInformation": { + "currentPosition": { "title": "Data Engineer", "company": "Atlassian" }, + "pastPositions": [ + { + "title": "Software Developer", + "company": "Facebook", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-12-24T10:46:01.539Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0bc" + } + }, + { + "title": "Backend Developer", + "company": "Activision Blizzard", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-07-28T03:02:03.937Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0bd" + } + }, + { + "title": "Cloud Engineer", + "company": "Stripe", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-09-07T19:01:30.142Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0be" + } + } + ] + }, + "education": [ + { + "institution": "Columbia University", + "degree": "Bachelor of Arts (BA)", + "fieldOfStudy": "Pharmacy", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-08-03T21:23:08.155Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0bf" + } + } + ], + "projects": [ + { + "name": "HealthMonitor", + "description": "Personal health monitoring app with AI-driven analytics and wearable device integration.", + "link": "https://github.com/username/healthmonitor", + "_id": { + "$oid": "6674c31e95590f9fd945a0c0" + } + }, + { + "name": "AIChatbot", + "description": "AI-powered chatbot for customer support and interactive communication.", + "link": "https://github.com/username/aichatbot", + "_id": { + "$oid": "6674c31e95590f9fd945a0c1" + } + }, + { + "name": "AIAssistant", + "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", + "link": "https://github.com/username/aiassistant", + "_id": { + "$oid": "6674c31e95590f9fd945a0c2" + } + }, + { + "name": "VirtualAssistant", + "description": "Virtual assistant software for voice command-based tasks and personal assistance.", + "link": "https://github.com/username/virtualassistant", + "_id": { + "$oid": "6674c31e95590f9fd945a0c3" + } + } + ], + "personalBio": "Committed to writing clean, maintainable code that meets rigorous performance standards.", + "testimonials": [ + { + "from": "Oliver Jackson", + "relation": "HR Manager at TechFusion", + "text": "Olivia's dedication and problem-solving skills have significantly contributed to our project's success. This derp's expertise in frontend development is exceptional.", + "_id": { + "$oid": "6674c31e95590f9fd945a0c4" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "_id": { + "$oid": "6674c31e95590f9fd945a0c5" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd945a0c6" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Gusty-Besnardeau-fake", + "blog": "https://www.Gusty-Besnardeau-fake-blog.com", + "other": ["https://www.instagram.com/Gusty-Besnardeau-fake"] + }, + "availabilityForNetworking": false, + "bootcampExperience": "App Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a0bb" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dd7" + }, + "firstName": "Randy", + "lastName": "Verriour", + "cohort": "LA 41", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a0c7" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dd8" + }, + "firstName": "Israel", + "lastName": "Canti", + "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "cohort": "FTRI 66", + "graduationYear": 2024, + "email": "icanti1x@businesswire.com", + "linkedInProfile": "https://www.linkedin.com/in/Israel-Canti-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [ + "Software Architecture", + "Flask", + "Algorithm Design", + "Legacy Code Management", + "Laravel", + "Java", + "NoSQL", + "GraphQL", + "AWS", + "Node.js", + "Concurrency", + "DevOps", + "Docker", + "Performance Optimization", + "React", + "User Interface (UI) Design", + "IoT (Internet of Things)", + "Edge Computing" + ], + "specializations": [ + "Spring Boot", + "API Development", + "WebSockets", + "Node.js", + "Kubernetes", + "Object-Oriented Programming", + "Algorithm Design", + "Machine Learning", + "Mobile Development", + "Critical Thinking", + "Angular", + "FaaS (Function as a Service)", + "Big Data", + "Integration Testing", + "Natural Language Processing", + "Automated Testing" + ], + "careerInformation": { + "currentPosition": { "title": "Lead Software Engineer", "company": "IBM" }, + "pastPositions": [ + { + "title": "QA Engineer", + "company": "Activision Blizzard", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-10-01T04:30:19.856Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0c9" + } + }, + { + "title": "Principal Software Engineer", + "company": "PayPal", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-02-07T08:04:25.685Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0ca" + } + } + ] + }, + "education": [ + { + "institution": "California Institute of Technology (Caltech)", + "degree": "Bachelor of Fine Arts (BFA)", + "fieldOfStudy": "Marketing", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-06-19T23:24:51.463Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0cb" + } + } + ], + "projects": [ + { + "name": "SmartGrid", + "description": "Smart grid technology for efficient energy distribution and consumption.", + "link": "https://github.com/username/smartgrid", + "_id": { + "$oid": "6674c31e95590f9fd945a0cc" + } + }, + { + "name": "AIAssistant", + "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", + "link": "https://github.com/username/aiassistant", + "_id": { + "$oid": "6674c31e95590f9fd945a0cd" + } + }, + { + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", + "_id": { + "$oid": "6674c31e95590f9fd945a0ce" + } + }, + { + "name": "SecureChat", + "description": "End-to-end encrypted messaging app ensuring user privacy and security.", + "link": "https://github.com/username/securechat", + "_id": { + "$oid": "6674c31e95590f9fd945a0cf" + } + }, + { + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", + "_id": { + "$oid": "6674c31e95590f9fd945a0d0" + } + } + ], + "personalBio": "Experienced in rapid prototyping and iterative development methodologies.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Israel-Canti-fake", + "other": ["https://www.instagram.com/Israel-Canti-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Makers Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a0c8" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dd9" + }, + "firstName": "Micky", + "lastName": "Dunseath", + "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "cohort": "PTRI 74", + "graduationYear": 2024, + "email": "mdunseath1y@miibeian.gov.cn", + "linkedInProfile": "https://www.linkedin.com/in/Micky-Dunseath-fake", + "professionalSummary": "DevOps engineer proficient in automating CI/CD pipelines and optimizing infrastructure for scalable cloud-based applications.", + "skills": [ + "Communication Skills", + "Automated Testing", + "Ruby", + "Code Review", + "Concurrency", + "SaaS (Software as a Service)", + "React", + "Scrum" + ], + "specializations": [ + "C#", + "API Development", + "ASP.NET", + "Python", + "Deep Learning", + "Google Cloud Platform", + "User Interface (UI) Design", + "Collaboration", + "Natural Language Processing", + "Infrastructure as Code" + ], + "careerInformation": { + "currentPosition": { "title": "Android Developer", "company": "Workday" }, + "pastPositions": [ + { + "title": "Site Reliability Engineer", + "company": "Twitter", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-08-14T16:26:09.484Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0d2" + } + }, + { + "title": "Principal Software Engineer", + "company": "Facebook", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-06-27T21:34:27.658Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0d3" + } + }, + { + "title": "Software Engineer", + "company": "VMware", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-02-11T21:12:00.811Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0d4" + } + }, + { + "title": "Technical Program Manager", + "company": "Zoom", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-05-31T15:46:28.271Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0d5" + } + }, + { + "title": "DevOps Engineer", + "company": "Robinhood", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-06-23T11:20:45.983Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0d6" + } + } + ] + }, + "education": [ + { + "institution": "California Institute of Technology (Caltech)", + "degree": "Master of Public Health (MPH)", + "fieldOfStudy": "Statistics", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-11-24T04:15:28.305Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0d7" + } + } + ], + "projects": [ + { + "name": "AIChatbot", + "description": "AI-powered chatbot for customer support and interactive communication.", + "link": "https://github.com/username/aichatbot", + "_id": { + "$oid": "6674c31e95590f9fd945a0d8" + } + }, + { + "name": "JobFinder", + "description": "Job search and application management platform with personalized recommendations.", + "link": "https://github.com/username/jobfinder", + "_id": { + "$oid": "6674c31e95590f9fd945a0d9" + } + } + ], + "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Micky-Dunseath-fake", + "other": ["https://www.instagram.com/Micky-Dunseath-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Springboard", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a0d1" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dda" + }, + "firstName": "Gabi", + "lastName": "Hardcastle", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "LA 66", + "graduationYear": 2024, + "email": "ghardcastle1z@weebly.com", + "linkedInProfile": "https://www.linkedin.com/in/Gabi-Hardcastle-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": ["Design Patterns", "User Experience (UX) Design", "SaaS (Software as a Service)"], + "specializations": ["CI/CD", "iOS Development"], + "careerInformation": { + "currentPosition": { "title": "Lead Software Engineer", "company": "Stripe" }, + "pastPositions": [ + { + "title": "Software Developer", + "company": "PayPal", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-09-02T10:15:10.021Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0db" + } + }, + { + "title": "Data Engineer", + "company": "Cisco", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-06-12T06:58:29.263Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0dc" + } + }, + { + "title": "Software Developer", + "company": "HubSpot", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-06-07T02:51:43.401Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0dd" + } + }, + { + "title": "Backend Developer", + "company": "Shopify", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-10-22T16:04:43.723Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0de" + } + } + ] + }, + "education": [ + { + "institution": "University of Alberta", + "degree": "Associate Degree", + "fieldOfStudy": "Civil Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-01-28T16:03:38.497Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0df" + } + } + ], + "projects": [ + { + "name": "AIAssistant", + "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", + "link": "https://github.com/username/aiassistant", + "_id": { + "$oid": "6674c31e95590f9fd945a0e0" + } + }, + { + "name": "DataCrunch", + "description": "Real-time data analytics platform for extracting insights from big data.", + "link": "https://github.com/username/datacrunch", + "_id": { + "$oid": "6674c31e95590f9fd945a0e1" + } + }, + { + "name": "GenomeQuest", + "description": "Genomic data analysis tool for researchers and bioinformaticians.", + "link": "https://github.com/username/genomequest", + "_id": { + "$oid": "6674c31e95590f9fd945a0e2" + } + } + ], + "personalBio": "Adept at optimizing SQL and NoSQL databases for performance and scalability.", + "testimonials": [ + { + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + "_id": { + "$oid": "6674c31e95590f9fd945a0e3" + } + }, + { + "from": "Lucas Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", + "_id": { + "$oid": "6674c31e95590f9fd945a0e4" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd945a0e5" + } + } + ], + "socialMediaLinks": { "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "The Tech Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a0da" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459ddb" + }, + "firstName": "Rakel", + "lastName": "Scothron", + "cohort": "FTRI 9", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a0e6" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459ddc" + }, + "firstName": "Gretel", + "lastName": "Sitford", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "NYC 80", + "graduationYear": 2024, + "email": "gsitford21@tinyurl.com", + "linkedInProfile": "https://www.linkedin.com/in/Gretel-Sitford-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": [ + "Flask", + "Communication Skills", + "Software Architecture", + "Microservices", + "Scrum", + "Django", + "Graph Databases", + "Critical Thinking", + "React", + "ASP.NET", + "Agile Development", + "IoT (Internet of Things)", + "DevOps", + "Big Data", + "Angular" + ], + "specializations": ["IoT (Internet of Things)", "JavaScript", "Code Review", "Time Management"], + "careerInformation": { + "currentPosition": { "title": "Backend Developer", "company": "Apple" }, + "pastPositions": [ + { + "title": "Test Engineer", + "company": "EA (Electronic Arts)", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-06-28T04:55:04.606Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0e8" + } + }, + { + "title": "Technical Lead", + "company": "DoorDash", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-09-12T18:13:38.404Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0e9" + } + }, + { + "title": "Embedded Systems Engineer", + "company": "Qualcomm", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-12-02T03:42:55.342Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0ea" + } + }, + { + "title": "Mobile Developer", + "company": "Red Hat", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-11-08T14:43:26.248Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0eb" + } + }, + { + "title": "Security Engineer", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-08-12T02:21:12.750Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0ec" + } + } + ] + }, + "education": [ + { + "institution": "Princeton University", + "degree": "Master of Social Work (MSW)", + "fieldOfStudy": "Statistics", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-09-19T00:16:47.113Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0ed" + } + }, + { + "institution": "University of Vermont", + "degree": "Master of Technology (MTech)", + "fieldOfStudy": "Architecture", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-02-01T16:38:39.986Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0ee" + } + }, + { + "institution": "Purdue University", + "degree": "Bachelor of Fine Arts (BFA)", + "fieldOfStudy": "Biomedical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-03-04T22:02:55.858Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0ef" + } + } + ], + "projects": [ + { + "name": "CodeBot", + "description": "Automated code generation tool using AI for faster development cycles.", + "link": "https://github.com/username/codebot", + "_id": { + "$oid": "6674c31e95590f9fd945a0f0" + } + }, + { + "name": "CryptoTrack", + "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", + "link": "https://github.com/username/cryptotrack", + "_id": { + "$oid": "6674c31e95590f9fd945a0f1" + } + } + ], + "personalBio": "Proactive learner constantly exploring emerging technologies and trends in the software industry.", + "testimonials": [ + { + "from": "Lucas Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Lucas's creativity and technical proficiency have been invaluable to our team's success. This derp consistently delivers high-quality code and exceeds expectations.", + "_id": { + "$oid": "6674c31e95590f9fd945a0f2" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd945a0f3" + } + }, + { + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd945a0f4" + } + } + ], + "socialMediaLinks": { "other": ["https://www.instagram.com/Gretel-Sitford-fake"] }, + "availabilityForNetworking": true, + "bootcampExperience": "CareerFoundry", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a0e7" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459ddd" + }, + "firstName": "Rosalinda", + "lastName": "Naisby", + "cohort": "LA 50", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a0f5" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dde" + }, + "firstName": "Thaddus", + "lastName": "Waddell", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "ECRI 12", + "graduationYear": 2024, + "email": "twaddell23@nymag.com", + "linkedInProfile": "https://www.linkedin.com/in/Thaddus-Waddell-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [], + "specializations": [ + "Node.js", + "CSS", + "Mobile Development", + "GraphQL", + "Machine Learning", + "ETL (Extract, Transform, Load)", + "Cloud Computing", + "Blockchain", + "Flask", + "User Experience (UX) Design", + "Refactoring", + "Edge Computing", + "Docker", + "Problem-Solving", + "Quantum Computing", + "iOS Development", + "Vue.js", + "SaaS (Software as a Service)" + ], + "careerInformation": { + "currentPosition": { "title": "DevOps Engineer", "company": "Pinterest" }, + "pastPositions": [ + { + "title": "Cloud Engineer", + "company": "Palantir", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-09-25T01:10:57.865Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0f7" + } + }, + { + "title": "Software Engineer", + "company": "Pinterest", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-04-23T18:23:25.033Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0f8" + } + }, + { + "title": "Software Developer", + "company": "VMware", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-09-28T23:10:05.316Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0f9" + } + }, + { + "title": "Principal Software Engineer", + "company": "Robinhood", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-07-27T04:48:06.829Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0fa" + } + } + ] + }, + "education": [ + { + "institution": "University of Oregon", + "degree": "Doctor of Dental Surgery (DDS)", + "fieldOfStudy": "Linguistics", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-07-23T21:06:32.270Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0fb" + } + }, + { + "institution": "University of Massachusetts Amherst", + "degree": "Doctor of Veterinary Medicine (DVM)", + "fieldOfStudy": "Electrical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-12-10T03:54:17.766Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0fc" + } + }, + { + "institution": "Australian National University", + "degree": "Master of Business Administration (MBA)", + "fieldOfStudy": "Psychology", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2025-06-09T16:17:29.620Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a0fd" + } + } + ], + "projects": [ + { + "name": "SmartMirror", + "description": "Interactive mirror with IoT capabilities displaying weather, news, and calendar updates.", + "link": "https://github.com/username/smartmirror", + "_id": { + "$oid": "6674c31e95590f9fd945a0fe" + } + }, + { + "name": "CodeReview", + "description": "Collaborative code review platform with annotations and feedback features.", + "link": "https://github.com/username/codereview", + "_id": { + "$oid": "6674c31e95590f9fd945a0ff" + } + }, + { + "name": "CodeOptimizer", + "description": "AI-driven code optimization tool for improving software performance and efficiency.", + "link": "https://github.com/username/codeoptimizer", + "_id": { + "$oid": "6674c31e95590f9fd945a100" + } + }, + { + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", + "_id": { + "$oid": "6674c31e95590f9fd945a101" + } + }, + { + "name": "TourismApp", + "description": "Mobile application for tourists providing travel guides and local recommendations.", + "link": "https://github.com/username/tourismapp", + "_id": { + "$oid": "6674c31e95590f9fd945a102" + } + } + ], + "personalBio": "Enthusiastic about exploring the intersection of technology and social impact.", + "testimonials": [ + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd945a103" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd945a104" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd945a105" + } + }, + { + "from": "Liam Harris", + "relation": "Lead Developer at CloudTech", + "text": "Sarah's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd945a106" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Thaddus-Waddell-fake", + "blog": "https://www.Thaddus-Waddell-fake-blog.com", + "other": ["https://www.instagram.com/Thaddus-Waddell-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Galvanize", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a0f6" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459ddf" + }, + "firstName": "Nadia", + "lastName": "Zeale", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "PTRI 95", + "graduationYear": 2024, + "email": "nzeale24@google.ru", + "linkedInProfile": "https://www.linkedin.com/in/Nadia-Zeale-fake", + "professionalSummary": "Experienced full-stack developer passionate about building scalable web applications with a focus on user experience.", + "skills": [ + "DevOps", + "Infrastructure as Code", + "Cybersecurity", + "Edge Computing", + "Design Patterns", + "Unit Testing", + "Object-Oriented Programming", + "Serverless Architecture", + "Event-Driven Architecture" + ], + "specializations": [ + "TDD (Test-Driven Development)", + "User Interface (UI) Design", + "Design Patterns", + "Microservices", + "Infrastructure as Code", + "C#", + "IoT (Internet of Things)", + "Communication Skills", + "Flask" + ], + "careerInformation": { + "currentPosition": { "title": "Product Manager", "company": "Robinhood" }, + "pastPositions": [ + { + "title": "Machine Learning Engineer", + "company": "Coinbase", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2028-05-10T20:01:14.354Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a108" + } + }, + { + "title": "Machine Learning Engineer", + "company": "ServiceNow", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2026-08-01T09:08:05.300Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a109" + } + }, + { + "title": "AI Engineer", + "company": "Slack", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2027-09-01T10:08:57.547Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a10a" + } + }, + { + "title": "iOS Developer", + "company": "Twilio", + "startDate": { + "$date": "2024-06-21T00:02:38.630Z" + }, + "endDate": { + "$date": "2024-12-01T15:54:53.771Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a10b" + } + } + ] + }, + "education": [], + "projects": [ + { + "name": "TourismApp", + "description": "Mobile application for tourists providing travel guides and local recommendations.", + "link": "https://github.com/username/tourismapp", + "_id": { + "$oid": "6674c31e95590f9fd945a10c" + } + }, + { + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", + "_id": { + "$oid": "6674c31e95590f9fd945a10d" + } + }, + { + "name": "AIAssistant", + "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", + "link": "https://github.com/username/aiassistant", + "_id": { + "$oid": "6674c31e95590f9fd945a10e" + } + } + ], + "personalBio": "Detail-oriented developer with a strong foundation in algorithms and data structures.", + "testimonials": [ + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd945a10f" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd945a110" + } + }, + { + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd945a111" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Nadia-Zeale-fake-blog.com", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "CareerFoundry", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a107" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459de0" + }, + "firstName": "Emmett", + "lastName": "Buckell", + "cohort": "NYC 73", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a112" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459de1" + }, + "firstName": "Lavinia", + "lastName": "Baume", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "cohort": "PTRI 21", + "graduationYear": 2024, + "email": "lbaume26@tinyurl.com", + "linkedInProfile": "https://www.linkedin.com/in/Lavinia-Baume-fake", + "professionalSummary": "Frontend developer skilled in crafting responsive and intuitive user interfaces using modern JavaScript frameworks.", + "skills": [ + "API Integration", + "Critical Thinking", + "Natural Language Processing", + "Collaboration", + "React", + "Mobile Development" + ], + "specializations": [ + "Collaboration", + "Kubernetes", + "Cybersecurity", + "AWS", + "Data Science", + "GraphQL", + "Pair Programming", + "Git", + "Docker", + "Version Control", + "PaaS (Platform as a Service)", + "Data Warehousing", + "Scrum", + "Big Data", + "JavaScript", + "Android Development" + ], + "careerInformation": { + "currentPosition": { "title": "Software Architect", "company": "Airbnb" }, + "pastPositions": [ + { + "title": "Security Engineer", + "company": "Salesforce", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-08-18T08:32:29.217Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a114" + } + }, + { + "title": "Backend Developer", + "company": "Lyft", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-12-18T21:02:19.297Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a115" + } + }, + { + "title": "Backend Developer", + "company": "NVIDIA", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2025-12-31T08:36:41.646Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a116" + } + }, + { + "title": "AI Engineer", + "company": "Activision Blizzard", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-11-22T15:08:23.241Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a117" + } + } + ] + }, + "education": [], + "projects": [], + "personalBio": "Experienced in deploying and maintaining applications on cloud platforms like AWS and Azure.", + "testimonials": [], + "socialMediaLinks": { "twitter": "https://x.com/Lavinia-Baume-fake", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Nucamp", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a113" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459de2" + }, + "firstName": "Janine", + "lastName": "Kitt", + "profilePhoto": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "cohort": "CTRI 29", + "graduationYear": 2024, + "email": "jkitt27@wsj.com", + "linkedInProfile": "https://www.linkedin.com/in/Janine-Kitt-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": [ + "Software Architecture", + "Object-Oriented Programming", + "GraphQL", + "Android Development", + "Node.js", + "User Interface (UI) Design" + ], + "specializations": [ + "Blockchain", + "PaaS (Platform as a Service)", + "Google Cloud Platform", + "Docker", + "Data Science", + "Data Visualization", + "System Design", + "Natural Language Processing" + ], + "careerInformation": { + "currentPosition": { "title": "AI Engineer", "company": "Lyft" }, + "pastPositions": [ + { + "title": "Embedded Systems Engineer", + "company": "Spotify", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-04-10T02:15:26.718Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a119" + } + }, + { + "title": "Software Engineer", + "company": "Twilio", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-03-31T19:36:09.662Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a11a" + } + }, + { + "title": "Engineering Manager", + "company": "NVIDIA", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2025-12-31T05:13:13.584Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a11b" + } + }, + { + "title": "Frontend Developer", + "company": "Netflix", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-04-12T07:00:33.800Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a11c" + } + }, + { + "title": "iOS Developer", + "company": "Amazon", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-09-12T11:20:39.389Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a11d" + } + } + ] + }, + "education": [ + { + "institution": "Washington University in St. Louis", + "degree": "Master of Engineering (ME)", + "fieldOfStudy": "Fine Arts", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-03-19T18:16:31.744Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a11e" + } + }, + { + "institution": "University of Florida", + "degree": "Master of Arts (MA)", + "fieldOfStudy": "Mechanical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-07-13T12:44:06.611Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a11f" + } + }, + { + "institution": "Clemson University", + "degree": "Trade School Certification", + "fieldOfStudy": "History", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-05-26T08:00:09.398Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a120" + } + } + ], + "projects": [ + { + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", + "_id": { + "$oid": "6674c31e95590f9fd945a121" + } + }, + { + "name": "CryptoTrack", + "description": "Blockchain-based cryptocurrency portfolio tracker for investors.", + "link": "https://github.com/username/cryptotrack", + "_id": { + "$oid": "6674c31e95590f9fd945a122" + } + }, + { + "name": "SecureBackup", + "description": "Encrypted cloud backup solution ensuring secure storage and data protection.", + "link": "https://github.com/username/securebackup", + "_id": { + "$oid": "6674c31e95590f9fd945a123" + } + } + ], + "personalBio": "Experienced in Agile methodologies, with a track record of delivering projects on time and within budget.", + "testimonials": [], + "socialMediaLinks": { "twitter": "https://x.com/Janine-Kitt-fake", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "General Assembly", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a118" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459de3" + }, + "firstName": "Beatrix", + "lastName": "Healey", + "cohort": "WCRI 59", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a124" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459de4" + }, + "firstName": "Simone", + "lastName": "Buske", + "profilePhoto": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "cohort": "PTRI 21", + "graduationYear": 2024, + "email": "sbuske29@soundcloud.com", + "linkedInProfile": "https://www.linkedin.com/in/Simone-Buske-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": ["React", "Parallel Computing", "HTML"], + "specializations": [ + "Django", + "IoT (Internet of Things)", + "TDD (Test-Driven Development)", + "Scrum" + ], + "careerInformation": { + "currentPosition": { "title": "Software Developer", "company": "DocuSign" }, + "pastPositions": [ + { + "title": "Automation Engineer", + "company": "Square", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2024-07-13T21:23:49.439Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a126" + } + }, + { + "title": "Backend Developer", + "company": "NVIDIA", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2025-06-06T00:08:59.975Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a127" + } + }, + { + "title": "Data Engineer", + "company": "Cisco", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-08-14T20:26:46.133Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a128" + } + }, + { + "title": "Web Developer", + "company": "Microsoft", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-09-06T10:50:59.060Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a129" + } + }, + { + "title": "Security Engineer", + "company": "PayPal", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-01-24T09:23:47.436Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a12a" + } + } + ] + }, + "education": [ + { + "institution": "University of Georgia", + "degree": "Technical School Certification", + "fieldOfStudy": "Data Science", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2025-04-05T22:00:42.086Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a12b" + } + }, + { + "institution": "University of Utah", + "degree": "Bachelor of Science (BS)", + "fieldOfStudy": "Linguistics", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-06-30T13:59:59.387Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a12c" + } + }, + { + "institution": "National University of Singapore (NUS)", + "degree": "Master of Education (MEd)", + "fieldOfStudy": "Biochemistry", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-02-22T23:48:00.997Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a12d" + } + } + ], + "projects": [], + "personalBio": "Experienced in rapid prototyping and iterative development methodologies.", + "testimonials": [ + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd945a12e" + } + }, + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "6674c31e95590f9fd945a12f" + } + } + ], + "socialMediaLinks": { + "blog": "https://www.Simone-Buske-fake-blog.com", + "other": ["https://www.instagram.com/Simone-Buske-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Springboard", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a125" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459de5" + }, + "firstName": "Cristine", + "lastName": "Gaddesby", + "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "cohort": "WCRI 18", + "graduationYear": 2024, + "email": "cgaddesby2a@senate.gov", + "linkedInProfile": "https://www.linkedin.com/in/Cristine-Gaddesby-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "skills": [ + "GraphQL", + "Software Architecture", + "React", + "Azure", + "Natural Language Processing", + "RESTful APIs", + "System Design", + "SaaS (Software as a Service)", + "Concurrency", + "Angular", + "Android Development" + ], + "specializations": [ + "Parallel Computing", + "Docker", + "Leadership", + "C++", + "Natural Language Processing" + ], + "careerInformation": { + "currentPosition": { "title": "Embedded Systems Engineer", "company": "Netflix" }, + "pastPositions": [ + { + "title": "Backend Developer", + "company": "DoorDash", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-09-04T07:05:54.992Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a131" + } + }, + { + "title": "Software Engineer", + "company": "Salesforce", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2025-09-15T02:08:09.362Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a132" + } + }, + { + "title": "Data Engineer", + "company": "Twitter", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-11-20T01:56:53.417Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a133" + } + }, + { + "title": "Engineering Manager", + "company": "DocuSign", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2025-02-21T18:46:14.557Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a134" + } + } + ] + }, + "education": [], + "projects": [ + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "6674c31e95590f9fd945a135" + } + }, + { + "name": "SmartCarPark", + "description": "Smart parking management system using IoT sensors for efficient parking space utilization.", + "link": "https://github.com/username/smartcarpark", + "_id": { + "$oid": "6674c31e95590f9fd945a136" + } + }, + { + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", + "_id": { + "$oid": "6674c31e95590f9fd945a137" + } + }, + { + "name": "VirtualMarket", + "description": "Virtual reality shopping experience allowing users to browse and buy products online.", + "link": "https://github.com/username/virtualmarket", + "_id": { + "$oid": "6674c31e95590f9fd945a138" + } + } + ], + "personalBio": "Driven by a curiosity for innovation and a commitment to delivering high-quality software solutions.", + "testimonials": [], + "socialMediaLinks": { + "twitter": "https://x.com/Cristine-Gaddesby-fake", + "blog": "https://www.Cristine-Gaddesby-fake-blog.com", + "other": ["https://www.instagram.com/Cristine-Gaddesby-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Makers Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a130" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459de6" + }, + "firstName": "Marta", + "lastName": "Daveren", + "cohort": "PTRI 41", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a139" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459de7" + }, + "firstName": "Nanon", + "lastName": "Gligoraci", + "profilePhoto": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "cohort": "FTRI 70", + "graduationYear": 2024, + "email": "ngligoraci2c@addthis.com", + "linkedInProfile": "https://www.linkedin.com/in/Nanon-Gligoraci-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "skills": [], + "specializations": [ + "Graph Databases", + "Critical Thinking", + "Spring Boot", + "C++", + "Software Architecture", + "ETL (Extract, Transform, Load)", + "CI/CD", + "Big Data", + "ASP.NET", + "DevOps", + "NoSQL", + "IoT (Internet of Things)" + ], + "careerInformation": { + "currentPosition": { "title": "Senior Software Engineer", "company": "DocuSign" }, + "pastPositions": [ + { + "title": "Security Engineer", + "company": "Asana", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2025-08-15T22:23:35.491Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a13b" + } + }, + { + "title": "Embedded Systems Engineer", + "company": "Square", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2028-03-07T20:37:26.329Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a13c" + } + } + ] + }, + "education": [ + { + "institution": "Fudan University", + "degree": "Diploma Program", + "fieldOfStudy": "Journalism", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-03-05T01:38:36.714Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a13d" + } + }, + { + "institution": "University of Vermont", + "degree": "Continuing Education", + "fieldOfStudy": "Biomedical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-09-01T03:06:28.903Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a13e" + } + }, + { + "institution": "California Institute of Technology (Caltech)", + "degree": "Master of Engineering (ME)", + "fieldOfStudy": "History", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2025-01-26T14:03:35.938Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a13f" + } + } + ], + "projects": [ + { + "name": "EventPlanner", + "description": "Event management and planning software for organizing and coordinating events.", + "link": "https://github.com/username/eventplanner", + "_id": { + "$oid": "6674c31e95590f9fd945a140" + } + }, + { + "name": "LearnHub", + "description": "Online learning platform offering courses on various subjects with interactive content.", + "link": "https://github.com/username/learnhub", + "_id": { + "$oid": "6674c31e95590f9fd945a141" + } + }, + { + "name": "SmartWatch", + "description": "Smart wearable device with health monitoring, fitness tracking, and notification features.", + "link": "https://github.com/username/smartwatch", + "_id": { + "$oid": "6674c31e95590f9fd945a142" + } + }, + { + "name": "EcoTech", + "description": "Environmental monitoring and conservation app with real-time data visualization.", + "link": "https://github.com/username/ecotech", + "_id": { + "$oid": "6674c31e95590f9fd945a143" + } + } + ], + "personalBio": "Proven ability to lead technical projects from inception to successful deployment and maintenance.", + "testimonials": [ + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd945a144" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd945a145" + } + } + ], + "socialMediaLinks": { + "blog": "https://www.Nanon-Gligoraci-fake-blog.com", + "other": ["https://www.instagram.com/Nanon-Gligoraci-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Thinkful", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a13a" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459de8" + }, + "firstName": "Donall", + "lastName": "Frapwell", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "WCRI 37", + "graduationYear": 2024, + "email": "dfrapwell2d@hostgator.com", + "linkedInProfile": "https://www.linkedin.com/in/Donall-Frapwell-fake", + "professionalSummary": "AI and machine learning engineer leveraging data science techniques to develop predictive models for real-world applications.", + "skills": [ + "Software Architecture", + "Performance Optimization", + "BDD (Behavior-Driven Development)", + "Android Development", + "Robotic Process Automation", + "Design Patterns", + "Reactive Programming", + "Kubernetes", + "API Development", + "Legacy Code Management", + "CI/CD", + "Leadership", + "System Design", + "C++", + "GraphQL", + "Docker" + ], + "specializations": [ + "Unit Testing", + "BDD (Behavior-Driven Development)", + "Containerization", + "Quantum Computing", + "Data Science", + "Event-Driven Architecture", + "Concurrency" + ], + "careerInformation": { + "currentPosition": { "title": "Principal Software Engineer", "company": "Robinhood" }, + "pastPositions": [ + { + "title": "Full Stack Developer", + "company": "Atlassian", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-05-25T22:51:17.486Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a147" + } + }, + { + "title": "Automation Engineer", + "company": "Workday", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-03-16T17:12:48.556Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a148" + } + }, + { + "title": "Software Developer", + "company": "Epic Games", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-12-14T14:18:10.787Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a149" + } + } + ] + }, + "education": [ + { + "institution": "University of Texas at Austin", + "degree": "Master of Fine Arts (MFA)", + "fieldOfStudy": "Civil Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-08-31T07:03:56.697Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a14a" + } + }, + { + "institution": "Rice University", + "degree": "Professional Development", + "fieldOfStudy": "Law", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2028-04-07T03:57:09.726Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a14b" + } + }, + { + "institution": "National University of Singapore (NUS)", + "degree": "Master of Public Health (MPH)", + "fieldOfStudy": "Statistics", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-05-13T21:05:41.999Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a14c" + } + } + ], + "projects": [ + { + "name": "GenomeQuest", + "description": "Genomic data analysis tool for researchers and bioinformaticians.", + "link": "https://github.com/username/genomequest", + "_id": { + "$oid": "6674c31e95590f9fd945a14d" + } + }, + { + "name": "SmartFarm", + "description": "Smart agriculture system with IoT sensors for monitoring and optimizing farm operations.", + "link": "https://github.com/username/smartfarm", + "_id": { + "$oid": "6674c31e95590f9fd945a14e" + } + }, + { + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", + "_id": { + "$oid": "6674c31e95590f9fd945a14f" + } + } + ], + "personalBio": "Passionate about contributing to the tech community through open-source projects and knowledge sharing.", + "testimonials": [ + { + "from": "Sophie Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "Emily's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd945a150" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd945a151" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd945a152" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Donall-Frapwell-fake-blog.com", "other": [] }, + "availabilityForNetworking": true, + "bootcampExperience": "Kenzie Academy", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a146" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459de9" + }, + "firstName": "Beverlee", + "lastName": "Bangham", + "cohort": "FTRI 79", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a153" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dea" + }, + "firstName": "Englebert", + "lastName": "Bancroft", + "cohort": "LA 21", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a154" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459deb" + }, + "firstName": "Siegfried", + "lastName": "Castillou", + "profilePhoto": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "cohort": "ECRI 74", + "graduationYear": 2024, + "email": "scastillou2g@reddit.com", + "linkedInProfile": "https://www.linkedin.com/in/Siegfried-Castillou-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [ + "PaaS (Platform as a Service)", + "C#", + "Quantum Computing", + "Performance Optimization", + "Azure", + "React", + "IoT (Internet of Things)", + "Event-Driven Architecture" + ], + "specializations": ["Angular"], + "careerInformation": { + "currentPosition": { "title": "Data Scientist", "company": "Pinterest" }, + "pastPositions": [ + { + "title": "Software Architect", + "company": "Robinhood", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-07-03T20:18:11.511Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a156" + } + }, + { + "title": "Data Engineer", + "company": "Pinterest", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2025-11-09T09:16:13.647Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a157" + } + } + ] + }, + "education": [ + { + "institution": "University of Melbourne", + "degree": "Master of Public Administration (MPA)", + "fieldOfStudy": "Accounting", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2025-01-19T13:01:57.412Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a158" + } + }, + { + "institution": "Brigham Young University", + "degree": "Executive Education", + "fieldOfStudy": "Physics", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-11-01T12:04:48.118Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a159" + } + }, + { + "institution": "Massachusetts Institute of Technology (MIT)", + "degree": "Master of Public Administration (MPA)", + "fieldOfStudy": "Electrical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2028-05-15T12:46:37.883Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a15a" + } + } + ], + "projects": [ + { + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", + "_id": { + "$oid": "6674c31e95590f9fd945a15b" + } + }, + { + "name": "AIAssistant", + "description": "Artificial intelligence assistant for managing tasks, scheduling, and reminders.", + "link": "https://github.com/username/aiassistant", + "_id": { + "$oid": "6674c31e95590f9fd945a15c" + } + }, + { + "name": "CloudGuard", + "description": "Advanced cloud security suite ensuring data protection and compliance.", + "link": "https://github.com/username/cloudguard", + "_id": { + "$oid": "6674c31e95590f9fd945a15d" + } + }, + { + "name": "HealthLink", + "description": "Telemedicine platform connecting patients with healthcare providers remotely.", + "link": "https://github.com/username/healthlink", + "_id": { + "$oid": "6674c31e95590f9fd945a15e" + } + } + ], + "personalBio": "Adept at optimizing SQL and NoSQL databases for performance and scalability.", + "testimonials": [ + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "6674c31e95590f9fd945a15f" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd945a160" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Siegfried-Castillou-fake", + "blog": "https://www.Siegfried-Castillou-fake-blog.com", + "other": ["https://www.instagram.com/Siegfried-Castillou-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "General Assembly", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a155" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dec" + }, + "firstName": "Marvin", + "lastName": "Cranke", + "profilePhoto": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "cohort": "FTRI 63", + "graduationYear": 2024, + "email": "mcranke2h@marketwatch.com", + "linkedInProfile": "https://www.linkedin.com/in/Marvin-Cranke-fake", + "professionalSummary": "Mobile app developer adept at building cross-platform applications with a strong emphasis on performance and usability.", + "skills": [ + "Leadership", + "WebSockets", + "Agile Development", + "Design Patterns", + "API Integration", + "ETL (Extract, Transform, Load)", + "Project Management", + "ASP.NET", + "SaaS (Software as a Service)", + "Edge Computing", + "Refactoring", + "Event-Driven Architecture", + "User Experience (UX) Design", + "FaaS (Function as a Service)", + "Legacy Code Management" + ], + "specializations": [], + "careerInformation": { + "currentPosition": { "title": "Software Architect", "company": "Twitter" }, + "pastPositions": [ + { + "title": "Engineering Manager", + "company": "HubSpot", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2025-03-26T22:50:57.371Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a162" + } + }, + { + "title": "Security Engineer", + "company": "DocuSign", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-11-17T05:44:42.229Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a163" + } + }, + { + "title": "Principal Software Engineer", + "company": "DoorDash", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-01-08T21:44:21.040Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a164" + } + }, + { + "title": "Lead Software Engineer", + "company": "Oracle", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2024-12-12T19:35:33.596Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a165" + } + } + ] + }, + "education": [ + { + "institution": "National University of Singapore (NUS)", + "degree": "Professional Development", + "fieldOfStudy": "International Relations", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2028-03-04T12:59:16.867Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a166" + } + }, + { + "institution": "Chinese University of Hong Kong (CUHK)", + "degree": "Master of Social Work (MSW)", + "fieldOfStudy": "Biomedical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-10-15T05:42:13.448Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a167" + } + } + ], + "projects": [ + { + "name": "HomeSecurity", + "description": "Home security system with video surveillance, motion detection, and alarm integration.", + "link": "https://github.com/username/homesecurity", + "_id": { + "$oid": "6674c31e95590f9fd945a168" + } + }, + { + "name": "HealthLink", + "description": "Telemedicine platform connecting patients with healthcare providers remotely.", + "link": "https://github.com/username/healthlink", + "_id": { + "$oid": "6674c31e95590f9fd945a169" + } + }, + { + "name": "SmartCity", + "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", + "link": "https://github.com/username/smartcity", + "_id": { + "$oid": "6674c31e95590f9fd945a16a" + } + }, + { + "name": "SmartInventory", + "description": "Inventory management system with RFID and IoT integration for tracking assets.", + "link": "https://github.com/username/smartinventory", + "_id": { + "$oid": "6674c31e95590f9fd945a16b" + } + } + ], + "personalBio": "Experienced in building scalable microservices architectures and integrating third-party APIs.", + "testimonials": [ + { + "from": "Ava Miller", + "relation": "CTO at InnovateTech Ltd.", + "text": "Ava's ability to analyze complex problems and deliver effective solutions is commendable. This derp's work ethic and professionalism set a high standard.", + "_id": { + "$oid": "6674c31e95590f9fd945a16c" + } + }, + { + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "_id": { + "$oid": "6674c31e95590f9fd945a16d" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd945a16e" + } + }, + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd945a16f" + } + }, + { + "from": "Sophia Brown", + "relation": "Product Owner at AgileSoft", + "text": "This derp's leadership and technical guidance have been crucial in our team's achievements. This derp's commitment to excellence is evident in every project.", + "_id": { + "$oid": "6674c31e95590f9fd945a170" + } + } + ], + "socialMediaLinks": { "twitter": "https://x.com/Marvin-Cranke-fake", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Hack Reactor", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a161" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459ded" + }, + "firstName": "Arne", + "lastName": "Rummin", + "profilePhoto": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "cohort": "WCRI 64", + "graduationYear": 2024, + "email": "arummin2i@is.gd", + "linkedInProfile": "https://www.linkedin.com/in/Arne-Rummin-fake", + "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", + "skills": [ + "Scrum", + "C#", + "Version Control", + "Laravel", + "Data Science", + "Object-Oriented Programming", + "Project Management", + "Graph Databases", + "Edge Computing", + "Communication Skills" + ], + "specializations": ["Ruby", "Robotic Process Automation"], + "careerInformation": { + "currentPosition": { "title": "Software Developer", "company": "Square" }, + "pastPositions": [ + { + "title": "QA Engineer", + "company": "Coinbase", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-10-29T17:31:32.272Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a172" + } + }, + { + "title": "Full Stack Developer", + "company": "Salesforce", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-08-13T22:52:33.420Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a173" + } + }, + { + "title": "Embedded Systems Engineer", + "company": "Snapchat", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-01-26T23:35:06.537Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a174" + } + }, + { + "title": "AI Engineer", + "company": "Square", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-11-27T06:17:35.283Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a175" + } + }, + { + "title": "Security Engineer", + "company": "Adobe", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2025-12-26T05:47:48.960Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a176" + } + } + ] + }, + "education": [ + { + "institution": "University of Pittsburgh", + "degree": "Bachelor of Engineering (BE)", + "fieldOfStudy": "Linguistics", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2026-09-25T21:02:20.545Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a177" + } + } + ], + "projects": [], + "personalBio": "Passionate software engineer with a love for solving complex problems and building scalable applications.", + "testimonials": [], + "socialMediaLinks": { "other": ["https://www.instagram.com/Arne-Rummin-fake"] }, + "availabilityForNetworking": true, + "bootcampExperience": "Codesmith", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a171" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dee" + }, + "firstName": "Seumas", + "lastName": "Feldberger", + "cohort": "PTRI 1", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a178" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459def" + }, + "firstName": "Hilda", + "lastName": "Worham", + "cohort": "ECRI 50", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a179" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459df0" + }, + "firstName": "Winny", + "lastName": "O'Glessane", + "cohort": "PTRI 76", + "skills": [], + "specializations": [], + "careerInformation": { "pastPositions": [] }, + "socialMediaLinks": { "other": [] }, + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a17a" + }, + "education": [], + "projects": [], + "testimonials": [], + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459df1" + }, + "firstName": "Gwenora", + "lastName": "Agge", + "profilePhoto": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "cohort": "NYC 13", + "graduationYear": 2024, + "email": "gagge2m@unesco.org", + "linkedInProfile": "https://www.linkedin.com/in/Gwenora-Agge-fake", + "professionalSummary": "Blockchain developer experienced in smart contract development and decentralized application (dApp) architecture.", + "skills": ["Ruby", "IoT (Internet of Things)", "GraphQL", "ETL (Extract, Transform, Load)"], + "specializations": ["AWS", "Cloud Computing", "Containerization"], + "careerInformation": { + "currentPosition": { "title": "Software Engineer", "company": "Asana" }, + "pastPositions": [ + { + "title": "Mobile Developer", + "company": "PayPal", + "startDate": { + "$date": "2024-06-21T00:02:38.631Z" + }, + "endDate": { + "$date": "2027-05-18T21:06:08.772Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a17c" + } + }, + { + "title": "Software Architect", + "company": "NVIDIA", + "startDate": { + "$date": "2024-06-21T00:02:38.632Z" + }, + "endDate": { + "$date": "2027-02-10T14:16:43.381Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a17d" + } + }, + { + "title": "Junior Software Engineer", + "company": "ServiceNow", + "startDate": { + "$date": "2024-06-21T00:02:38.632Z" + }, + "endDate": { + "$date": "2025-05-03T06:52:04.928Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a17e" + } + } + ] + }, + "education": [], + "projects": [ + { + "name": "VirtualTour", + "description": "Virtual reality tour application for immersive travel experiences.", + "link": "https://github.com/username/virtualtour", + "_id": { + "$oid": "6674c31e95590f9fd945a17f" + } + }, + { + "name": "CodeReview", + "description": "Collaborative code review platform with annotations and feedback features.", + "link": "https://github.com/username/codereview", + "_id": { + "$oid": "6674c31e95590f9fd945a180" + } + }, + { + "name": "RoboVision", + "description": "AI-powered computer vision system for object detection and recognition.", + "link": "https://github.com/username/robovision", + "_id": { + "$oid": "6674c31e95590f9fd945a181" + } + } + ], + "personalBio": "Committed to ethical software development practices and promoting transparency in technology.", + "testimonials": [ + { + "from": "Ella Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd945a182" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "_id": { + "$oid": "6674c31e95590f9fd945a183" + } + }, + { + "from": "Sophia Turner", + "relation": "Project Manager at Digital Dynamics", + "text": "This derp's expertise in software design and development has been crucial for our project's success. This derp's dedication and problem-solving skills are exemplary.", + "_id": { + "$oid": "6674c31e95590f9fd945a184" + } + }, + { + "from": "Alice Johnson", + "relation": "Manager at TechSolutions Inc.", + "text": "This derp's ability to solve complex problems with elegant solutions is unparalleled. This derp's code is clean, efficient, and always delivered ahead of schedule.", + "_id": { + "$oid": "6674c31e95590f9fd945a185" + } + }, + { + "from": "Emma Thompson", + "relation": "Manager at DataTech Solutions", + "text": "Andrew's ability to analyze complex problems and deliver effective solutions is commendable. His work ethic and professionalism set a high standard.", + "_id": { + "$oid": "6674c31e95590f9fd945a186" + } + } + ], + "socialMediaLinks": { + "twitter": "https://x.com/Gwenora-Agge-fake", + "other": ["https://www.instagram.com/Gwenora-Agge-fake"] + }, + "availabilityForNetworking": true, + "bootcampExperience": "Lambda School", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a17b" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459df2" + }, + "firstName": "Piggy", + "lastName": "Torrisi", + "profilePhoto": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "cohort": "WCRI 38", + "graduationYear": 2024, + "email": "ptorrisi2n@goodreads.com", + "linkedInProfile": "https://www.linkedin.com/in/Piggy-Torrisi-fake", + "professionalSummary": "Security-focused software engineer ensuring robust protection mechanisms and compliance with industry security standards.", + "skills": [ + "Natural Language Processing", + "Java", + "Angular", + "Scrum", + "Version Control", + "Communication Skills", + "Data Science", + "Collaboration", + "Software Architecture", + "Node.js", + "JavaScript", + "ASP.NET", + "Machine Learning" + ], + "specializations": [ + "Algorithm Design", + "User Interface (UI) Design", + "Edge Computing", + "NoSQL", + "Flask", + "System Design", + "DevOps", + "Legacy Code Management" + ], + "careerInformation": { + "currentPosition": { "title": "QA Engineer", "company": "Coinbase" }, + "pastPositions": [ + { + "title": "Full Stack Developer", + "company": "Activision Blizzard", + "startDate": { + "$date": "2024-06-21T00:02:38.632Z" + }, + "endDate": { + "$date": "2024-08-21T11:31:42.978Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a188" + } + }, + { + "title": "Engineering Manager", + "company": "Palantir", + "startDate": { + "$date": "2024-06-21T00:02:38.632Z" + }, + "endDate": { + "$date": "2025-10-18T04:48:27.892Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a189" + } + }, + { + "title": "Software Engineer", + "company": "Adobe", + "startDate": { + "$date": "2024-06-21T00:02:38.632Z" + }, + "endDate": { + "$date": "2025-02-16T22:50:41.982Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a18a" + } + } + ] + }, + "education": [ + { + "institution": "Fudan University", + "degree": "Doctor of Business Administration (DBA)", + "fieldOfStudy": "Mechanical Engineering", + "startDate": { + "$date": "2024-06-21T00:02:38.632Z" + }, + "endDate": { + "$date": "2024-11-03T01:08:34.011Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a18b" + } + }, + { + "institution": "University of California, Berkeley", + "degree": "Technical School Certification", + "fieldOfStudy": "Management", + "startDate": { + "$date": "2024-06-21T00:02:38.632Z" + }, + "endDate": { + "$date": "2027-04-22T07:09:15.120Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a18c" + } + }, + { + "institution": "Yale University", + "degree": "Professional Development", + "fieldOfStudy": "Communication Studies", + "startDate": { + "$date": "2024-06-21T00:02:38.632Z" + }, + "endDate": { + "$date": "2025-07-24T12:38:14.563Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a18d" + } + } + ], + "projects": [], + "personalBio": "Dedicated to upholding best practices in software engineering, including testing, code reviews, and version control.", + "testimonials": [ + { + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "_id": { + "$oid": "6674c31e95590f9fd945a18e" + } + }, + { + "from": "Ethan Green", + "relation": "CTO at Innovate Solutions", + "text": "Ethan's collaborative approach and strong technical skills make him a valuable asset to our team. This derp's contributions have improved our project's efficiency.", + "_id": { + "$oid": "6674c31e95590f9fd945a18f" + } + }, + { + "from": "Mia Davis", + "relation": "Lead Developer at CloudTech", + "text": "This derp's innovative solutions and meticulous attention to detail have greatly benefited our project. This derp is a talented engineer and a pleasure to collaborate with.", + "_id": { + "$oid": "6674c31e95590f9fd945a190" + } + }, + { + "from": "Noah Rodriguez", + "relation": "Product Owner at AgileSoft", + "text": "Julia's collaborative approach and expertise in frontend development have significantly enhanced our product's user experience. She's a pleasure to work with.", + "_id": { + "$oid": "6674c31e95590f9fd945a191" + } + } + ], + "socialMediaLinks": { "blog": "https://www.Piggy-Torrisi-fake-blog.com", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Codesmith", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a187" + }, + "blogOrWriting": [], + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459df3" + }, + "firstName": "Niki", + "lastName": "Glaysher", + "profilePhoto": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "cohort": "CTRI 99", + "graduationYear": 2024, + "email": "nglaysher2o@kickstarter.com", + "linkedInProfile": "https://www.linkedin.com/in/Niki-Glaysher-fake", + "professionalSummary": "Backend engineer specializing in designing and optimizing database architectures for high-performance applications.", + "skills": [ + "Scrum", + "Reactive Programming", + "System Design", + "SaaS (Software as a Service)", + "Graph Databases" + ], + "specializations": [ + "Parallel Computing", + "Leadership", + "Data Science", + "Azure", + "WebSockets", + "Event-Driven Architecture", + "Data Warehousing", + "Android Development", + "Big Data", + "iOS Development", + "Containerization" + ], + "careerInformation": { + "currentPosition": { "title": "Site Reliability Engineer", "company": "Adobe" }, + "pastPositions": [ + { + "title": "Mobile Developer", + "company": "Zoom", + "startDate": { + "$date": "2024-06-21T00:02:38.632Z" + }, + "endDate": { + "$date": "2028-04-18T14:26:05.342Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a193" + } + }, + { + "title": "Android Developer", + "company": "GitHub", + "startDate": { + "$date": "2024-06-21T00:02:38.632Z" + }, + "endDate": { + "$date": "2028-01-11T11:38:10.734Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a194" + } + }, + { + "title": "Test Engineer", + "company": "Slack", + "startDate": { + "$date": "2024-06-21T00:02:38.632Z" + }, + "endDate": { + "$date": "2025-11-16T14:33:54.691Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a195" + } + }, + { + "title": "Senior Software Engineer", + "company": "Stripe", + "startDate": { + "$date": "2024-06-21T00:02:38.632Z" + }, + "endDate": { + "$date": "2027-09-12T14:00:10.608Z" + }, + "_id": { + "$oid": "6674c31e95590f9fd945a196" + } + } + ] + }, + "education": [], + "projects": [ + { + "name": "FoodDelivery", + "description": "Online food delivery platform connecting restaurants with customers for food ordering.", + "link": "https://github.com/username/fooddelivery", + "_id": { + "$oid": "6674c31e95590f9fd945a197" + } + }, + { + "name": "MediCare", + "description": "Medical appointment scheduling and patient management system for healthcare providers.", + "link": "https://github.com/username/medicare", + "_id": { + "$oid": "6674c31e95590f9fd945a198" + } + }, + { + "name": "SmartCity", + "description": "Integrated urban management system using IoT and data analytics for smart city initiatives.", + "link": "https://github.com/username/smartcity", + "_id": { + "$oid": "6674c31e95590f9fd945a199" + } + }, + { + "name": "MediCare", + "description": "Medical appointment scheduling and patient management system for healthcare providers.", + "link": "https://github.com/username/medicare", + "_id": { + "$oid": "6674c31e95590f9fd945a19a" + } + }, + { + "name": "SmartInventory", + "description": "Inventory management system with RFID and IoT integration for tracking assets.", + "link": "https://github.com/username/smartinventory", + "_id": { + "$oid": "6674c31e95590f9fd945a19b" + } + } + ], + "personalBio": "Skilled communicator able to translate technical concepts into user-friendly solutions and documentation.", + "testimonials": [ + { + "from": "Noah Wilson", + "relation": "Manager at DataTech Solutions", + "text": "This derp's technical expertise and collaborative spirit make this derp an outstanding team member. This derp's contributions have been critical to our project's success.", + "_id": { + "$oid": "6674c31e95590f9fd945a19c" + } + }, + { + "from": "Emma Watson", + "relation": "Director of Engineering at FutureTech", + "text": "This derp's leadership and technical skills have been instrumental in our project's progress. This derp's ability to innovate and collaborate makes this derp a valuable team member.", + "_id": { + "$oid": "6674c31e95590f9fd945a19d" + } + }, + { + "from": "Sophia Martinez", + "relation": "Director of Engineering at FutureTech", + "text": "Jessica's leadership in architecting scalable and maintainable software solutions has been pivotal in our company's growth. This derp is a true asset to any team.", + "_id": { + "$oid": "6674c31e95590f9fd945a19e" + } + } + ], + "socialMediaLinks": { "twitter": "https://x.com/Niki-Glaysher-fake", "other": [] }, + "availabilityForNetworking": false, + "bootcampExperience": "Codesmith", + "achievementsAndCertifications": [], + "volunteerWork": [], + "eventParticipation": [], + "gallery": [], + "_id": { + "$oid": "6674c31e95590f9fd945a192" + }, + "blogOrWriting": [], + "__v": 0 + } +] diff --git a/scripts/db/mongo-dev-init/MOCK_THREADS.json b/scripts/db/mongo-dev-init/MOCK_THREADS.json new file mode 100644 index 00000000..b17269de --- /dev/null +++ b/scripts/db/mongo-dev-init/MOCK_THREADS.json @@ -0,0 +1,322 @@ +[ + { + "user": { + "$oid": "66723da68f368f285d304acd" + }, + "forum": { + "$oid": "6674c31e95590f9fd9459e5c" + }, + "title": "Full Stack Development: Best Practices", + "content": "Best practices, tools, and frameworks for mastering full-stack development. How do you balance frontend and backend development responsibilities?", + "createdAt": { + "$date": "2024-06-21T00:02:39.500Z" + }, + "updatedAt": { + "$date": "2025-01-08T07:19:52.111Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a203" + }, + "__v": 0 + }, + { + "user": { + "$oid": "6644c602515c654def9b2ae7" + }, + "forum": { + "$oid": "6674c31e95590f9fd9459e5c" + }, + "title": "AI Ethics: Bias, Accountability, and Transparency", + "content": "Exploring ethical considerations in AI development, including bias mitigation, accountability frameworks, and transparency practices.", + "createdAt": { + "$date": "2024-06-21T00:02:39.500Z" + }, + "updatedAt": { + "$date": "2027-08-22T12:54:42.090Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a204" + }, + "__v": 0 + }, + { + "user": { + "$oid": "6644c768515c654def9b2b09" + }, + "forum": { + "$oid": "6674c31e95590f9fd9459e5c" + }, + "title": "JavaScript Frameworks Comparison", + "content": "Comparing popular JavaScript frameworks like React, Angular, and Vue.js. Share your experiences, strengths, and weaknesses of each framework.", + "createdAt": { + "$date": "2024-06-21T00:02:39.500Z" + }, + "updatedAt": { + "$date": "2028-03-07T02:35:36.257Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a205" + }, + "__v": 0 + }, + { + "user": { + "$oid": "66723da68f368f285d304acd" + }, + "forum": { + "$oid": "6674c31e95590f9fd9459e5a" + }, + "title": "Cybersecurity Threats: Prevention and Response", + "content": "Discussing common cybersecurity threats and strategies for prevention and incident response. How do you secure your applications and data?", + "createdAt": { + "$date": "2024-06-21T00:02:39.501Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.501Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a206" + }, + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dc4" + }, + "forum": { + "$oid": "6674c31e95590f9fd9459e5b" + }, + "title": "Interview Preparation Tips", + "content": "Preparing for software engineering interviews? Discussing strategies, common interview questions, and resources to ace technical interviews.", + "createdAt": { + "$date": "2024-06-21T00:02:39.500Z" + }, + "updatedAt": { + "$date": "2028-01-03T07:43:52.724Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a207" + }, + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dde" + }, + "forum": { + "$oid": "6674c31e95590f9fd9459e5b" + }, + "title": "Open Source Projects: Contributions and Impact", + "content": "Discussing the impact of open-source projects on the tech industry and society. How can open-source initiatives drive innovation and collaboration?", + "createdAt": { + "$date": "2024-06-21T00:02:39.501Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.501Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a208" + }, + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459de7" + }, + "forum": { + "$oid": "6674c31e95590f9fd9459e59" + }, + "title": "API Design: Best Practices and Guidelines", + "content": "Exploring best practices, design patterns, and guidelines for designing robust and developer-friendly APIs. What makes a good API?", + "createdAt": { + "$date": "2024-06-21T00:02:39.500Z" + }, + "updatedAt": { + "$date": "2024-12-28T14:26:53.154Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a209" + }, + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dbd" + }, + "forum": { + "$oid": "6674c31e95590f9fd9459e59" + }, + "title": "How to Improve Code Review Process?", + "content": "Seeking advice on optimizing our team's code review process. What tools and practices do you use to ensure effective code reviews and maintain code quality?", + "createdAt": { + "$date": "2024-06-21T00:02:39.500Z" + }, + "updatedAt": { + "$date": "2026-12-28T21:52:51.888Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a20a" + }, + "__v": 0 + }, + { + "user": { + "$oid": "6644c7f7515c654def9b2b18" + }, + "forum": { + "$oid": "6674c31e95590f9fd9459e5d" + }, + "title": "Python vs Java: Which is Better for Backend Development?", + "content": "Debating the pros and cons of Python and Java for backend development. Share your experiences and preferences in choosing a backend programming language.", + "createdAt": { + "$date": "2024-06-21T00:02:39.502Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.502Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a20b" + }, + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dae" + }, + "forum": { + "$oid": "6674c31e95590f9fd9459e5d" + }, + "title": "Tech Startups: Lessons Learned and Tips", + "content": "Sharing lessons learned, success stories, and practical tips for launching and scaling tech startups. What challenges did you face?", + "createdAt": { + "$date": "2024-06-21T00:02:39.500Z" + }, + "updatedAt": { + "$date": "2025-02-16T19:16:47.598Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a20c" + }, + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dbd" + }, + "forum": { + "$oid": "6674c31e95590f9fd9459e5c" + }, + "title": "Continuous Integration and Deployment (CI/CD)", + "content": "Exploring CI/CD pipelines, best practices, and tools for automating software delivery processes. Share your experiences and tips for implementing CI/CD.", + "createdAt": { + "$date": "2024-06-21T00:02:39.500Z" + }, + "updatedAt": { + "$date": "2025-11-18T11:19:26.269Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a20d" + }, + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dd1" + }, + "forum": { + "$oid": "6674c31e95590f9fd9459e5c" + }, + "title": "AR/VR Development: Tools and Platforms", + "content": "Discussing tools, platforms, and development techniques for creating augmented reality (AR) and virtual reality (VR) applications.", + "createdAt": { + "$date": "2024-06-21T00:02:39.500Z" + }, + "updatedAt": { + "$date": "2028-01-03T05:20:56.159Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a20e" + }, + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dc2" + }, + "forum": { + "$oid": "6674c31e95590f9fd9459e5c" + }, + "title": "Big Data Analytics: Tools and Techniques", + "content": "Exploring tools, frameworks, and techniques for analyzing and deriving insights from large datasets. How do you handle big data challenges?", + "createdAt": { + "$date": "2024-06-21T00:02:39.500Z" + }, + "updatedAt": { + "$date": "2025-09-06T15:19:26.698Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a20f" + }, + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dc5" + }, + "forum": { + "$oid": "6674c31e95590f9fd9459e59" + }, + "title": "UX/UI Design Principles for Developers", + "content": "Exploring UX/UI design principles and best practices for developers. How can developers contribute to creating user-friendly and visually appealing interfaces?", + "createdAt": { + "$date": "2024-06-21T00:02:39.502Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.502Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a210" + }, + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dd3" + }, + "forum": { + "$oid": "6674c31e95590f9fd9459e5a" + }, + "title": "Introduction to Docker Containers", + "content": "New to Docker and containers? Let's discuss the basics, benefits, and practical applications of Docker in software development and deployment.", + "createdAt": { + "$date": "2024-06-21T00:02:39.502Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.502Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a211" + }, + "__v": 0 + }, + { + "user": { + "$oid": "6674c31695590f9fd9459dcc" + }, + "forum": { + "$oid": "6674c31e95590f9fd9459e5b" + }, + "title": "Agile Development: Scrum vs Kanban", + "content": "Comparing Scrum and Kanban methodologies for Agile software development. Which approach works better for your team and why?", + "createdAt": { + "$date": "2024-06-21T00:02:39.502Z" + }, + "updatedAt": { + "$date": "2024-06-21T00:02:39.502Z" + }, + "_id": { + "$oid": "6674c31f95590f9fd945a212" + }, + "__v": 0 + } +] diff --git a/scripts/db/mongo-dev-init/MOCK_USERS.json b/scripts/db/mongo-dev-init/MOCK_USERS.json new file mode 100644 index 00000000..d8c9e776 --- /dev/null +++ b/scripts/db/mongo-dev-init/MOCK_USERS.json @@ -0,0 +1,1702 @@ +[ + { + "firstName": "Testy", + "lastName": "McTesterson", + "email": "tester@codehammers.com", + "profilePic": "https://www.codesmith.io/hubfs/Screen%20Shot%202024-06-10%20at%2010.46.24%20AM.png", + "password": "$2a$10$c0X2SgxNDviyiSfaWEP8NOznd4tOy0VnOvYOsm6zzcUOM9.JHlNLO", + "_id": { + "$oid": "66723da68f368f285d304ac9" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.740Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.740Z" + }, + "__v": 0 + }, + { + "firstName": "Jane", + "lastName": "Doe", + "email": "jane@codehammers.com", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$d.8UHxw3IQ3NGKR368sgFunb26/ayAHkbVd3JjDdD6ufAvgumU.om", + "_id": { + "$oid": "6644c768515c654def9b2b09" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.740Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.740Z" + }, + "__v": 0 + }, + { + "firstName": "John", + "lastName": "Dough", + "email": "john@codehammers.com", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$4Xjvk2vKv2penssuOg8d0OHcAgGAAIEQb/hRcfsV4FgYIiQFAlw.2", + "_id": { + "$oid": "6644c602515c654def9b2ae7" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.740Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.740Z" + }, + "__v": 0 + }, + { + "firstName": "Jaime", + "lastName": "Doh", + "email": "jaime@codehammers.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$/bKBoPbjvbz661JvEyrX0e4hHgdpcINx2Kredu1SXs1kaygIesX5a", + "_id": { + "$oid": "6644c7f7515c654def9b2b18" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.741Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.741Z" + }, + "__v": 0 + }, + { + "firstName": "Homer", + "lastName": "Simpson", + "email": "homer@donuts.com", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$1I4VeLgKfhYeraIlKViBSe2OWsIvBLg7wFXyH8G6SGWBAWY8qg0wK", + "_id": { + "$oid": "66723da68f368f285d304acd" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.741Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.741Z" + }, + "__v": 0 + }, + { + "firstName": "Corine", + "lastName": "Tugwell", + "email": "ctugwell0@ovh.net", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$bAEpatT903JIyk/8AldztuqIz5afslRUVTRPJun4naBUmXvc5c0fO", + "_id": { + "$oid": "6674c31695590f9fd9459d95" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.741Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.741Z" + }, + "__v": 0 + }, + { + "firstName": "Brody", + "lastName": "Cumpton", + "email": "bcumpton1@bluehost.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$6GrwWSo.NSETz5DPCOwOHO9xNKoOhzmAwCPptin4BUfZJcbp2yxAa", + "_id": { + "$oid": "6674c31695590f9fd9459d96" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.741Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.741Z" + }, + "__v": 0 + }, + { + "firstName": "Moselle", + "lastName": "Duro", + "email": "mduro2@technorati.com", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$wuuA/xXCwgID/f22BVSaJuZT1LOPhgvZzxmqQGK1jG7xmEfXjse6S", + "_id": { + "$oid": "6674c31695590f9fd9459d97" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.741Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.741Z" + }, + "__v": 0 + }, + { + "firstName": "Winifred", + "lastName": "Carnelley", + "email": "wcarnelley3@ucsd.edu", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$nYnt.4qOeYnoj.V4nqeAXuHI21SjOIlisTSmgKilssNlOfpc0py5W", + "_id": { + "$oid": "6674c31695590f9fd9459d98" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.741Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.741Z" + }, + "__v": 0 + }, + { + "firstName": "Marchelle", + "lastName": "Truin", + "email": "mtruin4@stumbleupon.com", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$8mfkeb6./g1rjvkk24a/g.XkKeuzgpjix0unQDZJ/y1MA4i.Wtnlm", + "_id": { + "$oid": "6674c31695590f9fd9459d99" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.741Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.741Z" + }, + "__v": 0 + }, + { + "firstName": "Cally", + "lastName": "Gisbey", + "email": "cgisbey5@squarespace.com", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$3XFoIpuYAevbYJAjDVlQZe432ZkrjjSXBavewnGy3ZAhNrpae8KRe", + "_id": { + "$oid": "6674c31695590f9fd9459d9a" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.742Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.742Z" + }, + "__v": 0 + }, + { + "firstName": "Arlina", + "lastName": "Moodie", + "email": "amoodie6@twitpic.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$S1SMFKC42HcbFe1HGyCNuOWlHEOZByMWiYQQ8SV8/TwRbW9MxDHsW", + "_id": { + "$oid": "6674c31695590f9fd9459d9b" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.742Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.742Z" + }, + "__v": 0 + }, + { + "firstName": "Shurlock", + "lastName": "Tytcomb", + "email": "stytcomb8@google.it", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$rBUjvNJcYzG1PPR0Fx4Z7eX/462JNC8co2yMTDhQ1N5jpeGv5ujla", + "_id": { + "$oid": "6674c31695590f9fd9459d9c" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.742Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.742Z" + }, + "__v": 0 + }, + { + "firstName": "Ermina", + "lastName": "Guyton", + "email": "eguyton9@blog.com", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$/ZiwIFa0JU5On5646dZVLeIq1iPJkbbOyQno.F4tFdcDHaImZN1VC", + "_id": { + "$oid": "6674c31695590f9fd9459d9d" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.742Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.742Z" + }, + "__v": 0 + }, + { + "firstName": "Shelton", + "lastName": "Halwood", + "email": "shalwooda@sciencedirect.com", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$uuUTsRN9JHk1ikLagbVrf.2Sbus/TSni3nRkvLZmWsR2o62l/Xf7G", + "_id": { + "$oid": "6674c31695590f9fd9459d9e" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.742Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.742Z" + }, + "__v": 0 + }, + { + "firstName": "Nigel", + "lastName": "Clemenzo", + "email": "nclemenzob@fotki.com", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$ZglrpFMSK6Z3aOBFB0uhXemRi2CWc.iQSRMY9JWM5sOu1SLE4A8Au", + "_id": { + "$oid": "6674c31695590f9fd9459d9f" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.742Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.742Z" + }, + "__v": 0 + }, + { + "firstName": "Colver", + "lastName": "Oswell", + "email": "coswellc@wsj.com", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$NPh/4KvzSPPD5S3tb0FzyuAWSqXdvAJspNNo7fEGBH02Yum0SR93W", + "_id": { + "$oid": "6674c31695590f9fd9459da0" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.742Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.742Z" + }, + "__v": 0 + }, + { + "firstName": "Saundra", + "lastName": "Normabell", + "email": "snormabelld@businessinsider.com", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$nEyqx1DkU5Csqmr2fH7ZxOLlcDOm4EyXFzvY/ndEi0av664fETtG2", + "_id": { + "$oid": "6674c31695590f9fd9459da1" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.742Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.742Z" + }, + "__v": 0 + }, + { + "firstName": "Grant", + "lastName": "Chasney", + "email": "gchasneye@mediafire.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$3Mjw3.Zy8Oa.LQdnhx47Eukk.ric0heo0H7T5rHjMGUJ5K1.W/PwC", + "_id": { + "$oid": "6674c31695590f9fd9459da2" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.742Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.742Z" + }, + "__v": 0 + }, + { + "firstName": "Franni", + "lastName": "Chance", + "email": "fchancef@ted.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$vzEqPWVbwZ6ttUM0/apgKe1mtSkuoZdSETZuCL3xv68SKqzR7BVVG", + "_id": { + "$oid": "6674c31695590f9fd9459da3" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.742Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.742Z" + }, + "__v": 0 + }, + { + "firstName": "Clarance", + "lastName": "Meecher", + "email": "cmeecherg@addthis.com", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$gNzhVjb92kkMHObvxKUgwet8JqxMHzWGrerev1R/SXeg..ujeQP2e", + "_id": { + "$oid": "6674c31695590f9fd9459da4" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.743Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.743Z" + }, + "__v": 0 + }, + { + "firstName": "Katharine", + "lastName": "Lancett", + "email": "klancetth@sfgate.com", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$Dqgx6cItSwnyLKLWgcCddehWUZwHDrBg.KVRlMtQRDz4/J.cK8XCO", + "_id": { + "$oid": "6674c31695590f9fd9459da5" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.743Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.743Z" + }, + "__v": 0 + }, + { + "firstName": "Margaret", + "lastName": "Dubber", + "email": "mdubberi@dropbox.com", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$2sXwrCie3RBcISPx.n1JXOZ8/7EtXvWoaX2cCO5OpyOpbZSPfWpfm", + "_id": { + "$oid": "6674c31695590f9fd9459da6" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.743Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.743Z" + }, + "__v": 0 + }, + { + "firstName": "Addy", + "lastName": "Fass", + "email": "afassj@vistaprint.com", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$eR/bdbrlnaYZBCUuOTANguZ9XxddD1nQv8/jy747NB4QZceq.k6wK", + "_id": { + "$oid": "6674c31695590f9fd9459da7" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.743Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.743Z" + }, + "__v": 0 + }, + { + "firstName": "Sollie", + "lastName": "Puckinghorne", + "email": "spuckinghornek@topsy.com", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$QjgeksX.EEVfiauQUAixdu4IQ8sxqPICrZO9CsdT76W1jkhPMDgFO", + "_id": { + "$oid": "6674c31695590f9fd9459da8" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.743Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.743Z" + }, + "__v": 0 + }, + { + "firstName": "Xena", + "lastName": "Tomczynski", + "email": "xtomczynskil@ted.com", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$iL8vrM9gOoebGLP.lKHQi.sJYBC.pIVQPqyf7d3GwRPl1TFsXfQxG", + "_id": { + "$oid": "6674c31695590f9fd9459da9" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.743Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.743Z" + }, + "__v": 0 + }, + { + "firstName": "Harmonie", + "lastName": "Karpinski", + "email": "hkarpinskim@g.co", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$Qc1P0ObDVoDMY5Z2mRfZv.rI3eFVMzVsiER.JdeX.BiZyQvia6Foy", + "_id": { + "$oid": "6674c31695590f9fd9459daa" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.743Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.743Z" + }, + "__v": 0 + }, + { + "firstName": "Marielle", + "lastName": "Crocket", + "email": "mcrocketn@craigslist.org", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$Lz1SenS74eYvYWxTAA0GouQH/P.yzRzbeNQC5AW1FiwDmINx3/mU.", + "_id": { + "$oid": "6674c31695590f9fd9459dab" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.743Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.743Z" + }, + "__v": 0 + }, + { + "firstName": "Ulrick", + "lastName": "Blasing", + "email": "ublasingo@yahoo.com", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$KdUpL.A42993PSdgR3grkOAAlgdMNjCNKfr2KEp31SftCKMwaKhjq", + "_id": { + "$oid": "6674c31695590f9fd9459dac" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.743Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.743Z" + }, + "__v": 0 + }, + { + "firstName": "Cheri", + "lastName": "Danielsson", + "email": "cdanielssonp@example.com", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$38mEsJo9ZBkA7i0eGuNFBelle930q9Koamnpl/R.WbM2ksUxwsGCK", + "_id": { + "$oid": "6674c31695590f9fd9459dad" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.743Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.743Z" + }, + "__v": 0 + }, + { + "firstName": "Durand", + "lastName": "Joron", + "email": "djoronq@google.cn", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$dR986nCxXbKUO5AdsP0nWuBzxuYWT7tZD9FI8ms3./WQkqSO.rnPS", + "_id": { + "$oid": "6674c31695590f9fd9459dae" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.744Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.744Z" + }, + "__v": 0 + }, + { + "firstName": "Kristien", + "lastName": "Burgett", + "email": "kburgettr@kickstarter.com", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$SwzXRtmThsLIga6xLNMdIuUgtkC5XXcNFVGDde.RqnLaN2PlZbZjG", + "_id": { + "$oid": "6674c31695590f9fd9459daf" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.744Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.744Z" + }, + "__v": 0 + }, + { + "firstName": "Kaia", + "lastName": "Fassmann", + "email": "kfassmanns@ted.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$ZjqbLPNZqTB66nSvHNwZEuI6T0EgmlHO6LmyhIaX4hLDFP9vcTW6K", + "_id": { + "$oid": "6674c31695590f9fd9459db0" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.744Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.744Z" + }, + "__v": 0 + }, + { + "firstName": "Lockwood", + "lastName": "Moxham", + "email": "lmoxhamt@wikia.com", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$Pgv1mMBFMcPLw.Ru75vlJeBeDOstXAPk4cVNwmYPpA5DHeUCxbwVC", + "_id": { + "$oid": "6674c31695590f9fd9459db1" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.744Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.744Z" + }, + "__v": 0 + }, + { + "firstName": "Tessie", + "lastName": "Sugden", + "email": "tsugdenu@npr.org", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$bvYvx8tjsUX2S4h.7fZH1OSet1zW1VeszDkqK5b71bfW1DGngB1xq", + "_id": { + "$oid": "6674c31695590f9fd9459db2" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.744Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.744Z" + }, + "__v": 0 + }, + { + "firstName": "Rea", + "lastName": "Jeremiah", + "email": "rjeremiahv@wikispaces.com", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$FfEBgXBRMwOyS/IV60fhe.zGy0arwEXA3yAlSUsRrDRWtOdbCtMTy", + "_id": { + "$oid": "6674c31695590f9fd9459db3" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.744Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.744Z" + }, + "__v": 0 + }, + { + "firstName": "Cassie", + "lastName": "Meadows", + "email": "cmeadowsw@smugmug.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$ECz527fWRRJVrEY0rLNJau8.N7EjiIqvZZNZPqgjjZvxEfkytdVUO", + "_id": { + "$oid": "6674c31695590f9fd9459db4" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.744Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.744Z" + }, + "__v": 0 + }, + { + "firstName": "Kelci", + "lastName": "Bastide", + "email": "kbastidex@latimes.com", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$XfZLE6R6uzyO/Mltvg3Il.FuYBLXN2E1GlO4o9eb6PoHRwEkLc8.e", + "_id": { + "$oid": "6674c31695590f9fd9459db5" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.744Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.744Z" + }, + "__v": 0 + }, + { + "firstName": "Thurston", + "lastName": "Speechly", + "email": "tspeechlyy@plala.or.jp", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$ZSSVHxCfb9W3kDKMJ1HYiO5aG1EqMvlxC9Icde0FJcAj4xr32c2/.", + "_id": { + "$oid": "6674c31695590f9fd9459db6" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.744Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.744Z" + }, + "__v": 0 + }, + { + "firstName": "Silas", + "lastName": "Reyes", + "email": "sreyesz@google.co.jp", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$A2R1sxcW.o8cUqZqOZb0tee2n5/nHG425PHTSRiM/uZgDkfdXEac.", + "_id": { + "$oid": "6674c31695590f9fd9459db7" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.744Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.744Z" + }, + "__v": 0 + }, + { + "firstName": "Marley", + "lastName": "Boshard", + "email": "mboshard10@tiny.cc", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$WQ9mJLUpUp8EHOO4sLcqK.dMv/oeegUOSBivgoYiKKsYqVnSAOCwq", + "_id": { + "$oid": "6674c31695590f9fd9459db8" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.745Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.745Z" + }, + "__v": 0 + }, + { + "firstName": "Eb", + "lastName": "Dargie", + "email": "edargie11@artisteer.com", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$pHLNPYbTm8TjtCs2rgG8H.AXhe/yfi0CV3pH7hb9Pvh3G5QIFv3.u", + "_id": { + "$oid": "6674c31695590f9fd9459db9" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.745Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.745Z" + }, + "__v": 0 + }, + { + "firstName": "Dian", + "lastName": "Dackombe", + "email": "ddackombe13@ihg.com", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$fyeUovoACjivxo/r5oVCrO7ZB1bNDMtQSKAaJQnXAIFi4jkKB6VB2", + "_id": { + "$oid": "6674c31695590f9fd9459dba" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.745Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.745Z" + }, + "__v": 0 + }, + { + "firstName": "Freedman", + "lastName": "Scrafton", + "email": "fscrafton14@posterous.com", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$UhJBjqan9EwBza.OIaoocuRJIMns2.DSQRo1zdU0jCkf9MUofLNgK", + "_id": { + "$oid": "6674c31695590f9fd9459dbb" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.745Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.745Z" + }, + "__v": 0 + }, + { + "firstName": "Tabbitha", + "lastName": "Jolliffe", + "email": "tjolliffe15@bbb.org", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$ri1xuKY9y5x61geNfZVeaOm3x6FQZBZ/AZNaPC42PMfSqFVzIZR96", + "_id": { + "$oid": "6674c31695590f9fd9459dbc" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.745Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.745Z" + }, + "__v": 0 + }, + { + "firstName": "Jordon", + "lastName": "Ganley", + "email": "jganley16@geocities.jp", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$uyYmPhoHR4X7ZC8nPtcuVO1g7MyMk7QnDUvdZwI19fxFVM.O76HqO", + "_id": { + "$oid": "6674c31695590f9fd9459dbd" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.745Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.745Z" + }, + "__v": 0 + }, + { + "firstName": "Annora", + "lastName": "Brigge", + "email": "abrigge17@joomla.org", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$6JCzmOuJTX7ZrVPoE1fklObzQJT4dfiLScKeNkgk2hOZIVdlz/HOa", + "_id": { + "$oid": "6674c31695590f9fd9459dbe" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.745Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.745Z" + }, + "__v": 0 + }, + { + "firstName": "Bethanne", + "lastName": "Osband", + "email": "bosband18@blinklist.com", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$OswubXObu/d6YNVY5CVWf.OSGEhi8fwioSabaBqJaLAgF3VDbpnvu", + "_id": { + "$oid": "6674c31695590f9fd9459dbf" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.745Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.745Z" + }, + "__v": 0 + }, + { + "firstName": "Hedda", + "lastName": "Tallquist", + "email": "htallquist19@cisco.com", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$rLc8dMDd5UySXVxXZ8TVtuoRZk6bI4/Tn4iffS2sGWWjZ4vUTGIpu", + "_id": { + "$oid": "6674c31695590f9fd9459dc0" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.745Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.745Z" + }, + "__v": 0 + }, + { + "firstName": "Lynelle", + "lastName": "Grosvener", + "email": "lgrosvener1a@google.cn", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$gNRJ/WPB1Emp.16AHxm4GOM0fAcF82QH53FZoBWA4mGWD/dI1AVdi", + "_id": { + "$oid": "6674c31695590f9fd9459dc1" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.745Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.745Z" + }, + "__v": 0 + }, + { + "firstName": "Lenee", + "lastName": "Pethybridge", + "email": "lpethybridge1b@chron.com", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$gvnmudn22gn.Am/nnMHI1elK4QYC9r8ADzR4/xgGHQiTA7PjM/102", + "_id": { + "$oid": "6674c31695590f9fd9459dc2" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.746Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.746Z" + }, + "__v": 0 + }, + { + "firstName": "Ninnette", + "lastName": "Maden", + "email": "nmaden1c@sciencedirect.com", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$GYKqSA4hIp4SNyoC7veNpuE6ffph0TuMHFjL1kSpe1knH.vnbT2o6", + "_id": { + "$oid": "6674c31695590f9fd9459dc3" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.746Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.746Z" + }, + "__v": 0 + }, + { + "firstName": "Jolynn", + "lastName": "Catenot", + "email": "jcatenot1d@oakley.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$uplHQL2IV9m31LbtUvqWE.rnFigJBJJ.Or4hhxoIkydSL0EKhQAsS", + "_id": { + "$oid": "6674c31695590f9fd9459dc4" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.746Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.746Z" + }, + "__v": 0 + }, + { + "firstName": "Marabel", + "lastName": "Puleston", + "email": "mpuleston1e@utexas.edu", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$MXRKFekNTiWZ6hjEpo2Cnez7GEujOvTYoLh7DqgjOYF6VL2rdOMUa", + "_id": { + "$oid": "6674c31695590f9fd9459dc5" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.746Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.746Z" + }, + "__v": 0 + }, + { + "firstName": "Bryn", + "lastName": "Arias", + "email": "barias1f@flavors.me", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$ZgOaQPP6FIBJCPh.ZS1CBuZqbvseVUqrW7nergd9v5zQQe5tbtsIS", + "_id": { + "$oid": "6674c31695590f9fd9459dc6" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.746Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.746Z" + }, + "__v": 0 + }, + { + "firstName": "Arni", + "lastName": "Jertz", + "email": "ajertz1g@tuttocitta.it", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$uC9ta9vHBA3WaS2ups/0xOcy/gzHVC07gVgnZuhXair3nAmXghIMm", + "_id": { + "$oid": "6674c31695590f9fd9459dc7" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.746Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.746Z" + }, + "__v": 0 + }, + { + "firstName": "Maegan", + "lastName": "Mulhall", + "email": "mmulhall1h@wikipedia.org", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$4B9j9zRhqkovXBF4.gDBfO5tGDW0.AfBU4dgPK6iTDicugjW/vIvq", + "_id": { + "$oid": "6674c31695590f9fd9459dc8" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.746Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.746Z" + }, + "__v": 0 + }, + { + "firstName": "Nicolai", + "lastName": "Brugsma", + "email": "nbrugsma1i@4shared.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$SThp9poPTHZyesEI/Wp9Hu1SYX7xijxJwPsEO8Ey9cinKmM2Chw1.", + "_id": { + "$oid": "6674c31695590f9fd9459dc9" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.746Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.746Z" + }, + "__v": 0 + }, + { + "firstName": "Bryan", + "lastName": "Heffy", + "email": "bheffy1j@cbsnews.com", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$v25/ff2inKjX2gmGa/X4r.zFsf1WicjrMb7ZdU5uaLIKYmB5H6pua", + "_id": { + "$oid": "6674c31695590f9fd9459dca" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.746Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.746Z" + }, + "__v": 0 + }, + { + "firstName": "Donavon", + "lastName": "Osichev", + "email": "dosichev1k@pinterest.com", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$.hatJxwrSHK0/EbtKMt/i.Xh9yeUnD.r8W8JVmfwz0Slg/0CZfmZO", + "_id": { + "$oid": "6674c31695590f9fd9459dcb" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.746Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.746Z" + }, + "__v": 0 + }, + { + "firstName": "Kennan", + "lastName": "Dugget", + "email": "kdugget1l@opensource.org", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$a/v195KwLU7zgEEdonr0Jeo2N8nh2fTEF6Oji1ove7cqrb7KANphG", + "_id": { + "$oid": "6674c31695590f9fd9459dcc" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.747Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.747Z" + }, + "__v": 0 + }, + { + "firstName": "Paton", + "lastName": "Climance", + "email": "pclimance1m@webnode.com", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$aVBCVkVjgElPwEUsh4U53Obx9l8piY6AnBLyhWszqKwT3Sl/apRiu", + "_id": { + "$oid": "6674c31695590f9fd9459dcd" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.747Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.747Z" + }, + "__v": 0 + }, + { + "firstName": "Caitrin", + "lastName": "McAllister", + "email": "cmcallister1n@ft.com", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$WAZm5uVfMl6Kf21LOcKicOe/y/GkMCZI8szH9NP4eYWtOqOXxrQ7.", + "_id": { + "$oid": "6674c31695590f9fd9459dce" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.747Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.747Z" + }, + "__v": 0 + }, + { + "firstName": "Sephira", + "lastName": "Kaming", + "email": "skaming1o@about.me", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$kADMzPXafPh2uBM3w7kyQud/gN7hjRk7/uEDo1cXGbiOpxuYzHIiS", + "_id": { + "$oid": "6674c31695590f9fd9459dcf" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.747Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.747Z" + }, + "__v": 0 + }, + { + "firstName": "Fraser", + "lastName": "Londsdale", + "email": "flondsdale1p@freewebs.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$gQJXxWnNhiJ0KquheSQV5e3bvdiNacu8P.vmLF0hhGpGQQqMr/DPS", + "_id": { + "$oid": "6674c31695590f9fd9459dd0" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.747Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.747Z" + }, + "__v": 0 + }, + { + "firstName": "Alyssa", + "lastName": "Bangham", + "email": "abangham1q@usgs.gov", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$N.kjDboSu/I9UofwKNU4WedzhcX6IbZjpV0i0OmsBZOVjb/HXuqFe", + "_id": { + "$oid": "6674c31695590f9fd9459dd1" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.747Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.747Z" + }, + "__v": 0 + }, + { + "firstName": "Clarette", + "lastName": "Alcock", + "email": "calcock1r@amazonaws.com", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$aXKoFly5vjRD7aaGc.ebte/BwsWa9qvExRZptlco8VKkiCHBCJ30.", + "_id": { + "$oid": "6674c31695590f9fd9459dd2" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.747Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.747Z" + }, + "__v": 0 + }, + { + "firstName": "Lizbeth", + "lastName": "France", + "email": "lfrance1s@yahoo.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$V7r5GhOPTwlWFFJAq/QGTe56A/sLD.wa1PnVpNiQqQBZVOIvAPXLO", + "_id": { + "$oid": "6674c31695590f9fd9459dd3" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.747Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.747Z" + }, + "__v": 0 + }, + { + "firstName": "Abramo", + "lastName": "Sparkwell", + "email": "asparkwell1t@berkeley.edu", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$ivCLz8aoMvoQp4sLJn1yL.33CImt7FRT73f1rn6Z2XY/z5.qJVyK6", + "_id": { + "$oid": "6674c31695590f9fd9459dd4" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.747Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.747Z" + }, + "__v": 0 + }, + { + "firstName": "Darb", + "lastName": "Coen", + "email": "dcoen1u@prlog.org", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$n9oqbia4uajj3oQGvSd5S.iyvlzPAQUwS99S.ZuPkH9Y03eHQAG8S", + "_id": { + "$oid": "6674c31695590f9fd9459dd5" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.747Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.747Z" + }, + "__v": 0 + }, + { + "firstName": "Gusty", + "lastName": "Besnardeau", + "email": "gbesnardeau1v@themeforest.net", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$pVjTGQqhjbjBtyn5LlcOQO3MbF6it6xS34B1jj.DHV3FOcO0N1rfG", + "_id": { + "$oid": "6674c31695590f9fd9459dd6" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.748Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.748Z" + }, + "__v": 0 + }, + { + "firstName": "Randy", + "lastName": "Verriour", + "email": "rverriour1w@ebay.co.uk", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/thumb/b/b6/Dramatic_Chipmunk.png/220px-Dramatic_Chipmunk.png", + "password": "$2a$10$UsmREDlpRZfHfErSJeTPkeg4v2a0dGhT.YjyU80oHg.uGVtcZJbd2", + "_id": { + "$oid": "6674c31695590f9fd9459dd7" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.748Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.748Z" + }, + "__v": 0 + }, + { + "firstName": "Israel", + "lastName": "Canti", + "email": "icanti1x@businesswire.com", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$FSp4Y0VMVciXD7EqEdNH3eiVga32oqbLik.RV29gwlCcyrqDFeE8m", + "_id": { + "$oid": "6674c31695590f9fd9459dd8" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.748Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.748Z" + }, + "__v": 0 + }, + { + "firstName": "Micky", + "lastName": "Dunseath", + "email": "mdunseath1y@miibeian.gov.cn", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$SfYlFv1QEET9TEsjx2QlpeUHnDJ1fp8HWYQRMLHCvZaOmJhT4O.DG", + "_id": { + "$oid": "6674c31695590f9fd9459dd9" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.748Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.748Z" + }, + "__v": 0 + }, + { + "firstName": "Gabi", + "lastName": "Hardcastle", + "email": "ghardcastle1z@weebly.com", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$MyVgz59QkXAJnvE7wkxPneTWSe3Uv0yTpnLWX885YuhpK/8rXI3ea", + "_id": { + "$oid": "6674c31695590f9fd9459dda" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.748Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.748Z" + }, + "__v": 0 + }, + { + "firstName": "Rakel", + "lastName": "Scothron", + "email": "rscothron20@yellowbook.com", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$0Sm1qJ8.946lXRPaVX.ZiemYW9CZKlN7k1PUv2HQLz/iCWvLc350e", + "_id": { + "$oid": "6674c31695590f9fd9459ddb" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.748Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.748Z" + }, + "__v": 0 + }, + { + "firstName": "Gretel", + "lastName": "Sitford", + "email": "gsitford21@tinyurl.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$8mdJhXhnZG.ySGxao.Nfkuekkt.SGlTKpK3jKzETP4BToeS5zzPOy", + "_id": { + "$oid": "6674c31695590f9fd9459ddc" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.748Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.748Z" + }, + "__v": 0 + }, + { + "firstName": "Rosalinda", + "lastName": "Naisby", + "email": "rnaisby22@nationalgeographic.com", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$i9JWDLwMMILPMk2O75yR..FffuJwonjEB9ahqUmaORqr4UeeqGgOS", + "_id": { + "$oid": "6674c31695590f9fd9459ddd" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.748Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.748Z" + }, + "__v": 0 + }, + { + "firstName": "Thaddus", + "lastName": "Waddell", + "email": "twaddell23@nymag.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$4kkln2DaCNA3dSLcQNjlxedVkOHGIxQFI90rh.GbAVnDATdF4yFFu", + "_id": { + "$oid": "6674c31695590f9fd9459dde" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.748Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.748Z" + }, + "__v": 0 + }, + { + "firstName": "Nadia", + "lastName": "Zeale", + "email": "nzeale24@google.ru", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$n9Gs25xDbgm4h5Sm0gS45ODmNaNfurc53sOQGN46JU4THmJensIgO", + "_id": { + "$oid": "6674c31695590f9fd9459ddf" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.749Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.749Z" + }, + "__v": 0 + }, + { + "firstName": "Emmett", + "lastName": "Buckell", + "email": "ebuckell25@reddit.com", + "profilePic": "https://starsmedia.ign.com/stars/image/article/855/855738/will-ferrell-20080228035456695.jpg?fit=bounds&width=1280&height=720", + "password": "$2a$10$WdiPdsmRKOi7HvivDf6Tb.Ah72yenh1FHojowhskGys0tReXsX7Yu", + "_id": { + "$oid": "6674c31695590f9fd9459de0" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.749Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.749Z" + }, + "__v": 0 + }, + { + "firstName": "Lavinia", + "lastName": "Baume", + "email": "lbaume26@tinyurl.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$jPfi56gG9AY5RAtTxMI8dO/YVDn145b6VrSyVeMTngHOlOpM.Wfci", + "_id": { + "$oid": "6674c31695590f9fd9459de1" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.749Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.749Z" + }, + "__v": 0 + }, + { + "firstName": "Janine", + "lastName": "Kitt", + "email": "jkitt27@wsj.com", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$/rqW4o1VGAJsSBBWArQ1sudZ/1tk5thl9p9H.RxJwcv5KPW6qH4da", + "_id": { + "$oid": "6674c31695590f9fd9459de2" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.749Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.749Z" + }, + "__v": 0 + }, + { + "firstName": "Beatrix", + "lastName": "Healey", + "email": "bhealey28@amazon.co.jp", + "profilePic": "https://i.guim.co.uk/img/media/8282695e7f658f7c8e708290c93f14b84f0c8a68/0_483_3600_2161/master/3600.jpg?width=1200&quality=85&auto=format&fit=max&s=be4a8a7eb16cabc3d9829945e6881aa4", + "password": "$2a$10$GUL6vJnhJXVjvC.0o0p/bessdPb/kvrUL/9xSNHqDwMVH47A4qC/u", + "_id": { + "$oid": "6674c31695590f9fd9459de3" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.749Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.749Z" + }, + "__v": 0 + }, + { + "firstName": "Simone", + "lastName": "Buske", + "email": "sbuske29@soundcloud.com", + "profilePic": "https://www.codesmith.io/hubfs/Gabriela%20%20Small.png", + "password": "$2a$10$I4Fb9znyB56AL3koGXIzeencGUofRvKTalp/0u2XwLBLy953WJ686", + "_id": { + "$oid": "6674c31695590f9fd9459de4" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.749Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.749Z" + }, + "__v": 0 + }, + { + "firstName": "Cristine", + "lastName": "Gaddesby", + "email": "cgaddesby2a@senate.gov", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$xEfVsFCe7qseNc3LLxzSP.vikLTH/VH2AlnOqGQpQ85THdHcBShIe", + "_id": { + "$oid": "6674c31695590f9fd9459de5" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.749Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.749Z" + }, + "__v": 0 + }, + { + "firstName": "Marta", + "lastName": "Daveren", + "email": "mdaveren2b@odnoklassniki.ru", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$GHpD3egZVkoIkucCdtdT.e/MKRoPwNgPlQOvW.VHJNayRgJR9nqze", + "_id": { + "$oid": "6674c31695590f9fd9459de6" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.749Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.749Z" + }, + "__v": 0 + }, + { + "firstName": "Nanon", + "lastName": "Gligoraci", + "email": "ngligoraci2c@addthis.com", + "profilePic": "https://i.pinimg.com/736x/e5/b9/81/e5b98110fcd62d6ebe0e636262170175.jpg", + "password": "$2a$10$I43n3ob4fgpIJ5CWQix2LeEwFGYR.ztMSL7cEDv8mUVvd4x5h0tPC", + "_id": { + "$oid": "6674c31695590f9fd9459de7" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.750Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.750Z" + }, + "__v": 0 + }, + { + "firstName": "Donall", + "lastName": "Frapwell", + "email": "dfrapwell2d@hostgator.com", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$5suhT5mYsHREaFmUifsqaOXZFVvAQreimpTfcWdLAi.D.vh4zhM1O", + "_id": { + "$oid": "6674c31695590f9fd9459de8" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.750Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.750Z" + }, + "__v": 0 + }, + { + "firstName": "Beverlee", + "lastName": "Bangham", + "email": "bbangham2e@tamu.edu", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$vGHSBP2y9o0HzUDvRqItQubZRpQMEW50TjxsodBu8Z5ETbuQMetUG", + "_id": { + "$oid": "6674c31695590f9fd9459de9" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.750Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.750Z" + }, + "__v": 0 + }, + { + "firstName": "Englebert", + "lastName": "Bancroft", + "email": "ebancroft2f@ow.ly", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$a5uZQ4skXiMzWGpYZATsfuetqqfX.ON3DAxoIf8sJkbkPVt1uDIJ6", + "_id": { + "$oid": "6674c31695590f9fd9459dea" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.750Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.750Z" + }, + "__v": 0 + }, + { + "firstName": "Siegfried", + "lastName": "Castillou", + "email": "scastillou2g@reddit.com", + "profilePic": "https://e3.365dm.com/22/01/1600x900/skynews-kanye-west-rapper-us_5655876.jpg?20220129091827", + "password": "$2a$10$Xv5616/DIqPvzIrAiocYKurlFZiQrPx2G/ijZBX38BacshSrSK.6e", + "_id": { + "$oid": "6674c31695590f9fd9459deb" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.750Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.750Z" + }, + "__v": 0 + }, + { + "firstName": "Marvin", + "lastName": "Cranke", + "email": "mcranke2h@marketwatch.com", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$H7sdU7rI3jNlh1ZMte6qi.7oowzeaUIBAgZjURwLbcvyi0U7QGfXm", + "_id": { + "$oid": "6674c31695590f9fd9459dec" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.750Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.750Z" + }, + "__v": 0 + }, + { + "firstName": "Arne", + "lastName": "Rummin", + "email": "arummin2i@is.gd", + "profilePic": "https://static.miraheze.org/greatcharacterswiki/e/e1/TheDude.jpg", + "password": "$2a$10$U2T4qto9PE6w07GbcPo2LuSMKPCiRxOthBK/NcvdIugtw1ib0vuga", + "_id": { + "$oid": "6674c31695590f9fd9459ded" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.750Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.750Z" + }, + "__v": 0 + }, + { + "firstName": "Seumas", + "lastName": "Feldberger", + "email": "sfeldberger2j@ning.com", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$AtmfjAr9ippLTkGoTEm28udWPLU.LnxQJFc6H1HCynYphWMwsvTGe", + "_id": { + "$oid": "6674c31695590f9fd9459dee" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.750Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.750Z" + }, + "__v": 0 + }, + { + "firstName": "Hilda", + "lastName": "Worham", + "email": "hworham2k@mail.ru", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$8kAf4CADvLbE0DYTFBqBbOjPwasq3ns9VfPn3OmullApA1eaNREyW", + "_id": { + "$oid": "6674c31695590f9fd9459def" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.750Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.750Z" + }, + "__v": 0 + }, + { + "firstName": "Winny", + "lastName": "O'Glessane", + "email": "woglessane2l@deviantart.com", + "profilePic": "https://t3.ftcdn.net/jpg/05/90/55/44/360_F_590554438_4aX0I6HFMplsFtBpQwN9OJEUakR87R88.jpg", + "password": "$2a$10$Vu37IHsmNqp.rkAJqi5c9OzWcNAjO1upb892DyQXI2B6AYZBtB3/C", + "_id": { + "$oid": "6674c31695590f9fd9459df0" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.751Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.751Z" + }, + "__v": 0 + }, + { + "firstName": "Gwenora", + "lastName": "Agge", + "email": "gagge2m@unesco.org", + "profilePic": "https://upload.wikimedia.org/wikipedia/en/7/7c/Gumby_sm.png", + "password": "$2a$10$UZxnUIjEqu0RM6tPlfcx8OEOxW9v7YuVbiwPRUl1PTSd90TDDH41q", + "_id": { + "$oid": "6674c31695590f9fd9459df1" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.751Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.751Z" + }, + "__v": 0 + }, + { + "firstName": "Piggy", + "lastName": "Torrisi", + "email": "ptorrisi2n@goodreads.com", + "profilePic": "https://static1.cbrimages.com/wordpress/wp-content/uploads/2023/07/kate-mckinnon-barbie.jpg", + "password": "$2a$10$ttPjCLUovnyIPXhSxuEr2umGAealHpwTde3yJiQGoZVTBkEEpbF7m", + "_id": { + "$oid": "6674c31695590f9fd9459df2" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.751Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.751Z" + }, + "__v": 0 + }, + { + "firstName": "Niki", + "lastName": "Glaysher", + "email": "nglaysher2o@kickstarter.com", + "profilePic": "https://i.ytimg.com/vi/z6EchXyieos/maxresdefault.jpg", + "password": "$2a$10$ol3MkKKRwy9FjT5FwpWVMeOxPp8ZkWDH2/TWNwpkt0ii7RzNv2AL.", + "_id": { + "$oid": "6674c31695590f9fd9459df3" + }, + "lastVisit": { + "$date": "2024-06-21T00:02:30.751Z" + }, + "date": { + "$date": "2024-06-21T00:02:30.751Z" + }, + "__v": 0 + } +] From 4855c6f0379494c867d892f7883387118aa61473 Mon Sep 17 00:00:00 2001 From: seantokuzo Date: Thu, 20 Jun 2024 18:44:16 -0700 Subject: [PATCH 16/25] update for IS_SK bypass bypass --- server/controllers/imageController.ts | 4 ++++ server/controllers/profileController.ts | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/server/controllers/imageController.ts b/server/controllers/imageController.ts index 05edd370..1e0093c2 100644 --- a/server/controllers/imageController.ts +++ b/server/controllers/imageController.ts @@ -11,6 +11,10 @@ AWS.config.update({ const s3 = new AWS.S3(); export const uploadProfilePicture = async (req: Request, res: Response) => { + if (process.env.NODE_ENV === 'development' && !process.env.IS_SK) { + return res.status(200).send({ message: "Uh uh uh you didn't say the magic word" }); + } + if (!req.file) { return res.status(400).send('No file uploaded.'); } diff --git a/server/controllers/profileController.ts b/server/controllers/profileController.ts index 00db5446..da0f18ae 100644 --- a/server/controllers/profileController.ts +++ b/server/controllers/profileController.ts @@ -135,7 +135,7 @@ const getAllProfiles = async (req: Request, res: Response, next: NextFunction) = }); } else { // Development mode profile pics - Temporary - if (process.env.NODE_ENV === 'development') { + if (process.env.NODE_ENV === 'development' && !process.env.IS_SK) { return res.status(201).json(profiles); } @@ -180,7 +180,7 @@ const getProfileById = async (req: Request, res: Response, next: NextFunction) = }); } // Development mode profile pics - Temporary - if (process.env.NODE_ENV === 'development') { + if (process.env.NODE_ENV === 'development' && !process.env.IS_SK) { return res.status(201).json(profile); } From bf03c76c7d0db96fc488ae1ebc2e4591384e6673 Mon Sep 17 00:00:00 2001 From: seantokuzo Date: Fri, 21 Jun 2024 09:40:07 -0700 Subject: [PATCH 17/25] remove AWS credential placeholders from env vars --- docker-compose-dev.yml | 4 ---- docker-compose-test.yml | 4 ---- 2 files changed, 8 deletions(-) diff --git a/docker-compose-dev.yml b/docker-compose-dev.yml index 89df393b..01ca7fb6 100644 --- a/docker-compose-dev.yml +++ b/docker-compose-dev.yml @@ -19,10 +19,6 @@ services: - POSTGRES_USER=postgres - POSTGRES_PASSWORD=ch-dev - POSTGRES_DB=ch-dev-database - - AWS_ACCESS_KEY_ID=placeholder-value - - AWS_SECRET_ACCESS_KEY=placeholder-value - - AWS_REGION=placeholder-value - - BUCKET_NAME=placeholder-value # suppress aws sdk v2 deprecation warning - AWS_SDK_JS_SUPPRESS_MAINTENANCE_MODE_MESSAGE=1; depends_on: diff --git a/docker-compose-test.yml b/docker-compose-test.yml index b3abd215..9680404d 100644 --- a/docker-compose-test.yml +++ b/docker-compose-test.yml @@ -18,10 +18,6 @@ services: - POSTGRES_USER=postgres - POSTGRES_DB=ch-dev-database - POSTGRES_PASSWORD=ch-dev - - AWS_ACCESS_KEY_ID=placeholder-value - - AWS_SECRET_ACCESS_KEY=placeholder-value - - AWS_REGION=placeholder-value - - BUCKET_NAME=placeholder-value # suppress aws sdk v2 deprecation warning - AWS_SDK_JS_SUPPRESS_MAINTENANCE_MODE_MESSAGE=1; command: npm run test:all From bba10e6f626702d786b91d058d99484e6cef3246 Mon Sep 17 00:00:00 2001 From: seantokuzo Date: Fri, 21 Jun 2024 09:40:36 -0700 Subject: [PATCH 18/25] remove AWS credential env var checks from server startup --- server/index.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/server/index.ts b/server/index.ts index 4a5cbb21..c9bd8d32 100644 --- a/server/index.ts +++ b/server/index.ts @@ -13,10 +13,6 @@ export const startServer = async () => { if (!process.env.POSTGRES_USER) throw Error('โŒ POSTGRES_USER must be defined!'); if (!process.env.POSTGRES_DB) throw Error('โŒ POSTGRES_DB must be defined!'); if (!process.env.POSTGRES_PASSWORD) throw Error('โŒ POSTGRES_PASSWORD must be defined!'); - if (!process.env.AWS_ACCESS_KEY_ID) throw Error('โŒ AWS_ACCESS_KEY_ID must be defined!'); - if (!process.env.AWS_SECRET_ACCESS_KEY) throw Error('โŒ AWS_SECRET_ACCESS_KEY must be defined!'); - if (!process.env.AWS_REGION) throw Error('โŒ AWS_REGION must be defined!'); - if (!process.env.BUCKET_NAME) throw Error('โŒ BUCKET_NAME must be defined!'); // Connect to MongoDB await connectDB(process.env.MONGO_URI); From 4ee6c882d769f9598a7a043f61e68f3f4c986f75 Mon Sep 17 00:00:00 2001 From: seantokuzo Date: Fri, 21 Jun 2024 09:43:07 -0700 Subject: [PATCH 19/25] fix status codes for dev S3 pfp signedUrl bypass --- server/controllers/profileController.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/controllers/profileController.ts b/server/controllers/profileController.ts index da0f18ae..2163b152 100644 --- a/server/controllers/profileController.ts +++ b/server/controllers/profileController.ts @@ -136,7 +136,7 @@ const getAllProfiles = async (req: Request, res: Response, next: NextFunction) = } else { // Development mode profile pics - Temporary if (process.env.NODE_ENV === 'development' && !process.env.IS_SK) { - return res.status(201).json(profiles); + return res.status(200).send(profiles); } const processedProfiles = await Promise.all( @@ -181,7 +181,7 @@ const getProfileById = async (req: Request, res: Response, next: NextFunction) = } // Development mode profile pics - Temporary if (process.env.NODE_ENV === 'development' && !process.env.IS_SK) { - return res.status(201).json(profile); + return res.status(200).json(profile); } if (profile.profilePhoto) { From 1273942d5309f9195fb94967e12b63ffbaef786d Mon Sep 17 00:00:00 2001 From: seantokuzo Date: Fri, 21 Jun 2024 09:46:59 -0700 Subject: [PATCH 20/25] fix status code and add log / comments for working on pfp route --- server/controllers/imageController.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/server/controllers/imageController.ts b/server/controllers/imageController.ts index 1e0093c2..d801eede 100644 --- a/server/controllers/imageController.ts +++ b/server/controllers/imageController.ts @@ -11,8 +11,12 @@ AWS.config.update({ const s3 = new AWS.S3(); export const uploadProfilePicture = async (req: Request, res: Response) => { + // Route bypass for development - need AWS credentials to work on this route if (process.env.NODE_ENV === 'development' && !process.env.IS_SK) { - return res.status(200).send({ message: "Uh uh uh you didn't say the magic word" }); + console.log('Big Sean approval / credentials required to work on this route'); + return res + .status(201) + .send({ message: 'Big Sean approval / credentials required to work on this route' }); } if (!req.file) { From 24b4e8bdba551daf96af23ff8db643fea2da3a85 Mon Sep 17 00:00:00 2001 From: seantokuzo Date: Fri, 21 Jun 2024 09:47:25 -0700 Subject: [PATCH 21/25] add comments about pfp S3 bypass --- server/controllers/profileController.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/server/controllers/profileController.ts b/server/controllers/profileController.ts index 2163b152..b6ac8bd1 100644 --- a/server/controllers/profileController.ts +++ b/server/controllers/profileController.ts @@ -134,7 +134,8 @@ const getAllProfiles = async (req: Request, res: Response, next: NextFunction) = message: { err: 'There were no profiles to retrieve' }, }); } else { - // Development mode profile pics - Temporary + // Route bypass for development - need AWS credentials to work on this route + // This allows Mock Profile Photos to work in development if (process.env.NODE_ENV === 'development' && !process.env.IS_SK) { return res.status(200).send(profiles); } @@ -179,7 +180,8 @@ const getProfileById = async (req: Request, res: Response, next: NextFunction) = message: { err: 'An error occurred during profile retrieval' }, }); } - // Development mode profile pics - Temporary + // Route bypass for development - need AWS credentials to work on this route + // This allows Mock Profile Photos to work in development if (process.env.NODE_ENV === 'development' && !process.env.IS_SK) { return res.status(200).json(profile); } From 778f5f39cc6fc1497aaf2aeadb30c249ab91ec05 Mon Sep 17 00:00:00 2001 From: Sean Date: Fri, 21 Jun 2024 14:04:49 -0400 Subject: [PATCH 22/25] CHE-193 Re-aligned user id's for seeders --- scripts/sql_db_init.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/sql_db_init.sql b/scripts/sql_db_init.sql index cc2e1571..718e3f2f 100644 --- a/scripts/sql_db_init.sql +++ b/scripts/sql_db_init.sql @@ -83,6 +83,6 @@ INSERT INTO jobs (title, company, location, description, url) VALUES INSERT INTO applications (job_id, status_id, user_id, quick_apply, date_applied, general_notes, last_updated, notification_period, notifications_paused) VALUES - (1, 1, '66723da68f368f285d304acb', true, NOW(), 'Quick applied for Software Engineer at Dogs R Us.', NOW(), 3, false), - (2, 1, '66723da68f368f285d304aca', true, NOW(), 'Full CS style application.', NOW(), 3, false), - (3, 2, '66723da68f368f285d304acc', true, NOW(), 'Phone screen scheduled!', NOW(), 3, false); \ No newline at end of file + (1, 1, '6644c602515c654def9b2ae7', true, NOW(), 'Quick applied for Software Engineer at Dogs R Us.', NOW(), 3, false), + (2, 1, '6644c768515c654def9b2b09', true, NOW(), 'Full CS style application.', NOW(), 3, false), + (3, 2, '6644c7f7515c654def9b2b18', true, NOW(), 'Phone screen scheduled!', NOW(), 3, false); \ No newline at end of file From 8ff6767207ab1a52a9a10dfbce367a716eab0249 Mon Sep 17 00:00:00 2001 From: seantokuzo Date: Fri, 21 Jun 2024 12:57:05 -0700 Subject: [PATCH 23/25] all in a days work --- server/controllers/imageController.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/server/controllers/imageController.ts b/server/controllers/imageController.ts index d801eede..ed16da38 100644 --- a/server/controllers/imageController.ts +++ b/server/controllers/imageController.ts @@ -14,9 +14,8 @@ export const uploadProfilePicture = async (req: Request, res: Response) => { // Route bypass for development - need AWS credentials to work on this route if (process.env.NODE_ENV === 'development' && !process.env.IS_SK) { console.log('Big Sean approval / credentials required to work on this route'); - return res - .status(201) - .send({ message: 'Big Sean approval / credentials required to work on this route' }); + const currentProfile = await Profile.findOne({ user: req.user!.id }); + return res.status(201).send(currentProfile); } if (!req.file) { From 56429186f4d9aa80579696220b4b03026b60a17c Mon Sep 17 00:00:00 2001 From: seantokuzo Date: Fri, 21 Jun 2024 13:46:53 -0700 Subject: [PATCH 24/25] add back AWS env vars supplied from .env with comments --- docker-compose-dev.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docker-compose-dev.yml b/docker-compose-dev.yml index 01ca7fb6..8c111df4 100644 --- a/docker-compose-dev.yml +++ b/docker-compose-dev.yml @@ -19,6 +19,13 @@ services: - POSTGRES_USER=postgres - POSTGRES_PASSWORD=ch-dev - POSTGRES_DB=ch-dev-database + # AWS credentials and IS_SK environment variables are retrieved from .env file + # Leave AWS credentials undefined unless approved to work on profile picture routes by Big Sean + - AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID} + - AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY} + - AWS_REGION=${AWS_REGION} + - BUCKET_NAME=${BUCKET_NAME} + - IS_SK=${IS_SK} # suppress aws sdk v2 deprecation warning - AWS_SDK_JS_SUPPRESS_MAINTENANCE_MODE_MESSAGE=1; depends_on: From 68437d11f165aeca38b4bcb3553dcb3654c3a7b9 Mon Sep 17 00:00:00 2001 From: seantokuzo Date: Fri, 21 Jun 2024 13:48:03 -0700 Subject: [PATCH 25/25] add polite & helpful comments to pfp upload thunk --- client/src/features/userProfile/userProfileSlice.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/client/src/features/userProfile/userProfileSlice.ts b/client/src/features/userProfile/userProfileSlice.ts index fa0783c6..9ada6f1b 100644 --- a/client/src/features/userProfile/userProfileSlice.ts +++ b/client/src/features/userProfile/userProfileSlice.ts @@ -56,6 +56,11 @@ export const uploadProfilePicture = createAsyncThunk( 'Content-Type': 'multipart/form-data', }, }); + if (process.env.NODE_ENV === 'development') { + console.log('๐Ÿ’ฐ Woah there, that ish costs money ๐Ÿ’ฐ'); + console.log('โ“โ“Did Big Sean approve you to tax his AWS accountโ“โ“'); + console.log("I didn't think so, get outta here"); + } return response.data; } catch (error) { let errorMessage = 'An error occurred during profile picture upload';